diff --git a/CodeFreeze2022/Project Archive/Colab Notebooks/DensityExplFRate.ipynb b/CodeFreeze2022/Project Archive/Colab Notebooks/DensityExplFRate.ipynb
new file mode 100644
index 0000000..6139955
--- /dev/null
+++ b/CodeFreeze2022/Project Archive/Colab Notebooks/DensityExplFRate.ipynb
@@ -0,0 +1 @@
+{"cells":[{"cell_type":"markdown","metadata":{"id":"Nlk2y3glktJd"},"source":["This is my general scratchwork/ML Tinkering space to become more familiar with Symbollic Regression and the data we will be working with for this project"]},{"cell_type":"code","execution_count":null,"metadata":{"colab":{"base_uri":"https://localhost:8080/"},"executionInfo":{"elapsed":42546,"status":"ok","timestamp":1653602430095,"user":{"displayName":"Samson Mont","userId":"14456403475501558295"},"user_tz":420},"id":"HNDbVL4Ak49F","outputId":"dc5ba7ce-1e16-46b6-f4f8-1068d2e011f8"},"outputs":[{"output_type":"stream","name":"stdout","text":["Looking in indexes: https://pypi.org/simple, https://us-python.pkg.dev/colab-wheels/public/simple/\n","Collecting gplearn\n"," Downloading gplearn-0.4.2-py3-none-any.whl (25 kB)\n","Requirement already satisfied: scikit-learn>=1.0.2 in /usr/local/lib/python3.7/dist-packages (from gplearn) (1.0.2)\n","Requirement already satisfied: joblib>=1.0.0 in /usr/local/lib/python3.7/dist-packages (from gplearn) (1.1.0)\n","Requirement already satisfied: threadpoolctl>=2.0.0 in /usr/local/lib/python3.7/dist-packages (from scikit-learn>=1.0.2->gplearn) (3.1.0)\n","Requirement already satisfied: numpy>=1.14.6 in /usr/local/lib/python3.7/dist-packages (from scikit-learn>=1.0.2->gplearn) (1.21.6)\n","Requirement already satisfied: scipy>=1.1.0 in /usr/local/lib/python3.7/dist-packages (from scikit-learn>=1.0.2->gplearn) (1.4.1)\n","Installing collected packages: gplearn\n","Successfully installed gplearn-0.4.2\n","Mounted at /content/drive\n"]}],"source":["#Imports Below\n","import pandas as pd\n","import numpy as np\n","import operator\n","import random\n","import io\n","\n","import math\n","!pip install gplearn\n","from gplearn.genetic import SymbolicRegressor\n","from sympy import sympify, simplify\n","import matplotlib\n","\n","from sklearn.model_selection import GridSearchCV\n","from sklearn.model_selection import RepeatedKFold\n","from sklearn import metrics\n","\n","#!pip install google-colab\n","from google.colab import files\n","from google.colab import drive\n","\n","drive.mount(\"/content/drive\", force_remount=True)"]},{"cell_type":"code","execution_count":null,"metadata":{"id":"rhfp3vNdSft9"},"outputs":[],"source":["#Uploading Datasets\n","IntxnStr=pd.read_csv('/content/drive/Shareddrives/Capstone Drive/MLTesting/Datasets/ExpPatch_IntxnStr.csv')\n","PatchTidalHeights=pd.read_csv('/content/drive/Shareddrives/Capstone Drive/MLTesting/Datasets/ExpPatch_PatchTidalHeights.csv')\n","PhotoCounts=pd.read_csv('/content/drive/Shareddrives/Capstone Drive/MLTesting/Datasets/ExpPatch_PhotoCounts.csv')\n","QuadLocations=pd.read_csv('/content/drive/Shareddrives/Capstone Drive/MLTesting/Datasets/ExpPatch_QuadLocations.csv')\n","TempsCleaned=pd.read_csv('/content/drive/Shareddrives/Capstone Drive/MLTesting/Datasets/ExpPatch_TempsCleaned.csv')\n","BalanusGrowthRate=pd.read_csv('/content/drive/Shareddrives/Capstone Drive/MLTesting/Datasets/BalanusGrowthRate.csv')\n"]},{"cell_type":"code","execution_count":null,"metadata":{"colab":{"base_uri":"https://localhost:8080/","height":206},"executionInfo":{"elapsed":17,"status":"ok","timestamp":1653602434052,"user":{"displayName":"Samson Mont","userId":"14456403475501558295"},"user_tz":420},"id":"xFZXDJgWSffO","outputId":"aacade68-f769-4a37-fbbc-c3486576c549"},"outputs":[{"output_type":"execute_result","data":{"text/plain":[" Date Patch Prey Pred frat fcnt \\\n","0 2013-08-19 A Adula_californiensis Nucella_canaliculata 0.0 0 \n","1 2013-08-19 A Adula_californiensis Nucella_ostrina 0.0 0 \n","2 2013-08-19 A Balanus_glandula Nucella_canaliculata 0.0 0 \n","3 2013-08-19 A Balanus_glandula Nucella_ostrina 0.2 6 \n","4 2013-08-19 A Chthamalus_dalli Nucella_canaliculata 0.0 0 \n","\n"," tObs htime Density avgTemp att frate \n","0 1 NaN 0.0 12.22 NaN NaN \n","1 36 NaN 0.0 12.22 NaN NaN \n","2 1 NaN 101683.2 12.22 NaN NaN \n","3 36 13.338241 101683.2 12.22 1.474627e-07 0.014994 \n","4 1 NaN 819.2 12.22 NaN NaN "],"text/html":["\n","
\n","
\n","
\n","\n","
\n"," \n","
\n","
\n","
Date
\n","
Patch
\n","
Prey
\n","
Pred
\n","
frat
\n","
fcnt
\n","
tObs
\n","
htime
\n","
Density
\n","
avgTemp
\n","
att
\n","
frate
\n","
\n"," \n"," \n","
\n","
0
\n","
2013-08-19
\n","
A
\n","
Adula_californiensis
\n","
Nucella_canaliculata
\n","
0.0
\n","
0
\n","
1
\n","
NaN
\n","
0.0
\n","
12.22
\n","
NaN
\n","
NaN
\n","
\n","
\n","
1
\n","
2013-08-19
\n","
A
\n","
Adula_californiensis
\n","
Nucella_ostrina
\n","
0.0
\n","
0
\n","
36
\n","
NaN
\n","
0.0
\n","
12.22
\n","
NaN
\n","
NaN
\n","
\n","
\n","
2
\n","
2013-08-19
\n","
A
\n","
Balanus_glandula
\n","
Nucella_canaliculata
\n","
0.0
\n","
0
\n","
1
\n","
NaN
\n","
101683.2
\n","
12.22
\n","
NaN
\n","
NaN
\n","
\n","
\n","
3
\n","
2013-08-19
\n","
A
\n","
Balanus_glandula
\n","
Nucella_ostrina
\n","
0.2
\n","
6
\n","
36
\n","
13.338241
\n","
101683.2
\n","
12.22
\n","
1.474627e-07
\n","
0.014994
\n","
\n","
\n","
4
\n","
2013-08-19
\n","
A
\n","
Chthamalus_dalli
\n","
Nucella_canaliculata
\n","
0.0
\n","
0
\n","
1
\n","
NaN
\n","
819.2
\n","
12.22
\n","
NaN
\n","
NaN
\n","
\n"," \n","
\n","
\n"," \n"," \n"," \n","\n"," \n","
\n","
\n"," "]},"metadata":{},"execution_count":3}],"source":["#View Data\n","IntxnStr.head()\n","#IntxnStr.describe()"]},{"cell_type":"code","execution_count":null,"metadata":{"id":"o23ZOBm0VU5-"},"outputs":[],"source":["converter = {\n"," 'sub': lambda x, y : x - y,\n"," 'div': lambda x, y : x/y,\n"," 'mul': lambda x, y : x*y,\n"," 'add': lambda x, y : x + y,\n"," 'neg': lambda x : -x,\n"," 'pow': lambda x, y : x**y,\n"," 'inv': lambda x: 1/x,\n"," 'sqrt': lambda x: x**0.5,\n"," 'pow3': lambda x: x**3,\n"," 'sin': lambda x: math.sin(x),\n"," 'cos': lambda x: math.cos(x),\n","}"]},{"cell_type":"code","execution_count":null,"metadata":{"id":"KJvXsKcnbkX3"},"outputs":[],"source":["#isolating Balanus_glandula and modifying dataset to run cleaner\n","preyItems = ['Balanus_glandula']\n","df_working_s1 = IntxnStr\n","#Isolate Nucella_ostrina as the prey\n","df_working_s2 = df_working_s1[df_working_s1.Pred=='Nucella_ostrina']\n","#df_working_s2.frate.isna().sum() #199 nas for feeding rate out of 486\n","#remove na's\n","df_working_s3 = df_working_s2[df_working_s2['frate'].notna()]\n","#remove many of the columns\n","df_working_s4 = df_working_s3.filter(['frat','fcnt','tObs','htime','Density','avgTemp','att','frate'])\n","#remove infinites\n","df_working_s5 = df_working_s4.replace([np.inf, 0], np.nan).dropna(axis=0)\n","#remove outliers\n","df_working_s6 = df_working_s5[df_working_s5['frate'] < .060]\n","df_working_s6"]},{"cell_type":"code","execution_count":null,"metadata":{"id":"zQ3W8TfDjqRb"},"outputs":[],"source":["#grabbing X_train and y_train\n","function_set = ['add', 'sub', 'mul', 'div'] #the functions we'll be using\n","y_train=df_working_s6.filter(['frate'],axis=1)\n","X_train=df_working_s6.filter(['Density','avgTemp'],axis=1) #just include feeding rate and temp\n","full=df_working_s5.filter(['Density','avgTemp','frate'],axis=1) #for plotting and seeing outliers\n","\n","#check to make sure all is well\n","print (X_train)\n","#print (X_train.isna().sum().sum())\n","#print (X_train.shape)\n","print (y_train)\n","y_train.describe()"]},{"cell_type":"code","execution_count":null,"metadata":{"id":"ZqNN-M6g_CNW"},"outputs":[],"source":["#visualize outliers\n","import plotly.express as px\n","full.plot(kind='scatter', x='Density', y='frate')\n","full.plot(kind='scatter', x='avgTemp', y='frate')\n","temp=full[full['frate'] < .060]\n","temp.plot(kind='scatter', x='Density', y='frate')\n","\n","fig = px.scatter_3d(temp, x='Density', y='avgTemp', z='frate')\n","fig.show()\n","\n","\n"]},{"cell_type":"code","execution_count":null,"metadata":{"id":"KfhzYJJV6a47"},"outputs":[],"source":["#time to run a grid search for good parameters\n","#this cell can be skipped unless you want to run a grid search\n","#function_set = ['add', 'sub', 'mul', 'div', 'neg','inv','cos','sin','log','sqrt']\n","feature_names_list=['Density','avgTemp']\n","\n","param_population_size=[4000]#---------------default 1k\n","#param_generations=[10]#---------------------default 20\n","param_tournament_size=[80]#----------------default 20, selects 20 from population size to find winners\n","#param_stopping_critera=[.000001]#-----------default 0.0\n","#param_function_set=[function_set]#----------default (‘add’, ‘sub’, ‘mul’, ‘div’)\n","param_p_crossover=[.83,.87,.9,.95,.97]#-----------default .9\n","param_p_subtree_mutation=[.01,.03,.05,.1]#--default .01\n","param_p_hoist_mutation=[.01,.03,.05,.1]#----default .01\n","param_p_point_mutation=[.01,.03,.05,.1]#----default .01 \n","#param_max_samples=[1.0]#--------------------default 1\n","#param_parsimony_coefficient=[.000001]#------default .0001\n","#param_low_memory=['True']#------------------default false\n","\n","param_complete=[{'population_size':param_population_size,\n"," #'generations':param_generations,\n"," #'stopping_criteria':param_stopping_critera,\n"," 'p_crossover':param_p_crossover,\n"," 'p_subtree_mutation':param_p_subtree_mutation,\n"," #'function_set':param_function_set,\n"," 'p_hoist_mutation':param_p_hoist_mutation,\n"," 'p_point_mutation':param_p_point_mutation,\n"," #'max_samples':param_max_samples,\n"," #'parsimony_coefficient':param_parsimony_coefficient,\n"," #'n_jobs':[-1],\n"," #'feature_names':[feature_names_list],\n"," #'low_memory':param_low_memory,\n"," 'tournament_size':param_tournament_size,\n"," #'random_state':[0],\n"," #'verbose':[1],\n"," }]"]},{"cell_type":"code","execution_count":null,"metadata":{"id":"xnjPm7xTAT3x"},"outputs":[],"source":["#grid search\n","#this cell can be skipped unless you want to run a grid search\n","clf=SymbolicRegressor(function_set=function_set,\n","max_samples=.9, verbose=0, generations=15,\n","parsimony_coefficient=.000002,low_memory='True')\n","\n","#cv = RepeatedKFold(n_splits=2, n_repeats=1, random_state=0)\n","gs=GridSearchCV(clf,param_complete,cv=2,verbose=3,scoring='neg_mean_absolute_error')\n","gs=gs.fit(X_train,y_train.values.ravel())\n","print(gs.best_score_)\n","print(gs.best_params_)"]},{"cell_type":"code","execution_count":null,"metadata":{"id":"9oJ3l3agkx87"},"outputs":[],"source":["#regressor Warm_Start not working?\n","#the meat'n'potatoes \n","est_gp = SymbolicRegressor(population_size=5000, \n","generations=10, stopping_criteria=.0015, \n","p_crossover=0.9, p_subtree_mutation=0.01, function_set=function_set,\n","p_hoist_mutation=0.05, \n","p_point_mutation=0.01,\n","max_samples=.8, verbose=1, tournament_size=100,\n","parsimony_coefficient=.000002, warm_start='True',\n","low_memory='True')\n","\n","est_gp.fit(X_train, y_train.values.ravel())\n","print(est_gp._program)\n","print('R2:',est_gp.score(X_train,y_train))\n"]},{"cell_type":"markdown","source":["Some generated equations\n","\n","div(-0.233, add(add(add(add(mul(X1, X1), div(X1, -0.041)), div(-0.233, -0.041)), div(-0.233, div(add(add(add(add(add(mul(X1, X1), div(X1, -0.041)), div(add(add(add(add(add(add(mul(X1, X1), div(X1, -0.041)), div(div(-0.041, X0), X0)), div(div(div(X1, -0.041), X0), X0)), div(-0.233, div(mul(X1, X1), X0))), div(-0.233, div(div(X1, -0.041), X0))), X1), X0)), div(-0.233, div(mul(X1, X1), X0))), div(-0.233, div(div(X1, -0.041), X0))), X1), X0))), X1))\n","R2: 0.15202983834837858\n","\n","add(mul(0.362, mul(0.060, 0.042)), mul(mul(mul(mul(0.060, 0.042), 0.042), -0.076), mul(sub(mul(0.060, 0.042), mul(0.362, X0)), 0.042)))\n","R2: 0.20055316483284125\n","\n","div(mul(add(div(mul(mul(mul(-0.012, X1), X0), add(add(mul(add(add(X0, X0), add(X0, X0)), sub(X0, mul(add(X0, X0), mul(0.072, X1)))), add(X0, X0)), div(div(add(X0, X0), -0.012), -0.012))), div(div(X0, -0.012), -0.012)), X0), mul(-0.012, X1)), div(X0, -0.012))\n","R2: 0.2701470697263707"],"metadata":{"id":"3BV_tQlhhUkq"}},{"cell_type":"code","execution_count":null,"metadata":{"id":"s484vsyifYiG"},"outputs":[],"source":["#clean up equation\n","eq= est_gp._program\n","r2= est_gp.score(X_train,y_train)\n","print (r2)\n","print (eq)\n","next_e = sympify(eq, locals=converter)\n","print(next_e)"]},{"cell_type":"code","source":["#Create tree graph of equation\n","import graphviz\n","dot_data = est_gp._program.export_graphviz()\n","graph = graphviz.Source(dot_data)\n","graph.render('images/ex1', format='png', cleanup=True)\n","graph"],"metadata":{"id":"i-8d9mb0ZQo_"},"execution_count":null,"outputs":[]}],"metadata":{"colab":{"collapsed_sections":[],"name":"DensityExplFRate.ipynb","provenance":[]},"kernelspec":{"display_name":"Python 3","name":"python3"},"language_info":{"name":"python"}},"nbformat":4,"nbformat_minor":0}
\ No newline at end of file
diff --git a/CodeFreeze2022/Project Archive/Colab Notebooks/GrowthRate.ipynb b/CodeFreeze2022/Project Archive/Colab Notebooks/GrowthRate.ipynb
new file mode 100644
index 0000000..790ac78
--- /dev/null
+++ b/CodeFreeze2022/Project Archive/Colab Notebooks/GrowthRate.ipynb
@@ -0,0 +1 @@
+{"cells":[{"cell_type":"code","execution_count":null,"metadata":{"colab":{"base_uri":"https://localhost:8080/"},"executionInfo":{"elapsed":4564,"status":"ok","timestamp":1653619826420,"user":{"displayName":"Markus A Bauer","userId":"12354452676991306572"},"user_tz":420},"id":"HNDbVL4Ak49F","outputId":"e6ba7450-bed1-4fe2-8b9d-297272fa317f"},"outputs":[{"output_type":"stream","name":"stdout","text":["Looking in indexes: https://pypi.org/simple, https://us-python.pkg.dev/colab-wheels/public/simple/\n","Requirement already satisfied: gplearn in /usr/local/lib/python3.7/dist-packages (0.4.2)\n","Requirement already satisfied: joblib>=1.0.0 in /usr/local/lib/python3.7/dist-packages (from gplearn) (1.1.0)\n","Requirement already satisfied: scikit-learn>=1.0.2 in /usr/local/lib/python3.7/dist-packages (from gplearn) (1.0.2)\n","Requirement already satisfied: numpy>=1.14.6 in /usr/local/lib/python3.7/dist-packages (from scikit-learn>=1.0.2->gplearn) (1.21.6)\n","Requirement already satisfied: threadpoolctl>=2.0.0 in /usr/local/lib/python3.7/dist-packages (from scikit-learn>=1.0.2->gplearn) (3.1.0)\n","Requirement already satisfied: scipy>=1.1.0 in /usr/local/lib/python3.7/dist-packages (from scikit-learn>=1.0.2->gplearn) (1.4.1)\n"]}],"source":["#Imports Below\n","import pandas as pd\n","import numpy as np\n","import operator\n","import random\n","import io\n","import math\n","import graphviz\n","!pip install gplearn\n","from gplearn.genetic import SymbolicRegressor\n","from gplearn.functions import make_function\n","from sympy import *\n","import matplotlib\n","from google.colab import files\n","from google.colab import drive"]},{"cell_type":"code","execution_count":null,"metadata":{"colab":{"base_uri":"https://localhost:8080/"},"executionInfo":{"elapsed":5127,"status":"ok","timestamp":1653620035041,"user":{"displayName":"Markus A Bauer","userId":"12354452676991306572"},"user_tz":420},"id":"rhfp3vNdSft9","outputId":"5a957851-7dde-4171-801c-98f8a893326f"},"outputs":[{"output_type":"stream","name":"stdout","text":["Mounted at /content/drive\n"]}],"source":["drive.mount(\"/content/drive\", force_remount=True)\n","#Uploading Datasets\n","\n","IntxnStr=pd.read_csv('/content/drive/Shareddrives/Capstone Drive/MLTesting/Datasets/ExpPatch_IntxnStr.csv')\n","PatchTidalHeights=pd.read_csv('/content/drive/Shareddrives/Capstone Drive/MLTesting/Datasets/ExpPatch_PatchTidalHeights.csv')\n","PhotoCounts=pd.read_csv('/content/drive/Shareddrives/Capstone Drive/MLTesting/Datasets/ExpPatch_PhotoCounts.csv')\n","QuadLocations=pd.read_csv('/content/drive/Shareddrives/Capstone Drive/MLTesting/Datasets/ExpPatch_QuadLocations.csv')\n","TempsCleaned=pd.read_csv('/content/drive/Shareddrives/Capstone Drive/MLTesting/Datasets/ExpPatch_TempsCleaned.csv')\n","X_train=pd.read_csv('/content/drive/Shareddrives/Capstone Drive/MLTesting/Datasets/relevant_X_train.csv')\n","y_train=pd.read_csv('/content/drive/Shareddrives/Capstone Drive/MLTesting/Datasets/MytilusLOG.csv')\n","timeseries = pd.read_csv('/content/drive/Shareddrives/Capstone Drive/MLTesting/Datasets/time.csv')"]},{"cell_type":"code","execution_count":null,"metadata":{"id":"sfbfSw17XYuP"},"outputs":[],"source":["#Converter library for simplifying function\n","converter = {\n"," 'sub': lambda x, y : x - y,\n"," 'div': lambda x, y : x/y,\n"," 'mul': lambda x, y : x*y,\n"," 'add': lambda x, y : x + y,\n"," 'neg': lambda x : -x,\n"," 'pow': lambda x, y : x**y,\n"," 'inv': lambda x: 1/x,\n"," 'sqrt': lambda x: x**0.5,\n"," 'pow_3': lambda x: x**3,\n"," 'sin': lambda x: sin(x),\n"," 'cos': lambda x: cos(x)\n","}"]},{"cell_type":"code","execution_count":null,"metadata":{"id":"kkDmiIEoT7SU"},"outputs":[],"source":["#Prepare training data by selecting the columns to be included\n","X_train = X_train.iloc[:, 1:len(X_train.columns)]\n","print(X_train)\n","\n","#Select function set for symbolic regression\n","function_set = ['add', 'sub', 'mul', 'div', 'neg','inv']\n","#,'cos','sin','neg','inv'"]},{"cell_type":"code","execution_count":null,"metadata":{"colab":{"base_uri":"https://localhost:8080/","height":1000},"id":"XEjTPAgvS-jH","executionInfo":{"status":"ok","timestamp":1653619854706,"user_tz":420,"elapsed":24818,"user":{"displayName":"Markus A Bauer","userId":"12354452676991306572"}},"outputId":"d1741abe-ec9b-4329-cfab-265a300c355d"},"outputs":[{"output_type":"stream","name":"stdout","text":[" | Population Average | Best Individual |\n","---- ------------------------- ------------------------------------------ ----------\n"," Gen Length Fitness Length Fitness OOB Fitness Time Left\n"]},{"output_type":"stream","name":"stderr","text":["/usr/local/lib/python3.7/dist-packages/sklearn/utils/validation.py:993: DataConversionWarning: A column-vector y was passed when a 1d array was expected. Please change the shape of y to (n_samples, ), for example using ravel().\n"," y = column_or_1d(y, warn=True)\n"]},{"output_type":"stream","name":"stdout","text":[" 0 14.78 2.12486e+21 14 0.0119241 0.0422989 167.19m\n"," 1 12.05 1.18931e+18 21 0.0118788 0.0426049 129.64m\n"," 2 12.88 6.39943e+12 20 0.0112163 0.0299336 114.42m\n"," 3 12.22 4.40491e+06 41 0.0110277 0.0270048 121.63m\n"," 4 13.20 27943.1 12 0.0109163 0.0290148 189.29m\n"," 5 15.47 216354 33 0.0104526 0.0316457 288.03m\n"," 6 17.92 475.621 14 0.0104746 0.0374155 245.96m\n"," 7 19.51 202378 12 0.0100507 0.0361691 358.43m\n"," 8 20.54 89.0295 14 0.00975041 0.0372284 364.31m\n"," 9 22.50 159.375 39 0.0101927 0.0348566 285.66m\n"," 10 23.12 1815.72 41 0.0104627 0.0335312 392.91m\n"," 11 23.57 216.865 34 0.00980618 0.0367771 315.10m\n"," 12 26.67 3578.29 9 0.00999033 0.03797 377.69m\n"," 13 28.06 195.205 50 0.0101415 0.0354427 362.91m\n"," 14 28.09 246.345 31 0.0096294 0.0381957 343.86m\n","div(div(X0, X3), add(sub(div(mul(div(div(X0, X3), add(sub(div(X0, X3), div(X0, X3)), X7)), div(inv(div(X0, X3)), X6)), X6), inv(-0.435)), X7))\n","R2: 0.37660320107663803\n","X0*X6**2*X7/(X3*(X6**2*X7*(X7 + 2.29885057471264) + 1))\n"]},{"output_type":"stream","name":"stderr","text":["/usr/local/lib/python3.7/dist-packages/sympy/core/sympify.py:463: SymPyDeprecationWarning: \n","\n","String fallback in sympify has been deprecated since SymPy 1.6. Use\n","sympify(str(obj)) or sympy.core.sympify.converter or obj._sympy_\n","instead. See https://github.com/sympy/sympy/issues/18066 for more\n","info.\n","\n"," deprecated_since_version='1.6'\n"]},{"output_type":"execute_result","data":{"text/plain":[""],"image/svg+xml":"\n\n\n\n\n"},"metadata":{},"execution_count":17}],"source":["#Symbolic Regression Parameters\n","est_gp = SymbolicRegressor(population_size=1000, \n","generations=10000, stopping_criteria=.0097, \n","p_crossover=0.8, p_subtree_mutation=0.05, function_set=function_set,\n","p_hoist_mutation=0.01, \n","p_point_mutation=0.1,\n","max_samples=0.90, verbose=1,\n","parsimony_coefficient=.00001, random_state=0)\n","\n","#Run Symbolic Regressor; Output model, R2 value, and simplified equation\n","est_gp.fit(X_train, y_train)\n","print(est_gp._program)\n","print('R2:',est_gp.score(X_train,y_train))\n","next_e = simplify(sympify(est_gp._program, locals=converter))\n","print(next_e)\n","\n","#Generate tree structure of equation\n","dot_data = est_gp._program.export_graphviz()\n","graph = graphviz.Source(dot_data)\n","graph.render('images/ex1', format='png', cleanup=True)\n","graph"]},{"cell_type":"code","execution_count":null,"metadata":{"id":"YHUpLkoiBy_c","colab":{"base_uri":"https://localhost:8080/"},"executionInfo":{"status":"ok","timestamp":1653619854709,"user_tz":420,"elapsed":83,"user":{"displayName":"Markus A Bauer","userId":"12354452676991306572"}},"outputId":"cd7f24c1-59c3-43bb-9cad-fc51a6898d9c"},"outputs":[{"output_type":"stream","name":"stdout","text":["-X4 - 1.34269820575239/(1.15874855156431/X7 - X5/X3) + 1.55584960110358*X4*(X1 + 1.15874855156431/(X7*(X5*(0.863 + 1.15874855156431/X7) - 0.744769)))/(X3*X8) + X5/X3\n"]}],"source":["#Simplifies equations that are inputted manually\n","eq = \"-X4 - 1.34269820575239/(1.15874855156431/X7 - X5/X3) + 1.55584960110358*X4*(X1 + 1.15874855156431/(X7*(X5*(0.863 + 1.15874855156431/X7) - 0.744769)))/(X3*X8) + X5/X3\"\n","next_e = sympify(eq, locals=converter)\n","print(next_e)"]},{"cell_type":"code","execution_count":null,"metadata":{"id":"UfgCFAyX1SYp","colab":{"base_uri":"https://localhost:8080/","height":907},"executionInfo":{"status":"ok","timestamp":1653620039384,"user_tz":420,"elapsed":622,"user":{"displayName":"Markus A Bauer","userId":"12354452676991306572"}},"outputId":"d30553a0-5ee8-4f17-abcc-c2fa31c75c7a"},"outputs":[{"output_type":"stream","name":"stdout","text":["0 inf\n","1 316.280000\n","2 1290.000000\n","3 inf\n","4 inf\n","5 inf\n","6 inf\n","7 inf\n","8 0.622449\n","9 inf\n","10 inf\n","11 inf\n","12 inf\n","13 inf\n","14 inf\n","15 inf\n","16 inf\n","17 inf\n","18 inf\n","19 inf\n","20 inf\n","21 inf\n","22 inf\n","23 inf\n","24 inf\n","25 inf\n","26 inf\n","27 inf\n","28 inf\n","29 inf\n","30 inf\n","31 inf\n","32 inf\n","33 inf\n","34 inf\n","35 inf\n","dtype: float64\n"]},{"output_type":"display_data","data":{"text/plain":[""],"image/png":"iVBORw0KGgoAAAANSUhEUgAAAX4AAAD4CAYAAADrRI2NAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADh0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uMy4yLjIsIGh0dHA6Ly9tYXRwbG90bGliLm9yZy+WH4yJAAAVzUlEQVR4nO3df5Cd1X3f8fe3EsLCaSUBayxWciXHGjyUkCBvbBg6GQclIKhBNHUZGE8tO3SUNm7thAyOFLe25P6wXWeCrZkUW2NI5AzFVjExCkNKqSCTaWZQWBksfoeNbSwpElrboPxArpHz7R/3rLgs++v+3F2d92tm5z7POee555znXD579dxnuZGZSJLq8Q9mewCSpP4y+CWpMga/JFXG4Jekyhj8klSZhbM9gKmcffbZuWrVqtkehiTNK/v27fteZg5MVj+ng3/VqlUMDw/P9jAkaV6JiOenqvdSjyRVxuCXpMoY/JJUGYNfkipj8EtSZQz+Mft3wS0XwNaljcf9u2Z7RJLUE3P6ds6+2b8L/ujD8Mrxxv6xA419gAuvm71xSVIP+I4fYM8nXw39Ma8cb5RL0inG4Ac4drC1ckmaxwx+gCUrWiuXpHnM4AdY93E4bfFry05b3CiXpFOMwQ+ND3Cv3g5LVgLReLx6ux/sSjoleVfPmAuvM+glVcF3/JJUGYNfkipj8EtSZQx+SaqMwS9JlTH4Jaky0wZ/RNweEUcj4ommss9GxDMRsT8i/jAiljbVbYmIkYh4NiKuaCpfX8pGImJz96ciSZqJmbzj/31g/biyB4ALMvNC4C+ALQARcT5wPfBPyjH/PSIWRMQC4HeBK4HzgRtKW0lSn00b/Jn5p8APxpX978w8UXYfBsb+pzYbgK9k5v/LzG8DI8A7y89IZn4rM38EfKW0lST1WTeu8f8y8MdlexA40FR3sJRNVv46EbEpIoYjYnh0dLQLw5MkNeso+CPiY8AJ4I7uDAcyc0dmDmXm0MDAQLeeVpJUtP3/6omIDwDvAdZlZpbiQ8DKpmYrShlTlEuS+qitd/wRsR74KHBNZr7cVLUbuD4iTo+I1cAa4M+BR4A1EbE6IhbR+AB4d2dDlyS1Y9p3/BFxJ/Bu4OyIOAh8gsZdPKcDD0QEwMOZ+W8y88mI2AU8ReMS0Icy88flef4dcD+wALg9M5/swXwkSdOIV6/SzD1DQ0M5PDw828OQpHklIvZl5tBk9f7lriRVxuCXpMoY/JJUGYNfkipj8EtSZQx+SaqMwS9JlTH4JakyBr8kVcbgl6TKGPySVBmDX5IqY/BLUmUMfkmqjMEvSZUx+CWpMga/JFXG4Jekyhj8klQZg1+SKmPwS1JlDH5Jqsy0wR8Rt0fE0Yh4oqnszIh4ICKeK4/LSnlExPaIGImI/RGxtumYjaX9cxGxsTfTkSRNZybv+H8fWD+ubDOwJzPXAHvKPsCVwJryswm4FRq/KIBPAO8C3gl8YuyXhSSpv6YN/sz8U+AH44o3ADvL9k7g2qbyL2fDw8DSiFgOXAE8kJk/yMwXgQd4/S8TSVIftHuN/5zMPFy2jwDnlO1B4EBTu4OlbLLy14mITRExHBHDo6OjbQ5PkjSZjj/czcwEsgtjGXu+HZk5lJlDAwMD3XpaSVLRbvC/UC7hUB6PlvJDwMqmditK2WTlkqQ+azf4dwNjd+ZsBO5pKn9/ubvnYuBYuSR0P3B5RCwrH+peXsokSX22cLoGEXEn8G7g7Ig4SOPunE8DuyLiRuB54LrS/D7gKmAEeBn4IEBm/iAi/hPwSGn3ycwc/4GxJKkPonGJfm4aGhrK4eHh2R6GJM0rEbEvM4cmq/cvdyWpMga/JFXG4Jekyhj8klQZg1+SKmPwS1JlDH5JqozBL0mVMfglqTIGvyRVxuCXpMoY/JJUGYNfkipj8EtSZQx+SaqMwS9JlTH4JakyBr8kVcbgl6TKGPySVBmDX5Iq01HwR8SvR8STEfFERNwZEW+IiNURsTciRiLiqxGxqLQ9veyPlPpV3ZiAJKk1bQd/RAwCHwaGMvMCYAFwPfAZ4JbMfBvwInBjOeRG4MVSfktpJ0nqs04v9SwEFkfEQuAM4DBwGXBXqd8JXFu2N5R9Sv26iIgO+5cktajt4M/MQ8BvA9+lEfjHgH3AS5l5ojQ7CAyW7UHgQDn2RGl/1vjnjYhNETEcEcOjo6PtDk+SNIlOLvUso/EufjVwLvBGYH2nA8rMHZk5lJlDAwMDnT6dJGmcTi71/ALw7cwczcxXgLuBS4Gl5dIPwArgUNk+BKwEKPVLgO930L8kqQ2dBP93gYsj4oxyrX4d8BTwEPDe0mYjcE/Z3l32KfUPZmZ20L8kqQ2dXOPfS+ND2m8Aj5fn2gH8JnBTRIzQuIZ/WznkNuCsUn4TsLmDcUuS2hRz+U330NBQDg8Pz/YwJGleiYh9mTk0Wb1/uStJlTH4JakyBr8kVcbgl6TKGPySVBmDX5IqY/BLUmUMfkmqjMEvSZUx+CWpMga/JFXG4Jekyhj8klQZg1+SKmPwS1JlDH5JqozBL0mVMfglqTIGvyRVxuCXpMoY/JJUGYNfkirTUfBHxNKIuCsinomIpyPikog4MyIeiIjnyuOy0jYiYntEjETE/ohY250pSJJa0ek7/s8D/ysz3w78NPA0sBnYk5lrgD1lH+BKYE352QTc2mHfkqQ2tB38EbEE+DngNoDM/FFmvgRsAHaWZjuBa8v2BuDL2fAwsDQilrc9cklSWzp5x78aGAV+LyIejYgvRcQbgXMy83BpcwQ4p2wPAgeajj9Yyl4jIjZFxHBEDI+OjnYwPEnSRDoJ/oXAWuDWzLwI+DtevawDQGYmkK08aWbuyMyhzBwaGBjoYHiSpIl0EvwHgYOZubfs30XjF8ELY5dwyuPRUn8IWNl0/IpSJknqo7aDPzOPAAci4rxStA54CtgNbCxlG4F7yvZu4P3l7p6LgWNNl4QkSX2ysMPj/z1wR0QsAr4FfJDGL5NdEXEj8DxwXWl7H3AVMAK8XNpKkvqso+DPzMeAoQmq1k3QNoEPddKfJKlz/uWuJFXG4Jekyhj8klQZg1+SKmPwS1JlDH5JqozBL0mVMfglqTIGvyRVxuCXpMoY/JJUGYNfkipj8EtSZQx+SaqMwS9JlTH4JakyBr8kVcbgl6TKGPySVBmDX5IqY/BLUmU6Dv6IWBARj0bEvWV/dUTsjYiRiPhqRCwq5aeX/ZFSv6rTviVJrevGO/6PAE837X8GuCUz3wa8CNxYym8EXizlt5R2kqQ+6yj4I2IF8M+AL5X9AC4D7ipNdgLXlu0NZZ9Sv660lyT1Uafv+D8HfBT4+7J/FvBSZp4o+weBwbI9CBwAKPXHSntJUh+1HfwR8R7gaGbu6+J4iIhNETEcEcOjo6PdfGpJEp29478UuCYivgN8hcYlns8DSyNiYWmzAjhUtg8BKwFK/RLg++OfNDN3ZOZQZg4NDAx0MDxJ0kTaDv7M3JKZKzJzFXA98GBmvg94CHhvabYRuKds7y77lPoHMzPb7V+S1J5e3Mf/m8BNETFC4xr+baX8NuCsUn4TsLkHfUuSprFw+ibTy8w/Af6kbH8LeOcEbX4I/Mtu9CdJap9/uStJlTH4JakyBr8kVcbgl6TK1Bf8+3fBLRfA1qWNx/27ZntEktRXXbmrZ97Yvwv+6MPwyvHG/rEDjX2AC6+bvXFJUh/V9Y5/zydfDf0xrxxvlEtSJeoK/mMHWyuXpFNQXcG/ZEVr5ZJ0Cqor+Nd9HE5b/Nqy0xY3yiWpEnUF/4XXwdXbYclKIBqPV2/3g11JVanrrh5ohLxBL6lidb3jlyQZ/JJUG4Nfkipj8EtSZQx+SaqMwS9JlTH4JakyBr8kVcbgl6TKGPySVJm2gz8iVkbEQxHxVEQ8GREfKeVnRsQDEfFceVxWyiMitkfESETsj4i13ZqEJGnmOnnHfwL4jcw8H7gY+FBEnA9sBvZk5hpgT9kHuBJYU342Abd20LckqU1tB39mHs7Mb5TtvwGeBgaBDcDO0mwncG3Z3gB8ORseBpZGxPK2Ry5JaktXrvFHxCrgImAvcE5mHi5VR4BzyvYgcKDpsIOlbPxzbYqI4YgYHh0d7cbwJElNOg7+iPgJ4GvAr2XmXzfXZWYC2crzZeaOzBzKzKGBgYFOhydJGqej4I+I02iE/h2ZeXcpfmHsEk55PFrKDwErmw5fUcokSX3UyV09AdwGPJ2Zv9NUtRvYWLY3Avc0lb+/3N1zMXCs6ZKQJKlPOvkGrkuBfwU8HhGPlbLfAj4N7IqIG4HngbGvu7oPuAoYAV4GPthB35KkNrUd/Jn5f4GYpHrdBO0T+FC7/UmSusO/3JWkyhj8klQZg1+SKmPwS1JlDH5JqozBL0mVMfglqTIGvyRVxuCXpMoY/JJUGYNfkipj8EtSZQx+SaqMwS9JlTH4JakyBr8kVcbgl6TKGPySVBmDX5IqY/BLUmUMfkmqjMEvSZVZ2O8OI2I98HlgAfClzPx0t/v4+qOH+Oz9z/JXLx3n3KWLufmK87j2osEp69o5Zib99WKsMz3+kd1fZOU3PsubcpSjMcCBtTfzs9f8Slf6bnXOncyl32Pp5Zr0uu9unfNuj2W6sf382wd46JnRrj1fq6+RXp2Hds5Tp+d2JiIzu/qEU3YWsQD4C+AXgYPAI8ANmfnURO2HhoZyeHi4pT6+/ughttz9OMdf+fHJssWnLeBTv/RTABPW/Yt3DPK1fYdaOuZTv/RTJ0Npqvpuj7X5eac6fvDAvVyw7z+wOH50su54LuKJd/xnfvaaX+mo71bnPJP2k7WZam16MZZerkkn53UmfXfrnE/XX6tjmcnYxuv0+Vp5jfTqPLSTDZ3kSbOI2JeZQ5PW9zn4LwG2ZuYVZX8LQGZ+aqL27QT/pZ9+kEMvHX9d+eDSxQAT1i2I4McTnIepjhlcupg/23zZlP392ebLuj7W5ued6viv/XATb2b0dXVHGODNW0c66rvVOc+k/WRtplqbXoyll2sy3fGd9t2sk3M+XX+tjmWmY+v28830NdKr89BONnSSJ82mC/5+X+oZBA407R8E3tXcICI2AZsA3vKWt7TcwV9N8oKarByYMFimO2asrp3+pmszk36nO/5Np49CvL7uTfm9jvtu9diZlE/WZrq16fZYerkm0x3fad+tlnezv+nqZqPdTM9rr85DP9azXXPuw93M3JGZQ5k5NDAw0PLx55bfxBOVT1a3ICZIyGmOGSufrn4q7Yy1uXyqNkdj4nN3NM7uuO9W59zJXKZam16MpZdr0uu+Wy1vt79OXvP9bDfT10ivzkM756nTcztT/Q7+Q8DKpv0Vpaxrbr7iPBaftuA1ZYtPW8DNV5w3ad0N71rZ8jE3X3HetP31YqzNzztVmwNrb+Z4LnpN3fFcxIG1N3fcd6tz7mQuU61NL8bSyzXpdd+tzLOT/jp5zU/W73idPl8rr5FenYd2zlOn53amFmzdurWrTziVbdu2HQG2btu2bfe2bdteBrYD/3Xr1q2vvxgN7NixY+umTZta6uPty/8RK5Yt5vFDx/jbH55gcOliPn71+Vx70eCkdb/6829r+ZixD1qmq+/2WJufd6o2g+cN8djfLGHB4cc4I4/zQgww8o7/ePKunk76bnXOncxlqrXpxVh6uSa97rtb53y6/jp5zU/W74afOZfv/+2PuvZ8rbxGenUe2jlPnZ7bMdu2bTu8devWHZPV9/XDXYCIuAr4HI3bOW/PzP8yWdt2PtyVpNrNtQ93ycz7gPv63a8kqWHOfbgrSeotg1+SKmPwS1JlDH5Jqkzf7+ppRUSMAs9P0eRs4Ht9Gk4/nGrzgVNvTqfafMA5zQetzucfZ+akfwE7p4N/OhExPNUtS/PNqTYfOPXmdKrNB5zTfNDt+XipR5IqY/BLUmXme/BP+ifJ89SpNh849eZ0qs0HnNN80NX5zOtr/JKk1s33d/ySpBYZ/JJUmTkb/BGxMiIeioinIuLJiPhIKT8zIh6IiOfK47JSHhGxPSJGImJ/RKyd3RlMLCIWRMSjEXFv2V8dEXvLuL8aEYtK+ellf6TUr5rNcU8mIpZGxF0R8UxEPB0Rl5wCa/Tr5TX3RETcGRFvmG/rFBG3R8TRiHiiqazldYmIjaX9cxGxcTbmUsYx0Xw+W153+yPiDyNiaVPdljKfZyPiiqby9aVsJCI293sezSaaU1Pdb0RERjS+Oanra5SZc/IHWA6sLdv/kMaXtJ8P/DdgcynfDHymbF8F/DGNLxy8GNg723OYZF43Af8DuLfs7wKuL9tfAP5t2f5V4Atl+3rgq7M99knmsxP412V7EbB0Pq8Rja8H/TawuGl9PjDf1gn4OWAt8ERTWUvrApwJfKs8Livby+bQfC4HFpbtzzTN53zgm8DpwGrgL2n8b+AXlO23ltfqN4Hz59IalfKVwP00/nj17F6s0ay/QFs4SfcAvwg8CywvZcuBZ8v2F4EbmtqfbDdXfmh849ge4DLg3rKI32t68V4C3F+27wcuKdsLS7uY7TmMm8+SEpIxrnw+r9HY90KfWc77vcAV83GdgFXjgrKldQFuAL7YVP6adrM9n3F1/xy4o2xvAbY01d1f1uzkuk3Ubq7MCbgL+GngO7wa/F1dozl7qadZ+efzRcBe4JzMPFyqjgDnlO2Jvsi9ta+t6b3PAR8F/r7snwW8lJknyn7zmE/Op9QfK+3nktXAKPB75fLVlyLijczjNcrMQ8BvA98FDtM47/uY3+s0ptV1mfPr1eSXabwjhnk8n4jYABzKzG+Oq+rqnOZ88EfETwBfA34tM/+6uS4bv+Lmxf2oEfEe4Ghm7pvtsXTRQhr/VL01My8C/o7GJYST5tMaAZTr3hto/FI7F3gjsH5WB9UD821dphIRHwNOAHfM9lg6ERFnAL8FfLzXfc3p4I+I02iE/h2ZeXcpfiEilpf65cDRUt7zL3Lv0KXANRHxHeArNC73fB5YGhFj34TWPOaT8yn1S4Dv93PAM3AQOJiZe8v+XTR+EczXNQL4BeDbmTmama8Ad9NYu/m8TmNaXZc5v14R8QHgPcD7yi8zmL/z+Ukabzi+WXJiBfCNiHgzXZ7TnA3+iAjgNuDpzPydpqrdwNgn1xtpXPsfK39/+fT7YuBY0z9rZ11mbsnMFZm5isaHgA9m5vuAh4D3lmbj5zM2z/eW9nPqHVpmHgEORMR5pWgd8BTzdI2K7wIXR8QZ5TU4Nqd5u05NWl2X+4HLI2JZ+ZfQ5aVsToiI9TQunV6TmS83Ve0Gri93XK0G1gB/DjwCrCl3aC2i8d/h7n6PezKZ+XhmvikzV5WcOEjjBpcjdHuNZvODjWk+9PinNP4puh94rPxcReP66R7gOeD/AGeW9gH8Lo1P7R8HhmZ7DlPM7d28elfPW2m8KEeA/wmcXsrfUPZHSv1bZ3vck8zlZ4Dhsk5fp3FnwbxeI2Ab8AzwBPAHNO4OmVfrBNxJ4zOKV0qA3NjOutC4dj5Sfj44x+YzQuP69lg+fKGp/cfKfJ4Frmwqv4rGHYJ/CXxsrq3RuPrv8OqHu11dI/+XDZJUmTl7qUeS1BsGvyRVxuCXpMoY/JJUGYNfkipj8EtSZQx+SarM/weNX1UCcVYlcQAAAABJRU5ErkJggg==\n"},"metadata":{"needs_background":"light"}}],"source":["#Plots time vs growth rate for original data and new model to compare\n","X0 = X_train.iloc[:, 1]\n","X1 = X_train.iloc[:, 2]\n","X2 = X_train.iloc[:, 3]\n","X3 = X_train.iloc[:, 4]\n","X4 = X_train.iloc[:, 5]\n","X5 = X_train.iloc[:, 6]\n","X6 = X_train.iloc[:, 7]\n","X7 = X_train.iloc[:, 8]\n","X8 = X_train.iloc[:, 9]\n","pred_y = (X8 + (X2 + X8)/X0)/X6**2\n","print(pred_y)\n","matplotlib.pyplot.scatter(timeseries, y_train)\n","matplotlib.pyplot.scatter(timeseries, pred_y)\n","matplotlib.pyplot.show()\n"]}],"metadata":{"colab":{"collapsed_sections":[],"name":"GrowthRate.ipynb","provenance":[]},"kernelspec":{"display_name":"Python 3","name":"python3"},"language_info":{"name":"python"}},"nbformat":4,"nbformat_minor":0}
\ No newline at end of file
diff --git a/CodeFreeze2022/Project Archive/Documentation/Final Demo Slide Deck.pdf b/CodeFreeze2022/Project Archive/Documentation/Final Demo Slide Deck.pdf
new file mode 100644
index 0000000..1fb5282
Binary files /dev/null and b/CodeFreeze2022/Project Archive/Documentation/Final Demo Slide Deck.pdf differ
diff --git a/CodeFreeze2022/Project Archive/Documentation/Growth Rate Datasets/BalanusGrowthRate.csv b/CodeFreeze2022/Project Archive/Documentation/Growth Rate Datasets/BalanusGrowthRate.csv
new file mode 100644
index 0000000..5a507d9
--- /dev/null
+++ b/CodeFreeze2022/Project Archive/Documentation/Growth Rate Datasets/BalanusGrowthRate.csv
@@ -0,0 +1,37 @@
+Balanus Growth Rate
+5213.033333
+-3200.714286
+294.0952381
+-189.2413793
+-35.57142857
+42.21052632
+64.64285714
+-482.4705882
+-211.3571429
+-389.0357143
+-351.75
+1073.933333
+-467.2222222
+-1.5
+-0.818181818
+16.36666667
+-68.62222222
+-343.2666667
+-277.9285714
+-228.1515152
+-31.27586207
+-38.46428571
+26.96428571
+328.9347826
+-177.0625
+-64.79310345
+86.33333333
+-102.2068966
+128.0555556
+-117.7666667
+-9.214285714
+106
+303.25
+991.7857143
+1404.428571
+-169.46
diff --git a/CodeFreeze2022/Project Archive/Documentation/Growth Rate Datasets/BalanusGrowthRate_Outliers.csv b/CodeFreeze2022/Project Archive/Documentation/Growth Rate Datasets/BalanusGrowthRate_Outliers.csv
new file mode 100644
index 0000000..05b7c5d
--- /dev/null
+++ b/CodeFreeze2022/Project Archive/Documentation/Growth Rate Datasets/BalanusGrowthRate_Outliers.csv
@@ -0,0 +1,35 @@
+Balanus Growth Rate
+294.0952381
+-189.2413793
+-35.57142857
+42.21052632
+64.64285714
+-482.4705882
+-211.3571429
+-389.0357143
+-351.75
+1073.933333
+-467.2222222
+-1.5
+-0.818181818
+16.36666667
+-68.62222222
+-343.2666667
+-277.9285714
+-228.1515152
+-31.27586207
+-38.46428571
+26.96428571
+328.9347826
+-177.0625
+-64.79310345
+86.33333333
+-102.2068966
+128.0555556
+-117.7666667
+-9.214285714
+106
+303.25
+991.7857143
+1404.428571
+-169.46
diff --git a/CodeFreeze2022/Project Archive/Documentation/Growth Rate Datasets/BalanusLOG.csv b/CodeFreeze2022/Project Archive/Documentation/Growth Rate Datasets/BalanusLOG.csv
new file mode 100644
index 0000000..ef9ef9d
--- /dev/null
+++ b/CodeFreeze2022/Project Archive/Documentation/Growth Rate Datasets/BalanusLOG.csv
@@ -0,0 +1,35 @@
+Balanus Growth Rate
+0.003990986
+-0.002555827
+-0.000502181
+0.000590083
+0.000877771
+-0.007308871
+-0.003833303
+-0.008353358
+-0.009719425
+0.023488539
+-0.008900381
+-3.52E-05
+-1.92E-05
+0.000381908
+-0.00165204
+-0.009918414
+-0.010844986
+-0.012742012
+-0.002242707
+-0.002969977
+0.002107608
+0.016625059
+-0.006979861
+-0.002987656
+0.003941112
+-0.005115036
+0.007000516
+-0.007514751
+-0.000750743
+0.007724546
+0.015657859
+0.027518018
+0.020204724
+-0.001954319
diff --git a/CodeFreeze2022/Project Archive/Documentation/Growth Rate Datasets/ExpPatch_IntxnStr.csv b/CodeFreeze2022/Project Archive/Documentation/Growth Rate Datasets/ExpPatch_IntxnStr.csv
new file mode 100644
index 0000000..fceec30
--- /dev/null
+++ b/CodeFreeze2022/Project Archive/Documentation/Growth Rate Datasets/ExpPatch_IntxnStr.csv
@@ -0,0 +1,11665 @@
+"Date","Patch","Prey","Pred","frat","fcnt","tObs","htime","Density","avgTemp","att","frate"
+2013-08-19,"A","Adula_californiensis","Nucella_canaliculata",0,0,1,NA,0,12.22,NA,NA
+2013-08-19,"A","Adula_californiensis","Nucella_ostrina",0,0,36,NA,0,12.22,NA,NA
+2013-08-19,"A","Balanus_glandula","Nucella_canaliculata",0,0,1,NA,101683.2,12.22,NA,NA
+2013-08-19,"A","Balanus_glandula","Nucella_ostrina",0.2,6,36,13.3382406919447,101683.2,12.22,1.47462720024032e-07,0.0149944812527476
+2013-08-19,"A","Chthamalus_dalli","Nucella_canaliculata",0,0,1,NA,819.2,12.22,NA,NA
+2013-08-19,"A","Chthamalus_dalli","Nucella_ostrina",0,0,36,NA,819.2,12.22,NA,NA
+2013-08-19,"A","Hiatella_arctica","Nucella_canaliculata",0,0,1,NA,0,12.22,NA,NA
+2013-08-19,"A","Hiatella_arctica","Nucella_ostrina",0,0,36,NA,0,12.22,NA,NA
+2013-08-19,"A","Limpets","Nucella_canaliculata",0,0,1,NA,43.4285714285714,12.22,NA,NA
+2013-08-19,"A","Limpets","Nucella_ostrina",0,0,36,NA,43.4285714285714,12.22,NA,NA
+2013-08-19,"A","Littorina_sitkana","Nucella_canaliculata",0,0,1,NA,144,12.22,NA,NA
+2013-08-19,"A","Littorina_sitkana","Nucella_ostrina",0,0,36,NA,144,12.22,NA,NA
+2013-08-19,"A","Modiolus_modiolus","Nucella_canaliculata",0,0,1,NA,0,12.22,NA,NA
+2013-08-19,"A","Modiolus_modiolus","Nucella_ostrina",0,0,36,NA,0,12.22,NA,NA
+2013-08-19,"A","Mytilus_californianus","Nucella_canaliculata",0,0,1,NA,0,12.22,NA,NA
+2013-08-19,"A","Mytilus_californianus","Nucella_ostrina",0,0,36,NA,0,12.22,NA,NA
+2013-08-19,"A","Mytilus_trossulus","Nucella_canaliculata",0,0,1,NA,0,12.22,NA,NA
+2013-08-19,"A","Mytilus_trossulus","Nucella_ostrina",0,0,36,NA,0,12.22,NA,NA
+2013-08-19,"A","Nucella_ostrina","Nucella_canaliculata",0,0,1,NA,4.57142857142858,12.22,NA,NA
+2013-08-19,"A","Nucella_ostrina","Nucella_ostrina",0,0,36,NA,4.57142857142858,12.22,NA,NA
+2013-08-19,"A","Pollicipes_polymerus","Nucella_canaliculata",0,0,1,NA,0,12.22,NA,NA
+2013-08-19,"A","Pollicipes_polymerus","Nucella_ostrina",0,0,36,NA,0,12.22,NA,NA
+2013-08-19,"A","Semibalanus_cariosus","Nucella_canaliculata",0,0,1,NA,0,12.22,NA,NA
+2013-08-19,"A","Semibalanus_cariosus","Nucella_ostrina",0,0,36,NA,0,12.22,NA,NA
+2013-08-19,"AB","Adula_californiensis","Nucella_canaliculata",0,0,136,NA,0,12.22,NA,NA
+2013-08-19,"AB","Adula_californiensis","Nucella_ostrina",0,0,126,NA,0,12.22,NA,NA
+2013-08-19,"AB","Balanus_glandula","Nucella_canaliculata",0.20353982300885,23,136,10.4686686515235,103367.111111111,12.22,1.88094267431816e-07,0.0194427610409876
+2013-08-19,"AB","Balanus_glandula","Nucella_ostrina",0.223300970873786,23,126,12.1842779442973,103367.111111111,12.22,1.77299877290091e-07,0.0183269761158312
+2013-08-19,"AB","Chthamalus_dalli","Nucella_canaliculata",0,0,136,NA,113.777777777778,12.22,NA,NA
+2013-08-19,"AB","Chthamalus_dalli","Nucella_ostrina",0,0,126,NA,113.777777777778,12.22,NA,NA
+2013-08-19,"AB","Hiatella_arctica","Nucella_canaliculata",0,0,136,NA,0,12.22,NA,NA
+2013-08-19,"AB","Hiatella_arctica","Nucella_ostrina",0,0,126,NA,0,12.22,NA,NA
+2013-08-19,"AB","Limpets","Nucella_canaliculata",0,0,136,NA,7.61904761904762,12.22,NA,NA
+2013-08-19,"AB","Limpets","Nucella_ostrina",0,0,126,NA,7.61904761904762,12.22,NA,NA
+2013-08-19,"AB","Littorina_sitkana","Nucella_canaliculata",0,0,136,NA,20.3174603174603,12.22,NA,NA
+2013-08-19,"AB","Littorina_sitkana","Nucella_ostrina",0,0,126,NA,20.3174603174603,12.22,NA,NA
+2013-08-19,"AB","Modiolus_modiolus","Nucella_canaliculata",0,0,136,NA,0,12.22,NA,NA
+2013-08-19,"AB","Modiolus_modiolus","Nucella_ostrina",0,0,126,NA,0,12.22,NA,NA
+2013-08-19,"AB","Mytilus_californianus","Nucella_canaliculata",0,0,136,NA,0,12.22,NA,NA
+2013-08-19,"AB","Mytilus_californianus","Nucella_ostrina",0,0,126,NA,0,12.22,NA,NA
+2013-08-19,"AB","Mytilus_trossulus","Nucella_canaliculata",0,0,136,NA,49.5238095238095,12.22,NA,NA
+2013-08-19,"AB","Mytilus_trossulus","Nucella_ostrina",0,0,126,NA,49.5238095238095,12.22,NA,NA
+2013-08-19,"AB","Nucella_ostrina","Nucella_canaliculata",0,0,136,NA,60.9523809523809,12.22,NA,NA
+2013-08-19,"AB","Nucella_ostrina","Nucella_ostrina",0,0,126,NA,60.9523809523809,12.22,NA,NA
+2013-08-19,"AB","Pollicipes_polymerus","Nucella_canaliculata",0,0,136,NA,0,12.22,NA,NA
+2013-08-19,"AB","Pollicipes_polymerus","Nucella_ostrina",0,0,126,NA,0,12.22,NA,NA
+2013-08-19,"AB","Semibalanus_cariosus","Nucella_canaliculata",0,0,136,NA,0,12.22,NA,NA
+2013-08-19,"AB","Semibalanus_cariosus","Nucella_ostrina",0,0,126,NA,0,12.22,NA,NA
+2013-08-19,"AC","Adula_californiensis","Nucella_canaliculata",0,0,1,NA,0,12.22,NA,NA
+2013-08-19,"AC","Adula_californiensis","Nucella_ostrina",0,0,8,NA,0,12.22,NA,NA
+2013-08-19,"AC","Balanus_glandula","Nucella_canaliculata",0,0,1,NA,80071.1111111111,12.22,NA,NA
+2013-08-19,"AC","Balanus_glandula","Nucella_ostrina",0,0,8,NA,80071.1111111111,12.22,NA,NA
+2013-08-19,"AC","Chthamalus_dalli","Nucella_canaliculata",0,0,1,NA,64,12.22,NA,NA
+2013-08-19,"AC","Chthamalus_dalli","Nucella_ostrina",0,0,8,NA,64,12.22,NA,NA
+2013-08-19,"AC","Hiatella_arctica","Nucella_canaliculata",0,0,1,NA,0,12.22,NA,NA
+2013-08-19,"AC","Hiatella_arctica","Nucella_ostrina",0,0,8,NA,0,12.22,NA,NA
+2013-08-19,"AC","Limpets","Nucella_canaliculata",0,0,1,NA,45.7142857142857,12.22,NA,NA
+2013-08-19,"AC","Limpets","Nucella_ostrina",0,0,8,NA,45.7142857142857,12.22,NA,NA
+2013-08-19,"AC","Littorina_sitkana","Nucella_canaliculata",0,0,1,NA,336.507936507937,12.22,NA,NA
+2013-08-19,"AC","Littorina_sitkana","Nucella_ostrina",0,0,8,NA,336.507936507937,12.22,NA,NA
+2013-08-19,"AC","Modiolus_modiolus","Nucella_canaliculata",0,0,1,NA,0,12.22,NA,NA
+2013-08-19,"AC","Modiolus_modiolus","Nucella_ostrina",0,0,8,NA,0,12.22,NA,NA
+2013-08-19,"AC","Mytilus_californianus","Nucella_canaliculata",0,0,1,NA,0,12.22,NA,NA
+2013-08-19,"AC","Mytilus_californianus","Nucella_ostrina",0,0,8,NA,0,12.22,NA,NA
+2013-08-19,"AC","Mytilus_trossulus","Nucella_canaliculata",0,0,1,NA,2.53968253968254,12.22,NA,NA
+2013-08-19,"AC","Mytilus_trossulus","Nucella_ostrina",0,0,8,NA,2.53968253968254,12.22,NA,NA
+2013-08-19,"AC","Nucella_ostrina","Nucella_canaliculata",0,0,1,NA,1.26984126984127,12.22,NA,NA
+2013-08-19,"AC","Nucella_ostrina","Nucella_ostrina",0,0,8,NA,1.26984126984127,12.22,NA,NA
+2013-08-19,"AC","Pollicipes_polymerus","Nucella_canaliculata",0,0,1,NA,0,12.22,NA,NA
+2013-08-19,"AC","Pollicipes_polymerus","Nucella_ostrina",0,0,8,NA,0,12.22,NA,NA
+2013-08-19,"AC","Semibalanus_cariosus","Nucella_canaliculata",0,0,1,NA,0,12.22,NA,NA
+2013-08-19,"AC","Semibalanus_cariosus","Nucella_ostrina",0,0,8,NA,0,12.22,NA,NA
+2013-08-19,"AD","Adula_californiensis","Nucella_canaliculata",0,0,38,NA,0,12.22,NA,NA
+2013-08-19,"AD","Adula_californiensis","Nucella_ostrina",0,0,59,NA,0,12.22,NA,NA
+2013-08-19,"AD","Balanus_glandula","Nucella_canaliculata",0.407407407407407,11,38,10.9121497594799,88945.7777777778,12.22,4.19752475643343e-07,0.0373352104202448
+2013-08-19,"AD","Balanus_glandula","Nucella_ostrina",0.282608695652174,13,59,9.79501502237124,88945.7777777778,12.22,3.24380752622576e-07,0.0288522983381559
+2013-08-19,"AD","Chthamalus_dalli","Nucella_canaliculata",0,0,38,NA,206.222222222222,12.22,NA,NA
+2013-08-19,"AD","Chthamalus_dalli","Nucella_ostrina",0,0,59,NA,206.222222222222,12.22,NA,NA
+2013-08-19,"AD","Hiatella_arctica","Nucella_canaliculata",0,0,38,NA,0,12.22,NA,NA
+2013-08-19,"AD","Hiatella_arctica","Nucella_ostrina",0,0,59,NA,0,12.22,NA,NA
+2013-08-19,"AD","Limpets","Nucella_canaliculata",0,0,38,NA,21.5873015873016,12.22,NA,NA
+2013-08-19,"AD","Limpets","Nucella_ostrina",0,0,59,NA,21.5873015873016,12.22,NA,NA
+2013-08-19,"AD","Littorina_sitkana","Nucella_canaliculata",0,0,38,NA,118.095238095238,12.22,NA,NA
+2013-08-19,"AD","Littorina_sitkana","Nucella_ostrina",0,0,59,NA,118.095238095238,12.22,NA,NA
+2013-08-19,"AD","Modiolus_modiolus","Nucella_canaliculata",0,0,38,NA,0,12.22,NA,NA
+2013-08-19,"AD","Modiolus_modiolus","Nucella_ostrina",0,0,59,NA,0,12.22,NA,NA
+2013-08-19,"AD","Mytilus_californianus","Nucella_canaliculata",0,0,38,NA,0,12.22,NA,NA
+2013-08-19,"AD","Mytilus_californianus","Nucella_ostrina",0,0,59,NA,0,12.22,NA,NA
+2013-08-19,"AD","Mytilus_trossulus","Nucella_canaliculata",0,0,38,NA,0,12.22,NA,NA
+2013-08-19,"AD","Mytilus_trossulus","Nucella_ostrina",0,0,59,NA,0,12.22,NA,NA
+2013-08-19,"AD","Nucella_ostrina","Nucella_canaliculata",0,0,38,NA,3.80952380952381,12.22,NA,NA
+2013-08-19,"AD","Nucella_ostrina","Nucella_ostrina",0,0,59,NA,3.80952380952381,12.22,NA,NA
+2013-08-19,"AD","Pollicipes_polymerus","Nucella_canaliculata",0,0,38,NA,0,12.22,NA,NA
+2013-08-19,"AD","Pollicipes_polymerus","Nucella_ostrina",0,0,59,NA,0,12.22,NA,NA
+2013-08-19,"AD","Semibalanus_cariosus","Nucella_canaliculata",0,0,38,NA,0,12.22,NA,NA
+2013-08-19,"AD","Semibalanus_cariosus","Nucella_ostrina",0,0,59,NA,0,12.22,NA,NA
+2013-08-19,"AE","Adula_californiensis","Nucella_canaliculata",0,0,3,NA,0,12.22,NA,NA
+2013-08-19,"AE","Adula_californiensis","Nucella_ostrina",0,0,41,NA,0,12.22,NA,NA
+2013-08-19,"AE","Balanus_glandula","Nucella_canaliculata",0,0,3,NA,65251.5555555556,12.22,NA,NA
+2013-08-19,"AE","Balanus_glandula","Nucella_ostrina",0.0512820512820513,2,41,14.8530583923943,65251.5555555556,12.22,5.29125425577415e-08,0.00345262571029217
+2013-08-19,"AE","Chthamalus_dalli","Nucella_canaliculata",0,0,3,NA,576,12.22,NA,NA
+2013-08-19,"AE","Chthamalus_dalli","Nucella_ostrina",0,0,41,NA,576,12.22,NA,NA
+2013-08-19,"AE","Hiatella_arctica","Nucella_canaliculata",0,0,3,NA,0,12.22,NA,NA
+2013-08-19,"AE","Hiatella_arctica","Nucella_ostrina",0,0,41,NA,0,12.22,NA,NA
+2013-08-19,"AE","Limpets","Nucella_canaliculata",0,0,3,NA,110.47619047619,12.22,NA,NA
+2013-08-19,"AE","Limpets","Nucella_ostrina",0,0,41,NA,110.47619047619,12.22,NA,NA
+2013-08-19,"AE","Littorina_sitkana","Nucella_canaliculata",0,0,3,NA,152.380952380952,12.22,NA,NA
+2013-08-19,"AE","Littorina_sitkana","Nucella_ostrina",0,0,41,NA,152.380952380952,12.22,NA,NA
+2013-08-19,"AE","Modiolus_modiolus","Nucella_canaliculata",0,0,3,NA,0,12.22,NA,NA
+2013-08-19,"AE","Modiolus_modiolus","Nucella_ostrina",0,0,41,NA,0,12.22,NA,NA
+2013-08-19,"AE","Mytilus_californianus","Nucella_canaliculata",0,0,3,NA,0,12.22,NA,NA
+2013-08-19,"AE","Mytilus_californianus","Nucella_ostrina",0,0,41,NA,0,12.22,NA,NA
+2013-08-19,"AE","Mytilus_trossulus","Nucella_canaliculata",0,0,3,NA,0,12.22,NA,NA
+2013-08-19,"AE","Mytilus_trossulus","Nucella_ostrina",0,0,41,NA,0,12.22,NA,NA
+2013-08-19,"AE","Nucella_ostrina","Nucella_canaliculata",0,0,3,NA,7.61904761904762,12.22,NA,NA
+2013-08-19,"AE","Nucella_ostrina","Nucella_ostrina",0,0,41,NA,7.61904761904762,12.22,NA,NA
+2013-08-19,"AE","Pollicipes_polymerus","Nucella_canaliculata",0,0,3,NA,0,12.22,NA,NA
+2013-08-19,"AE","Pollicipes_polymerus","Nucella_ostrina",0,0,41,NA,0,12.22,NA,NA
+2013-08-19,"AE","Semibalanus_cariosus","Nucella_canaliculata",0,0,3,NA,0,12.22,NA,NA
+2013-08-19,"AE","Semibalanus_cariosus","Nucella_ostrina",0,0,41,NA,0,12.22,NA,NA
+2013-08-19,"AF","Adula_californiensis","Nucella_canaliculata",0,0,5,NA,0,12.22,NA,NA
+2013-08-19,"AF","Adula_californiensis","Nucella_ostrina",0,0,23,NA,0,12.22,NA,NA
+2013-08-19,"AF","Balanus_glandula","Nucella_canaliculata",0.25,1,5,11.6115567465687,87793.7777777778,12.22,2.45236902769644e-07,0.0215302741446686
+2013-08-19,"AF","Balanus_glandula","Nucella_ostrina",0.277777777777778,5,23,15.6396700578783,87793.7777777778,12.22,2.02304794462082e-07,0.017761102168383
+2013-08-19,"AF","Chthamalus_dalli","Nucella_canaliculata",0,0,5,NA,526.222222222222,12.22,NA,NA
+2013-08-19,"AF","Chthamalus_dalli","Nucella_ostrina",0,0,23,NA,526.222222222222,12.22,NA,NA
+2013-08-19,"AF","Hiatella_arctica","Nucella_canaliculata",0,0,5,NA,0,12.22,NA,NA
+2013-08-19,"AF","Hiatella_arctica","Nucella_ostrina",0,0,23,NA,0,12.22,NA,NA
+2013-08-19,"AF","Limpets","Nucella_canaliculata",0,0,5,NA,10.1587301587302,12.22,NA,NA
+2013-08-19,"AF","Limpets","Nucella_ostrina",0,0,23,NA,10.1587301587302,12.22,NA,NA
+2013-08-19,"AF","Littorina_sitkana","Nucella_canaliculata",0,0,5,NA,223.492063492063,12.22,NA,NA
+2013-08-19,"AF","Littorina_sitkana","Nucella_ostrina",0,0,23,NA,223.492063492063,12.22,NA,NA
+2013-08-19,"AF","Modiolus_modiolus","Nucella_canaliculata",0,0,5,NA,0,12.22,NA,NA
+2013-08-19,"AF","Modiolus_modiolus","Nucella_ostrina",0,0,23,NA,0,12.22,NA,NA
+2013-08-19,"AF","Mytilus_californianus","Nucella_canaliculata",0,0,5,NA,0,12.22,NA,NA
+2013-08-19,"AF","Mytilus_californianus","Nucella_ostrina",0,0,23,NA,0,12.22,NA,NA
+2013-08-19,"AF","Mytilus_trossulus","Nucella_canaliculata",0,0,5,NA,0,12.22,NA,NA
+2013-08-19,"AF","Mytilus_trossulus","Nucella_ostrina",0,0,23,NA,0,12.22,NA,NA
+2013-08-19,"AF","Nucella_ostrina","Nucella_canaliculata",0,0,5,NA,0,12.22,NA,NA
+2013-08-19,"AF","Nucella_ostrina","Nucella_ostrina",0,0,23,NA,0,12.22,NA,NA
+2013-08-19,"AF","Pollicipes_polymerus","Nucella_canaliculata",0,0,5,NA,0,12.22,NA,NA
+2013-08-19,"AF","Pollicipes_polymerus","Nucella_ostrina",0,0,23,NA,0,12.22,NA,NA
+2013-08-19,"AF","Semibalanus_cariosus","Nucella_canaliculata",0,0,5,NA,0,12.22,NA,NA
+2013-08-19,"AF","Semibalanus_cariosus","Nucella_ostrina",0,0,23,NA,0,12.22,NA,NA
+2013-08-19,"AG","Adula_californiensis","Nucella_canaliculata",0,0,8,NA,0,12.22,NA,NA
+2013-08-19,"AG","Adula_californiensis","Nucella_ostrina",0,0,80,NA,0,12.22,NA,NA
+2013-08-19,"AG","Balanus_glandula","Nucella_canaliculata",0,0,8,NA,86656,12.22,NA,NA
+2013-08-19,"AG","Balanus_glandula","Nucella_ostrina",0.0810810810810811,6,80,10.777688288916,86656,12.22,8.68151007314923e-08,0.0075230493689882
+2013-08-19,"AG","Chthamalus_dalli","Nucella_canaliculata",0,0,8,NA,1315.55555555556,12.22,NA,NA
+2013-08-19,"AG","Chthamalus_dalli","Nucella_ostrina",0,0,80,NA,1315.55555555556,12.22,NA,NA
+2013-08-19,"AG","Hiatella_arctica","Nucella_canaliculata",0,0,8,NA,0,12.22,NA,NA
+2013-08-19,"AG","Hiatella_arctica","Nucella_ostrina",0,0,80,NA,0,12.22,NA,NA
+2013-08-19,"AG","Limpets","Nucella_canaliculata",0,0,8,NA,59.6825396825397,12.22,NA,NA
+2013-08-19,"AG","Limpets","Nucella_ostrina",0,0,80,NA,59.6825396825397,12.22,NA,NA
+2013-08-19,"AG","Littorina_sitkana","Nucella_canaliculata",0,0,8,NA,306.031746031747,12.22,NA,NA
+2013-08-19,"AG","Littorina_sitkana","Nucella_ostrina",0,0,80,NA,306.031746031747,12.22,NA,NA
+2013-08-19,"AG","Modiolus_modiolus","Nucella_canaliculata",0,0,8,NA,0,12.22,NA,NA
+2013-08-19,"AG","Modiolus_modiolus","Nucella_ostrina",0,0,80,NA,0,12.22,NA,NA
+2013-08-19,"AG","Mytilus_californianus","Nucella_canaliculata",0,0,8,NA,0,12.22,NA,NA
+2013-08-19,"AG","Mytilus_californianus","Nucella_ostrina",0,0,80,NA,0,12.22,NA,NA
+2013-08-19,"AG","Mytilus_trossulus","Nucella_canaliculata",0,0,8,NA,58.4126984126984,12.22,NA,NA
+2013-08-19,"AG","Mytilus_trossulus","Nucella_ostrina",0,0,80,NA,58.4126984126984,12.22,NA,NA
+2013-08-19,"AG","Nucella_ostrina","Nucella_canaliculata",0,0,8,NA,7.61904761904762,12.22,NA,NA
+2013-08-19,"AG","Nucella_ostrina","Nucella_ostrina",0,0,80,NA,7.61904761904762,12.22,NA,NA
+2013-08-19,"AG","Pollicipes_polymerus","Nucella_canaliculata",0,0,8,NA,0,12.22,NA,NA
+2013-08-19,"AG","Pollicipes_polymerus","Nucella_ostrina",0,0,80,NA,0,12.22,NA,NA
+2013-08-19,"AG","Semibalanus_cariosus","Nucella_canaliculata",0,0,8,NA,0,12.22,NA,NA
+2013-08-19,"AG","Semibalanus_cariosus","Nucella_ostrina",0,0,80,NA,0,12.22,NA,NA
+2013-08-19,"B","Adula_californiensis","Nucella_canaliculata",0,0,317,NA,0,12.22,NA,NA
+2013-08-19,"B","Adula_californiensis","Nucella_ostrina",0,0,14,NA,0,12.22,NA,NA
+2013-08-19,"B","Balanus_glandula","Nucella_canaliculata",0.235294117647059,60,317,11.5612278551186,153834.666666667,12.22,1.32297882930697e-07,0.0203520007213494
+2013-08-19,"B","Balanus_glandula","Nucella_ostrina",0.272727272727273,3,14,9.9220972876435,153834.666666667,12.22,1.78677914038936e-07,0.027486857346875
+2013-08-19,"B","Chthamalus_dalli","Nucella_canaliculata",0,0,317,NA,0,12.22,NA,NA
+2013-08-19,"B","Chthamalus_dalli","Nucella_ostrina",0,0,14,NA,0,12.22,NA,NA
+2013-08-19,"B","Hiatella_arctica","Nucella_canaliculata",0,0,317,NA,0,12.22,NA,NA
+2013-08-19,"B","Hiatella_arctica","Nucella_ostrina",0,0,14,NA,0,12.22,NA,NA
+2013-08-19,"B","Limpets","Nucella_canaliculata",0,0,317,NA,265.396825396825,12.22,NA,NA
+2013-08-19,"B","Limpets","Nucella_ostrina",0,0,14,NA,265.396825396825,12.22,NA,NA
+2013-08-19,"B","Littorina_sitkana","Nucella_canaliculata",0,0,317,NA,90.1587301587302,12.22,NA,NA
+2013-08-19,"B","Littorina_sitkana","Nucella_ostrina",0,0,14,NA,90.1587301587302,12.22,NA,NA
+2013-08-19,"B","Modiolus_modiolus","Nucella_canaliculata",0,0,317,NA,0,12.22,NA,NA
+2013-08-19,"B","Modiolus_modiolus","Nucella_ostrina",0,0,14,NA,0,12.22,NA,NA
+2013-08-19,"B","Mytilus_californianus","Nucella_canaliculata",0,0,317,NA,0,12.22,NA,NA
+2013-08-19,"B","Mytilus_californianus","Nucella_ostrina",0,0,14,NA,0,12.22,NA,NA
+2013-08-19,"B","Mytilus_trossulus","Nucella_canaliculata",0.00784313725490196,2,317,17.608991871155,284.444444444444,12.22,1.56587779774789e-06,0.000445405240248289
+2013-08-19,"B","Mytilus_trossulus","Nucella_ostrina",0,0,14,NA,284.444444444444,12.22,NA,NA
+2013-08-19,"B","Nucella_ostrina","Nucella_canaliculata",0,0,317,NA,132.063492063492,12.22,NA,NA
+2013-08-19,"B","Nucella_ostrina","Nucella_ostrina",0,0,14,NA,132.063492063492,12.22,NA,NA
+2013-08-19,"B","Pollicipes_polymerus","Nucella_canaliculata",0,0,317,NA,0,12.22,NA,NA
+2013-08-19,"B","Pollicipes_polymerus","Nucella_ostrina",0,0,14,NA,0,12.22,NA,NA
+2013-08-19,"B","Semibalanus_cariosus","Nucella_canaliculata",0,0,317,NA,0,12.22,NA,NA
+2013-08-19,"B","Semibalanus_cariosus","Nucella_ostrina",0,0,14,NA,0,12.22,NA,NA
+2013-08-19,"BB","Adula_californiensis","Nucella_canaliculata",0,0,0,NA,0,12.22,NA,NA
+2013-08-19,"BB","Adula_californiensis","Nucella_ostrina",0,0,17,NA,0,12.22,NA,NA
+2013-08-19,"BB","Balanus_glandula","Nucella_canaliculata",0,0,0,NA,161856,12.22,NA,NA
+2013-08-19,"BB","Balanus_glandula","Nucella_ostrina",0.416666666666667,5,17,13.3748240974127,161856,12.22,1.92473913154195e-07,0.0311530576874854
+2013-08-19,"BB","Chthamalus_dalli","Nucella_canaliculata",0,0,0,NA,0,12.22,NA,NA
+2013-08-19,"BB","Chthamalus_dalli","Nucella_ostrina",0,0,17,NA,0,12.22,NA,NA
+2013-08-19,"BB","Hiatella_arctica","Nucella_canaliculata",0,0,0,NA,0,12.22,NA,NA
+2013-08-19,"BB","Hiatella_arctica","Nucella_ostrina",0,0,17,NA,0,12.22,NA,NA
+2013-08-19,"BB","Limpets","Nucella_canaliculata",0,0,0,NA,11.4285714285714,12.22,NA,NA
+2013-08-19,"BB","Limpets","Nucella_ostrina",0,0,17,NA,11.4285714285714,12.22,NA,NA
+2013-08-19,"BB","Littorina_sitkana","Nucella_canaliculata",0,0,0,NA,365.714285714286,12.22,NA,NA
+2013-08-19,"BB","Littorina_sitkana","Nucella_ostrina",0,0,17,NA,365.714285714286,12.22,NA,NA
+2013-08-19,"BB","Modiolus_modiolus","Nucella_canaliculata",0,0,0,NA,0,12.22,NA,NA
+2013-08-19,"BB","Modiolus_modiolus","Nucella_ostrina",0,0,17,NA,0,12.22,NA,NA
+2013-08-19,"BB","Mytilus_californianus","Nucella_canaliculata",0,0,0,NA,0,12.22,NA,NA
+2013-08-19,"BB","Mytilus_californianus","Nucella_ostrina",0,0,17,NA,0,12.22,NA,NA
+2013-08-19,"BB","Mytilus_trossulus","Nucella_canaliculata",0,0,0,NA,125.714285714286,12.22,NA,NA
+2013-08-19,"BB","Mytilus_trossulus","Nucella_ostrina",0,0,17,NA,125.714285714286,12.22,NA,NA
+2013-08-19,"BB","Nucella_ostrina","Nucella_canaliculata",0,0,0,NA,0,12.22,NA,NA
+2013-08-19,"BB","Nucella_ostrina","Nucella_ostrina",0,0,17,NA,0,12.22,NA,NA
+2013-08-19,"BB","Pollicipes_polymerus","Nucella_canaliculata",0,0,0,NA,0,12.22,NA,NA
+2013-08-19,"BB","Pollicipes_polymerus","Nucella_ostrina",0,0,17,NA,0,12.22,NA,NA
+2013-08-19,"BB","Semibalanus_cariosus","Nucella_canaliculata",0,0,0,NA,0,12.22,NA,NA
+2013-08-19,"BB","Semibalanus_cariosus","Nucella_ostrina",0,0,17,NA,0,12.22,NA,NA
+2013-08-19,"BC","Adula_californiensis","Nucella_canaliculata",0,0,0,NA,0,12.22,NA,NA
+2013-08-19,"BC","Adula_californiensis","Nucella_ostrina",0,0,22,NA,0,12.22,NA,NA
+2013-08-19,"BC","Balanus_glandula","Nucella_canaliculata",0,0,0,NA,126720,12.22,NA,NA
+2013-08-19,"BC","Balanus_glandula","Nucella_ostrina",0.466666666666667,7,22,10.6344621717718,126720,12.22,3.4629489232048e-07,0.0438824887548512
+2013-08-19,"BC","Chthamalus_dalli","Nucella_canaliculata",0,0,0,NA,0,12.22,NA,NA
+2013-08-19,"BC","Chthamalus_dalli","Nucella_ostrina",0,0,22,NA,0,12.22,NA,NA
+2013-08-19,"BC","Hiatella_arctica","Nucella_canaliculata",0,0,0,NA,0,12.22,NA,NA
+2013-08-19,"BC","Hiatella_arctica","Nucella_ostrina",0,0,22,NA,0,12.22,NA,NA
+2013-08-19,"BC","Limpets","Nucella_canaliculata",0,0,0,NA,323.809523809524,12.22,NA,NA
+2013-08-19,"BC","Limpets","Nucella_ostrina",0,0,22,NA,323.809523809524,12.22,NA,NA
+2013-08-19,"BC","Littorina_sitkana","Nucella_canaliculata",0,0,0,NA,838.095238095237,12.22,NA,NA
+2013-08-19,"BC","Littorina_sitkana","Nucella_ostrina",0,0,22,NA,838.095238095237,12.22,NA,NA
+2013-08-19,"BC","Modiolus_modiolus","Nucella_canaliculata",0,0,0,NA,0,12.22,NA,NA
+2013-08-19,"BC","Modiolus_modiolus","Nucella_ostrina",0,0,22,NA,0,12.22,NA,NA
+2013-08-19,"BC","Mytilus_californianus","Nucella_canaliculata",0,0,0,NA,0,12.22,NA,NA
+2013-08-19,"BC","Mytilus_californianus","Nucella_ostrina",0,0,22,NA,0,12.22,NA,NA
+2013-08-19,"BC","Mytilus_trossulus","Nucella_canaliculata",0,0,0,NA,15.2380952380952,12.22,NA,NA
+2013-08-19,"BC","Mytilus_trossulus","Nucella_ostrina",0,0,22,NA,15.2380952380952,12.22,NA,NA
+2013-08-19,"BC","Nucella_ostrina","Nucella_canaliculata",0,0,0,NA,11.4285714285714,12.22,NA,NA
+2013-08-19,"BC","Nucella_ostrina","Nucella_ostrina",0,0,22,NA,11.4285714285714,12.22,NA,NA
+2013-08-19,"BC","Pollicipes_polymerus","Nucella_canaliculata",0,0,0,NA,0,12.22,NA,NA
+2013-08-19,"BC","Pollicipes_polymerus","Nucella_ostrina",0,0,22,NA,0,12.22,NA,NA
+2013-08-19,"BC","Semibalanus_cariosus","Nucella_canaliculata",0,0,0,NA,0,12.22,NA,NA
+2013-08-19,"BC","Semibalanus_cariosus","Nucella_ostrina",0,0,22,NA,0,12.22,NA,NA
+2013-08-19,"BD","Adula_californiensis","Nucella_canaliculata",0,0,0,NA,0,12.22,NA,NA
+2013-08-19,"BD","Adula_californiensis","Nucella_ostrina",0,0,1,NA,0,12.22,NA,NA
+2013-08-19,"BD","Balanus_glandula","Nucella_canaliculata",0,0,0,NA,111488,12.22,NA,NA
+2013-08-19,"BD","Balanus_glandula","Nucella_ostrina",0,0,1,NA,111488,12.22,NA,NA
+2013-08-19,"BD","Chthamalus_dalli","Nucella_canaliculata",0,0,0,NA,224,12.22,NA,NA
+2013-08-19,"BD","Chthamalus_dalli","Nucella_ostrina",0,0,1,NA,224,12.22,NA,NA
+2013-08-19,"BD","Hiatella_arctica","Nucella_canaliculata",0,0,0,NA,0,12.22,NA,NA
+2013-08-19,"BD","Hiatella_arctica","Nucella_ostrina",0,0,1,NA,0,12.22,NA,NA
+2013-08-19,"BD","Limpets","Nucella_canaliculata",0,0,0,NA,4600,12.22,NA,NA
+2013-08-19,"BD","Limpets","Nucella_ostrina",0,0,1,NA,4600,12.22,NA,NA
+2013-08-19,"BD","Littorina_sitkana","Nucella_canaliculata",0,0,0,NA,6457.14285714286,12.22,NA,NA
+2013-08-19,"BD","Littorina_sitkana","Nucella_ostrina",0,0,1,NA,6457.14285714286,12.22,NA,NA
+2013-08-19,"BD","Modiolus_modiolus","Nucella_canaliculata",0,0,0,NA,0,12.22,NA,NA
+2013-08-19,"BD","Modiolus_modiolus","Nucella_ostrina",0,0,1,NA,0,12.22,NA,NA
+2013-08-19,"BD","Mytilus_californianus","Nucella_canaliculata",0,0,0,NA,0,12.22,NA,NA
+2013-08-19,"BD","Mytilus_californianus","Nucella_ostrina",0,0,1,NA,0,12.22,NA,NA
+2013-08-19,"BD","Mytilus_trossulus","Nucella_canaliculata",0,0,0,NA,4977.14285714286,12.22,NA,NA
+2013-08-19,"BD","Mytilus_trossulus","Nucella_ostrina",0,0,1,NA,4977.14285714286,12.22,NA,NA
+2013-08-19,"BD","Nucella_ostrina","Nucella_canaliculata",0,0,0,NA,5.7142857142857,12.22,NA,NA
+2013-08-19,"BD","Nucella_ostrina","Nucella_ostrina",0,0,1,NA,5.7142857142857,12.22,NA,NA
+2013-08-19,"BD","Pollicipes_polymerus","Nucella_canaliculata",0,0,0,NA,0,12.22,NA,NA
+2013-08-19,"BD","Pollicipes_polymerus","Nucella_ostrina",0,0,1,NA,0,12.22,NA,NA
+2013-08-19,"BD","Semibalanus_cariosus","Nucella_canaliculata",0,0,0,NA,0,12.22,NA,NA
+2013-08-19,"BD","Semibalanus_cariosus","Nucella_ostrina",0,0,1,NA,0,12.22,NA,NA
+2013-08-19,"BE","Adula_californiensis","Nucella_canaliculata",0,0,1,NA,0,12.22,NA,NA
+2013-08-19,"BE","Adula_californiensis","Nucella_ostrina",0,0,38,NA,0,12.22,NA,NA
+2013-08-19,"BE","Balanus_glandula","Nucella_canaliculata",Inf,1,1,18.3012513677027,124992,12.22,4.3715655678546e-07,0.0546410723457282
+2013-08-19,"BE","Balanus_glandula","Nucella_ostrina",0,0,38,NA,124992,12.22,NA,NA
+2013-08-19,"BE","Chthamalus_dalli","Nucella_canaliculata",0,0,1,NA,0,12.22,NA,NA
+2013-08-19,"BE","Chthamalus_dalli","Nucella_ostrina",0,0,38,NA,0,12.22,NA,NA
+2013-08-19,"BE","Hiatella_arctica","Nucella_canaliculata",0,0,1,NA,0,12.22,NA,NA
+2013-08-19,"BE","Hiatella_arctica","Nucella_ostrina",0,0,38,NA,0,12.22,NA,NA
+2013-08-19,"BE","Limpets","Nucella_canaliculata",0,0,1,NA,342.857142857143,12.22,NA,NA
+2013-08-19,"BE","Limpets","Nucella_ostrina",0,0,38,NA,342.857142857143,12.22,NA,NA
+2013-08-19,"BE","Littorina_sitkana","Nucella_canaliculata",0,0,1,NA,457.142857142857,12.22,NA,NA
+2013-08-19,"BE","Littorina_sitkana","Nucella_ostrina",0,0,38,NA,457.142857142857,12.22,NA,NA
+2013-08-19,"BE","Modiolus_modiolus","Nucella_canaliculata",0,0,1,NA,0,12.22,NA,NA
+2013-08-19,"BE","Modiolus_modiolus","Nucella_ostrina",0,0,38,NA,0,12.22,NA,NA
+2013-08-19,"BE","Mytilus_californianus","Nucella_canaliculata",0,0,1,NA,0,12.22,NA,NA
+2013-08-19,"BE","Mytilus_californianus","Nucella_ostrina",0,0,38,NA,0,12.22,NA,NA
+2013-08-19,"BE","Mytilus_trossulus","Nucella_canaliculata",0,0,1,NA,80,12.22,NA,NA
+2013-08-19,"BE","Mytilus_trossulus","Nucella_ostrina",0,0,38,NA,80,12.22,NA,NA
+2013-08-19,"BE","Nucella_ostrina","Nucella_canaliculata",0,0,1,NA,22.8571428571429,12.22,NA,NA
+2013-08-19,"BE","Nucella_ostrina","Nucella_ostrina",0,0,38,NA,22.8571428571429,12.22,NA,NA
+2013-08-19,"BE","Pollicipes_polymerus","Nucella_canaliculata",0,0,1,NA,0,12.22,NA,NA
+2013-08-19,"BE","Pollicipes_polymerus","Nucella_ostrina",0,0,38,NA,0,12.22,NA,NA
+2013-08-19,"BE","Semibalanus_cariosus","Nucella_canaliculata",0,0,1,NA,0,12.22,NA,NA
+2013-08-19,"BE","Semibalanus_cariosus","Nucella_ostrina",0,0,38,NA,0,12.22,NA,NA
+2013-08-19,"BF","Adula_californiensis","Nucella_canaliculata",0,0,9,NA,0,12.22,NA,NA
+2013-08-19,"BF","Adula_californiensis","Nucella_ostrina",0,0,74,NA,0,12.22,NA,NA
+2013-08-19,"BF","Balanus_glandula","Nucella_canaliculata",0.285714285714286,2,9,16.3015984468158,100949.333333333,12.22,1.73619423317089e-07,0.017526765037578
+2013-08-19,"BF","Balanus_glandula","Nucella_ostrina",0.138461538461538,9,74,9.98192608895791,100949.333333333,12.22,1.37407787808275e-07,0.0138712245740535
+2013-08-19,"BF","Chthamalus_dalli","Nucella_canaliculata",0,0,9,NA,17408,12.22,NA,NA
+2013-08-19,"BF","Chthamalus_dalli","Nucella_ostrina",0,0,74,NA,17408,12.22,NA,NA
+2013-08-19,"BF","Hiatella_arctica","Nucella_canaliculata",0,0,9,NA,0,12.22,NA,NA
+2013-08-19,"BF","Hiatella_arctica","Nucella_ostrina",0,0,74,NA,0,12.22,NA,NA
+2013-08-19,"BF","Limpets","Nucella_canaliculata",0,0,9,NA,266.666666666667,12.22,NA,NA
+2013-08-19,"BF","Limpets","Nucella_ostrina",0,0,74,NA,266.666666666667,12.22,NA,NA
+2013-08-19,"BF","Littorina_sitkana","Nucella_canaliculata",0,0,9,NA,1417.14285714286,12.22,NA,NA
+2013-08-19,"BF","Littorina_sitkana","Nucella_ostrina",0,0,74,NA,1417.14285714286,12.22,NA,NA
+2013-08-19,"BF","Modiolus_modiolus","Nucella_canaliculata",0,0,9,NA,0,12.22,NA,NA
+2013-08-19,"BF","Modiolus_modiolus","Nucella_ostrina",0,0,74,NA,0,12.22,NA,NA
+2013-08-19,"BF","Mytilus_californianus","Nucella_canaliculata",0,0,9,NA,0,12.22,NA,NA
+2013-08-19,"BF","Mytilus_californianus","Nucella_ostrina",0,0,74,NA,0,12.22,NA,NA
+2013-08-19,"BF","Mytilus_trossulus","Nucella_canaliculata",0,0,9,NA,9371.42857142856,12.22,NA,NA
+2013-08-19,"BF","Mytilus_trossulus","Nucella_ostrina",0,0,74,NA,9371.42857142856,12.22,NA,NA
+2013-08-19,"BF","Nucella_ostrina","Nucella_canaliculata",0,0,9,NA,11.4285714285714,12.22,NA,NA
+2013-08-19,"BF","Nucella_ostrina","Nucella_ostrina",0,0,74,NA,11.4285714285714,12.22,NA,NA
+2013-08-19,"BF","Pollicipes_polymerus","Nucella_canaliculata",0,0,9,NA,0,12.22,NA,NA
+2013-08-19,"BF","Pollicipes_polymerus","Nucella_ostrina",0,0,74,NA,0,12.22,NA,NA
+2013-08-19,"BF","Semibalanus_cariosus","Nucella_canaliculata",0,0,9,NA,0,12.22,NA,NA
+2013-08-19,"BF","Semibalanus_cariosus","Nucella_ostrina",0,0,74,NA,0,12.22,NA,NA
+2013-08-19,"C","Adula_californiensis","Nucella_canaliculata",0,0,5,NA,0,12.22,NA,NA
+2013-08-19,"C","Adula_californiensis","Nucella_ostrina",0,0,7,NA,0,12.22,NA,NA
+2013-08-19,"C","Balanus_glandula","Nucella_canaliculata",0.25,1,5,9.19994065471654,92128,12.22,2.9496014601374e-07,0.0271740883319538
+2013-08-19,"C","Balanus_glandula","Nucella_ostrina",0,0,7,NA,92128,12.22,NA,NA
+2013-08-19,"C","Chthamalus_dalli","Nucella_canaliculata",0,0,5,NA,960,12.22,NA,NA
+2013-08-19,"C","Chthamalus_dalli","Nucella_ostrina",0,0,7,NA,960,12.22,NA,NA
+2013-08-19,"C","Hiatella_arctica","Nucella_canaliculata",0,0,5,NA,0,12.22,NA,NA
+2013-08-19,"C","Hiatella_arctica","Nucella_ostrina",0,0,7,NA,0,12.22,NA,NA
+2013-08-19,"C","Limpets","Nucella_canaliculata",0,0,5,NA,57.1428571428572,12.22,NA,NA
+2013-08-19,"C","Limpets","Nucella_ostrina",0,0,7,NA,57.1428571428572,12.22,NA,NA
+2013-08-19,"C","Littorina_sitkana","Nucella_canaliculata",0,0,5,NA,308.571428571428,12.22,NA,NA
+2013-08-19,"C","Littorina_sitkana","Nucella_ostrina",0,0,7,NA,308.571428571428,12.22,NA,NA
+2013-08-19,"C","Modiolus_modiolus","Nucella_canaliculata",0,0,5,NA,0,12.22,NA,NA
+2013-08-19,"C","Modiolus_modiolus","Nucella_ostrina",0,0,7,NA,0,12.22,NA,NA
+2013-08-19,"C","Mytilus_californianus","Nucella_canaliculata",0,0,5,NA,0,12.22,NA,NA
+2013-08-19,"C","Mytilus_californianus","Nucella_ostrina",0,0,7,NA,0,12.22,NA,NA
+2013-08-19,"C","Mytilus_trossulus","Nucella_canaliculata",0,0,5,NA,0,12.22,NA,NA
+2013-08-19,"C","Mytilus_trossulus","Nucella_ostrina",0,0,7,NA,0,12.22,NA,NA
+2013-08-19,"C","Nucella_ostrina","Nucella_canaliculata",0,0,5,NA,0,12.22,NA,NA
+2013-08-19,"C","Nucella_ostrina","Nucella_ostrina",0,0,7,NA,0,12.22,NA,NA
+2013-08-19,"C","Pollicipes_polymerus","Nucella_canaliculata",0,0,5,NA,0,12.22,NA,NA
+2013-08-19,"C","Pollicipes_polymerus","Nucella_ostrina",0,0,7,NA,0,12.22,NA,NA
+2013-08-19,"C","Semibalanus_cariosus","Nucella_canaliculata",0,0,5,NA,0,12.22,NA,NA
+2013-08-19,"C","Semibalanus_cariosus","Nucella_ostrina",0,0,7,NA,0,12.22,NA,NA
+2013-08-19,"D","Adula_californiensis","Nucella_canaliculata",0,0,1,NA,0,12.22,NA,NA
+2013-08-19,"D","Adula_californiensis","Nucella_ostrina",0,0,1,NA,0,12.22,NA,NA
+2013-08-19,"D","Balanus_glandula","Nucella_canaliculata",Inf,1,1,16.3015984468158,116138.666666667,12.22,5.28193403559448e-07,0.0613436776315228
+2013-08-19,"D","Balanus_glandula","Nucella_ostrina",0,0,1,NA,116138.666666667,12.22,NA,NA
+2013-08-19,"D","Chthamalus_dalli","Nucella_canaliculata",0,0,1,NA,661.333333333333,12.22,NA,NA
+2013-08-19,"D","Chthamalus_dalli","Nucella_ostrina",0,0,1,NA,661.333333333333,12.22,NA,NA
+2013-08-19,"D","Hiatella_arctica","Nucella_canaliculata",0,0,1,NA,0,12.22,NA,NA
+2013-08-19,"D","Hiatella_arctica","Nucella_ostrina",0,0,1,NA,0,12.22,NA,NA
+2013-08-19,"D","Limpets","Nucella_canaliculata",0,0,1,NA,11.4285714285714,12.22,NA,NA
+2013-08-19,"D","Limpets","Nucella_ostrina",0,0,1,NA,11.4285714285714,12.22,NA,NA
+2013-08-19,"D","Littorina_sitkana","Nucella_canaliculata",0,0,1,NA,224.761904761905,12.22,NA,NA
+2013-08-19,"D","Littorina_sitkana","Nucella_ostrina",0,0,1,NA,224.761904761905,12.22,NA,NA
+2013-08-19,"D","Modiolus_modiolus","Nucella_canaliculata",0,0,1,NA,0,12.22,NA,NA
+2013-08-19,"D","Modiolus_modiolus","Nucella_ostrina",0,0,1,NA,0,12.22,NA,NA
+2013-08-19,"D","Mytilus_californianus","Nucella_canaliculata",0,0,1,NA,0,12.22,NA,NA
+2013-08-19,"D","Mytilus_californianus","Nucella_ostrina",0,0,1,NA,0,12.22,NA,NA
+2013-08-19,"D","Mytilus_trossulus","Nucella_canaliculata",0,0,1,NA,0,12.22,NA,NA
+2013-08-19,"D","Mytilus_trossulus","Nucella_ostrina",0,0,1,NA,0,12.22,NA,NA
+2013-08-19,"D","Nucella_ostrina","Nucella_canaliculata",0,0,1,NA,0,12.22,NA,NA
+2013-08-19,"D","Nucella_ostrina","Nucella_ostrina",0,0,1,NA,0,12.22,NA,NA
+2013-08-19,"D","Pollicipes_polymerus","Nucella_canaliculata",0,0,1,NA,0,12.22,NA,NA
+2013-08-19,"D","Pollicipes_polymerus","Nucella_ostrina",0,0,1,NA,0,12.22,NA,NA
+2013-08-19,"D","Semibalanus_cariosus","Nucella_canaliculata",0,0,1,NA,0,12.22,NA,NA
+2013-08-19,"D","Semibalanus_cariosus","Nucella_ostrina",0,0,1,NA,0,12.22,NA,NA
+2013-08-19,"E","Adula_californiensis","Nucella_canaliculata",0,0,10,NA,0,12.22,NA,NA
+2013-08-19,"E","Adula_californiensis","Nucella_ostrina",0,0,44,NA,0,12.22,NA,NA
+2013-08-19,"E","Balanus_glandula","Nucella_canaliculata",1,5,10,10.3331490676731,119338.666666667,12.22,8.10935147636937e-07,0.0967759192721286
+2013-08-19,"E","Balanus_glandula","Nucella_ostrina",0.419354838709677,13,44,13.4074943029463,119338.666666667,12.22,2.62091451533132e-07,0.0312776443706953
+2013-08-19,"E","Chthamalus_dalli","Nucella_canaliculata",0,0,10,NA,1301.33333333333,12.22,NA,NA
+2013-08-19,"E","Chthamalus_dalli","Nucella_ostrina",0,0,44,NA,1301.33333333333,12.22,NA,NA
+2013-08-19,"E","Hiatella_arctica","Nucella_canaliculata",0,0,10,NA,0,12.22,NA,NA
+2013-08-19,"E","Hiatella_arctica","Nucella_ostrina",0,0,44,NA,0,12.22,NA,NA
+2013-08-19,"E","Limpets","Nucella_canaliculata",0,0,10,NA,41.9047619047619,12.22,NA,NA
+2013-08-19,"E","Limpets","Nucella_ostrina",0,0,44,NA,41.9047619047619,12.22,NA,NA
+2013-08-19,"E","Littorina_sitkana","Nucella_canaliculata",0,0,10,NA,118.095238095238,12.22,NA,NA
+2013-08-19,"E","Littorina_sitkana","Nucella_ostrina",0,0,44,NA,118.095238095238,12.22,NA,NA
+2013-08-19,"E","Modiolus_modiolus","Nucella_canaliculata",0,0,10,NA,0,12.22,NA,NA
+2013-08-19,"E","Modiolus_modiolus","Nucella_ostrina",0,0,44,NA,0,12.22,NA,NA
+2013-08-19,"E","Mytilus_californianus","Nucella_canaliculata",0,0,10,NA,0,12.22,NA,NA
+2013-08-19,"E","Mytilus_californianus","Nucella_ostrina",0,0,44,NA,0,12.22,NA,NA
+2013-08-19,"E","Mytilus_trossulus","Nucella_canaliculata",0,0,10,NA,0,12.22,NA,NA
+2013-08-19,"E","Mytilus_trossulus","Nucella_ostrina",0,0,44,NA,0,12.22,NA,NA
+2013-08-19,"E","Nucella_ostrina","Nucella_canaliculata",0,0,10,NA,11.4285714285714,12.22,NA,NA
+2013-08-19,"E","Nucella_ostrina","Nucella_ostrina",0,0,44,NA,11.4285714285714,12.22,NA,NA
+2013-08-19,"E","Pollicipes_polymerus","Nucella_canaliculata",0,0,10,NA,0,12.22,NA,NA
+2013-08-19,"E","Pollicipes_polymerus","Nucella_ostrina",0,0,44,NA,0,12.22,NA,NA
+2013-08-19,"E","Semibalanus_cariosus","Nucella_canaliculata",0,0,10,NA,0,12.22,NA,NA
+2013-08-19,"E","Semibalanus_cariosus","Nucella_ostrina",0,0,44,NA,0,12.22,NA,NA
+2013-08-19,"F","Adula_californiensis","Nucella_canaliculata",0,0,0,NA,0,12.22,NA,NA
+2013-08-19,"F","Adula_californiensis","Nucella_ostrina",0,0,1,NA,0,12.22,NA,NA
+2013-08-19,"F","Balanus_glandula","Nucella_canaliculata",0,0,0,NA,117452.8,12.22,NA,NA
+2013-08-19,"F","Balanus_glandula","Nucella_ostrina",0,0,1,NA,117452.8,12.22,NA,NA
+2013-08-19,"F","Chthamalus_dalli","Nucella_canaliculata",0,0,0,NA,896,12.22,NA,NA
+2013-08-19,"F","Chthamalus_dalli","Nucella_ostrina",0,0,1,NA,896,12.22,NA,NA
+2013-08-19,"F","Hiatella_arctica","Nucella_canaliculata",0,0,0,NA,0,12.22,NA,NA
+2013-08-19,"F","Hiatella_arctica","Nucella_ostrina",0,0,1,NA,0,12.22,NA,NA
+2013-08-19,"F","Limpets","Nucella_canaliculata",0,0,0,NA,20.5714285714286,12.22,NA,NA
+2013-08-19,"F","Limpets","Nucella_ostrina",0,0,1,NA,20.5714285714286,12.22,NA,NA
+2013-08-19,"F","Littorina_sitkana","Nucella_canaliculata",0,0,0,NA,125.714285714286,12.22,NA,NA
+2013-08-19,"F","Littorina_sitkana","Nucella_ostrina",0,0,1,NA,125.714285714286,12.22,NA,NA
+2013-08-19,"F","Modiolus_modiolus","Nucella_canaliculata",0,0,0,NA,0,12.22,NA,NA
+2013-08-19,"F","Modiolus_modiolus","Nucella_ostrina",0,0,1,NA,0,12.22,NA,NA
+2013-08-19,"F","Mytilus_californianus","Nucella_canaliculata",0,0,0,NA,0,12.22,NA,NA
+2013-08-19,"F","Mytilus_californianus","Nucella_ostrina",0,0,1,NA,0,12.22,NA,NA
+2013-08-19,"F","Mytilus_trossulus","Nucella_canaliculata",0,0,0,NA,25.1428571428572,12.22,NA,NA
+2013-08-19,"F","Mytilus_trossulus","Nucella_ostrina",0,0,1,NA,25.1428571428572,12.22,NA,NA
+2013-08-19,"F","Nucella_ostrina","Nucella_canaliculata",0,0,0,NA,0,12.22,NA,NA
+2013-08-19,"F","Nucella_ostrina","Nucella_ostrina",0,0,1,NA,0,12.22,NA,NA
+2013-08-19,"F","Pollicipes_polymerus","Nucella_canaliculata",0,0,0,NA,0,12.22,NA,NA
+2013-08-19,"F","Pollicipes_polymerus","Nucella_ostrina",0,0,1,NA,0,12.22,NA,NA
+2013-08-19,"F","Semibalanus_cariosus","Nucella_canaliculata",0,0,0,NA,0,12.22,NA,NA
+2013-08-19,"F","Semibalanus_cariosus","Nucella_ostrina",0,0,1,NA,0,12.22,NA,NA
+2013-08-19,"G","Adula_californiensis","Nucella_canaliculata",0,0,14,NA,0,12.22,NA,NA
+2013-08-19,"G","Adula_californiensis","Nucella_ostrina",0,0,8,NA,0,12.22,NA,NA
+2013-08-19,"G","Balanus_glandula","Nucella_canaliculata",0,0,14,NA,72789.3333333333,12.22,NA,NA
+2013-08-19,"G","Balanus_glandula","Nucella_ostrina",0,0,8,NA,72789.3333333333,12.22,NA,NA
+2013-08-19,"G","Chthamalus_dalli","Nucella_canaliculata",0,0,14,NA,576,12.22,NA,NA
+2013-08-19,"G","Chthamalus_dalli","Nucella_ostrina",0,0,8,NA,576,12.22,NA,NA
+2013-08-19,"G","Hiatella_arctica","Nucella_canaliculata",0,0,14,NA,0,12.22,NA,NA
+2013-08-19,"G","Hiatella_arctica","Nucella_ostrina",0,0,8,NA,0,12.22,NA,NA
+2013-08-19,"G","Limpets","Nucella_canaliculata",0,0,14,NA,30.4761904761905,12.22,NA,NA
+2013-08-19,"G","Limpets","Nucella_ostrina",0,0,8,NA,30.4761904761905,12.22,NA,NA
+2013-08-19,"G","Littorina_sitkana","Nucella_canaliculata",0,0,14,NA,407.619047619047,12.22,NA,NA
+2013-08-19,"G","Littorina_sitkana","Nucella_ostrina",0,0,8,NA,407.619047619047,12.22,NA,NA
+2013-08-19,"G","Modiolus_modiolus","Nucella_canaliculata",0,0,14,NA,0,12.22,NA,NA
+2013-08-19,"G","Modiolus_modiolus","Nucella_ostrina",0,0,8,NA,0,12.22,NA,NA
+2013-08-19,"G","Mytilus_californianus","Nucella_canaliculata",0,0,14,NA,0,12.22,NA,NA
+2013-08-19,"G","Mytilus_californianus","Nucella_ostrina",0,0,8,NA,0,12.22,NA,NA
+2013-08-19,"G","Mytilus_trossulus","Nucella_canaliculata",0,0,14,NA,7.61904761904763,12.22,NA,NA
+2013-08-19,"G","Mytilus_trossulus","Nucella_ostrina",0,0,8,NA,7.61904761904763,12.22,NA,NA
+2013-08-19,"G","Nucella_ostrina","Nucella_canaliculata",0,0,14,NA,26.6666666666667,12.22,NA,NA
+2013-08-19,"G","Nucella_ostrina","Nucella_ostrina",0,0,8,NA,26.6666666666667,12.22,NA,NA
+2013-08-19,"G","Pollicipes_polymerus","Nucella_canaliculata",0,0,14,NA,0,12.22,NA,NA
+2013-08-19,"G","Pollicipes_polymerus","Nucella_ostrina",0,0,8,NA,0,12.22,NA,NA
+2013-08-19,"G","Semibalanus_cariosus","Nucella_canaliculata",0,0,14,NA,0,12.22,NA,NA
+2013-08-19,"G","Semibalanus_cariosus","Nucella_ostrina",0,0,8,NA,0,12.22,NA,NA
+2013-09-16,"A","Adula_californiensis","Nucella_canaliculata",0,0,2,NA,0,14.78,NA,NA
+2013-09-16,"A","Adula_californiensis","Nucella_ostrina",0,0,2,NA,0,14.78,NA,NA
+2013-09-16,"A","Balanus_glandula","Nucella_canaliculata",0,0,2,NA,37248,14.78,NA,NA
+2013-09-16,"A","Balanus_glandula","Nucella_ostrina",1,1,2,11.9115447495095,37248,14.78,2.25387047627943e-06,0.083952167500456
+2013-09-16,"A","Chthamalus_dalli","Nucella_canaliculata",0,0,2,NA,0,14.78,NA,NA
+2013-09-16,"A","Chthamalus_dalli","Nucella_ostrina",0,0,2,NA,0,14.78,NA,NA
+2013-09-16,"A","Hiatella_arctica","Nucella_canaliculata",0,0,2,NA,0,14.78,NA,NA
+2013-09-16,"A","Hiatella_arctica","Nucella_ostrina",0,0,2,NA,0,14.78,NA,NA
+2013-09-16,"A","Limpets","Nucella_canaliculata",0,0,2,NA,53.3333333333332,14.78,NA,NA
+2013-09-16,"A","Limpets","Nucella_ostrina",0,0,2,NA,53.3333333333332,14.78,NA,NA
+2013-09-16,"A","Littorina_sitkana","Nucella_canaliculata",0,0,2,NA,540.952380952382,14.78,NA,NA
+2013-09-16,"A","Littorina_sitkana","Nucella_ostrina",0,0,2,NA,540.952380952382,14.78,NA,NA
+2013-09-16,"A","Modiolus_modiolus","Nucella_canaliculata",0,0,2,NA,0,14.78,NA,NA
+2013-09-16,"A","Modiolus_modiolus","Nucella_ostrina",0,0,2,NA,0,14.78,NA,NA
+2013-09-16,"A","Mytilus_californianus","Nucella_canaliculata",0,0,2,NA,0,14.78,NA,NA
+2013-09-16,"A","Mytilus_californianus","Nucella_ostrina",0,0,2,NA,0,14.78,NA,NA
+2013-09-16,"A","Mytilus_trossulus","Nucella_canaliculata",0,0,2,NA,857.142857142857,14.78,NA,NA
+2013-09-16,"A","Mytilus_trossulus","Nucella_ostrina",0,0,2,NA,857.142857142857,14.78,NA,NA
+2013-09-16,"A","Nucella_ostrina","Nucella_canaliculata",0,0,2,NA,3.8095238095238,14.78,NA,NA
+2013-09-16,"A","Nucella_ostrina","Nucella_ostrina",0,0,2,NA,3.8095238095238,14.78,NA,NA
+2013-09-16,"A","Pollicipes_polymerus","Nucella_canaliculata",0,0,2,NA,0,14.78,NA,NA
+2013-09-16,"A","Pollicipes_polymerus","Nucella_ostrina",0,0,2,NA,0,14.78,NA,NA
+2013-09-16,"A","Semibalanus_cariosus","Nucella_canaliculata",0,0,2,NA,0,14.78,NA,NA
+2013-09-16,"A","Semibalanus_cariosus","Nucella_ostrina",0,0,2,NA,0,14.78,NA,NA
+2013-09-16,"AB","Adula_californiensis","Nucella_canaliculata",0,0,62,NA,0,14.78,NA,NA
+2013-09-16,"AB","Adula_californiensis","Nucella_ostrina",0,0,22,NA,0,14.78,NA,NA
+2013-09-16,"AB","Balanus_glandula","Nucella_canaliculata",0.192307692307692,10,62,10.0239995321172,42080,14.78,4.55910807607123e-07,0.0191847267841077
+2013-09-16,"AB","Balanus_glandula","Nucella_ostrina",0.294117647058824,5,22,12.8337467087786,42080,14.78,5.4461787106584e-07,0.0229175200144505
+2013-09-16,"AB","Chthamalus_dalli","Nucella_canaliculata",0,0,62,NA,752,14.78,NA,NA
+2013-09-16,"AB","Chthamalus_dalli","Nucella_ostrina",0,0,22,NA,752,14.78,NA,NA
+2013-09-16,"AB","Hiatella_arctica","Nucella_canaliculata",0,0,62,NA,0,14.78,NA,NA
+2013-09-16,"AB","Hiatella_arctica","Nucella_ostrina",0,0,22,NA,0,14.78,NA,NA
+2013-09-16,"AB","Limpets","Nucella_canaliculata",0,0,62,NA,28.5714285714286,14.78,NA,NA
+2013-09-16,"AB","Limpets","Nucella_ostrina",0,0,22,NA,28.5714285714286,14.78,NA,NA
+2013-09-16,"AB","Littorina_sitkana","Nucella_canaliculata",0,0,62,NA,280,14.78,NA,NA
+2013-09-16,"AB","Littorina_sitkana","Nucella_ostrina",0,0,22,NA,280,14.78,NA,NA
+2013-09-16,"AB","Modiolus_modiolus","Nucella_canaliculata",0,0,62,NA,0,14.78,NA,NA
+2013-09-16,"AB","Modiolus_modiolus","Nucella_ostrina",0,0,22,NA,0,14.78,NA,NA
+2013-09-16,"AB","Mytilus_californianus","Nucella_canaliculata",0,0,62,NA,0,14.78,NA,NA
+2013-09-16,"AB","Mytilus_californianus","Nucella_ostrina",0,0,22,NA,0,14.78,NA,NA
+2013-09-16,"AB","Mytilus_trossulus","Nucella_canaliculata",0,0,62,NA,617.142857142858,14.78,NA,NA
+2013-09-16,"AB","Mytilus_trossulus","Nucella_ostrina",0,0,22,NA,617.142857142858,14.78,NA,NA
+2013-09-16,"AB","Nucella_ostrina","Nucella_canaliculata",0,0,62,NA,0,14.78,NA,NA
+2013-09-16,"AB","Nucella_ostrina","Nucella_ostrina",0,0,22,NA,0,14.78,NA,NA
+2013-09-16,"AB","Pollicipes_polymerus","Nucella_canaliculata",0,0,62,NA,0,14.78,NA,NA
+2013-09-16,"AB","Pollicipes_polymerus","Nucella_ostrina",0,0,22,NA,0,14.78,NA,NA
+2013-09-16,"AB","Semibalanus_cariosus","Nucella_canaliculata",0,0,62,NA,0,14.78,NA,NA
+2013-09-16,"AB","Semibalanus_cariosus","Nucella_ostrina",0,0,22,NA,0,14.78,NA,NA
+2013-09-16,"AC","Adula_californiensis","Nucella_canaliculata",0,0,0,NA,0,14.78,NA,NA
+2013-09-16,"AC","Adula_californiensis","Nucella_ostrina",0,0,1,NA,0,14.78,NA,NA
+2013-09-16,"AC","Balanus_glandula","Nucella_canaliculata",0,0,0,NA,65616,14.78,NA,NA
+2013-09-16,"AC","Balanus_glandula","Nucella_ostrina",0,0,1,NA,65616,14.78,NA,NA
+2013-09-16,"AC","Chthamalus_dalli","Nucella_canaliculata",0,0,0,NA,2752,14.78,NA,NA
+2013-09-16,"AC","Chthamalus_dalli","Nucella_ostrina",0,0,1,NA,2752,14.78,NA,NA
+2013-09-16,"AC","Hiatella_arctica","Nucella_canaliculata",0,0,0,NA,0,14.78,NA,NA
+2013-09-16,"AC","Hiatella_arctica","Nucella_ostrina",0,0,1,NA,0,14.78,NA,NA
+2013-09-16,"AC","Limpets","Nucella_canaliculata",0,0,0,NA,228.571428571429,14.78,NA,NA
+2013-09-16,"AC","Limpets","Nucella_ostrina",0,0,1,NA,228.571428571429,14.78,NA,NA
+2013-09-16,"AC","Littorina_sitkana","Nucella_canaliculata",0,0,0,NA,628.571428571429,14.78,NA,NA
+2013-09-16,"AC","Littorina_sitkana","Nucella_ostrina",0,0,1,NA,628.571428571429,14.78,NA,NA
+2013-09-16,"AC","Modiolus_modiolus","Nucella_canaliculata",0,0,0,NA,0,14.78,NA,NA
+2013-09-16,"AC","Modiolus_modiolus","Nucella_ostrina",0,0,1,NA,0,14.78,NA,NA
+2013-09-16,"AC","Mytilus_californianus","Nucella_canaliculata",0,0,0,NA,0,14.78,NA,NA
+2013-09-16,"AC","Mytilus_californianus","Nucella_ostrina",0,0,1,NA,0,14.78,NA,NA
+2013-09-16,"AC","Mytilus_trossulus","Nucella_canaliculata",0,0,0,NA,5497.14285714286,14.78,NA,NA
+2013-09-16,"AC","Mytilus_trossulus","Nucella_ostrina",0,0,1,NA,5497.14285714286,14.78,NA,NA
+2013-09-16,"AC","Nucella_ostrina","Nucella_canaliculata",0,0,0,NA,0,14.78,NA,NA
+2013-09-16,"AC","Nucella_ostrina","Nucella_ostrina",0,0,1,NA,0,14.78,NA,NA
+2013-09-16,"AC","Pollicipes_polymerus","Nucella_canaliculata",0,0,0,NA,0,14.78,NA,NA
+2013-09-16,"AC","Pollicipes_polymerus","Nucella_ostrina",0,0,1,NA,0,14.78,NA,NA
+2013-09-16,"AC","Semibalanus_cariosus","Nucella_canaliculata",0,0,0,NA,0,14.78,NA,NA
+2013-09-16,"AC","Semibalanus_cariosus","Nucella_ostrina",0,0,1,NA,0,14.78,NA,NA
+2013-09-16,"AD","Adula_californiensis","Nucella_canaliculata",0,0,43,NA,0,14.78,NA,NA
+2013-09-16,"AD","Adula_californiensis","Nucella_ostrina",0,0,27,NA,0,14.78,NA,NA
+2013-09-16,"AD","Balanus_glandula","Nucella_canaliculata",0.303030303030303,10,43,12.6962887119825,69397.3333333333,14.78,3.43927171414196e-07,0.0238676285570214
+2013-09-16,"AD","Balanus_glandula","Nucella_ostrina",0.227272727272727,5,27,12.109638352663,69397.3333333333,14.78,2.70441519618745e-07,0.0187679202841552
+2013-09-16,"AD","Chthamalus_dalli","Nucella_canaliculata",0,0,43,NA,0,14.78,NA,NA
+2013-09-16,"AD","Chthamalus_dalli","Nucella_ostrina",0,0,27,NA,0,14.78,NA,NA
+2013-09-16,"AD","Hiatella_arctica","Nucella_canaliculata",0,0,43,NA,0,14.78,NA,NA
+2013-09-16,"AD","Hiatella_arctica","Nucella_ostrina",0,0,27,NA,0,14.78,NA,NA
+2013-09-16,"AD","Limpets","Nucella_canaliculata",0,0,43,NA,731.42857142857,14.78,NA,NA
+2013-09-16,"AD","Limpets","Nucella_ostrina",0,0,27,NA,731.42857142857,14.78,NA,NA
+2013-09-16,"AD","Littorina_sitkana","Nucella_canaliculata",0,0,43,NA,3192.38095238095,14.78,NA,NA
+2013-09-16,"AD","Littorina_sitkana","Nucella_ostrina",0,0,27,NA,3192.38095238095,14.78,NA,NA
+2013-09-16,"AD","Modiolus_modiolus","Nucella_canaliculata",0,0,43,NA,0,14.78,NA,NA
+2013-09-16,"AD","Modiolus_modiolus","Nucella_ostrina",0,0,27,NA,0,14.78,NA,NA
+2013-09-16,"AD","Mytilus_californianus","Nucella_canaliculata",0,0,43,NA,0,14.78,NA,NA
+2013-09-16,"AD","Mytilus_californianus","Nucella_ostrina",0,0,27,NA,0,14.78,NA,NA
+2013-09-16,"AD","Mytilus_trossulus","Nucella_canaliculata",0,0,43,NA,4205.71428571428,14.78,NA,NA
+2013-09-16,"AD","Mytilus_trossulus","Nucella_ostrina",0,0,27,NA,4205.71428571428,14.78,NA,NA
+2013-09-16,"AD","Nucella_ostrina","Nucella_canaliculata",0,0,43,NA,7.6190476190476,14.78,NA,NA
+2013-09-16,"AD","Nucella_ostrina","Nucella_ostrina",0,0,27,NA,7.6190476190476,14.78,NA,NA
+2013-09-16,"AD","Pollicipes_polymerus","Nucella_canaliculata",0,0,43,NA,0,14.78,NA,NA
+2013-09-16,"AD","Pollicipes_polymerus","Nucella_ostrina",0,0,27,NA,0,14.78,NA,NA
+2013-09-16,"AD","Semibalanus_cariosus","Nucella_canaliculata",0,0,43,NA,0,14.78,NA,NA
+2013-09-16,"AD","Semibalanus_cariosus","Nucella_ostrina",0,0,27,NA,0,14.78,NA,NA
+2013-09-16,"AE","Adula_californiensis","Nucella_canaliculata",0,0,3,NA,0,14.78,NA,NA
+2013-09-16,"AE","Adula_californiensis","Nucella_ostrina",0,0,3,NA,0,14.78,NA,NA
+2013-09-16,"AE","Balanus_glandula","Nucella_canaliculata",0,0,3,NA,87552,14.78,NA,NA
+2013-09-16,"AE","Balanus_glandula","Nucella_ostrina",0.5,1,3,6.27226384173874,87552,14.78,9.10499296101418e-07,0.0797160343722713
+2013-09-16,"AE","Chthamalus_dalli","Nucella_canaliculata",0,0,3,NA,213.333333333333,14.78,NA,NA
+2013-09-16,"AE","Chthamalus_dalli","Nucella_ostrina",0,0,3,NA,213.333333333333,14.78,NA,NA
+2013-09-16,"AE","Hiatella_arctica","Nucella_canaliculata",0,0,3,NA,0,14.78,NA,NA
+2013-09-16,"AE","Hiatella_arctica","Nucella_ostrina",0,0,3,NA,0,14.78,NA,NA
+2013-09-16,"AE","Limpets","Nucella_canaliculata",0,0,3,NA,297.142857142857,14.78,NA,NA
+2013-09-16,"AE","Limpets","Nucella_ostrina",0,0,3,NA,297.142857142857,14.78,NA,NA
+2013-09-16,"AE","Littorina_sitkana","Nucella_canaliculata",0,0,3,NA,1798.09523809524,14.78,NA,NA
+2013-09-16,"AE","Littorina_sitkana","Nucella_ostrina",0,0,3,NA,1798.09523809524,14.78,NA,NA
+2013-09-16,"AE","Modiolus_modiolus","Nucella_canaliculata",0,0,3,NA,0,14.78,NA,NA
+2013-09-16,"AE","Modiolus_modiolus","Nucella_ostrina",0,0,3,NA,0,14.78,NA,NA
+2013-09-16,"AE","Mytilus_californianus","Nucella_canaliculata",0,0,3,NA,0,14.78,NA,NA
+2013-09-16,"AE","Mytilus_californianus","Nucella_ostrina",0,0,3,NA,0,14.78,NA,NA
+2013-09-16,"AE","Mytilus_trossulus","Nucella_canaliculata",0,0,3,NA,2704.7619047619,14.78,NA,NA
+2013-09-16,"AE","Mytilus_trossulus","Nucella_ostrina",0,0,3,NA,2704.7619047619,14.78,NA,NA
+2013-09-16,"AE","Nucella_ostrina","Nucella_canaliculata",0,0,3,NA,0,14.78,NA,NA
+2013-09-16,"AE","Nucella_ostrina","Nucella_ostrina",0,0,3,NA,0,14.78,NA,NA
+2013-09-16,"AE","Pollicipes_polymerus","Nucella_canaliculata",0,0,3,NA,0,14.78,NA,NA
+2013-09-16,"AE","Pollicipes_polymerus","Nucella_ostrina",0,0,3,NA,0,14.78,NA,NA
+2013-09-16,"AE","Semibalanus_cariosus","Nucella_canaliculata",0,0,3,NA,3.8095238095238,14.78,NA,NA
+2013-09-16,"AE","Semibalanus_cariosus","Nucella_ostrina",0,0,3,NA,3.8095238095238,14.78,NA,NA
+2013-09-16,"AF","Adula_californiensis","Nucella_canaliculata",0,0,2,NA,0,14.78,NA,NA
+2013-09-16,"AF","Adula_californiensis","Nucella_ostrina",0,0,14,NA,0,14.78,NA,NA
+2013-09-16,"AF","Balanus_glandula","Nucella_canaliculata",0,0,2,NA,35626.6666666667,14.78,NA,NA
+2013-09-16,"AF","Balanus_glandula","Nucella_ostrina",1,7,14,8.43527699993648,35626.6666666667,14.78,3.32755667367657e-06,0.118549752427517
+2013-09-16,"AF","Chthamalus_dalli","Nucella_canaliculata",0,0,2,NA,0,14.78,NA,NA
+2013-09-16,"AF","Chthamalus_dalli","Nucella_ostrina",0,0,14,NA,0,14.78,NA,NA
+2013-09-16,"AF","Hiatella_arctica","Nucella_canaliculata",0,0,2,NA,0,14.78,NA,NA
+2013-09-16,"AF","Hiatella_arctica","Nucella_ostrina",0,0,14,NA,0,14.78,NA,NA
+2013-09-16,"AF","Limpets","Nucella_canaliculata",0,0,2,NA,34.2857142857143,14.78,NA,NA
+2013-09-16,"AF","Limpets","Nucella_ostrina",0,0,14,NA,34.2857142857143,14.78,NA,NA
+2013-09-16,"AF","Littorina_sitkana","Nucella_canaliculata",0,0,2,NA,765.714285714284,14.78,NA,NA
+2013-09-16,"AF","Littorina_sitkana","Nucella_ostrina",0,0,14,NA,765.714285714284,14.78,NA,NA
+2013-09-16,"AF","Modiolus_modiolus","Nucella_canaliculata",0,0,2,NA,0,14.78,NA,NA
+2013-09-16,"AF","Modiolus_modiolus","Nucella_ostrina",0,0,14,NA,0,14.78,NA,NA
+2013-09-16,"AF","Mytilus_californianus","Nucella_canaliculata",0,0,2,NA,0,14.78,NA,NA
+2013-09-16,"AF","Mytilus_californianus","Nucella_ostrina",0,0,14,NA,0,14.78,NA,NA
+2013-09-16,"AF","Mytilus_trossulus","Nucella_canaliculata",0,0,2,NA,483.809523809524,14.78,NA,NA
+2013-09-16,"AF","Mytilus_trossulus","Nucella_ostrina",0,0,14,NA,483.809523809524,14.78,NA,NA
+2013-09-16,"AF","Nucella_ostrina","Nucella_canaliculata",0,0,2,NA,11.4285714285714,14.78,NA,NA
+2013-09-16,"AF","Nucella_ostrina","Nucella_ostrina",0,0,14,NA,11.4285714285714,14.78,NA,NA
+2013-09-16,"AF","Pollicipes_polymerus","Nucella_canaliculata",0,0,2,NA,0,14.78,NA,NA
+2013-09-16,"AF","Pollicipes_polymerus","Nucella_ostrina",0,0,14,NA,0,14.78,NA,NA
+2013-09-16,"AF","Semibalanus_cariosus","Nucella_canaliculata",0,0,2,NA,0,14.78,NA,NA
+2013-09-16,"AF","Semibalanus_cariosus","Nucella_ostrina",0,0,14,NA,0,14.78,NA,NA
+2013-09-16,"AG","Adula_californiensis","Nucella_canaliculata",0,0,8,NA,0,14.78,NA,NA
+2013-09-16,"AG","Adula_californiensis","Nucella_ostrina",0,0,35,NA,0,14.78,NA,NA
+2013-09-16,"AG","Balanus_glandula","Nucella_canaliculata",0.142857142857143,1,8,11.4616545116806,49996.8,14.78,2.49294351271662e-07,0.012463919821659
+2013-09-16,"AG","Balanus_glandula","Nucella_ostrina",0.0294117647058824,1,35,6.27226384173874,49996.8,14.78,9.37895723823634e-08,0.00468917849248655
+2013-09-16,"AG","Chthamalus_dalli","Nucella_canaliculata",0,0,8,NA,0,14.78,NA,NA
+2013-09-16,"AG","Chthamalus_dalli","Nucella_ostrina",0,0,35,NA,0,14.78,NA,NA
+2013-09-16,"AG","Hiatella_arctica","Nucella_canaliculata",0,0,8,NA,0,14.78,NA,NA
+2013-09-16,"AG","Hiatella_arctica","Nucella_ostrina",0,0,35,NA,0,14.78,NA,NA
+2013-09-16,"AG","Limpets","Nucella_canaliculata",0,0,8,NA,89.1428571428572,14.78,NA,NA
+2013-09-16,"AG","Limpets","Nucella_ostrina",0,0,35,NA,89.1428571428572,14.78,NA,NA
+2013-09-16,"AG","Littorina_sitkana","Nucella_canaliculata",0,0,8,NA,416,14.78,NA,NA
+2013-09-16,"AG","Littorina_sitkana","Nucella_ostrina",0,0,35,NA,416,14.78,NA,NA
+2013-09-16,"AG","Modiolus_modiolus","Nucella_canaliculata",0,0,8,NA,0,14.78,NA,NA
+2013-09-16,"AG","Modiolus_modiolus","Nucella_ostrina",0,0,35,NA,0,14.78,NA,NA
+2013-09-16,"AG","Mytilus_californianus","Nucella_canaliculata",0,0,8,NA,0,14.78,NA,NA
+2013-09-16,"AG","Mytilus_californianus","Nucella_ostrina",0,0,35,NA,0,14.78,NA,NA
+2013-09-16,"AG","Mytilus_trossulus","Nucella_canaliculata",0,0,8,NA,434.285714285714,14.78,NA,NA
+2013-09-16,"AG","Mytilus_trossulus","Nucella_ostrina",0,0,35,NA,434.285714285714,14.78,NA,NA
+2013-09-16,"AG","Nucella_ostrina","Nucella_canaliculata",0,0,8,NA,6.85714285714284,14.78,NA,NA
+2013-09-16,"AG","Nucella_ostrina","Nucella_ostrina",0,0,35,NA,6.85714285714284,14.78,NA,NA
+2013-09-16,"AG","Pollicipes_polymerus","Nucella_canaliculata",0,0,8,NA,0,14.78,NA,NA
+2013-09-16,"AG","Pollicipes_polymerus","Nucella_ostrina",0,0,35,NA,0,14.78,NA,NA
+2013-09-16,"AG","Semibalanus_cariosus","Nucella_canaliculata",0,0,8,NA,0,14.78,NA,NA
+2013-09-16,"AG","Semibalanus_cariosus","Nucella_ostrina",0,0,35,NA,0,14.78,NA,NA
+2013-09-16,"B","Adula_californiensis","Nucella_canaliculata",0,0,306,NA,0,14.78,NA,NA
+2013-09-16,"B","Adula_californiensis","Nucella_ostrina",0,0,9,NA,0,14.78,NA,NA
+2013-09-16,"B","Balanus_glandula","Nucella_canaliculata",0.2,51,306,11.4959126822556,70158.2222222222,14.78,2.47975036899796e-07,0.0173974877443796
+2013-09-16,"B","Balanus_glandula","Nucella_ostrina",0.125,1,9,12.9486896110341,70158.2222222222,14.78,1.37595939107131e-07,0.00965348647275342
+2013-09-16,"B","Chthamalus_dalli","Nucella_canaliculata",0,0,306,NA,0,14.78,NA,NA
+2013-09-16,"B","Chthamalus_dalli","Nucella_ostrina",0,0,9,NA,0,14.78,NA,NA
+2013-09-16,"B","Hiatella_arctica","Nucella_canaliculata",0,0,306,NA,0,14.78,NA,NA
+2013-09-16,"B","Hiatella_arctica","Nucella_ostrina",0,0,9,NA,0,14.78,NA,NA
+2013-09-16,"B","Limpets","Nucella_canaliculata",0,0,306,NA,539.68253968254,14.78,NA,NA
+2013-09-16,"B","Limpets","Nucella_ostrina",0,0,9,NA,539.68253968254,14.78,NA,NA
+2013-09-16,"B","Littorina_sitkana","Nucella_canaliculata",0,0,306,NA,424.126984126984,14.78,NA,NA
+2013-09-16,"B","Littorina_sitkana","Nucella_ostrina",0,0,9,NA,424.126984126984,14.78,NA,NA
+2013-09-16,"B","Modiolus_modiolus","Nucella_canaliculata",0,0,306,NA,0,14.78,NA,NA
+2013-09-16,"B","Modiolus_modiolus","Nucella_ostrina",0,0,9,NA,0,14.78,NA,NA
+2013-09-16,"B","Mytilus_californianus","Nucella_canaliculata",0,0,306,NA,0,14.78,NA,NA
+2013-09-16,"B","Mytilus_californianus","Nucella_ostrina",0,0,9,NA,0,14.78,NA,NA
+2013-09-16,"B","Mytilus_trossulus","Nucella_canaliculata",0,0,306,NA,2567.61904761905,14.78,NA,NA
+2013-09-16,"B","Mytilus_trossulus","Nucella_ostrina",0,0,9,NA,2567.61904761905,14.78,NA,NA
+2013-09-16,"B","Nucella_ostrina","Nucella_canaliculata",0,0,306,NA,90.1587301587302,14.78,NA,NA
+2013-09-16,"B","Nucella_ostrina","Nucella_ostrina",0,0,9,NA,90.1587301587302,14.78,NA,NA
+2013-09-16,"B","Pollicipes_polymerus","Nucella_canaliculata",0,0,306,NA,0,14.78,NA,NA
+2013-09-16,"B","Pollicipes_polymerus","Nucella_ostrina",0,0,9,NA,0,14.78,NA,NA
+2013-09-16,"B","Semibalanus_cariosus","Nucella_canaliculata",0,0,306,NA,0,14.78,NA,NA
+2013-09-16,"B","Semibalanus_cariosus","Nucella_ostrina",0,0,9,NA,0,14.78,NA,NA
+2013-09-16,"BB","Adula_californiensis","Nucella_canaliculata",0,0,0,NA,0,14.78,NA,NA
+2013-09-16,"BB","Adula_californiensis","Nucella_ostrina",0,0,4,NA,0,14.78,NA,NA
+2013-09-16,"BB","Balanus_glandula","Nucella_canaliculata",0,0,0,NA,50304,14.78,NA,NA
+2013-09-16,"BB","Balanus_glandula","Nucella_ostrina",0,0,4,NA,50304,14.78,NA,NA
+2013-09-16,"BB","Chthamalus_dalli","Nucella_canaliculata",0,0,0,NA,0,14.78,NA,NA
+2013-09-16,"BB","Chthamalus_dalli","Nucella_ostrina",0,0,4,NA,0,14.78,NA,NA
+2013-09-16,"BB","Hiatella_arctica","Nucella_canaliculata",0,0,0,NA,0,14.78,NA,NA
+2013-09-16,"BB","Hiatella_arctica","Nucella_ostrina",0,0,4,NA,0,14.78,NA,NA
+2013-09-16,"BB","Limpets","Nucella_canaliculata",0,0,0,NA,45.7142857142857,14.78,NA,NA
+2013-09-16,"BB","Limpets","Nucella_ostrina",0,0,4,NA,45.7142857142857,14.78,NA,NA
+2013-09-16,"BB","Littorina_sitkana","Nucella_canaliculata",0,0,0,NA,214.285714285714,14.78,NA,NA
+2013-09-16,"BB","Littorina_sitkana","Nucella_ostrina",0,0,4,NA,214.285714285714,14.78,NA,NA
+2013-09-16,"BB","Modiolus_modiolus","Nucella_canaliculata",0,0,0,NA,0,14.78,NA,NA
+2013-09-16,"BB","Modiolus_modiolus","Nucella_ostrina",0,0,4,NA,0,14.78,NA,NA
+2013-09-16,"BB","Mytilus_californianus","Nucella_canaliculata",0,0,0,NA,0,14.78,NA,NA
+2013-09-16,"BB","Mytilus_californianus","Nucella_ostrina",0,0,4,NA,0,14.78,NA,NA
+2013-09-16,"BB","Mytilus_trossulus","Nucella_canaliculata",0,0,0,NA,1322.85714285714,14.78,NA,NA
+2013-09-16,"BB","Mytilus_trossulus","Nucella_ostrina",0,0,4,NA,1322.85714285714,14.78,NA,NA
+2013-09-16,"BB","Nucella_ostrina","Nucella_canaliculata",0,0,0,NA,0,14.78,NA,NA
+2013-09-16,"BB","Nucella_ostrina","Nucella_ostrina",0,0,4,NA,0,14.78,NA,NA
+2013-09-16,"BB","Pollicipes_polymerus","Nucella_canaliculata",0,0,0,NA,0,14.78,NA,NA
+2013-09-16,"BB","Pollicipes_polymerus","Nucella_ostrina",0,0,4,NA,0,14.78,NA,NA
+2013-09-16,"BB","Semibalanus_cariosus","Nucella_canaliculata",0,0,0,NA,0,14.78,NA,NA
+2013-09-16,"BB","Semibalanus_cariosus","Nucella_ostrina",0,0,4,NA,0,14.78,NA,NA
+2013-09-16,"BC","Adula_californiensis","Nucella_canaliculata",0,0,3,NA,0,14.78,NA,NA
+2013-09-16,"BC","Adula_californiensis","Nucella_ostrina",0,0,3,NA,0,14.78,NA,NA
+2013-09-16,"BC","Balanus_glandula","Nucella_canaliculata",2,2,3,11.8471776702353,64405.3333333333,14.78,2.62115837047653e-06,0.168816578569998
+2013-09-16,"BC","Balanus_glandula","Nucella_ostrina",0.5,1,3,20.3204487152469,64405.3333333333,14.78,3.82045314943757e-07,0.024605755857391
+2013-09-16,"BC","Chthamalus_dalli","Nucella_canaliculata",0,0,3,NA,0,14.78,NA,NA
+2013-09-16,"BC","Chthamalus_dalli","Nucella_ostrina",0,0,3,NA,0,14.78,NA,NA
+2013-09-16,"BC","Hiatella_arctica","Nucella_canaliculata",0,0,3,NA,0,14.78,NA,NA
+2013-09-16,"BC","Hiatella_arctica","Nucella_ostrina",0,0,3,NA,0,14.78,NA,NA
+2013-09-16,"BC","Limpets","Nucella_canaliculata",0,0,3,NA,64.7619047619047,14.78,NA,NA
+2013-09-16,"BC","Limpets","Nucella_ostrina",0,0,3,NA,64.7619047619047,14.78,NA,NA
+2013-09-16,"BC","Littorina_sitkana","Nucella_canaliculata",0,0,3,NA,799.999999999999,14.78,NA,NA
+2013-09-16,"BC","Littorina_sitkana","Nucella_ostrina",0,0,3,NA,799.999999999999,14.78,NA,NA
+2013-09-16,"BC","Modiolus_modiolus","Nucella_canaliculata",0,0,3,NA,0,14.78,NA,NA
+2013-09-16,"BC","Modiolus_modiolus","Nucella_ostrina",0,0,3,NA,0,14.78,NA,NA
+2013-09-16,"BC","Mytilus_californianus","Nucella_canaliculata",0,0,3,NA,0,14.78,NA,NA
+2013-09-16,"BC","Mytilus_californianus","Nucella_ostrina",0,0,3,NA,0,14.78,NA,NA
+2013-09-16,"BC","Mytilus_trossulus","Nucella_canaliculata",0,0,3,NA,769.52380952381,14.78,NA,NA
+2013-09-16,"BC","Mytilus_trossulus","Nucella_ostrina",0,0,3,NA,769.52380952381,14.78,NA,NA
+2013-09-16,"BC","Nucella_ostrina","Nucella_canaliculata",0,0,3,NA,0,14.78,NA,NA
+2013-09-16,"BC","Nucella_ostrina","Nucella_ostrina",0,0,3,NA,0,14.78,NA,NA
+2013-09-16,"BC","Pollicipes_polymerus","Nucella_canaliculata",0,0,3,NA,0,14.78,NA,NA
+2013-09-16,"BC","Pollicipes_polymerus","Nucella_ostrina",0,0,3,NA,0,14.78,NA,NA
+2013-09-16,"BC","Semibalanus_cariosus","Nucella_canaliculata",0,0,3,NA,0,14.78,NA,NA
+2013-09-16,"BC","Semibalanus_cariosus","Nucella_ostrina",0,0,3,NA,0,14.78,NA,NA
+2013-09-16,"BD","Adula_californiensis","Nucella_canaliculata",0,0,1,NA,0,14.78,NA,NA
+2013-09-16,"BD","Adula_californiensis","Nucella_ostrina",0,0,0,NA,0,14.78,NA,NA
+2013-09-16,"BD","Balanus_glandula","Nucella_canaliculata",Inf,1,1,20.3204487152469,83477.3333333333,14.78,5.89519450966115e-07,0.049211511714782
+2013-09-16,"BD","Balanus_glandula","Nucella_ostrina",0,0,0,NA,83477.3333333333,14.78,NA,NA
+2013-09-16,"BD","Chthamalus_dalli","Nucella_canaliculata",0,0,1,NA,789.333333333333,14.78,NA,NA
+2013-09-16,"BD","Chthamalus_dalli","Nucella_ostrina",0,0,0,NA,789.333333333333,14.78,NA,NA
+2013-09-16,"BD","Hiatella_arctica","Nucella_canaliculata",0,0,1,NA,0,14.78,NA,NA
+2013-09-16,"BD","Hiatella_arctica","Nucella_ostrina",0,0,0,NA,0,14.78,NA,NA
+2013-09-16,"BD","Limpets","Nucella_canaliculata",0,0,1,NA,1432.38095238095,14.78,NA,NA
+2013-09-16,"BD","Limpets","Nucella_ostrina",0,0,0,NA,1432.38095238095,14.78,NA,NA
+2013-09-16,"BD","Littorina_sitkana","Nucella_canaliculata",0,0,1,NA,1607.61904761905,14.78,NA,NA
+2013-09-16,"BD","Littorina_sitkana","Nucella_ostrina",0,0,0,NA,1607.61904761905,14.78,NA,NA
+2013-09-16,"BD","Modiolus_modiolus","Nucella_canaliculata",0,0,1,NA,0,14.78,NA,NA
+2013-09-16,"BD","Modiolus_modiolus","Nucella_ostrina",0,0,0,NA,0,14.78,NA,NA
+2013-09-16,"BD","Mytilus_californianus","Nucella_canaliculata",0,0,1,NA,0,14.78,NA,NA
+2013-09-16,"BD","Mytilus_californianus","Nucella_ostrina",0,0,0,NA,0,14.78,NA,NA
+2013-09-16,"BD","Mytilus_trossulus","Nucella_canaliculata",0,0,1,NA,9675.42857142858,14.78,NA,NA
+2013-09-16,"BD","Mytilus_trossulus","Nucella_ostrina",0,0,0,NA,9675.42857142858,14.78,NA,NA
+2013-09-16,"BD","Nucella_ostrina","Nucella_canaliculata",0,0,1,NA,3.8095238095238,14.78,NA,NA
+2013-09-16,"BD","Nucella_ostrina","Nucella_ostrina",0,0,0,NA,3.8095238095238,14.78,NA,NA
+2013-09-16,"BD","Pollicipes_polymerus","Nucella_canaliculata",0,0,1,NA,0,14.78,NA,NA
+2013-09-16,"BD","Pollicipes_polymerus","Nucella_ostrina",0,0,0,NA,0,14.78,NA,NA
+2013-09-16,"BD","Semibalanus_cariosus","Nucella_canaliculata",0,0,1,NA,0,14.78,NA,NA
+2013-09-16,"BD","Semibalanus_cariosus","Nucella_ostrina",0,0,0,NA,0,14.78,NA,NA
+2013-09-16,"BE","Adula_californiensis","Nucella_canaliculata",0,0,2,NA,0,14.78,NA,NA
+2013-09-16,"BE","Adula_californiensis","Nucella_ostrina",0,0,16,NA,0,14.78,NA,NA
+2013-09-16,"BE","Balanus_glandula","Nucella_canaliculata",0,0,2,NA,66240,14.78,NA,NA
+2013-09-16,"BE","Balanus_glandula","Nucella_ostrina",0.142857142857143,2,16,13.551533833276,66240,14.78,1.59145067406296e-07,0.0105417692649931
+2013-09-16,"BE","Chthamalus_dalli","Nucella_canaliculata",0,0,2,NA,0,14.78,NA,NA
+2013-09-16,"BE","Chthamalus_dalli","Nucella_ostrina",0,0,16,NA,0,14.78,NA,NA
+2013-09-16,"BE","Hiatella_arctica","Nucella_canaliculata",0,0,2,NA,0,14.78,NA,NA
+2013-09-16,"BE","Hiatella_arctica","Nucella_ostrina",0,0,16,NA,0,14.78,NA,NA
+2013-09-16,"BE","Limpets","Nucella_canaliculata",0,0,2,NA,91.4285714285714,14.78,NA,NA
+2013-09-16,"BE","Limpets","Nucella_ostrina",0,0,16,NA,91.4285714285714,14.78,NA,NA
+2013-09-16,"BE","Littorina_sitkana","Nucella_canaliculata",0,0,2,NA,571.428571428571,14.78,NA,NA
+2013-09-16,"BE","Littorina_sitkana","Nucella_ostrina",0,0,16,NA,571.428571428571,14.78,NA,NA
+2013-09-16,"BE","Modiolus_modiolus","Nucella_canaliculata",0,0,2,NA,0,14.78,NA,NA
+2013-09-16,"BE","Modiolus_modiolus","Nucella_ostrina",0,0,16,NA,0,14.78,NA,NA
+2013-09-16,"BE","Mytilus_californianus","Nucella_canaliculata",0,0,2,NA,0,14.78,NA,NA
+2013-09-16,"BE","Mytilus_californianus","Nucella_ostrina",0,0,16,NA,0,14.78,NA,NA
+2013-09-16,"BE","Mytilus_trossulus","Nucella_canaliculata",0,0,2,NA,491.428571428571,14.78,NA,NA
+2013-09-16,"BE","Mytilus_trossulus","Nucella_ostrina",0,0,16,NA,491.428571428571,14.78,NA,NA
+2013-09-16,"BE","Nucella_ostrina","Nucella_canaliculata",0,0,2,NA,11.4285714285714,14.78,NA,NA
+2013-09-16,"BE","Nucella_ostrina","Nucella_ostrina",0,0,16,NA,11.4285714285714,14.78,NA,NA
+2013-09-16,"BE","Pollicipes_polymerus","Nucella_canaliculata",0,0,2,NA,0,14.78,NA,NA
+2013-09-16,"BE","Pollicipes_polymerus","Nucella_ostrina",0,0,16,NA,0,14.78,NA,NA
+2013-09-16,"BE","Semibalanus_cariosus","Nucella_canaliculata",0,0,2,NA,0,14.78,NA,NA
+2013-09-16,"BE","Semibalanus_cariosus","Nucella_ostrina",0,0,16,NA,0,14.78,NA,NA
+2013-09-16,"BF","Adula_californiensis","Nucella_canaliculata",0,0,6,NA,0,14.78,NA,NA
+2013-09-16,"BF","Adula_californiensis","Nucella_ostrina",0,0,39,NA,0,14.78,NA,NA
+2013-09-16,"BF","Balanus_glandula","Nucella_canaliculata",0,0,6,NA,106265.6,14.78,NA,NA
+2013-09-16,"BF","Balanus_glandula","Nucella_ostrina",0.114285714285714,4,39,14.074265429687,106265.6,14.78,7.64141015264994e-08,0.00812019034717438
+2013-09-16,"BF","Chthamalus_dalli","Nucella_canaliculata",0,0,6,NA,0,14.78,NA,NA
+2013-09-16,"BF","Chthamalus_dalli","Nucella_ostrina",0,0,39,NA,0,14.78,NA,NA
+2013-09-16,"BF","Hiatella_arctica","Nucella_canaliculata",0,0,6,NA,0,14.78,NA,NA
+2013-09-16,"BF","Hiatella_arctica","Nucella_ostrina",0,0,39,NA,0,14.78,NA,NA
+2013-09-16,"BF","Limpets","Nucella_canaliculata",0,0,6,NA,210.285714285714,14.78,NA,NA
+2013-09-16,"BF","Limpets","Nucella_ostrina",0,0,39,NA,210.285714285714,14.78,NA,NA
+2013-09-16,"BF","Littorina_sitkana","Nucella_canaliculata",0,0,6,NA,377.142857142857,14.78,NA,NA
+2013-09-16,"BF","Littorina_sitkana","Nucella_ostrina",0,0,39,NA,377.142857142857,14.78,NA,NA
+2013-09-16,"BF","Modiolus_modiolus","Nucella_canaliculata",0,0,6,NA,0,14.78,NA,NA
+2013-09-16,"BF","Modiolus_modiolus","Nucella_ostrina",0,0,39,NA,0,14.78,NA,NA
+2013-09-16,"BF","Mytilus_californianus","Nucella_canaliculata",0,0,6,NA,0,14.78,NA,NA
+2013-09-16,"BF","Mytilus_californianus","Nucella_ostrina",0,0,39,NA,0,14.78,NA,NA
+2013-09-16,"BF","Mytilus_trossulus","Nucella_canaliculata",0,0,6,NA,4395.42857142857,14.78,NA,NA
+2013-09-16,"BF","Mytilus_trossulus","Nucella_ostrina",0,0,39,NA,4395.42857142857,14.78,NA,NA
+2013-09-16,"BF","Nucella_ostrina","Nucella_canaliculata",0,0,6,NA,0,14.78,NA,NA
+2013-09-16,"BF","Nucella_ostrina","Nucella_ostrina",0,0,39,NA,0,14.78,NA,NA
+2013-09-16,"BF","Pollicipes_polymerus","Nucella_canaliculata",0,0,6,NA,0,14.78,NA,NA
+2013-09-16,"BF","Pollicipes_polymerus","Nucella_ostrina",0,0,39,NA,0,14.78,NA,NA
+2013-09-16,"BF","Semibalanus_cariosus","Nucella_canaliculata",0,0,6,NA,0,14.78,NA,NA
+2013-09-16,"BF","Semibalanus_cariosus","Nucella_ostrina",0,0,39,NA,0,14.78,NA,NA
+2013-09-16,"C","Adula_californiensis","Nucella_canaliculata",0,0,4,NA,0,14.78,NA,NA
+2013-09-16,"C","Adula_californiensis","Nucella_ostrina",0,0,1,NA,0,14.78,NA,NA
+2013-09-16,"C","Balanus_glandula","Nucella_canaliculata",0,0,4,NA,57264,14.78,NA,NA
+2013-09-16,"C","Balanus_glandula","Nucella_ostrina",0,0,1,NA,57264,14.78,NA,NA
+2013-09-16,"C","Chthamalus_dalli","Nucella_canaliculata",0,0,4,NA,0,14.78,NA,NA
+2013-09-16,"C","Chthamalus_dalli","Nucella_ostrina",0,0,1,NA,0,14.78,NA,NA
+2013-09-16,"C","Hiatella_arctica","Nucella_canaliculata",0,0,4,NA,0,14.78,NA,NA
+2013-09-16,"C","Hiatella_arctica","Nucella_ostrina",0,0,1,NA,0,14.78,NA,NA
+2013-09-16,"C","Limpets","Nucella_canaliculata",0,0,4,NA,68.5714285714286,14.78,NA,NA
+2013-09-16,"C","Limpets","Nucella_ostrina",0,0,1,NA,68.5714285714286,14.78,NA,NA
+2013-09-16,"C","Littorina_sitkana","Nucella_canaliculata",0,0,4,NA,462.857142857142,14.78,NA,NA
+2013-09-16,"C","Littorina_sitkana","Nucella_ostrina",0,0,1,NA,462.857142857142,14.78,NA,NA
+2013-09-16,"C","Modiolus_modiolus","Nucella_canaliculata",0,0,4,NA,0,14.78,NA,NA
+2013-09-16,"C","Modiolus_modiolus","Nucella_ostrina",0,0,1,NA,0,14.78,NA,NA
+2013-09-16,"C","Mytilus_californianus","Nucella_canaliculata",0,0,4,NA,0,14.78,NA,NA
+2013-09-16,"C","Mytilus_californianus","Nucella_ostrina",0,0,1,NA,0,14.78,NA,NA
+2013-09-16,"C","Mytilus_trossulus","Nucella_canaliculata",0,0,4,NA,805.714285714285,14.78,NA,NA
+2013-09-16,"C","Mytilus_trossulus","Nucella_ostrina",0,0,1,NA,805.714285714285,14.78,NA,NA
+2013-09-16,"C","Nucella_ostrina","Nucella_canaliculata",0,0,4,NA,0,14.78,NA,NA
+2013-09-16,"C","Nucella_ostrina","Nucella_ostrina",0,0,1,NA,0,14.78,NA,NA
+2013-09-16,"C","Pollicipes_polymerus","Nucella_canaliculata",0,0,4,NA,0,14.78,NA,NA
+2013-09-16,"C","Pollicipes_polymerus","Nucella_ostrina",0,0,1,NA,0,14.78,NA,NA
+2013-09-16,"C","Semibalanus_cariosus","Nucella_canaliculata",0,0,4,NA,0,14.78,NA,NA
+2013-09-16,"C","Semibalanus_cariosus","Nucella_ostrina",0,0,1,NA,0,14.78,NA,NA
+2013-09-16,"D","Adula_californiensis","Nucella_canaliculata",0,0,0,NA,0,14.78,NA,NA
+2013-09-16,"D","Adula_californiensis","Nucella_ostrina",0,0,0,NA,0,14.78,NA,NA
+2013-09-16,"D","Balanus_glandula","Nucella_canaliculata",0,0,0,NA,64085.3333333333,14.78,NA,NA
+2013-09-16,"D","Balanus_glandula","Nucella_ostrina",0,0,0,NA,64085.3333333333,14.78,NA,NA
+2013-09-16,"D","Chthamalus_dalli","Nucella_canaliculata",0,0,0,NA,0,14.78,NA,NA
+2013-09-16,"D","Chthamalus_dalli","Nucella_ostrina",0,0,0,NA,0,14.78,NA,NA
+2013-09-16,"D","Hiatella_arctica","Nucella_canaliculata",0,0,0,NA,0,14.78,NA,NA
+2013-09-16,"D","Hiatella_arctica","Nucella_ostrina",0,0,0,NA,0,14.78,NA,NA
+2013-09-16,"D","Limpets","Nucella_canaliculata",0,0,0,NA,300.952380952381,14.78,NA,NA
+2013-09-16,"D","Limpets","Nucella_ostrina",0,0,0,NA,300.952380952381,14.78,NA,NA
+2013-09-16,"D","Littorina_sitkana","Nucella_canaliculata",0,0,0,NA,1215.2380952381,14.78,NA,NA
+2013-09-16,"D","Littorina_sitkana","Nucella_ostrina",0,0,0,NA,1215.2380952381,14.78,NA,NA
+2013-09-16,"D","Modiolus_modiolus","Nucella_canaliculata",0,0,0,NA,0,14.78,NA,NA
+2013-09-16,"D","Modiolus_modiolus","Nucella_ostrina",0,0,0,NA,0,14.78,NA,NA
+2013-09-16,"D","Mytilus_californianus","Nucella_canaliculata",0,0,0,NA,0,14.78,NA,NA
+2013-09-16,"D","Mytilus_californianus","Nucella_ostrina",0,0,0,NA,0,14.78,NA,NA
+2013-09-16,"D","Mytilus_trossulus","Nucella_canaliculata",0,0,0,NA,678.095238095237,14.78,NA,NA
+2013-09-16,"D","Mytilus_trossulus","Nucella_ostrina",0,0,0,NA,678.095238095237,14.78,NA,NA
+2013-09-16,"D","Nucella_ostrina","Nucella_canaliculata",0,0,0,NA,26.6666666666667,14.78,NA,NA
+2013-09-16,"D","Nucella_ostrina","Nucella_ostrina",0,0,0,NA,26.6666666666667,14.78,NA,NA
+2013-09-16,"D","Pollicipes_polymerus","Nucella_canaliculata",0,0,0,NA,0,14.78,NA,NA
+2013-09-16,"D","Pollicipes_polymerus","Nucella_ostrina",0,0,0,NA,0,14.78,NA,NA
+2013-09-16,"D","Semibalanus_cariosus","Nucella_canaliculata",0,0,0,NA,0,14.78,NA,NA
+2013-09-16,"D","Semibalanus_cariosus","Nucella_ostrina",0,0,0,NA,0,14.78,NA,NA
+2013-09-16,"E","Adula_californiensis","Nucella_canaliculata",0,0,6,NA,0,14.78,NA,NA
+2013-09-16,"E","Adula_californiensis","Nucella_ostrina",0,0,15,NA,0,14.78,NA,NA
+2013-09-16,"E","Balanus_glandula","Nucella_canaliculata",0,0,6,NA,48000,14.78,NA,NA
+2013-09-16,"E","Balanus_glandula","Nucella_ostrina",0.5,5,15,14.2758037239472,48000,14.78,7.29672869429625e-07,0.035024297732622
+2013-09-16,"E","Chthamalus_dalli","Nucella_canaliculata",0,0,6,NA,0,14.78,NA,NA
+2013-09-16,"E","Chthamalus_dalli","Nucella_ostrina",0,0,15,NA,0,14.78,NA,NA
+2013-09-16,"E","Hiatella_arctica","Nucella_canaliculata",0,0,6,NA,0,14.78,NA,NA
+2013-09-16,"E","Hiatella_arctica","Nucella_ostrina",0,0,15,NA,0,14.78,NA,NA
+2013-09-16,"E","Limpets","Nucella_canaliculata",0,0,6,NA,45.7142857142856,14.78,NA,NA
+2013-09-16,"E","Limpets","Nucella_ostrina",0,0,15,NA,45.7142857142856,14.78,NA,NA
+2013-09-16,"E","Littorina_sitkana","Nucella_canaliculata",0,0,6,NA,125.714285714286,14.78,NA,NA
+2013-09-16,"E","Littorina_sitkana","Nucella_ostrina",0,0,15,NA,125.714285714286,14.78,NA,NA
+2013-09-16,"E","Modiolus_modiolus","Nucella_canaliculata",0,0,6,NA,0,14.78,NA,NA
+2013-09-16,"E","Modiolus_modiolus","Nucella_ostrina",0,0,15,NA,0,14.78,NA,NA
+2013-09-16,"E","Mytilus_californianus","Nucella_canaliculata",0,0,6,NA,0,14.78,NA,NA
+2013-09-16,"E","Mytilus_californianus","Nucella_ostrina",0,0,15,NA,0,14.78,NA,NA
+2013-09-16,"E","Mytilus_trossulus","Nucella_canaliculata",0,0,6,NA,952.380952380953,14.78,NA,NA
+2013-09-16,"E","Mytilus_trossulus","Nucella_ostrina",0,0,15,NA,952.380952380953,14.78,NA,NA
+2013-09-16,"E","Nucella_ostrina","Nucella_canaliculata",0,0,6,NA,7.61904761904763,14.78,NA,NA
+2013-09-16,"E","Nucella_ostrina","Nucella_ostrina",0,0,15,NA,7.61904761904763,14.78,NA,NA
+2013-09-16,"E","Pollicipes_polymerus","Nucella_canaliculata",0,0,6,NA,0,14.78,NA,NA
+2013-09-16,"E","Pollicipes_polymerus","Nucella_ostrina",0,0,15,NA,0,14.78,NA,NA
+2013-09-16,"E","Semibalanus_cariosus","Nucella_canaliculata",0,0,6,NA,0,14.78,NA,NA
+2013-09-16,"E","Semibalanus_cariosus","Nucella_ostrina",0,0,15,NA,0,14.78,NA,NA
+2013-09-16,"F","Adula_californiensis","Nucella_canaliculata",0,0,0,NA,0,14.78,NA,NA
+2013-09-16,"F","Adula_californiensis","Nucella_ostrina",0,0,4,NA,0,14.78,NA,NA
+2013-09-16,"F","Balanus_glandula","Nucella_canaliculata",0,0,0,NA,67968,14.78,NA,NA
+2013-09-16,"F","Balanus_glandula","Nucella_ostrina",0.5,1,4,13.551533833276,67968,14.78,5.42846522296901e-07,0.0368961924274758
+2013-09-16,"F","Chthamalus_dalli","Nucella_canaliculata",0,0,0,NA,0,14.78,NA,NA
+2013-09-16,"F","Chthamalus_dalli","Nucella_ostrina",0,0,4,NA,0,14.78,NA,NA
+2013-09-16,"F","Hiatella_arctica","Nucella_canaliculata",0,0,0,NA,0,14.78,NA,NA
+2013-09-16,"F","Hiatella_arctica","Nucella_ostrina",0,0,4,NA,0,14.78,NA,NA
+2013-09-16,"F","Limpets","Nucella_canaliculata",0,0,0,NA,1151.42857142857,14.78,NA,NA
+2013-09-16,"F","Limpets","Nucella_ostrina",0,0,4,NA,1151.42857142857,14.78,NA,NA
+2013-09-16,"F","Littorina_sitkana","Nucella_canaliculata",0,0,0,NA,888.571428571429,14.78,NA,NA
+2013-09-16,"F","Littorina_sitkana","Nucella_ostrina",0,0,4,NA,888.571428571429,14.78,NA,NA
+2013-09-16,"F","Modiolus_modiolus","Nucella_canaliculata",0,0,0,NA,0,14.78,NA,NA
+2013-09-16,"F","Modiolus_modiolus","Nucella_ostrina",0,0,4,NA,0,14.78,NA,NA
+2013-09-16,"F","Mytilus_californianus","Nucella_canaliculata",0,0,0,NA,0,14.78,NA,NA
+2013-09-16,"F","Mytilus_californianus","Nucella_ostrina",0,0,4,NA,0,14.78,NA,NA
+2013-09-16,"F","Mytilus_trossulus","Nucella_canaliculata",0,0,0,NA,828.571428571429,14.78,NA,NA
+2013-09-16,"F","Mytilus_trossulus","Nucella_ostrina",0.5,1,4,28.9883862847088,828.571428571429,14.78,2.08168978409255e-05,0.0172482867824811
+2013-09-16,"F","Nucella_ostrina","Nucella_canaliculata",0,0,0,NA,2.85714285714285,14.78,NA,NA
+2013-09-16,"F","Nucella_ostrina","Nucella_ostrina",0,0,4,NA,2.85714285714285,14.78,NA,NA
+2013-09-16,"F","Pollicipes_polymerus","Nucella_canaliculata",0,0,0,NA,0,14.78,NA,NA
+2013-09-16,"F","Pollicipes_polymerus","Nucella_ostrina",0,0,4,NA,0,14.78,NA,NA
+2013-09-16,"F","Semibalanus_cariosus","Nucella_canaliculata",0,0,0,NA,0,14.78,NA,NA
+2013-09-16,"F","Semibalanus_cariosus","Nucella_ostrina",0,0,4,NA,0,14.78,NA,NA
+2013-09-16,"G","Adula_californiensis","Nucella_canaliculata",0,0,1,NA,0,14.78,NA,NA
+2013-09-16,"G","Adula_californiensis","Nucella_ostrina",0,0,5,NA,0,14.78,NA,NA
+2013-09-16,"G","Balanus_glandula","Nucella_canaliculata",0,0,1,NA,29140.5714285714,14.78,NA,NA
+2013-09-16,"G","Balanus_glandula","Nucella_ostrina",0,0,5,NA,29140.5714285714,14.78,NA,NA
+2013-09-16,"G","Chthamalus_dalli","Nucella_canaliculata",0,0,1,NA,3455.2380952381,14.78,NA,NA
+2013-09-16,"G","Chthamalus_dalli","Nucella_ostrina",0,0,5,NA,3455.2380952381,14.78,NA,NA
+2013-09-16,"G","Hiatella_arctica","Nucella_canaliculata",0,0,1,NA,0,14.78,NA,NA
+2013-09-16,"G","Hiatella_arctica","Nucella_ostrina",0,0,5,NA,0,14.78,NA,NA
+2013-09-16,"G","Limpets","Nucella_canaliculata",0,0,1,NA,883.809523809522,14.78,NA,NA
+2013-09-16,"G","Limpets","Nucella_ostrina",0,0,5,NA,883.809523809522,14.78,NA,NA
+2013-09-16,"G","Littorina_sitkana","Nucella_canaliculata",0,0,1,NA,1600,14.78,NA,NA
+2013-09-16,"G","Littorina_sitkana","Nucella_ostrina",0,0,5,NA,1600,14.78,NA,NA
+2013-09-16,"G","Modiolus_modiolus","Nucella_canaliculata",0,0,1,NA,0,14.78,NA,NA
+2013-09-16,"G","Modiolus_modiolus","Nucella_ostrina",0,0,5,NA,0,14.78,NA,NA
+2013-09-16,"G","Mytilus_californianus","Nucella_canaliculata",0,0,1,NA,3.8095238095238,14.78,NA,NA
+2013-09-16,"G","Mytilus_californianus","Nucella_ostrina",0,0,5,NA,3.8095238095238,14.78,NA,NA
+2013-09-16,"G","Mytilus_trossulus","Nucella_canaliculata",0,0,1,NA,5043.80952380953,14.78,NA,NA
+2013-09-16,"G","Mytilus_trossulus","Nucella_ostrina",0,0,5,NA,5043.80952380953,14.78,NA,NA
+2013-09-16,"G","Nucella_ostrina","Nucella_canaliculata",0,0,1,NA,7.6190476190476,14.78,NA,NA
+2013-09-16,"G","Nucella_ostrina","Nucella_ostrina",0,0,5,NA,7.6190476190476,14.78,NA,NA
+2013-09-16,"G","Pollicipes_polymerus","Nucella_canaliculata",0,0,1,NA,0,14.78,NA,NA
+2013-09-16,"G","Pollicipes_polymerus","Nucella_ostrina",0,0,5,NA,0,14.78,NA,NA
+2013-09-16,"G","Semibalanus_cariosus","Nucella_canaliculata",0,0,1,NA,0,14.78,NA,NA
+2013-09-16,"G","Semibalanus_cariosus","Nucella_ostrina",0,0,5,NA,0,14.78,NA,NA
+2013-10-07,"A","Adula_californiensis","Nucella_canaliculata",0,0,10,NA,0,14.43,NA,NA
+2013-10-07,"A","Adula_californiensis","Nucella_ostrina",0,0,1,NA,0,14.43,NA,NA
+2013-10-07,"A","Balanus_glandula","Nucella_canaliculata",0.428571428571429,3,10,18.3279477521002,54848,14.43,4.26332637241832e-07,0.02338349248744
+2013-10-07,"A","Balanus_glandula","Nucella_ostrina",0,0,1,NA,54848,14.43,NA,NA
+2013-10-07,"A","Chthamalus_dalli","Nucella_canaliculata",0,0,10,NA,0,14.43,NA,NA
+2013-10-07,"A","Chthamalus_dalli","Nucella_ostrina",0,0,1,NA,0,14.43,NA,NA
+2013-10-07,"A","Hiatella_arctica","Nucella_canaliculata",0,0,10,NA,0,14.43,NA,NA
+2013-10-07,"A","Hiatella_arctica","Nucella_ostrina",0,0,1,NA,0,14.43,NA,NA
+2013-10-07,"A","Limpets","Nucella_canaliculata",0,0,10,NA,110.47619047619,14.43,NA,NA
+2013-10-07,"A","Limpets","Nucella_ostrina",0,0,1,NA,110.47619047619,14.43,NA,NA
+2013-10-07,"A","Littorina_sitkana","Nucella_canaliculata",0,0,10,NA,933.333333333333,14.43,NA,NA
+2013-10-07,"A","Littorina_sitkana","Nucella_ostrina",0,0,1,NA,933.333333333333,14.43,NA,NA
+2013-10-07,"A","Modiolus_modiolus","Nucella_canaliculata",0,0,10,NA,0,14.43,NA,NA
+2013-10-07,"A","Modiolus_modiolus","Nucella_ostrina",0,0,1,NA,0,14.43,NA,NA
+2013-10-07,"A","Mytilus_californianus","Nucella_canaliculata",0,0,10,NA,0,14.43,NA,NA
+2013-10-07,"A","Mytilus_californianus","Nucella_ostrina",0,0,1,NA,0,14.43,NA,NA
+2013-10-07,"A","Mytilus_trossulus","Nucella_canaliculata",0,0,10,NA,13760,14.43,NA,NA
+2013-10-07,"A","Mytilus_trossulus","Nucella_ostrina",0,0,1,NA,13760,14.43,NA,NA
+2013-10-07,"A","Nucella_ostrina","Nucella_canaliculata",0,0,10,NA,0,14.43,NA,NA
+2013-10-07,"A","Nucella_ostrina","Nucella_ostrina",0,0,1,NA,0,14.43,NA,NA
+2013-10-07,"A","Pollicipes_polymerus","Nucella_canaliculata",0,0,10,NA,0,14.43,NA,NA
+2013-10-07,"A","Pollicipes_polymerus","Nucella_ostrina",0,0,1,NA,0,14.43,NA,NA
+2013-10-07,"A","Semibalanus_cariosus","Nucella_canaliculata",0,0,10,NA,0,14.43,NA,NA
+2013-10-07,"A","Semibalanus_cariosus","Nucella_ostrina",0,0,1,NA,0,14.43,NA,NA
+2013-10-07,"AB","Adula_californiensis","Nucella_canaliculata",0,0,83,NA,0,14.43,NA,NA
+2013-10-07,"AB","Adula_californiensis","Nucella_ostrina",0,0,31,NA,0,14.43,NA,NA
+2013-10-07,"AB","Balanus_glandula","Nucella_canaliculata",0.0789473684210526,6,83,29.2284389479782,72947.2,14.43,3.70274164448837e-08,0.00270104635288822
+2013-10-07,"AB","Balanus_glandula","Nucella_ostrina",0.260869565217391,6,31,15.5878461863936,72947.2,14.43,2.29418626842989e-07,0.0167354464560409
+2013-10-07,"AB","Chthamalus_dalli","Nucella_canaliculata",0.0131578947368421,1,83,13.6605865197565,76.8,14.43,1.25416836340215e-05,0.000963201303092852
+2013-10-07,"AB","Chthamalus_dalli","Nucella_ostrina",0,0,31,NA,76.8,14.43,NA,NA
+2013-10-07,"AB","Hiatella_arctica","Nucella_canaliculata",0,0,83,NA,0,14.43,NA,NA
+2013-10-07,"AB","Hiatella_arctica","Nucella_ostrina",0,0,31,NA,0,14.43,NA,NA
+2013-10-07,"AB","Limpets","Nucella_canaliculata",0,0,83,NA,128,14.43,NA,NA
+2013-10-07,"AB","Limpets","Nucella_ostrina",0,0,31,NA,128,14.43,NA,NA
+2013-10-07,"AB","Littorina_sitkana","Nucella_canaliculata",0,0,83,NA,235.428571428571,14.43,NA,NA
+2013-10-07,"AB","Littorina_sitkana","Nucella_ostrina",0,0,31,NA,235.428571428571,14.43,NA,NA
+2013-10-07,"AB","Modiolus_modiolus","Nucella_canaliculata",0,0,83,NA,0,14.43,NA,NA
+2013-10-07,"AB","Modiolus_modiolus","Nucella_ostrina",0,0,31,NA,0,14.43,NA,NA
+2013-10-07,"AB","Mytilus_californianus","Nucella_canaliculata",0,0,83,NA,0,14.43,NA,NA
+2013-10-07,"AB","Mytilus_californianus","Nucella_ostrina",0,0,31,NA,0,14.43,NA,NA
+2013-10-07,"AB","Mytilus_trossulus","Nucella_canaliculata",0,0,83,NA,10797.7142857143,14.43,NA,NA
+2013-10-07,"AB","Mytilus_trossulus","Nucella_ostrina",0.0869565217391304,2,31,23.0979795100261,10797.7142857143,14.43,3.48655352099112e-07,0.00376468087615132
+2013-10-07,"AB","Nucella_ostrina","Nucella_canaliculata",0,0,83,NA,6.85714285714286,14.43,NA,NA
+2013-10-07,"AB","Nucella_ostrina","Nucella_ostrina",0,0,31,NA,6.85714285714286,14.43,NA,NA
+2013-10-07,"AB","Pollicipes_polymerus","Nucella_canaliculata",0,0,83,NA,0,14.43,NA,NA
+2013-10-07,"AB","Pollicipes_polymerus","Nucella_ostrina",0,0,31,NA,0,14.43,NA,NA
+2013-10-07,"AB","Semibalanus_cariosus","Nucella_canaliculata",0,0,83,NA,0,14.43,NA,NA
+2013-10-07,"AB","Semibalanus_cariosus","Nucella_ostrina",0,0,31,NA,0,14.43,NA,NA
+2013-10-07,"AC","Adula_californiensis","Nucella_canaliculata",0,0,9,NA,0,14.43,NA,NA
+2013-10-07,"AC","Adula_californiensis","Nucella_ostrina",0,0,3,NA,0,14.43,NA,NA
+2013-10-07,"AC","Balanus_glandula","Nucella_canaliculata",0.5,3,9,19.5902111682262,85776,14.43,2.975535232929e-07,0.0255229510139718
+2013-10-07,"AC","Balanus_glandula","Nucella_ostrina",0,0,3,NA,85776,14.43,NA,NA
+2013-10-07,"AC","Chthamalus_dalli","Nucella_canaliculata",0,0,9,NA,128,14.43,NA,NA
+2013-10-07,"AC","Chthamalus_dalli","Nucella_ostrina",0,0,3,NA,128,14.43,NA,NA
+2013-10-07,"AC","Hiatella_arctica","Nucella_canaliculata",0,0,9,NA,0,14.43,NA,NA
+2013-10-07,"AC","Hiatella_arctica","Nucella_ostrina",0,0,3,NA,0,14.43,NA,NA
+2013-10-07,"AC","Limpets","Nucella_canaliculata",0,0,9,NA,162.857142857143,14.43,NA,NA
+2013-10-07,"AC","Limpets","Nucella_ostrina",0,0,3,NA,162.857142857143,14.43,NA,NA
+2013-10-07,"AC","Littorina_sitkana","Nucella_canaliculata",0,0,9,NA,2917.14285714286,14.43,NA,NA
+2013-10-07,"AC","Littorina_sitkana","Nucella_ostrina",0,0,3,NA,2917.14285714286,14.43,NA,NA
+2013-10-07,"AC","Modiolus_modiolus","Nucella_canaliculata",0,0,9,NA,0,14.43,NA,NA
+2013-10-07,"AC","Modiolus_modiolus","Nucella_ostrina",0,0,3,NA,0,14.43,NA,NA
+2013-10-07,"AC","Mytilus_californianus","Nucella_canaliculata",0,0,9,NA,0,14.43,NA,NA
+2013-10-07,"AC","Mytilus_californianus","Nucella_ostrina",0,0,3,NA,0,14.43,NA,NA
+2013-10-07,"AC","Mytilus_trossulus","Nucella_canaliculata",0,0,9,NA,2137.14285714286,14.43,NA,NA
+2013-10-07,"AC","Mytilus_trossulus","Nucella_ostrina",0,0,3,NA,2137.14285714286,14.43,NA,NA
+2013-10-07,"AC","Nucella_ostrina","Nucella_canaliculata",0,0,9,NA,5.7142857142857,14.43,NA,NA
+2013-10-07,"AC","Nucella_ostrina","Nucella_ostrina",0,0,3,NA,5.7142857142857,14.43,NA,NA
+2013-10-07,"AC","Pollicipes_polymerus","Nucella_canaliculata",0,0,9,NA,0,14.43,NA,NA
+2013-10-07,"AC","Pollicipes_polymerus","Nucella_ostrina",0,0,3,NA,0,14.43,NA,NA
+2013-10-07,"AC","Semibalanus_cariosus","Nucella_canaliculata",0,0,9,NA,0,14.43,NA,NA
+2013-10-07,"AC","Semibalanus_cariosus","Nucella_ostrina",0,0,3,NA,0,14.43,NA,NA
+2013-10-07,"AD","Adula_californiensis","Nucella_canaliculata",0,0,92,NA,0,14.43,NA,NA
+2013-10-07,"AD","Adula_californiensis","Nucella_ostrina",0,0,11,NA,0,14.43,NA,NA
+2013-10-07,"AD","Balanus_glandula","Nucella_canaliculata",0.26027397260274,19,92,15.5202946311419,59968,14.43,2.79647675994709e-07,0.0167699118340507
+2013-10-07,"AD","Balanus_glandula","Nucella_ostrina",0.1,1,11,10.0761440302311,59968,14.43,1.65495453903744e-07,0.00992443137969974
+2013-10-07,"AD","Chthamalus_dalli","Nucella_canaliculata",0,0,92,NA,426.666666666667,14.43,NA,NA
+2013-10-07,"AD","Chthamalus_dalli","Nucella_ostrina",0,0,11,NA,426.666666666667,14.43,NA,NA
+2013-10-07,"AD","Hiatella_arctica","Nucella_canaliculata",0,0,92,NA,0,14.43,NA,NA
+2013-10-07,"AD","Hiatella_arctica","Nucella_ostrina",0,0,11,NA,0,14.43,NA,NA
+2013-10-07,"AD","Limpets","Nucella_canaliculata",0,0,92,NA,460.95238095238,14.43,NA,NA
+2013-10-07,"AD","Limpets","Nucella_ostrina",0,0,11,NA,460.95238095238,14.43,NA,NA
+2013-10-07,"AD","Littorina_sitkana","Nucella_canaliculata",0,0,92,NA,1733.33333333333,14.43,NA,NA
+2013-10-07,"AD","Littorina_sitkana","Nucella_ostrina",0,0,11,NA,1733.33333333333,14.43,NA,NA
+2013-10-07,"AD","Modiolus_modiolus","Nucella_canaliculata",0,0,92,NA,0,14.43,NA,NA
+2013-10-07,"AD","Modiolus_modiolus","Nucella_ostrina",0,0,11,NA,0,14.43,NA,NA
+2013-10-07,"AD","Mytilus_californianus","Nucella_canaliculata",0,0,92,NA,0,14.43,NA,NA
+2013-10-07,"AD","Mytilus_californianus","Nucella_ostrina",0,0,11,NA,0,14.43,NA,NA
+2013-10-07,"AD","Mytilus_trossulus","Nucella_canaliculata",0,0,92,NA,19146.6666666667,14.43,NA,NA
+2013-10-07,"AD","Mytilus_trossulus","Nucella_ostrina",0,0,11,NA,19146.6666666667,14.43,NA,NA
+2013-10-07,"AD","Nucella_ostrina","Nucella_canaliculata",0,0,92,NA,3.8095238095238,14.43,NA,NA
+2013-10-07,"AD","Nucella_ostrina","Nucella_ostrina",0,0,11,NA,3.8095238095238,14.43,NA,NA
+2013-10-07,"AD","Pollicipes_polymerus","Nucella_canaliculata",0,0,92,NA,0,14.43,NA,NA
+2013-10-07,"AD","Pollicipes_polymerus","Nucella_ostrina",0,0,11,NA,0,14.43,NA,NA
+2013-10-07,"AD","Semibalanus_cariosus","Nucella_canaliculata",0,0,92,NA,0,14.43,NA,NA
+2013-10-07,"AD","Semibalanus_cariosus","Nucella_ostrina",0,0,11,NA,0,14.43,NA,NA
+2013-10-07,"AE","Adula_californiensis","Nucella_canaliculata",0,0,6,NA,0,14.43,NA,NA
+2013-10-07,"AE","Adula_californiensis","Nucella_ostrina",0,0,8,NA,0,14.43,NA,NA
+2013-10-07,"AE","Balanus_glandula","Nucella_canaliculata",0.2,1,6,26.2895338995714,87040,14.43,8.74033798554533e-08,0.00760759018261865
+2013-10-07,"AE","Balanus_glandula","Nucella_ostrina",0.333333333333333,2,8,12.5931494033808,87040,14.43,3.04106362917999e-07,0.0264694178283826
+2013-10-07,"AE","Chthamalus_dalli","Nucella_canaliculata",0,0,6,NA,170.666666666667,14.43,NA,NA
+2013-10-07,"AE","Chthamalus_dalli","Nucella_ostrina",0,0,8,NA,170.666666666667,14.43,NA,NA
+2013-10-07,"AE","Hiatella_arctica","Nucella_canaliculata",0,0,6,NA,0,14.43,NA,NA
+2013-10-07,"AE","Hiatella_arctica","Nucella_ostrina",0,0,8,NA,0,14.43,NA,NA
+2013-10-07,"AE","Limpets","Nucella_canaliculata",0,0,6,NA,476.190476190476,14.43,NA,NA
+2013-10-07,"AE","Limpets","Nucella_ostrina",0,0,8,NA,476.190476190476,14.43,NA,NA
+2013-10-07,"AE","Littorina_sitkana","Nucella_canaliculata",0,0,6,NA,2323.80952380953,14.43,NA,NA
+2013-10-07,"AE","Littorina_sitkana","Nucella_ostrina",0,0,8,NA,2323.80952380953,14.43,NA,NA
+2013-10-07,"AE","Modiolus_modiolus","Nucella_canaliculata",0,0,6,NA,0,14.43,NA,NA
+2013-10-07,"AE","Modiolus_modiolus","Nucella_ostrina",0,0,8,NA,0,14.43,NA,NA
+2013-10-07,"AE","Mytilus_californianus","Nucella_canaliculata",0,0,6,NA,0,14.43,NA,NA
+2013-10-07,"AE","Mytilus_californianus","Nucella_ostrina",0,0,8,NA,0,14.43,NA,NA
+2013-10-07,"AE","Mytilus_trossulus","Nucella_canaliculata",0,0,6,NA,5363.80952380952,14.43,NA,NA
+2013-10-07,"AE","Mytilus_trossulus","Nucella_ostrina",0,0,8,NA,5363.80952380952,14.43,NA,NA
+2013-10-07,"AE","Nucella_ostrina","Nucella_canaliculata",0,0,6,NA,0,14.43,NA,NA
+2013-10-07,"AE","Nucella_ostrina","Nucella_ostrina",0,0,8,NA,0,14.43,NA,NA
+2013-10-07,"AE","Pollicipes_polymerus","Nucella_canaliculata",0,0,6,NA,0,14.43,NA,NA
+2013-10-07,"AE","Pollicipes_polymerus","Nucella_ostrina",0,0,8,NA,0,14.43,NA,NA
+2013-10-07,"AE","Semibalanus_cariosus","Nucella_canaliculata",0,0,6,NA,0,14.43,NA,NA
+2013-10-07,"AE","Semibalanus_cariosus","Nucella_ostrina",0,0,8,NA,0,14.43,NA,NA
+2013-10-07,"AF","Adula_californiensis","Nucella_canaliculata",0,0,19,NA,0,14.43,NA,NA
+2013-10-07,"AF","Adula_californiensis","Nucella_ostrina",0,0,10,NA,0,14.43,NA,NA
+2013-10-07,"AF","Balanus_glandula","Nucella_canaliculata",0.0555555555555556,1,19,14.1351109294141,59626.6666666667,14.43,6.59155290748656e-08,0.00393032328030399
+2013-10-07,"AF","Balanus_glandula","Nucella_ostrina",0.428571428571429,3,10,14.4222378344167,59626.6666666667,14.43,4.98367863886303e-07,0.0297160144973273
+2013-10-07,"AF","Chthamalus_dalli","Nucella_canaliculata",0,0,19,NA,170.666666666667,14.43,NA,NA
+2013-10-07,"AF","Chthamalus_dalli","Nucella_ostrina",0,0,10,NA,170.666666666667,14.43,NA,NA
+2013-10-07,"AF","Hiatella_arctica","Nucella_canaliculata",0,0,19,NA,0,14.43,NA,NA
+2013-10-07,"AF","Hiatella_arctica","Nucella_ostrina",0,0,10,NA,0,14.43,NA,NA
+2013-10-07,"AF","Limpets","Nucella_canaliculata",0,0,19,NA,53.3333333333333,14.43,NA,NA
+2013-10-07,"AF","Limpets","Nucella_ostrina",0,0,10,NA,53.3333333333333,14.43,NA,NA
+2013-10-07,"AF","Littorina_sitkana","Nucella_canaliculata",0,0,19,NA,1725.71428571429,14.43,NA,NA
+2013-10-07,"AF","Littorina_sitkana","Nucella_ostrina",0,0,10,NA,1725.71428571429,14.43,NA,NA
+2013-10-07,"AF","Modiolus_modiolus","Nucella_canaliculata",0,0,19,NA,0,14.43,NA,NA
+2013-10-07,"AF","Modiolus_modiolus","Nucella_ostrina",0,0,10,NA,0,14.43,NA,NA
+2013-10-07,"AF","Mytilus_californianus","Nucella_canaliculata",0,0,19,NA,0,14.43,NA,NA
+2013-10-07,"AF","Mytilus_californianus","Nucella_ostrina",0,0,10,NA,0,14.43,NA,NA
+2013-10-07,"AF","Mytilus_trossulus","Nucella_canaliculata",0,0,19,NA,6925.71428571428,14.43,NA,NA
+2013-10-07,"AF","Mytilus_trossulus","Nucella_ostrina",0,0,10,NA,6925.71428571428,14.43,NA,NA
+2013-10-07,"AF","Nucella_ostrina","Nucella_canaliculata",0,0,19,NA,0,14.43,NA,NA
+2013-10-07,"AF","Nucella_ostrina","Nucella_ostrina",0,0,10,NA,0,14.43,NA,NA
+2013-10-07,"AF","Pollicipes_polymerus","Nucella_canaliculata",0,0,19,NA,0,14.43,NA,NA
+2013-10-07,"AF","Pollicipes_polymerus","Nucella_ostrina",0,0,10,NA,0,14.43,NA,NA
+2013-10-07,"AF","Semibalanus_cariosus","Nucella_canaliculata",0,0,19,NA,0,14.43,NA,NA
+2013-10-07,"AF","Semibalanus_cariosus","Nucella_ostrina",0,0,10,NA,0,14.43,NA,NA
+2013-10-07,"AG","Adula_californiensis","Nucella_canaliculata",0,0,6,NA,0,14.43,NA,NA
+2013-10-07,"AG","Adula_californiensis","Nucella_ostrina",0,0,21,NA,0,14.43,NA,NA
+2013-10-07,"AG","Balanus_glandula","Nucella_canaliculata",0.2,1,6,11.5253278168674,54784,14.43,3.16754628812954e-07,0.0173530855848888
+2013-10-07,"AG","Balanus_glandula","Nucella_ostrina",0,0,21,NA,54784,14.43,NA,NA
+2013-10-07,"AG","Chthamalus_dalli","Nucella_canaliculata",0,0,6,NA,0,14.43,NA,NA
+2013-10-07,"AG","Chthamalus_dalli","Nucella_ostrina",0,0,21,NA,0,14.43,NA,NA
+2013-10-07,"AG","Hiatella_arctica","Nucella_canaliculata",0,0,6,NA,0,14.43,NA,NA
+2013-10-07,"AG","Hiatella_arctica","Nucella_ostrina",0,0,21,NA,0,14.43,NA,NA
+2013-10-07,"AG","Limpets","Nucella_canaliculata",0,0,6,NA,189.714285714286,14.43,NA,NA
+2013-10-07,"AG","Limpets","Nucella_ostrina",0,0,21,NA,189.714285714286,14.43,NA,NA
+2013-10-07,"AG","Littorina_sitkana","Nucella_canaliculata",0,0,6,NA,685.714285714285,14.43,NA,NA
+2013-10-07,"AG","Littorina_sitkana","Nucella_ostrina",0,0,21,NA,685.714285714285,14.43,NA,NA
+2013-10-07,"AG","Modiolus_modiolus","Nucella_canaliculata",0,0,6,NA,0,14.43,NA,NA
+2013-10-07,"AG","Modiolus_modiolus","Nucella_ostrina",0,0,21,NA,0,14.43,NA,NA
+2013-10-07,"AG","Mytilus_californianus","Nucella_canaliculata",0,0,6,NA,0,14.43,NA,NA
+2013-10-07,"AG","Mytilus_californianus","Nucella_ostrina",0,0,21,NA,0,14.43,NA,NA
+2013-10-07,"AG","Mytilus_trossulus","Nucella_canaliculata",0,0,6,NA,989.714285714285,14.43,NA,NA
+2013-10-07,"AG","Mytilus_trossulus","Nucella_ostrina",0,0,21,NA,989.714285714285,14.43,NA,NA
+2013-10-07,"AG","Nucella_ostrina","Nucella_canaliculata",0,0,6,NA,13.7142857142857,14.43,NA,NA
+2013-10-07,"AG","Nucella_ostrina","Nucella_ostrina",0,0,21,NA,13.7142857142857,14.43,NA,NA
+2013-10-07,"AG","Pollicipes_polymerus","Nucella_canaliculata",0,0,6,NA,0,14.43,NA,NA
+2013-10-07,"AG","Pollicipes_polymerus","Nucella_ostrina",0,0,21,NA,0,14.43,NA,NA
+2013-10-07,"AG","Semibalanus_cariosus","Nucella_canaliculata",0,0,6,NA,0,14.43,NA,NA
+2013-10-07,"AG","Semibalanus_cariosus","Nucella_ostrina",0,0,21,NA,0,14.43,NA,NA
+2013-10-07,"B","Adula_californiensis","Nucella_canaliculata",0,0,125,NA,0,14.43,NA,NA
+2013-10-07,"B","Adula_californiensis","Nucella_ostrina",0,0,0,NA,0,14.43,NA,NA
+2013-10-07,"B","Balanus_glandula","Nucella_canaliculata",0.184466019417476,19,125,17.5481074913246,63694.2222222222,14.43,1.65038797816132e-07,0.0105120178633891
+2013-10-07,"B","Balanus_glandula","Nucella_ostrina",0,0,0,NA,63694.2222222222,14.43,NA,NA
+2013-10-07,"B","Chthamalus_dalli","Nucella_canaliculata",0.00970873786407767,1,125,6.86710338901575,0,14.43,Inf,0.00141380394528605
+2013-10-07,"B","Chthamalus_dalli","Nucella_ostrina",0,0,0,NA,0,14.43,NA,NA
+2013-10-07,"B","Hiatella_arctica","Nucella_canaliculata",0,0,125,NA,0,14.43,NA,NA
+2013-10-07,"B","Hiatella_arctica","Nucella_ostrina",0,0,0,NA,0,14.43,NA,NA
+2013-10-07,"B","Limpets","Nucella_canaliculata",0,0,125,NA,193.015873015873,14.43,NA,NA
+2013-10-07,"B","Limpets","Nucella_ostrina",0,0,0,NA,193.015873015873,14.43,NA,NA
+2013-10-07,"B","Littorina_sitkana","Nucella_canaliculata",0,0,125,NA,76.1904761904762,14.43,NA,NA
+2013-10-07,"B","Littorina_sitkana","Nucella_ostrina",0,0,0,NA,76.1904761904762,14.43,NA,NA
+2013-10-07,"B","Modiolus_modiolus","Nucella_canaliculata",0,0,125,NA,0,14.43,NA,NA
+2013-10-07,"B","Modiolus_modiolus","Nucella_ostrina",0,0,0,NA,0,14.43,NA,NA
+2013-10-07,"B","Mytilus_californianus","Nucella_canaliculata",0,0,125,NA,0,14.43,NA,NA
+2013-10-07,"B","Mytilus_californianus","Nucella_ostrina",0,0,0,NA,0,14.43,NA,NA
+2013-10-07,"B","Mytilus_trossulus","Nucella_canaliculata",0.0194174757281553,2,125,24.237497797408,95171.5555555556,14.43,8.41778483262682e-09,0.000801133676853056
+2013-10-07,"B","Mytilus_trossulus","Nucella_ostrina",0,0,0,NA,95171.5555555556,14.43,NA,NA
+2013-10-07,"B","Nucella_ostrina","Nucella_canaliculata",0,0,125,NA,160,14.43,NA,NA
+2013-10-07,"B","Nucella_ostrina","Nucella_ostrina",0,0,0,NA,160,14.43,NA,NA
+2013-10-07,"B","Pollicipes_polymerus","Nucella_canaliculata",0,0,125,NA,7.61904761904762,14.43,NA,NA
+2013-10-07,"B","Pollicipes_polymerus","Nucella_ostrina",0,0,0,NA,7.61904761904762,14.43,NA,NA
+2013-10-07,"B","Semibalanus_cariosus","Nucella_canaliculata",0,0,125,NA,0,14.43,NA,NA
+2013-10-07,"B","Semibalanus_cariosus","Nucella_ostrina",0,0,0,NA,0,14.43,NA,NA
+2013-10-07,"BB","Adula_californiensis","Nucella_canaliculata",0,0,2,NA,0,14.43,NA,NA
+2013-10-07,"BB","Adula_californiensis","Nucella_ostrina",0,0,6,NA,0,14.43,NA,NA
+2013-10-07,"BB","Balanus_glandula","Nucella_canaliculata",Inf,2,2,15.2405422572987,53738.6666666667,14.43,1.22099164958324e-06,0.0656144632597372
+2013-10-07,"BB","Balanus_glandula","Nucella_ostrina",0,0,6,NA,53738.6666666667,14.43,NA,NA
+2013-10-07,"BB","Chthamalus_dalli","Nucella_canaliculata",0,0,2,NA,21.3333333333333,14.43,NA,NA
+2013-10-07,"BB","Chthamalus_dalli","Nucella_ostrina",0,0,6,NA,21.3333333333333,14.43,NA,NA
+2013-10-07,"BB","Hiatella_arctica","Nucella_canaliculata",0,0,2,NA,0,14.43,NA,NA
+2013-10-07,"BB","Hiatella_arctica","Nucella_ostrina",0,0,6,NA,0,14.43,NA,NA
+2013-10-07,"BB","Limpets","Nucella_canaliculata",0,0,2,NA,144.761904761905,14.43,NA,NA
+2013-10-07,"BB","Limpets","Nucella_ostrina",0,0,6,NA,144.761904761905,14.43,NA,NA
+2013-10-07,"BB","Littorina_sitkana","Nucella_canaliculata",0,0,2,NA,716.190476190475,14.43,NA,NA
+2013-10-07,"BB","Littorina_sitkana","Nucella_ostrina",0,0,6,NA,716.190476190475,14.43,NA,NA
+2013-10-07,"BB","Modiolus_modiolus","Nucella_canaliculata",0,0,2,NA,0,14.43,NA,NA
+2013-10-07,"BB","Modiolus_modiolus","Nucella_ostrina",0,0,6,NA,0,14.43,NA,NA
+2013-10-07,"BB","Mytilus_californianus","Nucella_canaliculata",0,0,2,NA,0,14.43,NA,NA
+2013-10-07,"BB","Mytilus_californianus","Nucella_ostrina",0,0,6,NA,0,14.43,NA,NA
+2013-10-07,"BB","Mytilus_trossulus","Nucella_canaliculata",0,0,2,NA,2411.42857142857,14.43,NA,NA
+2013-10-07,"BB","Mytilus_trossulus","Nucella_ostrina",0,0,6,NA,2411.42857142857,14.43,NA,NA
+2013-10-07,"BB","Nucella_ostrina","Nucella_canaliculata",0,0,2,NA,19.047619047619,14.43,NA,NA
+2013-10-07,"BB","Nucella_ostrina","Nucella_ostrina",0,0,6,NA,19.047619047619,14.43,NA,NA
+2013-10-07,"BB","Pollicipes_polymerus","Nucella_canaliculata",0,0,2,NA,0,14.43,NA,NA
+2013-10-07,"BB","Pollicipes_polymerus","Nucella_ostrina",0,0,6,NA,0,14.43,NA,NA
+2013-10-07,"BB","Semibalanus_cariosus","Nucella_canaliculata",0,0,2,NA,0,14.43,NA,NA
+2013-10-07,"BB","Semibalanus_cariosus","Nucella_ostrina",0,0,6,NA,0,14.43,NA,NA
+2013-10-07,"BC","Adula_californiensis","Nucella_canaliculata",0,0,2,NA,0,14.43,NA,NA
+2013-10-07,"BC","Adula_californiensis","Nucella_ostrina",0,0,1,NA,0,14.43,NA,NA
+2013-10-07,"BC","Balanus_glandula","Nucella_canaliculata",1,1,2,16.5190949976554,78506.6666666667,14.43,7.7109380029223e-07,0.0605360039482753
+2013-10-07,"BC","Balanus_glandula","Nucella_ostrina",0,0,1,NA,78506.6666666667,14.43,NA,NA
+2013-10-07,"BC","Chthamalus_dalli","Nucella_canaliculata",0,0,2,NA,0,14.43,NA,NA
+2013-10-07,"BC","Chthamalus_dalli","Nucella_ostrina",0,0,1,NA,0,14.43,NA,NA
+2013-10-07,"BC","Hiatella_arctica","Nucella_canaliculata",0,0,2,NA,0,14.43,NA,NA
+2013-10-07,"BC","Hiatella_arctica","Nucella_ostrina",0,0,1,NA,0,14.43,NA,NA
+2013-10-07,"BC","Limpets","Nucella_canaliculata",0,0,2,NA,121.904761904762,14.43,NA,NA
+2013-10-07,"BC","Limpets","Nucella_ostrina",0,0,1,NA,121.904761904762,14.43,NA,NA
+2013-10-07,"BC","Littorina_sitkana","Nucella_canaliculata",0,0,2,NA,1062.85714285714,14.43,NA,NA
+2013-10-07,"BC","Littorina_sitkana","Nucella_ostrina",0,0,1,NA,1062.85714285714,14.43,NA,NA
+2013-10-07,"BC","Modiolus_modiolus","Nucella_canaliculata",0,0,2,NA,0,14.43,NA,NA
+2013-10-07,"BC","Modiolus_modiolus","Nucella_ostrina",0,0,1,NA,0,14.43,NA,NA
+2013-10-07,"BC","Mytilus_californianus","Nucella_canaliculata",0,0,2,NA,0,14.43,NA,NA
+2013-10-07,"BC","Mytilus_californianus","Nucella_ostrina",0,0,1,NA,0,14.43,NA,NA
+2013-10-07,"BC","Mytilus_trossulus","Nucella_canaliculata",0,0,2,NA,2681.90476190476,14.43,NA,NA
+2013-10-07,"BC","Mytilus_trossulus","Nucella_ostrina",0,0,1,NA,2681.90476190476,14.43,NA,NA
+2013-10-07,"BC","Nucella_ostrina","Nucella_canaliculata",0,0,2,NA,3.8095238095238,14.43,NA,NA
+2013-10-07,"BC","Nucella_ostrina","Nucella_ostrina",0,0,1,NA,3.8095238095238,14.43,NA,NA
+2013-10-07,"BC","Pollicipes_polymerus","Nucella_canaliculata",0,0,2,NA,0,14.43,NA,NA
+2013-10-07,"BC","Pollicipes_polymerus","Nucella_ostrina",0,0,1,NA,0,14.43,NA,NA
+2013-10-07,"BC","Semibalanus_cariosus","Nucella_canaliculata",0,0,2,NA,0,14.43,NA,NA
+2013-10-07,"BC","Semibalanus_cariosus","Nucella_ostrina",0,0,1,NA,0,14.43,NA,NA
+2013-10-07,"BD","Adula_californiensis","Nucella_canaliculata",0,0,1,NA,0,14.43,NA,NA
+2013-10-07,"BD","Adula_californiensis","Nucella_ostrina",0,0,0,NA,0,14.43,NA,NA
+2013-10-07,"BD","Balanus_glandula","Nucella_canaliculata",0,0,1,NA,117696,14.43,NA,NA
+2013-10-07,"BD","Balanus_glandula","Nucella_ostrina",0,0,0,NA,117696,14.43,NA,NA
+2013-10-07,"BD","Chthamalus_dalli","Nucella_canaliculata",0,0,1,NA,533.333333333333,14.43,NA,NA
+2013-10-07,"BD","Chthamalus_dalli","Nucella_ostrina",0,0,0,NA,533.333333333333,14.43,NA,NA
+2013-10-07,"BD","Hiatella_arctica","Nucella_canaliculata",0,0,1,NA,0,14.43,NA,NA
+2013-10-07,"BD","Hiatella_arctica","Nucella_ostrina",0,0,0,NA,0,14.43,NA,NA
+2013-10-07,"BD","Limpets","Nucella_canaliculata",0,0,1,NA,1321.90476190476,14.43,NA,NA
+2013-10-07,"BD","Limpets","Nucella_ostrina",0,0,0,NA,1321.90476190476,14.43,NA,NA
+2013-10-07,"BD","Littorina_sitkana","Nucella_canaliculata",0,0,1,NA,2247.61904761905,14.43,NA,NA
+2013-10-07,"BD","Littorina_sitkana","Nucella_ostrina",0,0,0,NA,2247.61904761905,14.43,NA,NA
+2013-10-07,"BD","Modiolus_modiolus","Nucella_canaliculata",0,0,1,NA,0,14.43,NA,NA
+2013-10-07,"BD","Modiolus_modiolus","Nucella_ostrina",0,0,0,NA,0,14.43,NA,NA
+2013-10-07,"BD","Mytilus_californianus","Nucella_canaliculata",0,0,1,NA,0,14.43,NA,NA
+2013-10-07,"BD","Mytilus_californianus","Nucella_ostrina",0,0,0,NA,0,14.43,NA,NA
+2013-10-07,"BD","Mytilus_trossulus","Nucella_canaliculata",0,0,1,NA,12910.4761904762,14.43,NA,NA
+2013-10-07,"BD","Mytilus_trossulus","Nucella_ostrina",0,0,0,NA,12910.4761904762,14.43,NA,NA
+2013-10-07,"BD","Nucella_ostrina","Nucella_canaliculata",0,0,1,NA,0,14.43,NA,NA
+2013-10-07,"BD","Nucella_ostrina","Nucella_ostrina",0,0,0,NA,0,14.43,NA,NA
+2013-10-07,"BD","Pollicipes_polymerus","Nucella_canaliculata",0,0,1,NA,15.2380952380952,14.43,NA,NA
+2013-10-07,"BD","Pollicipes_polymerus","Nucella_ostrina",0,0,0,NA,15.2380952380952,14.43,NA,NA
+2013-10-07,"BD","Semibalanus_cariosus","Nucella_canaliculata",0,0,1,NA,3.8095238095238,14.43,NA,NA
+2013-10-07,"BD","Semibalanus_cariosus","Nucella_ostrina",0,0,0,NA,3.8095238095238,14.43,NA,NA
+2013-10-07,"BE","Adula_californiensis","Nucella_canaliculata",0,0,3,NA,0,14.43,NA,NA
+2013-10-07,"BE","Adula_californiensis","Nucella_ostrina",0,0,8,NA,0,14.43,NA,NA
+2013-10-07,"BE","Balanus_glandula","Nucella_canaliculata",0.5,1,3,15.6252964763607,50368,14.43,6.35311960529188e-07,0.0319993928279341
+2013-10-07,"BE","Balanus_glandula","Nucella_ostrina",0,0,8,NA,50368,14.43,NA,NA
+2013-10-07,"BE","Chthamalus_dalli","Nucella_canaliculata",0,0,3,NA,0,14.43,NA,NA
+2013-10-07,"BE","Chthamalus_dalli","Nucella_ostrina",0,0,8,NA,0,14.43,NA,NA
+2013-10-07,"BE","Hiatella_arctica","Nucella_canaliculata",0,0,3,NA,0,14.43,NA,NA
+2013-10-07,"BE","Hiatella_arctica","Nucella_ostrina",0,0,8,NA,0,14.43,NA,NA
+2013-10-07,"BE","Limpets","Nucella_canaliculata",0,0,3,NA,217.142857142857,14.43,NA,NA
+2013-10-07,"BE","Limpets","Nucella_ostrina",0,0,8,NA,217.142857142857,14.43,NA,NA
+2013-10-07,"BE","Littorina_sitkana","Nucella_canaliculata",0,0,3,NA,1371.42857142857,14.43,NA,NA
+2013-10-07,"BE","Littorina_sitkana","Nucella_ostrina",0,0,8,NA,1371.42857142857,14.43,NA,NA
+2013-10-07,"BE","Modiolus_modiolus","Nucella_canaliculata",0,0,3,NA,0,14.43,NA,NA
+2013-10-07,"BE","Modiolus_modiolus","Nucella_ostrina",0,0,8,NA,0,14.43,NA,NA
+2013-10-07,"BE","Mytilus_californianus","Nucella_canaliculata",0,0,3,NA,0,14.43,NA,NA
+2013-10-07,"BE","Mytilus_californianus","Nucella_ostrina",0,0,8,NA,0,14.43,NA,NA
+2013-10-07,"BE","Mytilus_trossulus","Nucella_canaliculata",0,0,3,NA,342.857142857143,14.43,NA,NA
+2013-10-07,"BE","Mytilus_trossulus","Nucella_ostrina",0,0,8,NA,342.857142857143,14.43,NA,NA
+2013-10-07,"BE","Nucella_ostrina","Nucella_canaliculata",0,0,3,NA,0,14.43,NA,NA
+2013-10-07,"BE","Nucella_ostrina","Nucella_ostrina",0,0,8,NA,0,14.43,NA,NA
+2013-10-07,"BE","Pollicipes_polymerus","Nucella_canaliculata",0,0,3,NA,0,14.43,NA,NA
+2013-10-07,"BE","Pollicipes_polymerus","Nucella_ostrina",0,0,8,NA,0,14.43,NA,NA
+2013-10-07,"BE","Semibalanus_cariosus","Nucella_canaliculata",0,0,3,NA,0,14.43,NA,NA
+2013-10-07,"BE","Semibalanus_cariosus","Nucella_ostrina",0,0,8,NA,0,14.43,NA,NA
+2013-10-07,"BF","Adula_californiensis","Nucella_canaliculata",0,0,8,NA,0,14.43,NA,NA
+2013-10-07,"BF","Adula_californiensis","Nucella_ostrina",0,0,15,NA,0,14.43,NA,NA
+2013-10-07,"BF","Balanus_glandula","Nucella_canaliculata",0,0,8,NA,89702.4,14.43,NA,NA
+2013-10-07,"BF","Balanus_glandula","Nucella_ostrina",0,0,15,NA,89702.4,14.43,NA,NA
+2013-10-07,"BF","Chthamalus_dalli","Nucella_canaliculata",0,0,8,NA,0,14.43,NA,NA
+2013-10-07,"BF","Chthamalus_dalli","Nucella_ostrina",0,0,15,NA,0,14.43,NA,NA
+2013-10-07,"BF","Hiatella_arctica","Nucella_canaliculata",0,0,8,NA,0,14.43,NA,NA
+2013-10-07,"BF","Hiatella_arctica","Nucella_ostrina",0,0,15,NA,0,14.43,NA,NA
+2013-10-07,"BF","Limpets","Nucella_canaliculata",0,0,8,NA,194.285714285714,14.43,NA,NA
+2013-10-07,"BF","Limpets","Nucella_ostrina",0,0,15,NA,194.285714285714,14.43,NA,NA
+2013-10-07,"BF","Littorina_sitkana","Nucella_canaliculata",0,0,8,NA,1842.28571428572,14.43,NA,NA
+2013-10-07,"BF","Littorina_sitkana","Nucella_ostrina",0,0,15,NA,1842.28571428572,14.43,NA,NA
+2013-10-07,"BF","Modiolus_modiolus","Nucella_canaliculata",0,0,8,NA,0,14.43,NA,NA
+2013-10-07,"BF","Modiolus_modiolus","Nucella_ostrina",0,0,15,NA,0,14.43,NA,NA
+2013-10-07,"BF","Mytilus_californianus","Nucella_canaliculata",0,0,8,NA,0,14.43,NA,NA
+2013-10-07,"BF","Mytilus_californianus","Nucella_ostrina",0,0,15,NA,0,14.43,NA,NA
+2013-10-07,"BF","Mytilus_trossulus","Nucella_canaliculata",0,0,8,NA,2918.85714285713,14.43,NA,NA
+2013-10-07,"BF","Mytilus_trossulus","Nucella_ostrina",0,0,15,NA,2918.85714285713,14.43,NA,NA
+2013-10-07,"BF","Nucella_ostrina","Nucella_canaliculata",0,0,8,NA,0,14.43,NA,NA
+2013-10-07,"BF","Nucella_ostrina","Nucella_ostrina",0,0,15,NA,0,14.43,NA,NA
+2013-10-07,"BF","Pollicipes_polymerus","Nucella_canaliculata",0,0,8,NA,0,14.43,NA,NA
+2013-10-07,"BF","Pollicipes_polymerus","Nucella_ostrina",0,0,15,NA,0,14.43,NA,NA
+2013-10-07,"BF","Semibalanus_cariosus","Nucella_canaliculata",0,0,8,NA,0,14.43,NA,NA
+2013-10-07,"BF","Semibalanus_cariosus","Nucella_ostrina",0,0,15,NA,0,14.43,NA,NA
+2013-10-07,"C","Adula_californiensis","Nucella_canaliculata",0,0,24,NA,0,14.43,NA,NA
+2013-10-07,"C","Adula_californiensis","Nucella_ostrina",0,0,2,NA,0,14.43,NA,NA
+2013-10-07,"C","Balanus_glandula","Nucella_canaliculata",0.2,4,24,28.9683595177629,70640,14.43,9.77361895970194e-08,0.00690408443313345
+2013-10-07,"C","Balanus_glandula","Nucella_ostrina",1,1,2,20.3053909272515,70640,14.43,6.97168817947483e-07,0.0492480052998102
+2013-10-07,"C","Chthamalus_dalli","Nucella_canaliculata",0,0,24,NA,0,14.43,NA,NA
+2013-10-07,"C","Chthamalus_dalli","Nucella_ostrina",0,0,2,NA,0,14.43,NA,NA
+2013-10-07,"C","Hiatella_arctica","Nucella_canaliculata",0,0,24,NA,0,14.43,NA,NA
+2013-10-07,"C","Hiatella_arctica","Nucella_ostrina",0,0,2,NA,0,14.43,NA,NA
+2013-10-07,"C","Limpets","Nucella_canaliculata",0,0,24,NA,114.285714285714,14.43,NA,NA
+2013-10-07,"C","Limpets","Nucella_ostrina",0,0,2,NA,114.285714285714,14.43,NA,NA
+2013-10-07,"C","Littorina_sitkana","Nucella_canaliculata",0,0,24,NA,1345.71428571429,14.43,NA,NA
+2013-10-07,"C","Littorina_sitkana","Nucella_ostrina",0,0,2,NA,1345.71428571429,14.43,NA,NA
+2013-10-07,"C","Modiolus_modiolus","Nucella_canaliculata",0,0,24,NA,0,14.43,NA,NA
+2013-10-07,"C","Modiolus_modiolus","Nucella_ostrina",0,0,2,NA,0,14.43,NA,NA
+2013-10-07,"C","Mytilus_californianus","Nucella_canaliculata",0,0,24,NA,0,14.43,NA,NA
+2013-10-07,"C","Mytilus_californianus","Nucella_ostrina",0,0,2,NA,0,14.43,NA,NA
+2013-10-07,"C","Mytilus_trossulus","Nucella_canaliculata",0,0,24,NA,2562.85714285714,14.43,NA,NA
+2013-10-07,"C","Mytilus_trossulus","Nucella_ostrina",0,0,2,NA,2562.85714285714,14.43,NA,NA
+2013-10-07,"C","Nucella_ostrina","Nucella_canaliculata",0,0,24,NA,5.7142857142857,14.43,NA,NA
+2013-10-07,"C","Nucella_ostrina","Nucella_ostrina",0,0,2,NA,5.7142857142857,14.43,NA,NA
+2013-10-07,"C","Pollicipes_polymerus","Nucella_canaliculata",0,0,24,NA,0,14.43,NA,NA
+2013-10-07,"C","Pollicipes_polymerus","Nucella_ostrina",0,0,2,NA,0,14.43,NA,NA
+2013-10-07,"C","Semibalanus_cariosus","Nucella_canaliculata",0,0,24,NA,0,14.43,NA,NA
+2013-10-07,"C","Semibalanus_cariosus","Nucella_ostrina",0,0,2,NA,0,14.43,NA,NA
+2013-10-07,"D","Adula_californiensis","Nucella_canaliculata",0,0,3,NA,0,14.43,NA,NA
+2013-10-07,"D","Adula_californiensis","Nucella_ostrina",0,0,0,NA,0,14.43,NA,NA
+2013-10-07,"D","Balanus_glandula","Nucella_canaliculata",0,0,3,NA,80661.3333333333,14.43,NA,NA
+2013-10-07,"D","Balanus_glandula","Nucella_ostrina",0,0,0,NA,80661.3333333333,14.43,NA,NA
+2013-10-07,"D","Chthamalus_dalli","Nucella_canaliculata",0,0,3,NA,0,14.43,NA,NA
+2013-10-07,"D","Chthamalus_dalli","Nucella_ostrina",0,0,0,NA,0,14.43,NA,NA
+2013-10-07,"D","Hiatella_arctica","Nucella_canaliculata",0,0,3,NA,0,14.43,NA,NA
+2013-10-07,"D","Hiatella_arctica","Nucella_ostrina",0,0,0,NA,0,14.43,NA,NA
+2013-10-07,"D","Limpets","Nucella_canaliculata",0,0,3,NA,240,14.43,NA,NA
+2013-10-07,"D","Limpets","Nucella_ostrina",0,0,0,NA,240,14.43,NA,NA
+2013-10-07,"D","Littorina_sitkana","Nucella_canaliculata",0,0,3,NA,1371.42857142857,14.43,NA,NA
+2013-10-07,"D","Littorina_sitkana","Nucella_ostrina",0,0,0,NA,1371.42857142857,14.43,NA,NA
+2013-10-07,"D","Modiolus_modiolus","Nucella_canaliculata",0,0,3,NA,0,14.43,NA,NA
+2013-10-07,"D","Modiolus_modiolus","Nucella_ostrina",0,0,0,NA,0,14.43,NA,NA
+2013-10-07,"D","Mytilus_californianus","Nucella_canaliculata",0,0,3,NA,0,14.43,NA,NA
+2013-10-07,"D","Mytilus_californianus","Nucella_ostrina",0,0,0,NA,0,14.43,NA,NA
+2013-10-07,"D","Mytilus_trossulus","Nucella_canaliculata",0,0,3,NA,2647.61904761905,14.43,NA,NA
+2013-10-07,"D","Mytilus_trossulus","Nucella_ostrina",0,0,0,NA,2647.61904761905,14.43,NA,NA
+2013-10-07,"D","Nucella_ostrina","Nucella_canaliculata",0,0,3,NA,3.8095238095238,14.43,NA,NA
+2013-10-07,"D","Nucella_ostrina","Nucella_ostrina",0,0,0,NA,3.8095238095238,14.43,NA,NA
+2013-10-07,"D","Pollicipes_polymerus","Nucella_canaliculata",0,0,3,NA,0,14.43,NA,NA
+2013-10-07,"D","Pollicipes_polymerus","Nucella_ostrina",0,0,0,NA,0,14.43,NA,NA
+2013-10-07,"D","Semibalanus_cariosus","Nucella_canaliculata",0,0,3,NA,0,14.43,NA,NA
+2013-10-07,"D","Semibalanus_cariosus","Nucella_ostrina",0,0,0,NA,0,14.43,NA,NA
+2013-10-07,"E","Adula_californiensis","Nucella_canaliculata",0,0,21,NA,0,14.43,NA,NA
+2013-10-07,"E","Adula_californiensis","Nucella_ostrina",0,0,12,NA,0,14.43,NA,NA
+2013-10-07,"E","Balanus_glandula","Nucella_canaliculata",0.4,6,21,13.9486732035825,45269.3333333333,14.43,6.33465537622523e-07,0.0286765625778132
+2013-10-07,"E","Balanus_glandula","Nucella_ostrina",0.571428571428571,4,12,21.3160386353989,45269.3333333333,14.43,5.92176752187407e-07,0.0268074467870225
+2013-10-07,"E","Chthamalus_dalli","Nucella_canaliculata",0,0,21,NA,0,14.43,NA,NA
+2013-10-07,"E","Chthamalus_dalli","Nucella_ostrina",0,0,12,NA,0,14.43,NA,NA
+2013-10-07,"E","Hiatella_arctica","Nucella_canaliculata",0,0,21,NA,0,14.43,NA,NA
+2013-10-07,"E","Hiatella_arctica","Nucella_ostrina",0,0,12,NA,0,14.43,NA,NA
+2013-10-07,"E","Limpets","Nucella_canaliculata",0,0,21,NA,38.0952380952381,14.43,NA,NA
+2013-10-07,"E","Limpets","Nucella_ostrina",0,0,12,NA,38.0952380952381,14.43,NA,NA
+2013-10-07,"E","Littorina_sitkana","Nucella_canaliculata",0,0,21,NA,201.904761904762,14.43,NA,NA
+2013-10-07,"E","Littorina_sitkana","Nucella_ostrina",0,0,12,NA,201.904761904762,14.43,NA,NA
+2013-10-07,"E","Modiolus_modiolus","Nucella_canaliculata",0,0,21,NA,0,14.43,NA,NA
+2013-10-07,"E","Modiolus_modiolus","Nucella_ostrina",0,0,12,NA,0,14.43,NA,NA
+2013-10-07,"E","Mytilus_californianus","Nucella_canaliculata",0,0,21,NA,0,14.43,NA,NA
+2013-10-07,"E","Mytilus_californianus","Nucella_ostrina",0,0,12,NA,0,14.43,NA,NA
+2013-10-07,"E","Mytilus_trossulus","Nucella_canaliculata",0,0,21,NA,2780.95238095238,14.43,NA,NA
+2013-10-07,"E","Mytilus_trossulus","Nucella_ostrina",0.142857142857143,1,12,30.5340512225152,2780.95238095238,14.43,1.68237953880877e-06,0.00467861738411583
+2013-10-07,"E","Nucella_ostrina","Nucella_canaliculata",0,0,21,NA,0,14.43,NA,NA
+2013-10-07,"E","Nucella_ostrina","Nucella_ostrina",0,0,12,NA,0,14.43,NA,NA
+2013-10-07,"E","Pollicipes_polymerus","Nucella_canaliculata",0,0,21,NA,0,14.43,NA,NA
+2013-10-07,"E","Pollicipes_polymerus","Nucella_ostrina",0,0,12,NA,0,14.43,NA,NA
+2013-10-07,"E","Semibalanus_cariosus","Nucella_canaliculata",0,0,21,NA,0,14.43,NA,NA
+2013-10-07,"E","Semibalanus_cariosus","Nucella_ostrina",0,0,12,NA,0,14.43,NA,NA
+2013-10-07,"F","Adula_californiensis","Nucella_canaliculata",0,0,1,NA,0,14.43,NA,NA
+2013-10-07,"F","Adula_californiensis","Nucella_ostrina",0,0,2,NA,0,14.43,NA,NA
+2013-10-07,"F","Balanus_glandula","Nucella_canaliculata",0,0,1,NA,87392,14.43,NA,NA
+2013-10-07,"F","Balanus_glandula","Nucella_ostrina",1,1,2,7.23209514958886,87392,14.43,1.58221023739891e-06,0.138272517066766
+2013-10-07,"F","Chthamalus_dalli","Nucella_canaliculata",0,0,1,NA,48,14.43,NA,NA
+2013-10-07,"F","Chthamalus_dalli","Nucella_ostrina",0,0,2,NA,48,14.43,NA,NA
+2013-10-07,"F","Hiatella_arctica","Nucella_canaliculata",0,0,1,NA,0,14.43,NA,NA
+2013-10-07,"F","Hiatella_arctica","Nucella_ostrina",0,0,2,NA,0,14.43,NA,NA
+2013-10-07,"F","Limpets","Nucella_canaliculata",0,0,1,NA,2277.14285714286,14.43,NA,NA
+2013-10-07,"F","Limpets","Nucella_ostrina",0,0,2,NA,2277.14285714286,14.43,NA,NA
+2013-10-07,"F","Littorina_sitkana","Nucella_canaliculata",0,0,1,NA,1385.71428571429,14.43,NA,NA
+2013-10-07,"F","Littorina_sitkana","Nucella_ostrina",0,0,2,NA,1385.71428571429,14.43,NA,NA
+2013-10-07,"F","Modiolus_modiolus","Nucella_canaliculata",0,0,1,NA,0,14.43,NA,NA
+2013-10-07,"F","Modiolus_modiolus","Nucella_ostrina",0,0,2,NA,0,14.43,NA,NA
+2013-10-07,"F","Mytilus_californianus","Nucella_canaliculata",0,0,1,NA,0,14.43,NA,NA
+2013-10-07,"F","Mytilus_californianus","Nucella_ostrina",0,0,2,NA,0,14.43,NA,NA
+2013-10-07,"F","Mytilus_trossulus","Nucella_canaliculata",0,0,1,NA,2957.14285714286,14.43,NA,NA
+2013-10-07,"F","Mytilus_trossulus","Nucella_ostrina",0,0,2,NA,2957.14285714286,14.43,NA,NA
+2013-10-07,"F","Nucella_ostrina","Nucella_canaliculata",0,0,1,NA,0,14.43,NA,NA
+2013-10-07,"F","Nucella_ostrina","Nucella_ostrina",0,0,2,NA,0,14.43,NA,NA
+2013-10-07,"F","Pollicipes_polymerus","Nucella_canaliculata",0,0,1,NA,0,14.43,NA,NA
+2013-10-07,"F","Pollicipes_polymerus","Nucella_ostrina",0,0,2,NA,0,14.43,NA,NA
+2013-10-07,"F","Semibalanus_cariosus","Nucella_canaliculata",0,0,1,NA,0,14.43,NA,NA
+2013-10-07,"F","Semibalanus_cariosus","Nucella_ostrina",0,0,2,NA,0,14.43,NA,NA
+2013-10-07,"G","Adula_californiensis","Nucella_canaliculata",0,0,22,NA,0,14.43,NA,NA
+2013-10-07,"G","Adula_californiensis","Nucella_ostrina",0,0,14,NA,0,14.43,NA,NA
+2013-10-07,"G","Balanus_glandula","Nucella_canaliculata",0.294117647058824,5,22,18.2047955338224,37610.6666666667,14.43,4.29560407652786e-07,0.0161560533054264
+2013-10-07,"G","Balanus_glandula","Nucella_ostrina",0.272727272727273,3,14,14.943822803598,37610.6666666667,14.43,4.85239144895665e-07,0.0182501677322892
+2013-10-07,"G","Chthamalus_dalli","Nucella_canaliculata",0,0,22,NA,14016,14.43,NA,NA
+2013-10-07,"G","Chthamalus_dalli","Nucella_ostrina",0,0,14,NA,14016,14.43,NA,NA
+2013-10-07,"G","Hiatella_arctica","Nucella_canaliculata",0,0,22,NA,0,14.43,NA,NA
+2013-10-07,"G","Hiatella_arctica","Nucella_ostrina",0,0,14,NA,0,14.43,NA,NA
+2013-10-07,"G","Limpets","Nucella_canaliculata",0,0,22,NA,697.142857142857,14.43,NA,NA
+2013-10-07,"G","Limpets","Nucella_ostrina",0,0,14,NA,697.142857142857,14.43,NA,NA
+2013-10-07,"G","Littorina_sitkana","Nucella_canaliculata",0,0,22,NA,1032.38095238095,14.43,NA,NA
+2013-10-07,"G","Littorina_sitkana","Nucella_ostrina",0,0,14,NA,1032.38095238095,14.43,NA,NA
+2013-10-07,"G","Modiolus_modiolus","Nucella_canaliculata",0,0,22,NA,0,14.43,NA,NA
+2013-10-07,"G","Modiolus_modiolus","Nucella_ostrina",0,0,14,NA,0,14.43,NA,NA
+2013-10-07,"G","Mytilus_californianus","Nucella_canaliculata",0,0,22,NA,21.3333333333333,14.43,NA,NA
+2013-10-07,"G","Mytilus_californianus","Nucella_ostrina",0,0,14,NA,21.3333333333333,14.43,NA,NA
+2013-10-07,"G","Mytilus_trossulus","Nucella_canaliculata",0,0,22,NA,38034.2857142857,14.43,NA,NA
+2013-10-07,"G","Mytilus_trossulus","Nucella_ostrina",0,0,14,NA,38034.2857142857,14.43,NA,NA
+2013-10-07,"G","Nucella_ostrina","Nucella_canaliculata",0,0,22,NA,11.4285714285714,14.43,NA,NA
+2013-10-07,"G","Nucella_ostrina","Nucella_ostrina",0,0,14,NA,11.4285714285714,14.43,NA,NA
+2013-10-07,"G","Pollicipes_polymerus","Nucella_canaliculata",0,0,22,NA,0,14.43,NA,NA
+2013-10-07,"G","Pollicipes_polymerus","Nucella_ostrina",0,0,14,NA,0,14.43,NA,NA
+2013-10-07,"G","Semibalanus_cariosus","Nucella_canaliculata",0,0,22,NA,0,14.43,NA,NA
+2013-10-07,"G","Semibalanus_cariosus","Nucella_ostrina",0,0,14,NA,0,14.43,NA,NA
+2013-11-05,"A","Adula_californiensis","Nucella_canaliculata",0,0,3,NA,0,9.95,NA,NA
+2013-11-05,"A","Adula_californiensis","Nucella_ostrina",0,0,0,NA,0,9.95,NA,NA
+2013-11-05,"A","Balanus_glandula","Nucella_canaliculata",0,0,3,NA,52010.6666666667,9.95,NA,NA
+2013-11-05,"A","Balanus_glandula","Nucella_ostrina",0,0,0,NA,52010.6666666667,9.95,NA,NA
+2013-11-05,"A","Chthamalus_dalli","Nucella_canaliculata",0,0,3,NA,0,9.95,NA,NA
+2013-11-05,"A","Chthamalus_dalli","Nucella_ostrina",0,0,0,NA,0,9.95,NA,NA
+2013-11-05,"A","Hiatella_arctica","Nucella_canaliculata",0,0,3,NA,0,9.95,NA,NA
+2013-11-05,"A","Hiatella_arctica","Nucella_ostrina",0,0,0,NA,0,9.95,NA,NA
+2013-11-05,"A","Limpets","Nucella_canaliculata",0,0,3,NA,415.238095238095,9.95,NA,NA
+2013-11-05,"A","Limpets","Nucella_ostrina",0,0,0,NA,415.238095238095,9.95,NA,NA
+2013-11-05,"A","Littorina_sitkana","Nucella_canaliculata",0,0,3,NA,1127.61904761905,9.95,NA,NA
+2013-11-05,"A","Littorina_sitkana","Nucella_ostrina",0,0,0,NA,1127.61904761905,9.95,NA,NA
+2013-11-05,"A","Modiolus_modiolus","Nucella_canaliculata",0,0,3,NA,0,9.95,NA,NA
+2013-11-05,"A","Modiolus_modiolus","Nucella_ostrina",0,0,0,NA,0,9.95,NA,NA
+2013-11-05,"A","Mytilus_californianus","Nucella_canaliculata",0,0,3,NA,0,9.95,NA,NA
+2013-11-05,"A","Mytilus_californianus","Nucella_ostrina",0,0,0,NA,0,9.95,NA,NA
+2013-11-05,"A","Mytilus_trossulus","Nucella_canaliculata",0,0,3,NA,8811.42857142858,9.95,NA,NA
+2013-11-05,"A","Mytilus_trossulus","Nucella_ostrina",0,0,0,NA,8811.42857142858,9.95,NA,NA
+2013-11-05,"A","Nucella_ostrina","Nucella_canaliculata",0,0,3,NA,3.8095238095238,9.95,NA,NA
+2013-11-05,"A","Nucella_ostrina","Nucella_ostrina",0,0,0,NA,3.8095238095238,9.95,NA,NA
+2013-11-05,"A","Pollicipes_polymerus","Nucella_canaliculata",0,0,3,NA,0,9.95,NA,NA
+2013-11-05,"A","Pollicipes_polymerus","Nucella_ostrina",0,0,0,NA,0,9.95,NA,NA
+2013-11-05,"A","Semibalanus_cariosus","Nucella_canaliculata",0,0,3,NA,0,9.95,NA,NA
+2013-11-05,"A","Semibalanus_cariosus","Nucella_ostrina",0,0,0,NA,0,9.95,NA,NA
+2013-11-05,"AB","Adula_californiensis","Nucella_canaliculata",0,0,13,NA,0,9.95,NA,NA
+2013-11-05,"AB","Adula_californiensis","Nucella_ostrina",0,0,2,NA,0,9.95,NA,NA
+2013-11-05,"AB","Balanus_glandula","Nucella_canaliculata",0.0833333333333333,1,13,25.9752938634899,90474.6666666667,9.95,3.54593926500371e-08,0.00320817673021456
+2013-11-05,"AB","Balanus_glandula","Nucella_ostrina",0,0,2,NA,90474.6666666667,9.95,NA,NA
+2013-11-05,"AB","Chthamalus_dalli","Nucella_canaliculata",0,0,13,NA,192,9.95,NA,NA
+2013-11-05,"AB","Chthamalus_dalli","Nucella_ostrina",0,0,2,NA,192,9.95,NA,NA
+2013-11-05,"AB","Hiatella_arctica","Nucella_canaliculata",0,0,13,NA,0,9.95,NA,NA
+2013-11-05,"AB","Hiatella_arctica","Nucella_ostrina",0,0,2,NA,0,9.95,NA,NA
+2013-11-05,"AB","Limpets","Nucella_canaliculata",0,0,13,NA,1828.57142857143,9.95,NA,NA
+2013-11-05,"AB","Limpets","Nucella_ostrina",0,0,2,NA,1828.57142857143,9.95,NA,NA
+2013-11-05,"AB","Littorina_sitkana","Nucella_canaliculata",0,0,13,NA,1611.42857142857,9.95,NA,NA
+2013-11-05,"AB","Littorina_sitkana","Nucella_ostrina",0,0,2,NA,1611.42857142857,9.95,NA,NA
+2013-11-05,"AB","Modiolus_modiolus","Nucella_canaliculata",0,0,13,NA,0,9.95,NA,NA
+2013-11-05,"AB","Modiolus_modiolus","Nucella_ostrina",0,0,2,NA,0,9.95,NA,NA
+2013-11-05,"AB","Mytilus_californianus","Nucella_canaliculata",0,0,13,NA,0,9.95,NA,NA
+2013-11-05,"AB","Mytilus_californianus","Nucella_ostrina",0,0,2,NA,0,9.95,NA,NA
+2013-11-05,"AB","Mytilus_trossulus","Nucella_canaliculata",0,0,13,NA,12561.5238095238,9.95,NA,NA
+2013-11-05,"AB","Mytilus_trossulus","Nucella_ostrina",0,0,2,NA,12561.5238095238,9.95,NA,NA
+2013-11-05,"AB","Nucella_ostrina","Nucella_canaliculata",0,0,13,NA,11.4285714285714,9.95,NA,NA
+2013-11-05,"AB","Nucella_ostrina","Nucella_ostrina",0,0,2,NA,11.4285714285714,9.95,NA,NA
+2013-11-05,"AB","Pollicipes_polymerus","Nucella_canaliculata",0,0,13,NA,0,9.95,NA,NA
+2013-11-05,"AB","Pollicipes_polymerus","Nucella_ostrina",0,0,2,NA,0,9.95,NA,NA
+2013-11-05,"AB","Semibalanus_cariosus","Nucella_canaliculata",0,0,13,NA,0,9.95,NA,NA
+2013-11-05,"AB","Semibalanus_cariosus","Nucella_ostrina",0,0,2,NA,0,9.95,NA,NA
+2013-11-05,"AC","Adula_californiensis","Nucella_canaliculata",0,0,5,NA,0,9.95,NA,NA
+2013-11-05,"AC","Adula_californiensis","Nucella_ostrina",0,0,0,NA,0,9.95,NA,NA
+2013-11-05,"AC","Balanus_glandula","Nucella_canaliculata",0,0,5,NA,63712,9.95,NA,NA
+2013-11-05,"AC","Balanus_glandula","Nucella_ostrina",0,0,0,NA,63712,9.95,NA,NA
+2013-11-05,"AC","Chthamalus_dalli","Nucella_canaliculata",0,0,5,NA,1472,9.95,NA,NA
+2013-11-05,"AC","Chthamalus_dalli","Nucella_ostrina",0,0,0,NA,1472,9.95,NA,NA
+2013-11-05,"AC","Hiatella_arctica","Nucella_canaliculata",0,0,5,NA,0,9.95,NA,NA
+2013-11-05,"AC","Hiatella_arctica","Nucella_ostrina",0,0,0,NA,0,9.95,NA,NA
+2013-11-05,"AC","Limpets","Nucella_canaliculata",0,0,5,NA,194.285714285714,9.95,NA,NA
+2013-11-05,"AC","Limpets","Nucella_ostrina",0,0,0,NA,194.285714285714,9.95,NA,NA
+2013-11-05,"AC","Littorina_sitkana","Nucella_canaliculata",0,0,5,NA,3074.28571428572,9.95,NA,NA
+2013-11-05,"AC","Littorina_sitkana","Nucella_ostrina",0,0,0,NA,3074.28571428572,9.95,NA,NA
+2013-11-05,"AC","Modiolus_modiolus","Nucella_canaliculata",0,0,5,NA,0,9.95,NA,NA
+2013-11-05,"AC","Modiolus_modiolus","Nucella_ostrina",0,0,0,NA,0,9.95,NA,NA
+2013-11-05,"AC","Mytilus_californianus","Nucella_canaliculata",0,0,5,NA,0,9.95,NA,NA
+2013-11-05,"AC","Mytilus_californianus","Nucella_ostrina",0,0,0,NA,0,9.95,NA,NA
+2013-11-05,"AC","Mytilus_trossulus","Nucella_canaliculata",0,0,5,NA,3020,9.95,NA,NA
+2013-11-05,"AC","Mytilus_trossulus","Nucella_ostrina",0,0,0,NA,3020,9.95,NA,NA
+2013-11-05,"AC","Nucella_ostrina","Nucella_canaliculata",0,0,5,NA,5.71428571428573,9.95,NA,NA
+2013-11-05,"AC","Nucella_ostrina","Nucella_ostrina",0,0,0,NA,5.71428571428573,9.95,NA,NA
+2013-11-05,"AC","Pollicipes_polymerus","Nucella_canaliculata",0,0,5,NA,0,9.95,NA,NA
+2013-11-05,"AC","Pollicipes_polymerus","Nucella_ostrina",0,0,0,NA,0,9.95,NA,NA
+2013-11-05,"AC","Semibalanus_cariosus","Nucella_canaliculata",0,0,5,NA,0,9.95,NA,NA
+2013-11-05,"AC","Semibalanus_cariosus","Nucella_ostrina",0,0,0,NA,0,9.95,NA,NA
+2013-11-05,"AD","Adula_californiensis","Nucella_canaliculata",0,0,43,NA,0,9.95,NA,NA
+2013-11-05,"AD","Adula_californiensis","Nucella_ostrina",0,0,3,NA,0,9.95,NA,NA
+2013-11-05,"AD","Balanus_glandula","Nucella_canaliculata",0,0,43,NA,73685.3333333333,9.95,NA,NA
+2013-11-05,"AD","Balanus_glandula","Nucella_ostrina",0,0,3,NA,73685.3333333333,9.95,NA,NA
+2013-11-05,"AD","Chthamalus_dalli","Nucella_canaliculata",0,0,43,NA,576,9.95,NA,NA
+2013-11-05,"AD","Chthamalus_dalli","Nucella_ostrina",0,0,3,NA,576,9.95,NA,NA
+2013-11-05,"AD","Hiatella_arctica","Nucella_canaliculata",0,0,43,NA,0,9.95,NA,NA
+2013-11-05,"AD","Hiatella_arctica","Nucella_ostrina",0,0,3,NA,0,9.95,NA,NA
+2013-11-05,"AD","Limpets","Nucella_canaliculata",0,0,43,NA,1043.80952380952,9.95,NA,NA
+2013-11-05,"AD","Limpets","Nucella_ostrina",0,0,3,NA,1043.80952380952,9.95,NA,NA
+2013-11-05,"AD","Littorina_sitkana","Nucella_canaliculata",0,0,43,NA,2175.2380952381,9.95,NA,NA
+2013-11-05,"AD","Littorina_sitkana","Nucella_ostrina",0,0,3,NA,2175.2380952381,9.95,NA,NA
+2013-11-05,"AD","Modiolus_modiolus","Nucella_canaliculata",0,0,43,NA,0,9.95,NA,NA
+2013-11-05,"AD","Modiolus_modiolus","Nucella_ostrina",0,0,3,NA,0,9.95,NA,NA
+2013-11-05,"AD","Mytilus_californianus","Nucella_canaliculata",0,0,43,NA,0,9.95,NA,NA
+2013-11-05,"AD","Mytilus_californianus","Nucella_ostrina",0,0,3,NA,0,9.95,NA,NA
+2013-11-05,"AD","Mytilus_trossulus","Nucella_canaliculata",0.075,3,43,44.6958112732829,12764.9523809524,9.95,1.31454434067143e-07,0.00167800959113212
+2013-11-05,"AD","Mytilus_trossulus","Nucella_ostrina",0,0,3,NA,12764.9523809524,9.95,NA,NA
+2013-11-05,"AD","Nucella_ostrina","Nucella_canaliculata",0,0,43,NA,3.8095238095238,9.95,NA,NA
+2013-11-05,"AD","Nucella_ostrina","Nucella_ostrina",0,0,3,NA,3.8095238095238,9.95,NA,NA
+2013-11-05,"AD","Pollicipes_polymerus","Nucella_canaliculata",0,0,43,NA,0,9.95,NA,NA
+2013-11-05,"AD","Pollicipes_polymerus","Nucella_ostrina",0,0,3,NA,0,9.95,NA,NA
+2013-11-05,"AD","Semibalanus_cariosus","Nucella_canaliculata",0,0,43,NA,0,9.95,NA,NA
+2013-11-05,"AD","Semibalanus_cariosus","Nucella_ostrina",0,0,3,NA,0,9.95,NA,NA
+2013-11-05,"AE","Adula_californiensis","Nucella_canaliculata",0,0,2,NA,0,9.95,NA,NA
+2013-11-05,"AE","Adula_californiensis","Nucella_ostrina",0,0,0,NA,0,9.95,NA,NA
+2013-11-05,"AE","Balanus_glandula","Nucella_canaliculata",0,0,2,NA,91200,9.95,NA,NA
+2013-11-05,"AE","Balanus_glandula","Nucella_ostrina",0,0,0,NA,91200,9.95,NA,NA
+2013-11-05,"AE","Chthamalus_dalli","Nucella_canaliculata",0,0,2,NA,64,9.95,NA,NA
+2013-11-05,"AE","Chthamalus_dalli","Nucella_ostrina",0,0,0,NA,64,9.95,NA,NA
+2013-11-05,"AE","Hiatella_arctica","Nucella_canaliculata",0,0,2,NA,0,9.95,NA,NA
+2013-11-05,"AE","Hiatella_arctica","Nucella_ostrina",0,0,0,NA,0,9.95,NA,NA
+2013-11-05,"AE","Limpets","Nucella_canaliculata",0,0,2,NA,853.333333333331,9.95,NA,NA
+2013-11-05,"AE","Limpets","Nucella_ostrina",0,0,0,NA,853.333333333331,9.95,NA,NA
+2013-11-05,"AE","Littorina_sitkana","Nucella_canaliculata",0,0,2,NA,2026.66666666666,9.95,NA,NA
+2013-11-05,"AE","Littorina_sitkana","Nucella_ostrina",0,0,0,NA,2026.66666666666,9.95,NA,NA
+2013-11-05,"AE","Modiolus_modiolus","Nucella_canaliculata",0,0,2,NA,0,9.95,NA,NA
+2013-11-05,"AE","Modiolus_modiolus","Nucella_ostrina",0,0,0,NA,0,9.95,NA,NA
+2013-11-05,"AE","Mytilus_californianus","Nucella_canaliculata",0,0,2,NA,0,9.95,NA,NA
+2013-11-05,"AE","Mytilus_californianus","Nucella_ostrina",0,0,0,NA,0,9.95,NA,NA
+2013-11-05,"AE","Mytilus_trossulus","Nucella_canaliculata",0,0,2,NA,7801.14285714286,9.95,NA,NA
+2013-11-05,"AE","Mytilus_trossulus","Nucella_ostrina",0,0,0,NA,7801.14285714286,9.95,NA,NA
+2013-11-05,"AE","Nucella_ostrina","Nucella_canaliculata",0,0,2,NA,0,9.95,NA,NA
+2013-11-05,"AE","Nucella_ostrina","Nucella_ostrina",0,0,0,NA,0,9.95,NA,NA
+2013-11-05,"AE","Pollicipes_polymerus","Nucella_canaliculata",0,0,2,NA,0,9.95,NA,NA
+2013-11-05,"AE","Pollicipes_polymerus","Nucella_ostrina",0,0,0,NA,0,9.95,NA,NA
+2013-11-05,"AE","Semibalanus_cariosus","Nucella_canaliculata",0,0,2,NA,0,9.95,NA,NA
+2013-11-05,"AE","Semibalanus_cariosus","Nucella_ostrina",0,0,0,NA,0,9.95,NA,NA
+2013-11-05,"AF","Adula_californiensis","Nucella_canaliculata",0,0,11,NA,0,9.95,NA,NA
+2013-11-05,"AF","Adula_californiensis","Nucella_ostrina",0,0,10,NA,0,9.95,NA,NA
+2013-11-05,"AF","Balanus_glandula","Nucella_canaliculata",0.1,1,11,26.2720055829797,39040,9.95,9.74982820304938e-08,0.00380633293047048
+2013-11-05,"AF","Balanus_glandula","Nucella_ostrina",0.25,2,10,25.3589980834005,39040,9.95,2.52521353703714e-07,0.00985843364859298
+2013-11-05,"AF","Chthamalus_dalli","Nucella_canaliculata",0,0,11,NA,1386.66666666667,9.95,NA,NA
+2013-11-05,"AF","Chthamalus_dalli","Nucella_ostrina",0,0,10,NA,1386.66666666667,9.95,NA,NA
+2013-11-05,"AF","Hiatella_arctica","Nucella_canaliculata",0,0,11,NA,0,9.95,NA,NA
+2013-11-05,"AF","Hiatella_arctica","Nucella_ostrina",0,0,10,NA,0,9.95,NA,NA
+2013-11-05,"AF","Limpets","Nucella_canaliculata",0,0,11,NA,495.238095238095,9.95,NA,NA
+2013-11-05,"AF","Limpets","Nucella_ostrina",0,0,10,NA,495.238095238095,9.95,NA,NA
+2013-11-05,"AF","Littorina_sitkana","Nucella_canaliculata",0,0,11,NA,1257.14285714286,9.95,NA,NA
+2013-11-05,"AF","Littorina_sitkana","Nucella_ostrina",0,0,10,NA,1257.14285714286,9.95,NA,NA
+2013-11-05,"AF","Modiolus_modiolus","Nucella_canaliculata",0,0,11,NA,0,9.95,NA,NA
+2013-11-05,"AF","Modiolus_modiolus","Nucella_ostrina",0,0,10,NA,0,9.95,NA,NA
+2013-11-05,"AF","Mytilus_californianus","Nucella_canaliculata",0,0,11,NA,0,9.95,NA,NA
+2013-11-05,"AF","Mytilus_californianus","Nucella_ostrina",0,0,10,NA,0,9.95,NA,NA
+2013-11-05,"AF","Mytilus_trossulus","Nucella_canaliculata",0,0,11,NA,9013.33333333333,9.95,NA,NA
+2013-11-05,"AF","Mytilus_trossulus","Nucella_ostrina",0,0,10,NA,9013.33333333333,9.95,NA,NA
+2013-11-05,"AF","Nucella_ostrina","Nucella_canaliculata",0,0,11,NA,3.8095238095238,9.95,NA,NA
+2013-11-05,"AF","Nucella_ostrina","Nucella_ostrina",0,0,10,NA,3.8095238095238,9.95,NA,NA
+2013-11-05,"AF","Pollicipes_polymerus","Nucella_canaliculata",0,0,11,NA,0,9.95,NA,NA
+2013-11-05,"AF","Pollicipes_polymerus","Nucella_ostrina",0,0,10,NA,0,9.95,NA,NA
+2013-11-05,"AF","Semibalanus_cariosus","Nucella_canaliculata",0,0,11,NA,0,9.95,NA,NA
+2013-11-05,"AF","Semibalanus_cariosus","Nucella_ostrina",0,0,10,NA,0,9.95,NA,NA
+2013-11-05,"AG","Adula_californiensis","Nucella_canaliculata",0,0,3,NA,0,9.95,NA,NA
+2013-11-05,"AG","Adula_californiensis","Nucella_ostrina",0,0,11,NA,0,9.95,NA,NA
+2013-11-05,"AG","Balanus_glandula","Nucella_canaliculata",0,0,3,NA,65894.4,9.95,NA,NA
+2013-11-05,"AG","Balanus_glandula","Nucella_ostrina",0,0,11,NA,65894.4,9.95,NA,NA
+2013-11-05,"AG","Chthamalus_dalli","Nucella_canaliculata",0,0,3,NA,499.2,9.95,NA,NA
+2013-11-05,"AG","Chthamalus_dalli","Nucella_ostrina",0,0,11,NA,499.2,9.95,NA,NA
+2013-11-05,"AG","Hiatella_arctica","Nucella_canaliculata",0,0,3,NA,0,9.95,NA,NA
+2013-11-05,"AG","Hiatella_arctica","Nucella_ostrina",0,0,11,NA,0,9.95,NA,NA
+2013-11-05,"AG","Limpets","Nucella_canaliculata",0,0,3,NA,180.571428571428,9.95,NA,NA
+2013-11-05,"AG","Limpets","Nucella_ostrina",0,0,11,NA,180.571428571428,9.95,NA,NA
+2013-11-05,"AG","Littorina_sitkana","Nucella_canaliculata",0,0,3,NA,644.571428571428,9.95,NA,NA
+2013-11-05,"AG","Littorina_sitkana","Nucella_ostrina",0,0,11,NA,644.571428571428,9.95,NA,NA
+2013-11-05,"AG","Modiolus_modiolus","Nucella_canaliculata",0,0,3,NA,0,9.95,NA,NA
+2013-11-05,"AG","Modiolus_modiolus","Nucella_ostrina",0,0,11,NA,0,9.95,NA,NA
+2013-11-05,"AG","Mytilus_californianus","Nucella_canaliculata",0,0,3,NA,0,9.95,NA,NA
+2013-11-05,"AG","Mytilus_californianus","Nucella_ostrina",0,0,11,NA,0,9.95,NA,NA
+2013-11-05,"AG","Mytilus_trossulus","Nucella_canaliculata",0,0,3,NA,2304,9.95,NA,NA
+2013-11-05,"AG","Mytilus_trossulus","Nucella_ostrina",0,0,11,NA,2304,9.95,NA,NA
+2013-11-05,"AG","Nucella_ostrina","Nucella_canaliculata",0,0,3,NA,6.85714285714286,9.95,NA,NA
+2013-11-05,"AG","Nucella_ostrina","Nucella_ostrina",0,0,11,NA,6.85714285714286,9.95,NA,NA
+2013-11-05,"AG","Pollicipes_polymerus","Nucella_canaliculata",0,0,3,NA,0,9.95,NA,NA
+2013-11-05,"AG","Pollicipes_polymerus","Nucella_ostrina",0,0,11,NA,0,9.95,NA,NA
+2013-11-05,"AG","Semibalanus_cariosus","Nucella_canaliculata",0,0,3,NA,0,9.95,NA,NA
+2013-11-05,"AG","Semibalanus_cariosus","Nucella_ostrina",0,0,11,NA,0,9.95,NA,NA
+2013-11-05,"B","Adula_californiensis","Nucella_canaliculata",0,0,43,NA,0,9.95,NA,NA
+2013-11-05,"B","Adula_californiensis","Nucella_ostrina",0,0,4,NA,0,9.95,NA,NA
+2013-11-05,"B","Balanus_glandula","Nucella_canaliculata",0.025,1,43,14.7043556073948,10343.1111111111,9.95,1.64377670494498e-07,0.00170017651011021
+2013-11-05,"B","Balanus_glandula","Nucella_ostrina",0.333333333333333,1,4,19.3784148165447,10343.1111111111,9.95,1.66306531863666e-06,0.0172012693756944
+2013-11-05,"B","Chthamalus_dalli","Nucella_canaliculata",0,0,43,NA,0,9.95,NA,NA
+2013-11-05,"B","Chthamalus_dalli","Nucella_ostrina",0,0,4,NA,0,9.95,NA,NA
+2013-11-05,"B","Hiatella_arctica","Nucella_canaliculata",0,0,43,NA,0,9.95,NA,NA
+2013-11-05,"B","Hiatella_arctica","Nucella_ostrina",0,0,4,NA,0,9.95,NA,NA
+2013-11-05,"B","Limpets","Nucella_canaliculata",0,0,43,NA,838.095238095238,9.95,NA,NA
+2013-11-05,"B","Limpets","Nucella_ostrina",0,0,4,NA,838.095238095238,9.95,NA,NA
+2013-11-05,"B","Littorina_sitkana","Nucella_canaliculata",0,0,43,NA,83.8095238095237,9.95,NA,NA
+2013-11-05,"B","Littorina_sitkana","Nucella_ostrina",0,0,4,NA,83.8095238095237,9.95,NA,NA
+2013-11-05,"B","Modiolus_modiolus","Nucella_canaliculata",0,0,43,NA,0,9.95,NA,NA
+2013-11-05,"B","Modiolus_modiolus","Nucella_ostrina",0,0,4,NA,0,9.95,NA,NA
+2013-11-05,"B","Mytilus_californianus","Nucella_canaliculata",0,0,43,NA,5.07936507936508,9.95,NA,NA
+2013-11-05,"B","Mytilus_californianus","Nucella_ostrina",0,0,4,NA,5.07936507936508,9.95,NA,NA
+2013-11-05,"B","Mytilus_trossulus","Nucella_canaliculata",0.05,2,43,35.0522771532938,4040.63492063492,9.95,3.5302393745868e-07,0.00142644084951558
+2013-11-05,"B","Mytilus_trossulus","Nucella_ostrina",0,0,4,NA,4040.63492063492,9.95,NA,NA
+2013-11-05,"B","Nucella_ostrina","Nucella_canaliculata",0,0,43,NA,2.53968253968253,9.95,NA,NA
+2013-11-05,"B","Nucella_ostrina","Nucella_ostrina",0,0,4,NA,2.53968253968253,9.95,NA,NA
+2013-11-05,"B","Pollicipes_polymerus","Nucella_canaliculata",0,0,43,NA,8.88888888888889,9.95,NA,NA
+2013-11-05,"B","Pollicipes_polymerus","Nucella_ostrina",0,0,4,NA,8.88888888888889,9.95,NA,NA
+2013-11-05,"B","Semibalanus_cariosus","Nucella_canaliculata",0,0,43,NA,0,9.95,NA,NA
+2013-11-05,"B","Semibalanus_cariosus","Nucella_ostrina",0,0,4,NA,0,9.95,NA,NA
+2013-11-05,"BB","Adula_californiensis","Nucella_canaliculata",0,0,2,NA,0,9.95,NA,NA
+2013-11-05,"BB","Adula_californiensis","Nucella_ostrina",0,0,4,NA,0,9.95,NA,NA
+2013-11-05,"BB","Balanus_glandula","Nucella_canaliculata",0,0,2,NA,54954.6666666667,9.95,NA,NA
+2013-11-05,"BB","Balanus_glandula","Nucella_ostrina",0,0,4,NA,54954.6666666667,9.95,NA,NA
+2013-11-05,"BB","Chthamalus_dalli","Nucella_canaliculata",0,0,2,NA,554.666666666667,9.95,NA,NA
+2013-11-05,"BB","Chthamalus_dalli","Nucella_ostrina",0,0,4,NA,554.666666666667,9.95,NA,NA
+2013-11-05,"BB","Hiatella_arctica","Nucella_canaliculata",0,0,2,NA,0,9.95,NA,NA
+2013-11-05,"BB","Hiatella_arctica","Nucella_ostrina",0,0,4,NA,0,9.95,NA,NA
+2013-11-05,"BB","Limpets","Nucella_canaliculata",0,0,2,NA,125.714285714286,9.95,NA,NA
+2013-11-05,"BB","Limpets","Nucella_ostrina",0,0,4,NA,125.714285714286,9.95,NA,NA
+2013-11-05,"BB","Littorina_sitkana","Nucella_canaliculata",0,0,2,NA,689.52380952381,9.95,NA,NA
+2013-11-05,"BB","Littorina_sitkana","Nucella_ostrina",0,0,4,NA,689.52380952381,9.95,NA,NA
+2013-11-05,"BB","Modiolus_modiolus","Nucella_canaliculata",0,0,2,NA,0,9.95,NA,NA
+2013-11-05,"BB","Modiolus_modiolus","Nucella_ostrina",0,0,4,NA,0,9.95,NA,NA
+2013-11-05,"BB","Mytilus_californianus","Nucella_canaliculata",0,0,2,NA,0,9.95,NA,NA
+2013-11-05,"BB","Mytilus_californianus","Nucella_ostrina",0,0,4,NA,0,9.95,NA,NA
+2013-11-05,"BB","Mytilus_trossulus","Nucella_canaliculata",0,0,2,NA,3078.09523809524,9.95,NA,NA
+2013-11-05,"BB","Mytilus_trossulus","Nucella_ostrina",0,0,4,NA,3078.09523809524,9.95,NA,NA
+2013-11-05,"BB","Nucella_ostrina","Nucella_canaliculata",0,0,2,NA,3.8095238095238,9.95,NA,NA
+2013-11-05,"BB","Nucella_ostrina","Nucella_ostrina",0,0,4,NA,3.8095238095238,9.95,NA,NA
+2013-11-05,"BB","Pollicipes_polymerus","Nucella_canaliculata",0,0,2,NA,15.2380952380952,9.95,NA,NA
+2013-11-05,"BB","Pollicipes_polymerus","Nucella_ostrina",0,0,4,NA,15.2380952380952,9.95,NA,NA
+2013-11-05,"BB","Semibalanus_cariosus","Nucella_canaliculata",0,0,2,NA,0,9.95,NA,NA
+2013-11-05,"BB","Semibalanus_cariosus","Nucella_ostrina",0,0,4,NA,0,9.95,NA,NA
+2013-11-05,"BC","Adula_californiensis","Nucella_canaliculata",0,0,2,NA,0,9.95,NA,NA
+2013-11-05,"BC","Adula_californiensis","Nucella_ostrina",0,0,2,NA,0,9.95,NA,NA
+2013-11-05,"BC","Balanus_glandula","Nucella_canaliculata",1,1,2,47.158460723329,74069.3333333333,9.95,2.86287208026295e-07,0.021205102640369
+2013-11-05,"BC","Balanus_glandula","Nucella_ostrina",0,0,2,NA,74069.3333333333,9.95,NA,NA
+2013-11-05,"BC","Chthamalus_dalli","Nucella_canaliculata",0,0,2,NA,0,9.95,NA,NA
+2013-11-05,"BC","Chthamalus_dalli","Nucella_ostrina",0,0,2,NA,0,9.95,NA,NA
+2013-11-05,"BC","Hiatella_arctica","Nucella_canaliculata",0,0,2,NA,0,9.95,NA,NA
+2013-11-05,"BC","Hiatella_arctica","Nucella_ostrina",0,0,2,NA,0,9.95,NA,NA
+2013-11-05,"BC","Limpets","Nucella_canaliculata",0,0,2,NA,72.3809523809523,9.95,NA,NA
+2013-11-05,"BC","Limpets","Nucella_ostrina",0,0,2,NA,72.3809523809523,9.95,NA,NA
+2013-11-05,"BC","Littorina_sitkana","Nucella_canaliculata",0,0,2,NA,403.809523809524,9.95,NA,NA
+2013-11-05,"BC","Littorina_sitkana","Nucella_ostrina",0,0,2,NA,403.809523809524,9.95,NA,NA
+2013-11-05,"BC","Modiolus_modiolus","Nucella_canaliculata",0,0,2,NA,0,9.95,NA,NA
+2013-11-05,"BC","Modiolus_modiolus","Nucella_ostrina",0,0,2,NA,0,9.95,NA,NA
+2013-11-05,"BC","Mytilus_californianus","Nucella_canaliculata",0,0,2,NA,0,9.95,NA,NA
+2013-11-05,"BC","Mytilus_californianus","Nucella_ostrina",0,0,2,NA,0,9.95,NA,NA
+2013-11-05,"BC","Mytilus_trossulus","Nucella_canaliculata",0,0,2,NA,3546.66666666667,9.95,NA,NA
+2013-11-05,"BC","Mytilus_trossulus","Nucella_ostrina",0,0,2,NA,3546.66666666667,9.95,NA,NA
+2013-11-05,"BC","Nucella_ostrina","Nucella_canaliculata",0,0,2,NA,0,9.95,NA,NA
+2013-11-05,"BC","Nucella_ostrina","Nucella_ostrina",0,0,2,NA,0,9.95,NA,NA
+2013-11-05,"BC","Pollicipes_polymerus","Nucella_canaliculata",0,0,2,NA,0,9.95,NA,NA
+2013-11-05,"BC","Pollicipes_polymerus","Nucella_ostrina",0,0,2,NA,0,9.95,NA,NA
+2013-11-05,"BC","Semibalanus_cariosus","Nucella_canaliculata",0,0,2,NA,0,9.95,NA,NA
+2013-11-05,"BC","Semibalanus_cariosus","Nucella_ostrina",0,0,2,NA,0,9.95,NA,NA
+2013-11-05,"BD","Adula_californiensis","Nucella_canaliculata",0,0,1,NA,0,9.95,NA,NA
+2013-11-05,"BD","Adula_californiensis","Nucella_ostrina",0,0,0,NA,0,9.95,NA,NA
+2013-11-05,"BD","Balanus_glandula","Nucella_canaliculata",0,0,1,NA,145109.333333333,9.95,NA,NA
+2013-11-05,"BD","Balanus_glandula","Nucella_ostrina",0,0,0,NA,145109.333333333,9.95,NA,NA
+2013-11-05,"BD","Chthamalus_dalli","Nucella_canaliculata",0,0,1,NA,0,9.95,NA,NA
+2013-11-05,"BD","Chthamalus_dalli","Nucella_ostrina",0,0,0,NA,0,9.95,NA,NA
+2013-11-05,"BD","Hiatella_arctica","Nucella_canaliculata",0,0,1,NA,0,9.95,NA,NA
+2013-11-05,"BD","Hiatella_arctica","Nucella_ostrina",0,0,0,NA,0,9.95,NA,NA
+2013-11-05,"BD","Limpets","Nucella_canaliculata",0,0,1,NA,1365.71428571428,9.95,NA,NA
+2013-11-05,"BD","Limpets","Nucella_ostrina",0,0,0,NA,1365.71428571428,9.95,NA,NA
+2013-11-05,"BD","Littorina_sitkana","Nucella_canaliculata",0,0,1,NA,2514.28571428572,9.95,NA,NA
+2013-11-05,"BD","Littorina_sitkana","Nucella_ostrina",0,0,0,NA,2514.28571428572,9.95,NA,NA
+2013-11-05,"BD","Modiolus_modiolus","Nucella_canaliculata",0,0,1,NA,0,9.95,NA,NA
+2013-11-05,"BD","Modiolus_modiolus","Nucella_ostrina",0,0,0,NA,0,9.95,NA,NA
+2013-11-05,"BD","Mytilus_californianus","Nucella_canaliculata",0,0,1,NA,0,9.95,NA,NA
+2013-11-05,"BD","Mytilus_californianus","Nucella_ostrina",0,0,0,NA,0,9.95,NA,NA
+2013-11-05,"BD","Mytilus_trossulus","Nucella_canaliculata",0,0,1,NA,15491.4285714286,9.95,NA,NA
+2013-11-05,"BD","Mytilus_trossulus","Nucella_ostrina",0,0,0,NA,15491.4285714286,9.95,NA,NA
+2013-11-05,"BD","Nucella_ostrina","Nucella_canaliculata",0,0,1,NA,0,9.95,NA,NA
+2013-11-05,"BD","Nucella_ostrina","Nucella_ostrina",0,0,0,NA,0,9.95,NA,NA
+2013-11-05,"BD","Pollicipes_polymerus","Nucella_canaliculata",0,0,1,NA,74.2857142857145,9.95,NA,NA
+2013-11-05,"BD","Pollicipes_polymerus","Nucella_ostrina",0,0,0,NA,74.2857142857145,9.95,NA,NA
+2013-11-05,"BD","Semibalanus_cariosus","Nucella_canaliculata",0,0,1,NA,0,9.95,NA,NA
+2013-11-05,"BD","Semibalanus_cariosus","Nucella_ostrina",0,0,0,NA,0,9.95,NA,NA
+2013-11-05,"BE","Adula_californiensis","Nucella_canaliculata",0,0,3,NA,0,9.95,NA,NA
+2013-11-05,"BE","Adula_californiensis","Nucella_ostrina",0,0,13,NA,0,9.95,NA,NA
+2013-11-05,"BE","Balanus_glandula","Nucella_canaliculata",0,0,3,NA,86336,9.95,NA,NA
+2013-11-05,"BE","Balanus_glandula","Nucella_ostrina",0.0833333333333333,1,13,28.5339307328225,86336,9.95,3.382713585829e-08,0.00292049960146133
+2013-11-05,"BE","Chthamalus_dalli","Nucella_canaliculata",0,0,3,NA,149.333333333333,9.95,NA,NA
+2013-11-05,"BE","Chthamalus_dalli","Nucella_ostrina",0,0,13,NA,149.333333333333,9.95,NA,NA
+2013-11-05,"BE","Hiatella_arctica","Nucella_canaliculata",0,0,3,NA,0,9.95,NA,NA
+2013-11-05,"BE","Hiatella_arctica","Nucella_ostrina",0,0,13,NA,0,9.95,NA,NA
+2013-11-05,"BE","Limpets","Nucella_canaliculata",0,0,3,NA,4998.09523809524,9.95,NA,NA
+2013-11-05,"BE","Limpets","Nucella_ostrina",0,0,13,NA,4998.09523809524,9.95,NA,NA
+2013-11-05,"BE","Littorina_sitkana","Nucella_canaliculata",0,0,3,NA,959.999999999999,9.95,NA,NA
+2013-11-05,"BE","Littorina_sitkana","Nucella_ostrina",0,0,13,NA,959.999999999999,9.95,NA,NA
+2013-11-05,"BE","Modiolus_modiolus","Nucella_canaliculata",0,0,3,NA,0,9.95,NA,NA
+2013-11-05,"BE","Modiolus_modiolus","Nucella_ostrina",0,0,13,NA,0,9.95,NA,NA
+2013-11-05,"BE","Mytilus_californianus","Nucella_canaliculata",0,0,3,NA,0,9.95,NA,NA
+2013-11-05,"BE","Mytilus_californianus","Nucella_ostrina",0,0,13,NA,0,9.95,NA,NA
+2013-11-05,"BE","Mytilus_trossulus","Nucella_canaliculata",0,0,3,NA,2754.28571428572,9.95,NA,NA
+2013-11-05,"BE","Mytilus_trossulus","Nucella_ostrina",0,0,13,NA,2754.28571428572,9.95,NA,NA
+2013-11-05,"BE","Nucella_ostrina","Nucella_canaliculata",0,0,3,NA,7.6190476190476,9.95,NA,NA
+2013-11-05,"BE","Nucella_ostrina","Nucella_ostrina",0,0,13,NA,7.6190476190476,9.95,NA,NA
+2013-11-05,"BE","Pollicipes_polymerus","Nucella_canaliculata",0,0,3,NA,7.61904761904763,9.95,NA,NA
+2013-11-05,"BE","Pollicipes_polymerus","Nucella_ostrina",0,0,13,NA,7.61904761904763,9.95,NA,NA
+2013-11-05,"BE","Semibalanus_cariosus","Nucella_canaliculata",0,0,3,NA,0,9.95,NA,NA
+2013-11-05,"BE","Semibalanus_cariosus","Nucella_ostrina",0,0,13,NA,0,9.95,NA,NA
+2013-11-05,"BF","Adula_californiensis","Nucella_canaliculata",0,0,5,NA,0,9.95,NA,NA
+2013-11-05,"BF","Adula_californiensis","Nucella_ostrina",0,0,13,NA,0,9.95,NA,NA
+2013-11-05,"BF","Balanus_glandula","Nucella_canaliculata",0.25,1,5,36.0136405594061,109056,9.95,6.36536656426158e-08,0.00694181416032111
+2013-11-05,"BF","Balanus_glandula","Nucella_ostrina",0,0,13,NA,109056,9.95,NA,NA
+2013-11-05,"BF","Chthamalus_dalli","Nucella_canaliculata",0,0,5,NA,149.333333333333,9.95,NA,NA
+2013-11-05,"BF","Chthamalus_dalli","Nucella_ostrina",0,0,13,NA,149.333333333333,9.95,NA,NA
+2013-11-05,"BF","Hiatella_arctica","Nucella_canaliculata",0,0,5,NA,0,9.95,NA,NA
+2013-11-05,"BF","Hiatella_arctica","Nucella_ostrina",0,0,13,NA,0,9.95,NA,NA
+2013-11-05,"BF","Limpets","Nucella_canaliculata",0,0,5,NA,4716.19047619048,9.95,NA,NA
+2013-11-05,"BF","Limpets","Nucella_ostrina",0,0,13,NA,4716.19047619048,9.95,NA,NA
+2013-11-05,"BF","Littorina_sitkana","Nucella_canaliculata",0,0,5,NA,2041.90476190476,9.95,NA,NA
+2013-11-05,"BF","Littorina_sitkana","Nucella_ostrina",0,0,13,NA,2041.90476190476,9.95,NA,NA
+2013-11-05,"BF","Modiolus_modiolus","Nucella_canaliculata",0,0,5,NA,0,9.95,NA,NA
+2013-11-05,"BF","Modiolus_modiolus","Nucella_ostrina",0,0,13,NA,0,9.95,NA,NA
+2013-11-05,"BF","Mytilus_californianus","Nucella_canaliculata",0,0,5,NA,0,9.95,NA,NA
+2013-11-05,"BF","Mytilus_californianus","Nucella_ostrina",0,0,13,NA,0,9.95,NA,NA
+2013-11-05,"BF","Mytilus_trossulus","Nucella_canaliculata",0,0,5,NA,10205.7142857143,9.95,NA,NA
+2013-11-05,"BF","Mytilus_trossulus","Nucella_ostrina",0,0,13,NA,10205.7142857143,9.95,NA,NA
+2013-11-05,"BF","Nucella_ostrina","Nucella_canaliculata",0,0,5,NA,0,9.95,NA,NA
+2013-11-05,"BF","Nucella_ostrina","Nucella_ostrina",0,0,13,NA,0,9.95,NA,NA
+2013-11-05,"BF","Pollicipes_polymerus","Nucella_canaliculata",0,0,5,NA,0,9.95,NA,NA
+2013-11-05,"BF","Pollicipes_polymerus","Nucella_ostrina",0,0,13,NA,0,9.95,NA,NA
+2013-11-05,"BF","Semibalanus_cariosus","Nucella_canaliculata",0,0,5,NA,0,9.95,NA,NA
+2013-11-05,"BF","Semibalanus_cariosus","Nucella_ostrina",0,0,13,NA,0,9.95,NA,NA
+2013-11-05,"C","Adula_californiensis","Nucella_canaliculata",0,0,5,NA,0,9.95,NA,NA
+2013-11-05,"C","Adula_californiensis","Nucella_ostrina",0,0,1,NA,0,9.95,NA,NA
+2013-11-05,"C","Balanus_glandula","Nucella_canaliculata",0,0,5,NA,79722.6666666667,9.95,NA,NA
+2013-11-05,"C","Balanus_glandula","Nucella_ostrina",0,0,1,NA,79722.6666666667,9.95,NA,NA
+2013-11-05,"C","Chthamalus_dalli","Nucella_canaliculata",0,0,5,NA,448,9.95,NA,NA
+2013-11-05,"C","Chthamalus_dalli","Nucella_ostrina",0,0,1,NA,448,9.95,NA,NA
+2013-11-05,"C","Hiatella_arctica","Nucella_canaliculata",0,0,5,NA,0,9.95,NA,NA
+2013-11-05,"C","Hiatella_arctica","Nucella_ostrina",0,0,1,NA,0,9.95,NA,NA
+2013-11-05,"C","Limpets","Nucella_canaliculata",0,0,5,NA,34.2857142857143,9.95,NA,NA
+2013-11-05,"C","Limpets","Nucella_ostrina",0,0,1,NA,34.2857142857143,9.95,NA,NA
+2013-11-05,"C","Littorina_sitkana","Nucella_canaliculata",0,0,5,NA,540.952380952381,9.95,NA,NA
+2013-11-05,"C","Littorina_sitkana","Nucella_ostrina",0,0,1,NA,540.952380952381,9.95,NA,NA
+2013-11-05,"C","Modiolus_modiolus","Nucella_canaliculata",0,0,5,NA,0,9.95,NA,NA
+2013-11-05,"C","Modiolus_modiolus","Nucella_ostrina",0,0,1,NA,0,9.95,NA,NA
+2013-11-05,"C","Mytilus_californianus","Nucella_canaliculata",0,0,5,NA,0,9.95,NA,NA
+2013-11-05,"C","Mytilus_californianus","Nucella_ostrina",0,0,1,NA,0,9.95,NA,NA
+2013-11-05,"C","Mytilus_trossulus","Nucella_canaliculata",0.25,1,5,34.8362043618816,6506.66666666667,9.95,1.10293678233163e-06,0.00717644199703783
+2013-11-05,"C","Mytilus_trossulus","Nucella_ostrina",0,0,1,NA,6506.66666666667,9.95,NA,NA
+2013-11-05,"C","Nucella_ostrina","Nucella_canaliculata",0,0,5,NA,0,9.95,NA,NA
+2013-11-05,"C","Nucella_ostrina","Nucella_ostrina",0,0,1,NA,0,9.95,NA,NA
+2013-11-05,"C","Pollicipes_polymerus","Nucella_canaliculata",0,0,5,NA,0,9.95,NA,NA
+2013-11-05,"C","Pollicipes_polymerus","Nucella_ostrina",0,0,1,NA,0,9.95,NA,NA
+2013-11-05,"C","Semibalanus_cariosus","Nucella_canaliculata",0,0,5,NA,0,9.95,NA,NA
+2013-11-05,"C","Semibalanus_cariosus","Nucella_ostrina",0,0,1,NA,0,9.95,NA,NA
+2013-11-05,"D","Adula_californiensis","Nucella_canaliculata",0,0,2,NA,0,9.95,NA,NA
+2013-11-05,"D","Adula_californiensis","Nucella_ostrina",0,0,1,NA,0,9.95,NA,NA
+2013-11-05,"D","Balanus_glandula","Nucella_canaliculata",0,0,2,NA,81962.6666666667,9.95,NA,NA
+2013-11-05,"D","Balanus_glandula","Nucella_ostrina",0,0,1,NA,81962.6666666667,9.95,NA,NA
+2013-11-05,"D","Chthamalus_dalli","Nucella_canaliculata",0,0,2,NA,106.666666666667,9.95,NA,NA
+2013-11-05,"D","Chthamalus_dalli","Nucella_ostrina",0,0,1,NA,106.666666666667,9.95,NA,NA
+2013-11-05,"D","Hiatella_arctica","Nucella_canaliculata",0,0,2,NA,0,9.95,NA,NA
+2013-11-05,"D","Hiatella_arctica","Nucella_ostrina",0,0,1,NA,0,9.95,NA,NA
+2013-11-05,"D","Limpets","Nucella_canaliculata",0,0,2,NA,605.714285714287,9.95,NA,NA
+2013-11-05,"D","Limpets","Nucella_ostrina",0,0,1,NA,605.714285714287,9.95,NA,NA
+2013-11-05,"D","Littorina_sitkana","Nucella_canaliculata",0,0,2,NA,2320,9.95,NA,NA
+2013-11-05,"D","Littorina_sitkana","Nucella_ostrina",0,0,1,NA,2320,9.95,NA,NA
+2013-11-05,"D","Modiolus_modiolus","Nucella_canaliculata",0,0,2,NA,0,9.95,NA,NA
+2013-11-05,"D","Modiolus_modiolus","Nucella_ostrina",0,0,1,NA,0,9.95,NA,NA
+2013-11-05,"D","Mytilus_californianus","Nucella_canaliculata",0,0,2,NA,0,9.95,NA,NA
+2013-11-05,"D","Mytilus_californianus","Nucella_ostrina",0,0,1,NA,0,9.95,NA,NA
+2013-11-05,"D","Mytilus_trossulus","Nucella_canaliculata",0,0,2,NA,3344.76190476191,9.95,NA,NA
+2013-11-05,"D","Mytilus_trossulus","Nucella_ostrina",0,0,1,NA,3344.76190476191,9.95,NA,NA
+2013-11-05,"D","Nucella_ostrina","Nucella_canaliculata",0,0,2,NA,3.8095238095238,9.95,NA,NA
+2013-11-05,"D","Nucella_ostrina","Nucella_ostrina",0,0,1,NA,3.8095238095238,9.95,NA,NA
+2013-11-05,"D","Pollicipes_polymerus","Nucella_canaliculata",0,0,2,NA,0,9.95,NA,NA
+2013-11-05,"D","Pollicipes_polymerus","Nucella_ostrina",0,0,1,NA,0,9.95,NA,NA
+2013-11-05,"D","Semibalanus_cariosus","Nucella_canaliculata",0,0,2,NA,0,9.95,NA,NA
+2013-11-05,"D","Semibalanus_cariosus","Nucella_ostrina",0,0,1,NA,0,9.95,NA,NA
+2013-11-05,"E","Adula_californiensis","Nucella_canaliculata",0,0,13,NA,0,9.95,NA,NA
+2013-11-05,"E","Adula_californiensis","Nucella_ostrina",0,0,2,NA,0,9.95,NA,NA
+2013-11-05,"E","Balanus_glandula","Nucella_canaliculata",0.0833333333333333,1,13,49.8560199360335,52117.3333333333,9.95,3.20714770943054e-08,0.00167147986221628
+2013-11-05,"E","Balanus_glandula","Nucella_ostrina",0,0,2,NA,52117.3333333333,9.95,NA,NA
+2013-11-05,"E","Chthamalus_dalli","Nucella_canaliculata",0,0,13,NA,128,9.95,NA,NA
+2013-11-05,"E","Chthamalus_dalli","Nucella_ostrina",0,0,2,NA,128,9.95,NA,NA
+2013-11-05,"E","Hiatella_arctica","Nucella_canaliculata",0,0,13,NA,0,9.95,NA,NA
+2013-11-05,"E","Hiatella_arctica","Nucella_ostrina",0,0,2,NA,0,9.95,NA,NA
+2013-11-05,"E","Limpets","Nucella_canaliculata",0,0,13,NA,53.3333333333333,9.95,NA,NA
+2013-11-05,"E","Limpets","Nucella_ostrina",0,0,2,NA,53.3333333333333,9.95,NA,NA
+2013-11-05,"E","Littorina_sitkana","Nucella_canaliculata",0,0,13,NA,137.142857142857,9.95,NA,NA
+2013-11-05,"E","Littorina_sitkana","Nucella_ostrina",0,0,2,NA,137.142857142857,9.95,NA,NA
+2013-11-05,"E","Modiolus_modiolus","Nucella_canaliculata",0,0,13,NA,0,9.95,NA,NA
+2013-11-05,"E","Modiolus_modiolus","Nucella_ostrina",0,0,2,NA,0,9.95,NA,NA
+2013-11-05,"E","Mytilus_californianus","Nucella_canaliculata",0,0,13,NA,0,9.95,NA,NA
+2013-11-05,"E","Mytilus_californianus","Nucella_ostrina",0,0,2,NA,0,9.95,NA,NA
+2013-11-05,"E","Mytilus_trossulus","Nucella_canaliculata",0,0,13,NA,4582.85714285714,9.95,NA,NA
+2013-11-05,"E","Mytilus_trossulus","Nucella_ostrina",0,0,2,NA,4582.85714285714,9.95,NA,NA
+2013-11-05,"E","Nucella_ostrina","Nucella_canaliculata",0,0,13,NA,0,9.95,NA,NA
+2013-11-05,"E","Nucella_ostrina","Nucella_ostrina",0,0,2,NA,0,9.95,NA,NA
+2013-11-05,"E","Pollicipes_polymerus","Nucella_canaliculata",0,0,13,NA,0,9.95,NA,NA
+2013-11-05,"E","Pollicipes_polymerus","Nucella_ostrina",0,0,2,NA,0,9.95,NA,NA
+2013-11-05,"E","Semibalanus_cariosus","Nucella_canaliculata",0,0,13,NA,0,9.95,NA,NA
+2013-11-05,"E","Semibalanus_cariosus","Nucella_ostrina",0,0,2,NA,0,9.95,NA,NA
+2013-11-05,"F","Adula_californiensis","Nucella_canaliculata",0,0,1,NA,0,9.95,NA,NA
+2013-11-05,"F","Adula_californiensis","Nucella_ostrina",0,0,0,NA,0,9.95,NA,NA
+2013-11-05,"F","Balanus_glandula","Nucella_canaliculata",0,0,1,NA,84544,9.95,NA,NA
+2013-11-05,"F","Balanus_glandula","Nucella_ostrina",0,0,0,NA,84544,9.95,NA,NA
+2013-11-05,"F","Chthamalus_dalli","Nucella_canaliculata",0,0,1,NA,80,9.95,NA,NA
+2013-11-05,"F","Chthamalus_dalli","Nucella_ostrina",0,0,0,NA,80,9.95,NA,NA
+2013-11-05,"F","Hiatella_arctica","Nucella_canaliculata",0,0,1,NA,0,9.95,NA,NA
+2013-11-05,"F","Hiatella_arctica","Nucella_ostrina",0,0,0,NA,0,9.95,NA,NA
+2013-11-05,"F","Limpets","Nucella_canaliculata",0,0,1,NA,3062.85714285714,9.95,NA,NA
+2013-11-05,"F","Limpets","Nucella_ostrina",0,0,0,NA,3062.85714285714,9.95,NA,NA
+2013-11-05,"F","Littorina_sitkana","Nucella_canaliculata",0,0,1,NA,1325.71428571429,9.95,NA,NA
+2013-11-05,"F","Littorina_sitkana","Nucella_ostrina",0,0,0,NA,1325.71428571429,9.95,NA,NA
+2013-11-05,"F","Modiolus_modiolus","Nucella_canaliculata",0,0,1,NA,0,9.95,NA,NA
+2013-11-05,"F","Modiolus_modiolus","Nucella_ostrina",0,0,0,NA,0,9.95,NA,NA
+2013-11-05,"F","Mytilus_californianus","Nucella_canaliculata",0,0,1,NA,0,9.95,NA,NA
+2013-11-05,"F","Mytilus_californianus","Nucella_ostrina",0,0,0,NA,0,9.95,NA,NA
+2013-11-05,"F","Mytilus_trossulus","Nucella_canaliculata",0,0,1,NA,3582.85714285714,9.95,NA,NA
+2013-11-05,"F","Mytilus_trossulus","Nucella_ostrina",0,0,0,NA,3582.85714285714,9.95,NA,NA
+2013-11-05,"F","Nucella_ostrina","Nucella_canaliculata",0,0,1,NA,0,9.95,NA,NA
+2013-11-05,"F","Nucella_ostrina","Nucella_ostrina",0,0,0,NA,0,9.95,NA,NA
+2013-11-05,"F","Pollicipes_polymerus","Nucella_canaliculata",0,0,1,NA,0,9.95,NA,NA
+2013-11-05,"F","Pollicipes_polymerus","Nucella_ostrina",0,0,0,NA,0,9.95,NA,NA
+2013-11-05,"F","Semibalanus_cariosus","Nucella_canaliculata",0,0,1,NA,0,9.95,NA,NA
+2013-11-05,"F","Semibalanus_cariosus","Nucella_ostrina",0,0,0,NA,0,9.95,NA,NA
+2013-11-05,"G","Adula_californiensis","Nucella_canaliculata",0,0,0,NA,0,9.95,NA,NA
+2013-11-05,"G","Adula_californiensis","Nucella_ostrina",0,0,1,NA,0,9.95,NA,NA
+2013-11-05,"G","Balanus_glandula","Nucella_canaliculata",0,0,0,NA,32662.8571428571,9.95,NA,NA
+2013-11-05,"G","Balanus_glandula","Nucella_ostrina",0,0,1,NA,32662.8571428571,9.95,NA,NA
+2013-11-05,"G","Chthamalus_dalli","Nucella_canaliculata",0,0,0,NA,9002.66666666667,9.95,NA,NA
+2013-11-05,"G","Chthamalus_dalli","Nucella_ostrina",0,0,1,NA,9002.66666666667,9.95,NA,NA
+2013-11-05,"G","Hiatella_arctica","Nucella_canaliculata",0,0,0,NA,0,9.95,NA,NA
+2013-11-05,"G","Hiatella_arctica","Nucella_ostrina",0,0,1,NA,0,9.95,NA,NA
+2013-11-05,"G","Limpets","Nucella_canaliculata",0,0,0,NA,426.666666666667,9.95,NA,NA
+2013-11-05,"G","Limpets","Nucella_ostrina",0,0,1,NA,426.666666666667,9.95,NA,NA
+2013-11-05,"G","Littorina_sitkana","Nucella_canaliculata",0,0,0,NA,632.380952380954,9.95,NA,NA
+2013-11-05,"G","Littorina_sitkana","Nucella_ostrina",0,0,1,NA,632.380952380954,9.95,NA,NA
+2013-11-05,"G","Modiolus_modiolus","Nucella_canaliculata",0,0,0,NA,0,9.95,NA,NA
+2013-11-05,"G","Modiolus_modiolus","Nucella_ostrina",0,0,1,NA,0,9.95,NA,NA
+2013-11-05,"G","Mytilus_californianus","Nucella_canaliculata",0,0,0,NA,21.3333333333333,9.95,NA,NA
+2013-11-05,"G","Mytilus_californianus","Nucella_ostrina",0,0,1,NA,21.3333333333333,9.95,NA,NA
+2013-11-05,"G","Mytilus_trossulus","Nucella_canaliculata",0,0,0,NA,39353.1428571429,9.95,NA,NA
+2013-11-05,"G","Mytilus_trossulus","Nucella_ostrina",0,0,1,NA,39353.1428571429,9.95,NA,NA
+2013-11-05,"G","Nucella_ostrina","Nucella_canaliculata",0,0,0,NA,0,9.95,NA,NA
+2013-11-05,"G","Nucella_ostrina","Nucella_ostrina",0,0,1,NA,0,9.95,NA,NA
+2013-11-05,"G","Pollicipes_polymerus","Nucella_canaliculata",0,0,0,NA,7.61904761904763,9.95,NA,NA
+2013-11-05,"G","Pollicipes_polymerus","Nucella_ostrina",0,0,1,NA,7.61904761904763,9.95,NA,NA
+2013-11-05,"G","Semibalanus_cariosus","Nucella_canaliculata",0,0,0,NA,0,9.95,NA,NA
+2013-11-05,"G","Semibalanus_cariosus","Nucella_ostrina",0,0,1,NA,0,9.95,NA,NA
+2013-12-03,"A","Adula_californiensis","Nucella_canaliculata",0,0,1,NA,0,9.42,NA,NA
+2013-12-03,"A","Adula_californiensis","Nucella_ostrina",0,0,0,NA,0,9.42,NA,NA
+2013-12-03,"A","Balanus_glandula","Nucella_canaliculata",0,0,1,NA,72160,9.42,NA,NA
+2013-12-03,"A","Balanus_glandula","Nucella_ostrina",0,0,0,NA,72160,9.42,NA,NA
+2013-12-03,"A","Chthamalus_dalli","Nucella_canaliculata",0,0,1,NA,0,9.42,NA,NA
+2013-12-03,"A","Chthamalus_dalli","Nucella_ostrina",0,0,0,NA,0,9.42,NA,NA
+2013-12-03,"A","Hiatella_arctica","Nucella_canaliculata",0,0,1,NA,0,9.42,NA,NA
+2013-12-03,"A","Hiatella_arctica","Nucella_ostrina",0,0,0,NA,0,9.42,NA,NA
+2013-12-03,"A","Limpets","Nucella_canaliculata",0,0,1,NA,954.285714285714,9.42,NA,NA
+2013-12-03,"A","Limpets","Nucella_ostrina",0,0,0,NA,954.285714285714,9.42,NA,NA
+2013-12-03,"A","Littorina_sitkana","Nucella_canaliculata",0,0,1,NA,1182.85714285714,9.42,NA,NA
+2013-12-03,"A","Littorina_sitkana","Nucella_ostrina",0,0,0,NA,1182.85714285714,9.42,NA,NA
+2013-12-03,"A","Modiolus_modiolus","Nucella_canaliculata",0,0,1,NA,0,9.42,NA,NA
+2013-12-03,"A","Modiolus_modiolus","Nucella_ostrina",0,0,0,NA,0,9.42,NA,NA
+2013-12-03,"A","Mytilus_californianus","Nucella_canaliculata",0,0,1,NA,5.7142857142857,9.42,NA,NA
+2013-12-03,"A","Mytilus_californianus","Nucella_ostrina",0,0,0,NA,5.7142857142857,9.42,NA,NA
+2013-12-03,"A","Mytilus_trossulus","Nucella_canaliculata",0,0,1,NA,9725.7142857143,9.42,NA,NA
+2013-12-03,"A","Mytilus_trossulus","Nucella_ostrina",0,0,0,NA,9725.7142857143,9.42,NA,NA
+2013-12-03,"A","Nucella_ostrina","Nucella_canaliculata",0,0,1,NA,0,9.42,NA,NA
+2013-12-03,"A","Nucella_ostrina","Nucella_ostrina",0,0,0,NA,0,9.42,NA,NA
+2013-12-03,"A","Pollicipes_polymerus","Nucella_canaliculata",0,0,1,NA,0,9.42,NA,NA
+2013-12-03,"A","Pollicipes_polymerus","Nucella_ostrina",0,0,0,NA,0,9.42,NA,NA
+2013-12-03,"A","Semibalanus_cariosus","Nucella_canaliculata",0,0,1,NA,0,9.42,NA,NA
+2013-12-03,"A","Semibalanus_cariosus","Nucella_ostrina",0,0,0,NA,0,9.42,NA,NA
+2013-12-03,"AB","Adula_californiensis","Nucella_canaliculata",0,0,15,NA,0,9.42,NA,NA
+2013-12-03,"AB","Adula_californiensis","Nucella_ostrina",0,0,2,NA,0,9.42,NA,NA
+2013-12-03,"AB","Balanus_glandula","Nucella_canaliculata",0.272727272727273,3,15,50.0032666966347,66986.6666666667,9.42,8.14220110109651e-08,0.00545418911092118
+2013-12-03,"AB","Balanus_glandula","Nucella_ostrina",1,1,2,51.9256017670656,66986.6666666667,9.42,2.8749486652099e-07,0.0192583227920194
+2013-12-03,"AB","Chthamalus_dalli","Nucella_canaliculata",0,0,15,NA,362.666666666667,9.42,NA,NA
+2013-12-03,"AB","Chthamalus_dalli","Nucella_ostrina",0,0,2,NA,362.666666666667,9.42,NA,NA
+2013-12-03,"AB","Hiatella_arctica","Nucella_canaliculata",0,0,15,NA,0,9.42,NA,NA
+2013-12-03,"AB","Hiatella_arctica","Nucella_ostrina",0,0,2,NA,0,9.42,NA,NA
+2013-12-03,"AB","Limpets","Nucella_canaliculata",0,0,15,NA,278.095238095238,9.42,NA,NA
+2013-12-03,"AB","Limpets","Nucella_ostrina",0,0,2,NA,278.095238095238,9.42,NA,NA
+2013-12-03,"AB","Littorina_sitkana","Nucella_canaliculata",0,0,15,NA,472.380952380952,9.42,NA,NA
+2013-12-03,"AB","Littorina_sitkana","Nucella_ostrina",0,0,2,NA,472.380952380952,9.42,NA,NA
+2013-12-03,"AB","Modiolus_modiolus","Nucella_canaliculata",0,0,15,NA,0,9.42,NA,NA
+2013-12-03,"AB","Modiolus_modiolus","Nucella_ostrina",0,0,2,NA,0,9.42,NA,NA
+2013-12-03,"AB","Mytilus_californianus","Nucella_canaliculata",0,0,15,NA,0,9.42,NA,NA
+2013-12-03,"AB","Mytilus_californianus","Nucella_ostrina",0,0,2,NA,0,9.42,NA,NA
+2013-12-03,"AB","Mytilus_trossulus","Nucella_canaliculata",0.0909090909090909,1,15,32.5590674682056,3649.52380952381,9.42,7.65066447027426e-07,0.00279212821429438
+2013-12-03,"AB","Mytilus_trossulus","Nucella_ostrina",0,0,2,NA,3649.52380952381,9.42,NA,NA
+2013-12-03,"AB","Nucella_ostrina","Nucella_canaliculata",0,0,15,NA,3.8095238095238,9.42,NA,NA
+2013-12-03,"AB","Nucella_ostrina","Nucella_ostrina",0,0,2,NA,3.8095238095238,9.42,NA,NA
+2013-12-03,"AB","Pollicipes_polymerus","Nucella_canaliculata",0,0,15,NA,0,9.42,NA,NA
+2013-12-03,"AB","Pollicipes_polymerus","Nucella_ostrina",0,0,2,NA,0,9.42,NA,NA
+2013-12-03,"AB","Semibalanus_cariosus","Nucella_canaliculata",0,0,15,NA,0,9.42,NA,NA
+2013-12-03,"AB","Semibalanus_cariosus","Nucella_ostrina",0,0,2,NA,0,9.42,NA,NA
+2013-12-03,"AC","Adula_californiensis","Nucella_canaliculata",0,0,5,NA,0,9.42,NA,NA
+2013-12-03,"AC","Adula_californiensis","Nucella_ostrina",0,0,1,NA,0,9.42,NA,NA
+2013-12-03,"AC","Balanus_glandula","Nucella_canaliculata",0,0,5,NA,63184,9.42,NA,NA
+2013-12-03,"AC","Balanus_glandula","Nucella_ostrina",0,0,1,NA,63184,9.42,NA,NA
+2013-12-03,"AC","Chthamalus_dalli","Nucella_canaliculata",0,0,5,NA,1168,9.42,NA,NA
+2013-12-03,"AC","Chthamalus_dalli","Nucella_ostrina",0,0,1,NA,1168,9.42,NA,NA
+2013-12-03,"AC","Hiatella_arctica","Nucella_canaliculata",0,0,5,NA,0,9.42,NA,NA
+2013-12-03,"AC","Hiatella_arctica","Nucella_ostrina",0,0,1,NA,0,9.42,NA,NA
+2013-12-03,"AC","Limpets","Nucella_canaliculata",0,0,5,NA,334.285714285714,9.42,NA,NA
+2013-12-03,"AC","Limpets","Nucella_ostrina",0,0,1,NA,334.285714285714,9.42,NA,NA
+2013-12-03,"AC","Littorina_sitkana","Nucella_canaliculata",0,0,5,NA,2122.85714285714,9.42,NA,NA
+2013-12-03,"AC","Littorina_sitkana","Nucella_ostrina",0,0,1,NA,2122.85714285714,9.42,NA,NA
+2013-12-03,"AC","Modiolus_modiolus","Nucella_canaliculata",0,0,5,NA,0,9.42,NA,NA
+2013-12-03,"AC","Modiolus_modiolus","Nucella_ostrina",0,0,1,NA,0,9.42,NA,NA
+2013-12-03,"AC","Mytilus_californianus","Nucella_canaliculata",0,0,5,NA,0,9.42,NA,NA
+2013-12-03,"AC","Mytilus_californianus","Nucella_ostrina",0,0,1,NA,0,9.42,NA,NA
+2013-12-03,"AC","Mytilus_trossulus","Nucella_canaliculata",0.25,1,5,56.3932097719671,4754.28571428571,9.42,9.32455074432101e-07,0.00443315783958576
+2013-12-03,"AC","Mytilus_trossulus","Nucella_ostrina",0,0,1,NA,4754.28571428571,9.42,NA,NA
+2013-12-03,"AC","Nucella_ostrina","Nucella_canaliculata",0,0,5,NA,2.85714285714285,9.42,NA,NA
+2013-12-03,"AC","Nucella_ostrina","Nucella_ostrina",0,0,1,NA,2.85714285714285,9.42,NA,NA
+2013-12-03,"AC","Pollicipes_polymerus","Nucella_canaliculata",0,0,5,NA,0,9.42,NA,NA
+2013-12-03,"AC","Pollicipes_polymerus","Nucella_ostrina",0,0,1,NA,0,9.42,NA,NA
+2013-12-03,"AC","Semibalanus_cariosus","Nucella_canaliculata",0,0,5,NA,0,9.42,NA,NA
+2013-12-03,"AC","Semibalanus_cariosus","Nucella_ostrina",0,0,1,NA,0,9.42,NA,NA
+2013-12-03,"AD","Adula_californiensis","Nucella_canaliculata",0,0,32,NA,0,9.42,NA,NA
+2013-12-03,"AD","Adula_californiensis","Nucella_ostrina",0,0,2,NA,0,9.42,NA,NA
+2013-12-03,"AD","Balanus_glandula","Nucella_canaliculata",0.111111111111111,3,32,34.51547500931,76693.3333333333,9.42,4.19745474001606e-08,0.00321916795527631
+2013-12-03,"AD","Balanus_glandula","Nucella_ostrina",0,0,2,NA,76693.3333333333,9.42,NA,NA
+2013-12-03,"AD","Chthamalus_dalli","Nucella_canaliculata",0,0,32,NA,106.666666666667,9.42,NA,NA
+2013-12-03,"AD","Chthamalus_dalli","Nucella_ostrina",0,0,2,NA,106.666666666667,9.42,NA,NA
+2013-12-03,"AD","Hiatella_arctica","Nucella_canaliculata",0,0,32,NA,0,9.42,NA,NA
+2013-12-03,"AD","Hiatella_arctica","Nucella_ostrina",0,0,2,NA,0,9.42,NA,NA
+2013-12-03,"AD","Limpets","Nucella_canaliculata",0,0,32,NA,1226.66666666667,9.42,NA,NA
+2013-12-03,"AD","Limpets","Nucella_ostrina",0,0,2,NA,1226.66666666667,9.42,NA,NA
+2013-12-03,"AD","Littorina_sitkana","Nucella_canaliculata",0,0,32,NA,2563.80952380952,9.42,NA,NA
+2013-12-03,"AD","Littorina_sitkana","Nucella_ostrina",0,0,2,NA,2563.80952380952,9.42,NA,NA
+2013-12-03,"AD","Modiolus_modiolus","Nucella_canaliculata",0,0,32,NA,0,9.42,NA,NA
+2013-12-03,"AD","Modiolus_modiolus","Nucella_ostrina",0,0,2,NA,0,9.42,NA,NA
+2013-12-03,"AD","Mytilus_californianus","Nucella_canaliculata",0,0,32,NA,0,9.42,NA,NA
+2013-12-03,"AD","Mytilus_californianus","Nucella_ostrina",0,0,2,NA,0,9.42,NA,NA
+2013-12-03,"AD","Mytilus_trossulus","Nucella_canaliculata",0.037037037037037,1,32,22.9567344166282,12910.4761904762,9.42,1.24963696896104e-07,0.00161334083345104
+2013-12-03,"AD","Mytilus_trossulus","Nucella_ostrina",0,0,2,NA,12910.4761904762,9.42,NA,NA
+2013-12-03,"AD","Nucella_ostrina","Nucella_canaliculata",0,0,32,NA,7.6190476190476,9.42,NA,NA
+2013-12-03,"AD","Nucella_ostrina","Nucella_ostrina",0,0,2,NA,7.6190476190476,9.42,NA,NA
+2013-12-03,"AD","Pollicipes_polymerus","Nucella_canaliculata",0,0,32,NA,3.8095238095238,9.42,NA,NA
+2013-12-03,"AD","Pollicipes_polymerus","Nucella_ostrina",0,0,2,NA,3.8095238095238,9.42,NA,NA
+2013-12-03,"AD","Semibalanus_cariosus","Nucella_canaliculata",0.037037037037037,1,32,159.266377131335,0,9.42,Inf,0.000232547746135365
+2013-12-03,"AD","Semibalanus_cariosus","Nucella_ostrina",0,0,2,NA,0,9.42,NA,NA
+2013-12-03,"AE","Adula_californiensis","Nucella_canaliculata",0,0,3,NA,0,9.42,NA,NA
+2013-12-03,"AE","Adula_californiensis","Nucella_ostrina",0,0,0,NA,0,9.42,NA,NA
+2013-12-03,"AE","Balanus_glandula","Nucella_canaliculata",0,0,3,NA,100010.666666667,9.42,NA,NA
+2013-12-03,"AE","Balanus_glandula","Nucella_ostrina",0,0,0,NA,100010.666666667,9.42,NA,NA
+2013-12-03,"AE","Chthamalus_dalli","Nucella_canaliculata",0,0,3,NA,448,9.42,NA,NA
+2013-12-03,"AE","Chthamalus_dalli","Nucella_ostrina",0,0,0,NA,448,9.42,NA,NA
+2013-12-03,"AE","Hiatella_arctica","Nucella_canaliculata",0,0,3,NA,0,9.42,NA,NA
+2013-12-03,"AE","Hiatella_arctica","Nucella_ostrina",0,0,0,NA,0,9.42,NA,NA
+2013-12-03,"AE","Limpets","Nucella_canaliculata",0,0,3,NA,1508.57142857143,9.42,NA,NA
+2013-12-03,"AE","Limpets","Nucella_ostrina",0,0,0,NA,1508.57142857143,9.42,NA,NA
+2013-12-03,"AE","Littorina_sitkana","Nucella_canaliculata",0,0,3,NA,2868.57142857143,9.42,NA,NA
+2013-12-03,"AE","Littorina_sitkana","Nucella_ostrina",0,0,0,NA,2868.57142857143,9.42,NA,NA
+2013-12-03,"AE","Modiolus_modiolus","Nucella_canaliculata",0,0,3,NA,0,9.42,NA,NA
+2013-12-03,"AE","Modiolus_modiolus","Nucella_ostrina",0,0,0,NA,0,9.42,NA,NA
+2013-12-03,"AE","Mytilus_californianus","Nucella_canaliculata",0,0,3,NA,0,9.42,NA,NA
+2013-12-03,"AE","Mytilus_californianus","Nucella_ostrina",0,0,0,NA,0,9.42,NA,NA
+2013-12-03,"AE","Mytilus_trossulus","Nucella_canaliculata",0,0,3,NA,6175.23809523809,9.42,NA,NA
+2013-12-03,"AE","Mytilus_trossulus","Nucella_ostrina",0,0,0,NA,6175.23809523809,9.42,NA,NA
+2013-12-03,"AE","Nucella_ostrina","Nucella_canaliculata",0,0,3,NA,3.8095238095238,9.42,NA,NA
+2013-12-03,"AE","Nucella_ostrina","Nucella_ostrina",0,0,0,NA,3.8095238095238,9.42,NA,NA
+2013-12-03,"AE","Pollicipes_polymerus","Nucella_canaliculata",0,0,3,NA,0,9.42,NA,NA
+2013-12-03,"AE","Pollicipes_polymerus","Nucella_ostrina",0,0,0,NA,0,9.42,NA,NA
+2013-12-03,"AE","Semibalanus_cariosus","Nucella_canaliculata",0,0,3,NA,0,9.42,NA,NA
+2013-12-03,"AE","Semibalanus_cariosus","Nucella_ostrina",0,0,0,NA,0,9.42,NA,NA
+2013-12-03,"AF","Adula_californiensis","Nucella_canaliculata",0,0,29,NA,0,9.42,NA,NA
+2013-12-03,"AF","Adula_californiensis","Nucella_ostrina",0,0,9,NA,0,9.42,NA,NA
+2013-12-03,"AF","Balanus_glandula","Nucella_canaliculata",0.115384615384615,3,29,59.6489366705659,53248,9.42,3.63280344162386e-08,0.00193439517659587
+2013-12-03,"AF","Balanus_glandula","Nucella_ostrina",0,0,9,NA,53248,9.42,NA,NA
+2013-12-03,"AF","Chthamalus_dalli","Nucella_canaliculata",0,0,29,NA,0,9.42,NA,NA
+2013-12-03,"AF","Chthamalus_dalli","Nucella_ostrina",0,0,9,NA,0,9.42,NA,NA
+2013-12-03,"AF","Hiatella_arctica","Nucella_canaliculata",0,0,29,NA,0,9.42,NA,NA
+2013-12-03,"AF","Hiatella_arctica","Nucella_ostrina",0,0,9,NA,0,9.42,NA,NA
+2013-12-03,"AF","Limpets","Nucella_canaliculata",0,0,29,NA,377.142857142857,9.42,NA,NA
+2013-12-03,"AF","Limpets","Nucella_ostrina",0,0,9,NA,377.142857142857,9.42,NA,NA
+2013-12-03,"AF","Littorina_sitkana","Nucella_canaliculata",0,0,29,NA,1325.71428571428,9.42,NA,NA
+2013-12-03,"AF","Littorina_sitkana","Nucella_ostrina",0,0,9,NA,1325.71428571428,9.42,NA,NA
+2013-12-03,"AF","Modiolus_modiolus","Nucella_canaliculata",0,0,29,NA,0,9.42,NA,NA
+2013-12-03,"AF","Modiolus_modiolus","Nucella_ostrina",0,0,9,NA,0,9.42,NA,NA
+2013-12-03,"AF","Mytilus_californianus","Nucella_canaliculata",0,0,29,NA,0,9.42,NA,NA
+2013-12-03,"AF","Mytilus_californianus","Nucella_ostrina",0,0,9,NA,0,9.42,NA,NA
+2013-12-03,"AF","Mytilus_trossulus","Nucella_canaliculata",0,0,29,NA,8921.90476190476,9.42,NA,NA
+2013-12-03,"AF","Mytilus_trossulus","Nucella_ostrina",0,0,9,NA,8921.90476190476,9.42,NA,NA
+2013-12-03,"AF","Nucella_ostrina","Nucella_canaliculata",0,0,29,NA,7.6190476190476,9.42,NA,NA
+2013-12-03,"AF","Nucella_ostrina","Nucella_ostrina",0,0,9,NA,7.6190476190476,9.42,NA,NA
+2013-12-03,"AF","Pollicipes_polymerus","Nucella_canaliculata",0,0,29,NA,0,9.42,NA,NA
+2013-12-03,"AF","Pollicipes_polymerus","Nucella_ostrina",0,0,9,NA,0,9.42,NA,NA
+2013-12-03,"AF","Semibalanus_cariosus","Nucella_canaliculata",0,0,29,NA,0,9.42,NA,NA
+2013-12-03,"AF","Semibalanus_cariosus","Nucella_ostrina",0,0,9,NA,0,9.42,NA,NA
+2013-12-03,"AG","Adula_californiensis","Nucella_canaliculata",0,0,7,NA,0,9.42,NA,NA
+2013-12-03,"AG","Adula_californiensis","Nucella_ostrina",0,0,4,NA,0,9.42,NA,NA
+2013-12-03,"AG","Balanus_glandula","Nucella_canaliculata",0,0,7,NA,58432,9.42,NA,NA
+2013-12-03,"AG","Balanus_glandula","Nucella_ostrina",0,0,4,NA,58432,9.42,NA,NA
+2013-12-03,"AG","Chthamalus_dalli","Nucella_canaliculata",0,0,7,NA,563.2,9.42,NA,NA
+2013-12-03,"AG","Chthamalus_dalli","Nucella_ostrina",0,0,4,NA,563.2,9.42,NA,NA
+2013-12-03,"AG","Hiatella_arctica","Nucella_canaliculata",0,0,7,NA,0,9.42,NA,NA
+2013-12-03,"AG","Hiatella_arctica","Nucella_ostrina",0,0,4,NA,0,9.42,NA,NA
+2013-12-03,"AG","Limpets","Nucella_canaliculata",0,0,7,NA,258.285714285714,9.42,NA,NA
+2013-12-03,"AG","Limpets","Nucella_ostrina",0,0,4,NA,258.285714285714,9.42,NA,NA
+2013-12-03,"AG","Littorina_sitkana","Nucella_canaliculata",0,0,7,NA,717.714285714285,9.42,NA,NA
+2013-12-03,"AG","Littorina_sitkana","Nucella_ostrina",0,0,4,NA,717.714285714285,9.42,NA,NA
+2013-12-03,"AG","Modiolus_modiolus","Nucella_canaliculata",0,0,7,NA,0,9.42,NA,NA
+2013-12-03,"AG","Modiolus_modiolus","Nucella_ostrina",0,0,4,NA,0,9.42,NA,NA
+2013-12-03,"AG","Mytilus_californianus","Nucella_canaliculata",0,0,7,NA,0,9.42,NA,NA
+2013-12-03,"AG","Mytilus_californianus","Nucella_ostrina",0,0,4,NA,0,9.42,NA,NA
+2013-12-03,"AG","Mytilus_trossulus","Nucella_canaliculata",0,0,7,NA,2592,9.42,NA,NA
+2013-12-03,"AG","Mytilus_trossulus","Nucella_ostrina",0,0,4,NA,2592,9.42,NA,NA
+2013-12-03,"AG","Nucella_ostrina","Nucella_canaliculata",0,0,7,NA,6.85714285714286,9.42,NA,NA
+2013-12-03,"AG","Nucella_ostrina","Nucella_ostrina",0,0,4,NA,6.85714285714286,9.42,NA,NA
+2013-12-03,"AG","Pollicipes_polymerus","Nucella_canaliculata",0,0,7,NA,0,9.42,NA,NA
+2013-12-03,"AG","Pollicipes_polymerus","Nucella_ostrina",0,0,4,NA,0,9.42,NA,NA
+2013-12-03,"AG","Semibalanus_cariosus","Nucella_canaliculata",0,0,7,NA,0,9.42,NA,NA
+2013-12-03,"AG","Semibalanus_cariosus","Nucella_ostrina",0,0,4,NA,0,9.42,NA,NA
+2013-12-03,"B","Adula_californiensis","Nucella_canaliculata",0,0,35,NA,0,9.42,NA,NA
+2013-12-03,"B","Adula_californiensis","Nucella_ostrina",0,0,2,NA,0,9.42,NA,NA
+2013-12-03,"B","Balanus_glandula","Nucella_canaliculata",0.137931034482759,4,35,23.7075929880466,36292.8253968254,9.42,1.60307466810601e-07,0.00581801090276451
+2013-12-03,"B","Balanus_glandula","Nucella_ostrina",0,0,2,NA,36292.8253968254,9.42,NA,NA
+2013-12-03,"B","Chthamalus_dalli","Nucella_canaliculata",0.0344827586206897,1,35,13.8541818749988,0,9.42,Inf,0.00248897834111137
+2013-12-03,"B","Chthamalus_dalli","Nucella_ostrina",0,0,2,NA,0,9.42,NA,NA
+2013-12-03,"B","Hiatella_arctica","Nucella_canaliculata",0,0,35,NA,0,9.42,NA,NA
+2013-12-03,"B","Hiatella_arctica","Nucella_ostrina",0,0,2,NA,0,9.42,NA,NA
+2013-12-03,"B","Limpets","Nucella_canaliculata",0,0,35,NA,2206.98412698413,9.42,NA,NA
+2013-12-03,"B","Limpets","Nucella_ostrina",0,0,2,NA,2206.98412698413,9.42,NA,NA
+2013-12-03,"B","Littorina_sitkana","Nucella_canaliculata",0,0,35,NA,171.428571428572,9.42,NA,NA
+2013-12-03,"B","Littorina_sitkana","Nucella_ostrina",0,0,2,NA,171.428571428572,9.42,NA,NA
+2013-12-03,"B","Modiolus_modiolus","Nucella_canaliculata",0,0,35,NA,0,9.42,NA,NA
+2013-12-03,"B","Modiolus_modiolus","Nucella_ostrina",0,0,2,NA,0,9.42,NA,NA
+2013-12-03,"B","Mytilus_californianus","Nucella_canaliculata",0,0,35,NA,19.047619047619,9.42,NA,NA
+2013-12-03,"B","Mytilus_californianus","Nucella_ostrina",0,0,2,NA,19.047619047619,9.42,NA,NA
+2013-12-03,"B","Mytilus_trossulus","Nucella_canaliculata",0.0344827586206897,1,35,31.1177959151975,3682.53968253968,9.42,3.00916317530934e-07,0.00110813628043138
+2013-12-03,"B","Mytilus_trossulus","Nucella_ostrina",0,0,2,NA,3682.53968253968,9.42,NA,NA
+2013-12-03,"B","Nucella_ostrina","Nucella_canaliculata",0,0,35,NA,3.80952380952381,9.42,NA,NA
+2013-12-03,"B","Nucella_ostrina","Nucella_ostrina",0,0,2,NA,3.80952380952381,9.42,NA,NA
+2013-12-03,"B","Pollicipes_polymerus","Nucella_canaliculata",0,0,35,NA,10.1587301587302,9.42,NA,NA
+2013-12-03,"B","Pollicipes_polymerus","Nucella_ostrina",0,0,2,NA,10.1587301587302,9.42,NA,NA
+2013-12-03,"B","Semibalanus_cariosus","Nucella_canaliculata",0,0,35,NA,0,9.42,NA,NA
+2013-12-03,"B","Semibalanus_cariosus","Nucella_ostrina",0,0,2,NA,0,9.42,NA,NA
+2013-12-03,"BB","Adula_californiensis","Nucella_canaliculata",0,0,2,NA,0,9.42,NA,NA
+2013-12-03,"BB","Adula_californiensis","Nucella_ostrina",0,0,11,NA,0,9.42,NA,NA
+2013-12-03,"BB","Balanus_glandula","Nucella_canaliculata",0,0,2,NA,62336,9.42,NA,NA
+2013-12-03,"BB","Balanus_glandula","Nucella_ostrina",0,0,11,NA,62336,9.42,NA,NA
+2013-12-03,"BB","Chthamalus_dalli","Nucella_canaliculata",0,0,2,NA,1749.33333333333,9.42,NA,NA
+2013-12-03,"BB","Chthamalus_dalli","Nucella_ostrina",0,0,11,NA,1749.33333333333,9.42,NA,NA
+2013-12-03,"BB","Hiatella_arctica","Nucella_canaliculata",0,0,2,NA,0,9.42,NA,NA
+2013-12-03,"BB","Hiatella_arctica","Nucella_ostrina",0,0,11,NA,0,9.42,NA,NA
+2013-12-03,"BB","Limpets","Nucella_canaliculata",0,0,2,NA,133.333333333333,9.42,NA,NA
+2013-12-03,"BB","Limpets","Nucella_ostrina",0,0,11,NA,133.333333333333,9.42,NA,NA
+2013-12-03,"BB","Littorina_sitkana","Nucella_canaliculata",0,0,2,NA,1760,9.42,NA,NA
+2013-12-03,"BB","Littorina_sitkana","Nucella_ostrina",0,0,11,NA,1760,9.42,NA,NA
+2013-12-03,"BB","Modiolus_modiolus","Nucella_canaliculata",0,0,2,NA,0,9.42,NA,NA
+2013-12-03,"BB","Modiolus_modiolus","Nucella_ostrina",0,0,11,NA,0,9.42,NA,NA
+2013-12-03,"BB","Mytilus_californianus","Nucella_canaliculata",0,0,2,NA,0,9.42,NA,NA
+2013-12-03,"BB","Mytilus_californianus","Nucella_ostrina",0,0,11,NA,0,9.42,NA,NA
+2013-12-03,"BB","Mytilus_trossulus","Nucella_canaliculata",0,0,2,NA,3417.14285714285,9.42,NA,NA
+2013-12-03,"BB","Mytilus_trossulus","Nucella_ostrina",0,0,11,NA,3417.14285714285,9.42,NA,NA
+2013-12-03,"BB","Nucella_ostrina","Nucella_canaliculata",0,0,2,NA,0,9.42,NA,NA
+2013-12-03,"BB","Nucella_ostrina","Nucella_ostrina",0,0,11,NA,0,9.42,NA,NA
+2013-12-03,"BB","Pollicipes_polymerus","Nucella_canaliculata",0,0,2,NA,22.8571428571429,9.42,NA,NA
+2013-12-03,"BB","Pollicipes_polymerus","Nucella_ostrina",0,0,11,NA,22.8571428571429,9.42,NA,NA
+2013-12-03,"BB","Semibalanus_cariosus","Nucella_canaliculata",0,0,2,NA,0,9.42,NA,NA
+2013-12-03,"BB","Semibalanus_cariosus","Nucella_ostrina",0,0,11,NA,0,9.42,NA,NA
+2013-12-03,"BC","Adula_californiensis","Nucella_canaliculata",0,0,1,NA,0,9.42,NA,NA
+2013-12-03,"BC","Adula_californiensis","Nucella_ostrina",0,0,1,NA,0,9.42,NA,NA
+2013-12-03,"BC","Balanus_glandula","Nucella_canaliculata",0,0,1,NA,92821.3333333333,9.42,NA,NA
+2013-12-03,"BC","Balanus_glandula","Nucella_ostrina",0,0,1,NA,92821.3333333333,9.42,NA,NA
+2013-12-03,"BC","Chthamalus_dalli","Nucella_canaliculata",0,0,1,NA,0,9.42,NA,NA
+2013-12-03,"BC","Chthamalus_dalli","Nucella_ostrina",0,0,1,NA,0,9.42,NA,NA
+2013-12-03,"BC","Hiatella_arctica","Nucella_canaliculata",0,0,1,NA,0,9.42,NA,NA
+2013-12-03,"BC","Hiatella_arctica","Nucella_ostrina",0,0,1,NA,0,9.42,NA,NA
+2013-12-03,"BC","Limpets","Nucella_canaliculata",0,0,1,NA,121.904761904762,9.42,NA,NA
+2013-12-03,"BC","Limpets","Nucella_ostrina",0,0,1,NA,121.904761904762,9.42,NA,NA
+2013-12-03,"BC","Littorina_sitkana","Nucella_canaliculata",0,0,1,NA,1260.95238095238,9.42,NA,NA
+2013-12-03,"BC","Littorina_sitkana","Nucella_ostrina",0,0,1,NA,1260.95238095238,9.42,NA,NA
+2013-12-03,"BC","Modiolus_modiolus","Nucella_canaliculata",0,0,1,NA,0,9.42,NA,NA
+2013-12-03,"BC","Modiolus_modiolus","Nucella_ostrina",0,0,1,NA,0,9.42,NA,NA
+2013-12-03,"BC","Mytilus_californianus","Nucella_canaliculata",0,0,1,NA,0,9.42,NA,NA
+2013-12-03,"BC","Mytilus_californianus","Nucella_ostrina",0,0,1,NA,0,9.42,NA,NA
+2013-12-03,"BC","Mytilus_trossulus","Nucella_canaliculata",0,0,1,NA,3512.38095238095,9.42,NA,NA
+2013-12-03,"BC","Mytilus_trossulus","Nucella_ostrina",0,0,1,NA,3512.38095238095,9.42,NA,NA
+2013-12-03,"BC","Nucella_ostrina","Nucella_canaliculata",0,0,1,NA,0,9.42,NA,NA
+2013-12-03,"BC","Nucella_ostrina","Nucella_ostrina",0,0,1,NA,0,9.42,NA,NA
+2013-12-03,"BC","Pollicipes_polymerus","Nucella_canaliculata",0,0,1,NA,0,9.42,NA,NA
+2013-12-03,"BC","Pollicipes_polymerus","Nucella_ostrina",0,0,1,NA,0,9.42,NA,NA
+2013-12-03,"BC","Semibalanus_cariosus","Nucella_canaliculata",0,0,1,NA,0,9.42,NA,NA
+2013-12-03,"BC","Semibalanus_cariosus","Nucella_ostrina",0,0,1,NA,0,9.42,NA,NA
+2013-12-03,"BD","Adula_californiensis","Nucella_canaliculata",0,0,1,NA,0,9.42,NA,NA
+2013-12-03,"BD","Adula_californiensis","Nucella_ostrina",0,0,0,NA,0,9.42,NA,NA
+2013-12-03,"BD","Balanus_glandula","Nucella_canaliculata",0,0,1,NA,142293.333333333,9.42,NA,NA
+2013-12-03,"BD","Balanus_glandula","Nucella_ostrina",0,0,0,NA,142293.333333333,9.42,NA,NA
+2013-12-03,"BD","Chthamalus_dalli","Nucella_canaliculata",0,0,1,NA,576,9.42,NA,NA
+2013-12-03,"BD","Chthamalus_dalli","Nucella_ostrina",0,0,0,NA,576,9.42,NA,NA
+2013-12-03,"BD","Hiatella_arctica","Nucella_canaliculata",0,0,1,NA,0,9.42,NA,NA
+2013-12-03,"BD","Hiatella_arctica","Nucella_ostrina",0,0,0,NA,0,9.42,NA,NA
+2013-12-03,"BD","Limpets","Nucella_canaliculata",0,0,1,NA,3409.52380952381,9.42,NA,NA
+2013-12-03,"BD","Limpets","Nucella_ostrina",0,0,0,NA,3409.52380952381,9.42,NA,NA
+2013-12-03,"BD","Littorina_sitkana","Nucella_canaliculata",0,0,1,NA,3497.14285714286,9.42,NA,NA
+2013-12-03,"BD","Littorina_sitkana","Nucella_ostrina",0,0,0,NA,3497.14285714286,9.42,NA,NA
+2013-12-03,"BD","Modiolus_modiolus","Nucella_canaliculata",0,0,1,NA,0,9.42,NA,NA
+2013-12-03,"BD","Modiolus_modiolus","Nucella_ostrina",0,0,0,NA,0,9.42,NA,NA
+2013-12-03,"BD","Mytilus_californianus","Nucella_canaliculata",0,0,1,NA,0,9.42,NA,NA
+2013-12-03,"BD","Mytilus_californianus","Nucella_ostrina",0,0,0,NA,0,9.42,NA,NA
+2013-12-03,"BD","Mytilus_trossulus","Nucella_canaliculata",0,0,1,NA,11120,9.42,NA,NA
+2013-12-03,"BD","Mytilus_trossulus","Nucella_ostrina",0,0,0,NA,11120,9.42,NA,NA
+2013-12-03,"BD","Nucella_ostrina","Nucella_canaliculata",0,0,1,NA,22.8571428571429,9.42,NA,NA
+2013-12-03,"BD","Nucella_ostrina","Nucella_ostrina",0,0,0,NA,22.8571428571429,9.42,NA,NA
+2013-12-03,"BD","Pollicipes_polymerus","Nucella_canaliculata",0,0,1,NA,255.238095238095,9.42,NA,NA
+2013-12-03,"BD","Pollicipes_polymerus","Nucella_ostrina",0,0,0,NA,255.238095238095,9.42,NA,NA
+2013-12-03,"BD","Semibalanus_cariosus","Nucella_canaliculata",0,0,1,NA,0,9.42,NA,NA
+2013-12-03,"BD","Semibalanus_cariosus","Nucella_ostrina",0,0,0,NA,0,9.42,NA,NA
+2013-12-03,"BE","Adula_californiensis","Nucella_canaliculata",0,0,11,NA,0,9.42,NA,NA
+2013-12-03,"BE","Adula_californiensis","Nucella_ostrina",0,0,4,NA,0,9.42,NA,NA
+2013-12-03,"BE","Balanus_glandula","Nucella_canaliculata",0,0,11,NA,51456,9.42,NA,NA
+2013-12-03,"BE","Balanus_glandula","Nucella_ostrina",0,0,4,NA,51456,9.42,NA,NA
+2013-12-03,"BE","Chthamalus_dalli","Nucella_canaliculata",0,0,11,NA,0,9.42,NA,NA
+2013-12-03,"BE","Chthamalus_dalli","Nucella_ostrina",0,0,4,NA,0,9.42,NA,NA
+2013-12-03,"BE","Hiatella_arctica","Nucella_canaliculata",0,0,11,NA,0,9.42,NA,NA
+2013-12-03,"BE","Hiatella_arctica","Nucella_ostrina",0,0,4,NA,0,9.42,NA,NA
+2013-12-03,"BE","Limpets","Nucella_canaliculata",0,0,11,NA,308.571428571429,9.42,NA,NA
+2013-12-03,"BE","Limpets","Nucella_ostrina",0,0,4,NA,308.571428571429,9.42,NA,NA
+2013-12-03,"BE","Littorina_sitkana","Nucella_canaliculata",0,0,11,NA,1085.71428571429,9.42,NA,NA
+2013-12-03,"BE","Littorina_sitkana","Nucella_ostrina",0,0,4,NA,1085.71428571429,9.42,NA,NA
+2013-12-03,"BE","Modiolus_modiolus","Nucella_canaliculata",0,0,11,NA,0,9.42,NA,NA
+2013-12-03,"BE","Modiolus_modiolus","Nucella_ostrina",0,0,4,NA,0,9.42,NA,NA
+2013-12-03,"BE","Mytilus_californianus","Nucella_canaliculata",0,0,11,NA,0,9.42,NA,NA
+2013-12-03,"BE","Mytilus_californianus","Nucella_ostrina",0,0,4,NA,0,9.42,NA,NA
+2013-12-03,"BE","Mytilus_trossulus","Nucella_canaliculata",0.1,1,11,23.4270027488354,1611.42857142857,9.42,2.64894055180565e-06,0.00426857848919539
+2013-12-03,"BE","Mytilus_trossulus","Nucella_ostrina",0.333333333333333,1,4,27.4840975972332,1611.42857142857,9.42,7.52638107292267e-06,0.0121282255003668
+2013-12-03,"BE","Nucella_ostrina","Nucella_canaliculata",0,0,11,NA,22.8571428571429,9.42,NA,NA
+2013-12-03,"BE","Nucella_ostrina","Nucella_ostrina",0,0,4,NA,22.8571428571429,9.42,NA,NA
+2013-12-03,"BE","Pollicipes_polymerus","Nucella_canaliculata",0,0,11,NA,0,9.42,NA,NA
+2013-12-03,"BE","Pollicipes_polymerus","Nucella_ostrina",0,0,4,NA,0,9.42,NA,NA
+2013-12-03,"BE","Semibalanus_cariosus","Nucella_canaliculata",0,0,11,NA,0,9.42,NA,NA
+2013-12-03,"BE","Semibalanus_cariosus","Nucella_ostrina",0,0,4,NA,0,9.42,NA,NA
+2013-12-03,"BF","Adula_californiensis","Nucella_canaliculata",0,0,10,NA,0,9.42,NA,NA
+2013-12-03,"BF","Adula_californiensis","Nucella_ostrina",0,0,11,NA,0,9.42,NA,NA
+2013-12-03,"BF","Balanus_glandula","Nucella_canaliculata",0,0,10,NA,36544,9.42,NA,NA
+2013-12-03,"BF","Balanus_glandula","Nucella_ostrina",0,0,11,NA,36544,9.42,NA,NA
+2013-12-03,"BF","Chthamalus_dalli","Nucella_canaliculata",0,0,10,NA,0,9.42,NA,NA
+2013-12-03,"BF","Chthamalus_dalli","Nucella_ostrina",0,0,11,NA,0,9.42,NA,NA
+2013-12-03,"BF","Hiatella_arctica","Nucella_canaliculata",0,0,10,NA,0,9.42,NA,NA
+2013-12-03,"BF","Hiatella_arctica","Nucella_ostrina",0,0,11,NA,0,9.42,NA,NA
+2013-12-03,"BF","Limpets","Nucella_canaliculata",0,0,10,NA,605.714285714286,9.42,NA,NA
+2013-12-03,"BF","Limpets","Nucella_ostrina",0,0,11,NA,605.714285714286,9.42,NA,NA
+2013-12-03,"BF","Littorina_sitkana","Nucella_canaliculata",0,0,10,NA,2994.28571428571,9.42,NA,NA
+2013-12-03,"BF","Littorina_sitkana","Nucella_ostrina",0,0,11,NA,2994.28571428571,9.42,NA,NA
+2013-12-03,"BF","Modiolus_modiolus","Nucella_canaliculata",0,0,10,NA,0,9.42,NA,NA
+2013-12-03,"BF","Modiolus_modiolus","Nucella_ostrina",0,0,11,NA,0,9.42,NA,NA
+2013-12-03,"BF","Mytilus_californianus","Nucella_canaliculata",0,0,10,NA,0,9.42,NA,NA
+2013-12-03,"BF","Mytilus_californianus","Nucella_ostrina",0,0,11,NA,0,9.42,NA,NA
+2013-12-03,"BF","Mytilus_trossulus","Nucella_canaliculata",0,0,10,NA,48640,9.42,NA,NA
+2013-12-03,"BF","Mytilus_trossulus","Nucella_ostrina",0,0,11,NA,48640,9.42,NA,NA
+2013-12-03,"BF","Nucella_ostrina","Nucella_canaliculata",0,0,10,NA,11.4285714285714,9.42,NA,NA
+2013-12-03,"BF","Nucella_ostrina","Nucella_ostrina",0,0,11,NA,11.4285714285714,9.42,NA,NA
+2013-12-03,"BF","Pollicipes_polymerus","Nucella_canaliculata",0,0,10,NA,0,9.42,NA,NA
+2013-12-03,"BF","Pollicipes_polymerus","Nucella_ostrina",0,0,11,NA,0,9.42,NA,NA
+2013-12-03,"BF","Semibalanus_cariosus","Nucella_canaliculata",0,0,10,NA,0,9.42,NA,NA
+2013-12-03,"BF","Semibalanus_cariosus","Nucella_ostrina",0,0,11,NA,0,9.42,NA,NA
+2013-12-03,"C","Adula_californiensis","Nucella_canaliculata",0,0,15,NA,0,9.42,NA,NA
+2013-12-03,"C","Adula_californiensis","Nucella_ostrina",0,0,0,NA,0,9.42,NA,NA
+2013-12-03,"C","Balanus_glandula","Nucella_canaliculata",0.153846153846154,2,15,47.3125956378721,59157.3333333333,9.42,5.49669044659687e-08,0.0032516954897948
+2013-12-03,"C","Balanus_glandula","Nucella_ostrina",0,0,0,NA,59157.3333333333,9.42,NA,NA
+2013-12-03,"C","Chthamalus_dalli","Nucella_canaliculata",0,0,15,NA,1450.66666666667,9.42,NA,NA
+2013-12-03,"C","Chthamalus_dalli","Nucella_ostrina",0,0,0,NA,1450.66666666667,9.42,NA,NA
+2013-12-03,"C","Hiatella_arctica","Nucella_canaliculata",0,0,15,NA,0,9.42,NA,NA
+2013-12-03,"C","Hiatella_arctica","Nucella_ostrina",0,0,0,NA,0,9.42,NA,NA
+2013-12-03,"C","Limpets","Nucella_canaliculata",0,0,15,NA,613.333333333333,9.42,NA,NA
+2013-12-03,"C","Limpets","Nucella_ostrina",0,0,0,NA,613.333333333333,9.42,NA,NA
+2013-12-03,"C","Littorina_sitkana","Nucella_canaliculata",0,0,15,NA,323.809523809524,9.42,NA,NA
+2013-12-03,"C","Littorina_sitkana","Nucella_ostrina",0,0,0,NA,323.809523809524,9.42,NA,NA
+2013-12-03,"C","Modiolus_modiolus","Nucella_canaliculata",0,0,15,NA,0,9.42,NA,NA
+2013-12-03,"C","Modiolus_modiolus","Nucella_ostrina",0,0,0,NA,0,9.42,NA,NA
+2013-12-03,"C","Mytilus_californianus","Nucella_canaliculata",0,0,15,NA,0,9.42,NA,NA
+2013-12-03,"C","Mytilus_californianus","Nucella_ostrina",0,0,0,NA,0,9.42,NA,NA
+2013-12-03,"C","Mytilus_trossulus","Nucella_canaliculata",0,0,15,NA,5356.19047619048,9.42,NA,NA
+2013-12-03,"C","Mytilus_trossulus","Nucella_ostrina",0,0,0,NA,5356.19047619048,9.42,NA,NA
+2013-12-03,"C","Nucella_ostrina","Nucella_canaliculata",0,0,15,NA,0,9.42,NA,NA
+2013-12-03,"C","Nucella_ostrina","Nucella_ostrina",0,0,0,NA,0,9.42,NA,NA
+2013-12-03,"C","Pollicipes_polymerus","Nucella_canaliculata",0,0,15,NA,0,9.42,NA,NA
+2013-12-03,"C","Pollicipes_polymerus","Nucella_ostrina",0,0,0,NA,0,9.42,NA,NA
+2013-12-03,"C","Semibalanus_cariosus","Nucella_canaliculata",0,0,15,NA,0,9.42,NA,NA
+2013-12-03,"C","Semibalanus_cariosus","Nucella_ostrina",0,0,0,NA,0,9.42,NA,NA
+2013-12-03,"D","Adula_californiensis","Nucella_canaliculata",0,0,5,NA,0,9.42,NA,NA
+2013-12-03,"D","Adula_californiensis","Nucella_ostrina",0,0,0,NA,0,9.42,NA,NA
+2013-12-03,"D","Balanus_glandula","Nucella_canaliculata",0.25,1,5,27.3999443451412,92394.6666666667,9.42,9.87514372126619e-08,0.00912410612411816
+2013-12-03,"D","Balanus_glandula","Nucella_ostrina",0,0,0,NA,92394.6666666667,9.42,NA,NA
+2013-12-03,"D","Chthamalus_dalli","Nucella_canaliculata",0,0,5,NA,64,9.42,NA,NA
+2013-12-03,"D","Chthamalus_dalli","Nucella_ostrina",0,0,0,NA,64,9.42,NA,NA
+2013-12-03,"D","Hiatella_arctica","Nucella_canaliculata",0,0,5,NA,0,9.42,NA,NA
+2013-12-03,"D","Hiatella_arctica","Nucella_ostrina",0,0,0,NA,0,9.42,NA,NA
+2013-12-03,"D","Limpets","Nucella_canaliculata",0,0,5,NA,1264.7619047619,9.42,NA,NA
+2013-12-03,"D","Limpets","Nucella_ostrina",0,0,0,NA,1264.7619047619,9.42,NA,NA
+2013-12-03,"D","Littorina_sitkana","Nucella_canaliculata",0,0,5,NA,2518.09523809524,9.42,NA,NA
+2013-12-03,"D","Littorina_sitkana","Nucella_ostrina",0,0,0,NA,2518.09523809524,9.42,NA,NA
+2013-12-03,"D","Modiolus_modiolus","Nucella_canaliculata",0,0,5,NA,0,9.42,NA,NA
+2013-12-03,"D","Modiolus_modiolus","Nucella_ostrina",0,0,0,NA,0,9.42,NA,NA
+2013-12-03,"D","Mytilus_californianus","Nucella_canaliculata",0,0,5,NA,0,9.42,NA,NA
+2013-12-03,"D","Mytilus_californianus","Nucella_ostrina",0,0,0,NA,0,9.42,NA,NA
+2013-12-03,"D","Mytilus_trossulus","Nucella_canaliculata",0,0,5,NA,9447.61904761903,9.42,NA,NA
+2013-12-03,"D","Mytilus_trossulus","Nucella_ostrina",0,0,0,NA,9447.61904761903,9.42,NA,NA
+2013-12-03,"D","Nucella_ostrina","Nucella_canaliculata",0,0,5,NA,19.047619047619,9.42,NA,NA
+2013-12-03,"D","Nucella_ostrina","Nucella_ostrina",0,0,0,NA,19.047619047619,9.42,NA,NA
+2013-12-03,"D","Pollicipes_polymerus","Nucella_canaliculata",0,0,5,NA,0,9.42,NA,NA
+2013-12-03,"D","Pollicipes_polymerus","Nucella_ostrina",0,0,0,NA,0,9.42,NA,NA
+2013-12-03,"D","Semibalanus_cariosus","Nucella_canaliculata",0,0,5,NA,0,9.42,NA,NA
+2013-12-03,"D","Semibalanus_cariosus","Nucella_ostrina",0,0,0,NA,0,9.42,NA,NA
+2013-12-03,"E","Adula_californiensis","Nucella_canaliculata",0,0,5,NA,0,9.42,NA,NA
+2013-12-03,"E","Adula_californiensis","Nucella_ostrina",0,0,1,NA,0,9.42,NA,NA
+2013-12-03,"E","Balanus_glandula","Nucella_canaliculata",0.666666666666667,2,5,39.932405583518,49258.6666666667,9.42,3.38922667034581e-07,0.0166948786812341
+2013-12-03,"E","Balanus_glandula","Nucella_ostrina",0,0,1,NA,49258.6666666667,9.42,NA,NA
+2013-12-03,"E","Chthamalus_dalli","Nucella_canaliculata",0,0,5,NA,0,9.42,NA,NA
+2013-12-03,"E","Chthamalus_dalli","Nucella_ostrina",0,0,1,NA,0,9.42,NA,NA
+2013-12-03,"E","Hiatella_arctica","Nucella_canaliculata",0,0,5,NA,0,9.42,NA,NA
+2013-12-03,"E","Hiatella_arctica","Nucella_ostrina",0,0,1,NA,0,9.42,NA,NA
+2013-12-03,"E","Limpets","Nucella_canaliculata",0,0,5,NA,87.6190476190478,9.42,NA,NA
+2013-12-03,"E","Limpets","Nucella_ostrina",0,0,1,NA,87.6190476190478,9.42,NA,NA
+2013-12-03,"E","Littorina_sitkana","Nucella_canaliculata",0,0,5,NA,224.761904761905,9.42,NA,NA
+2013-12-03,"E","Littorina_sitkana","Nucella_ostrina",0,0,1,NA,224.761904761905,9.42,NA,NA
+2013-12-03,"E","Modiolus_modiolus","Nucella_canaliculata",0,0,5,NA,0,9.42,NA,NA
+2013-12-03,"E","Modiolus_modiolus","Nucella_ostrina",0,0,1,NA,0,9.42,NA,NA
+2013-12-03,"E","Mytilus_californianus","Nucella_canaliculata",0,0,5,NA,0,9.42,NA,NA
+2013-12-03,"E","Mytilus_californianus","Nucella_ostrina",0,0,1,NA,0,9.42,NA,NA
+2013-12-03,"E","Mytilus_trossulus","Nucella_canaliculata",0,0,5,NA,4700.95238095238,9.42,NA,NA
+2013-12-03,"E","Mytilus_trossulus","Nucella_ostrina",Inf,1,1,40.2090341810026,4700.95238095238,9.42,5.29042432490606e-06,0.0248700328264155
+2013-12-03,"E","Nucella_ostrina","Nucella_canaliculata",0,0,5,NA,3.8095238095238,9.42,NA,NA
+2013-12-03,"E","Nucella_ostrina","Nucella_ostrina",0,0,1,NA,3.8095238095238,9.42,NA,NA
+2013-12-03,"E","Pollicipes_polymerus","Nucella_canaliculata",0,0,5,NA,0,9.42,NA,NA
+2013-12-03,"E","Pollicipes_polymerus","Nucella_ostrina",0,0,1,NA,0,9.42,NA,NA
+2013-12-03,"E","Semibalanus_cariosus","Nucella_canaliculata",0,0,5,NA,0,9.42,NA,NA
+2013-12-03,"E","Semibalanus_cariosus","Nucella_ostrina",0,0,1,NA,0,9.42,NA,NA
+2013-12-03,"F","Adula_californiensis","Nucella_canaliculata",0,0,2,NA,0,9.42,NA,NA
+2013-12-03,"F","Adula_californiensis","Nucella_ostrina",0,0,0,NA,0,9.42,NA,NA
+2013-12-03,"F","Balanus_glandula","Nucella_canaliculata",0,0,2,NA,105109.333333333,9.42,NA,NA
+2013-12-03,"F","Balanus_glandula","Nucella_ostrina",0,0,0,NA,105109.333333333,9.42,NA,NA
+2013-12-03,"F","Chthamalus_dalli","Nucella_canaliculata",0,0,2,NA,298.666666666667,9.42,NA,NA
+2013-12-03,"F","Chthamalus_dalli","Nucella_ostrina",0,0,0,NA,298.666666666667,9.42,NA,NA
+2013-12-03,"F","Hiatella_arctica","Nucella_canaliculata",0,0,2,NA,0,9.42,NA,NA
+2013-12-03,"F","Hiatella_arctica","Nucella_ostrina",0,0,0,NA,0,9.42,NA,NA
+2013-12-03,"F","Limpets","Nucella_canaliculata",0,0,2,NA,5836.19047619048,9.42,NA,NA
+2013-12-03,"F","Limpets","Nucella_ostrina",0,0,0,NA,5836.19047619048,9.42,NA,NA
+2013-12-03,"F","Littorina_sitkana","Nucella_canaliculata",0,0,2,NA,2883.80952380952,9.42,NA,NA
+2013-12-03,"F","Littorina_sitkana","Nucella_ostrina",0,0,0,NA,2883.80952380952,9.42,NA,NA
+2013-12-03,"F","Modiolus_modiolus","Nucella_canaliculata",0,0,2,NA,0,9.42,NA,NA
+2013-12-03,"F","Modiolus_modiolus","Nucella_ostrina",0,0,0,NA,0,9.42,NA,NA
+2013-12-03,"F","Mytilus_californianus","Nucella_canaliculata",0,0,2,NA,0,9.42,NA,NA
+2013-12-03,"F","Mytilus_californianus","Nucella_ostrina",0,0,0,NA,0,9.42,NA,NA
+2013-12-03,"F","Mytilus_trossulus","Nucella_canaliculata",0,0,2,NA,6426.66666666667,9.42,NA,NA
+2013-12-03,"F","Mytilus_trossulus","Nucella_ostrina",0,0,0,NA,6426.66666666667,9.42,NA,NA
+2013-12-03,"F","Nucella_ostrina","Nucella_canaliculata",0,0,2,NA,0,9.42,NA,NA
+2013-12-03,"F","Nucella_ostrina","Nucella_ostrina",0,0,0,NA,0,9.42,NA,NA
+2013-12-03,"F","Pollicipes_polymerus","Nucella_canaliculata",0,0,2,NA,0,9.42,NA,NA
+2013-12-03,"F","Pollicipes_polymerus","Nucella_ostrina",0,0,0,NA,0,9.42,NA,NA
+2013-12-03,"F","Semibalanus_cariosus","Nucella_canaliculata",0,0,2,NA,0,9.42,NA,NA
+2013-12-03,"F","Semibalanus_cariosus","Nucella_ostrina",0,0,0,NA,0,9.42,NA,NA
+2013-12-03,"G","Adula_californiensis","Nucella_canaliculata",0,0,8,NA,0,9.42,NA,NA
+2013-12-03,"G","Adula_californiensis","Nucella_ostrina",0,0,1,NA,0,9.42,NA,NA
+2013-12-03,"G","Balanus_glandula","Nucella_canaliculata",0,0,8,NA,29162.6666666667,9.42,NA,NA
+2013-12-03,"G","Balanus_glandula","Nucella_ostrina",0,0,1,NA,29162.6666666667,9.42,NA,NA
+2013-12-03,"G","Chthamalus_dalli","Nucella_canaliculata",0,0,8,NA,10325.3333333333,9.42,NA,NA
+2013-12-03,"G","Chthamalus_dalli","Nucella_ostrina",0,0,1,NA,10325.3333333333,9.42,NA,NA
+2013-12-03,"G","Hiatella_arctica","Nucella_canaliculata",0,0,8,NA,0,9.42,NA,NA
+2013-12-03,"G","Hiatella_arctica","Nucella_ostrina",0,0,1,NA,0,9.42,NA,NA
+2013-12-03,"G","Limpets","Nucella_canaliculata",0,0,8,NA,914.285714285714,9.42,NA,NA
+2013-12-03,"G","Limpets","Nucella_ostrina",0,0,1,NA,914.285714285714,9.42,NA,NA
+2013-12-03,"G","Littorina_sitkana","Nucella_canaliculata",0,0,8,NA,1024.76190476191,9.42,NA,NA
+2013-12-03,"G","Littorina_sitkana","Nucella_ostrina",0,0,1,NA,1024.76190476191,9.42,NA,NA
+2013-12-03,"G","Modiolus_modiolus","Nucella_canaliculata",0,0,8,NA,0,9.42,NA,NA
+2013-12-03,"G","Modiolus_modiolus","Nucella_ostrina",0,0,1,NA,0,9.42,NA,NA
+2013-12-03,"G","Mytilus_californianus","Nucella_canaliculata",0,0,8,NA,21.3333333333333,9.42,NA,NA
+2013-12-03,"G","Mytilus_californianus","Nucella_ostrina",0,0,1,NA,21.3333333333333,9.42,NA,NA
+2013-12-03,"G","Mytilus_trossulus","Nucella_canaliculata",0.142857142857143,1,8,30.3549715465425,36842.6666666667,9.42,1.27738282635894e-07,0.00470621896772671
+2013-12-03,"G","Mytilus_trossulus","Nucella_ostrina",0,0,1,NA,36842.6666666667,9.42,NA,NA
+2013-12-03,"G","Nucella_ostrina","Nucella_canaliculata",0,0,8,NA,3.8095238095238,9.42,NA,NA
+2013-12-03,"G","Nucella_ostrina","Nucella_ostrina",0,0,1,NA,3.8095238095238,9.42,NA,NA
+2013-12-03,"G","Pollicipes_polymerus","Nucella_canaliculata",0,0,8,NA,0,9.42,NA,NA
+2013-12-03,"G","Pollicipes_polymerus","Nucella_ostrina",0,0,1,NA,0,9.42,NA,NA
+2013-12-03,"G","Semibalanus_cariosus","Nucella_canaliculata",0,0,8,NA,0,9.42,NA,NA
+2013-12-03,"G","Semibalanus_cariosus","Nucella_ostrina",0,0,1,NA,0,9.42,NA,NA
+2014-01-29,"A","Adula_californiensis","Nucella_canaliculata",0,0,2,NA,0,9.06,NA,NA
+2014-01-29,"A","Adula_californiensis","Nucella_ostrina",0,0,3,NA,0,9.06,NA,NA
+2014-01-29,"A","Balanus_glandula","Nucella_canaliculata",0,0,2,NA,39156.5714285714,9.06,NA,NA
+2014-01-29,"A","Balanus_glandula","Nucella_ostrina",0,0,3,NA,39156.5714285714,9.06,NA,NA
+2014-01-29,"A","Chthamalus_dalli","Nucella_canaliculata",0,0,2,NA,1244.19047619048,9.06,NA,NA
+2014-01-29,"A","Chthamalus_dalli","Nucella_ostrina",0,0,3,NA,1244.19047619048,9.06,NA,NA
+2014-01-29,"A","Hiatella_arctica","Nucella_canaliculata",0,0,2,NA,0,9.06,NA,NA
+2014-01-29,"A","Hiatella_arctica","Nucella_ostrina",0,0,3,NA,0,9.06,NA,NA
+2014-01-29,"A","Limpets","Nucella_canaliculata",0,0,2,NA,582.857142857142,9.06,NA,NA
+2014-01-29,"A","Limpets","Nucella_ostrina",0,0,3,NA,582.857142857142,9.06,NA,NA
+2014-01-29,"A","Littorina_sitkana","Nucella_canaliculata",0,0,2,NA,1081.90476190476,9.06,NA,NA
+2014-01-29,"A","Littorina_sitkana","Nucella_ostrina",0,0,3,NA,1081.90476190476,9.06,NA,NA
+2014-01-29,"A","Modiolus_modiolus","Nucella_canaliculata",0,0,2,NA,0,9.06,NA,NA
+2014-01-29,"A","Modiolus_modiolus","Nucella_ostrina",0,0,3,NA,0,9.06,NA,NA
+2014-01-29,"A","Mytilus_californianus","Nucella_canaliculata",0,0,2,NA,3.8095238095238,9.06,NA,NA
+2014-01-29,"A","Mytilus_californianus","Nucella_ostrina",0,0,3,NA,3.8095238095238,9.06,NA,NA
+2014-01-29,"A","Mytilus_trossulus","Nucella_canaliculata",0,0,2,NA,11406.4761904762,9.06,NA,NA
+2014-01-29,"A","Mytilus_trossulus","Nucella_ostrina",0,0,3,NA,11406.4761904762,9.06,NA,NA
+2014-01-29,"A","Nucella_ostrina","Nucella_canaliculata",0,0,2,NA,3.8095238095238,9.06,NA,NA
+2014-01-29,"A","Nucella_ostrina","Nucella_ostrina",0,0,3,NA,3.8095238095238,9.06,NA,NA
+2014-01-29,"A","Pollicipes_polymerus","Nucella_canaliculata",0,0,2,NA,0,9.06,NA,NA
+2014-01-29,"A","Pollicipes_polymerus","Nucella_ostrina",0,0,3,NA,0,9.06,NA,NA
+2014-01-29,"A","Semibalanus_cariosus","Nucella_canaliculata",0,0,2,NA,0,9.06,NA,NA
+2014-01-29,"A","Semibalanus_cariosus","Nucella_ostrina",0,0,3,NA,0,9.06,NA,NA
+2014-01-29,"AB","Adula_californiensis","Nucella_canaliculata",0,0,6,NA,0,9.06,NA,NA
+2014-01-29,"AB","Adula_californiensis","Nucella_ostrina",0,0,0,NA,0,9.06,NA,NA
+2014-01-29,"AB","Balanus_glandula","Nucella_canaliculata",0,0,6,NA,19404.5714285714,9.06,NA,NA
+2014-01-29,"AB","Balanus_glandula","Nucella_ostrina",0,0,0,NA,19404.5714285714,9.06,NA,NA
+2014-01-29,"AB","Chthamalus_dalli","Nucella_canaliculata",0,0,6,NA,749.714285714286,9.06,NA,NA
+2014-01-29,"AB","Chthamalus_dalli","Nucella_ostrina",0,0,0,NA,749.714285714286,9.06,NA,NA
+2014-01-29,"AB","Hiatella_arctica","Nucella_canaliculata",0,0,6,NA,0,9.06,NA,NA
+2014-01-29,"AB","Hiatella_arctica","Nucella_ostrina",0,0,0,NA,0,9.06,NA,NA
+2014-01-29,"AB","Limpets","Nucella_canaliculata",0,0,6,NA,565.714285714286,9.06,NA,NA
+2014-01-29,"AB","Limpets","Nucella_ostrina",0,0,0,NA,565.714285714286,9.06,NA,NA
+2014-01-29,"AB","Littorina_sitkana","Nucella_canaliculata",0,0,6,NA,245.714285714286,9.06,NA,NA
+2014-01-29,"AB","Littorina_sitkana","Nucella_ostrina",0,0,0,NA,245.714285714286,9.06,NA,NA
+2014-01-29,"AB","Modiolus_modiolus","Nucella_canaliculata",0,0,6,NA,0,9.06,NA,NA
+2014-01-29,"AB","Modiolus_modiolus","Nucella_ostrina",0,0,0,NA,0,9.06,NA,NA
+2014-01-29,"AB","Mytilus_californianus","Nucella_canaliculata",0,0,6,NA,0,9.06,NA,NA
+2014-01-29,"AB","Mytilus_californianus","Nucella_ostrina",0,0,0,NA,0,9.06,NA,NA
+2014-01-29,"AB","Mytilus_trossulus","Nucella_canaliculata",0,0,6,NA,5150.85714285714,9.06,NA,NA
+2014-01-29,"AB","Mytilus_trossulus","Nucella_ostrina",0,0,0,NA,5150.85714285714,9.06,NA,NA
+2014-01-29,"AB","Nucella_ostrina","Nucella_canaliculata",0,0,6,NA,0,9.06,NA,NA
+2014-01-29,"AB","Nucella_ostrina","Nucella_ostrina",0,0,0,NA,0,9.06,NA,NA
+2014-01-29,"AB","Pollicipes_polymerus","Nucella_canaliculata",0,0,6,NA,0,9.06,NA,NA
+2014-01-29,"AB","Pollicipes_polymerus","Nucella_ostrina",0,0,0,NA,0,9.06,NA,NA
+2014-01-29,"AB","Semibalanus_cariosus","Nucella_canaliculata",0,0,6,NA,0,9.06,NA,NA
+2014-01-29,"AB","Semibalanus_cariosus","Nucella_ostrina",0,0,0,NA,0,9.06,NA,NA
+2014-01-29,"AC","Adula_californiensis","Nucella_canaliculata",0,0,2,NA,0,9.06,NA,NA
+2014-01-29,"AC","Adula_californiensis","Nucella_ostrina",0,0,0,NA,0,9.06,NA,NA
+2014-01-29,"AC","Balanus_glandula","Nucella_canaliculata",0,0,2,NA,8268.57142857144,9.06,NA,NA
+2014-01-29,"AC","Balanus_glandula","Nucella_ostrina",0,0,0,NA,8268.57142857144,9.06,NA,NA
+2014-01-29,"AC","Chthamalus_dalli","Nucella_canaliculata",0,0,2,NA,99.9999999999999,9.06,NA,NA
+2014-01-29,"AC","Chthamalus_dalli","Nucella_ostrina",0,0,0,NA,99.9999999999999,9.06,NA,NA
+2014-01-29,"AC","Hiatella_arctica","Nucella_canaliculata",0,0,2,NA,0,9.06,NA,NA
+2014-01-29,"AC","Hiatella_arctica","Nucella_ostrina",0,0,0,NA,0,9.06,NA,NA
+2014-01-29,"AC","Limpets","Nucella_canaliculata",0,0,2,NA,871.428571428571,9.06,NA,NA
+2014-01-29,"AC","Limpets","Nucella_ostrina",0,0,0,NA,871.428571428571,9.06,NA,NA
+2014-01-29,"AC","Littorina_sitkana","Nucella_canaliculata",0,0,2,NA,1480,9.06,NA,NA
+2014-01-29,"AC","Littorina_sitkana","Nucella_ostrina",0,0,0,NA,1480,9.06,NA,NA
+2014-01-29,"AC","Modiolus_modiolus","Nucella_canaliculata",0,0,2,NA,0,9.06,NA,NA
+2014-01-29,"AC","Modiolus_modiolus","Nucella_ostrina",0,0,0,NA,0,9.06,NA,NA
+2014-01-29,"AC","Mytilus_californianus","Nucella_canaliculata",0,0,2,NA,0,9.06,NA,NA
+2014-01-29,"AC","Mytilus_californianus","Nucella_ostrina",0,0,0,NA,0,9.06,NA,NA
+2014-01-29,"AC","Mytilus_trossulus","Nucella_canaliculata",0,0,2,NA,502.857142857143,9.06,NA,NA
+2014-01-29,"AC","Mytilus_trossulus","Nucella_ostrina",0,0,0,NA,502.857142857143,9.06,NA,NA
+2014-01-29,"AC","Nucella_ostrina","Nucella_canaliculata",0,0,2,NA,8.57142857142857,9.06,NA,NA
+2014-01-29,"AC","Nucella_ostrina","Nucella_ostrina",0,0,0,NA,8.57142857142857,9.06,NA,NA
+2014-01-29,"AC","Pollicipes_polymerus","Nucella_canaliculata",0,0,2,NA,0,9.06,NA,NA
+2014-01-29,"AC","Pollicipes_polymerus","Nucella_ostrina",0,0,0,NA,0,9.06,NA,NA
+2014-01-29,"AC","Semibalanus_cariosus","Nucella_canaliculata",0,0,2,NA,0,9.06,NA,NA
+2014-01-29,"AC","Semibalanus_cariosus","Nucella_ostrina",0,0,0,NA,0,9.06,NA,NA
+2014-01-29,"AD","Adula_californiensis","Nucella_canaliculata",0,0,24,NA,0,9.06,NA,NA
+2014-01-29,"AD","Adula_californiensis","Nucella_ostrina",0,0,1,NA,0,9.06,NA,NA
+2014-01-29,"AD","Balanus_glandula","Nucella_canaliculata",0,0,24,NA,37290.6666666667,9.06,NA,NA
+2014-01-29,"AD","Balanus_glandula","Nucella_ostrina",0,0,1,NA,37290.6666666667,9.06,NA,NA
+2014-01-29,"AD","Chthamalus_dalli","Nucella_canaliculata",0,0,24,NA,5354.66666666667,9.06,NA,NA
+2014-01-29,"AD","Chthamalus_dalli","Nucella_ostrina",0,0,1,NA,5354.66666666667,9.06,NA,NA
+2014-01-29,"AD","Hiatella_arctica","Nucella_canaliculata",0,0,24,NA,0,9.06,NA,NA
+2014-01-29,"AD","Hiatella_arctica","Nucella_ostrina",0,0,1,NA,0,9.06,NA,NA
+2014-01-29,"AD","Limpets","Nucella_canaliculata",0,0,24,NA,1512.38095238095,9.06,NA,NA
+2014-01-29,"AD","Limpets","Nucella_ostrina",0,0,1,NA,1512.38095238095,9.06,NA,NA
+2014-01-29,"AD","Littorina_sitkana","Nucella_canaliculata",0,0,24,NA,3459.04761904762,9.06,NA,NA
+2014-01-29,"AD","Littorina_sitkana","Nucella_ostrina",0,0,1,NA,3459.04761904762,9.06,NA,NA
+2014-01-29,"AD","Modiolus_modiolus","Nucella_canaliculata",0,0,24,NA,0,9.06,NA,NA
+2014-01-29,"AD","Modiolus_modiolus","Nucella_ostrina",0,0,1,NA,0,9.06,NA,NA
+2014-01-29,"AD","Mytilus_californianus","Nucella_canaliculata",0,0,24,NA,0,9.06,NA,NA
+2014-01-29,"AD","Mytilus_californianus","Nucella_ostrina",0,0,1,NA,0,9.06,NA,NA
+2014-01-29,"AD","Mytilus_trossulus","Nucella_canaliculata",0,0,24,NA,13788.1904761905,9.06,NA,NA
+2014-01-29,"AD","Mytilus_trossulus","Nucella_ostrina",0,0,1,NA,13788.1904761905,9.06,NA,NA
+2014-01-29,"AD","Nucella_ostrina","Nucella_canaliculata",0,0,24,NA,3.8095238095238,9.06,NA,NA
+2014-01-29,"AD","Nucella_ostrina","Nucella_ostrina",0,0,1,NA,3.8095238095238,9.06,NA,NA
+2014-01-29,"AD","Pollicipes_polymerus","Nucella_canaliculata",0,0,24,NA,0,9.06,NA,NA
+2014-01-29,"AD","Pollicipes_polymerus","Nucella_ostrina",0,0,1,NA,0,9.06,NA,NA
+2014-01-29,"AD","Semibalanus_cariosus","Nucella_canaliculata",0,0,24,NA,0,9.06,NA,NA
+2014-01-29,"AD","Semibalanus_cariosus","Nucella_ostrina",0,0,1,NA,0,9.06,NA,NA
+2014-01-29,"AE","Adula_californiensis","Nucella_canaliculata",0,0,1,NA,0,9.06,NA,NA
+2014-01-29,"AE","Adula_californiensis","Nucella_ostrina",0,0,4,NA,0,9.06,NA,NA
+2014-01-29,"AE","Balanus_glandula","Nucella_canaliculata",0,0,1,NA,57109.3333333333,9.06,NA,NA
+2014-01-29,"AE","Balanus_glandula","Nucella_ostrina",0,0,4,NA,57109.3333333333,9.06,NA,NA
+2014-01-29,"AE","Chthamalus_dalli","Nucella_canaliculata",0,0,1,NA,3754.66666666667,9.06,NA,NA
+2014-01-29,"AE","Chthamalus_dalli","Nucella_ostrina",0,0,4,NA,3754.66666666667,9.06,NA,NA
+2014-01-29,"AE","Hiatella_arctica","Nucella_canaliculata",0,0,1,NA,0,9.06,NA,NA
+2014-01-29,"AE","Hiatella_arctica","Nucella_ostrina",0,0,4,NA,0,9.06,NA,NA
+2014-01-29,"AE","Limpets","Nucella_canaliculata",0,0,1,NA,1950.47619047619,9.06,NA,NA
+2014-01-29,"AE","Limpets","Nucella_ostrina",0,0,4,NA,1950.47619047619,9.06,NA,NA
+2014-01-29,"AE","Littorina_sitkana","Nucella_canaliculata",0,0,1,NA,3782.85714285714,9.06,NA,NA
+2014-01-29,"AE","Littorina_sitkana","Nucella_ostrina",0,0,4,NA,3782.85714285714,9.06,NA,NA
+2014-01-29,"AE","Modiolus_modiolus","Nucella_canaliculata",0,0,1,NA,0,9.06,NA,NA
+2014-01-29,"AE","Modiolus_modiolus","Nucella_ostrina",0,0,4,NA,0,9.06,NA,NA
+2014-01-29,"AE","Mytilus_californianus","Nucella_canaliculata",0,0,1,NA,0,9.06,NA,NA
+2014-01-29,"AE","Mytilus_californianus","Nucella_ostrina",0,0,4,NA,0,9.06,NA,NA
+2014-01-29,"AE","Mytilus_trossulus","Nucella_canaliculata",0,0,1,NA,3779.04761904762,9.06,NA,NA
+2014-01-29,"AE","Mytilus_trossulus","Nucella_ostrina",0,0,4,NA,3779.04761904762,9.06,NA,NA
+2014-01-29,"AE","Nucella_ostrina","Nucella_canaliculata",0,0,1,NA,0,9.06,NA,NA
+2014-01-29,"AE","Nucella_ostrina","Nucella_ostrina",0,0,4,NA,0,9.06,NA,NA
+2014-01-29,"AE","Pollicipes_polymerus","Nucella_canaliculata",0,0,1,NA,0,9.06,NA,NA
+2014-01-29,"AE","Pollicipes_polymerus","Nucella_ostrina",0,0,4,NA,0,9.06,NA,NA
+2014-01-29,"AE","Semibalanus_cariosus","Nucella_canaliculata",0,0,1,NA,3.8095238095238,9.06,NA,NA
+2014-01-29,"AE","Semibalanus_cariosus","Nucella_ostrina",0,0,4,NA,3.8095238095238,9.06,NA,NA
+2014-01-29,"AF","Adula_californiensis","Nucella_canaliculata",0,0,0,NA,0,9.06,NA,NA
+2014-01-29,"AF","Adula_californiensis","Nucella_ostrina",0,0,3,NA,0,9.06,NA,NA
+2014-01-29,"AF","Balanus_glandula","Nucella_canaliculata",0,0,0,NA,41984,9.06,NA,NA
+2014-01-29,"AF","Balanus_glandula","Nucella_ostrina",0,0,3,NA,41984,9.06,NA,NA
+2014-01-29,"AF","Chthamalus_dalli","Nucella_canaliculata",0,0,0,NA,0,9.06,NA,NA
+2014-01-29,"AF","Chthamalus_dalli","Nucella_ostrina",0,0,3,NA,0,9.06,NA,NA
+2014-01-29,"AF","Hiatella_arctica","Nucella_canaliculata",0,0,0,NA,0,9.06,NA,NA
+2014-01-29,"AF","Hiatella_arctica","Nucella_ostrina",0,0,3,NA,0,9.06,NA,NA
+2014-01-29,"AF","Limpets","Nucella_canaliculata",0,0,0,NA,1455.2380952381,9.06,NA,NA
+2014-01-29,"AF","Limpets","Nucella_ostrina",0,0,3,NA,1455.2380952381,9.06,NA,NA
+2014-01-29,"AF","Littorina_sitkana","Nucella_canaliculata",0,0,0,NA,2986.66666666667,9.06,NA,NA
+2014-01-29,"AF","Littorina_sitkana","Nucella_ostrina",0,0,3,NA,2986.66666666667,9.06,NA,NA
+2014-01-29,"AF","Modiolus_modiolus","Nucella_canaliculata",0,0,0,NA,0,9.06,NA,NA
+2014-01-29,"AF","Modiolus_modiolus","Nucella_ostrina",0,0,3,NA,0,9.06,NA,NA
+2014-01-29,"AF","Mytilus_californianus","Nucella_canaliculata",0,0,0,NA,0,9.06,NA,NA
+2014-01-29,"AF","Mytilus_californianus","Nucella_ostrina",0,0,3,NA,0,9.06,NA,NA
+2014-01-29,"AF","Mytilus_trossulus","Nucella_canaliculata",0,0,0,NA,5443.80952380952,9.06,NA,NA
+2014-01-29,"AF","Mytilus_trossulus","Nucella_ostrina",0,0,3,NA,5443.80952380952,9.06,NA,NA
+2014-01-29,"AF","Nucella_ostrina","Nucella_canaliculata",0,0,0,NA,0,9.06,NA,NA
+2014-01-29,"AF","Nucella_ostrina","Nucella_ostrina",0,0,3,NA,0,9.06,NA,NA
+2014-01-29,"AF","Pollicipes_polymerus","Nucella_canaliculata",0,0,0,NA,0,9.06,NA,NA
+2014-01-29,"AF","Pollicipes_polymerus","Nucella_ostrina",0,0,3,NA,0,9.06,NA,NA
+2014-01-29,"AF","Semibalanus_cariosus","Nucella_canaliculata",0,0,0,NA,0,9.06,NA,NA
+2014-01-29,"AF","Semibalanus_cariosus","Nucella_ostrina",0,0,3,NA,0,9.06,NA,NA
+2014-01-29,"AG","Adula_californiensis","Nucella_canaliculata",0,0,3,NA,0,9.06,NA,NA
+2014-01-29,"AG","Adula_californiensis","Nucella_ostrina",0,0,3,NA,0,9.06,NA,NA
+2014-01-29,"AG","Balanus_glandula","Nucella_canaliculata",0,0,3,NA,35040,9.06,NA,NA
+2014-01-29,"AG","Balanus_glandula","Nucella_ostrina",0,0,3,NA,35040,9.06,NA,NA
+2014-01-29,"AG","Chthamalus_dalli","Nucella_canaliculata",0,0,3,NA,290.285714285714,9.06,NA,NA
+2014-01-29,"AG","Chthamalus_dalli","Nucella_ostrina",0,0,3,NA,290.285714285714,9.06,NA,NA
+2014-01-29,"AG","Hiatella_arctica","Nucella_canaliculata",0,0,3,NA,0,9.06,NA,NA
+2014-01-29,"AG","Hiatella_arctica","Nucella_ostrina",0,0,3,NA,0,9.06,NA,NA
+2014-01-29,"AG","Limpets","Nucella_canaliculata",0,0,3,NA,313.142857142857,9.06,NA,NA
+2014-01-29,"AG","Limpets","Nucella_ostrina",0,0,3,NA,313.142857142857,9.06,NA,NA
+2014-01-29,"AG","Littorina_sitkana","Nucella_canaliculata",0,0,3,NA,786.285714285714,9.06,NA,NA
+2014-01-29,"AG","Littorina_sitkana","Nucella_ostrina",0,0,3,NA,786.285714285714,9.06,NA,NA
+2014-01-29,"AG","Modiolus_modiolus","Nucella_canaliculata",0,0,3,NA,0,9.06,NA,NA
+2014-01-29,"AG","Modiolus_modiolus","Nucella_ostrina",0,0,3,NA,0,9.06,NA,NA
+2014-01-29,"AG","Mytilus_californianus","Nucella_canaliculata",0,0,3,NA,0,9.06,NA,NA
+2014-01-29,"AG","Mytilus_californianus","Nucella_ostrina",0,0,3,NA,0,9.06,NA,NA
+2014-01-29,"AG","Mytilus_trossulus","Nucella_canaliculata",0,0,3,NA,2724.57142857143,9.06,NA,NA
+2014-01-29,"AG","Mytilus_trossulus","Nucella_ostrina",0,0,3,NA,2724.57142857143,9.06,NA,NA
+2014-01-29,"AG","Nucella_ostrina","Nucella_canaliculata",0,0,3,NA,2.28571428571428,9.06,NA,NA
+2014-01-29,"AG","Nucella_ostrina","Nucella_ostrina",0,0,3,NA,2.28571428571428,9.06,NA,NA
+2014-01-29,"AG","Pollicipes_polymerus","Nucella_canaliculata",0,0,3,NA,2.28571428571428,9.06,NA,NA
+2014-01-29,"AG","Pollicipes_polymerus","Nucella_ostrina",0,0,3,NA,2.28571428571428,9.06,NA,NA
+2014-01-29,"AG","Semibalanus_cariosus","Nucella_canaliculata",0,0,3,NA,0,9.06,NA,NA
+2014-01-29,"AG","Semibalanus_cariosus","Nucella_ostrina",0,0,3,NA,0,9.06,NA,NA
+2014-01-29,"B","Adula_californiensis","Nucella_canaliculata",0,0,12,NA,0,9.06,NA,NA
+2014-01-29,"B","Adula_californiensis","Nucella_ostrina",0,0,1,NA,0,9.06,NA,NA
+2014-01-29,"B","Balanus_glandula","Nucella_canaliculata",0,0,12,NA,54899.3015873016,9.06,NA,NA
+2014-01-29,"B","Balanus_glandula","Nucella_ostrina",0,0,1,NA,54899.3015873016,9.06,NA,NA
+2014-01-29,"B","Chthamalus_dalli","Nucella_canaliculata",0,0,12,NA,263.111111111111,9.06,NA,NA
+2014-01-29,"B","Chthamalus_dalli","Nucella_ostrina",0,0,1,NA,263.111111111111,9.06,NA,NA
+2014-01-29,"B","Hiatella_arctica","Nucella_canaliculata",0,0,12,NA,0,9.06,NA,NA
+2014-01-29,"B","Hiatella_arctica","Nucella_ostrina",0,0,1,NA,0,9.06,NA,NA
+2014-01-29,"B","Limpets","Nucella_canaliculata",0,0,12,NA,1613.96825396825,9.06,NA,NA
+2014-01-29,"B","Limpets","Nucella_ostrina",0,0,1,NA,1613.96825396825,9.06,NA,NA
+2014-01-29,"B","Littorina_sitkana","Nucella_canaliculata",0,0,12,NA,175.238095238095,9.06,NA,NA
+2014-01-29,"B","Littorina_sitkana","Nucella_ostrina",0,0,1,NA,175.238095238095,9.06,NA,NA
+2014-01-29,"B","Modiolus_modiolus","Nucella_canaliculata",0,0,12,NA,0,9.06,NA,NA
+2014-01-29,"B","Modiolus_modiolus","Nucella_ostrina",0,0,1,NA,0,9.06,NA,NA
+2014-01-29,"B","Mytilus_californianus","Nucella_canaliculata",0,0,12,NA,1.26984126984127,9.06,NA,NA
+2014-01-29,"B","Mytilus_californianus","Nucella_ostrina",0,0,1,NA,1.26984126984127,9.06,NA,NA
+2014-01-29,"B","Mytilus_trossulus","Nucella_canaliculata",0.0909090909090909,1,12,32.9124245113146,5904.50793650794,9.06,4.67803781527842e-07,0.00276215114075957
+2014-01-29,"B","Mytilus_trossulus","Nucella_ostrina",0,0,1,NA,5904.50793650794,9.06,NA,NA
+2014-01-29,"B","Nucella_ostrina","Nucella_canaliculata",0,0,12,NA,0,9.06,NA,NA
+2014-01-29,"B","Nucella_ostrina","Nucella_ostrina",0,0,1,NA,0,9.06,NA,NA
+2014-01-29,"B","Pollicipes_polymerus","Nucella_canaliculata",0,0,12,NA,8.88888888888889,9.06,NA,NA
+2014-01-29,"B","Pollicipes_polymerus","Nucella_ostrina",0,0,1,NA,8.88888888888889,9.06,NA,NA
+2014-01-29,"B","Semibalanus_cariosus","Nucella_canaliculata",0,0,12,NA,1.26984126984127,9.06,NA,NA
+2014-01-29,"B","Semibalanus_cariosus","Nucella_ostrina",0,0,1,NA,1.26984126984127,9.06,NA,NA
+2014-01-29,"BB","Adula_californiensis","Nucella_canaliculata",0,0,0,NA,0,9.06,NA,NA
+2014-01-29,"BB","Adula_californiensis","Nucella_ostrina",0,0,4,NA,0,9.06,NA,NA
+2014-01-29,"BB","Balanus_glandula","Nucella_canaliculata",0,0,0,NA,49792,9.06,NA,NA
+2014-01-29,"BB","Balanus_glandula","Nucella_ostrina",0,0,4,NA,49792,9.06,NA,NA
+2014-01-29,"BB","Chthamalus_dalli","Nucella_canaliculata",0,0,0,NA,85.3333333333333,9.06,NA,NA
+2014-01-29,"BB","Chthamalus_dalli","Nucella_ostrina",0,0,4,NA,85.3333333333333,9.06,NA,NA
+2014-01-29,"BB","Hiatella_arctica","Nucella_canaliculata",0,0,0,NA,0,9.06,NA,NA
+2014-01-29,"BB","Hiatella_arctica","Nucella_ostrina",0,0,4,NA,0,9.06,NA,NA
+2014-01-29,"BB","Limpets","Nucella_canaliculata",0,0,0,NA,140.952380952381,9.06,NA,NA
+2014-01-29,"BB","Limpets","Nucella_ostrina",0,0,4,NA,140.952380952381,9.06,NA,NA
+2014-01-29,"BB","Littorina_sitkana","Nucella_canaliculata",0,0,0,NA,2205.71428571429,9.06,NA,NA
+2014-01-29,"BB","Littorina_sitkana","Nucella_ostrina",0,0,4,NA,2205.71428571429,9.06,NA,NA
+2014-01-29,"BB","Modiolus_modiolus","Nucella_canaliculata",0,0,0,NA,0,9.06,NA,NA
+2014-01-29,"BB","Modiolus_modiolus","Nucella_ostrina",0,0,4,NA,0,9.06,NA,NA
+2014-01-29,"BB","Mytilus_californianus","Nucella_canaliculata",0,0,0,NA,0,9.06,NA,NA
+2014-01-29,"BB","Mytilus_californianus","Nucella_ostrina",0,0,4,NA,0,9.06,NA,NA
+2014-01-29,"BB","Mytilus_trossulus","Nucella_canaliculata",0,0,0,NA,4224.7619047619,9.06,NA,NA
+2014-01-29,"BB","Mytilus_trossulus","Nucella_ostrina",0,0,4,NA,4224.7619047619,9.06,NA,NA
+2014-01-29,"BB","Nucella_ostrina","Nucella_canaliculata",0,0,0,NA,15.2380952380952,9.06,NA,NA
+2014-01-29,"BB","Nucella_ostrina","Nucella_ostrina",0,0,4,NA,15.2380952380952,9.06,NA,NA
+2014-01-29,"BB","Pollicipes_polymerus","Nucella_canaliculata",0,0,0,NA,19.047619047619,9.06,NA,NA
+2014-01-29,"BB","Pollicipes_polymerus","Nucella_ostrina",0,0,4,NA,19.047619047619,9.06,NA,NA
+2014-01-29,"BB","Semibalanus_cariosus","Nucella_canaliculata",0,0,0,NA,0,9.06,NA,NA
+2014-01-29,"BB","Semibalanus_cariosus","Nucella_ostrina",0,0,4,NA,0,9.06,NA,NA
+2014-01-29,"BC","Adula_californiensis","Nucella_canaliculata",0,0,0,NA,0,9.06,NA,NA
+2014-01-29,"BC","Adula_californiensis","Nucella_ostrina",0,0,3,NA,0,9.06,NA,NA
+2014-01-29,"BC","Balanus_glandula","Nucella_canaliculata",0,0,0,NA,76096,9.06,NA,NA
+2014-01-29,"BC","Balanus_glandula","Nucella_ostrina",0,0,3,NA,76096,9.06,NA,NA
+2014-01-29,"BC","Chthamalus_dalli","Nucella_canaliculata",0,0,0,NA,0,9.06,NA,NA
+2014-01-29,"BC","Chthamalus_dalli","Nucella_ostrina",0,0,3,NA,0,9.06,NA,NA
+2014-01-29,"BC","Hiatella_arctica","Nucella_canaliculata",0,0,0,NA,0,9.06,NA,NA
+2014-01-29,"BC","Hiatella_arctica","Nucella_ostrina",0,0,3,NA,0,9.06,NA,NA
+2014-01-29,"BC","Limpets","Nucella_canaliculata",0,0,0,NA,167.619047619047,9.06,NA,NA
+2014-01-29,"BC","Limpets","Nucella_ostrina",0,0,3,NA,167.619047619047,9.06,NA,NA
+2014-01-29,"BC","Littorina_sitkana","Nucella_canaliculata",0,0,0,NA,1603.80952380952,9.06,NA,NA
+2014-01-29,"BC","Littorina_sitkana","Nucella_ostrina",0,0,3,NA,1603.80952380952,9.06,NA,NA
+2014-01-29,"BC","Modiolus_modiolus","Nucella_canaliculata",0,0,0,NA,0,9.06,NA,NA
+2014-01-29,"BC","Modiolus_modiolus","Nucella_ostrina",0,0,3,NA,0,9.06,NA,NA
+2014-01-29,"BC","Mytilus_californianus","Nucella_canaliculata",0,0,0,NA,0,9.06,NA,NA
+2014-01-29,"BC","Mytilus_californianus","Nucella_ostrina",0,0,3,NA,0,9.06,NA,NA
+2014-01-29,"BC","Mytilus_trossulus","Nucella_canaliculata",0,0,0,NA,4251.42857142857,9.06,NA,NA
+2014-01-29,"BC","Mytilus_trossulus","Nucella_ostrina",0,0,3,NA,4251.42857142857,9.06,NA,NA
+2014-01-29,"BC","Nucella_ostrina","Nucella_canaliculata",0,0,0,NA,0,9.06,NA,NA
+2014-01-29,"BC","Nucella_ostrina","Nucella_ostrina",0,0,3,NA,0,9.06,NA,NA
+2014-01-29,"BC","Pollicipes_polymerus","Nucella_canaliculata",0,0,0,NA,0,9.06,NA,NA
+2014-01-29,"BC","Pollicipes_polymerus","Nucella_ostrina",0,0,3,NA,0,9.06,NA,NA
+2014-01-29,"BC","Semibalanus_cariosus","Nucella_canaliculata",0,0,0,NA,0,9.06,NA,NA
+2014-01-29,"BC","Semibalanus_cariosus","Nucella_ostrina",0,0,3,NA,0,9.06,NA,NA
+2014-01-29,"BD","Adula_californiensis","Nucella_canaliculata",0,0,0,NA,0,9.06,NA,NA
+2014-01-29,"BD","Adula_californiensis","Nucella_ostrina",0,0,0,NA,0,9.06,NA,NA
+2014-01-29,"BD","Balanus_glandula","Nucella_canaliculata",0,0,0,NA,50563.8095238095,9.06,NA,NA
+2014-01-29,"BD","Balanus_glandula","Nucella_ostrina",0,0,0,NA,50563.8095238095,9.06,NA,NA
+2014-01-29,"BD","Chthamalus_dalli","Nucella_canaliculata",0,0,0,NA,327.619047619048,9.06,NA,NA
+2014-01-29,"BD","Chthamalus_dalli","Nucella_ostrina",0,0,0,NA,327.619047619048,9.06,NA,NA
+2014-01-29,"BD","Hiatella_arctica","Nucella_canaliculata",0,0,0,NA,0,9.06,NA,NA
+2014-01-29,"BD","Hiatella_arctica","Nucella_ostrina",0,0,0,NA,0,9.06,NA,NA
+2014-01-29,"BD","Limpets","Nucella_canaliculata",0,0,0,NA,3260.95238095238,9.06,NA,NA
+2014-01-29,"BD","Limpets","Nucella_ostrina",0,0,0,NA,3260.95238095238,9.06,NA,NA
+2014-01-29,"BD","Littorina_sitkana","Nucella_canaliculata",0,0,0,NA,3375.23809523809,9.06,NA,NA
+2014-01-29,"BD","Littorina_sitkana","Nucella_ostrina",0,0,0,NA,3375.23809523809,9.06,NA,NA
+2014-01-29,"BD","Modiolus_modiolus","Nucella_canaliculata",0,0,0,NA,0,9.06,NA,NA
+2014-01-29,"BD","Modiolus_modiolus","Nucella_ostrina",0,0,0,NA,0,9.06,NA,NA
+2014-01-29,"BD","Mytilus_californianus","Nucella_canaliculata",0,0,0,NA,0,9.06,NA,NA
+2014-01-29,"BD","Mytilus_californianus","Nucella_ostrina",0,0,0,NA,0,9.06,NA,NA
+2014-01-29,"BD","Mytilus_trossulus","Nucella_canaliculata",0,0,0,NA,7226.66666666667,9.06,NA,NA
+2014-01-29,"BD","Mytilus_trossulus","Nucella_ostrina",0,0,0,NA,7226.66666666667,9.06,NA,NA
+2014-01-29,"BD","Nucella_ostrina","Nucella_canaliculata",0,0,0,NA,3.8095238095238,9.06,NA,NA
+2014-01-29,"BD","Nucella_ostrina","Nucella_ostrina",0,0,0,NA,3.8095238095238,9.06,NA,NA
+2014-01-29,"BD","Pollicipes_polymerus","Nucella_canaliculata",0,0,0,NA,38.0952380952381,9.06,NA,NA
+2014-01-29,"BD","Pollicipes_polymerus","Nucella_ostrina",0,0,0,NA,38.0952380952381,9.06,NA,NA
+2014-01-29,"BD","Semibalanus_cariosus","Nucella_canaliculata",0,0,0,NA,0,9.06,NA,NA
+2014-01-29,"BD","Semibalanus_cariosus","Nucella_ostrina",0,0,0,NA,0,9.06,NA,NA
+2014-01-29,"BE","Adula_californiensis","Nucella_canaliculata",0,0,0,NA,0,9.06,NA,NA
+2014-01-29,"BE","Adula_californiensis","Nucella_ostrina",0,0,2,NA,0,9.06,NA,NA
+2014-01-29,"BE","Balanus_glandula","Nucella_canaliculata",0,0,0,NA,1794.28571428571,9.06,NA,NA
+2014-01-29,"BE","Balanus_glandula","Nucella_ostrina",0,0,2,NA,1794.28571428571,9.06,NA,NA
+2014-01-29,"BE","Chthamalus_dalli","Nucella_canaliculata",0,0,0,NA,0,9.06,NA,NA
+2014-01-29,"BE","Chthamalus_dalli","Nucella_ostrina",0,0,2,NA,0,9.06,NA,NA
+2014-01-29,"BE","Hiatella_arctica","Nucella_canaliculata",0,0,0,NA,0,9.06,NA,NA
+2014-01-29,"BE","Hiatella_arctica","Nucella_ostrina",0,0,2,NA,0,9.06,NA,NA
+2014-01-29,"BE","Limpets","Nucella_canaliculata",0,0,0,NA,217.142857142857,9.06,NA,NA
+2014-01-29,"BE","Limpets","Nucella_ostrina",0,0,2,NA,217.142857142857,9.06,NA,NA
+2014-01-29,"BE","Littorina_sitkana","Nucella_canaliculata",0,0,0,NA,1360,9.06,NA,NA
+2014-01-29,"BE","Littorina_sitkana","Nucella_ostrina",0,0,2,NA,1360,9.06,NA,NA
+2014-01-29,"BE","Modiolus_modiolus","Nucella_canaliculata",0,0,0,NA,0,9.06,NA,NA
+2014-01-29,"BE","Modiolus_modiolus","Nucella_ostrina",0,0,2,NA,0,9.06,NA,NA
+2014-01-29,"BE","Mytilus_californianus","Nucella_canaliculata",0,0,0,NA,0,9.06,NA,NA
+2014-01-29,"BE","Mytilus_californianus","Nucella_ostrina",0,0,2,NA,0,9.06,NA,NA
+2014-01-29,"BE","Mytilus_trossulus","Nucella_canaliculata",0,0,0,NA,57.1428571428571,9.06,NA,NA
+2014-01-29,"BE","Mytilus_trossulus","Nucella_ostrina",0,0,2,NA,57.1428571428571,9.06,NA,NA
+2014-01-29,"BE","Nucella_ostrina","Nucella_canaliculata",0,0,0,NA,0,9.06,NA,NA
+2014-01-29,"BE","Nucella_ostrina","Nucella_ostrina",0,0,2,NA,0,9.06,NA,NA
+2014-01-29,"BE","Pollicipes_polymerus","Nucella_canaliculata",0,0,0,NA,0,9.06,NA,NA
+2014-01-29,"BE","Pollicipes_polymerus","Nucella_ostrina",0,0,2,NA,0,9.06,NA,NA
+2014-01-29,"BE","Semibalanus_cariosus","Nucella_canaliculata",0,0,0,NA,0,9.06,NA,NA
+2014-01-29,"BE","Semibalanus_cariosus","Nucella_ostrina",0,0,2,NA,0,9.06,NA,NA
+2014-01-29,"BF","Adula_californiensis","Nucella_canaliculata",0,0,4,NA,0,9.06,NA,NA
+2014-01-29,"BF","Adula_californiensis","Nucella_ostrina",0,0,6,NA,0,9.06,NA,NA
+2014-01-29,"BF","Balanus_glandula","Nucella_canaliculata",0,0,4,NA,8640,9.06,NA,NA
+2014-01-29,"BF","Balanus_glandula","Nucella_ostrina",0,0,6,NA,8640,9.06,NA,NA
+2014-01-29,"BF","Chthamalus_dalli","Nucella_canaliculata",0,0,4,NA,160,9.06,NA,NA
+2014-01-29,"BF","Chthamalus_dalli","Nucella_ostrina",0,0,6,NA,160,9.06,NA,NA
+2014-01-29,"BF","Hiatella_arctica","Nucella_canaliculata",0,0,4,NA,0,9.06,NA,NA
+2014-01-29,"BF","Hiatella_arctica","Nucella_ostrina",0,0,6,NA,0,9.06,NA,NA
+2014-01-29,"BF","Limpets","Nucella_canaliculata",0,0,4,NA,480,9.06,NA,NA
+2014-01-29,"BF","Limpets","Nucella_ostrina",0,0,6,NA,480,9.06,NA,NA
+2014-01-29,"BF","Littorina_sitkana","Nucella_canaliculata",0,0,4,NA,1142.85714285714,9.06,NA,NA
+2014-01-29,"BF","Littorina_sitkana","Nucella_ostrina",0,0,6,NA,1142.85714285714,9.06,NA,NA
+2014-01-29,"BF","Modiolus_modiolus","Nucella_canaliculata",0,0,4,NA,0,9.06,NA,NA
+2014-01-29,"BF","Modiolus_modiolus","Nucella_ostrina",0,0,6,NA,0,9.06,NA,NA
+2014-01-29,"BF","Mytilus_californianus","Nucella_canaliculata",0,0,4,NA,0,9.06,NA,NA
+2014-01-29,"BF","Mytilus_californianus","Nucella_ostrina",0,0,6,NA,0,9.06,NA,NA
+2014-01-29,"BF","Mytilus_trossulus","Nucella_canaliculata",0,0,4,NA,5668.57142857143,9.06,NA,NA
+2014-01-29,"BF","Mytilus_trossulus","Nucella_ostrina",0,0,6,NA,5668.57142857143,9.06,NA,NA
+2014-01-29,"BF","Nucella_ostrina","Nucella_canaliculata",0,0,4,NA,0,9.06,NA,NA
+2014-01-29,"BF","Nucella_ostrina","Nucella_ostrina",0,0,6,NA,0,9.06,NA,NA
+2014-01-29,"BF","Pollicipes_polymerus","Nucella_canaliculata",0,0,4,NA,0,9.06,NA,NA
+2014-01-29,"BF","Pollicipes_polymerus","Nucella_ostrina",0,0,6,NA,0,9.06,NA,NA
+2014-01-29,"BF","Semibalanus_cariosus","Nucella_canaliculata",0,0,4,NA,0,9.06,NA,NA
+2014-01-29,"BF","Semibalanus_cariosus","Nucella_ostrina",0,0,6,NA,0,9.06,NA,NA
+2014-01-29,"C","Adula_californiensis","Nucella_canaliculata",0,0,2,NA,0,9.06,NA,NA
+2014-01-29,"C","Adula_californiensis","Nucella_ostrina",0,0,2,NA,0,9.06,NA,NA
+2014-01-29,"C","Balanus_glandula","Nucella_canaliculata",0,0,2,NA,37994.6666666667,9.06,NA,NA
+2014-01-29,"C","Balanus_glandula","Nucella_ostrina",0,0,2,NA,37994.6666666667,9.06,NA,NA
+2014-01-29,"C","Chthamalus_dalli","Nucella_canaliculata",0,0,2,NA,4757.33333333333,9.06,NA,NA
+2014-01-29,"C","Chthamalus_dalli","Nucella_ostrina",0,0,2,NA,4757.33333333333,9.06,NA,NA
+2014-01-29,"C","Hiatella_arctica","Nucella_canaliculata",0,0,2,NA,0,9.06,NA,NA
+2014-01-29,"C","Hiatella_arctica","Nucella_ostrina",0,0,2,NA,0,9.06,NA,NA
+2014-01-29,"C","Limpets","Nucella_canaliculata",0,0,2,NA,1051.42857142857,9.06,NA,NA
+2014-01-29,"C","Limpets","Nucella_ostrina",0,0,2,NA,1051.42857142857,9.06,NA,NA
+2014-01-29,"C","Littorina_sitkana","Nucella_canaliculata",0,0,2,NA,167.619047619048,9.06,NA,NA
+2014-01-29,"C","Littorina_sitkana","Nucella_ostrina",0,0,2,NA,167.619047619048,9.06,NA,NA
+2014-01-29,"C","Modiolus_modiolus","Nucella_canaliculata",0,0,2,NA,0,9.06,NA,NA
+2014-01-29,"C","Modiolus_modiolus","Nucella_ostrina",0,0,2,NA,0,9.06,NA,NA
+2014-01-29,"C","Mytilus_californianus","Nucella_canaliculata",0,0,2,NA,0,9.06,NA,NA
+2014-01-29,"C","Mytilus_californianus","Nucella_ostrina",0,0,2,NA,0,9.06,NA,NA
+2014-01-29,"C","Mytilus_trossulus","Nucella_canaliculata",0,0,2,NA,4986.66666666667,9.06,NA,NA
+2014-01-29,"C","Mytilus_trossulus","Nucella_ostrina",0,0,2,NA,4986.66666666667,9.06,NA,NA
+2014-01-29,"C","Nucella_ostrina","Nucella_canaliculata",0,0,2,NA,0,9.06,NA,NA
+2014-01-29,"C","Nucella_ostrina","Nucella_ostrina",0,0,2,NA,0,9.06,NA,NA
+2014-01-29,"C","Pollicipes_polymerus","Nucella_canaliculata",0,0,2,NA,0,9.06,NA,NA
+2014-01-29,"C","Pollicipes_polymerus","Nucella_ostrina",0,0,2,NA,0,9.06,NA,NA
+2014-01-29,"C","Semibalanus_cariosus","Nucella_canaliculata",0,0,2,NA,0,9.06,NA,NA
+2014-01-29,"C","Semibalanus_cariosus","Nucella_ostrina",0,0,2,NA,0,9.06,NA,NA
+2014-01-29,"D","Adula_californiensis","Nucella_canaliculata",0,0,1,NA,0,9.06,NA,NA
+2014-01-29,"D","Adula_californiensis","Nucella_ostrina",0,0,0,NA,0,9.06,NA,NA
+2014-01-29,"D","Balanus_glandula","Nucella_canaliculata",0,0,1,NA,30903.619047619,9.06,NA,NA
+2014-01-29,"D","Balanus_glandula","Nucella_ostrina",0,0,0,NA,30903.619047619,9.06,NA,NA
+2014-01-29,"D","Chthamalus_dalli","Nucella_canaliculata",0,0,1,NA,34.2857142857143,9.06,NA,NA
+2014-01-29,"D","Chthamalus_dalli","Nucella_ostrina",0,0,0,NA,34.2857142857143,9.06,NA,NA
+2014-01-29,"D","Hiatella_arctica","Nucella_canaliculata",0,0,1,NA,0,9.06,NA,NA
+2014-01-29,"D","Hiatella_arctica","Nucella_ostrina",0,0,0,NA,0,9.06,NA,NA
+2014-01-29,"D","Limpets","Nucella_canaliculata",0,0,1,NA,1219.04761904762,9.06,NA,NA
+2014-01-29,"D","Limpets","Nucella_ostrina",0,0,0,NA,1219.04761904762,9.06,NA,NA
+2014-01-29,"D","Littorina_sitkana","Nucella_canaliculata",0,0,1,NA,3756.19047619048,9.06,NA,NA
+2014-01-29,"D","Littorina_sitkana","Nucella_ostrina",0,0,0,NA,3756.19047619048,9.06,NA,NA
+2014-01-29,"D","Modiolus_modiolus","Nucella_canaliculata",0,0,1,NA,0,9.06,NA,NA
+2014-01-29,"D","Modiolus_modiolus","Nucella_ostrina",0,0,0,NA,0,9.06,NA,NA
+2014-01-29,"D","Mytilus_californianus","Nucella_canaliculata",0,0,1,NA,0,9.06,NA,NA
+2014-01-29,"D","Mytilus_californianus","Nucella_ostrina",0,0,0,NA,0,9.06,NA,NA
+2014-01-29,"D","Mytilus_trossulus","Nucella_canaliculata",0,0,1,NA,2830.47619047619,9.06,NA,NA
+2014-01-29,"D","Mytilus_trossulus","Nucella_ostrina",0,0,0,NA,2830.47619047619,9.06,NA,NA
+2014-01-29,"D","Nucella_ostrina","Nucella_canaliculata",0,0,1,NA,3.8095238095238,9.06,NA,NA
+2014-01-29,"D","Nucella_ostrina","Nucella_ostrina",0,0,0,NA,3.8095238095238,9.06,NA,NA
+2014-01-29,"D","Pollicipes_polymerus","Nucella_canaliculata",0,0,1,NA,7.61904761904763,9.06,NA,NA
+2014-01-29,"D","Pollicipes_polymerus","Nucella_ostrina",0,0,0,NA,7.61904761904763,9.06,NA,NA
+2014-01-29,"D","Semibalanus_cariosus","Nucella_canaliculata",0,0,1,NA,0,9.06,NA,NA
+2014-01-29,"D","Semibalanus_cariosus","Nucella_ostrina",0,0,0,NA,0,9.06,NA,NA
+2014-01-29,"E","Adula_californiensis","Nucella_canaliculata",0,0,3,NA,0,9.06,NA,NA
+2014-01-29,"E","Adula_californiensis","Nucella_ostrina",0,0,0,NA,0,9.06,NA,NA
+2014-01-29,"E","Balanus_glandula","Nucella_canaliculata",0,0,3,NA,36352,9.06,NA,NA
+2014-01-29,"E","Balanus_glandula","Nucella_ostrina",0,0,0,NA,36352,9.06,NA,NA
+2014-01-29,"E","Chthamalus_dalli","Nucella_canaliculata",0,0,3,NA,0,9.06,NA,NA
+2014-01-29,"E","Chthamalus_dalli","Nucella_ostrina",0,0,0,NA,0,9.06,NA,NA
+2014-01-29,"E","Hiatella_arctica","Nucella_canaliculata",0,0,3,NA,0,9.06,NA,NA
+2014-01-29,"E","Hiatella_arctica","Nucella_ostrina",0,0,0,NA,0,9.06,NA,NA
+2014-01-29,"E","Limpets","Nucella_canaliculata",0,0,3,NA,72.3809523809524,9.06,NA,NA
+2014-01-29,"E","Limpets","Nucella_ostrina",0,0,0,NA,72.3809523809524,9.06,NA,NA
+2014-01-29,"E","Littorina_sitkana","Nucella_canaliculata",0,0,3,NA,331.428571428571,9.06,NA,NA
+2014-01-29,"E","Littorina_sitkana","Nucella_ostrina",0,0,0,NA,331.428571428571,9.06,NA,NA
+2014-01-29,"E","Modiolus_modiolus","Nucella_canaliculata",0,0,3,NA,0,9.06,NA,NA
+2014-01-29,"E","Modiolus_modiolus","Nucella_ostrina",0,0,0,NA,0,9.06,NA,NA
+2014-01-29,"E","Mytilus_californianus","Nucella_canaliculata",0,0,3,NA,0,9.06,NA,NA
+2014-01-29,"E","Mytilus_californianus","Nucella_ostrina",0,0,0,NA,0,9.06,NA,NA
+2014-01-29,"E","Mytilus_trossulus","Nucella_canaliculata",0,0,3,NA,4144.76190476191,9.06,NA,NA
+2014-01-29,"E","Mytilus_trossulus","Nucella_ostrina",0,0,0,NA,4144.76190476191,9.06,NA,NA
+2014-01-29,"E","Nucella_ostrina","Nucella_canaliculata",0,0,3,NA,0,9.06,NA,NA
+2014-01-29,"E","Nucella_ostrina","Nucella_ostrina",0,0,0,NA,0,9.06,NA,NA
+2014-01-29,"E","Pollicipes_polymerus","Nucella_canaliculata",0,0,3,NA,0,9.06,NA,NA
+2014-01-29,"E","Pollicipes_polymerus","Nucella_ostrina",0,0,0,NA,0,9.06,NA,NA
+2014-01-29,"E","Semibalanus_cariosus","Nucella_canaliculata",0,0,3,NA,0,9.06,NA,NA
+2014-01-29,"E","Semibalanus_cariosus","Nucella_ostrina",0,0,0,NA,0,9.06,NA,NA
+2014-01-29,"F","Adula_californiensis","Nucella_canaliculata",0,0,0,NA,0,9.06,NA,NA
+2014-01-29,"F","Adula_californiensis","Nucella_ostrina",0,0,0,NA,0,9.06,NA,NA
+2014-01-29,"F","Balanus_glandula","Nucella_canaliculata",0,0,0,NA,70976,9.06,NA,NA
+2014-01-29,"F","Balanus_glandula","Nucella_ostrina",0,0,0,NA,70976,9.06,NA,NA
+2014-01-29,"F","Chthamalus_dalli","Nucella_canaliculata",0,0,0,NA,277.333333333333,9.06,NA,NA
+2014-01-29,"F","Chthamalus_dalli","Nucella_ostrina",0,0,0,NA,277.333333333333,9.06,NA,NA
+2014-01-29,"F","Hiatella_arctica","Nucella_canaliculata",0,0,0,NA,0,9.06,NA,NA
+2014-01-29,"F","Hiatella_arctica","Nucella_ostrina",0,0,0,NA,0,9.06,NA,NA
+2014-01-29,"F","Limpets","Nucella_canaliculata",0,0,0,NA,8902.85714285714,9.06,NA,NA
+2014-01-29,"F","Limpets","Nucella_ostrina",0,0,0,NA,8902.85714285714,9.06,NA,NA
+2014-01-29,"F","Littorina_sitkana","Nucella_canaliculata",0,0,0,NA,4361.90476190476,9.06,NA,NA
+2014-01-29,"F","Littorina_sitkana","Nucella_ostrina",0,0,0,NA,4361.90476190476,9.06,NA,NA
+2014-01-29,"F","Modiolus_modiolus","Nucella_canaliculata",0,0,0,NA,0,9.06,NA,NA
+2014-01-29,"F","Modiolus_modiolus","Nucella_ostrina",0,0,0,NA,0,9.06,NA,NA
+2014-01-29,"F","Mytilus_californianus","Nucella_canaliculata",0,0,0,NA,0,9.06,NA,NA
+2014-01-29,"F","Mytilus_californianus","Nucella_ostrina",0,0,0,NA,0,9.06,NA,NA
+2014-01-29,"F","Mytilus_trossulus","Nucella_canaliculata",0,0,0,NA,7070.47619047619,9.06,NA,NA
+2014-01-29,"F","Mytilus_trossulus","Nucella_ostrina",0,0,0,NA,7070.47619047619,9.06,NA,NA
+2014-01-29,"F","Nucella_ostrina","Nucella_canaliculata",0,0,0,NA,0,9.06,NA,NA
+2014-01-29,"F","Nucella_ostrina","Nucella_ostrina",0,0,0,NA,0,9.06,NA,NA
+2014-01-29,"F","Pollicipes_polymerus","Nucella_canaliculata",0,0,0,NA,0,9.06,NA,NA
+2014-01-29,"F","Pollicipes_polymerus","Nucella_ostrina",0,0,0,NA,0,9.06,NA,NA
+2014-01-29,"F","Semibalanus_cariosus","Nucella_canaliculata",0,0,0,NA,0,9.06,NA,NA
+2014-01-29,"F","Semibalanus_cariosus","Nucella_ostrina",0,0,0,NA,0,9.06,NA,NA
+2014-01-29,"G","Adula_californiensis","Nucella_canaliculata",0,0,0,NA,0,9.06,NA,NA
+2014-01-29,"G","Adula_californiensis","Nucella_ostrina",0,0,1,NA,0,9.06,NA,NA
+2014-01-29,"G","Balanus_glandula","Nucella_canaliculata",0,0,0,NA,19849.1428571428,9.06,NA,NA
+2014-01-29,"G","Balanus_glandula","Nucella_ostrina",0,0,1,NA,19849.1428571428,9.06,NA,NA
+2014-01-29,"G","Chthamalus_dalli","Nucella_canaliculata",0,0,0,NA,1328.76190476191,9.06,NA,NA
+2014-01-29,"G","Chthamalus_dalli","Nucella_ostrina",0,0,1,NA,1328.76190476191,9.06,NA,NA
+2014-01-29,"G","Hiatella_arctica","Nucella_canaliculata",0,0,0,NA,0,9.06,NA,NA
+2014-01-29,"G","Hiatella_arctica","Nucella_ostrina",0,0,1,NA,0,9.06,NA,NA
+2014-01-29,"G","Limpets","Nucella_canaliculata",0,0,0,NA,800.000000000001,9.06,NA,NA
+2014-01-29,"G","Limpets","Nucella_ostrina",0,0,1,NA,800.000000000001,9.06,NA,NA
+2014-01-29,"G","Littorina_sitkana","Nucella_canaliculata",0,0,0,NA,742.857142857142,9.06,NA,NA
+2014-01-29,"G","Littorina_sitkana","Nucella_ostrina",0,0,1,NA,742.857142857142,9.06,NA,NA
+2014-01-29,"G","Modiolus_modiolus","Nucella_canaliculata",0,0,0,NA,0,9.06,NA,NA
+2014-01-29,"G","Modiolus_modiolus","Nucella_ostrina",0,0,1,NA,0,9.06,NA,NA
+2014-01-29,"G","Mytilus_californianus","Nucella_canaliculata",0,0,0,NA,3.8095238095238,9.06,NA,NA
+2014-01-29,"G","Mytilus_californianus","Nucella_ostrina",0,0,1,NA,3.8095238095238,9.06,NA,NA
+2014-01-29,"G","Mytilus_trossulus","Nucella_canaliculata",0,0,0,NA,21554.2857142857,9.06,NA,NA
+2014-01-29,"G","Mytilus_trossulus","Nucella_ostrina",0,0,1,NA,21554.2857142857,9.06,NA,NA
+2014-01-29,"G","Nucella_ostrina","Nucella_canaliculata",0,0,0,NA,3.8095238095238,9.06,NA,NA
+2014-01-29,"G","Nucella_ostrina","Nucella_ostrina",0,0,1,NA,3.8095238095238,9.06,NA,NA
+2014-01-29,"G","Pollicipes_polymerus","Nucella_canaliculata",0,0,0,NA,3.8095238095238,9.06,NA,NA
+2014-01-29,"G","Pollicipes_polymerus","Nucella_ostrina",0,0,1,NA,3.8095238095238,9.06,NA,NA
+2014-01-29,"G","Semibalanus_cariosus","Nucella_canaliculata",0,0,0,NA,0,9.06,NA,NA
+2014-01-29,"G","Semibalanus_cariosus","Nucella_ostrina",0,0,1,NA,0,9.06,NA,NA
+2014-02-26,"A","Adula_californiensis","Nucella_canaliculata",0,0,3,NA,0,10.37,NA,NA
+2014-02-26,"A","Adula_californiensis","Nucella_ostrina",0,0,1,NA,0,10.37,NA,NA
+2014-02-26,"A","Balanus_glandula","Nucella_canaliculata",0,0,3,NA,54418.2857142857,10.37,NA,NA
+2014-02-26,"A","Balanus_glandula","Nucella_ostrina",0,0,1,NA,54418.2857142857,10.37,NA,NA
+2014-02-26,"A","Chthamalus_dalli","Nucella_canaliculata",0,0,3,NA,0,10.37,NA,NA
+2014-02-26,"A","Chthamalus_dalli","Nucella_ostrina",0,0,1,NA,0,10.37,NA,NA
+2014-02-26,"A","Hiatella_arctica","Nucella_canaliculata",0,0,3,NA,0,10.37,NA,NA
+2014-02-26,"A","Hiatella_arctica","Nucella_ostrina",0,0,1,NA,0,10.37,NA,NA
+2014-02-26,"A","Limpets","Nucella_canaliculata",0,0,3,NA,887.619047619049,10.37,NA,NA
+2014-02-26,"A","Limpets","Nucella_ostrina",0,0,1,NA,887.619047619049,10.37,NA,NA
+2014-02-26,"A","Littorina_sitkana","Nucella_canaliculata",0,0,3,NA,826.666666666667,10.37,NA,NA
+2014-02-26,"A","Littorina_sitkana","Nucella_ostrina",0,0,1,NA,826.666666666667,10.37,NA,NA
+2014-02-26,"A","Modiolus_modiolus","Nucella_canaliculata",0,0,3,NA,0,10.37,NA,NA
+2014-02-26,"A","Modiolus_modiolus","Nucella_ostrina",0,0,1,NA,0,10.37,NA,NA
+2014-02-26,"A","Mytilus_californianus","Nucella_canaliculata",0,0,3,NA,3.8095238095238,10.37,NA,NA
+2014-02-26,"A","Mytilus_californianus","Nucella_ostrina",0,0,1,NA,3.8095238095238,10.37,NA,NA
+2014-02-26,"A","Mytilus_trossulus","Nucella_canaliculata",2,2,3,45.469879298717,7645.71428571429,10.37,5.75291728159365e-06,0.0439851618444132
+2014-02-26,"A","Mytilus_trossulus","Nucella_ostrina",0,0,1,NA,7645.71428571429,10.37,NA,NA
+2014-02-26,"A","Nucella_ostrina","Nucella_canaliculata",0,0,3,NA,3.8095238095238,10.37,NA,NA
+2014-02-26,"A","Nucella_ostrina","Nucella_ostrina",0,0,1,NA,3.8095238095238,10.37,NA,NA
+2014-02-26,"A","Pollicipes_polymerus","Nucella_canaliculata",0,0,3,NA,0,10.37,NA,NA
+2014-02-26,"A","Pollicipes_polymerus","Nucella_ostrina",0,0,1,NA,0,10.37,NA,NA
+2014-02-26,"A","Semibalanus_cariosus","Nucella_canaliculata",0,0,3,NA,0,10.37,NA,NA
+2014-02-26,"A","Semibalanus_cariosus","Nucella_ostrina",0,0,1,NA,0,10.37,NA,NA
+2014-02-26,"AB","Adula_californiensis","Nucella_canaliculata",0,0,0,NA,0,10.37,NA,NA
+2014-02-26,"AB","Adula_californiensis","Nucella_ostrina",0,0,0,NA,0,10.37,NA,NA
+2014-02-26,"AB","Balanus_glandula","Nucella_canaliculata",0,0,0,NA,26049.1428571429,10.37,NA,NA
+2014-02-26,"AB","Balanus_glandula","Nucella_ostrina",0,0,0,NA,26049.1428571429,10.37,NA,NA
+2014-02-26,"AB","Chthamalus_dalli","Nucella_canaliculata",0,0,0,NA,432,10.37,NA,NA
+2014-02-26,"AB","Chthamalus_dalli","Nucella_ostrina",0,0,0,NA,432,10.37,NA,NA
+2014-02-26,"AB","Hiatella_arctica","Nucella_canaliculata",0,0,0,NA,0,10.37,NA,NA
+2014-02-26,"AB","Hiatella_arctica","Nucella_ostrina",0,0,0,NA,0,10.37,NA,NA
+2014-02-26,"AB","Limpets","Nucella_canaliculata",0,0,0,NA,720.000000000002,10.37,NA,NA
+2014-02-26,"AB","Limpets","Nucella_ostrina",0,0,0,NA,720.000000000002,10.37,NA,NA
+2014-02-26,"AB","Littorina_sitkana","Nucella_canaliculata",0,0,0,NA,85.7142857142857,10.37,NA,NA
+2014-02-26,"AB","Littorina_sitkana","Nucella_ostrina",0,0,0,NA,85.7142857142857,10.37,NA,NA
+2014-02-26,"AB","Modiolus_modiolus","Nucella_canaliculata",0,0,0,NA,0,10.37,NA,NA
+2014-02-26,"AB","Modiolus_modiolus","Nucella_ostrina",0,0,0,NA,0,10.37,NA,NA
+2014-02-26,"AB","Mytilus_californianus","Nucella_canaliculata",0,0,0,NA,0,10.37,NA,NA
+2014-02-26,"AB","Mytilus_californianus","Nucella_ostrina",0,0,0,NA,0,10.37,NA,NA
+2014-02-26,"AB","Mytilus_trossulus","Nucella_canaliculata",0,0,0,NA,1777.14285714286,10.37,NA,NA
+2014-02-26,"AB","Mytilus_trossulus","Nucella_ostrina",0,0,0,NA,1777.14285714286,10.37,NA,NA
+2014-02-26,"AB","Nucella_ostrina","Nucella_canaliculata",0,0,0,NA,0,10.37,NA,NA
+2014-02-26,"AB","Nucella_ostrina","Nucella_ostrina",0,0,0,NA,0,10.37,NA,NA
+2014-02-26,"AB","Pollicipes_polymerus","Nucella_canaliculata",0,0,0,NA,0,10.37,NA,NA
+2014-02-26,"AB","Pollicipes_polymerus","Nucella_ostrina",0,0,0,NA,0,10.37,NA,NA
+2014-02-26,"AB","Semibalanus_cariosus","Nucella_canaliculata",0,0,0,NA,0,10.37,NA,NA
+2014-02-26,"AB","Semibalanus_cariosus","Nucella_ostrina",0,0,0,NA,0,10.37,NA,NA
+2014-02-26,"AC","Adula_californiensis","Nucella_canaliculata",0,0,0,NA,0,10.37,NA,NA
+2014-02-26,"AC","Adula_californiensis","Nucella_ostrina",0,0,1,NA,0,10.37,NA,NA
+2014-02-26,"AC","Balanus_glandula","Nucella_canaliculata",0,0,0,NA,8282.85714285714,10.37,NA,NA
+2014-02-26,"AC","Balanus_glandula","Nucella_ostrina",Inf,1,1,12.9329902974358,8282.85714285714,10.37,9.33514089734579e-06,0.0773216384611584
+2014-02-26,"AC","Chthamalus_dalli","Nucella_canaliculata",0,0,0,NA,900.000000000002,10.37,NA,NA
+2014-02-26,"AC","Chthamalus_dalli","Nucella_ostrina",0,0,1,NA,900.000000000002,10.37,NA,NA
+2014-02-26,"AC","Hiatella_arctica","Nucella_canaliculata",0,0,0,NA,0,10.37,NA,NA
+2014-02-26,"AC","Hiatella_arctica","Nucella_ostrina",0,0,1,NA,0,10.37,NA,NA
+2014-02-26,"AC","Limpets","Nucella_canaliculata",0,0,0,NA,668.571428571429,10.37,NA,NA
+2014-02-26,"AC","Limpets","Nucella_ostrina",0,0,1,NA,668.571428571429,10.37,NA,NA
+2014-02-26,"AC","Littorina_sitkana","Nucella_canaliculata",0,0,0,NA,322.857142857143,10.37,NA,NA
+2014-02-26,"AC","Littorina_sitkana","Nucella_ostrina",0,0,1,NA,322.857142857143,10.37,NA,NA
+2014-02-26,"AC","Modiolus_modiolus","Nucella_canaliculata",0,0,0,NA,0,10.37,NA,NA
+2014-02-26,"AC","Modiolus_modiolus","Nucella_ostrina",0,0,1,NA,0,10.37,NA,NA
+2014-02-26,"AC","Mytilus_californianus","Nucella_canaliculata",0,0,0,NA,0,10.37,NA,NA
+2014-02-26,"AC","Mytilus_californianus","Nucella_ostrina",0,0,1,NA,0,10.37,NA,NA
+2014-02-26,"AC","Mytilus_trossulus","Nucella_canaliculata",0,0,0,NA,260,10.37,NA,NA
+2014-02-26,"AC","Mytilus_trossulus","Nucella_ostrina",0,0,1,NA,260,10.37,NA,NA
+2014-02-26,"AC","Nucella_ostrina","Nucella_canaliculata",0,0,0,NA,2.85714285714285,10.37,NA,NA
+2014-02-26,"AC","Nucella_ostrina","Nucella_ostrina",0,0,1,NA,2.85714285714285,10.37,NA,NA
+2014-02-26,"AC","Pollicipes_polymerus","Nucella_canaliculata",0,0,0,NA,0,10.37,NA,NA
+2014-02-26,"AC","Pollicipes_polymerus","Nucella_ostrina",0,0,1,NA,0,10.37,NA,NA
+2014-02-26,"AC","Semibalanus_cariosus","Nucella_canaliculata",0,0,0,NA,0,10.37,NA,NA
+2014-02-26,"AC","Semibalanus_cariosus","Nucella_ostrina",0,0,1,NA,0,10.37,NA,NA
+2014-02-26,"AD","Adula_californiensis","Nucella_canaliculata",0,0,18,NA,0,10.37,NA,NA
+2014-02-26,"AD","Adula_californiensis","Nucella_ostrina",0,0,8,NA,0,10.37,NA,NA
+2014-02-26,"AD","Balanus_glandula","Nucella_canaliculata",0,0,18,NA,31040,10.37,NA,NA
+2014-02-26,"AD","Balanus_glandula","Nucella_ostrina",0,0,8,NA,31040,10.37,NA,NA
+2014-02-26,"AD","Chthamalus_dalli","Nucella_canaliculata",0,0,18,NA,8277.33333333333,10.37,NA,NA
+2014-02-26,"AD","Chthamalus_dalli","Nucella_ostrina",0,0,8,NA,8277.33333333333,10.37,NA,NA
+2014-02-26,"AD","Hiatella_arctica","Nucella_canaliculata",0,0,18,NA,0,10.37,NA,NA
+2014-02-26,"AD","Hiatella_arctica","Nucella_ostrina",0,0,8,NA,0,10.37,NA,NA
+2014-02-26,"AD","Limpets","Nucella_canaliculata",0,0,18,NA,735.238095238094,10.37,NA,NA
+2014-02-26,"AD","Limpets","Nucella_ostrina",0,0,8,NA,735.238095238094,10.37,NA,NA
+2014-02-26,"AD","Littorina_sitkana","Nucella_canaliculata",0,0,18,NA,3154.28571428571,10.37,NA,NA
+2014-02-26,"AD","Littorina_sitkana","Nucella_ostrina",0,0,8,NA,3154.28571428571,10.37,NA,NA
+2014-02-26,"AD","Modiolus_modiolus","Nucella_canaliculata",0,0,18,NA,0,10.37,NA,NA
+2014-02-26,"AD","Modiolus_modiolus","Nucella_ostrina",0,0,8,NA,0,10.37,NA,NA
+2014-02-26,"AD","Mytilus_californianus","Nucella_canaliculata",0,0,18,NA,0,10.37,NA,NA
+2014-02-26,"AD","Mytilus_californianus","Nucella_ostrina",0,0,8,NA,0,10.37,NA,NA
+2014-02-26,"AD","Mytilus_trossulus","Nucella_canaliculata",0.125,2,18,61.0654311291375,6194.28571428571,10.37,3.30463388626829e-07,0.00204698464726561
+2014-02-26,"AD","Mytilus_trossulus","Nucella_ostrina",0.142857142857143,1,8,44.9216237921426,6194.28571428571,10.37,5.13399309295232e-07,0.00318014200729161
+2014-02-26,"AD","Nucella_ostrina","Nucella_canaliculata",0,0,18,NA,0,10.37,NA,NA
+2014-02-26,"AD","Nucella_ostrina","Nucella_ostrina",0,0,8,NA,0,10.37,NA,NA
+2014-02-26,"AD","Pollicipes_polymerus","Nucella_canaliculata",0,0,18,NA,34.2857142857143,10.37,NA,NA
+2014-02-26,"AD","Pollicipes_polymerus","Nucella_ostrina",0,0,8,NA,34.2857142857143,10.37,NA,NA
+2014-02-26,"AD","Semibalanus_cariosus","Nucella_canaliculata",0,0,18,NA,0,10.37,NA,NA
+2014-02-26,"AD","Semibalanus_cariosus","Nucella_ostrina",0,0,8,NA,0,10.37,NA,NA
+2014-02-26,"AE","Adula_californiensis","Nucella_canaliculata",0,0,2,NA,0,10.37,NA,NA
+2014-02-26,"AE","Adula_californiensis","Nucella_ostrina",0,0,2,NA,0,10.37,NA,NA
+2014-02-26,"AE","Balanus_glandula","Nucella_canaliculata",0,0,2,NA,55381.3333333333,10.37,NA,NA
+2014-02-26,"AE","Balanus_glandula","Nucella_ostrina",0,0,2,NA,55381.3333333333,10.37,NA,NA
+2014-02-26,"AE","Chthamalus_dalli","Nucella_canaliculata",0,0,2,NA,5226.66666666667,10.37,NA,NA
+2014-02-26,"AE","Chthamalus_dalli","Nucella_ostrina",0,0,2,NA,5226.66666666667,10.37,NA,NA
+2014-02-26,"AE","Hiatella_arctica","Nucella_canaliculata",0,0,2,NA,0,10.37,NA,NA
+2014-02-26,"AE","Hiatella_arctica","Nucella_ostrina",0,0,2,NA,0,10.37,NA,NA
+2014-02-26,"AE","Limpets","Nucella_canaliculata",0,0,2,NA,1756.19047619048,10.37,NA,NA
+2014-02-26,"AE","Limpets","Nucella_ostrina",0,0,2,NA,1756.19047619048,10.37,NA,NA
+2014-02-26,"AE","Littorina_sitkana","Nucella_canaliculata",0,0,2,NA,2186.66666666667,10.37,NA,NA
+2014-02-26,"AE","Littorina_sitkana","Nucella_ostrina",0,0,2,NA,2186.66666666667,10.37,NA,NA
+2014-02-26,"AE","Modiolus_modiolus","Nucella_canaliculata",0,0,2,NA,0,10.37,NA,NA
+2014-02-26,"AE","Modiolus_modiolus","Nucella_ostrina",0,0,2,NA,0,10.37,NA,NA
+2014-02-26,"AE","Mytilus_californianus","Nucella_canaliculata",0,0,2,NA,0,10.37,NA,NA
+2014-02-26,"AE","Mytilus_californianus","Nucella_ostrina",0,0,2,NA,0,10.37,NA,NA
+2014-02-26,"AE","Mytilus_trossulus","Nucella_canaliculata",0,0,2,NA,2434.28571428571,10.37,NA,NA
+2014-02-26,"AE","Mytilus_trossulus","Nucella_ostrina",0,0,2,NA,2434.28571428571,10.37,NA,NA
+2014-02-26,"AE","Nucella_ostrina","Nucella_canaliculata",0,0,2,NA,0,10.37,NA,NA
+2014-02-26,"AE","Nucella_ostrina","Nucella_ostrina",0,0,2,NA,0,10.37,NA,NA
+2014-02-26,"AE","Pollicipes_polymerus","Nucella_canaliculata",0,0,2,NA,22.8571428571429,10.37,NA,NA
+2014-02-26,"AE","Pollicipes_polymerus","Nucella_ostrina",0,0,2,NA,22.8571428571429,10.37,NA,NA
+2014-02-26,"AE","Semibalanus_cariosus","Nucella_canaliculata",0,0,2,NA,3.8095238095238,10.37,NA,NA
+2014-02-26,"AE","Semibalanus_cariosus","Nucella_ostrina",0,0,2,NA,3.8095238095238,10.37,NA,NA
+2014-02-26,"AF","Adula_californiensis","Nucella_canaliculata",0,0,0,NA,0,10.37,NA,NA
+2014-02-26,"AF","Adula_californiensis","Nucella_ostrina",0,0,10,NA,0,10.37,NA,NA
+2014-02-26,"AF","Balanus_glandula","Nucella_canaliculata",0,0,0,NA,45459.8095238095,10.37,NA,NA
+2014-02-26,"AF","Balanus_glandula","Nucella_ostrina",0.8,4,10,39.2808920436698,45459.8095238095,10.37,4.48003114818214e-07,0.0203661362657094
+2014-02-26,"AF","Chthamalus_dalli","Nucella_canaliculata",0,0,0,NA,0,10.37,NA,NA
+2014-02-26,"AF","Chthamalus_dalli","Nucella_ostrina",0,0,10,NA,0,10.37,NA,NA
+2014-02-26,"AF","Hiatella_arctica","Nucella_canaliculata",0,0,0,NA,0,10.37,NA,NA
+2014-02-26,"AF","Hiatella_arctica","Nucella_ostrina",0,0,10,NA,0,10.37,NA,NA
+2014-02-26,"AF","Limpets","Nucella_canaliculata",0,0,0,NA,1043.80952380952,10.37,NA,NA
+2014-02-26,"AF","Limpets","Nucella_ostrina",0,0,10,NA,1043.80952380952,10.37,NA,NA
+2014-02-26,"AF","Littorina_sitkana","Nucella_canaliculata",0,0,0,NA,3055.2380952381,10.37,NA,NA
+2014-02-26,"AF","Littorina_sitkana","Nucella_ostrina",0,0,10,NA,3055.2380952381,10.37,NA,NA
+2014-02-26,"AF","Modiolus_modiolus","Nucella_canaliculata",0,0,0,NA,0,10.37,NA,NA
+2014-02-26,"AF","Modiolus_modiolus","Nucella_ostrina",0,0,10,NA,0,10.37,NA,NA
+2014-02-26,"AF","Mytilus_californianus","Nucella_canaliculata",0,0,0,NA,0,10.37,NA,NA
+2014-02-26,"AF","Mytilus_californianus","Nucella_ostrina",0,0,10,NA,0,10.37,NA,NA
+2014-02-26,"AF","Mytilus_trossulus","Nucella_canaliculata",0,0,0,NA,5927.61904761905,10.37,NA,NA
+2014-02-26,"AF","Mytilus_trossulus","Nucella_ostrina",0.2,1,10,27.4876851408943,5927.61904761905,10.37,1.22747185600492e-06,0.00727598555407104
+2014-02-26,"AF","Nucella_ostrina","Nucella_canaliculata",0,0,0,NA,0,10.37,NA,NA
+2014-02-26,"AF","Nucella_ostrina","Nucella_ostrina",0,0,10,NA,0,10.37,NA,NA
+2014-02-26,"AF","Pollicipes_polymerus","Nucella_canaliculata",0,0,0,NA,0,10.37,NA,NA
+2014-02-26,"AF","Pollicipes_polymerus","Nucella_ostrina",0,0,10,NA,0,10.37,NA,NA
+2014-02-26,"AF","Semibalanus_cariosus","Nucella_canaliculata",0,0,0,NA,0,10.37,NA,NA
+2014-02-26,"AF","Semibalanus_cariosus","Nucella_ostrina",0,0,10,NA,0,10.37,NA,NA
+2014-02-26,"AG","Adula_californiensis","Nucella_canaliculata",0,0,7,NA,0,10.37,NA,NA
+2014-02-26,"AG","Adula_californiensis","Nucella_ostrina",0,0,12,NA,0,10.37,NA,NA
+2014-02-26,"AG","Balanus_glandula","Nucella_canaliculata",0,0,7,NA,35504.4571428571,10.37,NA,NA
+2014-02-26,"AG","Balanus_glandula","Nucella_ostrina",0,0,12,NA,35504.4571428571,10.37,NA,NA
+2014-02-26,"AG","Chthamalus_dalli","Nucella_canaliculata",0,0,7,NA,706.285714285714,10.37,NA,NA
+2014-02-26,"AG","Chthamalus_dalli","Nucella_ostrina",0,0,12,NA,706.285714285714,10.37,NA,NA
+2014-02-26,"AG","Hiatella_arctica","Nucella_canaliculata",0,0,7,NA,0,10.37,NA,NA
+2014-02-26,"AG","Hiatella_arctica","Nucella_ostrina",0,0,12,NA,0,10.37,NA,NA
+2014-02-26,"AG","Limpets","Nucella_canaliculata",0,0,7,NA,340.571428571429,10.37,NA,NA
+2014-02-26,"AG","Limpets","Nucella_ostrina",0,0,12,NA,340.571428571429,10.37,NA,NA
+2014-02-26,"AG","Littorina_sitkana","Nucella_canaliculata",0,0,7,NA,580.571428571429,10.37,NA,NA
+2014-02-26,"AG","Littorina_sitkana","Nucella_ostrina",0,0,12,NA,580.571428571429,10.37,NA,NA
+2014-02-26,"AG","Modiolus_modiolus","Nucella_canaliculata",0,0,7,NA,0,10.37,NA,NA
+2014-02-26,"AG","Modiolus_modiolus","Nucella_ostrina",0,0,12,NA,0,10.37,NA,NA
+2014-02-26,"AG","Mytilus_californianus","Nucella_canaliculata",0,0,7,NA,0,10.37,NA,NA
+2014-02-26,"AG","Mytilus_californianus","Nucella_ostrina",0,0,12,NA,0,10.37,NA,NA
+2014-02-26,"AG","Mytilus_trossulus","Nucella_canaliculata",0,0,7,NA,2749.71428571429,10.37,NA,NA
+2014-02-26,"AG","Mytilus_trossulus","Nucella_ostrina",0,0,12,NA,2749.71428571429,10.37,NA,NA
+2014-02-26,"AG","Nucella_ostrina","Nucella_canaliculata",0,0,7,NA,2.28571428571428,10.37,NA,NA
+2014-02-26,"AG","Nucella_ostrina","Nucella_ostrina",0,0,12,NA,2.28571428571428,10.37,NA,NA
+2014-02-26,"AG","Pollicipes_polymerus","Nucella_canaliculata",0,0,7,NA,0,10.37,NA,NA
+2014-02-26,"AG","Pollicipes_polymerus","Nucella_ostrina",0,0,12,NA,0,10.37,NA,NA
+2014-02-26,"AG","Semibalanus_cariosus","Nucella_canaliculata",0,0,7,NA,0,10.37,NA,NA
+2014-02-26,"AG","Semibalanus_cariosus","Nucella_ostrina",0,0,12,NA,0,10.37,NA,NA
+2014-02-26,"B","Adula_californiensis","Nucella_canaliculata",0,0,17,NA,0,10.37,NA,NA
+2014-02-26,"B","Adula_californiensis","Nucella_ostrina",0,0,5,NA,0,10.37,NA,NA
+2014-02-26,"B","Balanus_glandula","Nucella_canaliculata",0.0666666666666667,1,17,24.42891434128,58712.126984127,10.37,4.6481138845342e-08,0.00272900652625456
+2014-02-26,"B","Balanus_glandula","Nucella_ostrina",0,0,5,NA,58712.126984127,10.37,NA,NA
+2014-02-26,"B","Chthamalus_dalli","Nucella_canaliculata",0,0,17,NA,0,10.37,NA,NA
+2014-02-26,"B","Chthamalus_dalli","Nucella_ostrina",0,0,5,NA,0,10.37,NA,NA
+2014-02-26,"B","Hiatella_arctica","Nucella_canaliculata",0,0,17,NA,0,10.37,NA,NA
+2014-02-26,"B","Hiatella_arctica","Nucella_ostrina",0,0,5,NA,0,10.37,NA,NA
+2014-02-26,"B","Limpets","Nucella_canaliculata",0,0,17,NA,944.761904761904,10.37,NA,NA
+2014-02-26,"B","Limpets","Nucella_ostrina",0,0,5,NA,944.761904761904,10.37,NA,NA
+2014-02-26,"B","Littorina_sitkana","Nucella_canaliculata",0,0,17,NA,214.603174603175,10.37,NA,NA
+2014-02-26,"B","Littorina_sitkana","Nucella_ostrina",0,0,5,NA,214.603174603175,10.37,NA,NA
+2014-02-26,"B","Modiolus_modiolus","Nucella_canaliculata",0,0,17,NA,0,10.37,NA,NA
+2014-02-26,"B","Modiolus_modiolus","Nucella_ostrina",0,0,5,NA,0,10.37,NA,NA
+2014-02-26,"B","Mytilus_californianus","Nucella_canaliculata",0,0,17,NA,22.8571428571428,10.37,NA,NA
+2014-02-26,"B","Mytilus_californianus","Nucella_ostrina",0,0,5,NA,22.8571428571428,10.37,NA,NA
+2014-02-26,"B","Mytilus_trossulus","Nucella_canaliculata",0.0666666666666667,1,17,65.2267515097017,2414.22222222222,10.37,4.23356028005986e-07,0.00102207553072378
+2014-02-26,"B","Mytilus_trossulus","Nucella_ostrina",0,0,5,NA,2414.22222222222,10.37,NA,NA
+2014-02-26,"B","Nucella_ostrina","Nucella_canaliculata",0,0,17,NA,0,10.37,NA,NA
+2014-02-26,"B","Nucella_ostrina","Nucella_ostrina",0,0,5,NA,0,10.37,NA,NA
+2014-02-26,"B","Pollicipes_polymerus","Nucella_canaliculata",0,0,17,NA,29.2063492063492,10.37,NA,NA
+2014-02-26,"B","Pollicipes_polymerus","Nucella_ostrina",0,0,5,NA,29.2063492063492,10.37,NA,NA
+2014-02-26,"B","Semibalanus_cariosus","Nucella_canaliculata",0,0,17,NA,5.07936507936508,10.37,NA,NA
+2014-02-26,"B","Semibalanus_cariosus","Nucella_ostrina",0,0,5,NA,5.07936507936508,10.37,NA,NA
+2014-02-26,"BB","Adula_californiensis","Nucella_canaliculata",0,0,1,NA,0,10.37,NA,NA
+2014-02-26,"BB","Adula_californiensis","Nucella_ostrina",0,0,4,NA,0,10.37,NA,NA
+2014-02-26,"BB","Balanus_glandula","Nucella_canaliculata",0,0,1,NA,52458.6666666667,10.37,NA,NA
+2014-02-26,"BB","Balanus_glandula","Nucella_ostrina",0,0,4,NA,52458.6666666667,10.37,NA,NA
+2014-02-26,"BB","Chthamalus_dalli","Nucella_canaliculata",0,0,1,NA,320,10.37,NA,NA
+2014-02-26,"BB","Chthamalus_dalli","Nucella_ostrina",0,0,4,NA,320,10.37,NA,NA
+2014-02-26,"BB","Hiatella_arctica","Nucella_canaliculata",0,0,1,NA,0,10.37,NA,NA
+2014-02-26,"BB","Hiatella_arctica","Nucella_ostrina",0,0,4,NA,0,10.37,NA,NA
+2014-02-26,"BB","Limpets","Nucella_canaliculata",0,0,1,NA,129.52380952381,10.37,NA,NA
+2014-02-26,"BB","Limpets","Nucella_ostrina",0,0,4,NA,129.52380952381,10.37,NA,NA
+2014-02-26,"BB","Littorina_sitkana","Nucella_canaliculata",0,0,1,NA,1847.61904761905,10.37,NA,NA
+2014-02-26,"BB","Littorina_sitkana","Nucella_ostrina",0,0,4,NA,1847.61904761905,10.37,NA,NA
+2014-02-26,"BB","Modiolus_modiolus","Nucella_canaliculata",0,0,1,NA,0,10.37,NA,NA
+2014-02-26,"BB","Modiolus_modiolus","Nucella_ostrina",0,0,4,NA,0,10.37,NA,NA
+2014-02-26,"BB","Mytilus_californianus","Nucella_canaliculata",0,0,1,NA,0,10.37,NA,NA
+2014-02-26,"BB","Mytilus_californianus","Nucella_ostrina",0,0,4,NA,0,10.37,NA,NA
+2014-02-26,"BB","Mytilus_trossulus","Nucella_canaliculata",0,0,1,NA,4758.09523809524,10.37,NA,NA
+2014-02-26,"BB","Mytilus_trossulus","Nucella_ostrina",0,0,4,NA,4758.09523809524,10.37,NA,NA
+2014-02-26,"BB","Nucella_ostrina","Nucella_canaliculata",0,0,1,NA,3.8095238095238,10.37,NA,NA
+2014-02-26,"BB","Nucella_ostrina","Nucella_ostrina",0,0,4,NA,3.8095238095238,10.37,NA,NA
+2014-02-26,"BB","Pollicipes_polymerus","Nucella_canaliculata",0,0,1,NA,0,10.37,NA,NA
+2014-02-26,"BB","Pollicipes_polymerus","Nucella_ostrina",0,0,4,NA,0,10.37,NA,NA
+2014-02-26,"BB","Semibalanus_cariosus","Nucella_canaliculata",0,0,1,NA,0,10.37,NA,NA
+2014-02-26,"BB","Semibalanus_cariosus","Nucella_ostrina",0,0,4,NA,0,10.37,NA,NA
+2014-02-26,"BC","Adula_californiensis","Nucella_canaliculata",0,0,2,NA,0,10.37,NA,NA
+2014-02-26,"BC","Adula_californiensis","Nucella_ostrina",0,0,6,NA,0,10.37,NA,NA
+2014-02-26,"BC","Balanus_glandula","Nucella_canaliculata",0,0,2,NA,77077.3333333333,10.37,NA,NA
+2014-02-26,"BC","Balanus_glandula","Nucella_ostrina",0,0,6,NA,77077.3333333333,10.37,NA,NA
+2014-02-26,"BC","Chthamalus_dalli","Nucella_canaliculata",0,0,2,NA,0,10.37,NA,NA
+2014-02-26,"BC","Chthamalus_dalli","Nucella_ostrina",0,0,6,NA,0,10.37,NA,NA
+2014-02-26,"BC","Hiatella_arctica","Nucella_canaliculata",0,0,2,NA,0,10.37,NA,NA
+2014-02-26,"BC","Hiatella_arctica","Nucella_ostrina",0,0,6,NA,0,10.37,NA,NA
+2014-02-26,"BC","Limpets","Nucella_canaliculata",0,0,2,NA,190.476190476191,10.37,NA,NA
+2014-02-26,"BC","Limpets","Nucella_ostrina",0,0,6,NA,190.476190476191,10.37,NA,NA
+2014-02-26,"BC","Littorina_sitkana","Nucella_canaliculata",0,0,2,NA,2057.14285714286,10.37,NA,NA
+2014-02-26,"BC","Littorina_sitkana","Nucella_ostrina",0,0,6,NA,2057.14285714286,10.37,NA,NA
+2014-02-26,"BC","Modiolus_modiolus","Nucella_canaliculata",0,0,2,NA,0,10.37,NA,NA
+2014-02-26,"BC","Modiolus_modiolus","Nucella_ostrina",0,0,6,NA,0,10.37,NA,NA
+2014-02-26,"BC","Mytilus_californianus","Nucella_canaliculata",0,0,2,NA,0,10.37,NA,NA
+2014-02-26,"BC","Mytilus_californianus","Nucella_ostrina",0,0,6,NA,0,10.37,NA,NA
+2014-02-26,"BC","Mytilus_trossulus","Nucella_canaliculata",0,0,2,NA,4095.2380952381,10.37,NA,NA
+2014-02-26,"BC","Mytilus_trossulus","Nucella_ostrina",0,0,6,NA,4095.2380952381,10.37,NA,NA
+2014-02-26,"BC","Nucella_ostrina","Nucella_canaliculata",0,0,2,NA,0,10.37,NA,NA
+2014-02-26,"BC","Nucella_ostrina","Nucella_ostrina",0,0,6,NA,0,10.37,NA,NA
+2014-02-26,"BC","Pollicipes_polymerus","Nucella_canaliculata",0,0,2,NA,0,10.37,NA,NA
+2014-02-26,"BC","Pollicipes_polymerus","Nucella_ostrina",0,0,6,NA,0,10.37,NA,NA
+2014-02-26,"BC","Semibalanus_cariosus","Nucella_canaliculata",0,0,2,NA,0,10.37,NA,NA
+2014-02-26,"BC","Semibalanus_cariosus","Nucella_ostrina",0,0,6,NA,0,10.37,NA,NA
+2014-02-26,"BD","Adula_californiensis","Nucella_canaliculata",0,0,1,NA,0,10.37,NA,NA
+2014-02-26,"BD","Adula_californiensis","Nucella_ostrina",0,0,1,NA,0,10.37,NA,NA
+2014-02-26,"BD","Balanus_glandula","Nucella_canaliculata",0,0,1,NA,40148.5714285714,10.37,NA,NA
+2014-02-26,"BD","Balanus_glandula","Nucella_ostrina",0,0,1,NA,40148.5714285714,10.37,NA,NA
+2014-02-26,"BD","Chthamalus_dalli","Nucella_canaliculata",0,0,1,NA,0,10.37,NA,NA
+2014-02-26,"BD","Chthamalus_dalli","Nucella_ostrina",0,0,1,NA,0,10.37,NA,NA
+2014-02-26,"BD","Hiatella_arctica","Nucella_canaliculata",0,0,1,NA,0,10.37,NA,NA
+2014-02-26,"BD","Hiatella_arctica","Nucella_ostrina",0,0,1,NA,0,10.37,NA,NA
+2014-02-26,"BD","Limpets","Nucella_canaliculata",0,0,1,NA,2125.71428571429,10.37,NA,NA
+2014-02-26,"BD","Limpets","Nucella_ostrina",0,0,1,NA,2125.71428571429,10.37,NA,NA
+2014-02-26,"BD","Littorina_sitkana","Nucella_canaliculata",0,0,1,NA,3051.42857142857,10.37,NA,NA
+2014-02-26,"BD","Littorina_sitkana","Nucella_ostrina",0,0,1,NA,3051.42857142857,10.37,NA,NA
+2014-02-26,"BD","Modiolus_modiolus","Nucella_canaliculata",0,0,1,NA,0,10.37,NA,NA
+2014-02-26,"BD","Modiolus_modiolus","Nucella_ostrina",0,0,1,NA,0,10.37,NA,NA
+2014-02-26,"BD","Mytilus_californianus","Nucella_canaliculata",0,0,1,NA,0,10.37,NA,NA
+2014-02-26,"BD","Mytilus_californianus","Nucella_ostrina",0,0,1,NA,0,10.37,NA,NA
+2014-02-26,"BD","Mytilus_trossulus","Nucella_canaliculata",0,0,1,NA,8377.14285714286,10.37,NA,NA
+2014-02-26,"BD","Mytilus_trossulus","Nucella_ostrina",0,0,1,NA,8377.14285714286,10.37,NA,NA
+2014-02-26,"BD","Nucella_ostrina","Nucella_canaliculata",0,0,1,NA,0,10.37,NA,NA
+2014-02-26,"BD","Nucella_ostrina","Nucella_ostrina",0,0,1,NA,0,10.37,NA,NA
+2014-02-26,"BD","Pollicipes_polymerus","Nucella_canaliculata",0,0,1,NA,0,10.37,NA,NA
+2014-02-26,"BD","Pollicipes_polymerus","Nucella_ostrina",0,0,1,NA,0,10.37,NA,NA
+2014-02-26,"BD","Semibalanus_cariosus","Nucella_canaliculata",0,0,1,NA,0,10.37,NA,NA
+2014-02-26,"BD","Semibalanus_cariosus","Nucella_ostrina",0,0,1,NA,0,10.37,NA,NA
+2014-02-26,"BE","Adula_californiensis","Nucella_canaliculata",0,0,0,NA,0,10.37,NA,NA
+2014-02-26,"BE","Adula_californiensis","Nucella_ostrina",0,0,0,NA,0,10.37,NA,NA
+2014-02-26,"BE","Balanus_glandula","Nucella_canaliculata",0,0,0,NA,1862.85714285714,10.37,NA,NA
+2014-02-26,"BE","Balanus_glandula","Nucella_ostrina",0,0,0,NA,1862.85714285714,10.37,NA,NA
+2014-02-26,"BE","Chthamalus_dalli","Nucella_canaliculata",0,0,0,NA,0,10.37,NA,NA
+2014-02-26,"BE","Chthamalus_dalli","Nucella_ostrina",0,0,0,NA,0,10.37,NA,NA
+2014-02-26,"BE","Hiatella_arctica","Nucella_canaliculata",0,0,0,NA,0,10.37,NA,NA
+2014-02-26,"BE","Hiatella_arctica","Nucella_ostrina",0,0,0,NA,0,10.37,NA,NA
+2014-02-26,"BE","Limpets","Nucella_canaliculata",0,0,0,NA,480,10.37,NA,NA
+2014-02-26,"BE","Limpets","Nucella_ostrina",0,0,0,NA,480,10.37,NA,NA
+2014-02-26,"BE","Littorina_sitkana","Nucella_canaliculata",0,0,0,NA,1062.85714285714,10.37,NA,NA
+2014-02-26,"BE","Littorina_sitkana","Nucella_ostrina",0,0,0,NA,1062.85714285714,10.37,NA,NA
+2014-02-26,"BE","Modiolus_modiolus","Nucella_canaliculata",0,0,0,NA,0,10.37,NA,NA
+2014-02-26,"BE","Modiolus_modiolus","Nucella_ostrina",0,0,0,NA,0,10.37,NA,NA
+2014-02-26,"BE","Mytilus_californianus","Nucella_canaliculata",0,0,0,NA,0,10.37,NA,NA
+2014-02-26,"BE","Mytilus_californianus","Nucella_ostrina",0,0,0,NA,0,10.37,NA,NA
+2014-02-26,"BE","Mytilus_trossulus","Nucella_canaliculata",0,0,0,NA,0,10.37,NA,NA
+2014-02-26,"BE","Mytilus_trossulus","Nucella_ostrina",0,0,0,NA,0,10.37,NA,NA
+2014-02-26,"BE","Nucella_ostrina","Nucella_canaliculata",0,0,0,NA,0,10.37,NA,NA
+2014-02-26,"BE","Nucella_ostrina","Nucella_ostrina",0,0,0,NA,0,10.37,NA,NA
+2014-02-26,"BE","Pollicipes_polymerus","Nucella_canaliculata",0,0,0,NA,0,10.37,NA,NA
+2014-02-26,"BE","Pollicipes_polymerus","Nucella_ostrina",0,0,0,NA,0,10.37,NA,NA
+2014-02-26,"BE","Semibalanus_cariosus","Nucella_canaliculata",0,0,0,NA,0,10.37,NA,NA
+2014-02-26,"BE","Semibalanus_cariosus","Nucella_ostrina",0,0,0,NA,0,10.37,NA,NA
+2014-02-26,"BF","Adula_californiensis","Nucella_canaliculata",0,0,2,NA,0,10.37,NA,NA
+2014-02-26,"BF","Adula_californiensis","Nucella_ostrina",0,0,1,NA,0,10.37,NA,NA
+2014-02-26,"BF","Balanus_glandula","Nucella_canaliculata",0,0,2,NA,7108.57142857143,10.37,NA,NA
+2014-02-26,"BF","Balanus_glandula","Nucella_ostrina",0,0,1,NA,7108.57142857143,10.37,NA,NA
+2014-02-26,"BF","Chthamalus_dalli","Nucella_canaliculata",0,0,2,NA,0,10.37,NA,NA
+2014-02-26,"BF","Chthamalus_dalli","Nucella_ostrina",0,0,1,NA,0,10.37,NA,NA
+2014-02-26,"BF","Hiatella_arctica","Nucella_canaliculata",0,0,2,NA,0,10.37,NA,NA
+2014-02-26,"BF","Hiatella_arctica","Nucella_ostrina",0,0,1,NA,0,10.37,NA,NA
+2014-02-26,"BF","Limpets","Nucella_canaliculata",0,0,2,NA,674.285714285714,10.37,NA,NA
+2014-02-26,"BF","Limpets","Nucella_ostrina",0,0,1,NA,674.285714285714,10.37,NA,NA
+2014-02-26,"BF","Littorina_sitkana","Nucella_canaliculata",0,0,2,NA,948.571428571429,10.37,NA,NA
+2014-02-26,"BF","Littorina_sitkana","Nucella_ostrina",0,0,1,NA,948.571428571429,10.37,NA,NA
+2014-02-26,"BF","Modiolus_modiolus","Nucella_canaliculata",0,0,2,NA,0,10.37,NA,NA
+2014-02-26,"BF","Modiolus_modiolus","Nucella_ostrina",0,0,1,NA,0,10.37,NA,NA
+2014-02-26,"BF","Mytilus_californianus","Nucella_canaliculata",0,0,2,NA,0,10.37,NA,NA
+2014-02-26,"BF","Mytilus_californianus","Nucella_ostrina",0,0,1,NA,0,10.37,NA,NA
+2014-02-26,"BF","Mytilus_trossulus","Nucella_canaliculata",0,0,2,NA,5668.57142857143,10.37,NA,NA
+2014-02-26,"BF","Mytilus_trossulus","Nucella_ostrina",0,0,1,NA,5668.57142857143,10.37,NA,NA
+2014-02-26,"BF","Nucella_ostrina","Nucella_canaliculata",0,0,2,NA,0,10.37,NA,NA
+2014-02-26,"BF","Nucella_ostrina","Nucella_ostrina",0,0,1,NA,0,10.37,NA,NA
+2014-02-26,"BF","Pollicipes_polymerus","Nucella_canaliculata",0,0,2,NA,0,10.37,NA,NA
+2014-02-26,"BF","Pollicipes_polymerus","Nucella_ostrina",0,0,1,NA,0,10.37,NA,NA
+2014-02-26,"BF","Semibalanus_cariosus","Nucella_canaliculata",0,0,2,NA,0,10.37,NA,NA
+2014-02-26,"BF","Semibalanus_cariosus","Nucella_ostrina",0,0,1,NA,0,10.37,NA,NA
+2014-02-26,"C","Adula_californiensis","Nucella_canaliculata",0,0,2,NA,0,10.37,NA,NA
+2014-02-26,"C","Adula_californiensis","Nucella_ostrina",0,0,0,NA,0,10.37,NA,NA
+2014-02-26,"C","Balanus_glandula","Nucella_canaliculata",0,0,2,NA,41237.3333333333,10.37,NA,NA
+2014-02-26,"C","Balanus_glandula","Nucella_ostrina",0,0,0,NA,41237.3333333333,10.37,NA,NA
+2014-02-26,"C","Chthamalus_dalli","Nucella_canaliculata",0,0,2,NA,1472,10.37,NA,NA
+2014-02-26,"C","Chthamalus_dalli","Nucella_ostrina",0,0,0,NA,1472,10.37,NA,NA
+2014-02-26,"C","Hiatella_arctica","Nucella_canaliculata",0,0,2,NA,0,10.37,NA,NA
+2014-02-26,"C","Hiatella_arctica","Nucella_ostrina",0,0,0,NA,0,10.37,NA,NA
+2014-02-26,"C","Limpets","Nucella_canaliculata",0,0,2,NA,1554.28571428571,10.37,NA,NA
+2014-02-26,"C","Limpets","Nucella_ostrina",0,0,0,NA,1554.28571428571,10.37,NA,NA
+2014-02-26,"C","Littorina_sitkana","Nucella_canaliculata",0,0,2,NA,99.047619047619,10.37,NA,NA
+2014-02-26,"C","Littorina_sitkana","Nucella_ostrina",0,0,0,NA,99.047619047619,10.37,NA,NA
+2014-02-26,"C","Modiolus_modiolus","Nucella_canaliculata",0,0,2,NA,0,10.37,NA,NA
+2014-02-26,"C","Modiolus_modiolus","Nucella_ostrina",0,0,0,NA,0,10.37,NA,NA
+2014-02-26,"C","Mytilus_californianus","Nucella_canaliculata",0,0,2,NA,0,10.37,NA,NA
+2014-02-26,"C","Mytilus_californianus","Nucella_ostrina",0,0,0,NA,0,10.37,NA,NA
+2014-02-26,"C","Mytilus_trossulus","Nucella_canaliculata",0,0,2,NA,3329.52380952381,10.37,NA,NA
+2014-02-26,"C","Mytilus_trossulus","Nucella_ostrina",0,0,0,NA,3329.52380952381,10.37,NA,NA
+2014-02-26,"C","Nucella_ostrina","Nucella_canaliculata",0,0,2,NA,0,10.37,NA,NA
+2014-02-26,"C","Nucella_ostrina","Nucella_ostrina",0,0,0,NA,0,10.37,NA,NA
+2014-02-26,"C","Pollicipes_polymerus","Nucella_canaliculata",0,0,2,NA,0,10.37,NA,NA
+2014-02-26,"C","Pollicipes_polymerus","Nucella_ostrina",0,0,0,NA,0,10.37,NA,NA
+2014-02-26,"C","Semibalanus_cariosus","Nucella_canaliculata",0,0,2,NA,0,10.37,NA,NA
+2014-02-26,"C","Semibalanus_cariosus","Nucella_ostrina",0,0,0,NA,0,10.37,NA,NA
+2014-02-26,"D","Adula_californiensis","Nucella_canaliculata",0,0,3,NA,0,10.37,NA,NA
+2014-02-26,"D","Adula_californiensis","Nucella_ostrina",0,0,0,NA,0,10.37,NA,NA
+2014-02-26,"D","Balanus_glandula","Nucella_canaliculata",0,0,3,NA,35057.5238095238,10.37,NA,NA
+2014-02-26,"D","Balanus_glandula","Nucella_ostrina",0,0,0,NA,35057.5238095238,10.37,NA,NA
+2014-02-26,"D","Chthamalus_dalli","Nucella_canaliculata",0,0,3,NA,554.666666666667,10.37,NA,NA
+2014-02-26,"D","Chthamalus_dalli","Nucella_ostrina",0,0,0,NA,554.666666666667,10.37,NA,NA
+2014-02-26,"D","Hiatella_arctica","Nucella_canaliculata",0,0,3,NA,0,10.37,NA,NA
+2014-02-26,"D","Hiatella_arctica","Nucella_ostrina",0,0,0,NA,0,10.37,NA,NA
+2014-02-26,"D","Limpets","Nucella_canaliculata",0,0,3,NA,1611.42857142857,10.37,NA,NA
+2014-02-26,"D","Limpets","Nucella_ostrina",0,0,0,NA,1611.42857142857,10.37,NA,NA
+2014-02-26,"D","Littorina_sitkana","Nucella_canaliculata",0,0,3,NA,1516.19047619048,10.37,NA,NA
+2014-02-26,"D","Littorina_sitkana","Nucella_ostrina",0,0,0,NA,1516.19047619048,10.37,NA,NA
+2014-02-26,"D","Modiolus_modiolus","Nucella_canaliculata",0,0,3,NA,0,10.37,NA,NA
+2014-02-26,"D","Modiolus_modiolus","Nucella_ostrina",0,0,0,NA,0,10.37,NA,NA
+2014-02-26,"D","Mytilus_californianus","Nucella_canaliculata",0,0,3,NA,7.61904761904763,10.37,NA,NA
+2014-02-26,"D","Mytilus_californianus","Nucella_ostrina",0,0,0,NA,7.61904761904763,10.37,NA,NA
+2014-02-26,"D","Mytilus_trossulus","Nucella_canaliculata",0.5,1,3,18.5663089326485,2342.85714285714,10.37,1.14947260072278e-05,0.0269305009312195
+2014-02-26,"D","Mytilus_trossulus","Nucella_ostrina",0,0,0,NA,2342.85714285714,10.37,NA,NA
+2014-02-26,"D","Nucella_ostrina","Nucella_canaliculata",0,0,3,NA,3.8095238095238,10.37,NA,NA
+2014-02-26,"D","Nucella_ostrina","Nucella_ostrina",0,0,0,NA,3.8095238095238,10.37,NA,NA
+2014-02-26,"D","Pollicipes_polymerus","Nucella_canaliculata",0,0,3,NA,0,10.37,NA,NA
+2014-02-26,"D","Pollicipes_polymerus","Nucella_ostrina",0,0,0,NA,0,10.37,NA,NA
+2014-02-26,"D","Semibalanus_cariosus","Nucella_canaliculata",0,0,3,NA,0,10.37,NA,NA
+2014-02-26,"D","Semibalanus_cariosus","Nucella_ostrina",0,0,0,NA,0,10.37,NA,NA
+2014-02-26,"E","Adula_californiensis","Nucella_canaliculata",0,0,2,NA,0,10.37,NA,NA
+2014-02-26,"E","Adula_californiensis","Nucella_ostrina",0,0,1,NA,0,10.37,NA,NA
+2014-02-26,"E","Balanus_glandula","Nucella_canaliculata",0,0,2,NA,41023.2380952381,10.37,NA,NA
+2014-02-26,"E","Balanus_glandula","Nucella_ostrina",0,0,1,NA,41023.2380952381,10.37,NA,NA
+2014-02-26,"E","Chthamalus_dalli","Nucella_canaliculata",0,0,2,NA,339.04761904762,10.37,NA,NA
+2014-02-26,"E","Chthamalus_dalli","Nucella_ostrina",0,0,1,NA,339.04761904762,10.37,NA,NA
+2014-02-26,"E","Hiatella_arctica","Nucella_canaliculata",0,0,2,NA,0,10.37,NA,NA
+2014-02-26,"E","Hiatella_arctica","Nucella_ostrina",0,0,1,NA,0,10.37,NA,NA
+2014-02-26,"E","Limpets","Nucella_canaliculata",0,0,2,NA,95.238095238095,10.37,NA,NA
+2014-02-26,"E","Limpets","Nucella_ostrina",0,0,1,NA,95.238095238095,10.37,NA,NA
+2014-02-26,"E","Littorina_sitkana","Nucella_canaliculata",0,0,2,NA,300.952380952381,10.37,NA,NA
+2014-02-26,"E","Littorina_sitkana","Nucella_ostrina",0,0,1,NA,300.952380952381,10.37,NA,NA
+2014-02-26,"E","Modiolus_modiolus","Nucella_canaliculata",0,0,2,NA,0,10.37,NA,NA
+2014-02-26,"E","Modiolus_modiolus","Nucella_ostrina",0,0,1,NA,0,10.37,NA,NA
+2014-02-26,"E","Mytilus_californianus","Nucella_canaliculata",0,0,2,NA,0,10.37,NA,NA
+2014-02-26,"E","Mytilus_californianus","Nucella_ostrina",0,0,1,NA,0,10.37,NA,NA
+2014-02-26,"E","Mytilus_trossulus","Nucella_canaliculata",0,0,2,NA,3908.57142857143,10.37,NA,NA
+2014-02-26,"E","Mytilus_trossulus","Nucella_ostrina",0,0,1,NA,3908.57142857143,10.37,NA,NA
+2014-02-26,"E","Nucella_ostrina","Nucella_canaliculata",0,0,2,NA,0,10.37,NA,NA
+2014-02-26,"E","Nucella_ostrina","Nucella_ostrina",0,0,1,NA,0,10.37,NA,NA
+2014-02-26,"E","Pollicipes_polymerus","Nucella_canaliculata",0,0,2,NA,0,10.37,NA,NA
+2014-02-26,"E","Pollicipes_polymerus","Nucella_ostrina",0,0,1,NA,0,10.37,NA,NA
+2014-02-26,"E","Semibalanus_cariosus","Nucella_canaliculata",0,0,2,NA,0,10.37,NA,NA
+2014-02-26,"E","Semibalanus_cariosus","Nucella_ostrina",0,0,1,NA,0,10.37,NA,NA
+2014-02-26,"F","Adula_californiensis","Nucella_canaliculata",0,0,0,NA,0,10.37,NA,NA
+2014-02-26,"F","Adula_californiensis","Nucella_ostrina",0,0,1,NA,0,10.37,NA,NA
+2014-02-26,"F","Balanus_glandula","Nucella_canaliculata",0,0,0,NA,0,10.37,NA,NA
+2014-02-26,"F","Balanus_glandula","Nucella_ostrina",0,0,1,NA,0,10.37,NA,NA
+2014-02-26,"F","Chthamalus_dalli","Nucella_canaliculata",0,0,0,NA,0,10.37,NA,NA
+2014-02-26,"F","Chthamalus_dalli","Nucella_ostrina",0,0,1,NA,0,10.37,NA,NA
+2014-02-26,"F","Hiatella_arctica","Nucella_canaliculata",0,0,0,NA,0,10.37,NA,NA
+2014-02-26,"F","Hiatella_arctica","Nucella_ostrina",0,0,1,NA,0,10.37,NA,NA
+2014-02-26,"F","Limpets","Nucella_canaliculata",0,0,0,NA,0,10.37,NA,NA
+2014-02-26,"F","Limpets","Nucella_ostrina",0,0,1,NA,0,10.37,NA,NA
+2014-02-26,"F","Littorina_sitkana","Nucella_canaliculata",0,0,0,NA,0,10.37,NA,NA
+2014-02-26,"F","Littorina_sitkana","Nucella_ostrina",0,0,1,NA,0,10.37,NA,NA
+2014-02-26,"F","Modiolus_modiolus","Nucella_canaliculata",0,0,0,NA,0,10.37,NA,NA
+2014-02-26,"F","Modiolus_modiolus","Nucella_ostrina",0,0,1,NA,0,10.37,NA,NA
+2014-02-26,"F","Mytilus_californianus","Nucella_canaliculata",0,0,0,NA,0,10.37,NA,NA
+2014-02-26,"F","Mytilus_californianus","Nucella_ostrina",0,0,1,NA,0,10.37,NA,NA
+2014-02-26,"F","Mytilus_trossulus","Nucella_canaliculata",0,0,0,NA,0,10.37,NA,NA
+2014-02-26,"F","Mytilus_trossulus","Nucella_ostrina",0,0,1,NA,0,10.37,NA,NA
+2014-02-26,"F","Nucella_ostrina","Nucella_canaliculata",0,0,0,NA,0,10.37,NA,NA
+2014-02-26,"F","Nucella_ostrina","Nucella_ostrina",0,0,1,NA,0,10.37,NA,NA
+2014-02-26,"F","Pollicipes_polymerus","Nucella_canaliculata",0,0,0,NA,0,10.37,NA,NA
+2014-02-26,"F","Pollicipes_polymerus","Nucella_ostrina",0,0,1,NA,0,10.37,NA,NA
+2014-02-26,"F","Semibalanus_cariosus","Nucella_canaliculata",0,0,0,NA,0,10.37,NA,NA
+2014-02-26,"F","Semibalanus_cariosus","Nucella_ostrina",0,0,1,NA,0,10.37,NA,NA
+2014-02-26,"G","Adula_californiensis","Nucella_canaliculata",0,0,5,NA,0,10.37,NA,NA
+2014-02-26,"G","Adula_californiensis","Nucella_ostrina",0,0,1,NA,0,10.37,NA,NA
+2014-02-26,"G","Balanus_glandula","Nucella_canaliculata",0,0,5,NA,14205.7142857143,10.37,NA,NA
+2014-02-26,"G","Balanus_glandula","Nucella_ostrina",0,0,1,NA,14205.7142857143,10.37,NA,NA
+2014-02-26,"G","Chthamalus_dalli","Nucella_canaliculata",0,0,5,NA,3653.33333333333,10.37,NA,NA
+2014-02-26,"G","Chthamalus_dalli","Nucella_ostrina",0,0,1,NA,3653.33333333333,10.37,NA,NA
+2014-02-26,"G","Hiatella_arctica","Nucella_canaliculata",0,0,5,NA,0,10.37,NA,NA
+2014-02-26,"G","Hiatella_arctica","Nucella_ostrina",0,0,1,NA,0,10.37,NA,NA
+2014-02-26,"G","Limpets","Nucella_canaliculata",0,0,5,NA,868.571428571428,10.37,NA,NA
+2014-02-26,"G","Limpets","Nucella_ostrina",0,0,1,NA,868.571428571428,10.37,NA,NA
+2014-02-26,"G","Littorina_sitkana","Nucella_canaliculata",0,0,5,NA,765.714285714287,10.37,NA,NA
+2014-02-26,"G","Littorina_sitkana","Nucella_ostrina",0,0,1,NA,765.714285714287,10.37,NA,NA
+2014-02-26,"G","Modiolus_modiolus","Nucella_canaliculata",0,0,5,NA,0,10.37,NA,NA
+2014-02-26,"G","Modiolus_modiolus","Nucella_ostrina",0,0,1,NA,0,10.37,NA,NA
+2014-02-26,"G","Mytilus_californianus","Nucella_canaliculata",0,0,5,NA,133.333333333333,10.37,NA,NA
+2014-02-26,"G","Mytilus_californianus","Nucella_ostrina",0,0,1,NA,133.333333333333,10.37,NA,NA
+2014-02-26,"G","Mytilus_trossulus","Nucella_canaliculata",0.25,1,5,65.2267515097017,9325.71428571429,10.37,4.10990849900418e-07,0.00383278324021419
+2014-02-26,"G","Mytilus_trossulus","Nucella_ostrina",0,0,1,NA,9325.71428571429,10.37,NA,NA
+2014-02-26,"G","Nucella_ostrina","Nucella_canaliculata",0,0,5,NA,0,10.37,NA,NA
+2014-02-26,"G","Nucella_ostrina","Nucella_ostrina",0,0,1,NA,0,10.37,NA,NA
+2014-02-26,"G","Pollicipes_polymerus","Nucella_canaliculata",0,0,5,NA,3.8095238095238,10.37,NA,NA
+2014-02-26,"G","Pollicipes_polymerus","Nucella_ostrina",0,0,1,NA,3.8095238095238,10.37,NA,NA
+2014-02-26,"G","Semibalanus_cariosus","Nucella_canaliculata",0,0,5,NA,0,10.37,NA,NA
+2014-02-26,"G","Semibalanus_cariosus","Nucella_ostrina",0,0,1,NA,0,10.37,NA,NA
+2014-04-01,"A","Adula_californiensis","Nucella_canaliculata",0,0,9,NA,0,10.83,NA,NA
+2014-04-01,"A","Adula_californiensis","Nucella_ostrina",0,0,6,NA,0,10.83,NA,NA
+2014-04-01,"A","Balanus_glandula","Nucella_canaliculata",0.5,2,9,32.5416519623363,43031.619047619,10.83,3.57061250686012e-07,0.0153649237161869
+2014-04-01,"A","Balanus_glandula","Nucella_ostrina",0,0,6,NA,43031.619047619,10.83,NA,NA
+2014-04-01,"A","Chthamalus_dalli","Nucella_canaliculata",0,0,9,NA,139.428571428571,10.83,NA,NA
+2014-04-01,"A","Chthamalus_dalli","Nucella_ostrina",0,0,6,NA,139.428571428571,10.83,NA,NA
+2014-04-01,"A","Hiatella_arctica","Nucella_canaliculata",0,0,9,NA,0,10.83,NA,NA
+2014-04-01,"A","Hiatella_arctica","Nucella_ostrina",0,0,6,NA,0,10.83,NA,NA
+2014-04-01,"A","Limpets","Nucella_canaliculata",0,0,9,NA,693.333333333332,10.83,NA,NA
+2014-04-01,"A","Limpets","Nucella_ostrina",0,0,6,NA,693.333333333332,10.83,NA,NA
+2014-04-01,"A","Littorina_sitkana","Nucella_canaliculata",0,0,9,NA,876.190476190477,10.83,NA,NA
+2014-04-01,"A","Littorina_sitkana","Nucella_ostrina",0,0,6,NA,876.190476190477,10.83,NA,NA
+2014-04-01,"A","Modiolus_modiolus","Nucella_canaliculata",0,0,9,NA,0,10.83,NA,NA
+2014-04-01,"A","Modiolus_modiolus","Nucella_ostrina",0,0,6,NA,0,10.83,NA,NA
+2014-04-01,"A","Mytilus_californianus","Nucella_canaliculata",0,0,9,NA,7.6190476190476,10.83,NA,NA
+2014-04-01,"A","Mytilus_californianus","Nucella_ostrina",0,0,6,NA,7.6190476190476,10.83,NA,NA
+2014-04-01,"A","Mytilus_trossulus","Nucella_canaliculata",0.75,3,9,48.1352924087397,9032.38095238095,10.83,1.72502503689786e-06,0.0155810832856565
+2014-04-01,"A","Mytilus_trossulus","Nucella_ostrina",0,0,6,NA,9032.38095238095,10.83,NA,NA
+2014-04-01,"A","Nucella_ostrina","Nucella_canaliculata",0,0,9,NA,0,10.83,NA,NA
+2014-04-01,"A","Nucella_ostrina","Nucella_ostrina",0,0,6,NA,0,10.83,NA,NA
+2014-04-01,"A","Pollicipes_polymerus","Nucella_canaliculata",0,0,9,NA,0,10.83,NA,NA
+2014-04-01,"A","Pollicipes_polymerus","Nucella_ostrina",0,0,6,NA,0,10.83,NA,NA
+2014-04-01,"A","Semibalanus_cariosus","Nucella_canaliculata",0,0,9,NA,0,10.83,NA,NA
+2014-04-01,"A","Semibalanus_cariosus","Nucella_ostrina",0,0,6,NA,0,10.83,NA,NA
+2014-04-01,"AB","Adula_californiensis","Nucella_canaliculata",0,0,9,NA,0,10.83,NA,NA
+2014-04-01,"AB","Adula_californiensis","Nucella_ostrina",0,0,17,NA,0,10.83,NA,NA
+2014-04-01,"AB","Balanus_glandula","Nucella_canaliculata",0.333333333333333,2,9,25.5926791927868,20224,10.83,6.44014930456906e-07,0.0130245579535605
+2014-04-01,"AB","Balanus_glandula","Nucella_ostrina",0.0909090909090909,1,17,38.5760818130415,20224,10.83,1.16525813659463e-07,0.00235661805544899
+2014-04-01,"AB","Chthamalus_dalli","Nucella_canaliculata",0,0,9,NA,515.428571428572,10.83,NA,NA
+2014-04-01,"AB","Chthamalus_dalli","Nucella_ostrina",0,0,17,NA,515.428571428572,10.83,NA,NA
+2014-04-01,"AB","Hiatella_arctica","Nucella_canaliculata",0,0,9,NA,0,10.83,NA,NA
+2014-04-01,"AB","Hiatella_arctica","Nucella_ostrina",0,0,17,NA,0,10.83,NA,NA
+2014-04-01,"AB","Limpets","Nucella_canaliculata",0,0,9,NA,1068.57142857143,10.83,NA,NA
+2014-04-01,"AB","Limpets","Nucella_ostrina",0,0,17,NA,1068.57142857143,10.83,NA,NA
+2014-04-01,"AB","Littorina_sitkana","Nucella_canaliculata",0,0,9,NA,40,10.83,NA,NA
+2014-04-01,"AB","Littorina_sitkana","Nucella_ostrina",0,0,17,NA,40,10.83,NA,NA
+2014-04-01,"AB","Modiolus_modiolus","Nucella_canaliculata",0,0,9,NA,0,10.83,NA,NA
+2014-04-01,"AB","Modiolus_modiolus","Nucella_ostrina",0,0,17,NA,0,10.83,NA,NA
+2014-04-01,"AB","Mytilus_californianus","Nucella_canaliculata",0,0,9,NA,0,10.83,NA,NA
+2014-04-01,"AB","Mytilus_californianus","Nucella_ostrina",0,0,17,NA,0,10.83,NA,NA
+2014-04-01,"AB","Mytilus_trossulus","Nucella_canaliculata",0.166666666666667,1,9,23.7376738040286,2211.42857142857,10.83,3.17495574167702e-06,0.00702118784016575
+2014-04-01,"AB","Mytilus_trossulus","Nucella_ostrina",0.454545454545455,5,17,47.1447523402392,2211.42857142857,10.83,4.35984494544764e-06,0.00964148567936136
+2014-04-01,"AB","Nucella_ostrina","Nucella_canaliculata",0,0,9,NA,0,10.83,NA,NA
+2014-04-01,"AB","Nucella_ostrina","Nucella_ostrina",0,0,17,NA,0,10.83,NA,NA
+2014-04-01,"AB","Pollicipes_polymerus","Nucella_canaliculata",0,0,9,NA,0,10.83,NA,NA
+2014-04-01,"AB","Pollicipes_polymerus","Nucella_ostrina",0,0,17,NA,0,10.83,NA,NA
+2014-04-01,"AB","Semibalanus_cariosus","Nucella_canaliculata",0,0,9,NA,0,10.83,NA,NA
+2014-04-01,"AB","Semibalanus_cariosus","Nucella_ostrina",0,0,17,NA,0,10.83,NA,NA
+2014-04-01,"AC","Adula_californiensis","Nucella_canaliculata",0,0,0,NA,0,10.83,NA,NA
+2014-04-01,"AC","Adula_californiensis","Nucella_ostrina",0,0,2,NA,0,10.83,NA,NA
+2014-04-01,"AC","Balanus_glandula","Nucella_canaliculata",0,0,0,NA,4297.14285714286,10.83,NA,NA
+2014-04-01,"AC","Balanus_glandula","Nucella_ostrina",Inf,2,2,46.8681216630256,4297.14285714286,10.83,4.96526759981155e-06,0.0213364642003331
+2014-04-01,"AC","Chthamalus_dalli","Nucella_canaliculata",0,0,0,NA,529.523809523809,10.83,NA,NA
+2014-04-01,"AC","Chthamalus_dalli","Nucella_ostrina",0,0,2,NA,529.523809523809,10.83,NA,NA
+2014-04-01,"AC","Hiatella_arctica","Nucella_canaliculata",0,0,0,NA,0,10.83,NA,NA
+2014-04-01,"AC","Hiatella_arctica","Nucella_ostrina",0,0,2,NA,0,10.83,NA,NA
+2014-04-01,"AC","Limpets","Nucella_canaliculata",0,0,0,NA,640,10.83,NA,NA
+2014-04-01,"AC","Limpets","Nucella_ostrina",0,0,2,NA,640,10.83,NA,NA
+2014-04-01,"AC","Littorina_sitkana","Nucella_canaliculata",0,0,0,NA,636.190476190477,10.83,NA,NA
+2014-04-01,"AC","Littorina_sitkana","Nucella_ostrina",0,0,2,NA,636.190476190477,10.83,NA,NA
+2014-04-01,"AC","Modiolus_modiolus","Nucella_canaliculata",0,0,0,NA,0,10.83,NA,NA
+2014-04-01,"AC","Modiolus_modiolus","Nucella_ostrina",0,0,2,NA,0,10.83,NA,NA
+2014-04-01,"AC","Mytilus_californianus","Nucella_canaliculata",0,0,0,NA,0,10.83,NA,NA
+2014-04-01,"AC","Mytilus_californianus","Nucella_ostrina",0,0,2,NA,0,10.83,NA,NA
+2014-04-01,"AC","Mytilus_trossulus","Nucella_canaliculata",0,0,0,NA,137.142857142857,10.83,NA,NA
+2014-04-01,"AC","Mytilus_trossulus","Nucella_ostrina",0,0,2,NA,137.142857142857,10.83,NA,NA
+2014-04-01,"AC","Nucella_ostrina","Nucella_canaliculata",0,0,0,NA,0,10.83,NA,NA
+2014-04-01,"AC","Nucella_ostrina","Nucella_ostrina",0,0,2,NA,0,10.83,NA,NA
+2014-04-01,"AC","Pollicipes_polymerus","Nucella_canaliculata",0,0,0,NA,0,10.83,NA,NA
+2014-04-01,"AC","Pollicipes_polymerus","Nucella_ostrina",0,0,2,NA,0,10.83,NA,NA
+2014-04-01,"AC","Semibalanus_cariosus","Nucella_canaliculata",0,0,0,NA,0,10.83,NA,NA
+2014-04-01,"AC","Semibalanus_cariosus","Nucella_ostrina",0,0,2,NA,0,10.83,NA,NA
+2014-04-01,"AD","Adula_californiensis","Nucella_canaliculata",0,0,34,NA,0,10.83,NA,NA
+2014-04-01,"AD","Adula_californiensis","Nucella_ostrina",0,0,19,NA,0,10.83,NA,NA
+2014-04-01,"AD","Balanus_glandula","Nucella_canaliculata",0.032258064516129,1,34,22.3773939613999,19619.8095238095,10.83,7.34740554279866e-08,0.00144154697243892
+2014-04-01,"AD","Balanus_glandula","Nucella_ostrina",0.0714285714285714,1,19,33.6421912135013,19619.8095238095,10.83,1.08216355231711e-07,0.00212318427700707
+2014-04-01,"AD","Chthamalus_dalli","Nucella_canaliculata",0,0,34,NA,3167.2380952381,10.83,NA,NA
+2014-04-01,"AD","Chthamalus_dalli","Nucella_ostrina",0,0,19,NA,3167.2380952381,10.83,NA,NA
+2014-04-01,"AD","Hiatella_arctica","Nucella_canaliculata",0,0,34,NA,0,10.83,NA,NA
+2014-04-01,"AD","Hiatella_arctica","Nucella_ostrina",0,0,19,NA,0,10.83,NA,NA
+2014-04-01,"AD","Limpets","Nucella_canaliculata",0,0,34,NA,1104.76190476191,10.83,NA,NA
+2014-04-01,"AD","Limpets","Nucella_ostrina",0,0,19,NA,1104.76190476191,10.83,NA,NA
+2014-04-01,"AD","Littorina_sitkana","Nucella_canaliculata",0,0,34,NA,1546.66666666667,10.83,NA,NA
+2014-04-01,"AD","Littorina_sitkana","Nucella_ostrina",0,0,19,NA,1546.66666666667,10.83,NA,NA
+2014-04-01,"AD","Modiolus_modiolus","Nucella_canaliculata",0,0,34,NA,0,10.83,NA,NA
+2014-04-01,"AD","Modiolus_modiolus","Nucella_ostrina",0,0,19,NA,0,10.83,NA,NA
+2014-04-01,"AD","Mytilus_californianus","Nucella_canaliculata",0,0,34,NA,64,10.83,NA,NA
+2014-04-01,"AD","Mytilus_californianus","Nucella_ostrina",0,0,19,NA,64,10.83,NA,NA
+2014-04-01,"AD","Mytilus_trossulus","Nucella_canaliculata",0.0645161290322581,2,34,57.2327426744676,7933.71428571429,10.83,1.42084658274142e-07,0.00112725908313039
+2014-04-01,"AD","Mytilus_trossulus","Nucella_ostrina",0.285714285714286,4,19,61.7420524157663,7933.71428571429,10.83,5.83276309307116e-07,0.00462754758766857
+2014-04-01,"AD","Nucella_ostrina","Nucella_canaliculata",0,0,34,NA,7.61904761904763,10.83,NA,NA
+2014-04-01,"AD","Nucella_ostrina","Nucella_ostrina",0,0,19,NA,7.61904761904763,10.83,NA,NA
+2014-04-01,"AD","Pollicipes_polymerus","Nucella_canaliculata",0,0,34,NA,19.047619047619,10.83,NA,NA
+2014-04-01,"AD","Pollicipes_polymerus","Nucella_ostrina",0,0,19,NA,19.047619047619,10.83,NA,NA
+2014-04-01,"AD","Semibalanus_cariosus","Nucella_canaliculata",0,0,34,NA,0,10.83,NA,NA
+2014-04-01,"AD","Semibalanus_cariosus","Nucella_ostrina",0,0,19,NA,0,10.83,NA,NA
+2014-04-01,"AE","Adula_californiensis","Nucella_canaliculata",0,0,2,NA,0,10.83,NA,NA
+2014-04-01,"AE","Adula_californiensis","Nucella_ostrina",0,0,12,NA,0,10.83,NA,NA
+2014-04-01,"AE","Balanus_glandula","Nucella_canaliculata",1,1,2,42.795207423442,22288.7619047619,10.83,1.04838046356633e-06,0.0233671025380339
+2014-04-01,"AE","Balanus_glandula","Nucella_ostrina",0.0909090909090909,1,12,33.6421912135013,22288.7619047619,10.83,1.21237534229989e-07,0.00270223453437264
+2014-04-01,"AE","Chthamalus_dalli","Nucella_canaliculata",0,0,2,NA,3847.61904761905,10.83,NA,NA
+2014-04-01,"AE","Chthamalus_dalli","Nucella_ostrina",0,0,12,NA,3847.61904761905,10.83,NA,NA
+2014-04-01,"AE","Hiatella_arctica","Nucella_canaliculata",0,0,2,NA,0,10.83,NA,NA
+2014-04-01,"AE","Hiatella_arctica","Nucella_ostrina",0,0,12,NA,0,10.83,NA,NA
+2014-04-01,"AE","Limpets","Nucella_canaliculata",0,0,2,NA,1889.52380952381,10.83,NA,NA
+2014-04-01,"AE","Limpets","Nucella_ostrina",0,0,12,NA,1889.52380952381,10.83,NA,NA
+2014-04-01,"AE","Littorina_sitkana","Nucella_canaliculata",0,0,2,NA,1310.47619047619,10.83,NA,NA
+2014-04-01,"AE","Littorina_sitkana","Nucella_ostrina",0,0,12,NA,1310.47619047619,10.83,NA,NA
+2014-04-01,"AE","Modiolus_modiolus","Nucella_canaliculata",0,0,2,NA,0,10.83,NA,NA
+2014-04-01,"AE","Modiolus_modiolus","Nucella_ostrina",0,0,12,NA,0,10.83,NA,NA
+2014-04-01,"AE","Mytilus_californianus","Nucella_canaliculata",0,0,2,NA,0,10.83,NA,NA
+2014-04-01,"AE","Mytilus_californianus","Nucella_ostrina",0,0,12,NA,0,10.83,NA,NA
+2014-04-01,"AE","Mytilus_trossulus","Nucella_canaliculata",0,0,2,NA,1805.71428571428,10.83,NA,NA
+2014-04-01,"AE","Mytilus_trossulus","Nucella_ostrina",0,0,12,NA,1805.71428571428,10.83,NA,NA
+2014-04-01,"AE","Nucella_ostrina","Nucella_canaliculata",0,0,2,NA,7.6190476190476,10.83,NA,NA
+2014-04-01,"AE","Nucella_ostrina","Nucella_ostrina",0,0,12,NA,7.6190476190476,10.83,NA,NA
+2014-04-01,"AE","Pollicipes_polymerus","Nucella_canaliculata",0,0,2,NA,110.47619047619,10.83,NA,NA
+2014-04-01,"AE","Pollicipes_polymerus","Nucella_ostrina",0,0,12,NA,110.47619047619,10.83,NA,NA
+2014-04-01,"AE","Semibalanus_cariosus","Nucella_canaliculata",0,0,2,NA,3.8095238095238,10.83,NA,NA
+2014-04-01,"AE","Semibalanus_cariosus","Nucella_ostrina",0,0,12,NA,3.8095238095238,10.83,NA,NA
+2014-04-01,"AF","Adula_californiensis","Nucella_canaliculata",0,0,2,NA,0,10.83,NA,NA
+2014-04-01,"AF","Adula_californiensis","Nucella_ostrina",0,0,25,NA,0,10.83,NA,NA
+2014-04-01,"AF","Balanus_glandula","Nucella_canaliculata",1,1,2,11.3774911364103,36207.2380952381,10.83,2.4274936149763e-06,0.087892839292117
+2014-04-01,"AF","Balanus_glandula","Nucella_ostrina",0.818181818181818,9,25,28.3856108405557,36207.2380952381,10.83,7.96079026188184e-07,0.0288238228438209
+2014-04-01,"AF","Chthamalus_dalli","Nucella_canaliculata",0,0,2,NA,1729.52380952381,10.83,NA,NA
+2014-04-01,"AF","Chthamalus_dalli","Nucella_ostrina",0,0,25,NA,1729.52380952381,10.83,NA,NA
+2014-04-01,"AF","Hiatella_arctica","Nucella_canaliculata",0,0,2,NA,0,10.83,NA,NA
+2014-04-01,"AF","Hiatella_arctica","Nucella_ostrina",0,0,25,NA,0,10.83,NA,NA
+2014-04-01,"AF","Limpets","Nucella_canaliculata",0,0,2,NA,1116.19047619047,10.83,NA,NA
+2014-04-01,"AF","Limpets","Nucella_ostrina",0,0,25,NA,1116.19047619047,10.83,NA,NA
+2014-04-01,"AF","Littorina_sitkana","Nucella_canaliculata",0,0,2,NA,2594.28571428572,10.83,NA,NA
+2014-04-01,"AF","Littorina_sitkana","Nucella_ostrina",0,0,25,NA,2594.28571428572,10.83,NA,NA
+2014-04-01,"AF","Modiolus_modiolus","Nucella_canaliculata",0,0,2,NA,0,10.83,NA,NA
+2014-04-01,"AF","Modiolus_modiolus","Nucella_ostrina",0,0,25,NA,0,10.83,NA,NA
+2014-04-01,"AF","Mytilus_californianus","Nucella_canaliculata",0,0,2,NA,0,10.83,NA,NA
+2014-04-01,"AF","Mytilus_californianus","Nucella_ostrina",0,0,25,NA,0,10.83,NA,NA
+2014-04-01,"AF","Mytilus_trossulus","Nucella_canaliculata",0,0,2,NA,2106.66666666667,10.83,NA,NA
+2014-04-01,"AF","Mytilus_trossulus","Nucella_ostrina",0.454545454545455,5,25,34.6929527525184,2106.66666666667,10.83,6.21928173568779e-06,0.0131019535231823
+2014-04-01,"AF","Nucella_ostrina","Nucella_canaliculata",0,0,2,NA,3.8095238095238,10.83,NA,NA
+2014-04-01,"AF","Nucella_ostrina","Nucella_ostrina",0,0,25,NA,3.8095238095238,10.83,NA,NA
+2014-04-01,"AF","Pollicipes_polymerus","Nucella_canaliculata",0,0,2,NA,0,10.83,NA,NA
+2014-04-01,"AF","Pollicipes_polymerus","Nucella_ostrina",0,0,25,NA,0,10.83,NA,NA
+2014-04-01,"AF","Semibalanus_cariosus","Nucella_canaliculata",0,0,2,NA,0,10.83,NA,NA
+2014-04-01,"AF","Semibalanus_cariosus","Nucella_ostrina",0,0,25,NA,0,10.83,NA,NA
+2014-04-01,"AG","Adula_californiensis","Nucella_canaliculata",0,0,7,NA,0,10.83,NA,NA
+2014-04-01,"AG","Adula_californiensis","Nucella_ostrina",0,0,26,NA,0,10.83,NA,NA
+2014-04-01,"AG","Balanus_glandula","Nucella_canaliculata",0,0,7,NA,18091.4285714286,10.83,NA,NA
+2014-04-01,"AG","Balanus_glandula","Nucella_ostrina",0.238095238095238,5,26,34.3587633124108,18091.4285714286,10.83,3.83036644351195e-07,0.00692968009151934
+2014-04-01,"AG","Chthamalus_dalli","Nucella_canaliculata",0,0,7,NA,4302.85714285714,10.83,NA,NA
+2014-04-01,"AG","Chthamalus_dalli","Nucella_ostrina",0,0,26,NA,4302.85714285714,10.83,NA,NA
+2014-04-01,"AG","Hiatella_arctica","Nucella_canaliculata",0,0,7,NA,0,10.83,NA,NA
+2014-04-01,"AG","Hiatella_arctica","Nucella_ostrina",0,0,26,NA,0,10.83,NA,NA
+2014-04-01,"AG","Limpets","Nucella_canaliculata",0,0,7,NA,737.142857142857,10.83,NA,NA
+2014-04-01,"AG","Limpets","Nucella_ostrina",0,0,26,NA,737.142857142857,10.83,NA,NA
+2014-04-01,"AG","Littorina_sitkana","Nucella_canaliculata",0,0,7,NA,600,10.83,NA,NA
+2014-04-01,"AG","Littorina_sitkana","Nucella_ostrina",0,0,26,NA,600,10.83,NA,NA
+2014-04-01,"AG","Modiolus_modiolus","Nucella_canaliculata",0,0,7,NA,0,10.83,NA,NA
+2014-04-01,"AG","Modiolus_modiolus","Nucella_ostrina",0,0,26,NA,0,10.83,NA,NA
+2014-04-01,"AG","Mytilus_californianus","Nucella_canaliculata",0,0,7,NA,0,10.83,NA,NA
+2014-04-01,"AG","Mytilus_californianus","Nucella_ostrina",0,0,26,NA,0,10.83,NA,NA
+2014-04-01,"AG","Mytilus_trossulus","Nucella_canaliculata",0.166666666666667,1,7,26.3742546509865,3280,10.83,1.92661399544728e-06,0.00631929390506709
+2014-04-01,"AG","Mytilus_trossulus","Nucella_ostrina",0,0,26,NA,3280,10.83,NA,NA
+2014-04-01,"AG","Nucella_ostrina","Nucella_canaliculata",0,0,7,NA,0,10.83,NA,NA
+2014-04-01,"AG","Nucella_ostrina","Nucella_ostrina",0,0,26,NA,0,10.83,NA,NA
+2014-04-01,"AG","Pollicipes_polymerus","Nucella_canaliculata",0,0,7,NA,0,10.83,NA,NA
+2014-04-01,"AG","Pollicipes_polymerus","Nucella_ostrina",0,0,26,NA,0,10.83,NA,NA
+2014-04-01,"AG","Semibalanus_cariosus","Nucella_canaliculata",0,0,7,NA,0,10.83,NA,NA
+2014-04-01,"AG","Semibalanus_cariosus","Nucella_ostrina",0,0,26,NA,0,10.83,NA,NA
+2014-04-01,"B","Adula_californiensis","Nucella_canaliculata",0,0,225,NA,0,10.83,NA,NA
+2014-04-01,"B","Adula_californiensis","Nucella_ostrina",0,0,27,NA,0,10.83,NA,NA
+2014-04-01,"B","Balanus_glandula","Nucella_canaliculata",0.2,31,225,26.238223613204,49281.5238095238,10.83,1.546719064984e-07,0.00762246724276535
+2014-04-01,"B","Balanus_glandula","Nucella_ostrina",0.173913043478261,4,27,41.3891624616535,49281.5238095238,10.83,8.52631530871751e-08,0.00420189810894069
+2014-04-01,"B","Chthamalus_dalli","Nucella_canaliculata",0,0,225,NA,1682.53968253968,10.83,NA,NA
+2014-04-01,"B","Chthamalus_dalli","Nucella_ostrina",0,0,27,NA,1682.53968253968,10.83,NA,NA
+2014-04-01,"B","Hiatella_arctica","Nucella_canaliculata",0,0,225,NA,0,10.83,NA,NA
+2014-04-01,"B","Hiatella_arctica","Nucella_ostrina",0,0,27,NA,0,10.83,NA,NA
+2014-04-01,"B","Limpets","Nucella_canaliculata",0,0,225,NA,1060.31746031746,10.83,NA,NA
+2014-04-01,"B","Limpets","Nucella_ostrina",0,0,27,NA,1060.31746031746,10.83,NA,NA
+2014-04-01,"B","Littorina_sitkana","Nucella_canaliculata",0,0,225,NA,311.111111111111,10.83,NA,NA
+2014-04-01,"B","Littorina_sitkana","Nucella_ostrina",0,0,27,NA,311.111111111111,10.83,NA,NA
+2014-04-01,"B","Modiolus_modiolus","Nucella_canaliculata",0,0,225,NA,0,10.83,NA,NA
+2014-04-01,"B","Modiolus_modiolus","Nucella_ostrina",0,0,27,NA,0,10.83,NA,NA
+2014-04-01,"B","Mytilus_californianus","Nucella_canaliculata",0,0,225,NA,34.2857142857142,10.83,NA,NA
+2014-04-01,"B","Mytilus_californianus","Nucella_ostrina",0,0,27,NA,34.2857142857142,10.83,NA,NA
+2014-04-01,"B","Mytilus_trossulus","Nucella_canaliculata",0.245161290322581,38,225,45.1204712189014,4065.26984126984,10.83,1.336561336016e-06,0.00543348249031318
+2014-04-01,"B","Mytilus_trossulus","Nucella_ostrina",0,0,27,NA,4065.26984126984,10.83,NA,NA
+2014-04-01,"B","Nucella_ostrina","Nucella_canaliculata",0,0,225,NA,17.7777777777778,10.83,NA,NA
+2014-04-01,"B","Nucella_ostrina","Nucella_ostrina",0,0,27,NA,17.7777777777778,10.83,NA,NA
+2014-04-01,"B","Pollicipes_polymerus","Nucella_canaliculata",0.00645161290322581,1,225,0.971071581244399,31.7460317460317,10.83,0.000209279944317993,0.00664380775612675
+2014-04-01,"B","Pollicipes_polymerus","Nucella_ostrina",0,0,27,NA,31.7460317460317,10.83,NA,NA
+2014-04-01,"B","Semibalanus_cariosus","Nucella_canaliculata",0,0,225,NA,36.8253968253969,10.83,NA,NA
+2014-04-01,"B","Semibalanus_cariosus","Nucella_ostrina",0,0,27,NA,36.8253968253969,10.83,NA,NA
+2014-04-01,"BB","Adula_californiensis","Nucella_canaliculata",0,0,2,NA,0,10.83,NA,NA
+2014-04-01,"BB","Adula_californiensis","Nucella_ostrina",0,0,14,NA,0,10.83,NA,NA
+2014-04-01,"BB","Balanus_glandula","Nucella_canaliculata",1,1,2,39.4027706480743,28562.2857142857,10.83,8.88546744538593e-07,0.0253789259880097
+2014-04-01,"BB","Balanus_glandula","Nucella_ostrina",0.272727272727273,3,14,37.8153037707611,28562.2857142857,10.83,2.52503857341997e-07,0.00721208731736134
+2014-04-01,"BB","Chthamalus_dalli","Nucella_canaliculata",0,0,2,NA,5091.80952380952,10.83,NA,NA
+2014-04-01,"BB","Chthamalus_dalli","Nucella_ostrina",0,0,14,NA,5091.80952380952,10.83,NA,NA
+2014-04-01,"BB","Hiatella_arctica","Nucella_canaliculata",0,0,2,NA,0,10.83,NA,NA
+2014-04-01,"BB","Hiatella_arctica","Nucella_ostrina",0,0,14,NA,0,10.83,NA,NA
+2014-04-01,"BB","Limpets","Nucella_canaliculata",0,0,2,NA,377.142857142857,10.83,NA,NA
+2014-04-01,"BB","Limpets","Nucella_ostrina",0,0,14,NA,377.142857142857,10.83,NA,NA
+2014-04-01,"BB","Littorina_sitkana","Nucella_canaliculata",0,0,2,NA,1843.80952380952,10.83,NA,NA
+2014-04-01,"BB","Littorina_sitkana","Nucella_ostrina",0,0,14,NA,1843.80952380952,10.83,NA,NA
+2014-04-01,"BB","Modiolus_modiolus","Nucella_canaliculata",0,0,2,NA,0,10.83,NA,NA
+2014-04-01,"BB","Modiolus_modiolus","Nucella_ostrina",0,0,14,NA,0,10.83,NA,NA
+2014-04-01,"BB","Mytilus_californianus","Nucella_canaliculata",0,0,2,NA,0,10.83,NA,NA
+2014-04-01,"BB","Mytilus_californianus","Nucella_ostrina",0,0,14,NA,0,10.83,NA,NA
+2014-04-01,"BB","Mytilus_trossulus","Nucella_canaliculata",0,0,2,NA,3504.7619047619,10.83,NA,NA
+2014-04-01,"BB","Mytilus_trossulus","Nucella_ostrina",0,0,14,NA,3504.7619047619,10.83,NA,NA
+2014-04-01,"BB","Nucella_ostrina","Nucella_canaliculata",0,0,2,NA,15.2380952380952,10.83,NA,NA
+2014-04-01,"BB","Nucella_ostrina","Nucella_ostrina",0,0,14,NA,15.2380952380952,10.83,NA,NA
+2014-04-01,"BB","Pollicipes_polymerus","Nucella_canaliculata",0,0,2,NA,3.8095238095238,10.83,NA,NA
+2014-04-01,"BB","Pollicipes_polymerus","Nucella_ostrina",0,0,14,NA,3.8095238095238,10.83,NA,NA
+2014-04-01,"BB","Semibalanus_cariosus","Nucella_canaliculata",0,0,2,NA,0,10.83,NA,NA
+2014-04-01,"BB","Semibalanus_cariosus","Nucella_ostrina",0,0,14,NA,0,10.83,NA,NA
+2014-04-01,"BC","Adula_californiensis","Nucella_canaliculata",0,0,2,NA,0,10.83,NA,NA
+2014-04-01,"BC","Adula_californiensis","Nucella_ostrina",0,0,8,NA,0,10.83,NA,NA
+2014-04-01,"BC","Balanus_glandula","Nucella_canaliculata",0,0,2,NA,57632,10.83,NA,NA
+2014-04-01,"BC","Balanus_glandula","Nucella_ostrina",0,0,8,NA,57632,10.83,NA,NA
+2014-04-01,"BC","Chthamalus_dalli","Nucella_canaliculata",0,0,2,NA,832,10.83,NA,NA
+2014-04-01,"BC","Chthamalus_dalli","Nucella_ostrina",0,0,8,NA,832,10.83,NA,NA
+2014-04-01,"BC","Hiatella_arctica","Nucella_canaliculata",0,0,2,NA,0,10.83,NA,NA
+2014-04-01,"BC","Hiatella_arctica","Nucella_ostrina",0,0,8,NA,0,10.83,NA,NA
+2014-04-01,"BC","Limpets","Nucella_canaliculata",0,0,2,NA,262.857142857142,10.83,NA,NA
+2014-04-01,"BC","Limpets","Nucella_ostrina",0,0,8,NA,262.857142857142,10.83,NA,NA
+2014-04-01,"BC","Littorina_sitkana","Nucella_canaliculata",0,0,2,NA,1137.14285714286,10.83,NA,NA
+2014-04-01,"BC","Littorina_sitkana","Nucella_ostrina",0,0,8,NA,1137.14285714286,10.83,NA,NA
+2014-04-01,"BC","Modiolus_modiolus","Nucella_canaliculata",0,0,2,NA,0,10.83,NA,NA
+2014-04-01,"BC","Modiolus_modiolus","Nucella_ostrina",0,0,8,NA,0,10.83,NA,NA
+2014-04-01,"BC","Mytilus_californianus","Nucella_canaliculata",0,0,2,NA,0,10.83,NA,NA
+2014-04-01,"BC","Mytilus_californianus","Nucella_ostrina",0,0,8,NA,0,10.83,NA,NA
+2014-04-01,"BC","Mytilus_trossulus","Nucella_canaliculata",0,0,2,NA,3217.14285714286,10.83,NA,NA
+2014-04-01,"BC","Mytilus_trossulus","Nucella_ostrina",0.142857142857143,1,8,64.7230207904031,3217.14285714286,10.83,6.860769601718e-07,0.00220720759186699
+2014-04-01,"BC","Nucella_ostrina","Nucella_canaliculata",0,0,2,NA,0,10.83,NA,NA
+2014-04-01,"BC","Nucella_ostrina","Nucella_ostrina",0,0,8,NA,0,10.83,NA,NA
+2014-04-01,"BC","Pollicipes_polymerus","Nucella_canaliculata",0,0,2,NA,0,10.83,NA,NA
+2014-04-01,"BC","Pollicipes_polymerus","Nucella_ostrina",0,0,8,NA,0,10.83,NA,NA
+2014-04-01,"BC","Semibalanus_cariosus","Nucella_canaliculata",0,0,2,NA,0,10.83,NA,NA
+2014-04-01,"BC","Semibalanus_cariosus","Nucella_ostrina",0,0,8,NA,0,10.83,NA,NA
+2014-04-01,"BD","Adula_californiensis","Nucella_canaliculata",0,0,1,NA,0,10.83,NA,NA
+2014-04-01,"BD","Adula_californiensis","Nucella_ostrina",0,0,3,NA,0,10.83,NA,NA
+2014-04-01,"BD","Balanus_glandula","Nucella_canaliculata",0,0,1,NA,0,10.83,NA,NA
+2014-04-01,"BD","Balanus_glandula","Nucella_ostrina",0.5,1,3,9.52769045032245,0,10.83,Inf,0.0524786151068833
+2014-04-01,"BD","Chthamalus_dalli","Nucella_canaliculata",0,0,1,NA,0,10.83,NA,NA
+2014-04-01,"BD","Chthamalus_dalli","Nucella_ostrina",0,0,3,NA,0,10.83,NA,NA
+2014-04-01,"BD","Hiatella_arctica","Nucella_canaliculata",0,0,1,NA,0,10.83,NA,NA
+2014-04-01,"BD","Hiatella_arctica","Nucella_ostrina",0,0,3,NA,0,10.83,NA,NA
+2014-04-01,"BD","Limpets","Nucella_canaliculata",0,0,1,NA,0,10.83,NA,NA
+2014-04-01,"BD","Limpets","Nucella_ostrina",0,0,3,NA,0,10.83,NA,NA
+2014-04-01,"BD","Littorina_sitkana","Nucella_canaliculata",0,0,1,NA,0,10.83,NA,NA
+2014-04-01,"BD","Littorina_sitkana","Nucella_ostrina",0,0,3,NA,0,10.83,NA,NA
+2014-04-01,"BD","Modiolus_modiolus","Nucella_canaliculata",0,0,1,NA,0,10.83,NA,NA
+2014-04-01,"BD","Modiolus_modiolus","Nucella_ostrina",0,0,3,NA,0,10.83,NA,NA
+2014-04-01,"BD","Mytilus_californianus","Nucella_canaliculata",0,0,1,NA,0,10.83,NA,NA
+2014-04-01,"BD","Mytilus_californianus","Nucella_ostrina",0,0,3,NA,0,10.83,NA,NA
+2014-04-01,"BD","Mytilus_trossulus","Nucella_canaliculata",0,0,1,NA,0,10.83,NA,NA
+2014-04-01,"BD","Mytilus_trossulus","Nucella_ostrina",0,0,3,NA,0,10.83,NA,NA
+2014-04-01,"BD","Nucella_ostrina","Nucella_canaliculata",0,0,1,NA,0,10.83,NA,NA
+2014-04-01,"BD","Nucella_ostrina","Nucella_ostrina",0,0,3,NA,0,10.83,NA,NA
+2014-04-01,"BD","Pollicipes_polymerus","Nucella_canaliculata",0,0,1,NA,0,10.83,NA,NA
+2014-04-01,"BD","Pollicipes_polymerus","Nucella_ostrina",0,0,3,NA,0,10.83,NA,NA
+2014-04-01,"BD","Semibalanus_cariosus","Nucella_canaliculata",0,0,1,NA,0,10.83,NA,NA
+2014-04-01,"BD","Semibalanus_cariosus","Nucella_ostrina",0,0,3,NA,0,10.83,NA,NA
+2014-04-01,"BE","Adula_californiensis","Nucella_canaliculata",0,0,0,NA,0,10.83,NA,NA
+2014-04-01,"BE","Adula_californiensis","Nucella_ostrina",0,0,2,NA,0,10.83,NA,NA
+2014-04-01,"BE","Balanus_glandula","Nucella_canaliculata",0,0,0,NA,1805.71428571429,10.83,NA,NA
+2014-04-01,"BE","Balanus_glandula","Nucella_ostrina",0,0,2,NA,1805.71428571429,10.83,NA,NA
+2014-04-01,"BE","Chthamalus_dalli","Nucella_canaliculata",0,0,0,NA,137.142857142857,10.83,NA,NA
+2014-04-01,"BE","Chthamalus_dalli","Nucella_ostrina",0,0,2,NA,137.142857142857,10.83,NA,NA
+2014-04-01,"BE","Hiatella_arctica","Nucella_canaliculata",0,0,0,NA,0,10.83,NA,NA
+2014-04-01,"BE","Hiatella_arctica","Nucella_ostrina",0,0,2,NA,0,10.83,NA,NA
+2014-04-01,"BE","Limpets","Nucella_canaliculata",0,0,0,NA,285.714285714286,10.83,NA,NA
+2014-04-01,"BE","Limpets","Nucella_ostrina",0,0,2,NA,285.714285714286,10.83,NA,NA
+2014-04-01,"BE","Littorina_sitkana","Nucella_canaliculata",0,0,0,NA,1348.57142857143,10.83,NA,NA
+2014-04-01,"BE","Littorina_sitkana","Nucella_ostrina",0,0,2,NA,1348.57142857143,10.83,NA,NA
+2014-04-01,"BE","Modiolus_modiolus","Nucella_canaliculata",0,0,0,NA,0,10.83,NA,NA
+2014-04-01,"BE","Modiolus_modiolus","Nucella_ostrina",0,0,2,NA,0,10.83,NA,NA
+2014-04-01,"BE","Mytilus_californianus","Nucella_canaliculata",0,0,0,NA,0,10.83,NA,NA
+2014-04-01,"BE","Mytilus_californianus","Nucella_ostrina",0,0,2,NA,0,10.83,NA,NA
+2014-04-01,"BE","Mytilus_trossulus","Nucella_canaliculata",0,0,0,NA,22.8571428571429,10.83,NA,NA
+2014-04-01,"BE","Mytilus_trossulus","Nucella_ostrina",0,0,2,NA,22.8571428571429,10.83,NA,NA
+2014-04-01,"BE","Nucella_ostrina","Nucella_canaliculata",0,0,0,NA,0,10.83,NA,NA
+2014-04-01,"BE","Nucella_ostrina","Nucella_ostrina",0,0,2,NA,0,10.83,NA,NA
+2014-04-01,"BE","Pollicipes_polymerus","Nucella_canaliculata",0,0,0,NA,0,10.83,NA,NA
+2014-04-01,"BE","Pollicipes_polymerus","Nucella_ostrina",0,0,2,NA,0,10.83,NA,NA
+2014-04-01,"BE","Semibalanus_cariosus","Nucella_canaliculata",0,0,0,NA,0,10.83,NA,NA
+2014-04-01,"BE","Semibalanus_cariosus","Nucella_ostrina",0,0,2,NA,0,10.83,NA,NA
+2014-04-01,"BF","Adula_californiensis","Nucella_canaliculata",0,0,3,NA,0,10.83,NA,NA
+2014-04-01,"BF","Adula_californiensis","Nucella_ostrina",0,0,18,NA,0,10.83,NA,NA
+2014-04-01,"BF","Balanus_glandula","Nucella_canaliculata",0,0,3,NA,3622.85714285714,10.83,NA,NA
+2014-04-01,"BF","Balanus_glandula","Nucella_ostrina",0,0,18,NA,3622.85714285714,10.83,NA,NA
+2014-04-01,"BF","Chthamalus_dalli","Nucella_canaliculata",0,0,3,NA,0,10.83,NA,NA
+2014-04-01,"BF","Chthamalus_dalli","Nucella_ostrina",0,0,18,NA,0,10.83,NA,NA
+2014-04-01,"BF","Hiatella_arctica","Nucella_canaliculata",0,0,3,NA,0,10.83,NA,NA
+2014-04-01,"BF","Hiatella_arctica","Nucella_ostrina",0,0,18,NA,0,10.83,NA,NA
+2014-04-01,"BF","Limpets","Nucella_canaliculata",0,0,3,NA,560,10.83,NA,NA
+2014-04-01,"BF","Limpets","Nucella_ostrina",0,0,18,NA,560,10.83,NA,NA
+2014-04-01,"BF","Littorina_sitkana","Nucella_canaliculata",0,0,3,NA,1417.14285714286,10.83,NA,NA
+2014-04-01,"BF","Littorina_sitkana","Nucella_ostrina",0,0,18,NA,1417.14285714286,10.83,NA,NA
+2014-04-01,"BF","Modiolus_modiolus","Nucella_canaliculata",0,0,3,NA,0,10.83,NA,NA
+2014-04-01,"BF","Modiolus_modiolus","Nucella_ostrina",0,0,18,NA,0,10.83,NA,NA
+2014-04-01,"BF","Mytilus_californianus","Nucella_canaliculata",0,0,3,NA,0,10.83,NA,NA
+2014-04-01,"BF","Mytilus_californianus","Nucella_ostrina",0,0,18,NA,0,10.83,NA,NA
+2014-04-01,"BF","Mytilus_trossulus","Nucella_canaliculata",0,0,3,NA,2891.42857142857,10.83,NA,NA
+2014-04-01,"BF","Mytilus_trossulus","Nucella_ostrina",0,0,18,NA,2891.42857142857,10.83,NA,NA
+2014-04-01,"BF","Nucella_ostrina","Nucella_canaliculata",0,0,3,NA,0,10.83,NA,NA
+2014-04-01,"BF","Nucella_ostrina","Nucella_ostrina",0,0,18,NA,0,10.83,NA,NA
+2014-04-01,"BF","Pollicipes_polymerus","Nucella_canaliculata",0,0,3,NA,0,10.83,NA,NA
+2014-04-01,"BF","Pollicipes_polymerus","Nucella_ostrina",0,0,18,NA,0,10.83,NA,NA
+2014-04-01,"BF","Semibalanus_cariosus","Nucella_canaliculata",0,0,3,NA,0,10.83,NA,NA
+2014-04-01,"BF","Semibalanus_cariosus","Nucella_ostrina",0,0,18,NA,0,10.83,NA,NA
+2014-04-01,"C","Adula_californiensis","Nucella_canaliculata",0,0,8,NA,0,10.83,NA,NA
+2014-04-01,"C","Adula_californiensis","Nucella_ostrina",0,0,6,NA,0,10.83,NA,NA
+2014-04-01,"C","Balanus_glandula","Nucella_canaliculata",0.25,1,8,59.13210040178,36053.3333333333,10.83,1.17265775281414e-07,0.00422782208481258
+2014-04-01,"C","Balanus_glandula","Nucella_ostrina",0,0,6,NA,36053.3333333333,10.83,NA,NA
+2014-04-01,"C","Chthamalus_dalli","Nucella_canaliculata",0,0,8,NA,490.666666666667,10.83,NA,NA
+2014-04-01,"C","Chthamalus_dalli","Nucella_ostrina",0,0,6,NA,490.666666666667,10.83,NA,NA
+2014-04-01,"C","Hiatella_arctica","Nucella_canaliculata",0,0,8,NA,0,10.83,NA,NA
+2014-04-01,"C","Hiatella_arctica","Nucella_ostrina",0,0,6,NA,0,10.83,NA,NA
+2014-04-01,"C","Limpets","Nucella_canaliculata",0,0,8,NA,1352.38095238095,10.83,NA,NA
+2014-04-01,"C","Limpets","Nucella_ostrina",0,0,6,NA,1352.38095238095,10.83,NA,NA
+2014-04-01,"C","Littorina_sitkana","Nucella_canaliculata",0,0,8,NA,53.3333333333333,10.83,NA,NA
+2014-04-01,"C","Littorina_sitkana","Nucella_ostrina",0,0,6,NA,53.3333333333333,10.83,NA,NA
+2014-04-01,"C","Modiolus_modiolus","Nucella_canaliculata",0,0,8,NA,0,10.83,NA,NA
+2014-04-01,"C","Modiolus_modiolus","Nucella_ostrina",0,0,6,NA,0,10.83,NA,NA
+2014-04-01,"C","Mytilus_californianus","Nucella_canaliculata",0,0,8,NA,0,10.83,NA,NA
+2014-04-01,"C","Mytilus_californianus","Nucella_ostrina",0,0,6,NA,0,10.83,NA,NA
+2014-04-01,"C","Mytilus_trossulus","Nucella_canaliculata",0.75,3,8,36.8763999442757,4461.71428571429,10.83,4.55838487554384e-06,0.0203382109189979
+2014-04-01,"C","Mytilus_trossulus","Nucella_ostrina",0.2,1,6,43.8538444798389,4461.71428571429,10.83,1.02216396769362e-06,0.00456060357700102
+2014-04-01,"C","Nucella_ostrina","Nucella_canaliculata",0,0,8,NA,0,10.83,NA,NA
+2014-04-01,"C","Nucella_ostrina","Nucella_ostrina",0,0,6,NA,0,10.83,NA,NA
+2014-04-01,"C","Pollicipes_polymerus","Nucella_canaliculata",0,0,8,NA,3.8095238095238,10.83,NA,NA
+2014-04-01,"C","Pollicipes_polymerus","Nucella_ostrina",0,0,6,NA,3.8095238095238,10.83,NA,NA
+2014-04-01,"C","Semibalanus_cariosus","Nucella_canaliculata",0,0,8,NA,0,10.83,NA,NA
+2014-04-01,"C","Semibalanus_cariosus","Nucella_ostrina",0,0,6,NA,0,10.83,NA,NA
+2014-04-01,"D","Adula_californiensis","Nucella_canaliculata",0,0,0,NA,0,10.83,NA,NA
+2014-04-01,"D","Adula_californiensis","Nucella_ostrina",0,0,1,NA,0,10.83,NA,NA
+2014-04-01,"D","Balanus_glandula","Nucella_canaliculata",0,0,0,NA,29298.2857142857,10.83,NA,NA
+2014-04-01,"D","Balanus_glandula","Nucella_ostrina",0,0,1,NA,29298.2857142857,10.83,NA,NA
+2014-04-01,"D","Chthamalus_dalli","Nucella_canaliculata",0,0,0,NA,192,10.83,NA,NA
+2014-04-01,"D","Chthamalus_dalli","Nucella_ostrina",0,0,1,NA,192,10.83,NA,NA
+2014-04-01,"D","Hiatella_arctica","Nucella_canaliculata",0,0,0,NA,0,10.83,NA,NA
+2014-04-01,"D","Hiatella_arctica","Nucella_ostrina",0,0,1,NA,0,10.83,NA,NA
+2014-04-01,"D","Limpets","Nucella_canaliculata",0,0,0,NA,1474.28571428571,10.83,NA,NA
+2014-04-01,"D","Limpets","Nucella_ostrina",0,0,1,NA,1474.28571428571,10.83,NA,NA
+2014-04-01,"D","Littorina_sitkana","Nucella_canaliculata",0,0,0,NA,1310.47619047619,10.83,NA,NA
+2014-04-01,"D","Littorina_sitkana","Nucella_ostrina",0,0,1,NA,1310.47619047619,10.83,NA,NA
+2014-04-01,"D","Modiolus_modiolus","Nucella_canaliculata",0,0,0,NA,0,10.83,NA,NA
+2014-04-01,"D","Modiolus_modiolus","Nucella_ostrina",0,0,1,NA,0,10.83,NA,NA
+2014-04-01,"D","Mytilus_californianus","Nucella_canaliculata",0,0,0,NA,7.61904761904763,10.83,NA,NA
+2014-04-01,"D","Mytilus_californianus","Nucella_ostrina",0,0,1,NA,7.61904761904763,10.83,NA,NA
+2014-04-01,"D","Mytilus_trossulus","Nucella_canaliculata",0,0,0,NA,1859.04761904762,10.83,NA,NA
+2014-04-01,"D","Mytilus_trossulus","Nucella_ostrina",0,0,1,NA,1859.04761904762,10.83,NA,NA
+2014-04-01,"D","Nucella_ostrina","Nucella_canaliculata",0,0,0,NA,3.8095238095238,10.83,NA,NA
+2014-04-01,"D","Nucella_ostrina","Nucella_ostrina",0,0,1,NA,3.8095238095238,10.83,NA,NA
+2014-04-01,"D","Pollicipes_polymerus","Nucella_canaliculata",0,0,0,NA,0,10.83,NA,NA
+2014-04-01,"D","Pollicipes_polymerus","Nucella_ostrina",0,0,1,NA,0,10.83,NA,NA
+2014-04-01,"D","Semibalanus_cariosus","Nucella_canaliculata",0,0,0,NA,0,10.83,NA,NA
+2014-04-01,"D","Semibalanus_cariosus","Nucella_ostrina",0,0,1,NA,0,10.83,NA,NA
+2014-04-01,"E","Adula_californiensis","Nucella_canaliculata",0,0,8,NA,0,10.83,NA,NA
+2014-04-01,"E","Adula_californiensis","Nucella_ostrina",0,0,7,NA,0,10.83,NA,NA
+2014-04-01,"E","Balanus_glandula","Nucella_canaliculata",0,0,8,NA,37657.9047619048,10.83,NA,NA
+2014-04-01,"E","Balanus_glandula","Nucella_ostrina",0.666666666666667,2,7,44.9308490265696,37657.9047619048,10.83,3.94010651917683e-07,0.0148376156050921
+2014-04-01,"E","Chthamalus_dalli","Nucella_canaliculata",0,0,8,NA,256,10.83,NA,NA
+2014-04-01,"E","Chthamalus_dalli","Nucella_ostrina",0,0,7,NA,256,10.83,NA,NA
+2014-04-01,"E","Hiatella_arctica","Nucella_canaliculata",0,0,8,NA,0,10.83,NA,NA
+2014-04-01,"E","Hiatella_arctica","Nucella_ostrina",0,0,7,NA,0,10.83,NA,NA
+2014-04-01,"E","Limpets","Nucella_canaliculata",0,0,8,NA,209.523809523809,10.83,NA,NA
+2014-04-01,"E","Limpets","Nucella_ostrina",0,0,7,NA,209.523809523809,10.83,NA,NA
+2014-04-01,"E","Littorina_sitkana","Nucella_canaliculata",0,0,8,NA,681.90476190476,10.83,NA,NA
+2014-04-01,"E","Littorina_sitkana","Nucella_ostrina",0,0,7,NA,681.90476190476,10.83,NA,NA
+2014-04-01,"E","Modiolus_modiolus","Nucella_canaliculata",0,0,8,NA,0,10.83,NA,NA
+2014-04-01,"E","Modiolus_modiolus","Nucella_ostrina",0,0,7,NA,0,10.83,NA,NA
+2014-04-01,"E","Mytilus_californianus","Nucella_canaliculata",0,0,8,NA,0,10.83,NA,NA
+2014-04-01,"E","Mytilus_californianus","Nucella_ostrina",0,0,7,NA,0,10.83,NA,NA
+2014-04-01,"E","Mytilus_trossulus","Nucella_canaliculata",0,0,8,NA,5276.19047619048,10.83,NA,NA
+2014-04-01,"E","Mytilus_trossulus","Nucella_ostrina",0.666666666666667,2,7,63.6143145413255,5276.19047619048,10.83,1.98624777339439e-06,0.010479821585338
+2014-04-01,"E","Nucella_ostrina","Nucella_canaliculata",0,0,8,NA,0,10.83,NA,NA
+2014-04-01,"E","Nucella_ostrina","Nucella_ostrina",0,0,7,NA,0,10.83,NA,NA
+2014-04-01,"E","Pollicipes_polymerus","Nucella_canaliculata",0,0,8,NA,0,10.83,NA,NA
+2014-04-01,"E","Pollicipes_polymerus","Nucella_ostrina",0,0,7,NA,0,10.83,NA,NA
+2014-04-01,"E","Semibalanus_cariosus","Nucella_canaliculata",0,0,8,NA,0,10.83,NA,NA
+2014-04-01,"E","Semibalanus_cariosus","Nucella_ostrina",0,0,7,NA,0,10.83,NA,NA
+2014-04-01,"F","Adula_californiensis","Nucella_canaliculata",0,0,1,NA,0,10.83,NA,NA
+2014-04-01,"F","Adula_californiensis","Nucella_ostrina",0,0,8,NA,0,10.83,NA,NA
+2014-04-01,"F","Balanus_glandula","Nucella_canaliculata",0,0,1,NA,44544,10.83,NA,NA
+2014-04-01,"F","Balanus_glandula","Nucella_ostrina",0,0,8,NA,44544,10.83,NA,NA
+2014-04-01,"F","Chthamalus_dalli","Nucella_canaliculata",0,0,1,NA,1280,10.83,NA,NA
+2014-04-01,"F","Chthamalus_dalli","Nucella_ostrina",0,0,8,NA,1280,10.83,NA,NA
+2014-04-01,"F","Hiatella_arctica","Nucella_canaliculata",0,0,1,NA,0,10.83,NA,NA
+2014-04-01,"F","Hiatella_arctica","Nucella_ostrina",0,0,8,NA,0,10.83,NA,NA
+2014-04-01,"F","Limpets","Nucella_canaliculata",0,0,1,NA,5885.71428571428,10.83,NA,NA
+2014-04-01,"F","Limpets","Nucella_ostrina",0,0,8,NA,5885.71428571428,10.83,NA,NA
+2014-04-01,"F","Littorina_sitkana","Nucella_canaliculata",0,0,1,NA,2449.52380952381,10.83,NA,NA
+2014-04-01,"F","Littorina_sitkana","Nucella_ostrina",0,0,8,NA,2449.52380952381,10.83,NA,NA
+2014-04-01,"F","Modiolus_modiolus","Nucella_canaliculata",0,0,1,NA,0,10.83,NA,NA
+2014-04-01,"F","Modiolus_modiolus","Nucella_ostrina",0,0,8,NA,0,10.83,NA,NA
+2014-04-01,"F","Mytilus_californianus","Nucella_canaliculata",0,0,1,NA,0,10.83,NA,NA
+2014-04-01,"F","Mytilus_californianus","Nucella_ostrina",0,0,8,NA,0,10.83,NA,NA
+2014-04-01,"F","Mytilus_trossulus","Nucella_canaliculata",0,0,1,NA,4163.80952380952,10.83,NA,NA
+2014-04-01,"F","Mytilus_trossulus","Nucella_ostrina",0.333333333333333,2,8,45.0501458133323,4163.80952380952,10.83,1.77701744000357e-06,0.0073991621406625
+2014-04-01,"F","Nucella_ostrina","Nucella_canaliculata",0,0,1,NA,0,10.83,NA,NA
+2014-04-01,"F","Nucella_ostrina","Nucella_ostrina",0,0,8,NA,0,10.83,NA,NA
+2014-04-01,"F","Pollicipes_polymerus","Nucella_canaliculata",0,0,1,NA,7.6190476190476,10.83,NA,NA
+2014-04-01,"F","Pollicipes_polymerus","Nucella_ostrina",0,0,8,NA,7.6190476190476,10.83,NA,NA
+2014-04-01,"F","Semibalanus_cariosus","Nucella_canaliculata",0,0,1,NA,0,10.83,NA,NA
+2014-04-01,"F","Semibalanus_cariosus","Nucella_ostrina",0,0,8,NA,0,10.83,NA,NA
+2014-04-01,"G","Adula_californiensis","Nucella_canaliculata",0,0,1,NA,0,10.83,NA,NA
+2014-04-01,"G","Adula_californiensis","Nucella_ostrina",0,0,17,NA,0,10.83,NA,NA
+2014-04-01,"G","Balanus_glandula","Nucella_canaliculata",0,0,1,NA,10045.7142857143,10.83,NA,NA
+2014-04-01,"G","Balanus_glandula","Nucella_ostrina",0.0769230769230769,1,17,11.9822134313194,10045.7142857143,10.83,6.39055790738216e-07,0.00641977188638733
+2014-04-01,"G","Chthamalus_dalli","Nucella_canaliculata",0,0,1,NA,3321.90476190476,10.83,NA,NA
+2014-04-01,"G","Chthamalus_dalli","Nucella_ostrina",0,0,17,NA,3321.90476190476,10.83,NA,NA
+2014-04-01,"G","Hiatella_arctica","Nucella_canaliculata",0,0,1,NA,0,10.83,NA,NA
+2014-04-01,"G","Hiatella_arctica","Nucella_ostrina",0,0,17,NA,0,10.83,NA,NA
+2014-04-01,"G","Limpets","Nucella_canaliculata",0,0,1,NA,613.333333333335,10.83,NA,NA
+2014-04-01,"G","Limpets","Nucella_ostrina",0,0,17,NA,613.333333333335,10.83,NA,NA
+2014-04-01,"G","Littorina_sitkana","Nucella_canaliculata",0,0,1,NA,712.380952380952,10.83,NA,NA
+2014-04-01,"G","Littorina_sitkana","Nucella_ostrina",0,0,17,NA,712.380952380952,10.83,NA,NA
+2014-04-01,"G","Modiolus_modiolus","Nucella_canaliculata",0,0,1,NA,0,10.83,NA,NA
+2014-04-01,"G","Modiolus_modiolus","Nucella_ostrina",0,0,17,NA,0,10.83,NA,NA
+2014-04-01,"G","Mytilus_californianus","Nucella_canaliculata",0,0,1,NA,240,10.83,NA,NA
+2014-04-01,"G","Mytilus_californianus","Nucella_ostrina",0,0,17,NA,240,10.83,NA,NA
+2014-04-01,"G","Mytilus_trossulus","Nucella_canaliculata",0,0,1,NA,9603.80952380952,10.83,NA,NA
+2014-04-01,"G","Mytilus_trossulus","Nucella_ostrina",0.230769230769231,3,17,45.6486880211024,9603.80952380952,10.83,5.26388102088695e-07,0.00505533106805942
+2014-04-01,"G","Nucella_ostrina","Nucella_canaliculata",0,0,1,NA,11.4285714285714,10.83,NA,NA
+2014-04-01,"G","Nucella_ostrina","Nucella_ostrina",0,0,17,NA,11.4285714285714,10.83,NA,NA
+2014-04-01,"G","Pollicipes_polymerus","Nucella_canaliculata",0,0,1,NA,106.666666666667,10.83,NA,NA
+2014-04-01,"G","Pollicipes_polymerus","Nucella_ostrina",0,0,17,NA,106.666666666667,10.83,NA,NA
+2014-04-01,"G","Semibalanus_cariosus","Nucella_canaliculata",0,0,1,NA,0,10.83,NA,NA
+2014-04-01,"G","Semibalanus_cariosus","Nucella_ostrina",0,0,17,NA,0,10.83,NA,NA
+2014-04-29,"A","Adula_californiensis","Nucella_canaliculata",0,0,24,NA,0,11.11,NA,NA
+2014-04-29,"A","Adula_californiensis","Nucella_ostrina",0,0,57,NA,0,11.11,NA,NA
+2014-04-29,"A","Balanus_glandula","Nucella_canaliculata",0,0,24,NA,23524.5714285714,11.11,NA,NA
+2014-04-29,"A","Balanus_glandula","Nucella_ostrina",0.117647058823529,6,57,36.2062952257465,23524.5714285714,11.11,1.38125946106402e-07,0.00324935368531907
+2014-04-29,"A","Chthamalus_dalli","Nucella_canaliculata",0,0,24,NA,32,11.11,NA,NA
+2014-04-29,"A","Chthamalus_dalli","Nucella_ostrina",0,0,57,NA,32,11.11,NA,NA
+2014-04-29,"A","Hiatella_arctica","Nucella_canaliculata",0,0,24,NA,0,11.11,NA,NA
+2014-04-29,"A","Hiatella_arctica","Nucella_ostrina",0,0,57,NA,0,11.11,NA,NA
+2014-04-29,"A","Limpets","Nucella_canaliculata",0,0,24,NA,1080,11.11,NA,NA
+2014-04-29,"A","Limpets","Nucella_ostrina",0,0,57,NA,1080,11.11,NA,NA
+2014-04-29,"A","Littorina_sitkana","Nucella_canaliculata",0,0,24,NA,828.57142857143,11.11,NA,NA
+2014-04-29,"A","Littorina_sitkana","Nucella_ostrina",0,0,57,NA,828.57142857143,11.11,NA,NA
+2014-04-29,"A","Modiolus_modiolus","Nucella_canaliculata",0,0,24,NA,0,11.11,NA,NA
+2014-04-29,"A","Modiolus_modiolus","Nucella_ostrina",0,0,57,NA,0,11.11,NA,NA
+2014-04-29,"A","Mytilus_californianus","Nucella_canaliculata",0,0,24,NA,0,11.11,NA,NA
+2014-04-29,"A","Mytilus_californianus","Nucella_ostrina",0,0,57,NA,0,11.11,NA,NA
+2014-04-29,"A","Mytilus_trossulus","Nucella_canaliculata",0.142857142857143,3,24,54.1454759981161,12657.1428571428,11.11,2.08451057221629e-07,0.00263839480997662
+2014-04-29,"A","Mytilus_trossulus","Nucella_ostrina",0,0,57,NA,12657.1428571428,11.11,NA,NA
+2014-04-29,"A","Nucella_ostrina","Nucella_canaliculata",0,0,24,NA,5.7142857142857,11.11,NA,NA
+2014-04-29,"A","Nucella_ostrina","Nucella_ostrina",0,0,57,NA,5.7142857142857,11.11,NA,NA
+2014-04-29,"A","Pollicipes_polymerus","Nucella_canaliculata",0,0,24,NA,34.2857142857143,11.11,NA,NA
+2014-04-29,"A","Pollicipes_polymerus","Nucella_ostrina",0,0,57,NA,34.2857142857143,11.11,NA,NA
+2014-04-29,"A","Semibalanus_cariosus","Nucella_canaliculata",0,0,24,NA,0,11.11,NA,NA
+2014-04-29,"A","Semibalanus_cariosus","Nucella_ostrina",0,0,57,NA,0,11.11,NA,NA
+2014-04-29,"AB","Adula_californiensis","Nucella_canaliculata",0,0,30,NA,0,11.11,NA,NA
+2014-04-29,"AB","Adula_californiensis","Nucella_ostrina",0,0,132,NA,0,11.11,NA,NA
+2014-04-29,"AB","Balanus_glandula","Nucella_canaliculata",0.105263157894737,2,30,15.5829262319678,13063.619047619,11.11,5.17087301529106e-07,0.00675503152153756
+2014-04-29,"AB","Balanus_glandula","Nucella_ostrina",0.13,13,132,35.2781637001786,13063.619047619,11.11,2.82081025516659e-07,0.00368499905791134
+2014-04-29,"AB","Chthamalus_dalli","Nucella_canaliculata",0,0,30,NA,85.3333333333333,11.11,NA,NA
+2014-04-29,"AB","Chthamalus_dalli","Nucella_ostrina",0,0,132,NA,85.3333333333333,11.11,NA,NA
+2014-04-29,"AB","Hiatella_arctica","Nucella_canaliculata",0,0,30,NA,0,11.11,NA,NA
+2014-04-29,"AB","Hiatella_arctica","Nucella_ostrina",0,0,132,NA,0,11.11,NA,NA
+2014-04-29,"AB","Limpets","Nucella_canaliculata",0.0526315789473684,1,30,6.41726898064989,643.809523809522,11.11,1.27391003585168e-05,0.00820155413557845
+2014-04-29,"AB","Limpets","Nucella_ostrina",0,0,132,NA,643.809523809522,11.11,NA,NA
+2014-04-29,"AB","Littorina_sitkana","Nucella_canaliculata",0,0,30,NA,278.095238095238,11.11,NA,NA
+2014-04-29,"AB","Littorina_sitkana","Nucella_ostrina",0,0,132,NA,278.095238095238,11.11,NA,NA
+2014-04-29,"AB","Modiolus_modiolus","Nucella_canaliculata",0,0,30,NA,0,11.11,NA,NA
+2014-04-29,"AB","Modiolus_modiolus","Nucella_ostrina",0,0,132,NA,0,11.11,NA,NA
+2014-04-29,"AB","Mytilus_californianus","Nucella_canaliculata",0,0,30,NA,0,11.11,NA,NA
+2014-04-29,"AB","Mytilus_californianus","Nucella_ostrina",0,0,132,NA,0,11.11,NA,NA
+2014-04-29,"AB","Mytilus_trossulus","Nucella_canaliculata",0.421052631578947,8,30,39.168024031749,3601.52380952381,11.11,2.98482197357528e-06,0.0107499074050212
+2014-04-29,"AB","Mytilus_trossulus","Nucella_ostrina",0.19,19,132,37.8995098569218,3601.52380952381,11.11,1.39198231398828e-06,0.00501325744626482
+2014-04-29,"AB","Nucella_ostrina","Nucella_canaliculata",0,0,30,NA,15.2380952380952,11.11,NA,NA
+2014-04-29,"AB","Nucella_ostrina","Nucella_ostrina",0,0,132,NA,15.2380952380952,11.11,NA,NA
+2014-04-29,"AB","Pollicipes_polymerus","Nucella_canaliculata",0,0,30,NA,148.571428571429,11.11,NA,NA
+2014-04-29,"AB","Pollicipes_polymerus","Nucella_ostrina",0,0,132,NA,148.571428571429,11.11,NA,NA
+2014-04-29,"AB","Semibalanus_cariosus","Nucella_canaliculata",0,0,30,NA,0,11.11,NA,NA
+2014-04-29,"AB","Semibalanus_cariosus","Nucella_ostrina",0,0,132,NA,0,11.11,NA,NA
+2014-04-29,"AC","Adula_californiensis","Nucella_canaliculata",0,0,2,NA,0,11.11,NA,NA
+2014-04-29,"AC","Adula_californiensis","Nucella_ostrina",0,0,36,NA,0,11.11,NA,NA
+2014-04-29,"AC","Balanus_glandula","Nucella_canaliculata",Inf,1,2,48.3764056799414,4394.28571428571,11.11,4.70411696120497e-06,0.0206712339609521
+2014-04-29,"AC","Balanus_glandula","Nucella_ostrina",0.363636363636364,8,36,44.1826062334146,4394.28571428571,11.11,1.87295647340504e-06,0.00823030587456273
+2014-04-29,"AC","Chthamalus_dalli","Nucella_canaliculata",Inf,1,2,13.7293270458864,182.857142857143,11.11,0.000398326151145081,0.0728367819236719
+2014-04-29,"AC","Chthamalus_dalli","Nucella_ostrina",0.136363636363636,3,36,23.787189584297,182.857142857143,11.11,3.1350430605553e-05,0.00573265016787255
+2014-04-29,"AC","Hiatella_arctica","Nucella_canaliculata",0,0,2,NA,0,11.11,NA,NA
+2014-04-29,"AC","Hiatella_arctica","Nucella_ostrina",0,0,36,NA,0,11.11,NA,NA
+2014-04-29,"AC","Limpets","Nucella_canaliculata",0,0,2,NA,388.571428571428,11.11,NA,NA
+2014-04-29,"AC","Limpets","Nucella_ostrina",0,0,36,NA,388.571428571428,11.11,NA,NA
+2014-04-29,"AC","Littorina_sitkana","Nucella_canaliculata",0,0,2,NA,217.142857142857,11.11,NA,NA
+2014-04-29,"AC","Littorina_sitkana","Nucella_ostrina",0,0,36,NA,217.142857142857,11.11,NA,NA
+2014-04-29,"AC","Modiolus_modiolus","Nucella_canaliculata",0,0,2,NA,0,11.11,NA,NA
+2014-04-29,"AC","Modiolus_modiolus","Nucella_ostrina",0,0,36,NA,0,11.11,NA,NA
+2014-04-29,"AC","Mytilus_californianus","Nucella_canaliculata",0,0,2,NA,0,11.11,NA,NA
+2014-04-29,"AC","Mytilus_californianus","Nucella_ostrina",0,0,36,NA,0,11.11,NA,NA
+2014-04-29,"AC","Mytilus_trossulus","Nucella_canaliculata",0,0,2,NA,491.428571428571,11.11,NA,NA
+2014-04-29,"AC","Mytilus_trossulus","Nucella_ostrina",0.136363636363636,3,36,38.5859247747765,491.428571428571,11.11,7.19133065704323e-06,0.00353402535146124
+2014-04-29,"AC","Nucella_ostrina","Nucella_canaliculata",0,0,2,NA,0,11.11,NA,NA
+2014-04-29,"AC","Nucella_ostrina","Nucella_ostrina",0,0,36,NA,0,11.11,NA,NA
+2014-04-29,"AC","Pollicipes_polymerus","Nucella_canaliculata",0,0,2,NA,17.1428571428571,11.11,NA,NA
+2014-04-29,"AC","Pollicipes_polymerus","Nucella_ostrina",0,0,36,NA,17.1428571428571,11.11,NA,NA
+2014-04-29,"AC","Semibalanus_cariosus","Nucella_canaliculata",0,0,2,NA,0,11.11,NA,NA
+2014-04-29,"AC","Semibalanus_cariosus","Nucella_ostrina",0,0,36,NA,0,11.11,NA,NA
+2014-04-29,"AD","Adula_californiensis","Nucella_canaliculata",0,0,35,NA,0,11.11,NA,NA
+2014-04-29,"AD","Adula_californiensis","Nucella_ostrina",0,0,67,NA,0,11.11,NA,NA
+2014-04-29,"AD","Balanus_glandula","Nucella_canaliculata",0.0625,2,35,18.2653136362069,14112.7619047619,11.11,2.42460428722325e-07,0.00342178630188467
+2014-04-29,"AD","Balanus_glandula","Nucella_ostrina",0.0491803278688525,3,67,28.480009672357,14112.7619047619,11.11,1.22359944859266e-07,0.00172683676847861
+2014-04-29,"AD","Chthamalus_dalli","Nucella_canaliculata",0,0,35,NA,577.52380952381,11.11,NA,NA
+2014-04-29,"AD","Chthamalus_dalli","Nucella_ostrina",0,0,67,NA,577.52380952381,11.11,NA,NA
+2014-04-29,"AD","Hiatella_arctica","Nucella_canaliculata",0,0,35,NA,0,11.11,NA,NA
+2014-04-29,"AD","Hiatella_arctica","Nucella_ostrina",0,0,67,NA,0,11.11,NA,NA
+2014-04-29,"AD","Limpets","Nucella_canaliculata",0,0,35,NA,1344.76190476191,11.11,NA,NA
+2014-04-29,"AD","Limpets","Nucella_ostrina",0,0,67,NA,1344.76190476191,11.11,NA,NA
+2014-04-29,"AD","Littorina_sitkana","Nucella_canaliculata",0,0,35,NA,1367.61904761905,11.11,NA,NA
+2014-04-29,"AD","Littorina_sitkana","Nucella_ostrina",0,0,67,NA,1367.61904761905,11.11,NA,NA
+2014-04-29,"AD","Modiolus_modiolus","Nucella_canaliculata",0,0,35,NA,0,11.11,NA,NA
+2014-04-29,"AD","Modiolus_modiolus","Nucella_ostrina",0,0,67,NA,0,11.11,NA,NA
+2014-04-29,"AD","Mytilus_californianus","Nucella_canaliculata",0,0,35,NA,128,11.11,NA,NA
+2014-04-29,"AD","Mytilus_californianus","Nucella_ostrina",0,0,67,NA,128,11.11,NA,NA
+2014-04-29,"AD","Mytilus_trossulus","Nucella_canaliculata",0.03125,1,35,73.004027322114,9107.04761904762,11.11,4.70030018739794e-08,0.000428058576304515
+2014-04-29,"AD","Mytilus_trossulus","Nucella_ostrina",0.0491803278688525,3,67,43.5828143242598,9107.04761904762,11.11,1.239077700914e-07,0.00112843396259238
+2014-04-29,"AD","Nucella_ostrina","Nucella_canaliculata",0,0,35,NA,72.3809523809524,11.11,NA,NA
+2014-04-29,"AD","Nucella_ostrina","Nucella_ostrina",0,0,67,NA,72.3809523809524,11.11,NA,NA
+2014-04-29,"AD","Pollicipes_polymerus","Nucella_canaliculata",0,0,35,NA,11.4285714285714,11.11,NA,NA
+2014-04-29,"AD","Pollicipes_polymerus","Nucella_ostrina",0,0,67,NA,11.4285714285714,11.11,NA,NA
+2014-04-29,"AD","Semibalanus_cariosus","Nucella_canaliculata",0,0,35,NA,0,11.11,NA,NA
+2014-04-29,"AD","Semibalanus_cariosus","Nucella_ostrina",0,0,67,NA,0,11.11,NA,NA
+2014-04-29,"AE","Adula_californiensis","Nucella_canaliculata",0,0,11,NA,0,11.11,NA,NA
+2014-04-29,"AE","Adula_californiensis","Nucella_ostrina",0,0,82,NA,0,11.11,NA,NA
+2014-04-29,"AE","Balanus_glandula","Nucella_canaliculata",0.1,1,11,15.96116576919,21302.8571428572,11.11,2.94101701371022e-07,0.00626520652977812
+2014-04-29,"AE","Balanus_glandula","Nucella_ostrina",0.0253164556962025,2,82,32.2302522610144,21302.8571428572,11.11,3.68723947559373e-08,0.000785487358000769
+2014-04-29,"AE","Chthamalus_dalli","Nucella_canaliculata",0,0,11,NA,899.809523809524,11.11,NA,NA
+2014-04-29,"AE","Chthamalus_dalli","Nucella_ostrina",0,0,82,NA,899.809523809524,11.11,NA,NA
+2014-04-29,"AE","Hiatella_arctica","Nucella_canaliculata",0,0,11,NA,0,11.11,NA,NA
+2014-04-29,"AE","Hiatella_arctica","Nucella_ostrina",0,0,82,NA,0,11.11,NA,NA
+2014-04-29,"AE","Limpets","Nucella_canaliculata",0,0,11,NA,1428.57142857143,11.11,NA,NA
+2014-04-29,"AE","Limpets","Nucella_ostrina",0,0,82,NA,1428.57142857143,11.11,NA,NA
+2014-04-29,"AE","Littorina_sitkana","Nucella_canaliculata",0,0,11,NA,1219.04761904762,11.11,NA,NA
+2014-04-29,"AE","Littorina_sitkana","Nucella_ostrina",0,0,82,NA,1219.04761904762,11.11,NA,NA
+2014-04-29,"AE","Modiolus_modiolus","Nucella_canaliculata",0,0,11,NA,0,11.11,NA,NA
+2014-04-29,"AE","Modiolus_modiolus","Nucella_ostrina",0,0,82,NA,0,11.11,NA,NA
+2014-04-29,"AE","Mytilus_californianus","Nucella_canaliculata",0,0,11,NA,3.8095238095238,11.11,NA,NA
+2014-04-29,"AE","Mytilus_californianus","Nucella_ostrina",0,0,82,NA,3.8095238095238,11.11,NA,NA
+2014-04-29,"AE","Mytilus_trossulus","Nucella_canaliculata",0,0,11,NA,2156.19047619048,11.11,NA,NA
+2014-04-29,"AE","Mytilus_trossulus","Nucella_ostrina",0.0126582278481013,1,82,42.5644606412495,2156.19047619048,11.11,1.37923621077684e-07,0.000297389598209406
+2014-04-29,"AE","Nucella_ostrina","Nucella_canaliculata",0,0,11,NA,15.2380952380953,11.11,NA,NA
+2014-04-29,"AE","Nucella_ostrina","Nucella_ostrina",0,0,82,NA,15.2380952380953,11.11,NA,NA
+2014-04-29,"AE","Pollicipes_polymerus","Nucella_canaliculata",0,0,11,NA,152.380952380952,11.11,NA,NA
+2014-04-29,"AE","Pollicipes_polymerus","Nucella_ostrina",0,0,82,NA,152.380952380952,11.11,NA,NA
+2014-04-29,"AE","Semibalanus_cariosus","Nucella_canaliculata",0,0,11,NA,3.8095238095238,11.11,NA,NA
+2014-04-29,"AE","Semibalanus_cariosus","Nucella_ostrina",0,0,82,NA,3.8095238095238,11.11,NA,NA
+2014-04-29,"AF","Adula_californiensis","Nucella_canaliculata",0,0,13,NA,0,11.11,NA,NA
+2014-04-29,"AF","Adula_californiensis","Nucella_ostrina",0,0,153,NA,0,11.11,NA,NA
+2014-04-29,"AF","Balanus_glandula","Nucella_canaliculata",0,0,13,NA,30158.4761904762,11.11,NA,NA
+2014-04-29,"AF","Balanus_glandula","Nucella_ostrina",0.144,18,153,24.5979741614487,30158.4761904762,11.11,1.94112613478447e-07,0.00585414063186084
+2014-04-29,"AF","Chthamalus_dalli","Nucella_canaliculata",0,0,13,NA,2486.09523809524,11.11,NA,NA
+2014-04-29,"AF","Chthamalus_dalli","Nucella_ostrina",0,0,153,NA,2486.09523809524,11.11,NA,NA
+2014-04-29,"AF","Hiatella_arctica","Nucella_canaliculata",0,0,13,NA,0,11.11,NA,NA
+2014-04-29,"AF","Hiatella_arctica","Nucella_ostrina",0,0,153,NA,0,11.11,NA,NA
+2014-04-29,"AF","Limpets","Nucella_canaliculata",0,0,13,NA,1306.66666666667,11.11,NA,NA
+2014-04-29,"AF","Limpets","Nucella_ostrina",0,0,153,NA,1306.66666666667,11.11,NA,NA
+2014-04-29,"AF","Littorina_sitkana","Nucella_canaliculata",0,0,13,NA,2140.95238095238,11.11,NA,NA
+2014-04-29,"AF","Littorina_sitkana","Nucella_ostrina",0,0,153,NA,2140.95238095238,11.11,NA,NA
+2014-04-29,"AF","Modiolus_modiolus","Nucella_canaliculata",0,0,13,NA,0,11.11,NA,NA
+2014-04-29,"AF","Modiolus_modiolus","Nucella_ostrina",0,0,153,NA,0,11.11,NA,NA
+2014-04-29,"AF","Mytilus_californianus","Nucella_canaliculata",0,0,13,NA,0,11.11,NA,NA
+2014-04-29,"AF","Mytilus_californianus","Nucella_ostrina",0,0,153,NA,0,11.11,NA,NA
+2014-04-29,"AF","Mytilus_trossulus","Nucella_canaliculata",0,0,13,NA,2339.04761904762,11.11,NA,NA
+2014-04-29,"AF","Mytilus_trossulus","Nucella_ostrina",0.08,10,153,34.4339163424188,2339.04761904762,11.11,9.93263561927782e-07,0.00232329076961393
+2014-04-29,"AF","Nucella_ostrina","Nucella_canaliculata",0,0,13,NA,15.2380952380952,11.11,NA,NA
+2014-04-29,"AF","Nucella_ostrina","Nucella_ostrina",0,0,153,NA,15.2380952380952,11.11,NA,NA
+2014-04-29,"AF","Pollicipes_polymerus","Nucella_canaliculata",0,0,13,NA,11.4285714285714,11.11,NA,NA
+2014-04-29,"AF","Pollicipes_polymerus","Nucella_ostrina",0,0,153,NA,11.4285714285714,11.11,NA,NA
+2014-04-29,"AF","Semibalanus_cariosus","Nucella_canaliculata",0,0,13,NA,0,11.11,NA,NA
+2014-04-29,"AF","Semibalanus_cariosus","Nucella_ostrina",0,0,153,NA,0,11.11,NA,NA
+2014-04-29,"AG","Adula_californiensis","Nucella_canaliculata",0,0,26,NA,0,11.11,NA,NA
+2014-04-29,"AG","Adula_californiensis","Nucella_ostrina",0,0,92,NA,0,11.11,NA,NA
+2014-04-29,"AG","Balanus_glandula","Nucella_canaliculata",0.0416666666666667,1,26,33.5748671199638,22283.4285714286,11.11,5.56919523301145e-08,0.00124100764175151
+2014-04-29,"AG","Balanus_glandula","Nucella_ostrina",0.0975609756097561,8,92,35.3790729594418,22283.4285714286,11.11,1.23750702419505e-07,0.00275758993802916
+2014-04-29,"AG","Chthamalus_dalli","Nucella_canaliculata",0,0,26,NA,473.6,11.11,NA,NA
+2014-04-29,"AG","Chthamalus_dalli","Nucella_ostrina",0,0,92,NA,473.6,11.11,NA,NA
+2014-04-29,"AG","Hiatella_arctica","Nucella_canaliculata",0,0,26,NA,0,11.11,NA,NA
+2014-04-29,"AG","Hiatella_arctica","Nucella_ostrina",0,0,92,NA,0,11.11,NA,NA
+2014-04-29,"AG","Limpets","Nucella_canaliculata",0,0,26,NA,352,11.11,NA,NA
+2014-04-29,"AG","Limpets","Nucella_ostrina",0,0,92,NA,352,11.11,NA,NA
+2014-04-29,"AG","Littorina_sitkana","Nucella_canaliculata",0,0,26,NA,301.714285714286,11.11,NA,NA
+2014-04-29,"AG","Littorina_sitkana","Nucella_ostrina",0,0,92,NA,301.714285714286,11.11,NA,NA
+2014-04-29,"AG","Modiolus_modiolus","Nucella_canaliculata",0,0,26,NA,0,11.11,NA,NA
+2014-04-29,"AG","Modiolus_modiolus","Nucella_ostrina",0,0,92,NA,0,11.11,NA,NA
+2014-04-29,"AG","Mytilus_californianus","Nucella_canaliculata",0,0,26,NA,0,11.11,NA,NA
+2014-04-29,"AG","Mytilus_californianus","Nucella_ostrina",0,0,92,NA,0,11.11,NA,NA
+2014-04-29,"AG","Mytilus_trossulus","Nucella_canaliculata",0.0416666666666667,1,26,56.8520619529553,2006.85714285714,11.11,3.65196056393932e-07,0.000732896314317422
+2014-04-29,"AG","Mytilus_trossulus","Nucella_ostrina",0.024390243902439,2,92,37.9371773256984,2006.85714285714,11.11,3.20357333527204e-07,0.000642911403055736
+2014-04-29,"AG","Nucella_ostrina","Nucella_canaliculata",0,0,26,NA,2.28571428571428,11.11,NA,NA
+2014-04-29,"AG","Nucella_ostrina","Nucella_ostrina",0,0,92,NA,2.28571428571428,11.11,NA,NA
+2014-04-29,"AG","Pollicipes_polymerus","Nucella_canaliculata",0,0,26,NA,0,11.11,NA,NA
+2014-04-29,"AG","Pollicipes_polymerus","Nucella_ostrina",0,0,92,NA,0,11.11,NA,NA
+2014-04-29,"AG","Semibalanus_cariosus","Nucella_canaliculata",0,0,26,NA,2.28571428571428,11.11,NA,NA
+2014-04-29,"AG","Semibalanus_cariosus","Nucella_ostrina",0,0,92,NA,2.28571428571428,11.11,NA,NA
+2014-04-29,"B","Adula_californiensis","Nucella_canaliculata",0,0,83,NA,0,11.11,NA,NA
+2014-04-29,"B","Adula_californiensis","Nucella_ostrina",0,0,30,NA,0,11.11,NA,NA
+2014-04-29,"B","Balanus_glandula","Nucella_canaliculata",0.444444444444444,24,83,40.9833155365009,29112.8888888889,11.11,3.72498981183121e-07,0.0108445214504085
+2014-04-29,"B","Balanus_glandula","Nucella_ostrina",0.12,3,30,47.3093131968172,29112.8888888889,11.11,8.71263057491945e-08,0.00253649845857566
+2014-04-29,"B","Chthamalus_dalli","Nucella_canaliculata",0,0,83,NA,1864.63492063492,11.11,NA,NA
+2014-04-29,"B","Chthamalus_dalli","Nucella_ostrina",0,0,30,NA,1864.63492063492,11.11,NA,NA
+2014-04-29,"B","Hiatella_arctica","Nucella_canaliculata",0,0,83,NA,0,11.11,NA,NA
+2014-04-29,"B","Hiatella_arctica","Nucella_ostrina",0,0,30,NA,0,11.11,NA,NA
+2014-04-29,"B","Limpets","Nucella_canaliculata",0,0,83,NA,1375.2380952381,11.11,NA,NA
+2014-04-29,"B","Limpets","Nucella_ostrina",0,0,30,NA,1375.2380952381,11.11,NA,NA
+2014-04-29,"B","Littorina_sitkana","Nucella_canaliculata",0,0,83,NA,339.047619047619,11.11,NA,NA
+2014-04-29,"B","Littorina_sitkana","Nucella_ostrina",0,0,30,NA,339.047619047619,11.11,NA,NA
+2014-04-29,"B","Modiolus_modiolus","Nucella_canaliculata",0,0,83,NA,0,11.11,NA,NA
+2014-04-29,"B","Modiolus_modiolus","Nucella_ostrina",0,0,30,NA,0,11.11,NA,NA
+2014-04-29,"B","Mytilus_californianus","Nucella_canaliculata",0,0,83,NA,45.7142857142858,11.11,NA,NA
+2014-04-29,"B","Mytilus_californianus","Nucella_ostrina",0,0,30,NA,45.7142857142858,11.11,NA,NA
+2014-04-29,"B","Mytilus_trossulus","Nucella_canaliculata",0.0925925925925926,5,83,49.4716001193963,7224.88888888889,11.11,2.59053291362418e-07,0.00187163124639443
+2014-04-29,"B","Mytilus_trossulus","Nucella_ostrina",0.08,2,30,50.0785248508809,7224.88888888889,11.11,2.21109441195421e-07,0.00159749114492123
+2014-04-29,"B","Nucella_ostrina","Nucella_canaliculata",0,0,83,NA,63.4920634920635,11.11,NA,NA
+2014-04-29,"B","Nucella_ostrina","Nucella_ostrina",0,0,30,NA,63.4920634920635,11.11,NA,NA
+2014-04-29,"B","Pollicipes_polymerus","Nucella_canaliculata",0,0,83,NA,130.793650793651,11.11,NA,NA
+2014-04-29,"B","Pollicipes_polymerus","Nucella_ostrina",0,0,30,NA,130.793650793651,11.11,NA,NA
+2014-04-29,"B","Semibalanus_cariosus","Nucella_canaliculata",0,0,83,NA,39.3650793650793,11.11,NA,NA
+2014-04-29,"B","Semibalanus_cariosus","Nucella_ostrina",0,0,30,NA,39.3650793650793,11.11,NA,NA
+2014-04-29,"BB","Adula_californiensis","Nucella_canaliculata",0,0,3,NA,0,11.11,NA,NA
+2014-04-29,"BB","Adula_californiensis","Nucella_ostrina",0,0,62,NA,0,11.11,NA,NA
+2014-04-29,"BB","Balanus_glandula","Nucella_canaliculata",0,0,3,NA,26741.3333333333,11.11,NA,NA
+2014-04-29,"BB","Balanus_glandula","Nucella_ostrina",0.0892857142857143,5,62,34.5795575831187,26741.3333333333,11.11,9.65560491742527e-08,0.00258203749631842
+2014-04-29,"BB","Chthamalus_dalli","Nucella_canaliculata",0,0,3,NA,1824.76190476191,11.11,NA,NA
+2014-04-29,"BB","Chthamalus_dalli","Nucella_ostrina",0,0,62,NA,1824.76190476191,11.11,NA,NA
+2014-04-29,"BB","Hiatella_arctica","Nucella_canaliculata",0,0,3,NA,0,11.11,NA,NA
+2014-04-29,"BB","Hiatella_arctica","Nucella_ostrina",0,0,62,NA,0,11.11,NA,NA
+2014-04-29,"BB","Limpets","Nucella_canaliculata",0,0,3,NA,605.714285714286,11.11,NA,NA
+2014-04-29,"BB","Limpets","Nucella_ostrina",0,0,62,NA,605.714285714286,11.11,NA,NA
+2014-04-29,"BB","Littorina_sitkana","Nucella_canaliculata",0,0,3,NA,1630.47619047619,11.11,NA,NA
+2014-04-29,"BB","Littorina_sitkana","Nucella_ostrina",0,0,62,NA,1630.47619047619,11.11,NA,NA
+2014-04-29,"BB","Modiolus_modiolus","Nucella_canaliculata",0,0,3,NA,0,11.11,NA,NA
+2014-04-29,"BB","Modiolus_modiolus","Nucella_ostrina",0,0,62,NA,0,11.11,NA,NA
+2014-04-29,"BB","Mytilus_californianus","Nucella_canaliculata",0,0,3,NA,0,11.11,NA,NA
+2014-04-29,"BB","Mytilus_californianus","Nucella_ostrina",0,0,62,NA,0,11.11,NA,NA
+2014-04-29,"BB","Mytilus_trossulus","Nucella_canaliculata",0,0,3,NA,5500.95238095238,11.11,NA,NA
+2014-04-29,"BB","Mytilus_trossulus","Nucella_ostrina",0.0178571428571429,1,62,31.6134098238488,5500.95238095238,11.11,1.02683992452e-07,0.000564859752764526
+2014-04-29,"BB","Nucella_ostrina","Nucella_canaliculata",0,0,3,NA,3.8095238095238,11.11,NA,NA
+2014-04-29,"BB","Nucella_ostrina","Nucella_ostrina",0,0,62,NA,3.8095238095238,11.11,NA,NA
+2014-04-29,"BB","Pollicipes_polymerus","Nucella_canaliculata",0,0,3,NA,0,11.11,NA,NA
+2014-04-29,"BB","Pollicipes_polymerus","Nucella_ostrina",0,0,62,NA,0,11.11,NA,NA
+2014-04-29,"BB","Semibalanus_cariosus","Nucella_canaliculata",0,0,3,NA,0,11.11,NA,NA
+2014-04-29,"BB","Semibalanus_cariosus","Nucella_ostrina",0,0,62,NA,0,11.11,NA,NA
+2014-04-29,"BC","Adula_californiensis","Nucella_canaliculata",0,0,4,NA,0,11.11,NA,NA
+2014-04-29,"BC","Adula_californiensis","Nucella_ostrina",0,0,138,NA,0,11.11,NA,NA
+2014-04-29,"BC","Balanus_glandula","Nucella_canaliculata",0,0,4,NA,43328,11.11,NA,NA
+2014-04-29,"BC","Balanus_glandula","Nucella_ostrina",0.126050420168067,15,138,41.7731484212684,43328,11.11,6.96431563594422e-08,0.00301749867874191
+2014-04-29,"BC","Chthamalus_dalli","Nucella_canaliculata",0,0,4,NA,0,11.11,NA,NA
+2014-04-29,"BC","Chthamalus_dalli","Nucella_ostrina",0.0168067226890756,2,138,21.0641599366653,0,11.11,Inf,0.000797882409723877
+2014-04-29,"BC","Hiatella_arctica","Nucella_canaliculata",0,0,4,NA,0,11.11,NA,NA
+2014-04-29,"BC","Hiatella_arctica","Nucella_ostrina",0,0,138,NA,0,11.11,NA,NA
+2014-04-29,"BC","Limpets","Nucella_canaliculata",0,0,4,NA,430.476190476191,11.11,NA,NA
+2014-04-29,"BC","Limpets","Nucella_ostrina",0,0,138,NA,430.476190476191,11.11,NA,NA
+2014-04-29,"BC","Littorina_sitkana","Nucella_canaliculata",0,0,4,NA,1409.52380952381,11.11,NA,NA
+2014-04-29,"BC","Littorina_sitkana","Nucella_ostrina",0,0,138,NA,1409.52380952381,11.11,NA,NA
+2014-04-29,"BC","Modiolus_modiolus","Nucella_canaliculata",0,0,4,NA,0,11.11,NA,NA
+2014-04-29,"BC","Modiolus_modiolus","Nucella_ostrina",0,0,138,NA,0,11.11,NA,NA
+2014-04-29,"BC","Mytilus_californianus","Nucella_canaliculata",0,0,4,NA,0,11.11,NA,NA
+2014-04-29,"BC","Mytilus_californianus","Nucella_ostrina",0,0,138,NA,0,11.11,NA,NA
+2014-04-29,"BC","Mytilus_trossulus","Nucella_canaliculata",0,0,4,NA,5420.95238095238,11.11,NA,NA
+2014-04-29,"BC","Mytilus_trossulus","Nucella_ostrina",0.0168067226890756,2,138,33.484225488061,5420.95238095238,11.11,9.25906609020191e-08,0.000501929563670755
+2014-04-29,"BC","Nucella_ostrina","Nucella_canaliculata",0,0,4,NA,11.4285714285714,11.11,NA,NA
+2014-04-29,"BC","Nucella_ostrina","Nucella_ostrina",0,0,138,NA,11.4285714285714,11.11,NA,NA
+2014-04-29,"BC","Pollicipes_polymerus","Nucella_canaliculata",0,0,4,NA,0,11.11,NA,NA
+2014-04-29,"BC","Pollicipes_polymerus","Nucella_ostrina",0,0,138,NA,0,11.11,NA,NA
+2014-04-29,"BC","Semibalanus_cariosus","Nucella_canaliculata",0,0,4,NA,0,11.11,NA,NA
+2014-04-29,"BC","Semibalanus_cariosus","Nucella_ostrina",0,0,138,NA,0,11.11,NA,NA
+2014-04-29,"BD","Adula_californiensis","Nucella_canaliculata",0,0,3,NA,0,11.11,NA,NA
+2014-04-29,"BD","Adula_californiensis","Nucella_ostrina",0,0,17,NA,0,11.11,NA,NA
+2014-04-29,"BD","Balanus_glandula","Nucella_canaliculata",0,0,3,NA,0,11.11,NA,NA
+2014-04-29,"BD","Balanus_glandula","Nucella_ostrina",0.0666666666666667,1,17,23.502169954806,0,11.11,Inf,0.002836617503612
+2014-04-29,"BD","Chthamalus_dalli","Nucella_canaliculata",0,0,3,NA,0,11.11,NA,NA
+2014-04-29,"BD","Chthamalus_dalli","Nucella_ostrina",0,0,17,NA,0,11.11,NA,NA
+2014-04-29,"BD","Hiatella_arctica","Nucella_canaliculata",0,0,3,NA,0,11.11,NA,NA
+2014-04-29,"BD","Hiatella_arctica","Nucella_ostrina",0,0,17,NA,0,11.11,NA,NA
+2014-04-29,"BD","Limpets","Nucella_canaliculata",0,0,3,NA,0,11.11,NA,NA
+2014-04-29,"BD","Limpets","Nucella_ostrina",0,0,17,NA,0,11.11,NA,NA
+2014-04-29,"BD","Littorina_sitkana","Nucella_canaliculata",0,0,3,NA,0,11.11,NA,NA
+2014-04-29,"BD","Littorina_sitkana","Nucella_ostrina",0,0,17,NA,0,11.11,NA,NA
+2014-04-29,"BD","Modiolus_modiolus","Nucella_canaliculata",0,0,3,NA,0,11.11,NA,NA
+2014-04-29,"BD","Modiolus_modiolus","Nucella_ostrina",0,0,17,NA,0,11.11,NA,NA
+2014-04-29,"BD","Mytilus_californianus","Nucella_canaliculata",0,0,3,NA,0,11.11,NA,NA
+2014-04-29,"BD","Mytilus_californianus","Nucella_ostrina",0,0,17,NA,0,11.11,NA,NA
+2014-04-29,"BD","Mytilus_trossulus","Nucella_canaliculata",0,0,3,NA,0,11.11,NA,NA
+2014-04-29,"BD","Mytilus_trossulus","Nucella_ostrina",0.0666666666666667,1,17,58.7764474256943,0,11.11,Inf,0.00113424117289408
+2014-04-29,"BD","Nucella_ostrina","Nucella_canaliculata",0,0,3,NA,0,11.11,NA,NA
+2014-04-29,"BD","Nucella_ostrina","Nucella_ostrina",0,0,17,NA,0,11.11,NA,NA
+2014-04-29,"BD","Pollicipes_polymerus","Nucella_canaliculata",0,0,3,NA,0,11.11,NA,NA
+2014-04-29,"BD","Pollicipes_polymerus","Nucella_ostrina",0,0,17,NA,0,11.11,NA,NA
+2014-04-29,"BD","Semibalanus_cariosus","Nucella_canaliculata",0,0,3,NA,0,11.11,NA,NA
+2014-04-29,"BD","Semibalanus_cariosus","Nucella_ostrina",0,0,17,NA,0,11.11,NA,NA
+2014-04-29,"BE","Adula_californiensis","Nucella_canaliculata",0,0,1,NA,0,11.11,NA,NA
+2014-04-29,"BE","Adula_californiensis","Nucella_ostrina",0,0,71,NA,0,11.11,NA,NA
+2014-04-29,"BE","Balanus_glandula","Nucella_canaliculata",0,0,1,NA,1108.57142857143,11.11,NA,NA
+2014-04-29,"BE","Balanus_glandula","Nucella_ostrina",0.109375,7,71,48.0516363948089,1108.57142857143,11.11,2.0532706660241e-06,0.00227619719547815
+2014-04-29,"BE","Chthamalus_dalli","Nucella_canaliculata",0,0,1,NA,45.7142857142857,11.11,NA,NA
+2014-04-29,"BE","Chthamalus_dalli","Nucella_ostrina",0,0,71,NA,45.7142857142857,11.11,NA,NA
+2014-04-29,"BE","Hiatella_arctica","Nucella_canaliculata",0,0,1,NA,0,11.11,NA,NA
+2014-04-29,"BE","Hiatella_arctica","Nucella_ostrina",0,0,71,NA,0,11.11,NA,NA
+2014-04-29,"BE","Limpets","Nucella_canaliculata",0,0,1,NA,525.714285714286,11.11,NA,NA
+2014-04-29,"BE","Limpets","Nucella_ostrina",0,0,71,NA,525.714285714286,11.11,NA,NA
+2014-04-29,"BE","Littorina_sitkana","Nucella_canaliculata",0,0,1,NA,1234.28571428571,11.11,NA,NA
+2014-04-29,"BE","Littorina_sitkana","Nucella_ostrina",0,0,71,NA,1234.28571428571,11.11,NA,NA
+2014-04-29,"BE","Modiolus_modiolus","Nucella_canaliculata",0,0,1,NA,0,11.11,NA,NA
+2014-04-29,"BE","Modiolus_modiolus","Nucella_ostrina",0,0,71,NA,0,11.11,NA,NA
+2014-04-29,"BE","Mytilus_californianus","Nucella_canaliculata",0,0,1,NA,0,11.11,NA,NA
+2014-04-29,"BE","Mytilus_californianus","Nucella_ostrina",0,0,71,NA,0,11.11,NA,NA
+2014-04-29,"BE","Mytilus_trossulus","Nucella_canaliculata",0,0,1,NA,34.2857142857143,11.11,NA,NA
+2014-04-29,"BE","Mytilus_trossulus","Nucella_ostrina",0,0,71,NA,34.2857142857143,11.11,NA,NA
+2014-04-29,"BE","Nucella_ostrina","Nucella_canaliculata",0,0,1,NA,0,11.11,NA,NA
+2014-04-29,"BE","Nucella_ostrina","Nucella_ostrina",0,0,71,NA,0,11.11,NA,NA
+2014-04-29,"BE","Pollicipes_polymerus","Nucella_canaliculata",0,0,1,NA,0,11.11,NA,NA
+2014-04-29,"BE","Pollicipes_polymerus","Nucella_ostrina",0,0,71,NA,0,11.11,NA,NA
+2014-04-29,"BE","Semibalanus_cariosus","Nucella_canaliculata",0,0,1,NA,0,11.11,NA,NA
+2014-04-29,"BE","Semibalanus_cariosus","Nucella_ostrina",0,0,71,NA,0,11.11,NA,NA
+2014-04-29,"BF","Adula_californiensis","Nucella_canaliculata",0,0,1,NA,0,11.11,NA,NA
+2014-04-29,"BF","Adula_californiensis","Nucella_ostrina",0,0,127,NA,0,11.11,NA,NA
+2014-04-29,"BF","Balanus_glandula","Nucella_canaliculata",0,0,1,NA,3931.42857142857,11.11,NA,NA
+2014-04-29,"BF","Balanus_glandula","Nucella_ostrina",0,0,127,NA,3931.42857142857,11.11,NA,NA
+2014-04-29,"BF","Chthamalus_dalli","Nucella_canaliculata",0,0,1,NA,0,11.11,NA,NA
+2014-04-29,"BF","Chthamalus_dalli","Nucella_ostrina",0,0,127,NA,0,11.11,NA,NA
+2014-04-29,"BF","Hiatella_arctica","Nucella_canaliculata",0,0,1,NA,0,11.11,NA,NA
+2014-04-29,"BF","Hiatella_arctica","Nucella_ostrina",0,0,127,NA,0,11.11,NA,NA
+2014-04-29,"BF","Limpets","Nucella_canaliculata",0,0,1,NA,605.714285714286,11.11,NA,NA
+2014-04-29,"BF","Limpets","Nucella_ostrina",0,0,127,NA,605.714285714286,11.11,NA,NA
+2014-04-29,"BF","Littorina_sitkana","Nucella_canaliculata",0,0,1,NA,1702.85714285714,11.11,NA,NA
+2014-04-29,"BF","Littorina_sitkana","Nucella_ostrina",0,0,127,NA,1702.85714285714,11.11,NA,NA
+2014-04-29,"BF","Modiolus_modiolus","Nucella_canaliculata",0,0,1,NA,0,11.11,NA,NA
+2014-04-29,"BF","Modiolus_modiolus","Nucella_ostrina",0,0,127,NA,0,11.11,NA,NA
+2014-04-29,"BF","Mytilus_californianus","Nucella_canaliculata",0,0,1,NA,0,11.11,NA,NA
+2014-04-29,"BF","Mytilus_californianus","Nucella_ostrina",0,0,127,NA,0,11.11,NA,NA
+2014-04-29,"BF","Mytilus_trossulus","Nucella_canaliculata",0,0,1,NA,4262.85714285714,11.11,NA,NA
+2014-04-29,"BF","Mytilus_trossulus","Nucella_ostrina",0,0,127,NA,4262.85714285714,11.11,NA,NA
+2014-04-29,"BF","Nucella_ostrina","Nucella_canaliculata",0,0,1,NA,11.4285714285714,11.11,NA,NA
+2014-04-29,"BF","Nucella_ostrina","Nucella_ostrina",0,0,127,NA,11.4285714285714,11.11,NA,NA
+2014-04-29,"BF","Pollicipes_polymerus","Nucella_canaliculata",0,0,1,NA,0,11.11,NA,NA
+2014-04-29,"BF","Pollicipes_polymerus","Nucella_ostrina",0,0,127,NA,0,11.11,NA,NA
+2014-04-29,"BF","Semibalanus_cariosus","Nucella_canaliculata",0,0,1,NA,0,11.11,NA,NA
+2014-04-29,"BF","Semibalanus_cariosus","Nucella_ostrina",0,0,127,NA,0,11.11,NA,NA
+2014-04-29,"C","Adula_californiensis","Nucella_canaliculata",0,0,125,NA,0,11.11,NA,NA
+2014-04-29,"C","Adula_californiensis","Nucella_ostrina",0,0,102,NA,0,11.11,NA,NA
+2014-04-29,"C","Balanus_glandula","Nucella_canaliculata",0.175257731958763,17,125,38.2080886900988,30506.6666666667,11.11,1.50358199727357e-07,0.00458692747968257
+2014-04-29,"C","Balanus_glandula","Nucella_ostrina",0.102272727272727,9,102,34.0882193399139,30506.6666666667,11.11,9.83469203484827e-08,0.00300023671676438
+2014-04-29,"C","Chthamalus_dalli","Nucella_canaliculata",0,0,125,NA,469.333333333333,11.11,NA,NA
+2014-04-29,"C","Chthamalus_dalli","Nucella_ostrina",0,0,102,NA,469.333333333333,11.11,NA,NA
+2014-04-29,"C","Hiatella_arctica","Nucella_canaliculata",0,0,125,NA,0,11.11,NA,NA
+2014-04-29,"C","Hiatella_arctica","Nucella_ostrina",0,0,102,NA,0,11.11,NA,NA
+2014-04-29,"C","Limpets","Nucella_canaliculata",0,0,125,NA,1325.71428571428,11.11,NA,NA
+2014-04-29,"C","Limpets","Nucella_ostrina",0,0,102,NA,1325.71428571428,11.11,NA,NA
+2014-04-29,"C","Littorina_sitkana","Nucella_canaliculata",0,0,125,NA,361.904761904762,11.11,NA,NA
+2014-04-29,"C","Littorina_sitkana","Nucella_ostrina",0,0,102,NA,361.904761904762,11.11,NA,NA
+2014-04-29,"C","Modiolus_modiolus","Nucella_canaliculata",0,0,125,NA,0,11.11,NA,NA
+2014-04-29,"C","Modiolus_modiolus","Nucella_ostrina",0,0,102,NA,0,11.11,NA,NA
+2014-04-29,"C","Mytilus_californianus","Nucella_canaliculata",0,0,125,NA,0,11.11,NA,NA
+2014-04-29,"C","Mytilus_californianus","Nucella_ostrina",0,0,102,NA,0,11.11,NA,NA
+2014-04-29,"C","Mytilus_trossulus","Nucella_canaliculata",0.11340206185567,11,125,62.5025359137209,6826.66666666667,11.11,2.65775298742599e-07,0.00181435937274947
+2014-04-29,"C","Mytilus_trossulus","Nucella_ostrina",0.0568181818181818,5,102,41.1532620805209,6826.66666666667,11.11,2.02243405054693e-07,0.00138064831184004
+2014-04-29,"C","Nucella_ostrina","Nucella_canaliculata",0,0,125,NA,7.61904761904763,11.11,NA,NA
+2014-04-29,"C","Nucella_ostrina","Nucella_ostrina",0,0,102,NA,7.61904761904763,11.11,NA,NA
+2014-04-29,"C","Pollicipes_polymerus","Nucella_canaliculata",0,0,125,NA,194.285714285714,11.11,NA,NA
+2014-04-29,"C","Pollicipes_polymerus","Nucella_ostrina",0,0,102,NA,194.285714285714,11.11,NA,NA
+2014-04-29,"C","Semibalanus_cariosus","Nucella_canaliculata",0,0,125,NA,3.8095238095238,11.11,NA,NA
+2014-04-29,"C","Semibalanus_cariosus","Nucella_ostrina",0,0,102,NA,3.8095238095238,11.11,NA,NA
+2014-04-29,"D","Adula_californiensis","Nucella_canaliculata",0,0,8,NA,0,11.11,NA,NA
+2014-04-29,"D","Adula_californiensis","Nucella_ostrina",0,0,6,NA,0,11.11,NA,NA
+2014-04-29,"D","Balanus_glandula","Nucella_canaliculata",0,0,8,NA,25075.8095238095,11.11,NA,NA
+2014-04-29,"D","Balanus_glandula","Nucella_ostrina",0,0,6,NA,25075.8095238095,11.11,NA,NA
+2014-04-29,"D","Chthamalus_dalli","Nucella_canaliculata",0,0,8,NA,131.809523809524,11.11,NA,NA
+2014-04-29,"D","Chthamalus_dalli","Nucella_ostrina",0,0,6,NA,131.809523809524,11.11,NA,NA
+2014-04-29,"D","Hiatella_arctica","Nucella_canaliculata",0,0,8,NA,0,11.11,NA,NA
+2014-04-29,"D","Hiatella_arctica","Nucella_ostrina",0,0,6,NA,0,11.11,NA,NA
+2014-04-29,"D","Limpets","Nucella_canaliculata",0,0,8,NA,1691.42857142857,11.11,NA,NA
+2014-04-29,"D","Limpets","Nucella_ostrina",0,0,6,NA,1691.42857142857,11.11,NA,NA
+2014-04-29,"D","Littorina_sitkana","Nucella_canaliculata",0,0,8,NA,1607.61904761905,11.11,NA,NA
+2014-04-29,"D","Littorina_sitkana","Nucella_ostrina",0,0,6,NA,1607.61904761905,11.11,NA,NA
+2014-04-29,"D","Modiolus_modiolus","Nucella_canaliculata",0,0,8,NA,0,11.11,NA,NA
+2014-04-29,"D","Modiolus_modiolus","Nucella_ostrina",0,0,6,NA,0,11.11,NA,NA
+2014-04-29,"D","Mytilus_californianus","Nucella_canaliculata",0,0,8,NA,11.4285714285714,11.11,NA,NA
+2014-04-29,"D","Mytilus_californianus","Nucella_ostrina",0,0,6,NA,11.4285714285714,11.11,NA,NA
+2014-04-29,"D","Mytilus_trossulus","Nucella_canaliculata",0.6,3,8,36.1682171749221,3706.66666666666,11.11,4.47549025748933e-06,0.0165891505544271
+2014-04-29,"D","Mytilus_trossulus","Nucella_ostrina",0.5,2,6,49.7535130623972,3706.66666666666,11.11,2.71120727016329e-06,0.0100495416147386
+2014-04-29,"D","Nucella_ostrina","Nucella_canaliculata",0,0,8,NA,3.8095238095238,11.11,NA,NA
+2014-04-29,"D","Nucella_ostrina","Nucella_ostrina",0,0,6,NA,3.8095238095238,11.11,NA,NA
+2014-04-29,"D","Pollicipes_polymerus","Nucella_canaliculata",0,0,8,NA,34.2857142857143,11.11,NA,NA
+2014-04-29,"D","Pollicipes_polymerus","Nucella_ostrina",0,0,6,NA,34.2857142857143,11.11,NA,NA
+2014-04-29,"D","Semibalanus_cariosus","Nucella_canaliculata",0,0,8,NA,0,11.11,NA,NA
+2014-04-29,"D","Semibalanus_cariosus","Nucella_ostrina",0,0,6,NA,0,11.11,NA,NA
+2014-04-29,"E","Adula_californiensis","Nucella_canaliculata",0,0,33,NA,0,11.11,NA,NA
+2014-04-29,"E","Adula_californiensis","Nucella_ostrina",0,0,138,NA,0,11.11,NA,NA
+2014-04-29,"E","Balanus_glandula","Nucella_canaliculata",0.103448275862069,3,33,42.2250395540922,21809.5238095238,11.11,1.12332909739921e-07,0.0024499272695659
+2014-04-29,"E","Balanus_glandula","Nucella_ostrina",0.075,9,138,35.1704299430491,21809.5238095238,11.11,9.7777156389315e-08,0.0021324732203003
+2014-04-29,"E","Chthamalus_dalli","Nucella_canaliculata",0,0,33,NA,0,11.11,NA,NA
+2014-04-29,"E","Chthamalus_dalli","Nucella_ostrina",0,0,138,NA,0,11.11,NA,NA
+2014-04-29,"E","Hiatella_arctica","Nucella_canaliculata",0,0,33,NA,0,11.11,NA,NA
+2014-04-29,"E","Hiatella_arctica","Nucella_ostrina",0,0,138,NA,0,11.11,NA,NA
+2014-04-29,"E","Limpets","Nucella_canaliculata",0,0,33,NA,270.47619047619,11.11,NA,NA
+2014-04-29,"E","Limpets","Nucella_ostrina",0,0,138,NA,270.47619047619,11.11,NA,NA
+2014-04-29,"E","Littorina_sitkana","Nucella_canaliculata",0,0,33,NA,796.190476190476,11.11,NA,NA
+2014-04-29,"E","Littorina_sitkana","Nucella_ostrina",0,0,138,NA,796.190476190476,11.11,NA,NA
+2014-04-29,"E","Modiolus_modiolus","Nucella_canaliculata",0,0,33,NA,0,11.11,NA,NA
+2014-04-29,"E","Modiolus_modiolus","Nucella_ostrina",0,0,138,NA,0,11.11,NA,NA
+2014-04-29,"E","Mytilus_californianus","Nucella_canaliculata",0,0,33,NA,0,11.11,NA,NA
+2014-04-29,"E","Mytilus_californianus","Nucella_ostrina",0,0,138,NA,0,11.11,NA,NA
+2014-04-29,"E","Mytilus_trossulus","Nucella_canaliculata",0.0344827586206897,1,33,35.3982423842294,7733.33333333334,11.11,1.25966068016822e-07,0.000974137592663425
+2014-04-29,"E","Mytilus_trossulus","Nucella_ostrina",0.075,9,138,48.8961053134217,7733.33333333334,11.11,1.98344547073913e-07,0.00153386449737159
+2014-04-29,"E","Nucella_ostrina","Nucella_canaliculata",0,0,33,NA,26.6666666666667,11.11,NA,NA
+2014-04-29,"E","Nucella_ostrina","Nucella_ostrina",0,0,138,NA,26.6666666666667,11.11,NA,NA
+2014-04-29,"E","Pollicipes_polymerus","Nucella_canaliculata",0,0,33,NA,15.2380952380952,11.11,NA,NA
+2014-04-29,"E","Pollicipes_polymerus","Nucella_ostrina",0,0,138,NA,15.2380952380952,11.11,NA,NA
+2014-04-29,"E","Semibalanus_cariosus","Nucella_canaliculata",0,0,33,NA,0,11.11,NA,NA
+2014-04-29,"E","Semibalanus_cariosus","Nucella_ostrina",0,0,138,NA,0,11.11,NA,NA
+2014-04-29,"F","Adula_californiensis","Nucella_canaliculata",0,0,0,NA,0,11.11,NA,NA
+2014-04-29,"F","Adula_californiensis","Nucella_ostrina",0,0,32,NA,0,11.11,NA,NA
+2014-04-29,"F","Balanus_glandula","Nucella_canaliculata",0,0,0,NA,37376,11.11,NA,NA
+2014-04-29,"F","Balanus_glandula","Nucella_ostrina",0.0689655172413793,2,32,46.7087515599913,37376,11.11,3.95039858591454e-08,0.00147650097547142
+2014-04-29,"F","Chthamalus_dalli","Nucella_canaliculata",0,0,0,NA,448,11.11,NA,NA
+2014-04-29,"F","Chthamalus_dalli","Nucella_ostrina",0,0,32,NA,448,11.11,NA,NA
+2014-04-29,"F","Hiatella_arctica","Nucella_canaliculata",0,0,0,NA,0,11.11,NA,NA
+2014-04-29,"F","Hiatella_arctica","Nucella_ostrina",0,0,32,NA,0,11.11,NA,NA
+2014-04-29,"F","Limpets","Nucella_canaliculata",0,0,0,NA,7356.19047619048,11.11,NA,NA
+2014-04-29,"F","Limpets","Nucella_ostrina",0,0,32,NA,7356.19047619048,11.11,NA,NA
+2014-04-29,"F","Littorina_sitkana","Nucella_canaliculata",0,0,0,NA,2163.80952380952,11.11,NA,NA
+2014-04-29,"F","Littorina_sitkana","Nucella_ostrina",0,0,32,NA,2163.80952380952,11.11,NA,NA
+2014-04-29,"F","Modiolus_modiolus","Nucella_canaliculata",0,0,0,NA,0,11.11,NA,NA
+2014-04-29,"F","Modiolus_modiolus","Nucella_ostrina",0,0,32,NA,0,11.11,NA,NA
+2014-04-29,"F","Mytilus_californianus","Nucella_canaliculata",0,0,0,NA,0,11.11,NA,NA
+2014-04-29,"F","Mytilus_californianus","Nucella_ostrina",0,0,32,NA,0,11.11,NA,NA
+2014-04-29,"F","Mytilus_trossulus","Nucella_canaliculata",0,0,0,NA,5135.23809523809,11.11,NA,NA
+2014-04-29,"F","Mytilus_trossulus","Nucella_ostrina",0.0344827586206897,1,32,48.4153523849358,5135.23809523809,11.11,1.38694206587967e-07,0.000712227773259352
+2014-04-29,"F","Nucella_ostrina","Nucella_canaliculata",0,0,0,NA,0,11.11,NA,NA
+2014-04-29,"F","Nucella_ostrina","Nucella_ostrina",0,0,32,NA,0,11.11,NA,NA
+2014-04-29,"F","Pollicipes_polymerus","Nucella_canaliculata",0,0,0,NA,15.2380952380952,11.11,NA,NA
+2014-04-29,"F","Pollicipes_polymerus","Nucella_ostrina",0,0,32,NA,15.2380952380952,11.11,NA,NA
+2014-04-29,"F","Semibalanus_cariosus","Nucella_canaliculata",0,0,0,NA,0,11.11,NA,NA
+2014-04-29,"F","Semibalanus_cariosus","Nucella_ostrina",0,0,32,NA,0,11.11,NA,NA
+2014-04-29,"G","Adula_californiensis","Nucella_canaliculata",0,0,28,NA,0,11.11,NA,NA
+2014-04-29,"G","Adula_californiensis","Nucella_ostrina",0,0,210,NA,0,11.11,NA,NA
+2014-04-29,"G","Balanus_glandula","Nucella_canaliculata",0.2,4,28,28.640061416889,7386.66666666667,11.11,9.45382479466392e-07,0.00698322524832508
+2014-04-29,"G","Balanus_glandula","Nucella_ostrina",0.0284090909090909,5,210,34.4975494418567,7386.66666666667,11.11,1.11486065645973e-07,0.000823510404904919
+2014-04-29,"G","Chthamalus_dalli","Nucella_canaliculata",0,0,28,NA,697.142857142857,11.11,NA,NA
+2014-04-29,"G","Chthamalus_dalli","Nucella_ostrina",0,0,210,NA,697.142857142857,11.11,NA,NA
+2014-04-29,"G","Hiatella_arctica","Nucella_canaliculata",0,0,28,NA,0,11.11,NA,NA
+2014-04-29,"G","Hiatella_arctica","Nucella_ostrina",0,0,210,NA,0,11.11,NA,NA
+2014-04-29,"G","Limpets","Nucella_canaliculata",0,0,28,NA,491.428571428572,11.11,NA,NA
+2014-04-29,"G","Limpets","Nucella_ostrina",0,0,210,NA,491.428571428572,11.11,NA,NA
+2014-04-29,"G","Littorina_sitkana","Nucella_canaliculata",0,0,28,NA,940.952380952381,11.11,NA,NA
+2014-04-29,"G","Littorina_sitkana","Nucella_ostrina",0,0,210,NA,940.952380952381,11.11,NA,NA
+2014-04-29,"G","Modiolus_modiolus","Nucella_canaliculata",0,0,28,NA,0,11.11,NA,NA
+2014-04-29,"G","Modiolus_modiolus","Nucella_ostrina",0,0,210,NA,0,11.11,NA,NA
+2014-04-29,"G","Mytilus_californianus","Nucella_canaliculata",0,0,28,NA,128,11.11,NA,NA
+2014-04-29,"G","Mytilus_californianus","Nucella_ostrina",0,0,210,NA,128,11.11,NA,NA
+2014-04-29,"G","Mytilus_trossulus","Nucella_canaliculata",0.2,4,28,43.2103358110428,14111.2380952381,11.11,3.28002560925947e-07,0.00462852223307388
+2014-04-29,"G","Mytilus_trossulus","Nucella_ostrina",0.164772727272727,29,210,44.9921190393783,14111.2380952381,11.11,2.59527726558457e-07,0.00366225754178224
+2014-04-29,"G","Nucella_ostrina","Nucella_canaliculata",0,0,28,NA,160,11.11,NA,NA
+2014-04-29,"G","Nucella_ostrina","Nucella_ostrina",0,0,210,NA,160,11.11,NA,NA
+2014-04-29,"G","Pollicipes_polymerus","Nucella_canaliculata",0,0,28,NA,106.666666666667,11.11,NA,NA
+2014-04-29,"G","Pollicipes_polymerus","Nucella_ostrina",0,0,210,NA,106.666666666667,11.11,NA,NA
+2014-04-29,"G","Semibalanus_cariosus","Nucella_canaliculata",0,0,28,NA,3.8095238095238,11.11,NA,NA
+2014-04-29,"G","Semibalanus_cariosus","Nucella_ostrina",0,0,210,NA,3.8095238095238,11.11,NA,NA
+2014-05-27,"A","Adula_californiensis","Nucella_canaliculata",0,0,19,NA,0,13.5,NA,NA
+2014-05-27,"A","Adula_californiensis","Nucella_ostrina",0,0,142,NA,0,13.5,NA,NA
+2014-05-27,"A","Balanus_glandula","Nucella_canaliculata",0.125,2,19,17.1356624353261,7057.14285714286,13.5,1.033665939332e-06,0.0072947282004287
+2014-05-27,"A","Balanus_glandula","Nucella_ostrina",0.0367647058823529,5,142,22.77180751296,7057.14285714286,13.5,2.28772955553082e-07,0.00161448342918889
+2014-05-27,"A","Chthamalus_dalli","Nucella_canaliculata",0,0,19,NA,0,13.5,NA,NA
+2014-05-27,"A","Chthamalus_dalli","Nucella_ostrina",0,0,142,NA,0,13.5,NA,NA
+2014-05-27,"A","Hiatella_arctica","Nucella_canaliculata",0,0,19,NA,0,13.5,NA,NA
+2014-05-27,"A","Hiatella_arctica","Nucella_ostrina",0,0,142,NA,0,13.5,NA,NA
+2014-05-27,"A","Limpets","Nucella_canaliculata",0,0,19,NA,514.285714285714,13.5,NA,NA
+2014-05-27,"A","Limpets","Nucella_ostrina",0,0,142,NA,514.285714285714,13.5,NA,NA
+2014-05-27,"A","Littorina_sitkana","Nucella_canaliculata",0,0,19,NA,1097.14285714286,13.5,NA,NA
+2014-05-27,"A","Littorina_sitkana","Nucella_ostrina",0,0,142,NA,1097.14285714286,13.5,NA,NA
+2014-05-27,"A","Modiolus_modiolus","Nucella_canaliculata",0,0,19,NA,0,13.5,NA,NA
+2014-05-27,"A","Modiolus_modiolus","Nucella_ostrina",0,0,142,NA,0,13.5,NA,NA
+2014-05-27,"A","Mytilus_californianus","Nucella_canaliculata",0,0,19,NA,0,13.5,NA,NA
+2014-05-27,"A","Mytilus_californianus","Nucella_ostrina",0,0,142,NA,0,13.5,NA,NA
+2014-05-27,"A","Mytilus_trossulus","Nucella_canaliculata",0.0625,1,19,44.4118283312553,15076.5714285714,13.5,9.33423596188148e-08,0.00140728275210446
+2014-05-27,"A","Mytilus_trossulus","Nucella_ostrina",0.00735294117647059,1,142,34.1874538121685,15076.5714285714,13.5,1.42656559271239e-08,0.000215077180560707
+2014-05-27,"A","Nucella_ostrina","Nucella_canaliculata",0,0,19,NA,62.857142857143,13.5,NA,NA
+2014-05-27,"A","Nucella_ostrina","Nucella_ostrina",0,0,142,NA,62.857142857143,13.5,NA,NA
+2014-05-27,"A","Pollicipes_polymerus","Nucella_canaliculata",0,0,19,NA,40,13.5,NA,NA
+2014-05-27,"A","Pollicipes_polymerus","Nucella_ostrina",0,0,142,NA,40,13.5,NA,NA
+2014-05-27,"A","Semibalanus_cariosus","Nucella_canaliculata",0,0,19,NA,0,13.5,NA,NA
+2014-05-27,"A","Semibalanus_cariosus","Nucella_ostrina",0,0,142,NA,0,13.5,NA,NA
+2014-05-27,"AB","Adula_californiensis","Nucella_canaliculata",0,0,98,NA,0,13.5,NA,NA
+2014-05-27,"AB","Adula_californiensis","Nucella_ostrina",0,0,140,NA,0,13.5,NA,NA
+2014-05-27,"AB","Balanus_glandula","Nucella_canaliculata",0.010752688172043,1,98,6.22149024324519,11370.2857142857,13.5,1.52002681415004e-07,0.00172831391702614
+2014-05-27,"AB","Balanus_glandula","Nucella_ostrina",0.0806451612903226,10,140,21.2697779787891,11370.2857142857,13.5,3.33460180089898e-07,0.00379153752195931
+2014-05-27,"AB","Chthamalus_dalli","Nucella_canaliculata",0,0,98,NA,224,13.5,NA,NA
+2014-05-27,"AB","Chthamalus_dalli","Nucella_ostrina",0.00806451612903226,1,140,9.12883179739066,224,13.5,3.94380189563315e-06,0.000883411624621825
+2014-05-27,"AB","Hiatella_arctica","Nucella_canaliculata",0,0,98,NA,0,13.5,NA,NA
+2014-05-27,"AB","Hiatella_arctica","Nucella_ostrina",0,0,140,NA,0,13.5,NA,NA
+2014-05-27,"AB","Limpets","Nucella_canaliculata",0,0,98,NA,1405.71428571429,13.5,NA,NA
+2014-05-27,"AB","Limpets","Nucella_ostrina",0,0,140,NA,1405.71428571429,13.5,NA,NA
+2014-05-27,"AB","Littorina_sitkana","Nucella_canaliculata",0,0,98,NA,622.857142857143,13.5,NA,NA
+2014-05-27,"AB","Littorina_sitkana","Nucella_ostrina",0,0,140,NA,622.857142857143,13.5,NA,NA
+2014-05-27,"AB","Modiolus_modiolus","Nucella_canaliculata",0,0,98,NA,0,13.5,NA,NA
+2014-05-27,"AB","Modiolus_modiolus","Nucella_ostrina",0,0,140,NA,0,13.5,NA,NA
+2014-05-27,"AB","Mytilus_californianus","Nucella_canaliculata",0,0,98,NA,0,13.5,NA,NA
+2014-05-27,"AB","Mytilus_californianus","Nucella_ostrina",0,0,140,NA,0,13.5,NA,NA
+2014-05-27,"AB","Mytilus_trossulus","Nucella_canaliculata",0.043010752688172,4,98,69.6818524606345,2845.71428571429,13.5,2.16903250823983e-07,0.000617244679487679
+2014-05-27,"AB","Mytilus_trossulus","Nucella_ostrina",0.0403225806451613,5,140,51.80656843939,2845.71428571429,13.5,2.73509363365611e-07,0.000778329502606138
+2014-05-27,"AB","Nucella_ostrina","Nucella_canaliculata",0,0,98,NA,154.285714285714,13.5,NA,NA
+2014-05-27,"AB","Nucella_ostrina","Nucella_ostrina",0,0,140,NA,154.285714285714,13.5,NA,NA
+2014-05-27,"AB","Pollicipes_polymerus","Nucella_canaliculata",0,0,98,NA,645.714285714286,13.5,NA,NA
+2014-05-27,"AB","Pollicipes_polymerus","Nucella_ostrina",0,0,140,NA,645.714285714286,13.5,NA,NA
+2014-05-27,"AB","Semibalanus_cariosus","Nucella_canaliculata",0,0,98,NA,0,13.5,NA,NA
+2014-05-27,"AB","Semibalanus_cariosus","Nucella_ostrina",0,0,140,NA,0,13.5,NA,NA
+2014-05-27,"AC","Adula_californiensis","Nucella_canaliculata",0,0,13,NA,0,13.5,NA,NA
+2014-05-27,"AC","Adula_californiensis","Nucella_ostrina",0,0,82,NA,0,13.5,NA,NA
+2014-05-27,"AC","Balanus_glandula","Nucella_canaliculata",0.181818181818182,2,13,35.7263999878527,7373.14285714286,13.5,6.90232501990636e-07,0.0050891828418201
+2014-05-27,"AC","Balanus_glandula","Nucella_ostrina",0.101449275362319,7,82,26.8709703227346,7373.14285714286,13.5,5.12050684939408e-07,0.0037754228501561
+2014-05-27,"AC","Chthamalus_dalli","Nucella_canaliculata",0,0,13,NA,241.142857142857,13.5,NA,NA
+2014-05-27,"AC","Chthamalus_dalli","Nucella_ostrina",0.0434782608695652,3,82,13.0810306824816,241.142857142857,13.5,1.37833821519666e-05,0.0033237641532171
+2014-05-27,"AC","Hiatella_arctica","Nucella_canaliculata",0,0,13,NA,0,13.5,NA,NA
+2014-05-27,"AC","Hiatella_arctica","Nucella_ostrina",0,0,82,NA,0,13.5,NA,NA
+2014-05-27,"AC","Limpets","Nucella_canaliculata",0,0,13,NA,702.857142857143,13.5,NA,NA
+2014-05-27,"AC","Limpets","Nucella_ostrina",0,0,82,NA,702.857142857143,13.5,NA,NA
+2014-05-27,"AC","Littorina_sitkana","Nucella_canaliculata",0,0,13,NA,988.57142857143,13.5,NA,NA
+2014-05-27,"AC","Littorina_sitkana","Nucella_ostrina",0,0,82,NA,988.57142857143,13.5,NA,NA
+2014-05-27,"AC","Modiolus_modiolus","Nucella_canaliculata",0,0,13,NA,0,13.5,NA,NA
+2014-05-27,"AC","Modiolus_modiolus","Nucella_ostrina",0,0,82,NA,0,13.5,NA,NA
+2014-05-27,"AC","Mytilus_californianus","Nucella_canaliculata",0,0,13,NA,0,13.5,NA,NA
+2014-05-27,"AC","Mytilus_californianus","Nucella_ostrina",0,0,82,NA,0,13.5,NA,NA
+2014-05-27,"AC","Mytilus_trossulus","Nucella_canaliculata",0,0,13,NA,637.142857142859,13.5,NA,NA
+2014-05-27,"AC","Mytilus_trossulus","Nucella_ostrina",0.0434782608695652,3,82,48.5905609161292,637.142857142859,13.5,1.40437610932786e-06,0.000894788206800325
+2014-05-27,"AC","Nucella_ostrina","Nucella_canaliculata",0,0,13,NA,54.2857142857143,13.5,NA,NA
+2014-05-27,"AC","Nucella_ostrina","Nucella_ostrina",0,0,82,NA,54.2857142857143,13.5,NA,NA
+2014-05-27,"AC","Pollicipes_polymerus","Nucella_canaliculata",0,0,13,NA,8.57142857142857,13.5,NA,NA
+2014-05-27,"AC","Pollicipes_polymerus","Nucella_ostrina",0,0,82,NA,8.57142857142857,13.5,NA,NA
+2014-05-27,"AC","Semibalanus_cariosus","Nucella_canaliculata",0,0,13,NA,0,13.5,NA,NA
+2014-05-27,"AC","Semibalanus_cariosus","Nucella_ostrina",0,0,82,NA,0,13.5,NA,NA
+2014-05-27,"AD","Adula_californiensis","Nucella_canaliculata",0,0,91,NA,0,13.5,NA,NA
+2014-05-27,"AD","Adula_californiensis","Nucella_ostrina",0,0,159,NA,0,13.5,NA,NA
+2014-05-27,"AD","Balanus_glandula","Nucella_canaliculata",0.103896103896104,8,91,25.1767084370463,14727.619047619,13.5,2.80199766706729e-07,0.00412667542128843
+2014-05-27,"AD","Balanus_glandula","Nucella_ostrina",0.0638297872340425,9,159,19.8833233637455,14727.619047619,13.5,2.17972587335356e-07,0.003210217229099
+2014-05-27,"AD","Chthamalus_dalli","Nucella_canaliculata",0,0,91,NA,131.047619047619,13.5,NA,NA
+2014-05-27,"AD","Chthamalus_dalli","Nucella_ostrina",0,0,159,NA,131.047619047619,13.5,NA,NA
+2014-05-27,"AD","Hiatella_arctica","Nucella_canaliculata",0,0,91,NA,0,13.5,NA,NA
+2014-05-27,"AD","Hiatella_arctica","Nucella_ostrina",0,0,159,NA,0,13.5,NA,NA
+2014-05-27,"AD","Limpets","Nucella_canaliculata",0,0,91,NA,1154.28571428571,13.5,NA,NA
+2014-05-27,"AD","Limpets","Nucella_ostrina",0,0,159,NA,1154.28571428571,13.5,NA,NA
+2014-05-27,"AD","Littorina_sitkana","Nucella_canaliculata",0,0,91,NA,1920,13.5,NA,NA
+2014-05-27,"AD","Littorina_sitkana","Nucella_ostrina",0,0,159,NA,1920,13.5,NA,NA
+2014-05-27,"AD","Modiolus_modiolus","Nucella_canaliculata",0,0,91,NA,0,13.5,NA,NA
+2014-05-27,"AD","Modiolus_modiolus","Nucella_ostrina",0,0,159,NA,0,13.5,NA,NA
+2014-05-27,"AD","Mytilus_californianus","Nucella_canaliculata",0,0,91,NA,26.6666666666667,13.5,NA,NA
+2014-05-27,"AD","Mytilus_californianus","Nucella_ostrina",0,0,159,NA,26.6666666666667,13.5,NA,NA
+2014-05-27,"AD","Mytilus_trossulus","Nucella_canaliculata",0.0779220779220779,6,91,48.7905803243657,7458.28571428571,13.5,2.14133948430384e-07,0.00159707216852193
+2014-05-27,"AD","Mytilus_trossulus","Nucella_ostrina",0.0638297872340425,9,159,51.5537010430026,7458.28571428571,13.5,1.6600628532316e-07,0.00123812230630736
+2014-05-27,"AD","Nucella_ostrina","Nucella_canaliculata",0,0,91,NA,220.952380952381,13.5,NA,NA
+2014-05-27,"AD","Nucella_ostrina","Nucella_ostrina",0,0,159,NA,220.952380952381,13.5,NA,NA
+2014-05-27,"AD","Pollicipes_polymerus","Nucella_canaliculata",0,0,91,NA,79.9999999999999,13.5,NA,NA
+2014-05-27,"AD","Pollicipes_polymerus","Nucella_ostrina",0,0,159,NA,79.9999999999999,13.5,NA,NA
+2014-05-27,"AD","Semibalanus_cariosus","Nucella_canaliculata",0,0,91,NA,0,13.5,NA,NA
+2014-05-27,"AD","Semibalanus_cariosus","Nucella_ostrina",0,0,159,NA,0,13.5,NA,NA
+2014-05-27,"AE","Adula_californiensis","Nucella_canaliculata",0,0,6,NA,0,13.5,NA,NA
+2014-05-27,"AE","Adula_californiensis","Nucella_ostrina",0,0,160,NA,0,13.5,NA,NA
+2014-05-27,"AE","Balanus_glandula","Nucella_canaliculata",0,0,6,NA,23344.7619047619,13.5,NA,NA
+2014-05-27,"AE","Balanus_glandula","Nucella_ostrina",0.0402684563758389,6,160,22.9028721970272,23344.7619047619,13.5,7.53157115461199e-08,0.0017582273537319
+2014-05-27,"AE","Chthamalus_dalli","Nucella_canaliculata",0,0,6,NA,755.809523809524,13.5,NA,NA
+2014-05-27,"AE","Chthamalus_dalli","Nucella_ostrina",0,0,160,NA,755.809523809524,13.5,NA,NA
+2014-05-27,"AE","Hiatella_arctica","Nucella_canaliculata",0,0,6,NA,0,13.5,NA,NA
+2014-05-27,"AE","Hiatella_arctica","Nucella_ostrina",0,0,160,NA,0,13.5,NA,NA
+2014-05-27,"AE","Limpets","Nucella_canaliculata",0,0,6,NA,1828.57142857143,13.5,NA,NA
+2014-05-27,"AE","Limpets","Nucella_ostrina",0,0,160,NA,1828.57142857143,13.5,NA,NA
+2014-05-27,"AE","Littorina_sitkana","Nucella_canaliculata",0,0,6,NA,2575.23809523809,13.5,NA,NA
+2014-05-27,"AE","Littorina_sitkana","Nucella_ostrina",0,0,160,NA,2575.23809523809,13.5,NA,NA
+2014-05-27,"AE","Modiolus_modiolus","Nucella_canaliculata",0,0,6,NA,0,13.5,NA,NA
+2014-05-27,"AE","Modiolus_modiolus","Nucella_ostrina",0,0,160,NA,0,13.5,NA,NA
+2014-05-27,"AE","Mytilus_californianus","Nucella_canaliculata",0,0,6,NA,0,13.5,NA,NA
+2014-05-27,"AE","Mytilus_californianus","Nucella_ostrina",0,0,160,NA,0,13.5,NA,NA
+2014-05-27,"AE","Mytilus_trossulus","Nucella_canaliculata",0,0,6,NA,2377.14285714286,13.5,NA,NA
+2014-05-27,"AE","Mytilus_trossulus","Nucella_ostrina",0.0335570469798658,5,160,50.1054376307654,2377.14285714286,13.5,2.81736810872692e-07,0.000669728647560227
+2014-05-27,"AE","Nucella_ostrina","Nucella_canaliculata",0,0,6,NA,72.3809523809524,13.5,NA,NA
+2014-05-27,"AE","Nucella_ostrina","Nucella_ostrina",0,0,160,NA,72.3809523809524,13.5,NA,NA
+2014-05-27,"AE","Pollicipes_polymerus","Nucella_canaliculata",0,0,6,NA,22.8571428571429,13.5,NA,NA
+2014-05-27,"AE","Pollicipes_polymerus","Nucella_ostrina",0,0,160,NA,22.8571428571429,13.5,NA,NA
+2014-05-27,"AE","Semibalanus_cariosus","Nucella_canaliculata",0,0,6,NA,7.61904761904763,13.5,NA,NA
+2014-05-27,"AE","Semibalanus_cariosus","Nucella_ostrina",0,0,160,NA,7.61904761904763,13.5,NA,NA
+2014-05-27,"AF","Adula_californiensis","Nucella_canaliculata",0,0,25,NA,0,13.5,NA,NA
+2014-05-27,"AF","Adula_californiensis","Nucella_ostrina",0,0,234,NA,0,13.5,NA,NA
+2014-05-27,"AF","Balanus_glandula","Nucella_canaliculata",0.0909090909090909,2,25,18.1201076132957,32252.1904761905,13.5,1.55556200288069e-07,0.00501702820144324
+2014-05-27,"AF","Balanus_glandula","Nucella_ostrina",0.0669856459330144,14,234,24.2207023624882,32252.1904761905,13.5,8.57503301303907e-08,0.00276563598076157
+2014-05-27,"AF","Chthamalus_dalli","Nucella_canaliculata",0,0,25,NA,74.6666666666667,13.5,NA,NA
+2014-05-27,"AF","Chthamalus_dalli","Nucella_ostrina",0.00956937799043062,2,234,10.1062967794677,74.6666666666667,13.5,1.26813327540722e-05,0.000946872845637394
+2014-05-27,"AF","Hiatella_arctica","Nucella_canaliculata",0,0,25,NA,0,13.5,NA,NA
+2014-05-27,"AF","Hiatella_arctica","Nucella_ostrina",0,0,234,NA,0,13.5,NA,NA
+2014-05-27,"AF","Limpets","Nucella_canaliculata",0,0,25,NA,1314.28571428571,13.5,NA,NA
+2014-05-27,"AF","Limpets","Nucella_ostrina",0,0,234,NA,1314.28571428571,13.5,NA,NA
+2014-05-27,"AF","Littorina_sitkana","Nucella_canaliculata",0,0,25,NA,2868.57142857143,13.5,NA,NA
+2014-05-27,"AF","Littorina_sitkana","Nucella_ostrina",0,0,234,NA,2868.57142857143,13.5,NA,NA
+2014-05-27,"AF","Modiolus_modiolus","Nucella_canaliculata",0,0,25,NA,0,13.5,NA,NA
+2014-05-27,"AF","Modiolus_modiolus","Nucella_ostrina",0,0,234,NA,0,13.5,NA,NA
+2014-05-27,"AF","Mytilus_californianus","Nucella_canaliculata",0,0,25,NA,3.8095238095238,13.5,NA,NA
+2014-05-27,"AF","Mytilus_californianus","Nucella_ostrina",0,0,234,NA,3.8095238095238,13.5,NA,NA
+2014-05-27,"AF","Mytilus_trossulus","Nucella_canaliculata",0.0454545454545455,1,25,36.5282315803158,1756.19047619047,13.5,7.08560689124209e-07,0.0012443675340429
+2014-05-27,"AF","Mytilus_trossulus","Nucella_ostrina",0.0430622009569378,9,234,37.0962313889599,1756.19047619047,13.5,6.60989885374493e-07,0.00116082414155292
+2014-05-27,"AF","Nucella_ostrina","Nucella_canaliculata",0,0,25,NA,133.333333333333,13.5,NA,NA
+2014-05-27,"AF","Nucella_ostrina","Nucella_ostrina",0,0,234,NA,133.333333333333,13.5,NA,NA
+2014-05-27,"AF","Pollicipes_polymerus","Nucella_canaliculata",0,0,25,NA,0,13.5,NA,NA
+2014-05-27,"AF","Pollicipes_polymerus","Nucella_ostrina",0,0,234,NA,0,13.5,NA,NA
+2014-05-27,"AF","Semibalanus_cariosus","Nucella_canaliculata",0,0,25,NA,0,13.5,NA,NA
+2014-05-27,"AF","Semibalanus_cariosus","Nucella_ostrina",0,0,234,NA,0,13.5,NA,NA
+2014-05-27,"AG","Adula_californiensis","Nucella_canaliculata",0,0,28,NA,0,13.5,NA,NA
+2014-05-27,"AG","Adula_californiensis","Nucella_ostrina",0,0,197,NA,0,13.5,NA,NA
+2014-05-27,"AG","Balanus_glandula","Nucella_canaliculata",0.05,1,28,21.0943444160913,21353.1428571429,13.5,1.11004904136284e-07,0.00237030357586552
+2014-05-27,"AG","Balanus_glandula","Nucella_ostrina",0.0621468926553672,11,197,24.7731273517222,21353.1428571429,13.5,1.17483473399439e-07,0.00250864139085156
+2014-05-27,"AG","Chthamalus_dalli","Nucella_canaliculata",0,0,28,NA,930.742857142857,13.5,NA,NA
+2014-05-27,"AG","Chthamalus_dalli","Nucella_ostrina",0.00564971751412429,1,197,9.12883179739066,930.742857142857,13.5,6.64939016290583e-07,0.000618887239848058
+2014-05-27,"AG","Hiatella_arctica","Nucella_canaliculata",0,0,28,NA,0,13.5,NA,NA
+2014-05-27,"AG","Hiatella_arctica","Nucella_ostrina",0,0,197,NA,0,13.5,NA,NA
+2014-05-27,"AG","Limpets","Nucella_canaliculata",0,0,28,NA,736,13.5,NA,NA
+2014-05-27,"AG","Limpets","Nucella_ostrina",0,0,197,NA,736,13.5,NA,NA
+2014-05-27,"AG","Littorina_sitkana","Nucella_canaliculata",0,0,28,NA,2473.14285714286,13.5,NA,NA
+2014-05-27,"AG","Littorina_sitkana","Nucella_ostrina",0,0,197,NA,2473.14285714286,13.5,NA,NA
+2014-05-27,"AG","Modiolus_modiolus","Nucella_canaliculata",0,0,28,NA,0,13.5,NA,NA
+2014-05-27,"AG","Modiolus_modiolus","Nucella_ostrina",0,0,197,NA,0,13.5,NA,NA
+2014-05-27,"AG","Mytilus_californianus","Nucella_canaliculata",0,0,28,NA,0,13.5,NA,NA
+2014-05-27,"AG","Mytilus_californianus","Nucella_ostrina",0,0,197,NA,0,13.5,NA,NA
+2014-05-27,"AG","Mytilus_trossulus","Nucella_canaliculata",0.35,7,28,45.3786370122772,2770.28571428571,13.5,2.78414618406732e-06,0.00771288040020479
+2014-05-27,"AG","Mytilus_trossulus","Nucella_ostrina",0.0451977401129944,8,197,48.1626582367843,2770.28571428571,13.5,3.38751876213038e-07,0.000938439483360463
+2014-05-27,"AG","Nucella_ostrina","Nucella_canaliculata",0,0,28,NA,18.2857142857143,13.5,NA,NA
+2014-05-27,"AG","Nucella_ostrina","Nucella_ostrina",0,0,197,NA,18.2857142857143,13.5,NA,NA
+2014-05-27,"AG","Pollicipes_polymerus","Nucella_canaliculata",0,0,28,NA,0,13.5,NA,NA
+2014-05-27,"AG","Pollicipes_polymerus","Nucella_ostrina",0,0,197,NA,0,13.5,NA,NA
+2014-05-27,"AG","Semibalanus_cariosus","Nucella_canaliculata",0,0,28,NA,4.57142857142858,13.5,NA,NA
+2014-05-27,"AG","Semibalanus_cariosus","Nucella_ostrina",0,0,197,NA,4.57142857142858,13.5,NA,NA
+2014-05-27,"B","Adula_californiensis","Nucella_canaliculata",0,0,98,NA,0,13.5,NA,NA
+2014-05-27,"B","Adula_californiensis","Nucella_ostrina",0,0,51,NA,0,13.5,NA,NA
+2014-05-27,"B","Balanus_glandula","Nucella_canaliculata",0.151898734177215,12,98,19.3817897759492,18346.6666666667,13.5,4.27172322089031e-07,0.00783718820259342
+2014-05-27,"B","Balanus_glandula","Nucella_ostrina",0.0638297872340425,3,51,18.801839176821,18346.6666666667,13.5,1.85040116285991e-07,0.00339486933346032
+2014-05-27,"B","Chthamalus_dalli","Nucella_canaliculata",0,0,98,NA,170.666666666667,13.5,NA,NA
+2014-05-27,"B","Chthamalus_dalli","Nucella_ostrina",0.0212765957446809,1,51,8.5965183454339,170.666666666667,13.5,1.45020981962666e-05,0.00247502475882949
+2014-05-27,"B","Hiatella_arctica","Nucella_canaliculata",0,0,98,NA,0,13.5,NA,NA
+2014-05-27,"B","Hiatella_arctica","Nucella_ostrina",0,0,51,NA,0,13.5,NA,NA
+2014-05-27,"B","Limpets","Nucella_canaliculata",0,0,98,NA,1874.28571428571,13.5,NA,NA
+2014-05-27,"B","Limpets","Nucella_ostrina",0,0,51,NA,1874.28571428571,13.5,NA,NA
+2014-05-27,"B","Littorina_sitkana","Nucella_canaliculata",0,0,98,NA,514.285714285714,13.5,NA,NA
+2014-05-27,"B","Littorina_sitkana","Nucella_ostrina",0,0,51,NA,514.285714285714,13.5,NA,NA
+2014-05-27,"B","Modiolus_modiolus","Nucella_canaliculata",0,0,98,NA,0,13.5,NA,NA
+2014-05-27,"B","Modiolus_modiolus","Nucella_ostrina",0,0,51,NA,0,13.5,NA,NA
+2014-05-27,"B","Mytilus_californianus","Nucella_canaliculata",0,0,98,NA,0,13.5,NA,NA
+2014-05-27,"B","Mytilus_californianus","Nucella_ostrina",0,0,51,NA,0,13.5,NA,NA
+2014-05-27,"B","Mytilus_trossulus","Nucella_canaliculata",0.0886075949367089,7,98,53.0201246668952,9493.33333333333,13.5,1.76040046220649e-07,0.00167120683878803
+2014-05-27,"B","Mytilus_trossulus","Nucella_ostrina",0,0,51,NA,9493.33333333333,13.5,NA,NA
+2014-05-27,"B","Nucella_ostrina","Nucella_canaliculata",0,0,98,NA,91.4285714285713,13.5,NA,NA
+2014-05-27,"B","Nucella_ostrina","Nucella_ostrina",0,0,51,NA,91.4285714285713,13.5,NA,NA
+2014-05-27,"B","Pollicipes_polymerus","Nucella_canaliculata",0,0,98,NA,175.238095238095,13.5,NA,NA
+2014-05-27,"B","Pollicipes_polymerus","Nucella_ostrina",0,0,51,NA,175.238095238095,13.5,NA,NA
+2014-05-27,"B","Semibalanus_cariosus","Nucella_canaliculata",0,0,98,NA,0,13.5,NA,NA
+2014-05-27,"B","Semibalanus_cariosus","Nucella_ostrina",0,0,51,NA,0,13.5,NA,NA
+2014-05-27,"BB","Adula_californiensis","Nucella_canaliculata",0,0,3,NA,0,13.5,NA,NA
+2014-05-27,"BB","Adula_californiensis","Nucella_ostrina",0,0,125,NA,0,13.5,NA,NA
+2014-05-27,"BB","Balanus_glandula","Nucella_canaliculata",0,0,3,NA,26022.8571428571,13.5,NA,NA
+2014-05-27,"BB","Balanus_glandula","Nucella_ostrina",0.11214953271028,12,125,31.0475827224237,26022.8571428571,13.5,1.38808064278053e-07,0.00361218242698431
+2014-05-27,"BB","Chthamalus_dalli","Nucella_canaliculata",0,0,3,NA,736,13.5,NA,NA
+2014-05-27,"BB","Chthamalus_dalli","Nucella_ostrina",0.00934579439252336,1,125,26.7395638823116,736,13.5,4.74880228530306e-07,0.000349511848198305
+2014-05-27,"BB","Hiatella_arctica","Nucella_canaliculata",0,0,3,NA,0,13.5,NA,NA
+2014-05-27,"BB","Hiatella_arctica","Nucella_ostrina",0,0,125,NA,0,13.5,NA,NA
+2014-05-27,"BB","Limpets","Nucella_canaliculata",0,0,3,NA,910.476190476189,13.5,NA,NA
+2014-05-27,"BB","Limpets","Nucella_ostrina",0,0,125,NA,910.476190476189,13.5,NA,NA
+2014-05-27,"BB","Littorina_sitkana","Nucella_canaliculata",0,0,3,NA,5032.38095238095,13.5,NA,NA
+2014-05-27,"BB","Littorina_sitkana","Nucella_ostrina",0,0,125,NA,5032.38095238095,13.5,NA,NA
+2014-05-27,"BB","Modiolus_modiolus","Nucella_canaliculata",0,0,3,NA,0,13.5,NA,NA
+2014-05-27,"BB","Modiolus_modiolus","Nucella_ostrina",0,0,125,NA,0,13.5,NA,NA
+2014-05-27,"BB","Mytilus_californianus","Nucella_canaliculata",0,0,3,NA,0,13.5,NA,NA
+2014-05-27,"BB","Mytilus_californianus","Nucella_ostrina",0,0,125,NA,0,13.5,NA,NA
+2014-05-27,"BB","Mytilus_trossulus","Nucella_canaliculata",0,0,3,NA,6220.95238095238,13.5,NA,NA
+2014-05-27,"BB","Mytilus_trossulus","Nucella_ostrina",0.0467289719626168,5,125,48.6566646978924,6220.95238095238,13.5,1.54378570056342e-07,0.000960381732960027
+2014-05-27,"BB","Nucella_ostrina","Nucella_canaliculata",0,0,3,NA,41.9047619047619,13.5,NA,NA
+2014-05-27,"BB","Nucella_ostrina","Nucella_ostrina",0,0,125,NA,41.9047619047619,13.5,NA,NA
+2014-05-27,"BB","Pollicipes_polymerus","Nucella_canaliculata",0,0,3,NA,11.4285714285714,13.5,NA,NA
+2014-05-27,"BB","Pollicipes_polymerus","Nucella_ostrina",0,0,125,NA,11.4285714285714,13.5,NA,NA
+2014-05-27,"BB","Semibalanus_cariosus","Nucella_canaliculata",0,0,3,NA,3.8095238095238,13.5,NA,NA
+2014-05-27,"BB","Semibalanus_cariosus","Nucella_ostrina",0,0,125,NA,3.8095238095238,13.5,NA,NA
+2014-05-27,"BC","Adula_californiensis","Nucella_canaliculata",0,0,0,NA,0,13.5,NA,NA
+2014-05-27,"BC","Adula_californiensis","Nucella_ostrina",0,0,168,NA,0,13.5,NA,NA
+2014-05-27,"BC","Balanus_glandula","Nucella_canaliculata",0,0,0,NA,26197.3333333333,13.5,NA,NA
+2014-05-27,"BC","Balanus_glandula","Nucella_ostrina",0.147058823529412,20,168,24.4220089005562,26197.3333333333,13.5,2.29854291168182e-07,0.00602156948382993
+2014-05-27,"BC","Chthamalus_dalli","Nucella_canaliculata",0,0,0,NA,0,13.5,NA,NA
+2014-05-27,"BC","Chthamalus_dalli","Nucella_ostrina",0.0147058823529412,2,168,17.3677401091203,0,13.5,Inf,0.000846735514266399
+2014-05-27,"BC","Hiatella_arctica","Nucella_canaliculata",0,0,0,NA,0,13.5,NA,NA
+2014-05-27,"BC","Hiatella_arctica","Nucella_ostrina",0,0,168,NA,0,13.5,NA,NA
+2014-05-27,"BC","Limpets","Nucella_canaliculata",0,0,0,NA,857.142857142856,13.5,NA,NA
+2014-05-27,"BC","Limpets","Nucella_ostrina",0,0,168,NA,857.142857142856,13.5,NA,NA
+2014-05-27,"BC","Littorina_sitkana","Nucella_canaliculata",0,0,0,NA,1851.42857142857,13.5,NA,NA
+2014-05-27,"BC","Littorina_sitkana","Nucella_ostrina",0,0,168,NA,1851.42857142857,13.5,NA,NA
+2014-05-27,"BC","Modiolus_modiolus","Nucella_canaliculata",0,0,0,NA,0,13.5,NA,NA
+2014-05-27,"BC","Modiolus_modiolus","Nucella_ostrina",0,0,168,NA,0,13.5,NA,NA
+2014-05-27,"BC","Mytilus_californianus","Nucella_canaliculata",0,0,0,NA,0,13.5,NA,NA
+2014-05-27,"BC","Mytilus_californianus","Nucella_ostrina",0,0,168,NA,0,13.5,NA,NA
+2014-05-27,"BC","Mytilus_trossulus","Nucella_canaliculata",0,0,0,NA,3413.33333333333,13.5,NA,NA
+2014-05-27,"BC","Mytilus_trossulus","Nucella_ostrina",0.0735294117647059,10,168,48.7429357429606,3413.33333333333,13.5,4.41947525822801e-07,0.00150851422147516
+2014-05-27,"BC","Nucella_ostrina","Nucella_canaliculata",0,0,0,NA,99.047619047619,13.5,NA,NA
+2014-05-27,"BC","Nucella_ostrina","Nucella_ostrina",0,0,168,NA,99.047619047619,13.5,NA,NA
+2014-05-27,"BC","Pollicipes_polymerus","Nucella_canaliculata",0,0,0,NA,0,13.5,NA,NA
+2014-05-27,"BC","Pollicipes_polymerus","Nucella_ostrina",0,0,168,NA,0,13.5,NA,NA
+2014-05-27,"BC","Semibalanus_cariosus","Nucella_canaliculata",0,0,0,NA,0,13.5,NA,NA
+2014-05-27,"BC","Semibalanus_cariosus","Nucella_ostrina",0,0,168,NA,0,13.5,NA,NA
+2014-05-27,"BD","Adula_californiensis","Nucella_canaliculata",0,0,1,NA,0,13.5,NA,NA
+2014-05-27,"BD","Adula_californiensis","Nucella_ostrina",0,0,10,NA,0,13.5,NA,NA
+2014-05-27,"BD","Balanus_glandula","Nucella_canaliculata",0,0,1,NA,0,13.5,NA,NA
+2014-05-27,"BD","Balanus_glandula","Nucella_ostrina",0.111111111111111,1,10,26.178555137201,0,13.5,Inf,0.00424435613534746
+2014-05-27,"BD","Chthamalus_dalli","Nucella_canaliculata",0,0,1,NA,0,13.5,NA,NA
+2014-05-27,"BD","Chthamalus_dalli","Nucella_ostrina",0,0,10,NA,0,13.5,NA,NA
+2014-05-27,"BD","Hiatella_arctica","Nucella_canaliculata",0,0,1,NA,0,13.5,NA,NA
+2014-05-27,"BD","Hiatella_arctica","Nucella_ostrina",0,0,10,NA,0,13.5,NA,NA
+2014-05-27,"BD","Limpets","Nucella_canaliculata",0,0,1,NA,0,13.5,NA,NA
+2014-05-27,"BD","Limpets","Nucella_ostrina",0,0,10,NA,0,13.5,NA,NA
+2014-05-27,"BD","Littorina_sitkana","Nucella_canaliculata",0,0,1,NA,0,13.5,NA,NA
+2014-05-27,"BD","Littorina_sitkana","Nucella_ostrina",0,0,10,NA,0,13.5,NA,NA
+2014-05-27,"BD","Modiolus_modiolus","Nucella_canaliculata",0,0,1,NA,0,13.5,NA,NA
+2014-05-27,"BD","Modiolus_modiolus","Nucella_ostrina",0,0,10,NA,0,13.5,NA,NA
+2014-05-27,"BD","Mytilus_californianus","Nucella_canaliculata",0,0,1,NA,0,13.5,NA,NA
+2014-05-27,"BD","Mytilus_californianus","Nucella_ostrina",0,0,10,NA,0,13.5,NA,NA
+2014-05-27,"BD","Mytilus_trossulus","Nucella_canaliculata",0,0,1,NA,0,13.5,NA,NA
+2014-05-27,"BD","Mytilus_trossulus","Nucella_ostrina",0,0,10,NA,0,13.5,NA,NA
+2014-05-27,"BD","Nucella_ostrina","Nucella_canaliculata",0,0,1,NA,0,13.5,NA,NA
+2014-05-27,"BD","Nucella_ostrina","Nucella_ostrina",0,0,10,NA,0,13.5,NA,NA
+2014-05-27,"BD","Pollicipes_polymerus","Nucella_canaliculata",0,0,1,NA,0,13.5,NA,NA
+2014-05-27,"BD","Pollicipes_polymerus","Nucella_ostrina",0,0,10,NA,0,13.5,NA,NA
+2014-05-27,"BD","Semibalanus_cariosus","Nucella_canaliculata",0,0,1,NA,0,13.5,NA,NA
+2014-05-27,"BD","Semibalanus_cariosus","Nucella_ostrina",0,0,10,NA,0,13.5,NA,NA
+2014-05-27,"BE","Adula_californiensis","Nucella_canaliculata",0,0,0,NA,0,13.5,NA,NA
+2014-05-27,"BE","Adula_californiensis","Nucella_ostrina",0,0,58,NA,0,13.5,NA,NA
+2014-05-27,"BE","Balanus_glandula","Nucella_canaliculata",0,0,0,NA,1314.28571428571,13.5,NA,NA
+2014-05-27,"BE","Balanus_glandula","Nucella_ostrina",0.0784313725490196,4,58,29.4581874758509,1314.28571428571,13.5,2.0257880556873e-06,0.00266246430176044
+2014-05-27,"BE","Chthamalus_dalli","Nucella_canaliculata",0,0,0,NA,0,13.5,NA,NA
+2014-05-27,"BE","Chthamalus_dalli","Nucella_ostrina",0,0,58,NA,0,13.5,NA,NA
+2014-05-27,"BE","Hiatella_arctica","Nucella_canaliculata",0,0,0,NA,0,13.5,NA,NA
+2014-05-27,"BE","Hiatella_arctica","Nucella_ostrina",0,0,58,NA,0,13.5,NA,NA
+2014-05-27,"BE","Limpets","Nucella_canaliculata",0,0,0,NA,1142.85714285714,13.5,NA,NA
+2014-05-27,"BE","Limpets","Nucella_ostrina",0,0,58,NA,1142.85714285714,13.5,NA,NA
+2014-05-27,"BE","Littorina_sitkana","Nucella_canaliculata",0,0,0,NA,1634.28571428571,13.5,NA,NA
+2014-05-27,"BE","Littorina_sitkana","Nucella_ostrina",0,0,58,NA,1634.28571428571,13.5,NA,NA
+2014-05-27,"BE","Modiolus_modiolus","Nucella_canaliculata",0,0,0,NA,0,13.5,NA,NA
+2014-05-27,"BE","Modiolus_modiolus","Nucella_ostrina",0,0,58,NA,0,13.5,NA,NA
+2014-05-27,"BE","Mytilus_californianus","Nucella_canaliculata",0,0,0,NA,0,13.5,NA,NA
+2014-05-27,"BE","Mytilus_californianus","Nucella_ostrina",0,0,58,NA,0,13.5,NA,NA
+2014-05-27,"BE","Mytilus_trossulus","Nucella_canaliculata",0,0,0,NA,45.7142857142857,13.5,NA,NA
+2014-05-27,"BE","Mytilus_trossulus","Nucella_ostrina",0.0588235294117647,3,58,29.2483920727886,45.7142857142857,13.5,4.39943742097024e-05,0.00201117139244354
+2014-05-27,"BE","Nucella_ostrina","Nucella_canaliculata",0,0,0,NA,0,13.5,NA,NA
+2014-05-27,"BE","Nucella_ostrina","Nucella_ostrina",0,0,58,NA,0,13.5,NA,NA
+2014-05-27,"BE","Pollicipes_polymerus","Nucella_canaliculata",0,0,0,NA,0,13.5,NA,NA
+2014-05-27,"BE","Pollicipes_polymerus","Nucella_ostrina",0,0,58,NA,0,13.5,NA,NA
+2014-05-27,"BE","Semibalanus_cariosus","Nucella_canaliculata",0,0,0,NA,0,13.5,NA,NA
+2014-05-27,"BE","Semibalanus_cariosus","Nucella_ostrina",0,0,58,NA,0,13.5,NA,NA
+2014-05-27,"BF","Adula_californiensis","Nucella_canaliculata",0,0,13,NA,0,13.5,NA,NA
+2014-05-27,"BF","Adula_californiensis","Nucella_ostrina",0,0,234,NA,0,13.5,NA,NA
+2014-05-27,"BF","Balanus_glandula","Nucella_canaliculata",0.0909090909090909,1,13,8.13138660628463,2480,13.5,4.50807387109962e-06,0.0111800232003271
+2014-05-27,"BF","Balanus_glandula","Nucella_ostrina",0.0430622009569378,9,234,27.1667171755563,2480,13.5,6.39156751853184e-07,0.0015851087445959
+2014-05-27,"BF","Chthamalus_dalli","Nucella_canaliculata",0,0,13,NA,0,13.5,NA,NA
+2014-05-27,"BF","Chthamalus_dalli","Nucella_ostrina",0.00956937799043062,2,234,8.86267507141228,0,13.5,Inf,0.00107973923373293
+2014-05-27,"BF","Hiatella_arctica","Nucella_canaliculata",0,0,13,NA,0,13.5,NA,NA
+2014-05-27,"BF","Hiatella_arctica","Nucella_ostrina",0,0,234,NA,0,13.5,NA,NA
+2014-05-27,"BF","Limpets","Nucella_canaliculata",0,0,13,NA,811.428571428571,13.5,NA,NA
+2014-05-27,"BF","Limpets","Nucella_ostrina",0,0,234,NA,811.428571428571,13.5,NA,NA
+2014-05-27,"BF","Littorina_sitkana","Nucella_canaliculata",0,0,13,NA,3428.57142857143,13.5,NA,NA
+2014-05-27,"BF","Littorina_sitkana","Nucella_ostrina",0,0,234,NA,3428.57142857143,13.5,NA,NA
+2014-05-27,"BF","Modiolus_modiolus","Nucella_canaliculata",0,0,13,NA,0,13.5,NA,NA
+2014-05-27,"BF","Modiolus_modiolus","Nucella_ostrina",0,0,234,NA,0,13.5,NA,NA
+2014-05-27,"BF","Mytilus_californianus","Nucella_canaliculata",0,0,13,NA,22.8571428571429,13.5,NA,NA
+2014-05-27,"BF","Mytilus_californianus","Nucella_ostrina",0,0,234,NA,22.8571428571429,13.5,NA,NA
+2014-05-27,"BF","Mytilus_trossulus","Nucella_canaliculata",0.0909090909090909,1,13,26.2338392495884,3177.14285714286,13.5,1.09070855340116e-06,0.00346533688966311
+2014-05-27,"BF","Mytilus_trossulus","Nucella_ostrina",0.0669856459330144,14,234,41.3432190792618,3177.14285714286,13.5,5.09965407851165e-07,0.00162023295294428
+2014-05-27,"BF","Nucella_ostrina","Nucella_canaliculata",0,0,13,NA,34.2857142857143,13.5,NA,NA
+2014-05-27,"BF","Nucella_ostrina","Nucella_ostrina",0,0,234,NA,34.2857142857143,13.5,NA,NA
+2014-05-27,"BF","Pollicipes_polymerus","Nucella_canaliculata",0,0,13,NA,0,13.5,NA,NA
+2014-05-27,"BF","Pollicipes_polymerus","Nucella_ostrina",0,0,234,NA,0,13.5,NA,NA
+2014-05-27,"BF","Semibalanus_cariosus","Nucella_canaliculata",0,0,13,NA,0,13.5,NA,NA
+2014-05-27,"BF","Semibalanus_cariosus","Nucella_ostrina",0,0,234,NA,0,13.5,NA,NA
+2014-05-27,"C","Adula_californiensis","Nucella_canaliculata",0,0,62,NA,0,13.5,NA,NA
+2014-05-27,"C","Adula_californiensis","Nucella_ostrina",0,0,147,NA,0,13.5,NA,NA
+2014-05-27,"C","Balanus_glandula","Nucella_canaliculata",0.0175438596491228,1,62,26.178555137201,19264,13.5,3.47882835888114e-08,0.000670161495054863
+2014-05-27,"C","Balanus_glandula","Nucella_ostrina",0.0902255639097744,12,147,20.310939105566,19264,13.5,2.30596723074033e-07,0.00444221527329817
+2014-05-27,"C","Chthamalus_dalli","Nucella_canaliculata",0,0,62,NA,85.3333333333333,13.5,NA,NA
+2014-05-27,"C","Chthamalus_dalli","Nucella_ostrina",0,0,147,NA,85.3333333333333,13.5,NA,NA
+2014-05-27,"C","Hiatella_arctica","Nucella_canaliculata",0,0,62,NA,0,13.5,NA,NA
+2014-05-27,"C","Hiatella_arctica","Nucella_ostrina",0,0,147,NA,0,13.5,NA,NA
+2014-05-27,"C","Limpets","Nucella_canaliculata",0,0,62,NA,1965.71428571429,13.5,NA,NA
+2014-05-27,"C","Limpets","Nucella_ostrina",0,0,147,NA,1965.71428571429,13.5,NA,NA
+2014-05-27,"C","Littorina_sitkana","Nucella_canaliculata",0,0,62,NA,739.04761904762,13.5,NA,NA
+2014-05-27,"C","Littorina_sitkana","Nucella_ostrina",0,0,147,NA,739.04761904762,13.5,NA,NA
+2014-05-27,"C","Modiolus_modiolus","Nucella_canaliculata",0,0,62,NA,0,13.5,NA,NA
+2014-05-27,"C","Modiolus_modiolus","Nucella_ostrina",0,0,147,NA,0,13.5,NA,NA
+2014-05-27,"C","Mytilus_californianus","Nucella_canaliculata",0,0,62,NA,0,13.5,NA,NA
+2014-05-27,"C","Mytilus_californianus","Nucella_ostrina",0,0,147,NA,0,13.5,NA,NA
+2014-05-27,"C","Mytilus_trossulus","Nucella_canaliculata",0.0701754385964912,4,62,41.4190216101545,8554.66666666667,13.5,1.98053356910791e-07,0.00169428045058618
+2014-05-27,"C","Mytilus_trossulus","Nucella_ostrina",0.0150375939849624,2,147,42.7870498913109,8554.66666666667,13.5,4.10830728190439e-08,0.000351451993609314
+2014-05-27,"C","Nucella_ostrina","Nucella_canaliculata",0,0,62,NA,76.1904761904761,13.5,NA,NA
+2014-05-27,"C","Nucella_ostrina","Nucella_ostrina",0,0,147,NA,76.1904761904761,13.5,NA,NA
+2014-05-27,"C","Pollicipes_polymerus","Nucella_canaliculata",0,0,62,NA,281.904761904762,13.5,NA,NA
+2014-05-27,"C","Pollicipes_polymerus","Nucella_ostrina",0,0,147,NA,281.904761904762,13.5,NA,NA
+2014-05-27,"C","Semibalanus_cariosus","Nucella_canaliculata",0,0,62,NA,3.8095238095238,13.5,NA,NA
+2014-05-27,"C","Semibalanus_cariosus","Nucella_ostrina",0,0,147,NA,3.8095238095238,13.5,NA,NA
+2014-05-27,"D","Adula_californiensis","Nucella_canaliculata",0,0,7,NA,0,13.5,NA,NA
+2014-05-27,"D","Adula_californiensis","Nucella_ostrina",0,0,34,NA,0,13.5,NA,NA
+2014-05-27,"D","Balanus_glandula","Nucella_canaliculata",0,0,7,NA,26405.3333333333,13.5,NA,NA
+2014-05-27,"D","Balanus_glandula","Nucella_ostrina",0,0,34,NA,26405.3333333333,13.5,NA,NA
+2014-05-27,"D","Chthamalus_dalli","Nucella_canaliculata",0,0,7,NA,89.1428571428571,13.5,NA,NA
+2014-05-27,"D","Chthamalus_dalli","Nucella_ostrina",0.0769230769230769,2,34,17.4723455478663,89.1428571428571,13.5,4.93877098404387e-05,0.00440256156291911
+2014-05-27,"D","Hiatella_arctica","Nucella_canaliculata",0,0,7,NA,0,13.5,NA,NA
+2014-05-27,"D","Hiatella_arctica","Nucella_ostrina",0,0,34,NA,0,13.5,NA,NA
+2014-05-27,"D","Limpets","Nucella_canaliculata",0,0,7,NA,2030.47619047619,13.5,NA,NA
+2014-05-27,"D","Limpets","Nucella_ostrina",0,0,34,NA,2030.47619047619,13.5,NA,NA
+2014-05-27,"D","Littorina_sitkana","Nucella_canaliculata",0,0,7,NA,2659.04761904762,13.5,NA,NA
+2014-05-27,"D","Littorina_sitkana","Nucella_ostrina",0,0,34,NA,2659.04761904762,13.5,NA,NA
+2014-05-27,"D","Modiolus_modiolus","Nucella_canaliculata",0,0,7,NA,0,13.5,NA,NA
+2014-05-27,"D","Modiolus_modiolus","Nucella_ostrina",0,0,34,NA,0,13.5,NA,NA
+2014-05-27,"D","Mytilus_californianus","Nucella_canaliculata",0,0,7,NA,7.61904761904763,13.5,NA,NA
+2014-05-27,"D","Mytilus_californianus","Nucella_ostrina",0,0,34,NA,7.61904761904763,13.5,NA,NA
+2014-05-27,"D","Mytilus_trossulus","Nucella_canaliculata",0.4,2,7,50.945480970116,5898.66666666667,13.5,1.33106869557911e-06,0.00785153054565596
+2014-05-27,"D","Mytilus_trossulus","Nucella_ostrina",0.230769230769231,6,34,40.5462610225917,5898.66666666667,13.5,9.64879847074681e-07,0.00569150459127785
+2014-05-27,"D","Nucella_ostrina","Nucella_canaliculata",0,0,7,NA,11.4285714285714,13.5,NA,NA
+2014-05-27,"D","Nucella_ostrina","Nucella_ostrina",0,0,34,NA,11.4285714285714,13.5,NA,NA
+2014-05-27,"D","Pollicipes_polymerus","Nucella_canaliculata",0,0,7,NA,30.4761904761905,13.5,NA,NA
+2014-05-27,"D","Pollicipes_polymerus","Nucella_ostrina",0,0,34,NA,30.4761904761905,13.5,NA,NA
+2014-05-27,"D","Semibalanus_cariosus","Nucella_canaliculata",0,0,7,NA,0,13.5,NA,NA
+2014-05-27,"D","Semibalanus_cariosus","Nucella_ostrina",0,0,34,NA,0,13.5,NA,NA
+2014-05-27,"E","Adula_californiensis","Nucella_canaliculata",0,0,32,NA,0,13.5,NA,NA
+2014-05-27,"E","Adula_californiensis","Nucella_ostrina",0,0,156,NA,0,13.5,NA,NA
+2014-05-27,"E","Balanus_glandula","Nucella_canaliculata",0.0333333333333333,1,32,17.5682598001118,12575.2380952381,13.5,1.50880732391396e-07,0.0018973611338057
+2014-05-27,"E","Balanus_glandula","Nucella_ostrina",0.0335570469798658,5,156,16.1538544389613,12575.2380952381,13.5,1.65192891167542e-07,0.0020773399380726
+2014-05-27,"E","Chthamalus_dalli","Nucella_canaliculata",0,0,32,NA,0,13.5,NA,NA
+2014-05-27,"E","Chthamalus_dalli","Nucella_ostrina",0,0,156,NA,0,13.5,NA,NA
+2014-05-27,"E","Hiatella_arctica","Nucella_canaliculata",0,0,32,NA,0,13.5,NA,NA
+2014-05-27,"E","Hiatella_arctica","Nucella_ostrina",0,0,156,NA,0,13.5,NA,NA
+2014-05-27,"E","Limpets","Nucella_canaliculata",0,0,32,NA,377.142857142857,13.5,NA,NA
+2014-05-27,"E","Limpets","Nucella_ostrina",0,0,156,NA,377.142857142857,13.5,NA,NA
+2014-05-27,"E","Littorina_sitkana","Nucella_canaliculata",0,0,32,NA,1371.42857142857,13.5,NA,NA
+2014-05-27,"E","Littorina_sitkana","Nucella_ostrina",0,0,156,NA,1371.42857142857,13.5,NA,NA
+2014-05-27,"E","Modiolus_modiolus","Nucella_canaliculata",0,0,32,NA,0,13.5,NA,NA
+2014-05-27,"E","Modiolus_modiolus","Nucella_ostrina",0,0,156,NA,0,13.5,NA,NA
+2014-05-27,"E","Mytilus_californianus","Nucella_canaliculata",0,0,32,NA,0,13.5,NA,NA
+2014-05-27,"E","Mytilus_californianus","Nucella_ostrina",0,0,156,NA,0,13.5,NA,NA
+2014-05-27,"E","Mytilus_trossulus","Nucella_canaliculata",0.0333333333333333,1,32,79.0753124107386,9196.19047619047,13.5,4.58384444125499e-08,0.000421539065950077
+2014-05-27,"E","Mytilus_trossulus","Nucella_ostrina",0.0134228187919463,2,156,46.9732084634176,9196.19047619047,13.5,3.10731687753017e-08,0.000285754778756488
+2014-05-27,"E","Nucella_ostrina","Nucella_canaliculata",0,0,32,NA,140.952380952381,13.5,NA,NA
+2014-05-27,"E","Nucella_ostrina","Nucella_ostrina",0,0,156,NA,140.952380952381,13.5,NA,NA
+2014-05-27,"E","Pollicipes_polymerus","Nucella_canaliculata",0,0,32,NA,57.1428571428571,13.5,NA,NA
+2014-05-27,"E","Pollicipes_polymerus","Nucella_ostrina",0,0,156,NA,57.1428571428571,13.5,NA,NA
+2014-05-27,"E","Semibalanus_cariosus","Nucella_canaliculata",0,0,32,NA,0,13.5,NA,NA
+2014-05-27,"E","Semibalanus_cariosus","Nucella_ostrina",0,0,156,NA,0,13.5,NA,NA
+2014-05-27,"F","Adula_californiensis","Nucella_canaliculata",0,0,0,NA,0,13.5,NA,NA
+2014-05-27,"F","Adula_californiensis","Nucella_ostrina",0,0,80,NA,0,13.5,NA,NA
+2014-05-27,"F","Balanus_glandula","Nucella_canaliculata",0,0,0,NA,33834.6666666667,13.5,NA,NA
+2014-05-27,"F","Balanus_glandula","Nucella_ostrina",0.15625,10,80,21.4543995673263,33834.6666666667,13.5,2.15249305606876e-07,0.00728288850544013
+2014-05-27,"F","Chthamalus_dalli","Nucella_canaliculata",0,0,0,NA,85.3333333333333,13.5,NA,NA
+2014-05-27,"F","Chthamalus_dalli","Nucella_ostrina",0.015625,1,80,7.35589573379767,85.3333333333333,13.5,2.48923415143987e-05,0.00212414647589535
+2014-05-27,"F","Hiatella_arctica","Nucella_canaliculata",0,0,0,NA,0,13.5,NA,NA
+2014-05-27,"F","Hiatella_arctica","Nucella_ostrina",0,0,80,NA,0,13.5,NA,NA
+2014-05-27,"F","Limpets","Nucella_canaliculata",0,0,0,NA,632.380952380952,13.5,NA,NA
+2014-05-27,"F","Limpets","Nucella_ostrina",0,0,80,NA,632.380952380952,13.5,NA,NA
+2014-05-27,"F","Littorina_sitkana","Nucella_canaliculata",0,0,0,NA,4064.76190476191,13.5,NA,NA
+2014-05-27,"F","Littorina_sitkana","Nucella_ostrina",0,0,80,NA,4064.76190476191,13.5,NA,NA
+2014-05-27,"F","Modiolus_modiolus","Nucella_canaliculata",0,0,0,NA,0,13.5,NA,NA
+2014-05-27,"F","Modiolus_modiolus","Nucella_ostrina",0,0,80,NA,0,13.5,NA,NA
+2014-05-27,"F","Mytilus_californianus","Nucella_canaliculata",0,0,0,NA,0,13.5,NA,NA
+2014-05-27,"F","Mytilus_californianus","Nucella_ostrina",0,0,80,NA,0,13.5,NA,NA
+2014-05-27,"F","Mytilus_trossulus","Nucella_canaliculata",0,0,0,NA,4076.19047619048,13.5,NA,NA
+2014-05-27,"F","Mytilus_trossulus","Nucella_ostrina",0.078125,5,80,43.4913359896232,4076.19047619048,13.5,4.40689610250534e-07,0.00179633479225932
+2014-05-27,"F","Nucella_ostrina","Nucella_canaliculata",0,0,0,NA,30.4761904761905,13.5,NA,NA
+2014-05-27,"F","Nucella_ostrina","Nucella_ostrina",0,0,80,NA,30.4761904761905,13.5,NA,NA
+2014-05-27,"F","Pollicipes_polymerus","Nucella_canaliculata",0,0,0,NA,0,13.5,NA,NA
+2014-05-27,"F","Pollicipes_polymerus","Nucella_ostrina",0,0,80,NA,0,13.5,NA,NA
+2014-05-27,"F","Semibalanus_cariosus","Nucella_canaliculata",0,0,0,NA,0,13.5,NA,NA
+2014-05-27,"F","Semibalanus_cariosus","Nucella_ostrina",0,0,80,NA,0,13.5,NA,NA
+2014-05-27,"G","Adula_californiensis","Nucella_canaliculata",0,0,34,NA,0,13.5,NA,NA
+2014-05-27,"G","Adula_californiensis","Nucella_ostrina",0,0,180,NA,0,13.5,NA,NA
+2014-05-27,"G","Balanus_glandula","Nucella_canaliculata",0,0,34,NA,3756.19047619048,13.5,NA,NA
+2014-05-27,"G","Balanus_glandula","Nucella_ostrina",0.0318471337579618,5,180,20.7601456123568,3756.19047619048,13.5,4.0840622154471e-07,0.00153405155978318
+2014-05-27,"G","Chthamalus_dalli","Nucella_canaliculata",0,0,34,NA,1192.38095238095,13.5,NA,NA
+2014-05-27,"G","Chthamalus_dalli","Nucella_ostrina",0,0,180,NA,1192.38095238095,13.5,NA,NA
+2014-05-27,"G","Hiatella_arctica","Nucella_canaliculata",0,0,34,NA,0,13.5,NA,NA
+2014-05-27,"G","Hiatella_arctica","Nucella_ostrina",0,0,180,NA,0,13.5,NA,NA
+2014-05-27,"G","Limpets","Nucella_canaliculata",0,0,34,NA,1009.52380952381,13.5,NA,NA
+2014-05-27,"G","Limpets","Nucella_ostrina",0,0,180,NA,1009.52380952381,13.5,NA,NA
+2014-05-27,"G","Littorina_sitkana","Nucella_canaliculata",0,0,34,NA,963.809523809524,13.5,NA,NA
+2014-05-27,"G","Littorina_sitkana","Nucella_ostrina",0,0,180,NA,963.809523809524,13.5,NA,NA
+2014-05-27,"G","Modiolus_modiolus","Nucella_canaliculata",0,0,34,NA,0,13.5,NA,NA
+2014-05-27,"G","Modiolus_modiolus","Nucella_ostrina",0,0,180,NA,0,13.5,NA,NA
+2014-05-27,"G","Mytilus_californianus","Nucella_canaliculata",0,0,34,NA,220.952380952381,13.5,NA,NA
+2014-05-27,"G","Mytilus_californianus","Nucella_ostrina",0,0,180,NA,220.952380952381,13.5,NA,NA
+2014-05-27,"G","Mytilus_trossulus","Nucella_canaliculata",0.0967741935483871,3,34,51.4773846414633,13993.1428571429,13.5,1.34346952349292e-07,0.00187993609664541
+2014-05-27,"G","Mytilus_trossulus","Nucella_ostrina",0.114649681528662,18,180,54.4247513667084,13993.1428571429,13.5,1.5054319576529e-07,0.00210657244451453
+2014-05-27,"G","Nucella_ostrina","Nucella_canaliculata",0,0,34,NA,354.285714285714,13.5,NA,NA
+2014-05-27,"G","Nucella_ostrina","Nucella_ostrina",0,0,180,NA,354.285714285714,13.5,NA,NA
+2014-05-27,"G","Pollicipes_polymerus","Nucella_canaliculata",0,0,34,NA,152.380952380952,13.5,NA,NA
+2014-05-27,"G","Pollicipes_polymerus","Nucella_ostrina",0,0,180,NA,152.380952380952,13.5,NA,NA
+2014-05-27,"G","Semibalanus_cariosus","Nucella_canaliculata",0,0,34,NA,0,13.5,NA,NA
+2014-05-27,"G","Semibalanus_cariosus","Nucella_ostrina",0,0,180,NA,0,13.5,NA,NA
+2014-06-24,"A","Adula_californiensis","Nucella_canaliculata",0,0,19,NA,0,12.17,NA,NA
+2014-06-24,"A","Adula_californiensis","Nucella_ostrina",0,0,108,NA,0,12.17,NA,NA
+2014-06-24,"A","Balanus_glandula","Nucella_canaliculata",0.0666666666666667,1,19,33.0887074129003,2000,12.17,1.0073930334413e-06,0.0020147860668826
+2014-06-24,"A","Balanus_glandula","Nucella_ostrina",0.0520833333333333,5,108,34.3644324552748,2000,12.17,7.57808722741452e-07,0.0015156174454829
+2014-06-24,"A","Chthamalus_dalli","Nucella_canaliculata",0,0,19,NA,11.4285714285714,12.17,NA,NA
+2014-06-24,"A","Chthamalus_dalli","Nucella_ostrina",0,0,108,NA,11.4285714285714,12.17,NA,NA
+2014-06-24,"A","Hiatella_arctica","Nucella_canaliculata",0,0,19,NA,0,12.17,NA,NA
+2014-06-24,"A","Hiatella_arctica","Nucella_ostrina",0,0,108,NA,0,12.17,NA,NA
+2014-06-24,"A","Limpets","Nucella_canaliculata",0,0,19,NA,194.285714285714,12.17,NA,NA
+2014-06-24,"A","Limpets","Nucella_ostrina",0,0,108,NA,194.285714285714,12.17,NA,NA
+2014-06-24,"A","Littorina_sitkana","Nucella_canaliculata",0,0,19,NA,971.428571428571,12.17,NA,NA
+2014-06-24,"A","Littorina_sitkana","Nucella_ostrina",0,0,108,NA,971.428571428571,12.17,NA,NA
+2014-06-24,"A","Modiolus_modiolus","Nucella_canaliculata",0,0,19,NA,0,12.17,NA,NA
+2014-06-24,"A","Modiolus_modiolus","Nucella_ostrina",0,0,108,NA,0,12.17,NA,NA
+2014-06-24,"A","Mytilus_californianus","Nucella_canaliculata",0,0,19,NA,0,12.17,NA,NA
+2014-06-24,"A","Mytilus_californianus","Nucella_ostrina",0,0,108,NA,0,12.17,NA,NA
+2014-06-24,"A","Mytilus_trossulus","Nucella_canaliculata",0.2,3,19,89.7015078305139,14464,12.17,1.54149400191185e-07,0.0022296169243653
+2014-06-24,"A","Mytilus_trossulus","Nucella_ostrina",0.0729166666666667,7,108,54.1811044171873,14464,12.17,9.30444644472517e-08,0.00134579513376505
+2014-06-24,"A","Nucella_ostrina","Nucella_canaliculata",0,0,19,NA,57.1428571428571,12.17,NA,NA
+2014-06-24,"A","Nucella_ostrina","Nucella_ostrina",0,0,108,NA,57.1428571428571,12.17,NA,NA
+2014-06-24,"A","Pollicipes_polymerus","Nucella_canaliculata",0,0,19,NA,228.571428571429,12.17,NA,NA
+2014-06-24,"A","Pollicipes_polymerus","Nucella_ostrina",0,0,108,NA,228.571428571429,12.17,NA,NA
+2014-06-24,"A","Semibalanus_cariosus","Nucella_canaliculata",0,0,19,NA,0,12.17,NA,NA
+2014-06-24,"A","Semibalanus_cariosus","Nucella_ostrina",0,0,108,NA,0,12.17,NA,NA
+2014-06-24,"AB","Adula_californiensis","Nucella_canaliculata",0,0,60,NA,0,12.17,NA,NA
+2014-06-24,"AB","Adula_californiensis","Nucella_ostrina",0,0,166,NA,0,12.17,NA,NA
+2014-06-24,"AB","Balanus_glandula","Nucella_canaliculata",0,0,60,NA,5192,12.17,NA,NA
+2014-06-24,"AB","Balanus_glandula","Nucella_ostrina",0.0863309352517986,12,166,24.3884713444673,5192,12.17,6.81784592009512e-07,0.00353982560171339
+2014-06-24,"AB","Chthamalus_dalli","Nucella_canaliculata",0,0,60,NA,32,12.17,NA,NA
+2014-06-24,"AB","Chthamalus_dalli","Nucella_ostrina",0,0,166,NA,32,12.17,NA,NA
+2014-06-24,"AB","Hiatella_arctica","Nucella_canaliculata",0,0,60,NA,0,12.17,NA,NA
+2014-06-24,"AB","Hiatella_arctica","Nucella_ostrina",0,0,166,NA,0,12.17,NA,NA
+2014-06-24,"AB","Limpets","Nucella_canaliculata",0,0,60,NA,1560,12.17,NA,NA
+2014-06-24,"AB","Limpets","Nucella_ostrina",0,0,166,NA,1560,12.17,NA,NA
+2014-06-24,"AB","Littorina_sitkana","Nucella_canaliculata",0,0,60,NA,874.285714285714,12.17,NA,NA
+2014-06-24,"AB","Littorina_sitkana","Nucella_ostrina",0,0,166,NA,874.285714285714,12.17,NA,NA
+2014-06-24,"AB","Modiolus_modiolus","Nucella_canaliculata",0,0,60,NA,0,12.17,NA,NA
+2014-06-24,"AB","Modiolus_modiolus","Nucella_ostrina",0,0,166,NA,0,12.17,NA,NA
+2014-06-24,"AB","Mytilus_californianus","Nucella_canaliculata",0,0,60,NA,0,12.17,NA,NA
+2014-06-24,"AB","Mytilus_californianus","Nucella_ostrina",0,0,166,NA,0,12.17,NA,NA
+2014-06-24,"AB","Mytilus_trossulus","Nucella_canaliculata",0.224489795918367,11,60,72.7688170332981,2300.57142857143,12.17,1.34095921290229e-06,0.00308497245208265
+2014-06-24,"AB","Mytilus_trossulus","Nucella_ostrina",0.107913669064748,15,166,59.7850934104304,2300.57142857143,12.17,7.84599134640496e-07,0.00180502635203579
+2014-06-24,"AB","Nucella_ostrina","Nucella_canaliculata",0,0,60,NA,291.428571428572,12.17,NA,NA
+2014-06-24,"AB","Nucella_ostrina","Nucella_ostrina",0,0,166,NA,291.428571428572,12.17,NA,NA
+2014-06-24,"AB","Pollicipes_polymerus","Nucella_canaliculata",0,0,60,NA,600,12.17,NA,NA
+2014-06-24,"AB","Pollicipes_polymerus","Nucella_ostrina",0,0,166,NA,600,12.17,NA,NA
+2014-06-24,"AB","Semibalanus_cariosus","Nucella_canaliculata",0,0,60,NA,5.7142857142857,12.17,NA,NA
+2014-06-24,"AB","Semibalanus_cariosus","Nucella_ostrina",0,0,166,NA,5.7142857142857,12.17,NA,NA
+2014-06-24,"AC","Adula_californiensis","Nucella_canaliculata",0,0,6,NA,0,12.17,NA,NA
+2014-06-24,"AC","Adula_californiensis","Nucella_ostrina",0,0,122,NA,0,12.17,NA,NA
+2014-06-24,"AC","Balanus_glandula","Nucella_canaliculata",0,0,6,NA,6604.57142857143,12.17,NA,NA
+2014-06-24,"AC","Balanus_glandula","Nucella_ostrina",0.123711340206186,12,122,25.6316875826305,6604.57142857143,12.17,7.30781710161835e-07,0.00482650000345742
+2014-06-24,"AC","Chthamalus_dalli","Nucella_canaliculata",0,0,6,NA,96.5714285714287,12.17,NA,NA
+2014-06-24,"AC","Chthamalus_dalli","Nucella_ostrina",0.0618556701030928,6,122,15.9565991666054,96.5714285714287,12.17,4.01412160122088e-05,0.00387649457489331
+2014-06-24,"AC","Hiatella_arctica","Nucella_canaliculata",0,0,6,NA,0,12.17,NA,NA
+2014-06-24,"AC","Hiatella_arctica","Nucella_ostrina",0,0,122,NA,0,12.17,NA,NA
+2014-06-24,"AC","Limpets","Nucella_canaliculata",0,0,6,NA,1257.14285714286,12.17,NA,NA
+2014-06-24,"AC","Limpets","Nucella_ostrina",0,0,122,NA,1257.14285714286,12.17,NA,NA
+2014-06-24,"AC","Littorina_sitkana","Nucella_canaliculata",0,0,6,NA,1731.42857142857,12.17,NA,NA
+2014-06-24,"AC","Littorina_sitkana","Nucella_ostrina",0,0,122,NA,1731.42857142857,12.17,NA,NA
+2014-06-24,"AC","Modiolus_modiolus","Nucella_canaliculata",0,0,6,NA,0,12.17,NA,NA
+2014-06-24,"AC","Modiolus_modiolus","Nucella_ostrina",0,0,122,NA,0,12.17,NA,NA
+2014-06-24,"AC","Mytilus_californianus","Nucella_canaliculata",0,0,6,NA,0,12.17,NA,NA
+2014-06-24,"AC","Mytilus_californianus","Nucella_ostrina",0,0,122,NA,0,12.17,NA,NA
+2014-06-24,"AC","Mytilus_trossulus","Nucella_canaliculata",0.2,1,6,40.0111623274036,982.857142857142,12.17,5.08579007097864e-06,0.00499860509833328
+2014-06-24,"AC","Mytilus_trossulus","Nucella_ostrina",0.0721649484536082,7,122,39.1442018788192,982.857142857142,12.17,1.875721968794e-06,0.00184356673504324
+2014-06-24,"AC","Nucella_ostrina","Nucella_canaliculata",0,0,6,NA,31.4285714285715,12.17,NA,NA
+2014-06-24,"AC","Nucella_ostrina","Nucella_ostrina",0,0,122,NA,31.4285714285715,12.17,NA,NA
+2014-06-24,"AC","Pollicipes_polymerus","Nucella_canaliculata",0,0,6,NA,8.57142857142857,12.17,NA,NA
+2014-06-24,"AC","Pollicipes_polymerus","Nucella_ostrina",0,0,122,NA,8.57142857142857,12.17,NA,NA
+2014-06-24,"AC","Semibalanus_cariosus","Nucella_canaliculata",0,0,6,NA,0,12.17,NA,NA
+2014-06-24,"AC","Semibalanus_cariosus","Nucella_ostrina",0,0,122,NA,0,12.17,NA,NA
+2014-06-24,"AD","Adula_californiensis","Nucella_canaliculata",0,0,75,NA,0,12.17,NA,NA
+2014-06-24,"AD","Adula_californiensis","Nucella_ostrina",0,0,65,NA,0,12.17,NA,NA
+2014-06-24,"AD","Balanus_glandula","Nucella_canaliculata",0,0,75,NA,10266.6666666667,12.17,NA,NA
+2014-06-24,"AD","Balanus_glandula","Nucella_ostrina",0.087719298245614,5,65,35.7530179842286,10266.6666666667,12.17,2.38975280218998e-07,0.00245347954358172
+2014-06-24,"AD","Chthamalus_dalli","Nucella_canaliculata",0,0,75,NA,99.0476190476191,12.17,NA,NA
+2014-06-24,"AD","Chthamalus_dalli","Nucella_ostrina",0,0,65,NA,99.0476190476191,12.17,NA,NA
+2014-06-24,"AD","Hiatella_arctica","Nucella_canaliculata",0,0,75,NA,0,12.17,NA,NA
+2014-06-24,"AD","Hiatella_arctica","Nucella_ostrina",0,0,65,NA,0,12.17,NA,NA
+2014-06-24,"AD","Limpets","Nucella_canaliculata",0,0,75,NA,1801.90476190476,12.17,NA,NA
+2014-06-24,"AD","Limpets","Nucella_ostrina",0,0,65,NA,1801.90476190476,12.17,NA,NA
+2014-06-24,"AD","Littorina_sitkana","Nucella_canaliculata",0,0,75,NA,2476.19047619048,12.17,NA,NA
+2014-06-24,"AD","Littorina_sitkana","Nucella_ostrina",0,0,65,NA,2476.19047619048,12.17,NA,NA
+2014-06-24,"AD","Modiolus_modiolus","Nucella_canaliculata",0,0,75,NA,0,12.17,NA,NA
+2014-06-24,"AD","Modiolus_modiolus","Nucella_ostrina",0,0,65,NA,0,12.17,NA,NA
+2014-06-24,"AD","Mytilus_californianus","Nucella_canaliculata",0,0,75,NA,0,12.17,NA,NA
+2014-06-24,"AD","Mytilus_californianus","Nucella_ostrina",0,0,65,NA,0,12.17,NA,NA
+2014-06-24,"AD","Mytilus_trossulus","Nucella_canaliculata",0.0869565217391304,6,75,75.5542401805511,6278.09523809524,12.17,1.8332235076576e-07,0.00115091517737895
+2014-06-24,"AD","Mytilus_trossulus","Nucella_ostrina",0.0526315789473684,3,65,62.5061970714495,6278.09523809524,12.17,1.34120579908219e-07,0.000842021774052361
+2014-06-24,"AD","Nucella_ostrina","Nucella_canaliculata",0,0,75,NA,266.666666666667,12.17,NA,NA
+2014-06-24,"AD","Nucella_ostrina","Nucella_ostrina",0,0,65,NA,266.666666666667,12.17,NA,NA
+2014-06-24,"AD","Pollicipes_polymerus","Nucella_canaliculata",0,0,75,NA,3.8095238095238,12.17,NA,NA
+2014-06-24,"AD","Pollicipes_polymerus","Nucella_ostrina",0,0,65,NA,3.8095238095238,12.17,NA,NA
+2014-06-24,"AD","Semibalanus_cariosus","Nucella_canaliculata",0,0,75,NA,3.8095238095238,12.17,NA,NA
+2014-06-24,"AD","Semibalanus_cariosus","Nucella_ostrina",0,0,65,NA,3.8095238095238,12.17,NA,NA
+2014-06-24,"AE","Adula_californiensis","Nucella_canaliculata",0,0,2,NA,0,12.17,NA,NA
+2014-06-24,"AE","Adula_californiensis","Nucella_ostrina",0,0,140,NA,0,12.17,NA,NA
+2014-06-24,"AE","Balanus_glandula","Nucella_canaliculata",0,0,2,NA,20553.1428571429,12.17,NA,NA
+2014-06-24,"AE","Balanus_glandula","Nucella_ostrina",0.0542635658914729,7,140,28.7388082876147,20553.1428571429,12.17,9.18673805972616e-08,0.00188816339732703
+2014-06-24,"AE","Chthamalus_dalli","Nucella_canaliculata",0,0,2,NA,529.52380952381,12.17,NA,NA
+2014-06-24,"AE","Chthamalus_dalli","Nucella_ostrina",0,0,140,NA,529.52380952381,12.17,NA,NA
+2014-06-24,"AE","Hiatella_arctica","Nucella_canaliculata",0,0,2,NA,0,12.17,NA,NA
+2014-06-24,"AE","Hiatella_arctica","Nucella_ostrina",0,0,140,NA,0,12.17,NA,NA
+2014-06-24,"AE","Limpets","Nucella_canaliculata",0,0,2,NA,2708.57142857143,12.17,NA,NA
+2014-06-24,"AE","Limpets","Nucella_ostrina",0,0,140,NA,2708.57142857143,12.17,NA,NA
+2014-06-24,"AE","Littorina_sitkana","Nucella_canaliculata",0,0,2,NA,4830.47619047619,12.17,NA,NA
+2014-06-24,"AE","Littorina_sitkana","Nucella_ostrina",0,0,140,NA,4830.47619047619,12.17,NA,NA
+2014-06-24,"AE","Modiolus_modiolus","Nucella_canaliculata",0,0,2,NA,0,12.17,NA,NA
+2014-06-24,"AE","Modiolus_modiolus","Nucella_ostrina",0,0,140,NA,0,12.17,NA,NA
+2014-06-24,"AE","Mytilus_californianus","Nucella_canaliculata",0,0,2,NA,0,12.17,NA,NA
+2014-06-24,"AE","Mytilus_californianus","Nucella_ostrina",0,0,140,NA,0,12.17,NA,NA
+2014-06-24,"AE","Mytilus_trossulus","Nucella_canaliculata",0,0,2,NA,2190.47619047619,12.17,NA,NA
+2014-06-24,"AE","Mytilus_trossulus","Nucella_ostrina",0.0310077519379845,4,140,39.5388863540192,2190.47619047619,12.17,3.58020018938011e-07,0.000784234327197546
+2014-06-24,"AE","Nucella_ostrina","Nucella_canaliculata",0,0,2,NA,198.095238095238,12.17,NA,NA
+2014-06-24,"AE","Nucella_ostrina","Nucella_ostrina",0,0,140,NA,198.095238095238,12.17,NA,NA
+2014-06-24,"AE","Pollicipes_polymerus","Nucella_canaliculata",0,0,2,NA,15.2380952380952,12.17,NA,NA
+2014-06-24,"AE","Pollicipes_polymerus","Nucella_ostrina",0,0,140,NA,15.2380952380952,12.17,NA,NA
+2014-06-24,"AE","Semibalanus_cariosus","Nucella_canaliculata",0,0,2,NA,15.2380952380952,12.17,NA,NA
+2014-06-24,"AE","Semibalanus_cariosus","Nucella_ostrina",0,0,140,NA,15.2380952380952,12.17,NA,NA
+2014-06-24,"AF","Adula_californiensis","Nucella_canaliculata",0,0,4,NA,0,12.17,NA,NA
+2014-06-24,"AF","Adula_californiensis","Nucella_ostrina",0,0,196,NA,0,12.17,NA,NA
+2014-06-24,"AF","Balanus_glandula","Nucella_canaliculata",0.333333333333333,1,4,11.6956152155062,28166.8571428572,12.17,1.01185267127015e-06,0.0285007096412848
+2014-06-24,"AF","Balanus_glandula","Nucella_ostrina",0.198675496688742,30,196,20.8560586509121,28166.8571428572,12.17,3.38200057289461e-07,0.00952603269937835
+2014-06-24,"AF","Chthamalus_dalli","Nucella_canaliculata",0,0,4,NA,128,12.17,NA,NA
+2014-06-24,"AF","Chthamalus_dalli","Nucella_ostrina",0.00662251655629139,1,196,12.5629788331839,128,12.17,4.11832347113126e-06,0.000527145404304801
+2014-06-24,"AF","Hiatella_arctica","Nucella_canaliculata",0,0,4,NA,0,12.17,NA,NA
+2014-06-24,"AF","Hiatella_arctica","Nucella_ostrina",0,0,196,NA,0,12.17,NA,NA
+2014-06-24,"AF","Limpets","Nucella_canaliculata",0,0,4,NA,1520,12.17,NA,NA
+2014-06-24,"AF","Limpets","Nucella_ostrina",0,0,196,NA,1520,12.17,NA,NA
+2014-06-24,"AF","Littorina_sitkana","Nucella_canaliculata",0,0,4,NA,5325.71428571429,12.17,NA,NA
+2014-06-24,"AF","Littorina_sitkana","Nucella_ostrina",0,0,196,NA,5325.71428571429,12.17,NA,NA
+2014-06-24,"AF","Modiolus_modiolus","Nucella_canaliculata",0,0,4,NA,0,12.17,NA,NA
+2014-06-24,"AF","Modiolus_modiolus","Nucella_ostrina",0,0,196,NA,0,12.17,NA,NA
+2014-06-24,"AF","Mytilus_californianus","Nucella_canaliculata",0,0,4,NA,0,12.17,NA,NA
+2014-06-24,"AF","Mytilus_californianus","Nucella_ostrina",0,0,196,NA,0,12.17,NA,NA
+2014-06-24,"AF","Mytilus_trossulus","Nucella_canaliculata",0,0,4,NA,1405.71428571429,12.17,NA,NA
+2014-06-24,"AF","Mytilus_trossulus","Nucella_ostrina",0.0927152317880795,14,196,32.230988808648,1405.71428571429,12.17,2.04635228426886e-06,0.0028765866396008
+2014-06-24,"AF","Nucella_ostrina","Nucella_canaliculata",0,0,4,NA,163.809523809524,12.17,NA,NA
+2014-06-24,"AF","Nucella_ostrina","Nucella_ostrina",0,0,196,NA,163.809523809524,12.17,NA,NA
+2014-06-24,"AF","Pollicipes_polymerus","Nucella_canaliculata",0,0,4,NA,0,12.17,NA,NA
+2014-06-24,"AF","Pollicipes_polymerus","Nucella_ostrina",0,0,196,NA,0,12.17,NA,NA
+2014-06-24,"AF","Semibalanus_cariosus","Nucella_canaliculata",0,0,4,NA,0,12.17,NA,NA
+2014-06-24,"AF","Semibalanus_cariosus","Nucella_ostrina",0,0,196,NA,0,12.17,NA,NA
+2014-06-24,"AG","Adula_californiensis","Nucella_canaliculata",0,0,11,NA,0,12.17,NA,NA
+2014-06-24,"AG","Adula_californiensis","Nucella_ostrina",0,0,175,NA,0,12.17,NA,NA
+2014-06-24,"AG","Balanus_glandula","Nucella_canaliculata",0,0,11,NA,21440,12.17,NA,NA
+2014-06-24,"AG","Balanus_glandula","Nucella_ostrina",0.0769230769230769,12,175,35.7918638761372,21440,12.17,1.00241498816144e-07,0.00214917773461813
+2014-06-24,"AG","Chthamalus_dalli","Nucella_canaliculata",0,0,11,NA,192,12.17,NA,NA
+2014-06-24,"AG","Chthamalus_dalli","Nucella_ostrina",0,0,175,NA,192,12.17,NA,NA
+2014-06-24,"AG","Hiatella_arctica","Nucella_canaliculata",0,0,11,NA,0,12.17,NA,NA
+2014-06-24,"AG","Hiatella_arctica","Nucella_ostrina",0,0,175,NA,0,12.17,NA,NA
+2014-06-24,"AG","Limpets","Nucella_canaliculata",0,0,11,NA,957.714285714285,12.17,NA,NA
+2014-06-24,"AG","Limpets","Nucella_ostrina",0,0,175,NA,957.714285714285,12.17,NA,NA
+2014-06-24,"AG","Littorina_sitkana","Nucella_canaliculata",0,0,11,NA,5186.28571428571,12.17,NA,NA
+2014-06-24,"AG","Littorina_sitkana","Nucella_ostrina",0,0,175,NA,5186.28571428571,12.17,NA,NA
+2014-06-24,"AG","Modiolus_modiolus","Nucella_canaliculata",0,0,11,NA,0,12.17,NA,NA
+2014-06-24,"AG","Modiolus_modiolus","Nucella_ostrina",0,0,175,NA,0,12.17,NA,NA
+2014-06-24,"AG","Mytilus_californianus","Nucella_canaliculata",0,0,11,NA,0,12.17,NA,NA
+2014-06-24,"AG","Mytilus_californianus","Nucella_ostrina",0,0,175,NA,0,12.17,NA,NA
+2014-06-24,"AG","Mytilus_trossulus","Nucella_canaliculata",0.1,1,11,27.2092693699754,3341.71428571429,12.17,1.09980022598241e-06,0.00367521812659722
+2014-06-24,"AG","Mytilus_trossulus","Nucella_ostrina",0.0448717948717949,7,175,44.0712278858829,3341.71428571429,12.17,3.0468352794564e-07,0.00101816529795777
+2014-06-24,"AG","Nucella_ostrina","Nucella_canaliculata",0,0,11,NA,57.1428571428571,12.17,NA,NA
+2014-06-24,"AG","Nucella_ostrina","Nucella_ostrina",0,0,175,NA,57.1428571428571,12.17,NA,NA
+2014-06-24,"AG","Pollicipes_polymerus","Nucella_canaliculata",0,0,11,NA,0,12.17,NA,NA
+2014-06-24,"AG","Pollicipes_polymerus","Nucella_ostrina",0,0,175,NA,0,12.17,NA,NA
+2014-06-24,"AG","Semibalanus_cariosus","Nucella_canaliculata",0,0,11,NA,2.28571428571428,12.17,NA,NA
+2014-06-24,"AG","Semibalanus_cariosus","Nucella_ostrina",0,0,175,NA,2.28571428571428,12.17,NA,NA
+2014-06-24,"B","Adula_californiensis","Nucella_canaliculata",0,0,0,NA,0,12.17,NA,NA
+2014-06-24,"B","Adula_californiensis","Nucella_ostrina",0,0,0,NA,0,12.17,NA,NA
+2014-06-24,"B","Balanus_glandula","Nucella_canaliculata",0,0,0,NA,11369.9047619048,12.17,NA,NA
+2014-06-24,"B","Balanus_glandula","Nucella_ostrina",0,0,0,NA,11369.9047619048,12.17,NA,NA
+2014-06-24,"B","Chthamalus_dalli","Nucella_canaliculata",0,0,0,NA,189.714285714286,12.17,NA,NA
+2014-06-24,"B","Chthamalus_dalli","Nucella_ostrina",0,0,0,NA,189.714285714286,12.17,NA,NA
+2014-06-24,"B","Hiatella_arctica","Nucella_canaliculata",0,0,0,NA,0,12.17,NA,NA
+2014-06-24,"B","Hiatella_arctica","Nucella_ostrina",0,0,0,NA,0,12.17,NA,NA
+2014-06-24,"B","Limpets","Nucella_canaliculata",0,0,0,NA,2899.04761904762,12.17,NA,NA
+2014-06-24,"B","Limpets","Nucella_ostrina",0,0,0,NA,2899.04761904762,12.17,NA,NA
+2014-06-24,"B","Littorina_sitkana","Nucella_canaliculata",0,0,0,NA,365.714285714286,12.17,NA,NA
+2014-06-24,"B","Littorina_sitkana","Nucella_ostrina",0,0,0,NA,365.714285714286,12.17,NA,NA
+2014-06-24,"B","Modiolus_modiolus","Nucella_canaliculata",0,0,0,NA,0,12.17,NA,NA
+2014-06-24,"B","Modiolus_modiolus","Nucella_ostrina",0,0,0,NA,0,12.17,NA,NA
+2014-06-24,"B","Mytilus_californianus","Nucella_canaliculata",0,0,0,NA,0,12.17,NA,NA
+2014-06-24,"B","Mytilus_californianus","Nucella_ostrina",0,0,0,NA,0,12.17,NA,NA
+2014-06-24,"B","Mytilus_trossulus","Nucella_canaliculata",0,0,0,NA,6205.71428571429,12.17,NA,NA
+2014-06-24,"B","Mytilus_trossulus","Nucella_ostrina",0,0,0,NA,6205.71428571429,12.17,NA,NA
+2014-06-24,"B","Nucella_ostrina","Nucella_canaliculata",0,0,0,NA,434.285714285714,12.17,NA,NA
+2014-06-24,"B","Nucella_ostrina","Nucella_ostrina",0,0,0,NA,434.285714285714,12.17,NA,NA
+2014-06-24,"B","Pollicipes_polymerus","Nucella_canaliculata",0,0,0,NA,217.142857142857,12.17,NA,NA
+2014-06-24,"B","Pollicipes_polymerus","Nucella_ostrina",0,0,0,NA,217.142857142857,12.17,NA,NA
+2014-06-24,"B","Semibalanus_cariosus","Nucella_canaliculata",0,0,0,NA,0,12.17,NA,NA
+2014-06-24,"B","Semibalanus_cariosus","Nucella_ostrina",0,0,0,NA,0,12.17,NA,NA
+2014-06-24,"BB","Adula_californiensis","Nucella_canaliculata",0,0,2,NA,0,12.17,NA,NA
+2014-06-24,"BB","Adula_californiensis","Nucella_ostrina",0,0,190,NA,0,12.17,NA,NA
+2014-06-24,"BB","Balanus_glandula","Nucella_canaliculata",0,0,2,NA,18365.7142857143,12.17,NA,NA
+2014-06-24,"BB","Balanus_glandula","Nucella_ostrina",0.131578947368421,20,190,39.8699067897849,18365.7142857143,12.17,1.79693912041689e-07,0.00330020704743993
+2014-06-24,"BB","Chthamalus_dalli","Nucella_canaliculata",0,0,2,NA,128,12.17,NA,NA
+2014-06-24,"BB","Chthamalus_dalli","Nucella_ostrina",0,0,190,NA,128,12.17,NA,NA
+2014-06-24,"BB","Hiatella_arctica","Nucella_canaliculata",0,0,2,NA,0,12.17,NA,NA
+2014-06-24,"BB","Hiatella_arctica","Nucella_ostrina",0,0,190,NA,0,12.17,NA,NA
+2014-06-24,"BB","Limpets","Nucella_canaliculata",0,0,2,NA,780.952380952379,12.17,NA,NA
+2014-06-24,"BB","Limpets","Nucella_ostrina",0,0,190,NA,780.952380952379,12.17,NA,NA
+2014-06-24,"BB","Littorina_sitkana","Nucella_canaliculata",0,0,2,NA,8758.09523809525,12.17,NA,NA
+2014-06-24,"BB","Littorina_sitkana","Nucella_ostrina",0,0,190,NA,8758.09523809525,12.17,NA,NA
+2014-06-24,"BB","Modiolus_modiolus","Nucella_canaliculata",0,0,2,NA,0,12.17,NA,NA
+2014-06-24,"BB","Modiolus_modiolus","Nucella_ostrina",0,0,190,NA,0,12.17,NA,NA
+2014-06-24,"BB","Mytilus_californianus","Nucella_canaliculata",0,0,2,NA,0,12.17,NA,NA
+2014-06-24,"BB","Mytilus_californianus","Nucella_ostrina",0,0,190,NA,0,12.17,NA,NA
+2014-06-24,"BB","Mytilus_trossulus","Nucella_canaliculata",0,0,2,NA,7782.85714285713,12.17,NA,NA
+2014-06-24,"BB","Mytilus_trossulus","Nucella_ostrina",0.118421052631579,18,190,55.7595158333647,7782.85714285713,12.17,2.72879470817724e-07,0.0021237819385928
+2014-06-24,"BB","Nucella_ostrina","Nucella_canaliculata",0,0,2,NA,91.4285714285716,12.17,NA,NA
+2014-06-24,"BB","Nucella_ostrina","Nucella_ostrina",0,0,190,NA,91.4285714285716,12.17,NA,NA
+2014-06-24,"BB","Pollicipes_polymerus","Nucella_canaliculata",0,0,2,NA,0,12.17,NA,NA
+2014-06-24,"BB","Pollicipes_polymerus","Nucella_ostrina",0,0,190,NA,0,12.17,NA,NA
+2014-06-24,"BB","Semibalanus_cariosus","Nucella_canaliculata",0,0,2,NA,0,12.17,NA,NA
+2014-06-24,"BB","Semibalanus_cariosus","Nucella_ostrina",0,0,190,NA,0,12.17,NA,NA
+2014-06-24,"BC","Adula_californiensis","Nucella_canaliculata",0,0,4,NA,0,12.17,NA,NA
+2014-06-24,"BC","Adula_californiensis","Nucella_ostrina",0,0,213,NA,0,12.17,NA,NA
+2014-06-24,"BC","Balanus_glandula","Nucella_canaliculata",0,0,4,NA,20309.3333333333,12.17,NA,NA
+2014-06-24,"BC","Balanus_glandula","Nucella_ostrina",0.0944444444444444,17,213,40.5959317606452,20309.3333333333,12.17,1.14550828552622e-07,0.00232645096068472
+2014-06-24,"BC","Chthamalus_dalli","Nucella_canaliculata",0,0,4,NA,0,12.17,NA,NA
+2014-06-24,"BC","Chthamalus_dalli","Nucella_ostrina",0,0,213,NA,0,12.17,NA,NA
+2014-06-24,"BC","Hiatella_arctica","Nucella_canaliculata",0,0,4,NA,0,12.17,NA,NA
+2014-06-24,"BC","Hiatella_arctica","Nucella_ostrina",0,0,213,NA,0,12.17,NA,NA
+2014-06-24,"BC","Limpets","Nucella_canaliculata",0,0,4,NA,1497.14285714286,12.17,NA,NA
+2014-06-24,"BC","Limpets","Nucella_ostrina",0,0,213,NA,1497.14285714286,12.17,NA,NA
+2014-06-24,"BC","Littorina_sitkana","Nucella_canaliculata",0,0,4,NA,5836.19047619048,12.17,NA,NA
+2014-06-24,"BC","Littorina_sitkana","Nucella_ostrina",0,0,213,NA,5836.19047619048,12.17,NA,NA
+2014-06-24,"BC","Modiolus_modiolus","Nucella_canaliculata",0,0,4,NA,0,12.17,NA,NA
+2014-06-24,"BC","Modiolus_modiolus","Nucella_ostrina",0,0,213,NA,0,12.17,NA,NA
+2014-06-24,"BC","Mytilus_californianus","Nucella_canaliculata",0,0,4,NA,0,12.17,NA,NA
+2014-06-24,"BC","Mytilus_californianus","Nucella_ostrina",0,0,213,NA,0,12.17,NA,NA
+2014-06-24,"BC","Mytilus_trossulus","Nucella_canaliculata",0,0,4,NA,3955.04761904762,12.17,NA,NA
+2014-06-24,"BC","Mytilus_trossulus","Nucella_ostrina",0.0888888888888889,16,213,52.0474805262188,3955.04761904762,12.17,4.31813334560367e-07,0.00170784230072599
+2014-06-24,"BC","Nucella_ostrina","Nucella_canaliculata",0,0,4,NA,148.571428571429,12.17,NA,NA
+2014-06-24,"BC","Nucella_ostrina","Nucella_ostrina",0,0,213,NA,148.571428571429,12.17,NA,NA
+2014-06-24,"BC","Pollicipes_polymerus","Nucella_canaliculata",0,0,4,NA,0,12.17,NA,NA
+2014-06-24,"BC","Pollicipes_polymerus","Nucella_ostrina",0,0,213,NA,0,12.17,NA,NA
+2014-06-24,"BC","Semibalanus_cariosus","Nucella_canaliculata",0,0,4,NA,0,12.17,NA,NA
+2014-06-24,"BC","Semibalanus_cariosus","Nucella_ostrina",0,0,213,NA,0,12.17,NA,NA
+2014-06-24,"BD","Adula_californiensis","Nucella_canaliculata",0,0,18,NA,0,12.17,NA,NA
+2014-06-24,"BD","Adula_californiensis","Nucella_ostrina",0,0,94,NA,0,12.17,NA,NA
+2014-06-24,"BD","Balanus_glandula","Nucella_canaliculata",0,0,18,NA,0,12.17,NA,NA
+2014-06-24,"BD","Balanus_glandula","Nucella_ostrina",0.0344827586206897,3,94,35.4829400263212,0,12.17,Inf,0.000971812329956604
+2014-06-24,"BD","Chthamalus_dalli","Nucella_canaliculata",0,0,18,NA,0,12.17,NA,NA
+2014-06-24,"BD","Chthamalus_dalli","Nucella_ostrina",0,0,94,NA,0,12.17,NA,NA
+2014-06-24,"BD","Hiatella_arctica","Nucella_canaliculata",0,0,18,NA,0,12.17,NA,NA
+2014-06-24,"BD","Hiatella_arctica","Nucella_ostrina",0,0,94,NA,0,12.17,NA,NA
+2014-06-24,"BD","Limpets","Nucella_canaliculata",0,0,18,NA,0,12.17,NA,NA
+2014-06-24,"BD","Limpets","Nucella_ostrina",0,0,94,NA,0,12.17,NA,NA
+2014-06-24,"BD","Littorina_sitkana","Nucella_canaliculata",0,0,18,NA,0,12.17,NA,NA
+2014-06-24,"BD","Littorina_sitkana","Nucella_ostrina",0,0,94,NA,0,12.17,NA,NA
+2014-06-24,"BD","Modiolus_modiolus","Nucella_canaliculata",0,0,18,NA,0,12.17,NA,NA
+2014-06-24,"BD","Modiolus_modiolus","Nucella_ostrina",0,0,94,NA,0,12.17,NA,NA
+2014-06-24,"BD","Mytilus_californianus","Nucella_canaliculata",0,0,18,NA,0,12.17,NA,NA
+2014-06-24,"BD","Mytilus_californianus","Nucella_ostrina",0,0,94,NA,0,12.17,NA,NA
+2014-06-24,"BD","Mytilus_trossulus","Nucella_canaliculata",0.0588235294117647,1,18,95.6154398862621,0,12.17,Inf,0.000615209525592701
+2014-06-24,"BD","Mytilus_trossulus","Nucella_ostrina",0.0459770114942529,4,94,67.8456564742727,0,12.17,Inf,0.000677670670217297
+2014-06-24,"BD","Nucella_ostrina","Nucella_canaliculata",0,0,18,NA,0,12.17,NA,NA
+2014-06-24,"BD","Nucella_ostrina","Nucella_ostrina",0,0,94,NA,0,12.17,NA,NA
+2014-06-24,"BD","Pollicipes_polymerus","Nucella_canaliculata",0,0,18,NA,0,12.17,NA,NA
+2014-06-24,"BD","Pollicipes_polymerus","Nucella_ostrina",0,0,94,NA,0,12.17,NA,NA
+2014-06-24,"BD","Semibalanus_cariosus","Nucella_canaliculata",0,0,18,NA,0,12.17,NA,NA
+2014-06-24,"BD","Semibalanus_cariosus","Nucella_ostrina",0,0,94,NA,0,12.17,NA,NA
+2014-06-24,"BE","Adula_californiensis","Nucella_canaliculata",0,0,2,NA,0,12.17,NA,NA
+2014-06-24,"BE","Adula_californiensis","Nucella_ostrina",0,0,95,NA,0,12.17,NA,NA
+2014-06-24,"BE","Balanus_glandula","Nucella_canaliculata",0,0,2,NA,2205.71428571429,12.17,NA,NA
+2014-06-24,"BE","Balanus_glandula","Nucella_ostrina",0.103896103896104,8,95,22.0987120638847,2205.71428571429,12.17,2.13148873903947e-06,0.00470145516153851
+2014-06-24,"BE","Chthamalus_dalli","Nucella_canaliculata",0,0,2,NA,0,12.17,NA,NA
+2014-06-24,"BE","Chthamalus_dalli","Nucella_ostrina",0.012987012987013,1,95,11.6956152155062,0,12.17,Inf,0.00111041725875136
+2014-06-24,"BE","Hiatella_arctica","Nucella_canaliculata",0,0,2,NA,0,12.17,NA,NA
+2014-06-24,"BE","Hiatella_arctica","Nucella_ostrina",0,0,95,NA,0,12.17,NA,NA
+2014-06-24,"BE","Limpets","Nucella_canaliculata",0,0,2,NA,1131.42857142857,12.17,NA,NA
+2014-06-24,"BE","Limpets","Nucella_ostrina",0,0,95,NA,1131.42857142857,12.17,NA,NA
+2014-06-24,"BE","Littorina_sitkana","Nucella_canaliculata",0,0,2,NA,1577.14285714286,12.17,NA,NA
+2014-06-24,"BE","Littorina_sitkana","Nucella_ostrina",0,0,95,NA,1577.14285714286,12.17,NA,NA
+2014-06-24,"BE","Modiolus_modiolus","Nucella_canaliculata",0,0,2,NA,0,12.17,NA,NA
+2014-06-24,"BE","Modiolus_modiolus","Nucella_ostrina",0,0,95,NA,0,12.17,NA,NA
+2014-06-24,"BE","Mytilus_californianus","Nucella_canaliculata",0,0,2,NA,0,12.17,NA,NA
+2014-06-24,"BE","Mytilus_californianus","Nucella_ostrina",0,0,95,NA,0,12.17,NA,NA
+2014-06-24,"BE","Mytilus_trossulus","Nucella_canaliculata",0,0,2,NA,148.571428571429,12.17,NA,NA
+2014-06-24,"BE","Mytilus_trossulus","Nucella_ostrina",0.116883116883117,9,95,44.2472953518664,148.571428571429,12.17,1.77799180821591e-05,0.00264158782934936
+2014-06-24,"BE","Nucella_ostrina","Nucella_canaliculata",0,0,2,NA,0,12.17,NA,NA
+2014-06-24,"BE","Nucella_ostrina","Nucella_ostrina",0,0,95,NA,0,12.17,NA,NA
+2014-06-24,"BE","Pollicipes_polymerus","Nucella_canaliculata",0,0,2,NA,0,12.17,NA,NA
+2014-06-24,"BE","Pollicipes_polymerus","Nucella_ostrina",0,0,95,NA,0,12.17,NA,NA
+2014-06-24,"BE","Semibalanus_cariosus","Nucella_canaliculata",0,0,2,NA,0,12.17,NA,NA
+2014-06-24,"BE","Semibalanus_cariosus","Nucella_ostrina",0,0,95,NA,0,12.17,NA,NA
+2014-06-24,"BF","Adula_californiensis","Nucella_canaliculata",0,0,6,NA,0,12.17,NA,NA
+2014-06-24,"BF","Adula_californiensis","Nucella_ostrina",0,0,230,NA,0,12.17,NA,NA
+2014-06-24,"BF","Balanus_glandula","Nucella_canaliculata",0,0,6,NA,1748.57142857143,12.17,NA,NA
+2014-06-24,"BF","Balanus_glandula","Nucella_ostrina",0.101604278074866,19,230,35.2394325752997,1748.57142857143,12.17,1.64892047142583e-06,0.00288325522432174
+2014-06-24,"BF","Chthamalus_dalli","Nucella_canaliculata",0,0,6,NA,68.5714285714286,12.17,NA,NA
+2014-06-24,"BF","Chthamalus_dalli","Nucella_ostrina",0,0,230,NA,68.5714285714286,12.17,NA,NA
+2014-06-24,"BF","Hiatella_arctica","Nucella_canaliculata",0,0,6,NA,0,12.17,NA,NA
+2014-06-24,"BF","Hiatella_arctica","Nucella_ostrina",0,0,230,NA,0,12.17,NA,NA
+2014-06-24,"BF","Limpets","Nucella_canaliculata",0,0,6,NA,1451.42857142857,12.17,NA,NA
+2014-06-24,"BF","Limpets","Nucella_ostrina",0,0,230,NA,1451.42857142857,12.17,NA,NA
+2014-06-24,"BF","Littorina_sitkana","Nucella_canaliculata",0,0,6,NA,3817.14285714286,12.17,NA,NA
+2014-06-24,"BF","Littorina_sitkana","Nucella_ostrina",0,0,230,NA,3817.14285714286,12.17,NA,NA
+2014-06-24,"BF","Modiolus_modiolus","Nucella_canaliculata",0,0,6,NA,0,12.17,NA,NA
+2014-06-24,"BF","Modiolus_modiolus","Nucella_ostrina",0,0,230,NA,0,12.17,NA,NA
+2014-06-24,"BF","Mytilus_californianus","Nucella_canaliculata",0,0,6,NA,68.5714285714286,12.17,NA,NA
+2014-06-24,"BF","Mytilus_californianus","Nucella_ostrina",0,0,230,NA,68.5714285714286,12.17,NA,NA
+2014-06-24,"BF","Mytilus_trossulus","Nucella_canaliculata",0.2,1,6,47.1272107784219,4320,12.17,9.82368689587162e-07,0.00424383273901654
+2014-06-24,"BF","Mytilus_trossulus","Nucella_ostrina",0.128342245989305,24,230,47.9090569596391,4320,12.17,6.20109330544601e-07,0.00267887230795268
+2014-06-24,"BF","Nucella_ostrina","Nucella_canaliculata",0,0,6,NA,80,12.17,NA,NA
+2014-06-24,"BF","Nucella_ostrina","Nucella_ostrina",0,0,230,NA,80,12.17,NA,NA
+2014-06-24,"BF","Pollicipes_polymerus","Nucella_canaliculata",0,0,6,NA,22.8571428571429,12.17,NA,NA
+2014-06-24,"BF","Pollicipes_polymerus","Nucella_ostrina",0,0,230,NA,22.8571428571429,12.17,NA,NA
+2014-06-24,"BF","Semibalanus_cariosus","Nucella_canaliculata",0,0,6,NA,0,12.17,NA,NA
+2014-06-24,"BF","Semibalanus_cariosus","Nucella_ostrina",0,0,230,NA,0,12.17,NA,NA
+2014-06-24,"C","Adula_californiensis","Nucella_canaliculata",0,0,33,NA,0,12.17,NA,NA
+2014-06-24,"C","Adula_californiensis","Nucella_ostrina",0,0,101,NA,0,12.17,NA,NA
+2014-06-24,"C","Balanus_glandula","Nucella_canaliculata",0,0,33,NA,13738.6666666667,12.17,NA,NA
+2014-06-24,"C","Balanus_glandula","Nucella_ostrina",0.0786516853932584,7,101,34.3729083721819,13738.6666666667,12.17,1.6655096999889e-07,0.00228818825982475
+2014-06-24,"C","Chthamalus_dalli","Nucella_canaliculata",0,0,33,NA,0,12.17,NA,NA
+2014-06-24,"C","Chthamalus_dalli","Nucella_ostrina",0,0,101,NA,0,12.17,NA,NA
+2014-06-24,"C","Hiatella_arctica","Nucella_canaliculata",0,0,33,NA,0,12.17,NA,NA
+2014-06-24,"C","Hiatella_arctica","Nucella_ostrina",0,0,101,NA,0,12.17,NA,NA
+2014-06-24,"C","Limpets","Nucella_canaliculata",0,0,33,NA,2380.95238095238,12.17,NA,NA
+2014-06-24,"C","Limpets","Nucella_ostrina",0,0,101,NA,2380.95238095238,12.17,NA,NA
+2014-06-24,"C","Littorina_sitkana","Nucella_canaliculata",0,0,33,NA,620.952380952381,12.17,NA,NA
+2014-06-24,"C","Littorina_sitkana","Nucella_ostrina",0,0,101,NA,620.952380952381,12.17,NA,NA
+2014-06-24,"C","Modiolus_modiolus","Nucella_canaliculata",0,0,33,NA,0,12.17,NA,NA
+2014-06-24,"C","Modiolus_modiolus","Nucella_ostrina",0,0,101,NA,0,12.17,NA,NA
+2014-06-24,"C","Mytilus_californianus","Nucella_canaliculata",0,0,33,NA,42.6666666666667,12.17,NA,NA
+2014-06-24,"C","Mytilus_californianus","Nucella_ostrina",0,0,101,NA,42.6666666666667,12.17,NA,NA
+2014-06-24,"C","Mytilus_trossulus","Nucella_canaliculata",0.137931034482759,4,33,73.1147258293861,9322.66666666667,12.17,2.02356417180463e-07,0.00188650142523439
+2014-06-24,"C","Mytilus_trossulus","Nucella_ostrina",0.0561797752808989,5,101,62.9663781610228,9322.66666666667,12.17,9.5704228832624e-08,0.000892218623996942
+2014-06-24,"C","Nucella_ostrina","Nucella_canaliculata",0,0,33,NA,64.7619047619047,12.17,NA,NA
+2014-06-24,"C","Nucella_ostrina","Nucella_ostrina",0,0,101,NA,64.7619047619047,12.17,NA,NA
+2014-06-24,"C","Pollicipes_polymerus","Nucella_canaliculata",0,0,33,NA,342.857142857143,12.17,NA,NA
+2014-06-24,"C","Pollicipes_polymerus","Nucella_ostrina",0,0,101,NA,342.857142857143,12.17,NA,NA
+2014-06-24,"C","Semibalanus_cariosus","Nucella_canaliculata",0,0,33,NA,3.8095238095238,12.17,NA,NA
+2014-06-24,"C","Semibalanus_cariosus","Nucella_ostrina",0,0,101,NA,3.8095238095238,12.17,NA,NA
+2014-06-24,"D","Adula_californiensis","Nucella_canaliculata",0,0,10,NA,0,12.17,NA,NA
+2014-06-24,"D","Adula_californiensis","Nucella_ostrina",0,0,103,NA,0,12.17,NA,NA
+2014-06-24,"D","Balanus_glandula","Nucella_canaliculata",0.166666666666667,1,10,13.5968538445798,22656,12.17,5.41037147068784e-07,0.0122577376039904
+2014-06-24,"D","Balanus_glandula","Nucella_ostrina",0.26865671641791,18,103,36.905489844036,22656,12.17,3.21309445264745e-07,0.00727958679191806
+2014-06-24,"D","Chthamalus_dalli","Nucella_canaliculata",0,0,10,NA,42.6666666666667,12.17,NA,NA
+2014-06-24,"D","Chthamalus_dalli","Nucella_ostrina",0.0149253731343284,1,103,10.9561706698335,42.6666666666667,12.17,3.19284395412888e-05,0.00136228008709499
+2014-06-24,"D","Hiatella_arctica","Nucella_canaliculata",0,0,10,NA,0,12.17,NA,NA
+2014-06-24,"D","Hiatella_arctica","Nucella_ostrina",0,0,103,NA,0,12.17,NA,NA
+2014-06-24,"D","Limpets","Nucella_canaliculata",0,0,10,NA,2076.19047619048,12.17,NA,NA
+2014-06-24,"D","Limpets","Nucella_ostrina",0,0,103,NA,2076.19047619048,12.17,NA,NA
+2014-06-24,"D","Littorina_sitkana","Nucella_canaliculata",0,0,10,NA,6910.47619047619,12.17,NA,NA
+2014-06-24,"D","Littorina_sitkana","Nucella_ostrina",0,0,103,NA,6910.47619047619,12.17,NA,NA
+2014-06-24,"D","Modiolus_modiolus","Nucella_canaliculata",0,0,10,NA,0,12.17,NA,NA
+2014-06-24,"D","Modiolus_modiolus","Nucella_ostrina",0,0,103,NA,0,12.17,NA,NA
+2014-06-24,"D","Mytilus_californianus","Nucella_canaliculata",0,0,10,NA,7.61904761904763,12.17,NA,NA
+2014-06-24,"D","Mytilus_californianus","Nucella_ostrina",0,0,103,NA,7.61904761904763,12.17,NA,NA
+2014-06-24,"D","Mytilus_trossulus","Nucella_canaliculata",0.5,3,10,67.5691544886576,6077.71428571429,12.17,1.21753439806761e-06,0.00739982620448406
+2014-06-24,"D","Mytilus_trossulus","Nucella_ostrina",0.253731343283582,17,103,47.4728144542626,6077.71428571429,12.17,8.79404854756335e-07,0.00534477144867908
+2014-06-24,"D","Nucella_ostrina","Nucella_canaliculata",0,0,10,NA,15.2380952380952,12.17,NA,NA
+2014-06-24,"D","Nucella_ostrina","Nucella_ostrina",0,0,103,NA,15.2380952380952,12.17,NA,NA
+2014-06-24,"D","Pollicipes_polymerus","Nucella_canaliculata",0,0,10,NA,30.4761904761905,12.17,NA,NA
+2014-06-24,"D","Pollicipes_polymerus","Nucella_ostrina",0,0,103,NA,30.4761904761905,12.17,NA,NA
+2014-06-24,"D","Semibalanus_cariosus","Nucella_canaliculata",0,0,10,NA,0,12.17,NA,NA
+2014-06-24,"D","Semibalanus_cariosus","Nucella_ostrina",0,0,103,NA,0,12.17,NA,NA
+2014-06-24,"E","Adula_californiensis","Nucella_canaliculata",0,0,36,NA,0,12.17,NA,NA
+2014-06-24,"E","Adula_californiensis","Nucella_ostrina",0,0,212,NA,0,12.17,NA,NA
+2014-06-24,"E","Balanus_glandula","Nucella_canaliculata",0.1,3,36,23.0658908731209,3516.19047619048,12.17,1.23298380910608e-06,0.00433540592687585
+2014-06-24,"E","Balanus_glandula","Nucella_ostrina",0.0578947368421053,11,212,34.7446525541936,3516.19047619048,12.17,4.73891280472082e-07,0.00166629200714565
+2014-06-24,"E","Chthamalus_dalli","Nucella_canaliculata",0,0,36,NA,0,12.17,NA,NA
+2014-06-24,"E","Chthamalus_dalli","Nucella_ostrina",0,0,212,NA,0,12.17,NA,NA
+2014-06-24,"E","Hiatella_arctica","Nucella_canaliculata",0,0,36,NA,0,12.17,NA,NA
+2014-06-24,"E","Hiatella_arctica","Nucella_ostrina",0,0,212,NA,0,12.17,NA,NA
+2014-06-24,"E","Limpets","Nucella_canaliculata",0,0,36,NA,194.285714285714,12.17,NA,NA
+2014-06-24,"E","Limpets","Nucella_ostrina",0,0,212,NA,194.285714285714,12.17,NA,NA
+2014-06-24,"E","Littorina_sitkana","Nucella_canaliculata",0,0,36,NA,1958.09523809524,12.17,NA,NA
+2014-06-24,"E","Littorina_sitkana","Nucella_ostrina",0,0,212,NA,1958.09523809524,12.17,NA,NA
+2014-06-24,"E","Modiolus_modiolus","Nucella_canaliculata",0,0,36,NA,0,12.17,NA,NA
+2014-06-24,"E","Modiolus_modiolus","Nucella_ostrina",0,0,212,NA,0,12.17,NA,NA
+2014-06-24,"E","Mytilus_californianus","Nucella_canaliculata",0,0,36,NA,0,12.17,NA,NA
+2014-06-24,"E","Mytilus_californianus","Nucella_ostrina",0,0,212,NA,0,12.17,NA,NA
+2014-06-24,"E","Mytilus_trossulus","Nucella_canaliculata",0.1,3,36,63.6035603848566,12957.7142857143,12.17,1.21336139539067e-07,0.00157223902867879
+2014-06-24,"E","Mytilus_trossulus","Nucella_ostrina",0.0578947368421053,11,212,72.7904992134081,12957.7142857143,12.17,6.13812865080944e-08,0.000795361173061456
+2014-06-24,"E","Nucella_ostrina","Nucella_canaliculata",0,0,36,NA,262.857142857143,12.17,NA,NA
+2014-06-24,"E","Nucella_ostrina","Nucella_ostrina",0,0,212,NA,262.857142857143,12.17,NA,NA
+2014-06-24,"E","Pollicipes_polymerus","Nucella_canaliculata",0,0,36,NA,15.2380952380952,12.17,NA,NA
+2014-06-24,"E","Pollicipes_polymerus","Nucella_ostrina",0,0,212,NA,15.2380952380952,12.17,NA,NA
+2014-06-24,"E","Semibalanus_cariosus","Nucella_canaliculata",0,0,36,NA,0,12.17,NA,NA
+2014-06-24,"E","Semibalanus_cariosus","Nucella_ostrina",0,0,212,NA,0,12.17,NA,NA
+2014-06-24,"F","Adula_californiensis","Nucella_canaliculata",0,0,4,NA,0,12.17,NA,NA
+2014-06-24,"F","Adula_californiensis","Nucella_ostrina",0,0,109,NA,0,12.17,NA,NA
+2014-06-24,"F","Balanus_glandula","Nucella_canaliculata",0,0,4,NA,20522.6666666667,12.17,NA,NA
+2014-06-24,"F","Balanus_glandula","Nucella_ostrina",0.205128205128205,16,109,35.8176808687154,20522.6666666667,12.17,2.79057774274404e-07,0.00572700968217549
+2014-06-24,"F","Chthamalus_dalli","Nucella_canaliculata",0,0,4,NA,0,12.17,NA,NA
+2014-06-24,"F","Chthamalus_dalli","Nucella_ostrina",0,0,109,NA,0,12.17,NA,NA
+2014-06-24,"F","Hiatella_arctica","Nucella_canaliculata",0,0,4,NA,0,12.17,NA,NA
+2014-06-24,"F","Hiatella_arctica","Nucella_ostrina",0,0,109,NA,0,12.17,NA,NA
+2014-06-24,"F","Limpets","Nucella_canaliculata",0,0,4,NA,540.952380952381,12.17,NA,NA
+2014-06-24,"F","Limpets","Nucella_ostrina",0,0,109,NA,540.952380952381,12.17,NA,NA
+2014-06-24,"F","Littorina_sitkana","Nucella_canaliculata",0,0,4,NA,9359.99999999999,12.17,NA,NA
+2014-06-24,"F","Littorina_sitkana","Nucella_ostrina",0,0,109,NA,9359.99999999999,12.17,NA,NA
+2014-06-24,"F","Modiolus_modiolus","Nucella_canaliculata",0,0,4,NA,0,12.17,NA,NA
+2014-06-24,"F","Modiolus_modiolus","Nucella_ostrina",0,0,109,NA,0,12.17,NA,NA
+2014-06-24,"F","Mytilus_californianus","Nucella_canaliculata",0,0,4,NA,0,12.17,NA,NA
+2014-06-24,"F","Mytilus_californianus","Nucella_ostrina",0,0,109,NA,0,12.17,NA,NA
+2014-06-24,"F","Mytilus_trossulus","Nucella_canaliculata",1,2,4,44.4160375127102,4392.38095238095,12.17,5.12578267933994e-06,0.022514390206777
+2014-06-24,"F","Mytilus_trossulus","Nucella_ostrina",0.192307692307692,15,109,46.1182150526878,4392.38095238095,12.17,9.49345217033197e-07,0.00416988584853057
+2014-06-24,"F","Nucella_ostrina","Nucella_canaliculata",0,0,4,NA,15.2380952380952,12.17,NA,NA
+2014-06-24,"F","Nucella_ostrina","Nucella_ostrina",0,0,109,NA,15.2380952380952,12.17,NA,NA
+2014-06-24,"F","Pollicipes_polymerus","Nucella_canaliculata",0,0,4,NA,0,12.17,NA,NA
+2014-06-24,"F","Pollicipes_polymerus","Nucella_ostrina",0,0,109,NA,0,12.17,NA,NA
+2014-06-24,"F","Semibalanus_cariosus","Nucella_canaliculata",0,0,4,NA,0,12.17,NA,NA
+2014-06-24,"F","Semibalanus_cariosus","Nucella_ostrina",0,0,109,NA,0,12.17,NA,NA
+2014-06-24,"G","Adula_californiensis","Nucella_canaliculata",0,0,21,NA,0,12.17,NA,NA
+2014-06-24,"G","Adula_californiensis","Nucella_ostrina",0,0,139,NA,0,12.17,NA,NA
+2014-06-24,"G","Balanus_glandula","Nucella_canaliculata",0,0,21,NA,2727.61904761905,12.17,NA,NA
+2014-06-24,"G","Balanus_glandula","Nucella_ostrina",0.00854700854700855,1,139,10.9561706698335,2727.61904761905,12.17,2.86003688962698e-07,0.000780109109703969
+2014-06-24,"G","Chthamalus_dalli","Nucella_canaliculata",0,0,21,NA,464.761904761905,12.17,NA,NA
+2014-06-24,"G","Chthamalus_dalli","Nucella_ostrina",0.0170940170940171,2,139,16.9943236121652,464.761904761905,12.17,2.16426146579031e-06,0.00100586628124349
+2014-06-24,"G","Hiatella_arctica","Nucella_canaliculata",0,0,21,NA,0,12.17,NA,NA
+2014-06-24,"G","Hiatella_arctica","Nucella_ostrina",0,0,139,NA,0,12.17,NA,NA
+2014-06-24,"G","Limpets","Nucella_canaliculata",0,0,21,NA,708.571428571429,12.17,NA,NA
+2014-06-24,"G","Limpets","Nucella_ostrina",0,0,139,NA,708.571428571429,12.17,NA,NA
+2014-06-24,"G","Littorina_sitkana","Nucella_canaliculata",0,0,21,NA,853.333333333335,12.17,NA,NA
+2014-06-24,"G","Littorina_sitkana","Nucella_ostrina",0,0,139,NA,853.333333333335,12.17,NA,NA
+2014-06-24,"G","Modiolus_modiolus","Nucella_canaliculata",0,0,21,NA,0,12.17,NA,NA
+2014-06-24,"G","Modiolus_modiolus","Nucella_ostrina",0,0,139,NA,0,12.17,NA,NA
+2014-06-24,"G","Mytilus_californianus","Nucella_canaliculata",0,0,21,NA,11.4285714285714,12.17,NA,NA
+2014-06-24,"G","Mytilus_californianus","Nucella_ostrina",0,0,139,NA,11.4285714285714,12.17,NA,NA
+2014-06-24,"G","Mytilus_trossulus","Nucella_canaliculata",0.615384615384615,8,21,59.4709031856776,18441.9047619048,12.17,5.61094905608705e-07,0.0103476588116257
+2014-06-24,"G","Mytilus_trossulus","Nucella_ostrina",0.162393162393162,19,139,62.4373705148811,18441.9047619048,12.17,1.41031900836292e-07,0.00260089688361329
+2014-06-24,"G","Nucella_ostrina","Nucella_canaliculata",0,0,21,NA,369.523809523809,12.17,NA,NA
+2014-06-24,"G","Nucella_ostrina","Nucella_ostrina",0,0,139,NA,369.523809523809,12.17,NA,NA
+2014-06-24,"G","Pollicipes_polymerus","Nucella_canaliculata",0,0,21,NA,95.2380952380952,12.17,NA,NA
+2014-06-24,"G","Pollicipes_polymerus","Nucella_ostrina",0,0,139,NA,95.2380952380952,12.17,NA,NA
+2014-06-24,"G","Semibalanus_cariosus","Nucella_canaliculata",0,0,21,NA,7.61904761904763,12.17,NA,NA
+2014-06-24,"G","Semibalanus_cariosus","Nucella_ostrina",0,0,139,NA,7.61904761904763,12.17,NA,NA
+2014-07-24,"A","Adula_californiensis","Nucella_canaliculata",0,0,153,NA,0,11.83,NA,NA
+2014-07-24,"A","Adula_californiensis","Nucella_ostrina",0,0,120,NA,0,11.83,NA,NA
+2014-07-24,"A","Balanus_glandula","Nucella_canaliculata",0.00719424460431655,1,153,41.3898824140412,25936,11.83,6.70174670735646e-09,0.000173816502601997
+2014-07-24,"A","Balanus_glandula","Nucella_ostrina",0.0660377358490566,7,120,35.8065688124752,25936,11.83,7.1109311022935e-08,0.00184429109069084
+2014-07-24,"A","Chthamalus_dalli","Nucella_canaliculata",0,0,153,NA,64,11.83,NA,NA
+2014-07-24,"A","Chthamalus_dalli","Nucella_ostrina",0,0,120,NA,64,11.83,NA,NA
+2014-07-24,"A","Hiatella_arctica","Nucella_canaliculata",0,0,153,NA,0,11.83,NA,NA
+2014-07-24,"A","Hiatella_arctica","Nucella_ostrina",0,0,120,NA,0,11.83,NA,NA
+2014-07-24,"A","Limpets","Nucella_canaliculata",0,0,153,NA,200,11.83,NA,NA
+2014-07-24,"A","Limpets","Nucella_ostrina",0,0,120,NA,200,11.83,NA,NA
+2014-07-24,"A","Littorina_sitkana","Nucella_canaliculata",0,0,153,NA,674.285714285714,11.83,NA,NA
+2014-07-24,"A","Littorina_sitkana","Nucella_ostrina",0,0,120,NA,674.285714285714,11.83,NA,NA
+2014-07-24,"A","Modiolus_modiolus","Nucella_canaliculata",0,0,153,NA,0,11.83,NA,NA
+2014-07-24,"A","Modiolus_modiolus","Nucella_ostrina",0,0,120,NA,0,11.83,NA,NA
+2014-07-24,"A","Mytilus_californianus","Nucella_canaliculata",0,0,153,NA,0,11.83,NA,NA
+2014-07-24,"A","Mytilus_californianus","Nucella_ostrina",0,0,120,NA,0,11.83,NA,NA
+2014-07-24,"A","Mytilus_trossulus","Nucella_canaliculata",0.0935251798561151,13,153,74.1711116838797,6125.71428571428,11.83,2.05843438103373e-07,0.00126093808941038
+2014-07-24,"A","Mytilus_trossulus","Nucella_ostrina",0.0660377358490566,7,120,65.6306157443278,6125.71428571428,11.83,1.64258918579902e-07,0.00100620320410089
+2014-07-24,"A","Nucella_ostrina","Nucella_canaliculata",0,0,153,NA,62.8571428571428,11.83,NA,NA
+2014-07-24,"A","Nucella_ostrina","Nucella_ostrina",0,0,120,NA,62.8571428571428,11.83,NA,NA
+2014-07-24,"A","Pollicipes_polymerus","Nucella_canaliculata",0,0,153,NA,40,11.83,NA,NA
+2014-07-24,"A","Pollicipes_polymerus","Nucella_ostrina",0,0,120,NA,40,11.83,NA,NA
+2014-07-24,"A","Semibalanus_cariosus","Nucella_canaliculata",0,0,153,NA,0,11.83,NA,NA
+2014-07-24,"A","Semibalanus_cariosus","Nucella_ostrina",0,0,120,NA,0,11.83,NA,NA
+2014-07-24,"AB","Adula_californiensis","Nucella_canaliculata",0,0,38,NA,0,11.83,NA,NA
+2014-07-24,"AB","Adula_californiensis","Nucella_ostrina",0,0,123,NA,0,11.83,NA,NA
+2014-07-24,"AB","Balanus_glandula","Nucella_canaliculata",0,0,38,NA,27266.2857142857,11.83,NA,NA
+2014-07-24,"AB","Balanus_glandula","Nucella_ostrina",0.0930232558139535,8,123,35.7298222351038,27266.2857142857,11.83,9.54849003160036e-08,0.00260351857341624
+2014-07-24,"AB","Chthamalus_dalli","Nucella_canaliculata",0,0,38,NA,0,11.83,NA,NA
+2014-07-24,"AB","Chthamalus_dalli","Nucella_ostrina",0,0,123,NA,0,11.83,NA,NA
+2014-07-24,"AB","Hiatella_arctica","Nucella_canaliculata",0,0,38,NA,0,11.83,NA,NA
+2014-07-24,"AB","Hiatella_arctica","Nucella_ostrina",0,0,123,NA,0,11.83,NA,NA
+2014-07-24,"AB","Limpets","Nucella_canaliculata",0,0,38,NA,1697.14285714286,11.83,NA,NA
+2014-07-24,"AB","Limpets","Nucella_ostrina",0,0,123,NA,1697.14285714286,11.83,NA,NA
+2014-07-24,"AB","Littorina_sitkana","Nucella_canaliculata",0,0,38,NA,525.714285714286,11.83,NA,NA
+2014-07-24,"AB","Littorina_sitkana","Nucella_ostrina",0,0,123,NA,525.714285714286,11.83,NA,NA
+2014-07-24,"AB","Modiolus_modiolus","Nucella_canaliculata",0,0,38,NA,0,11.83,NA,NA
+2014-07-24,"AB","Modiolus_modiolus","Nucella_ostrina",0,0,123,NA,0,11.83,NA,NA
+2014-07-24,"AB","Mytilus_californianus","Nucella_canaliculata",0,0,38,NA,0,11.83,NA,NA
+2014-07-24,"AB","Mytilus_californianus","Nucella_ostrina",0,0,123,NA,0,11.83,NA,NA
+2014-07-24,"AB","Mytilus_trossulus","Nucella_canaliculata",0.461538461538462,12,38,81.92597498687,1657.14285714286,11.83,3.39958833451849e-06,0.00563360352577349
+2014-07-24,"AB","Mytilus_trossulus","Nucella_ostrina",0.325581395348837,28,123,78.463284301598,1657.14285714286,11.83,2.50399321701629e-06,0.00414947447391271
+2014-07-24,"AB","Nucella_ostrina","Nucella_canaliculata",0,0,38,NA,262.857142857143,11.83,NA,NA
+2014-07-24,"AB","Nucella_ostrina","Nucella_ostrina",0,0,123,NA,262.857142857143,11.83,NA,NA
+2014-07-24,"AB","Pollicipes_polymerus","Nucella_canaliculata",0,0,38,NA,931.428571428574,11.83,NA,NA
+2014-07-24,"AB","Pollicipes_polymerus","Nucella_ostrina",0,0,123,NA,931.428571428574,11.83,NA,NA
+2014-07-24,"AB","Semibalanus_cariosus","Nucella_canaliculata",0,0,38,NA,0,11.83,NA,NA
+2014-07-24,"AB","Semibalanus_cariosus","Nucella_ostrina",0.0116279069767442,1,123,21.0441403996876,0,11.83,Inf,0.000552548441318934
+2014-07-24,"AC","Adula_californiensis","Nucella_canaliculata",0,0,2,NA,0,11.83,NA,NA
+2014-07-24,"AC","Adula_californiensis","Nucella_ostrina",0,0,46,NA,0,11.83,NA,NA
+2014-07-24,"AC","Balanus_glandula","Nucella_canaliculata",0,0,2,NA,91792,11.83,NA,NA
+2014-07-24,"AC","Balanus_glandula","Nucella_ostrina",0.1,4,46,16.5913506116545,91792,11.83,6.56618971390211e-08,0.00602723686218503
+2014-07-24,"AC","Chthamalus_dalli","Nucella_canaliculata",0,0,2,NA,576,11.83,NA,NA
+2014-07-24,"AC","Chthamalus_dalli","Nucella_ostrina",0,0,46,NA,576,11.83,NA,NA
+2014-07-24,"AC","Hiatella_arctica","Nucella_canaliculata",0,0,2,NA,0,11.83,NA,NA
+2014-07-24,"AC","Hiatella_arctica","Nucella_ostrina",0,0,46,NA,0,11.83,NA,NA
+2014-07-24,"AC","Limpets","Nucella_canaliculata",0,0,2,NA,794.285714285714,11.83,NA,NA
+2014-07-24,"AC","Limpets","Nucella_ostrina",0,0,46,NA,794.285714285714,11.83,NA,NA
+2014-07-24,"AC","Littorina_sitkana","Nucella_canaliculata",0,0,2,NA,1645.71428571428,11.83,NA,NA
+2014-07-24,"AC","Littorina_sitkana","Nucella_ostrina",0,0,46,NA,1645.71428571428,11.83,NA,NA
+2014-07-24,"AC","Modiolus_modiolus","Nucella_canaliculata",0,0,2,NA,0,11.83,NA,NA
+2014-07-24,"AC","Modiolus_modiolus","Nucella_ostrina",0,0,46,NA,0,11.83,NA,NA
+2014-07-24,"AC","Mytilus_californianus","Nucella_canaliculata",0,0,2,NA,0,11.83,NA,NA
+2014-07-24,"AC","Mytilus_californianus","Nucella_ostrina",0,0,46,NA,0,11.83,NA,NA
+2014-07-24,"AC","Mytilus_trossulus","Nucella_canaliculata",0,0,2,NA,845.714285714285,11.83,NA,NA
+2014-07-24,"AC","Mytilus_trossulus","Nucella_ostrina",0.05,2,46,48.4223680887586,845.714285714285,11.83,1.22095684195476e-06,0.00103258064348174
+2014-07-24,"AC","Nucella_ostrina","Nucella_canaliculata",0,0,2,NA,14.2857142857143,11.83,NA,NA
+2014-07-24,"AC","Nucella_ostrina","Nucella_ostrina",0,0,46,NA,14.2857142857143,11.83,NA,NA
+2014-07-24,"AC","Pollicipes_polymerus","Nucella_canaliculata",0,0,2,NA,2.85714285714285,11.83,NA,NA
+2014-07-24,"AC","Pollicipes_polymerus","Nucella_ostrina",0,0,46,NA,2.85714285714285,11.83,NA,NA
+2014-07-24,"AC","Semibalanus_cariosus","Nucella_canaliculata",0,0,2,NA,0,11.83,NA,NA
+2014-07-24,"AC","Semibalanus_cariosus","Nucella_ostrina",0,0,46,NA,0,11.83,NA,NA
+2014-07-24,"AD","Adula_californiensis","Nucella_canaliculata",0,0,63,NA,0,11.83,NA,NA
+2014-07-24,"AD","Adula_californiensis","Nucella_ostrina",0,0,105,NA,0,11.83,NA,NA
+2014-07-24,"AD","Balanus_glandula","Nucella_canaliculata",0.0545454545454545,3,63,48.0455968052549,70270.4761904762,11.83,1.61559342207425e-08,0.00113528519099358
+2014-07-24,"AD","Balanus_glandula","Nucella_ostrina",0.0869565217391304,8,105,21.5776421932683,70270.4761904762,11.83,5.73489242548243e-08,0.00402993621639805
+2014-07-24,"AD","Chthamalus_dalli","Nucella_canaliculata",0,0,63,NA,19.047619047619,11.83,NA,NA
+2014-07-24,"AD","Chthamalus_dalli","Nucella_ostrina",0,0,105,NA,19.047619047619,11.83,NA,NA
+2014-07-24,"AD","Hiatella_arctica","Nucella_canaliculata",0,0,63,NA,0,11.83,NA,NA
+2014-07-24,"AD","Hiatella_arctica","Nucella_ostrina",0,0,105,NA,0,11.83,NA,NA
+2014-07-24,"AD","Limpets","Nucella_canaliculata",0,0,63,NA,2015.2380952381,11.83,NA,NA
+2014-07-24,"AD","Limpets","Nucella_ostrina",0,0,105,NA,2015.2380952381,11.83,NA,NA
+2014-07-24,"AD","Littorina_sitkana","Nucella_canaliculata",0,0,63,NA,1824.76190476191,11.83,NA,NA
+2014-07-24,"AD","Littorina_sitkana","Nucella_ostrina",0,0,105,NA,1824.76190476191,11.83,NA,NA
+2014-07-24,"AD","Modiolus_modiolus","Nucella_canaliculata",0,0,63,NA,0,11.83,NA,NA
+2014-07-24,"AD","Modiolus_modiolus","Nucella_ostrina",0,0,105,NA,0,11.83,NA,NA
+2014-07-24,"AD","Mytilus_californianus","Nucella_canaliculata",0,0,63,NA,0,11.83,NA,NA
+2014-07-24,"AD","Mytilus_californianus","Nucella_ostrina",0,0,105,NA,0,11.83,NA,NA
+2014-07-24,"AD","Mytilus_trossulus","Nucella_canaliculata",0.0909090909090909,5,63,85.4714159524207,4038.85714285714,11.83,2.63346726320155e-07,0.0010636198066462
+2014-07-24,"AD","Mytilus_trossulus","Nucella_ostrina",0.0543478260869565,5,105,69.6788144489093,4038.85714285714,11.83,1.93118078717007e-07,0.000779976331641033
+2014-07-24,"AD","Nucella_ostrina","Nucella_canaliculata",0,0,63,NA,243.809523809524,11.83,NA,NA
+2014-07-24,"AD","Nucella_ostrina","Nucella_ostrina",0,0,105,NA,243.809523809524,11.83,NA,NA
+2014-07-24,"AD","Pollicipes_polymerus","Nucella_canaliculata",0,0,63,NA,26.6666666666667,11.83,NA,NA
+2014-07-24,"AD","Pollicipes_polymerus","Nucella_ostrina",0,0,105,NA,26.6666666666667,11.83,NA,NA
+2014-07-24,"AD","Semibalanus_cariosus","Nucella_canaliculata",0,0,63,NA,0,11.83,NA,NA
+2014-07-24,"AD","Semibalanus_cariosus","Nucella_ostrina",0,0,105,NA,0,11.83,NA,NA
+2014-07-24,"AE","Adula_californiensis","Nucella_canaliculata",0,0,11,NA,0,11.83,NA,NA
+2014-07-24,"AE","Adula_californiensis","Nucella_ostrina",0,0,318,NA,0,11.83,NA,NA
+2014-07-24,"AE","Balanus_glandula","Nucella_canaliculata",0.1,1,11,33.0246834694308,80028.1904761905,11.83,3.78371432424755e-08,0.00302803810648374
+2014-07-24,"AE","Balanus_glandula","Nucella_ostrina",0.0771929824561404,22,318,34.7508089329516,80028.1904761905,11.83,2.77568325280592e-08,0.00222132908057124
+2014-07-24,"AE","Chthamalus_dalli","Nucella_canaliculata",0,0,11,NA,1637.33333333333,11.83,NA,NA
+2014-07-24,"AE","Chthamalus_dalli","Nucella_ostrina",0,0,318,NA,1637.33333333333,11.83,NA,NA
+2014-07-24,"AE","Hiatella_arctica","Nucella_canaliculata",0,0,11,NA,0,11.83,NA,NA
+2014-07-24,"AE","Hiatella_arctica","Nucella_ostrina",0,0,318,NA,0,11.83,NA,NA
+2014-07-24,"AE","Limpets","Nucella_canaliculata",0,0,11,NA,4167.61904761905,11.83,NA,NA
+2014-07-24,"AE","Limpets","Nucella_ostrina",0,0,318,NA,4167.61904761905,11.83,NA,NA
+2014-07-24,"AE","Littorina_sitkana","Nucella_canaliculata",0,0,11,NA,2293.33333333333,11.83,NA,NA
+2014-07-24,"AE","Littorina_sitkana","Nucella_ostrina",0,0,318,NA,2293.33333333333,11.83,NA,NA
+2014-07-24,"AE","Modiolus_modiolus","Nucella_canaliculata",0,0,11,NA,0,11.83,NA,NA
+2014-07-24,"AE","Modiolus_modiolus","Nucella_ostrina",0,0,318,NA,0,11.83,NA,NA
+2014-07-24,"AE","Mytilus_californianus","Nucella_canaliculata",0,0,11,NA,0,11.83,NA,NA
+2014-07-24,"AE","Mytilus_californianus","Nucella_ostrina",0,0,318,NA,0,11.83,NA,NA
+2014-07-24,"AE","Mytilus_trossulus","Nucella_canaliculata",0,0,11,NA,1874.28571428571,11.83,NA,NA
+2014-07-24,"AE","Mytilus_trossulus","Nucella_ostrina",0.0385964912280702,11,318,65.5601965394456,1874.28571428571,11.83,3.1410278223522e-07,0.000588718357560869
+2014-07-24,"AE","Nucella_ostrina","Nucella_canaliculata",0,0,11,NA,205.714285714286,11.83,NA,NA
+2014-07-24,"AE","Nucella_ostrina","Nucella_ostrina",0,0,318,NA,205.714285714286,11.83,NA,NA
+2014-07-24,"AE","Pollicipes_polymerus","Nucella_canaliculata",0,0,11,NA,72.3809523809523,11.83,NA,NA
+2014-07-24,"AE","Pollicipes_polymerus","Nucella_ostrina",0,0,318,NA,72.3809523809523,11.83,NA,NA
+2014-07-24,"AE","Semibalanus_cariosus","Nucella_canaliculata",0,0,11,NA,26.6666666666667,11.83,NA,NA
+2014-07-24,"AE","Semibalanus_cariosus","Nucella_ostrina",0,0,318,NA,26.6666666666667,11.83,NA,NA
+2014-07-24,"AF","Adula_californiensis","Nucella_canaliculata",0,0,3,NA,0,11.83,NA,NA
+2014-07-24,"AF","Adula_californiensis","Nucella_ostrina",0,0,130,NA,0,11.83,NA,NA
+2014-07-24,"AF","Balanus_glandula","Nucella_canaliculata",0,0,3,NA,81984,11.83,NA,NA
+2014-07-24,"AF","Balanus_glandula","Nucella_ostrina",0.125,14,130,22.2327086967883,81984,11.83,6.85785868354534e-08,0.00562234686311781
+2014-07-24,"AF","Chthamalus_dalli","Nucella_canaliculata",0,0,3,NA,64,11.83,NA,NA
+2014-07-24,"AF","Chthamalus_dalli","Nucella_ostrina",0,0,130,NA,64,11.83,NA,NA
+2014-07-24,"AF","Hiatella_arctica","Nucella_canaliculata",0,0,3,NA,0,11.83,NA,NA
+2014-07-24,"AF","Hiatella_arctica","Nucella_ostrina",0,0,130,NA,0,11.83,NA,NA
+2014-07-24,"AF","Limpets","Nucella_canaliculata",0,0,3,NA,1011.42857142857,11.83,NA,NA
+2014-07-24,"AF","Limpets","Nucella_ostrina",0,0,130,NA,1011.42857142857,11.83,NA,NA
+2014-07-24,"AF","Littorina_sitkana","Nucella_canaliculata",0,0,3,NA,6485.71428571429,11.83,NA,NA
+2014-07-24,"AF","Littorina_sitkana","Nucella_ostrina",0,0,130,NA,6485.71428571429,11.83,NA,NA
+2014-07-24,"AF","Modiolus_modiolus","Nucella_canaliculata",0,0,3,NA,0,11.83,NA,NA
+2014-07-24,"AF","Modiolus_modiolus","Nucella_ostrina",0,0,130,NA,0,11.83,NA,NA
+2014-07-24,"AF","Mytilus_californianus","Nucella_canaliculata",0,0,3,NA,0,11.83,NA,NA
+2014-07-24,"AF","Mytilus_californianus","Nucella_ostrina",0,0,130,NA,0,11.83,NA,NA
+2014-07-24,"AF","Mytilus_trossulus","Nucella_canaliculata",0,0,3,NA,2434.28571428572,11.83,NA,NA
+2014-07-24,"AF","Mytilus_trossulus","Nucella_ostrina",0.0357142857142857,4,130,37.4770682506304,2434.28571428572,11.83,3.91475699332501e-07,0.000952963702375116
+2014-07-24,"AF","Nucella_ostrina","Nucella_canaliculata",0,0,3,NA,114.285714285714,11.83,NA,NA
+2014-07-24,"AF","Nucella_ostrina","Nucella_ostrina",0,0,130,NA,114.285714285714,11.83,NA,NA
+2014-07-24,"AF","Pollicipes_polymerus","Nucella_canaliculata",0,0,3,NA,0,11.83,NA,NA
+2014-07-24,"AF","Pollicipes_polymerus","Nucella_ostrina",0,0,130,NA,0,11.83,NA,NA
+2014-07-24,"AF","Semibalanus_cariosus","Nucella_canaliculata",0,0,3,NA,0,11.83,NA,NA
+2014-07-24,"AF","Semibalanus_cariosus","Nucella_ostrina",0,0,130,NA,0,11.83,NA,NA
+2014-07-24,"AG","Adula_californiensis","Nucella_canaliculata",0,0,13,NA,0,11.83,NA,NA
+2014-07-24,"AG","Adula_californiensis","Nucella_ostrina",0,0,170,NA,0,11.83,NA,NA
+2014-07-24,"AG","Balanus_glandula","Nucella_canaliculata",0.2,2,13,33.4164079780479,25472,11.83,2.34967169395582e-07,0.00598508373884426
+2014-07-24,"AG","Balanus_glandula","Nucella_ostrina",0.0641025641025641,10,170,32.3391917870673,25472,11.83,7.78185606372519e-08,0.00198219437655208
+2014-07-24,"AG","Chthamalus_dalli","Nucella_canaliculata",0,0,13,NA,140.8,11.83,NA,NA
+2014-07-24,"AG","Chthamalus_dalli","Nucella_ostrina",0,0,170,NA,140.8,11.83,NA,NA
+2014-07-24,"AG","Hiatella_arctica","Nucella_canaliculata",0,0,13,NA,0,11.83,NA,NA
+2014-07-24,"AG","Hiatella_arctica","Nucella_ostrina",0,0,170,NA,0,11.83,NA,NA
+2014-07-24,"AG","Limpets","Nucella_canaliculata",0,0,13,NA,879.999999999999,11.83,NA,NA
+2014-07-24,"AG","Limpets","Nucella_ostrina",0,0,170,NA,879.999999999999,11.83,NA,NA
+2014-07-24,"AG","Littorina_sitkana","Nucella_canaliculata",0,0,13,NA,1997.71428571429,11.83,NA,NA
+2014-07-24,"AG","Littorina_sitkana","Nucella_ostrina",0,0,170,NA,1997.71428571429,11.83,NA,NA
+2014-07-24,"AG","Modiolus_modiolus","Nucella_canaliculata",0,0,13,NA,0,11.83,NA,NA
+2014-07-24,"AG","Modiolus_modiolus","Nucella_ostrina",0,0,170,NA,0,11.83,NA,NA
+2014-07-24,"AG","Mytilus_californianus","Nucella_canaliculata",0,0,13,NA,0,11.83,NA,NA
+2014-07-24,"AG","Mytilus_californianus","Nucella_ostrina",0,0,170,NA,0,11.83,NA,NA
+2014-07-24,"AG","Mytilus_trossulus","Nucella_canaliculata",0.1,1,13,61.8237588583945,3888,11.83,4.16023953961854e-07,0.00161750113300369
+2014-07-24,"AG","Mytilus_trossulus","Nucella_ostrina",0.0256410256410256,4,170,62.1454071187901,3888,11.83,1.06120698344052e-07,0.000412597275161673
+2014-07-24,"AG","Nucella_ostrina","Nucella_canaliculata",0,0,13,NA,66.2857142857143,11.83,NA,NA
+2014-07-24,"AG","Nucella_ostrina","Nucella_ostrina",0,0,170,NA,66.2857142857143,11.83,NA,NA
+2014-07-24,"AG","Pollicipes_polymerus","Nucella_canaliculata",0,0,13,NA,0,11.83,NA,NA
+2014-07-24,"AG","Pollicipes_polymerus","Nucella_ostrina",0,0,170,NA,0,11.83,NA,NA
+2014-07-24,"AG","Semibalanus_cariosus","Nucella_canaliculata",0,0,13,NA,0,11.83,NA,NA
+2014-07-24,"AG","Semibalanus_cariosus","Nucella_ostrina",0,0,170,NA,0,11.83,NA,NA
+2014-07-24,"B","Adula_californiensis","Nucella_canaliculata",0,0,81,NA,0,11.83,NA,NA
+2014-07-24,"B","Adula_californiensis","Nucella_ostrina",0,0,14,NA,0,11.83,NA,NA
+2014-07-24,"B","Balanus_glandula","Nucella_canaliculata",0,0,81,NA,26880,11.83,NA,NA
+2014-07-24,"B","Balanus_glandula","Nucella_ostrina",0,0,14,NA,26880,11.83,NA,NA
+2014-07-24,"B","Chthamalus_dalli","Nucella_canaliculata",0,0,81,NA,85.3333333333333,11.83,NA,NA
+2014-07-24,"B","Chthamalus_dalli","Nucella_ostrina",0,0,14,NA,85.3333333333333,11.83,NA,NA
+2014-07-24,"B","Hiatella_arctica","Nucella_canaliculata",0,0,81,NA,0,11.83,NA,NA
+2014-07-24,"B","Hiatella_arctica","Nucella_ostrina",0,0,14,NA,0,11.83,NA,NA
+2014-07-24,"B","Limpets","Nucella_canaliculata",0,0,81,NA,4491.42857142857,11.83,NA,NA
+2014-07-24,"B","Limpets","Nucella_ostrina",0,0,14,NA,4491.42857142857,11.83,NA,NA
+2014-07-24,"B","Littorina_sitkana","Nucella_canaliculata",0,0,81,NA,114.285714285714,11.83,NA,NA
+2014-07-24,"B","Littorina_sitkana","Nucella_ostrina",0,0,14,NA,114.285714285714,11.83,NA,NA
+2014-07-24,"B","Modiolus_modiolus","Nucella_canaliculata",0,0,81,NA,0,11.83,NA,NA
+2014-07-24,"B","Modiolus_modiolus","Nucella_ostrina",0,0,14,NA,0,11.83,NA,NA
+2014-07-24,"B","Mytilus_californianus","Nucella_canaliculata",0,0,81,NA,0,11.83,NA,NA
+2014-07-24,"B","Mytilus_californianus","Nucella_ostrina",0,0,14,NA,0,11.83,NA,NA
+2014-07-24,"B","Mytilus_trossulus","Nucella_canaliculata",0.126760563380282,9,81,82.6351252132978,1698.28571428571,11.83,9.03251548589369e-07,0.00153397920137577
+2014-07-24,"B","Mytilus_trossulus","Nucella_ostrina",0,0,14,NA,1698.28571428571,11.83,NA,NA
+2014-07-24,"B","Nucella_ostrina","Nucella_canaliculata",0,0,81,NA,228.571428571428,11.83,NA,NA
+2014-07-24,"B","Nucella_ostrina","Nucella_ostrina",0,0,14,NA,228.571428571428,11.83,NA,NA
+2014-07-24,"B","Pollicipes_polymerus","Nucella_canaliculata",0,0,81,NA,198.095238095238,11.83,NA,NA
+2014-07-24,"B","Pollicipes_polymerus","Nucella_ostrina",0,0,14,NA,198.095238095238,11.83,NA,NA
+2014-07-24,"B","Semibalanus_cariosus","Nucella_canaliculata",0.0140845070422535,1,81,15.786359684571,3.8095238095238,11.83,0.000234201118716751,0.000892194737968575
+2014-07-24,"B","Semibalanus_cariosus","Nucella_ostrina",0,0,14,NA,3.8095238095238,11.83,NA,NA
+2014-07-24,"BB","Adula_californiensis","Nucella_canaliculata",0,0,11,NA,0,11.83,NA,NA
+2014-07-24,"BB","Adula_californiensis","Nucella_ostrina",0,0,304,NA,0,11.83,NA,NA
+2014-07-24,"BB","Balanus_glandula","Nucella_canaliculata",0,0,11,NA,13548.9523809524,11.83,NA,NA
+2014-07-24,"BB","Balanus_glandula","Nucella_ostrina",0.0446096654275093,12,304,40.1397027650857,13548.9523809524,11.83,8.20255398608079e-08,0.001111360133596
+2014-07-24,"BB","Chthamalus_dalli","Nucella_canaliculata",0,0,11,NA,30.4761904761905,11.83,NA,NA
+2014-07-24,"BB","Chthamalus_dalli","Nucella_ostrina",0,0,304,NA,30.4761904761905,11.83,NA,NA
+2014-07-24,"BB","Hiatella_arctica","Nucella_canaliculata",0,0,11,NA,0,11.83,NA,NA
+2014-07-24,"BB","Hiatella_arctica","Nucella_ostrina",0,0,304,NA,0,11.83,NA,NA
+2014-07-24,"BB","Limpets","Nucella_canaliculata",0,0,11,NA,1215.2380952381,11.83,NA,NA
+2014-07-24,"BB","Limpets","Nucella_ostrina",0,0,304,NA,1215.2380952381,11.83,NA,NA
+2014-07-24,"BB","Littorina_sitkana","Nucella_canaliculata",0,0,11,NA,7965.71428571429,11.83,NA,NA
+2014-07-24,"BB","Littorina_sitkana","Nucella_ostrina",0,0,304,NA,7965.71428571429,11.83,NA,NA
+2014-07-24,"BB","Modiolus_modiolus","Nucella_canaliculata",0,0,11,NA,0,11.83,NA,NA
+2014-07-24,"BB","Modiolus_modiolus","Nucella_ostrina",0,0,304,NA,0,11.83,NA,NA
+2014-07-24,"BB","Mytilus_californianus","Nucella_canaliculata",0,0,11,NA,0,11.83,NA,NA
+2014-07-24,"BB","Mytilus_californianus","Nucella_ostrina",0,0,304,NA,0,11.83,NA,NA
+2014-07-24,"BB","Mytilus_trossulus","Nucella_canaliculata",0.222222222222222,2,11,73.3601183805679,7177.14285714286,11.83,4.22061630175552e-07,0.00302919661428853
+2014-07-24,"BB","Mytilus_trossulus","Nucella_ostrina",0.0855018587360595,23,304,62.6230549929383,7177.14285714286,11.83,1.90234689965629e-07,0.0013653415462676
+2014-07-24,"BB","Nucella_ostrina","Nucella_canaliculata",0,0,11,NA,118.095238095238,11.83,NA,NA
+2014-07-24,"BB","Nucella_ostrina","Nucella_ostrina",0,0,304,NA,118.095238095238,11.83,NA,NA
+2014-07-24,"BB","Pollicipes_polymerus","Nucella_canaliculata",0,0,11,NA,0,11.83,NA,NA
+2014-07-24,"BB","Pollicipes_polymerus","Nucella_ostrina",0,0,304,NA,0,11.83,NA,NA
+2014-07-24,"BB","Semibalanus_cariosus","Nucella_canaliculata",0,0,11,NA,0,11.83,NA,NA
+2014-07-24,"BB","Semibalanus_cariosus","Nucella_ostrina",0,0,304,NA,0,11.83,NA,NA
+2014-07-24,"BC","Adula_californiensis","Nucella_canaliculata",0,0,3,NA,0,11.83,NA,NA
+2014-07-24,"BC","Adula_californiensis","Nucella_ostrina",0,0,209,NA,0,11.83,NA,NA
+2014-07-24,"BC","Balanus_glandula","Nucella_canaliculata",0,0,3,NA,20245.3333333333,11.83,NA,NA
+2014-07-24,"BC","Balanus_glandula","Nucella_ostrina",0.0326086956521739,6,209,33.3640777156716,20245.3333333333,11.83,4.82757880111124e-08,0.000977359420214308
+2014-07-24,"BC","Chthamalus_dalli","Nucella_canaliculata",0,0,3,NA,149.333333333333,11.83,NA,NA
+2014-07-24,"BC","Chthamalus_dalli","Nucella_ostrina",0,0,209,NA,149.333333333333,11.83,NA,NA
+2014-07-24,"BC","Hiatella_arctica","Nucella_canaliculata",0,0,3,NA,0,11.83,NA,NA
+2014-07-24,"BC","Hiatella_arctica","Nucella_ostrina",0,0,209,NA,0,11.83,NA,NA
+2014-07-24,"BC","Limpets","Nucella_canaliculata",0,0,3,NA,2594.28571428571,11.83,NA,NA
+2014-07-24,"BC","Limpets","Nucella_ostrina",0,0,209,NA,2594.28571428571,11.83,NA,NA
+2014-07-24,"BC","Littorina_sitkana","Nucella_canaliculata",0,0,3,NA,7607.61904761903,11.83,NA,NA
+2014-07-24,"BC","Littorina_sitkana","Nucella_ostrina",0,0,209,NA,7607.61904761903,11.83,NA,NA
+2014-07-24,"BC","Modiolus_modiolus","Nucella_canaliculata",0,0,3,NA,0,11.83,NA,NA
+2014-07-24,"BC","Modiolus_modiolus","Nucella_ostrina",0,0,209,NA,0,11.83,NA,NA
+2014-07-24,"BC","Mytilus_californianus","Nucella_canaliculata",0,0,3,NA,0,11.83,NA,NA
+2014-07-24,"BC","Mytilus_californianus","Nucella_ostrina",0,0,209,NA,0,11.83,NA,NA
+2014-07-24,"BC","Mytilus_trossulus","Nucella_canaliculata",0,0,3,NA,4939.42857142857,11.83,NA,NA
+2014-07-24,"BC","Mytilus_trossulus","Nucella_ostrina",0.103260869565217,19,209,67.8116790395476,4939.42857142857,11.83,3.08286545029743e-07,0.00152275936870691
+2014-07-24,"BC","Nucella_ostrina","Nucella_canaliculata",0,0,3,NA,278.095238095238,11.83,NA,NA
+2014-07-24,"BC","Nucella_ostrina","Nucella_ostrina",0,0,209,NA,278.095238095238,11.83,NA,NA
+2014-07-24,"BC","Pollicipes_polymerus","Nucella_canaliculata",0,0,3,NA,0,11.83,NA,NA
+2014-07-24,"BC","Pollicipes_polymerus","Nucella_ostrina",0,0,209,NA,0,11.83,NA,NA
+2014-07-24,"BC","Semibalanus_cariosus","Nucella_canaliculata",0,0,3,NA,0,11.83,NA,NA
+2014-07-24,"BC","Semibalanus_cariosus","Nucella_ostrina",0,0,209,NA,0,11.83,NA,NA
+2014-07-24,"BD","Adula_californiensis","Nucella_canaliculata",0,0,25,NA,0,11.83,NA,NA
+2014-07-24,"BD","Adula_californiensis","Nucella_ostrina",0,0,146,NA,0,11.83,NA,NA
+2014-07-24,"BD","Balanus_glandula","Nucella_canaliculata",0.15,3,25,39.9604879769493,0,11.83,Inf,0.00375370791484142
+2014-07-24,"BD","Balanus_glandula","Nucella_ostrina",0.0296296296296296,4,146,30.5516093475975,0,11.83,Inf,0.000969822220902402
+2014-07-24,"BD","Chthamalus_dalli","Nucella_canaliculata",0,0,25,NA,0,11.83,NA,NA
+2014-07-24,"BD","Chthamalus_dalli","Nucella_ostrina",0,0,146,NA,0,11.83,NA,NA
+2014-07-24,"BD","Hiatella_arctica","Nucella_canaliculata",0,0,25,NA,0,11.83,NA,NA
+2014-07-24,"BD","Hiatella_arctica","Nucella_ostrina",0,0,146,NA,0,11.83,NA,NA
+2014-07-24,"BD","Limpets","Nucella_canaliculata",0,0,25,NA,0,11.83,NA,NA
+2014-07-24,"BD","Limpets","Nucella_ostrina",0,0,146,NA,0,11.83,NA,NA
+2014-07-24,"BD","Littorina_sitkana","Nucella_canaliculata",0,0,25,NA,0,11.83,NA,NA
+2014-07-24,"BD","Littorina_sitkana","Nucella_ostrina",0,0,146,NA,0,11.83,NA,NA
+2014-07-24,"BD","Modiolus_modiolus","Nucella_canaliculata",0,0,25,NA,0,11.83,NA,NA
+2014-07-24,"BD","Modiolus_modiolus","Nucella_ostrina",0,0,146,NA,0,11.83,NA,NA
+2014-07-24,"BD","Mytilus_californianus","Nucella_canaliculata",0,0,25,NA,0,11.83,NA,NA
+2014-07-24,"BD","Mytilus_californianus","Nucella_ostrina",0,0,146,NA,0,11.83,NA,NA
+2014-07-24,"BD","Mytilus_trossulus","Nucella_canaliculata",0.1,2,25,97.4048841115653,0,11.83,Inf,0.00102664256430368
+2014-07-24,"BD","Mytilus_trossulus","Nucella_ostrina",0.0518518518518519,7,146,68.9305439617305,0,11.83,Inf,0.000752233318812042
+2014-07-24,"BD","Nucella_ostrina","Nucella_canaliculata",0,0,25,NA,0,11.83,NA,NA
+2014-07-24,"BD","Nucella_ostrina","Nucella_ostrina",0,0,146,NA,0,11.83,NA,NA
+2014-07-24,"BD","Pollicipes_polymerus","Nucella_canaliculata",0,0,25,NA,0,11.83,NA,NA
+2014-07-24,"BD","Pollicipes_polymerus","Nucella_ostrina",0,0,146,NA,0,11.83,NA,NA
+2014-07-24,"BD","Semibalanus_cariosus","Nucella_canaliculata",0,0,25,NA,0,11.83,NA,NA
+2014-07-24,"BD","Semibalanus_cariosus","Nucella_ostrina",0,0,146,NA,0,11.83,NA,NA
+2014-07-24,"BE","Adula_californiensis","Nucella_canaliculata",0,0,1,NA,0,11.83,NA,NA
+2014-07-24,"BE","Adula_californiensis","Nucella_ostrina",0,0,122,NA,0,11.83,NA,NA
+2014-07-24,"BE","Balanus_glandula","Nucella_canaliculata",0,0,1,NA,44502.8571428571,11.83,NA,NA
+2014-07-24,"BE","Balanus_glandula","Nucella_ostrina",0.099009900990099,10,122,25.4175585694922,44502.8571428571,11.83,8.75299940778694e-08,0.00389533482216255
+2014-07-24,"BE","Chthamalus_dalli","Nucella_canaliculata",0,0,1,NA,0,11.83,NA,NA
+2014-07-24,"BE","Chthamalus_dalli","Nucella_ostrina",0,0,122,NA,0,11.83,NA,NA
+2014-07-24,"BE","Hiatella_arctica","Nucella_canaliculata",0,0,1,NA,0,11.83,NA,NA
+2014-07-24,"BE","Hiatella_arctica","Nucella_ostrina",0,0,122,NA,0,11.83,NA,NA
+2014-07-24,"BE","Limpets","Nucella_canaliculata",0,0,1,NA,2342.85714285714,11.83,NA,NA
+2014-07-24,"BE","Limpets","Nucella_ostrina",0,0,122,NA,2342.85714285714,11.83,NA,NA
+2014-07-24,"BE","Littorina_sitkana","Nucella_canaliculata",0,0,1,NA,1920,11.83,NA,NA
+2014-07-24,"BE","Littorina_sitkana","Nucella_ostrina",0,0,122,NA,1920,11.83,NA,NA
+2014-07-24,"BE","Modiolus_modiolus","Nucella_canaliculata",0,0,1,NA,0,11.83,NA,NA
+2014-07-24,"BE","Modiolus_modiolus","Nucella_ostrina",0,0,122,NA,0,11.83,NA,NA
+2014-07-24,"BE","Mytilus_californianus","Nucella_canaliculata",0,0,1,NA,0,11.83,NA,NA
+2014-07-24,"BE","Mytilus_californianus","Nucella_ostrina",0,0,122,NA,0,11.83,NA,NA
+2014-07-24,"BE","Mytilus_trossulus","Nucella_canaliculata",0,0,1,NA,240,11.83,NA,NA
+2014-07-24,"BE","Mytilus_trossulus","Nucella_ostrina",0.108910891089109,11,122,50.9816981362394,240,11.83,8.90114288318265e-06,0.00213627429196384
+2014-07-24,"BE","Nucella_ostrina","Nucella_canaliculata",0,0,1,NA,22.8571428571429,11.83,NA,NA
+2014-07-24,"BE","Nucella_ostrina","Nucella_ostrina",0,0,122,NA,22.8571428571429,11.83,NA,NA
+2014-07-24,"BE","Pollicipes_polymerus","Nucella_canaliculata",0,0,1,NA,0,11.83,NA,NA
+2014-07-24,"BE","Pollicipes_polymerus","Nucella_ostrina",0,0,122,NA,0,11.83,NA,NA
+2014-07-24,"BE","Semibalanus_cariosus","Nucella_canaliculata",0,0,1,NA,11.4285714285714,11.83,NA,NA
+2014-07-24,"BE","Semibalanus_cariosus","Nucella_ostrina",0,0,122,NA,11.4285714285714,11.83,NA,NA
+2014-07-24,"BF","Adula_californiensis","Nucella_canaliculata",0,0,7,NA,0,11.83,NA,NA
+2014-07-24,"BF","Adula_californiensis","Nucella_ostrina",0,0,309,NA,0,11.83,NA,NA
+2014-07-24,"BF","Balanus_glandula","Nucella_canaliculata",0,0,7,NA,195968,11.83,NA,NA
+2014-07-24,"BF","Balanus_glandula","Nucella_ostrina",0.0444444444444444,12,309,32.4482976339678,195968,11.83,6.98940819113404e-09,0.00136970034440015
+2014-07-24,"BF","Chthamalus_dalli","Nucella_canaliculata",0,0,7,NA,64,11.83,NA,NA
+2014-07-24,"BF","Chthamalus_dalli","Nucella_ostrina",0.0037037037037037,1,309,24.881257791181,64,11.83,2.32586193415359e-06,0.00014885516378583
+2014-07-24,"BF","Hiatella_arctica","Nucella_canaliculata",0,0,7,NA,0,11.83,NA,NA
+2014-07-24,"BF","Hiatella_arctica","Nucella_ostrina",0,0,309,NA,0,11.83,NA,NA
+2014-07-24,"BF","Limpets","Nucella_canaliculata",0,0,7,NA,2514.28571428571,11.83,NA,NA
+2014-07-24,"BF","Limpets","Nucella_ostrina",0,0,309,NA,2514.28571428571,11.83,NA,NA
+2014-07-24,"BF","Littorina_sitkana","Nucella_canaliculata",0,0,7,NA,5040,11.83,NA,NA
+2014-07-24,"BF","Littorina_sitkana","Nucella_ostrina",0,0,309,NA,5040,11.83,NA,NA
+2014-07-24,"BF","Modiolus_modiolus","Nucella_canaliculata",0,0,7,NA,0,11.83,NA,NA
+2014-07-24,"BF","Modiolus_modiolus","Nucella_ostrina",0,0,309,NA,0,11.83,NA,NA
+2014-07-24,"BF","Mytilus_californianus","Nucella_canaliculata",0,0,7,NA,11.4285714285714,11.83,NA,NA
+2014-07-24,"BF","Mytilus_californianus","Nucella_ostrina",0,0,309,NA,11.4285714285714,11.83,NA,NA
+2014-07-24,"BF","Mytilus_trossulus","Nucella_canaliculata",0.166666666666667,1,7,66.8867874851277,1348.57142857143,11.83,1.8477127586513e-06,0.00249177263452405
+2014-07-24,"BF","Mytilus_trossulus","Nucella_ostrina",0.0962962962962963,26,309,60.6059383102918,1348.57142857143,11.83,1.17820388406561e-06,0.00158889209508276
+2014-07-24,"BF","Nucella_ostrina","Nucella_canaliculata",0,0,7,NA,45.7142857142857,11.83,NA,NA
+2014-07-24,"BF","Nucella_ostrina","Nucella_ostrina",0,0,309,NA,45.7142857142857,11.83,NA,NA
+2014-07-24,"BF","Pollicipes_polymerus","Nucella_canaliculata",0,0,7,NA,125.714285714286,11.83,NA,NA
+2014-07-24,"BF","Pollicipes_polymerus","Nucella_ostrina",0,0,309,NA,125.714285714286,11.83,NA,NA
+2014-07-24,"BF","Semibalanus_cariosus","Nucella_canaliculata",0,0,7,NA,0,11.83,NA,NA
+2014-07-24,"BF","Semibalanus_cariosus","Nucella_ostrina",0,0,309,NA,0,11.83,NA,NA
+2014-07-24,"C","Adula_californiensis","Nucella_canaliculata",0,0,60,NA,0,11.83,NA,NA
+2014-07-24,"C","Adula_californiensis","Nucella_ostrina",0,0,154,NA,0,11.83,NA,NA
+2014-07-24,"C","Balanus_glandula","Nucella_canaliculata",0,0,60,NA,4904.38095238095,11.83,NA,NA
+2014-07-24,"C","Balanus_glandula","Nucella_ostrina",0.0785714285714286,11,154,27.169252685712,4904.38095238095,11.83,5.89661481833829e-07,0.00289192453985856
+2014-07-24,"C","Chthamalus_dalli","Nucella_canaliculata",0,0,60,NA,15.2380952380953,11.83,NA,NA
+2014-07-24,"C","Chthamalus_dalli","Nucella_ostrina",0,0,154,NA,15.2380952380953,11.83,NA,NA
+2014-07-24,"C","Hiatella_arctica","Nucella_canaliculata",0,0,60,NA,0,11.83,NA,NA
+2014-07-24,"C","Hiatella_arctica","Nucella_ostrina",0,0,154,NA,0,11.83,NA,NA
+2014-07-24,"C","Limpets","Nucella_canaliculata",0,0,60,NA,967.619047619045,11.83,NA,NA
+2014-07-24,"C","Limpets","Nucella_ostrina",0,0,154,NA,967.619047619045,11.83,NA,NA
+2014-07-24,"C","Littorina_sitkana","Nucella_canaliculata",0,0,60,NA,118.095238095238,11.83,NA,NA
+2014-07-24,"C","Littorina_sitkana","Nucella_ostrina",0,0,154,NA,118.095238095238,11.83,NA,NA
+2014-07-24,"C","Modiolus_modiolus","Nucella_canaliculata",0,0,60,NA,0,11.83,NA,NA
+2014-07-24,"C","Modiolus_modiolus","Nucella_ostrina",0,0,154,NA,0,11.83,NA,NA
+2014-07-24,"C","Mytilus_californianus","Nucella_canaliculata",0,0,60,NA,0,11.83,NA,NA
+2014-07-24,"C","Mytilus_californianus","Nucella_ostrina",0,0,154,NA,0,11.83,NA,NA
+2014-07-24,"C","Mytilus_trossulus","Nucella_canaliculata",0.132075471698113,7,60,76.1468706890855,9429.33333333333,11.83,1.83945480343272e-07,0.00173448324931683
+2014-07-24,"C","Mytilus_trossulus","Nucella_ostrina",0.0214285714285714,3,154,78.4139985619593,9429.33333333333,11.83,2.898135121935e-08,0.000273274821097658
+2014-07-24,"C","Nucella_ostrina","Nucella_canaliculata",0,0,60,NA,60.952380952381,11.83,NA,NA
+2014-07-24,"C","Nucella_ostrina","Nucella_ostrina",0,0,154,NA,60.952380952381,11.83,NA,NA
+2014-07-24,"C","Pollicipes_polymerus","Nucella_canaliculata",0,0,60,NA,480,11.83,NA,NA
+2014-07-24,"C","Pollicipes_polymerus","Nucella_ostrina",0,0,154,NA,480,11.83,NA,NA
+2014-07-24,"C","Semibalanus_cariosus","Nucella_canaliculata",0,0,60,NA,0,11.83,NA,NA
+2014-07-24,"C","Semibalanus_cariosus","Nucella_ostrina",0,0,154,NA,0,11.83,NA,NA
+2014-07-24,"D","Adula_californiensis","Nucella_canaliculata",0,0,13,NA,0,11.83,NA,NA
+2014-07-24,"D","Adula_californiensis","Nucella_ostrina",0,0,90,NA,0,11.83,NA,NA
+2014-07-24,"D","Balanus_glandula","Nucella_canaliculata",0,0,13,NA,27818.6666666667,11.83,NA,NA
+2014-07-24,"D","Balanus_glandula","Nucella_ostrina",0.0379746835443038,3,90,40.2848206882522,27818.6666666667,11.83,3.38856965892971e-08,0.000942654898185458
+2014-07-24,"D","Chthamalus_dalli","Nucella_canaliculata",0,0,13,NA,298.666666666667,11.83,NA,NA
+2014-07-24,"D","Chthamalus_dalli","Nucella_ostrina",0,0,90,NA,298.666666666667,11.83,NA,NA
+2014-07-24,"D","Hiatella_arctica","Nucella_canaliculata",0,0,13,NA,0,11.83,NA,NA
+2014-07-24,"D","Hiatella_arctica","Nucella_ostrina",0,0,90,NA,0,11.83,NA,NA
+2014-07-24,"D","Limpets","Nucella_canaliculata",0,0,13,NA,2628.57142857143,11.83,NA,NA
+2014-07-24,"D","Limpets","Nucella_ostrina",0,0,90,NA,2628.57142857143,11.83,NA,NA
+2014-07-24,"D","Littorina_sitkana","Nucella_canaliculata",0,0,13,NA,2620.95238095238,11.83,NA,NA
+2014-07-24,"D","Littorina_sitkana","Nucella_ostrina",0,0,90,NA,2620.95238095238,11.83,NA,NA
+2014-07-24,"D","Modiolus_modiolus","Nucella_canaliculata",0,0,13,NA,0,11.83,NA,NA
+2014-07-24,"D","Modiolus_modiolus","Nucella_ostrina",0,0,90,NA,0,11.83,NA,NA
+2014-07-24,"D","Mytilus_californianus","Nucella_canaliculata",0,0,13,NA,0,11.83,NA,NA
+2014-07-24,"D","Mytilus_californianus","Nucella_ostrina",0,0,90,NA,0,11.83,NA,NA
+2014-07-24,"D","Mytilus_trossulus","Nucella_canaliculata",0.181818181818182,2,13,79.0098979849178,7283.80952380952,11.83,3.15934627940337e-07,0.00230120765189305
+2014-07-24,"D","Mytilus_trossulus","Nucella_ostrina",0.10126582278481,8,90,63.3578863224304,7283.80952380952,11.83,2.1943385616725e-07,0.00159831441139726
+2014-07-24,"D","Nucella_ostrina","Nucella_canaliculata",0,0,13,NA,22.8571428571428,11.83,NA,NA
+2014-07-24,"D","Nucella_ostrina","Nucella_ostrina",0,0,90,NA,22.8571428571428,11.83,NA,NA
+2014-07-24,"D","Pollicipes_polymerus","Nucella_canaliculata",0,0,13,NA,11.4285714285714,11.83,NA,NA
+2014-07-24,"D","Pollicipes_polymerus","Nucella_ostrina",0,0,90,NA,11.4285714285714,11.83,NA,NA
+2014-07-24,"D","Semibalanus_cariosus","Nucella_canaliculata",0,0,13,NA,0,11.83,NA,NA
+2014-07-24,"D","Semibalanus_cariosus","Nucella_ostrina",0,0,90,NA,0,11.83,NA,NA
+2014-07-24,"E","Adula_californiensis","Nucella_canaliculata",0,0,27,NA,0,11.83,NA,NA
+2014-07-24,"E","Adula_californiensis","Nucella_ostrina",0,0,123,NA,0,11.83,NA,NA
+2014-07-24,"E","Balanus_glandula","Nucella_canaliculata",0.04,1,27,45.4668980473758,2255.23809523809,11.83,3.90096691179709e-07,0.000879760918774811
+2014-07-24,"E","Balanus_glandula","Nucella_ostrina",0.0377358490566038,4,123,30.7752513555375,2255.23809523809,11.83,5.4370098323187e-07,0.00122617516980292
+2014-07-24,"E","Chthamalus_dalli","Nucella_canaliculata",0,0,27,NA,0,11.83,NA,NA
+2014-07-24,"E","Chthamalus_dalli","Nucella_ostrina",0,0,123,NA,0,11.83,NA,NA
+2014-07-24,"E","Hiatella_arctica","Nucella_canaliculata",0,0,27,NA,0,11.83,NA,NA
+2014-07-24,"E","Hiatella_arctica","Nucella_ostrina",0,0,123,NA,0,11.83,NA,NA
+2014-07-24,"E","Limpets","Nucella_canaliculata",0,0,27,NA,350.47619047619,11.83,NA,NA
+2014-07-24,"E","Limpets","Nucella_ostrina",0,0,123,NA,350.47619047619,11.83,NA,NA
+2014-07-24,"E","Littorina_sitkana","Nucella_canaliculata",0,0,27,NA,628.57142857143,11.83,NA,NA
+2014-07-24,"E","Littorina_sitkana","Nucella_ostrina",0,0,123,NA,628.57142857143,11.83,NA,NA
+2014-07-24,"E","Modiolus_modiolus","Nucella_canaliculata",0,0,27,NA,0,11.83,NA,NA
+2014-07-24,"E","Modiolus_modiolus","Nucella_ostrina",0,0,123,NA,0,11.83,NA,NA
+2014-07-24,"E","Mytilus_californianus","Nucella_canaliculata",0,0,27,NA,0,11.83,NA,NA
+2014-07-24,"E","Mytilus_californianus","Nucella_ostrina",0,0,123,NA,0,11.83,NA,NA
+2014-07-24,"E","Mytilus_trossulus","Nucella_canaliculata",0.04,1,27,83.5135453907743,9234.2857142857,11.83,5.1868031084636e-08,0.00047896421847298
+2014-07-24,"E","Mytilus_trossulus","Nucella_ostrina",0.122641509433962,13,123,68.2745697330772,9234.2857142857,11.83,1.94524902986936e-07,0.00179629853272507
+2014-07-24,"E","Nucella_ostrina","Nucella_canaliculata",0,0,27,NA,114.285714285714,11.83,NA,NA
+2014-07-24,"E","Nucella_ostrina","Nucella_ostrina",0,0,123,NA,114.285714285714,11.83,NA,NA
+2014-07-24,"E","Pollicipes_polymerus","Nucella_canaliculata",0,0,27,NA,106.666666666667,11.83,NA,NA
+2014-07-24,"E","Pollicipes_polymerus","Nucella_ostrina",0,0,123,NA,106.666666666667,11.83,NA,NA
+2014-07-24,"E","Semibalanus_cariosus","Nucella_canaliculata",0,0,27,NA,0,11.83,NA,NA
+2014-07-24,"E","Semibalanus_cariosus","Nucella_ostrina",0,0,123,NA,0,11.83,NA,NA
+2014-07-24,"F","Adula_californiensis","Nucella_canaliculata",0,0,5,NA,0,11.83,NA,NA
+2014-07-24,"F","Adula_californiensis","Nucella_ostrina",0,0,84,NA,0,11.83,NA,NA
+2014-07-24,"F","Balanus_glandula","Nucella_canaliculata",0,0,5,NA,30229.3333333333,11.83,NA,NA
+2014-07-24,"F","Balanus_glandula","Nucella_ostrina",0.0833333333333333,6,84,30.0608165981586,30229.3333333333,11.83,9.17042388342273e-08,0.00277215800379947
+2014-07-24,"F","Chthamalus_dalli","Nucella_canaliculata",0,0,5,NA,42.6666666666667,11.83,NA,NA
+2014-07-24,"F","Chthamalus_dalli","Nucella_ostrina",0,0,84,NA,42.6666666666667,11.83,NA,NA
+2014-07-24,"F","Hiatella_arctica","Nucella_canaliculata",0,0,5,NA,0,11.83,NA,NA
+2014-07-24,"F","Hiatella_arctica","Nucella_ostrina",0,0,84,NA,0,11.83,NA,NA
+2014-07-24,"F","Limpets","Nucella_canaliculata",0,0,5,NA,754.285714285715,11.83,NA,NA
+2014-07-24,"F","Limpets","Nucella_ostrina",0,0,84,NA,754.285714285715,11.83,NA,NA
+2014-07-24,"F","Littorina_sitkana","Nucella_canaliculata",0,0,5,NA,6899.04761904762,11.83,NA,NA
+2014-07-24,"F","Littorina_sitkana","Nucella_ostrina",0,0,84,NA,6899.04761904762,11.83,NA,NA
+2014-07-24,"F","Modiolus_modiolus","Nucella_canaliculata",0,0,5,NA,0,11.83,NA,NA
+2014-07-24,"F","Modiolus_modiolus","Nucella_ostrina",0,0,84,NA,0,11.83,NA,NA
+2014-07-24,"F","Mytilus_californianus","Nucella_canaliculata",0,0,5,NA,0,11.83,NA,NA
+2014-07-24,"F","Mytilus_californianus","Nucella_ostrina",0,0,84,NA,0,11.83,NA,NA
+2014-07-24,"F","Mytilus_trossulus","Nucella_canaliculata",0.666666666666667,2,5,62.1320381708076,6613.33333333333,11.83,1.62245525144009e-06,0.0107298373961905
+2014-07-24,"F","Mytilus_trossulus","Nucella_ostrina",0.0833333333333333,6,84,48.7848259425981,6613.33333333333,11.83,2.58293561740682e-07,0.00170818142164504
+2014-07-24,"F","Nucella_ostrina","Nucella_canaliculata",0,0,5,NA,19.0476190476191,11.83,NA,NA
+2014-07-24,"F","Nucella_ostrina","Nucella_ostrina",0,0,84,NA,19.0476190476191,11.83,NA,NA
+2014-07-24,"F","Pollicipes_polymerus","Nucella_canaliculata",0,0,5,NA,0,11.83,NA,NA
+2014-07-24,"F","Pollicipes_polymerus","Nucella_ostrina",0,0,84,NA,0,11.83,NA,NA
+2014-07-24,"F","Semibalanus_cariosus","Nucella_canaliculata",0,0,5,NA,0,11.83,NA,NA
+2014-07-24,"F","Semibalanus_cariosus","Nucella_ostrina",0,0,84,NA,0,11.83,NA,NA
+2014-07-24,"G","Adula_californiensis","Nucella_canaliculata",0,0,82,NA,0,11.83,NA,NA
+2014-07-24,"G","Adula_californiensis","Nucella_ostrina",0,0,232,NA,0,11.83,NA,NA
+2014-07-24,"G","Balanus_glandula","Nucella_canaliculata",0,0,82,NA,15051.4285714286,11.83,NA,NA
+2014-07-24,"G","Balanus_glandula","Nucella_ostrina",0,0,232,NA,15051.4285714286,11.83,NA,NA
+2014-07-24,"G","Chthamalus_dalli","Nucella_canaliculata",0,0,82,NA,327.619047619047,11.83,NA,NA
+2014-07-24,"G","Chthamalus_dalli","Nucella_ostrina",0,0,232,NA,327.619047619047,11.83,NA,NA
+2014-07-24,"G","Hiatella_arctica","Nucella_canaliculata",0,0,82,NA,0,11.83,NA,NA
+2014-07-24,"G","Hiatella_arctica","Nucella_ostrina",0,0,232,NA,0,11.83,NA,NA
+2014-07-24,"G","Limpets","Nucella_canaliculata",0,0,82,NA,853.333333333334,11.83,NA,NA
+2014-07-24,"G","Limpets","Nucella_ostrina",0,0,232,NA,853.333333333334,11.83,NA,NA
+2014-07-24,"G","Littorina_sitkana","Nucella_canaliculata",0,0,82,NA,830.476190476191,11.83,NA,NA
+2014-07-24,"G","Littorina_sitkana","Nucella_ostrina",0,0,232,NA,830.476190476191,11.83,NA,NA
+2014-07-24,"G","Modiolus_modiolus","Nucella_canaliculata",0,0,82,NA,0,11.83,NA,NA
+2014-07-24,"G","Modiolus_modiolus","Nucella_ostrina",0,0,232,NA,0,11.83,NA,NA
+2014-07-24,"G","Mytilus_californianus","Nucella_canaliculata",0,0,82,NA,234.666666666667,11.83,NA,NA
+2014-07-24,"G","Mytilus_californianus","Nucella_ostrina",0,0,232,NA,234.666666666667,11.83,NA,NA
+2014-07-24,"G","Mytilus_trossulus","Nucella_canaliculata",0.223880597014925,15,82,70.5510545297228,11106.2857142857,11.83,2.857222787192e-07,0.00317331326239221
+2014-07-24,"G","Mytilus_trossulus","Nucella_ostrina",0.110047846889952,23,232,69.8226949971075,11106.2857142857,11.83,1.41911013145678e-07,0.00157610425799965
+2014-07-24,"G","Nucella_ostrina","Nucella_canaliculata",0,0,82,NA,434.285714285714,11.83,NA,NA
+2014-07-24,"G","Nucella_ostrina","Nucella_ostrina",0,0,232,NA,434.285714285714,11.83,NA,NA
+2014-07-24,"G","Pollicipes_polymerus","Nucella_canaliculata",0,0,82,NA,171.428571428572,11.83,NA,NA
+2014-07-24,"G","Pollicipes_polymerus","Nucella_ostrina",0,0,232,NA,171.428571428572,11.83,NA,NA
+2014-07-24,"G","Semibalanus_cariosus","Nucella_canaliculata",0,0,82,NA,0,11.83,NA,NA
+2014-07-24,"G","Semibalanus_cariosus","Nucella_ostrina",0,0,232,NA,0,11.83,NA,NA
+2014-09-07,"A","Adula_californiensis","Nucella_canaliculata",0,0,120,NA,0,12.04,NA,NA
+2014-09-07,"A","Adula_californiensis","Nucella_ostrina",0,0,42,NA,0,12.04,NA,NA
+2014-09-07,"A","Balanus_glandula","Nucella_canaliculata",0.0540540540540541,6,120,26.1415535321133,53760,12.04,3.84625096681647e-08,0.00206774451976054
+2014-09-07,"A","Balanus_glandula","Nucella_ostrina",0.103448275862069,3,42,15.2476169391905,53760,12.04,1.2620077559779e-07,0.0067845536961372
+2014-09-07,"A","Chthamalus_dalli","Nucella_canaliculata",0,0,120,NA,64,12.04,NA,NA
+2014-09-07,"A","Chthamalus_dalli","Nucella_ostrina",0,0,42,NA,64,12.04,NA,NA
+2014-09-07,"A","Hiatella_arctica","Nucella_canaliculata",0,0,120,NA,0,12.04,NA,NA
+2014-09-07,"A","Hiatella_arctica","Nucella_ostrina",0,0,42,NA,0,12.04,NA,NA
+2014-09-07,"A","Limpets","Nucella_canaliculata",0,0,120,NA,1817.14285714286,12.04,NA,NA
+2014-09-07,"A","Limpets","Nucella_ostrina",0,0,42,NA,1817.14285714286,12.04,NA,NA
+2014-09-07,"A","Littorina_sitkana","Nucella_canaliculata",0,0,120,NA,2708.57142857143,12.04,NA,NA
+2014-09-07,"A","Littorina_sitkana","Nucella_ostrina",0,0,42,NA,2708.57142857143,12.04,NA,NA
+2014-09-07,"A","Modiolus_modiolus","Nucella_canaliculata",0,0,120,NA,0,12.04,NA,NA
+2014-09-07,"A","Modiolus_modiolus","Nucella_ostrina",0,0,42,NA,0,12.04,NA,NA
+2014-09-07,"A","Mytilus_californianus","Nucella_canaliculata",0,0,120,NA,0,12.04,NA,NA
+2014-09-07,"A","Mytilus_californianus","Nucella_ostrina",0,0,42,NA,0,12.04,NA,NA
+2014-09-07,"A","Mytilus_trossulus","Nucella_canaliculata",0.027027027027027,3,120,78.2585271338362,5056,12.04,6.83061080319685e-08,0.000345355682209632
+2014-09-07,"A","Mytilus_trossulus","Nucella_ostrina",0.344827586206897,10,42,76.6218363574575,5056,12.04,8.90107336323331e-07,0.00450038269245076
+2014-09-07,"A","Nucella_ostrina","Nucella_canaliculata",0,0,120,NA,68.5714285714286,12.04,NA,NA
+2014-09-07,"A","Nucella_ostrina","Nucella_ostrina",0,0,42,NA,68.5714285714286,12.04,NA,NA
+2014-09-07,"A","Pollicipes_polymerus","Nucella_canaliculata",0,0,120,NA,11.4285714285714,12.04,NA,NA
+2014-09-07,"A","Pollicipes_polymerus","Nucella_ostrina",0,0,42,NA,11.4285714285714,12.04,NA,NA
+2014-09-07,"A","Semibalanus_cariosus","Nucella_canaliculata",0,0,120,NA,0,12.04,NA,NA
+2014-09-07,"A","Semibalanus_cariosus","Nucella_ostrina",0,0,42,NA,0,12.04,NA,NA
+2014-09-07,"AB","Adula_californiensis","Nucella_canaliculata",0,0,2,NA,0,12.04,NA,NA
+2014-09-07,"AB","Adula_californiensis","Nucella_ostrina",0,0,7,NA,0,12.04,NA,NA
+2014-09-07,"AB","Balanus_glandula","Nucella_canaliculata",0,0,2,NA,20270.8571428571,12.04,NA,NA
+2014-09-07,"AB","Balanus_glandula","Nucella_ostrina",0,0,7,NA,20270.8571428571,12.04,NA,NA
+2014-09-07,"AB","Chthamalus_dalli","Nucella_canaliculata",0,0,2,NA,128,12.04,NA,NA
+2014-09-07,"AB","Chthamalus_dalli","Nucella_ostrina",0,0,7,NA,128,12.04,NA,NA
+2014-09-07,"AB","Hiatella_arctica","Nucella_canaliculata",0,0,2,NA,0,12.04,NA,NA
+2014-09-07,"AB","Hiatella_arctica","Nucella_ostrina",0,0,7,NA,0,12.04,NA,NA
+2014-09-07,"AB","Limpets","Nucella_canaliculata",0,0,2,NA,497.142857142857,12.04,NA,NA
+2014-09-07,"AB","Limpets","Nucella_ostrina",0,0,7,NA,497.142857142857,12.04,NA,NA
+2014-09-07,"AB","Littorina_sitkana","Nucella_canaliculata",0,0,2,NA,1068.57142857143,12.04,NA,NA
+2014-09-07,"AB","Littorina_sitkana","Nucella_ostrina",0,0,7,NA,1068.57142857143,12.04,NA,NA
+2014-09-07,"AB","Modiolus_modiolus","Nucella_canaliculata",0,0,2,NA,0,12.04,NA,NA
+2014-09-07,"AB","Modiolus_modiolus","Nucella_ostrina",0,0,7,NA,0,12.04,NA,NA
+2014-09-07,"AB","Mytilus_californianus","Nucella_canaliculata",0,0,2,NA,0,12.04,NA,NA
+2014-09-07,"AB","Mytilus_californianus","Nucella_ostrina",0,0,7,NA,0,12.04,NA,NA
+2014-09-07,"AB","Mytilus_trossulus","Nucella_canaliculata",0,0,2,NA,628.571428571426,12.04,NA,NA
+2014-09-07,"AB","Mytilus_trossulus","Nucella_ostrina",0,0,7,NA,628.571428571426,12.04,NA,NA
+2014-09-07,"AB","Nucella_ostrina","Nucella_canaliculata",0,0,2,NA,0,12.04,NA,NA
+2014-09-07,"AB","Nucella_ostrina","Nucella_ostrina",0,0,7,NA,0,12.04,NA,NA
+2014-09-07,"AB","Pollicipes_polymerus","Nucella_canaliculata",0,0,2,NA,680,12.04,NA,NA
+2014-09-07,"AB","Pollicipes_polymerus","Nucella_ostrina",0,0,7,NA,680,12.04,NA,NA
+2014-09-07,"AB","Semibalanus_cariosus","Nucella_canaliculata",0,0,2,NA,11.4285714285715,12.04,NA,NA
+2014-09-07,"AB","Semibalanus_cariosus","Nucella_ostrina",0,0,7,NA,11.4285714285715,12.04,NA,NA
+2014-09-07,"AC","Adula_californiensis","Nucella_canaliculata",0,0,0,NA,0,12.04,NA,NA
+2014-09-07,"AC","Adula_californiensis","Nucella_ostrina",0,0,6,NA,0,12.04,NA,NA
+2014-09-07,"AC","Balanus_glandula","Nucella_canaliculata",0,0,0,NA,67225.9047619048,12.04,NA,NA
+2014-09-07,"AC","Balanus_glandula","Nucella_ostrina",0.25,1,6,7.90795563103413,67225.9047619048,12.04,4.70261179497831e-07,0.0316137332661422
+2014-09-07,"AC","Chthamalus_dalli","Nucella_canaliculata",0,0,0,NA,11.4285714285714,12.04,NA,NA
+2014-09-07,"AC","Chthamalus_dalli","Nucella_ostrina",0,0,6,NA,11.4285714285714,12.04,NA,NA
+2014-09-07,"AC","Hiatella_arctica","Nucella_canaliculata",0,0,0,NA,0,12.04,NA,NA
+2014-09-07,"AC","Hiatella_arctica","Nucella_ostrina",0,0,6,NA,0,12.04,NA,NA
+2014-09-07,"AC","Limpets","Nucella_canaliculata",0,0,0,NA,137.142857142857,12.04,NA,NA
+2014-09-07,"AC","Limpets","Nucella_ostrina",0,0,6,NA,137.142857142857,12.04,NA,NA
+2014-09-07,"AC","Littorina_sitkana","Nucella_canaliculata",0,0,0,NA,4243.80952380952,12.04,NA,NA
+2014-09-07,"AC","Littorina_sitkana","Nucella_ostrina",0,0,6,NA,4243.80952380952,12.04,NA,NA
+2014-09-07,"AC","Modiolus_modiolus","Nucella_canaliculata",0,0,0,NA,0,12.04,NA,NA
+2014-09-07,"AC","Modiolus_modiolus","Nucella_ostrina",0,0,6,NA,0,12.04,NA,NA
+2014-09-07,"AC","Mytilus_californianus","Nucella_canaliculata",0,0,0,NA,0,12.04,NA,NA
+2014-09-07,"AC","Mytilus_californianus","Nucella_ostrina",0,0,6,NA,0,12.04,NA,NA
+2014-09-07,"AC","Mytilus_trossulus","Nucella_canaliculata",0,0,0,NA,800,12.04,NA,NA
+2014-09-07,"AC","Mytilus_trossulus","Nucella_ostrina",0.25,1,6,64.5540243467937,800,12.04,4.84090656101011e-06,0.00387272524880809
+2014-09-07,"AC","Nucella_ostrina","Nucella_canaliculata",0,0,0,NA,11.4285714285714,12.04,NA,NA
+2014-09-07,"AC","Nucella_ostrina","Nucella_ostrina",0,0,6,NA,11.4285714285714,12.04,NA,NA
+2014-09-07,"AC","Pollicipes_polymerus","Nucella_canaliculata",0,0,0,NA,0,12.04,NA,NA
+2014-09-07,"AC","Pollicipes_polymerus","Nucella_ostrina",0,0,6,NA,0,12.04,NA,NA
+2014-09-07,"AC","Semibalanus_cariosus","Nucella_canaliculata",0,0,0,NA,0,12.04,NA,NA
+2014-09-07,"AC","Semibalanus_cariosus","Nucella_ostrina",0,0,6,NA,0,12.04,NA,NA
+2014-09-07,"AD","Adula_californiensis","Nucella_canaliculata",0,0,66,NA,0,12.04,NA,NA
+2014-09-07,"AD","Adula_californiensis","Nucella_ostrina",0,0,11,NA,0,12.04,NA,NA
+2014-09-07,"AD","Balanus_glandula","Nucella_canaliculata",0.0491803278688525,3,66,34.7956454236278,22392.380952381,12.04,6.31198922876038e-08,0.00141340467377728
+2014-09-07,"AD","Balanus_glandula","Nucella_ostrina",0.1,1,11,17.7931724136947,22392.380952381,12.04,2.50984174808395e-07,0.00562013325532855
+2014-09-07,"AD","Chthamalus_dalli","Nucella_canaliculata",0,0,66,NA,22.8571428571428,12.04,NA,NA
+2014-09-07,"AD","Chthamalus_dalli","Nucella_ostrina",0,0,11,NA,22.8571428571428,12.04,NA,NA
+2014-09-07,"AD","Hiatella_arctica","Nucella_canaliculata",0,0,66,NA,0,12.04,NA,NA
+2014-09-07,"AD","Hiatella_arctica","Nucella_ostrina",0,0,11,NA,0,12.04,NA,NA
+2014-09-07,"AD","Limpets","Nucella_canaliculata",0,0,66,NA,2434.28571428571,12.04,NA,NA
+2014-09-07,"AD","Limpets","Nucella_ostrina",0,0,11,NA,2434.28571428571,12.04,NA,NA
+2014-09-07,"AD","Littorina_sitkana","Nucella_canaliculata",0,0,66,NA,2883.80952380952,12.04,NA,NA
+2014-09-07,"AD","Littorina_sitkana","Nucella_ostrina",0,0,11,NA,2883.80952380952,12.04,NA,NA
+2014-09-07,"AD","Modiolus_modiolus","Nucella_canaliculata",0,0,66,NA,0,12.04,NA,NA
+2014-09-07,"AD","Modiolus_modiolus","Nucella_ostrina",0,0,11,NA,0,12.04,NA,NA
+2014-09-07,"AD","Mytilus_californianus","Nucella_canaliculata",0,0,66,NA,38.095238095238,12.04,NA,NA
+2014-09-07,"AD","Mytilus_californianus","Nucella_ostrina",0,0,11,NA,38.095238095238,12.04,NA,NA
+2014-09-07,"AD","Mytilus_trossulus","Nucella_canaliculata",0.0327868852459016,2,66,90.7245764546474,2624.7619047619,12.04,1.37684577775003e-07,0.000361389234617056
+2014-09-07,"AD","Mytilus_trossulus","Nucella_ostrina",0,0,11,NA,2624.7619047619,12.04,NA,NA
+2014-09-07,"AD","Nucella_ostrina","Nucella_canaliculata",0,0,66,NA,11.4285714285714,12.04,NA,NA
+2014-09-07,"AD","Nucella_ostrina","Nucella_ostrina",0,0,11,NA,11.4285714285714,12.04,NA,NA
+2014-09-07,"AD","Pollicipes_polymerus","Nucella_canaliculata",0,0,66,NA,41.9047619047619,12.04,NA,NA
+2014-09-07,"AD","Pollicipes_polymerus","Nucella_ostrina",0,0,11,NA,41.9047619047619,12.04,NA,NA
+2014-09-07,"AD","Semibalanus_cariosus","Nucella_canaliculata",0,0,66,NA,0,12.04,NA,NA
+2014-09-07,"AD","Semibalanus_cariosus","Nucella_ostrina",0,0,11,NA,0,12.04,NA,NA
+2014-09-07,"AE","Adula_californiensis","Nucella_canaliculata",0,0,1,NA,0,12.04,NA,NA
+2014-09-07,"AE","Adula_californiensis","Nucella_ostrina",0,0,38,NA,0,12.04,NA,NA
+2014-09-07,"AE","Balanus_glandula","Nucella_canaliculata",0,0,1,NA,39155.8095238095,12.04,NA,NA
+2014-09-07,"AE","Balanus_glandula","Nucella_ostrina",0.0285714285714286,1,38,24.122836125502,39155.8095238095,12.04,3.02487464730755e-08,0.00118441415523375
+2014-09-07,"AE","Chthamalus_dalli","Nucella_canaliculata",0,0,1,NA,595.047619047619,12.04,NA,NA
+2014-09-07,"AE","Chthamalus_dalli","Nucella_ostrina",0,0,38,NA,595.047619047619,12.04,NA,NA
+2014-09-07,"AE","Hiatella_arctica","Nucella_canaliculata",0,0,1,NA,0,12.04,NA,NA
+2014-09-07,"AE","Hiatella_arctica","Nucella_ostrina",0,0,38,NA,0,12.04,NA,NA
+2014-09-07,"AE","Limpets","Nucella_canaliculata",0,0,1,NA,2129.52380952381,12.04,NA,NA
+2014-09-07,"AE","Limpets","Nucella_ostrina",0,0,38,NA,2129.52380952381,12.04,NA,NA
+2014-09-07,"AE","Littorina_sitkana","Nucella_canaliculata",0,0,1,NA,4453.33333333333,12.04,NA,NA
+2014-09-07,"AE","Littorina_sitkana","Nucella_ostrina",0,0,38,NA,4453.33333333333,12.04,NA,NA
+2014-09-07,"AE","Modiolus_modiolus","Nucella_canaliculata",0,0,1,NA,0,12.04,NA,NA
+2014-09-07,"AE","Modiolus_modiolus","Nucella_ostrina",0,0,38,NA,0,12.04,NA,NA
+2014-09-07,"AE","Mytilus_californianus","Nucella_canaliculata",0,0,1,NA,0,12.04,NA,NA
+2014-09-07,"AE","Mytilus_californianus","Nucella_ostrina",0,0,38,NA,0,12.04,NA,NA
+2014-09-07,"AE","Mytilus_trossulus","Nucella_canaliculata",0,0,1,NA,2160,12.04,NA,NA
+2014-09-07,"AE","Mytilus_trossulus","Nucella_ostrina",0.0571428571428571,2,38,73.6869934225584,2160,12.04,3.59018942506176e-07,0.00077548091581334
+2014-09-07,"AE","Nucella_ostrina","Nucella_canaliculata",0,0,1,NA,0,12.04,NA,NA
+2014-09-07,"AE","Nucella_ostrina","Nucella_ostrina",0,0,38,NA,0,12.04,NA,NA
+2014-09-07,"AE","Pollicipes_polymerus","Nucella_canaliculata",0,0,1,NA,7.61904761904763,12.04,NA,NA
+2014-09-07,"AE","Pollicipes_polymerus","Nucella_ostrina",0,0,38,NA,7.61904761904763,12.04,NA,NA
+2014-09-07,"AE","Semibalanus_cariosus","Nucella_canaliculata",0,0,1,NA,0,12.04,NA,NA
+2014-09-07,"AE","Semibalanus_cariosus","Nucella_ostrina",0,0,38,NA,0,12.04,NA,NA
+2014-09-07,"AF","Adula_californiensis","Nucella_canaliculata",0,0,6,NA,0,12.04,NA,NA
+2014-09-07,"AF","Adula_californiensis","Nucella_ostrina",0,0,39,NA,0,12.04,NA,NA
+2014-09-07,"AF","Balanus_glandula","Nucella_canaliculata",0.25,1,6,26.8124087937477,80213.3333333333,12.04,1.16240538243398e-07,0.00932404104096373
+2014-09-07,"AF","Balanus_glandula","Nucella_ostrina",0.266666666666667,8,39,22.6285403461395,80213.3333333333,12.04,1.46914826774213e-07,0.0117845279716489
+2014-09-07,"AF","Chthamalus_dalli","Nucella_canaliculata",0,0,6,NA,213.333333333333,12.04,NA,NA
+2014-09-07,"AF","Chthamalus_dalli","Nucella_ostrina",0,0,39,NA,213.333333333333,12.04,NA,NA
+2014-09-07,"AF","Hiatella_arctica","Nucella_canaliculata",0,0,6,NA,0,12.04,NA,NA
+2014-09-07,"AF","Hiatella_arctica","Nucella_ostrina",0,0,39,NA,0,12.04,NA,NA
+2014-09-07,"AF","Limpets","Nucella_canaliculata",0,0,6,NA,556.190476190478,12.04,NA,NA
+2014-09-07,"AF","Limpets","Nucella_ostrina",0,0,39,NA,556.190476190478,12.04,NA,NA
+2014-09-07,"AF","Littorina_sitkana","Nucella_canaliculata",0,0,6,NA,3455.2380952381,12.04,NA,NA
+2014-09-07,"AF","Littorina_sitkana","Nucella_ostrina",0,0,39,NA,3455.2380952381,12.04,NA,NA
+2014-09-07,"AF","Modiolus_modiolus","Nucella_canaliculata",0,0,6,NA,0,12.04,NA,NA
+2014-09-07,"AF","Modiolus_modiolus","Nucella_ostrina",0,0,39,NA,0,12.04,NA,NA
+2014-09-07,"AF","Mytilus_californianus","Nucella_canaliculata",0,0,6,NA,3.8095238095238,12.04,NA,NA
+2014-09-07,"AF","Mytilus_californianus","Nucella_ostrina",0,0,39,NA,3.8095238095238,12.04,NA,NA
+2014-09-07,"AF","Mytilus_trossulus","Nucella_canaliculata",0.25,1,6,81.3722305376912,3916.19047619048,12.04,7.84512704350203e-07,0.0030723011812267
+2014-09-07,"AF","Mytilus_trossulus","Nucella_ostrina",0.0333333333333333,1,39,27.2615151457051,3916.19047619048,12.04,3.12223040658544e-07,0.00122272489827422
+2014-09-07,"AF","Nucella_ostrina","Nucella_canaliculata",0,0,6,NA,0,12.04,NA,NA
+2014-09-07,"AF","Nucella_ostrina","Nucella_ostrina",0,0,39,NA,0,12.04,NA,NA
+2014-09-07,"AF","Pollicipes_polymerus","Nucella_canaliculata",0,0,6,NA,0,12.04,NA,NA
+2014-09-07,"AF","Pollicipes_polymerus","Nucella_ostrina",0,0,39,NA,0,12.04,NA,NA
+2014-09-07,"AF","Semibalanus_cariosus","Nucella_canaliculata",0,0,6,NA,0,12.04,NA,NA
+2014-09-07,"AF","Semibalanus_cariosus","Nucella_ostrina",0,0,39,NA,0,12.04,NA,NA
+2014-09-07,"AG","Adula_californiensis","Nucella_canaliculata",0,0,20,NA,0,12.04,NA,NA
+2014-09-07,"AG","Adula_californiensis","Nucella_ostrina",0,0,131,NA,0,12.04,NA,NA
+2014-09-07,"AG","Balanus_glandula","Nucella_canaliculata",0.125,2,20,47.8538026807888,16496.4571428571,12.04,1.58344460769887e-07,0.00261212261089926
+2014-09-07,"AG","Balanus_glandula","Nucella_ostrina",0.05,6,131,38.9196246710809,16496.4571428571,12.04,7.78772626438857e-08,0.00128469892560789
+2014-09-07,"AG","Chthamalus_dalli","Nucella_canaliculata",0,0,20,NA,426.057142857143,12.04,NA,NA
+2014-09-07,"AG","Chthamalus_dalli","Nucella_ostrina",0,0,131,NA,426.057142857143,12.04,NA,NA
+2014-09-07,"AG","Hiatella_arctica","Nucella_canaliculata",0,0,20,NA,0,12.04,NA,NA
+2014-09-07,"AG","Hiatella_arctica","Nucella_ostrina",0,0,131,NA,0,12.04,NA,NA
+2014-09-07,"AG","Limpets","Nucella_canaliculata",0,0,20,NA,598.857142857143,12.04,NA,NA
+2014-09-07,"AG","Limpets","Nucella_ostrina",0,0,131,NA,598.857142857143,12.04,NA,NA
+2014-09-07,"AG","Littorina_sitkana","Nucella_canaliculata",0,0,20,NA,2546.28571428571,12.04,NA,NA
+2014-09-07,"AG","Littorina_sitkana","Nucella_ostrina",0,0,131,NA,2546.28571428571,12.04,NA,NA
+2014-09-07,"AG","Modiolus_modiolus","Nucella_canaliculata",0,0,20,NA,0,12.04,NA,NA
+2014-09-07,"AG","Modiolus_modiolus","Nucella_ostrina",0,0,131,NA,0,12.04,NA,NA
+2014-09-07,"AG","Mytilus_californianus","Nucella_canaliculata",0,0,20,NA,0,12.04,NA,NA
+2014-09-07,"AG","Mytilus_californianus","Nucella_ostrina",0,0,131,NA,0,12.04,NA,NA
+2014-09-07,"AG","Mytilus_trossulus","Nucella_canaliculata",0.125,2,20,68.8537573740381,3325.71428571428,12.04,5.45880313382768e-07,0.00181544195650726
+2014-09-07,"AG","Mytilus_trossulus","Nucella_ostrina",0.0416666666666667,5,131,69.8912846886959,3325.71428571428,12.04,1.79258929637809e-07,0.000596163983138312
+2014-09-07,"AG","Nucella_ostrina","Nucella_canaliculata",0,0,20,NA,11.4285714285714,12.04,NA,NA
+2014-09-07,"AG","Nucella_ostrina","Nucella_ostrina",0,0,131,NA,11.4285714285714,12.04,NA,NA
+2014-09-07,"AG","Pollicipes_polymerus","Nucella_canaliculata",0,0,20,NA,0,12.04,NA,NA
+2014-09-07,"AG","Pollicipes_polymerus","Nucella_ostrina",0,0,131,NA,0,12.04,NA,NA
+2014-09-07,"AG","Semibalanus_cariosus","Nucella_canaliculata",0,0,20,NA,9.14285714285714,12.04,NA,NA
+2014-09-07,"AG","Semibalanus_cariosus","Nucella_ostrina",0,0,131,NA,9.14285714285714,12.04,NA,NA
+2014-09-07,"B","Adula_californiensis","Nucella_canaliculata",0,0,104,NA,0,12.04,NA,NA
+2014-09-07,"B","Adula_californiensis","Nucella_ostrina",0,0,6,NA,0,12.04,NA,NA
+2014-09-07,"B","Balanus_glandula","Nucella_canaliculata",0.195402298850575,17,104,14.1284224841557,35392,12.04,3.90778705830138e-07,0.0138304399567403
+2014-09-07,"B","Balanus_glandula","Nucella_ostrina",0.2,1,6,56.7335375796614,35392,12.04,9.96058912615923e-08,0.00352525170353027
+2014-09-07,"B","Chthamalus_dalli","Nucella_canaliculata",0,0,104,NA,1578.66666666667,12.04,NA,NA
+2014-09-07,"B","Chthamalus_dalli","Nucella_ostrina",0,0,6,NA,1578.66666666667,12.04,NA,NA
+2014-09-07,"B","Hiatella_arctica","Nucella_canaliculata",0,0,104,NA,0,12.04,NA,NA
+2014-09-07,"B","Hiatella_arctica","Nucella_ostrina",0,0,6,NA,0,12.04,NA,NA
+2014-09-07,"B","Limpets","Nucella_canaliculata",0,0,104,NA,5070.47619047619,12.04,NA,NA
+2014-09-07,"B","Limpets","Nucella_ostrina",0,0,6,NA,5070.47619047619,12.04,NA,NA
+2014-09-07,"B","Littorina_sitkana","Nucella_canaliculata",0,0,104,NA,2914.28571428572,12.04,NA,NA
+2014-09-07,"B","Littorina_sitkana","Nucella_ostrina",0,0,6,NA,2914.28571428572,12.04,NA,NA
+2014-09-07,"B","Modiolus_modiolus","Nucella_canaliculata",0,0,104,NA,0,12.04,NA,NA
+2014-09-07,"B","Modiolus_modiolus","Nucella_ostrina",0,0,6,NA,0,12.04,NA,NA
+2014-09-07,"B","Mytilus_californianus","Nucella_canaliculata",0,0,104,NA,3.8095238095238,12.04,NA,NA
+2014-09-07,"B","Mytilus_californianus","Nucella_ostrina",0,0,6,NA,3.8095238095238,12.04,NA,NA
+2014-09-07,"B","Mytilus_trossulus","Nucella_canaliculata",0,0,104,NA,899.04761904762,12.04,NA,NA
+2014-09-07,"B","Mytilus_trossulus","Nucella_ostrina",0,0,6,NA,899.04761904762,12.04,NA,NA
+2014-09-07,"B","Nucella_ostrina","Nucella_canaliculata",0,0,104,NA,11.4285714285714,12.04,NA,NA
+2014-09-07,"B","Nucella_ostrina","Nucella_ostrina",0,0,6,NA,11.4285714285714,12.04,NA,NA
+2014-09-07,"B","Pollicipes_polymerus","Nucella_canaliculata",0,0,104,NA,95.2380952380953,12.04,NA,NA
+2014-09-07,"B","Pollicipes_polymerus","Nucella_ostrina",0,0,6,NA,95.2380952380953,12.04,NA,NA
+2014-09-07,"B","Semibalanus_cariosus","Nucella_canaliculata",0,0,104,NA,0,12.04,NA,NA
+2014-09-07,"B","Semibalanus_cariosus","Nucella_ostrina",0,0,6,NA,0,12.04,NA,NA
+2014-09-07,"BB","Adula_californiensis","Nucella_canaliculata",0,0,5,NA,0,12.04,NA,NA
+2014-09-07,"BB","Adula_californiensis","Nucella_ostrina",0,0,71,NA,0,12.04,NA,NA
+2014-09-07,"BB","Balanus_glandula","Nucella_canaliculata",0,0,5,NA,8527.2380952381,12.04,NA,NA
+2014-09-07,"BB","Balanus_glandula","Nucella_ostrina",0.0526315789473684,3,71,40.997195725751,8527.2380952381,12.04,1.50551074111587e-07,0.00128378485444334
+2014-09-07,"BB","Chthamalus_dalli","Nucella_canaliculata",0,0,5,NA,108.952380952381,12.04,NA,NA
+2014-09-07,"BB","Chthamalus_dalli","Nucella_ostrina",0,0,71,NA,108.952380952381,12.04,NA,NA
+2014-09-07,"BB","Hiatella_arctica","Nucella_canaliculata",0,0,5,NA,0,12.04,NA,NA
+2014-09-07,"BB","Hiatella_arctica","Nucella_ostrina",0,0,71,NA,0,12.04,NA,NA
+2014-09-07,"BB","Limpets","Nucella_canaliculata",0,0,5,NA,1428.57142857143,12.04,NA,NA
+2014-09-07,"BB","Limpets","Nucella_ostrina",0,0,71,NA,1428.57142857143,12.04,NA,NA
+2014-09-07,"BB","Littorina_sitkana","Nucella_canaliculata",0,0,5,NA,4091.42857142857,12.04,NA,NA
+2014-09-07,"BB","Littorina_sitkana","Nucella_ostrina",0,0,71,NA,4091.42857142857,12.04,NA,NA
+2014-09-07,"BB","Modiolus_modiolus","Nucella_canaliculata",0,0,5,NA,0,12.04,NA,NA
+2014-09-07,"BB","Modiolus_modiolus","Nucella_ostrina",0,0,71,NA,0,12.04,NA,NA
+2014-09-07,"BB","Mytilus_californianus","Nucella_canaliculata",0,0,5,NA,0,12.04,NA,NA
+2014-09-07,"BB","Mytilus_californianus","Nucella_ostrina",0,0,71,NA,0,12.04,NA,NA
+2014-09-07,"BB","Mytilus_trossulus","Nucella_canaliculata",0.25,1,5,95.7990355117332,5150.47619047619,12.04,5.06677347262928e-07,0.00260962961333134
+2014-09-07,"BB","Mytilus_trossulus","Nucella_ostrina",0.192982456140351,11,71,66.6031212615157,5150.47619047619,12.04,5.62569086015604e-07,0.00289749868302132
+2014-09-07,"BB","Nucella_ostrina","Nucella_canaliculata",0,0,5,NA,11.4285714285714,12.04,NA,NA
+2014-09-07,"BB","Nucella_ostrina","Nucella_ostrina",0,0,71,NA,11.4285714285714,12.04,NA,NA
+2014-09-07,"BB","Pollicipes_polymerus","Nucella_canaliculata",0,0,5,NA,3.8095238095238,12.04,NA,NA
+2014-09-07,"BB","Pollicipes_polymerus","Nucella_ostrina",0,0,71,NA,3.8095238095238,12.04,NA,NA
+2014-09-07,"BB","Semibalanus_cariosus","Nucella_canaliculata",0,0,5,NA,3.8095238095238,12.04,NA,NA
+2014-09-07,"BB","Semibalanus_cariosus","Nucella_ostrina",0,0,71,NA,3.8095238095238,12.04,NA,NA
+2014-09-07,"BC","Adula_californiensis","Nucella_canaliculata",0,0,4,NA,0,12.04,NA,NA
+2014-09-07,"BC","Adula_californiensis","Nucella_ostrina",0,0,142,NA,0,12.04,NA,NA
+2014-09-07,"BC","Balanus_glandula","Nucella_canaliculata",0.333333333333333,1,4,13.85619133765,12844.9523809524,12.04,1.87284732444511e-06,0.0240566346992915
+2014-09-07,"BC","Balanus_glandula","Nucella_ostrina",0.0551181102362205,7,142,42.5487101339596,12844.9523809524,12.04,1.00849888296218e-07,0.00129541201278929
+2014-09-07,"BC","Chthamalus_dalli","Nucella_canaliculata",0,0,4,NA,0,12.04,NA,NA
+2014-09-07,"BC","Chthamalus_dalli","Nucella_ostrina",0,0,142,NA,0,12.04,NA,NA
+2014-09-07,"BC","Hiatella_arctica","Nucella_canaliculata",0,0,4,NA,0,12.04,NA,NA
+2014-09-07,"BC","Hiatella_arctica","Nucella_ostrina",0,0,142,NA,0,12.04,NA,NA
+2014-09-07,"BC","Limpets","Nucella_canaliculata",0,0,4,NA,1702.85714285714,12.04,NA,NA
+2014-09-07,"BC","Limpets","Nucella_ostrina",0,0,142,NA,1702.85714285714,12.04,NA,NA
+2014-09-07,"BC","Littorina_sitkana","Nucella_canaliculata",0,0,4,NA,2594.28571428572,12.04,NA,NA
+2014-09-07,"BC","Littorina_sitkana","Nucella_ostrina",0,0,142,NA,2594.28571428572,12.04,NA,NA
+2014-09-07,"BC","Modiolus_modiolus","Nucella_canaliculata",0,0,4,NA,0,12.04,NA,NA
+2014-09-07,"BC","Modiolus_modiolus","Nucella_ostrina",0,0,142,NA,0,12.04,NA,NA
+2014-09-07,"BC","Mytilus_californianus","Nucella_canaliculata",0,0,4,NA,0,12.04,NA,NA
+2014-09-07,"BC","Mytilus_californianus","Nucella_ostrina",0,0,142,NA,0,12.04,NA,NA
+2014-09-07,"BC","Mytilus_trossulus","Nucella_canaliculata",0,0,4,NA,3055.23809523809,12.04,NA,NA
+2014-09-07,"BC","Mytilus_trossulus","Nucella_ostrina",0.062992125984252,8,142,73.1521970077701,3055.23809523809,12.04,2.81847269316666e-07,0.000861110514255109
+2014-09-07,"BC","Nucella_ostrina","Nucella_canaliculata",0,0,4,NA,133.333333333333,12.04,NA,NA
+2014-09-07,"BC","Nucella_ostrina","Nucella_ostrina",0,0,142,NA,133.333333333333,12.04,NA,NA
+2014-09-07,"BC","Pollicipes_polymerus","Nucella_canaliculata",0,0,4,NA,0,12.04,NA,NA
+2014-09-07,"BC","Pollicipes_polymerus","Nucella_ostrina",0,0,142,NA,0,12.04,NA,NA
+2014-09-07,"BC","Semibalanus_cariosus","Nucella_canaliculata",0,0,4,NA,0,12.04,NA,NA
+2014-09-07,"BC","Semibalanus_cariosus","Nucella_ostrina",0,0,142,NA,0,12.04,NA,NA
+2014-09-07,"BD","Adula_californiensis","Nucella_canaliculata",0,0,12,NA,0,12.04,NA,NA
+2014-09-07,"BD","Adula_californiensis","Nucella_ostrina",0,0,94,NA,0,12.04,NA,NA
+2014-09-07,"BD","Balanus_glandula","Nucella_canaliculata",0,0,12,NA,0,12.04,NA,NA
+2014-09-07,"BD","Balanus_glandula","Nucella_ostrina",0.0470588235294118,4,94,44.9144909489931,0,12.04,Inf,0.00104774255557864
+2014-09-07,"BD","Chthamalus_dalli","Nucella_canaliculata",0,0,12,NA,0,12.04,NA,NA
+2014-09-07,"BD","Chthamalus_dalli","Nucella_ostrina",0,0,94,NA,0,12.04,NA,NA
+2014-09-07,"BD","Hiatella_arctica","Nucella_canaliculata",0,0,12,NA,0,12.04,NA,NA
+2014-09-07,"BD","Hiatella_arctica","Nucella_ostrina",0,0,94,NA,0,12.04,NA,NA
+2014-09-07,"BD","Limpets","Nucella_canaliculata",0,0,12,NA,0,12.04,NA,NA
+2014-09-07,"BD","Limpets","Nucella_ostrina",0,0,94,NA,0,12.04,NA,NA
+2014-09-07,"BD","Littorina_sitkana","Nucella_canaliculata",0,0,12,NA,0,12.04,NA,NA
+2014-09-07,"BD","Littorina_sitkana","Nucella_ostrina",0,0,94,NA,0,12.04,NA,NA
+2014-09-07,"BD","Modiolus_modiolus","Nucella_canaliculata",0,0,12,NA,0,12.04,NA,NA
+2014-09-07,"BD","Modiolus_modiolus","Nucella_ostrina",0,0,94,NA,0,12.04,NA,NA
+2014-09-07,"BD","Mytilus_californianus","Nucella_canaliculata",0,0,12,NA,0,12.04,NA,NA
+2014-09-07,"BD","Mytilus_californianus","Nucella_ostrina",0,0,94,NA,0,12.04,NA,NA
+2014-09-07,"BD","Mytilus_trossulus","Nucella_canaliculata",0.333333333333333,3,12,83.7294297565419,0,12.04,Inf,0.00398107731418402
+2014-09-07,"BD","Mytilus_trossulus","Nucella_ostrina",0.0588235294117647,5,94,70.055423628977,0,12.04,Inf,0.000839671311150755
+2014-09-07,"BD","Nucella_ostrina","Nucella_canaliculata",0,0,12,NA,0,12.04,NA,NA
+2014-09-07,"BD","Nucella_ostrina","Nucella_ostrina",0,0,94,NA,0,12.04,NA,NA
+2014-09-07,"BD","Pollicipes_polymerus","Nucella_canaliculata",0,0,12,NA,0,12.04,NA,NA
+2014-09-07,"BD","Pollicipes_polymerus","Nucella_ostrina",0,0,94,NA,0,12.04,NA,NA
+2014-09-07,"BD","Semibalanus_cariosus","Nucella_canaliculata",0,0,12,NA,0,12.04,NA,NA
+2014-09-07,"BD","Semibalanus_cariosus","Nucella_ostrina",0,0,94,NA,0,12.04,NA,NA
+2014-09-07,"BE","Adula_californiensis","Nucella_canaliculata",0,0,0,NA,0,12.04,NA,NA
+2014-09-07,"BE","Adula_californiensis","Nucella_ostrina",0,0,76,NA,0,12.04,NA,NA
+2014-09-07,"BE","Balanus_glandula","Nucella_canaliculata",0,0,0,NA,81792,12.04,NA,NA
+2014-09-07,"BE","Balanus_glandula","Nucella_ostrina",0.174603174603175,11,76,15.1397140499048,81792,12.04,1.41001468368594e-07,0.0115327921008041
+2014-09-07,"BE","Chthamalus_dalli","Nucella_canaliculata",0,0,0,NA,0,12.04,NA,NA
+2014-09-07,"BE","Chthamalus_dalli","Nucella_ostrina",0,0,76,NA,0,12.04,NA,NA
+2014-09-07,"BE","Hiatella_arctica","Nucella_canaliculata",0,0,0,NA,0,12.04,NA,NA
+2014-09-07,"BE","Hiatella_arctica","Nucella_ostrina",0,0,76,NA,0,12.04,NA,NA
+2014-09-07,"BE","Limpets","Nucella_canaliculata",0,0,0,NA,434.285714285714,12.04,NA,NA
+2014-09-07,"BE","Limpets","Nucella_ostrina",0,0,76,NA,434.285714285714,12.04,NA,NA
+2014-09-07,"BE","Littorina_sitkana","Nucella_canaliculata",0,0,0,NA,2194.28571428571,12.04,NA,NA
+2014-09-07,"BE","Littorina_sitkana","Nucella_ostrina",0,0,76,NA,2194.28571428571,12.04,NA,NA
+2014-09-07,"BE","Modiolus_modiolus","Nucella_canaliculata",0,0,0,NA,0,12.04,NA,NA
+2014-09-07,"BE","Modiolus_modiolus","Nucella_ostrina",0,0,76,NA,0,12.04,NA,NA
+2014-09-07,"BE","Mytilus_californianus","Nucella_canaliculata",0,0,0,NA,0,12.04,NA,NA
+2014-09-07,"BE","Mytilus_californianus","Nucella_ostrina",0,0,76,NA,0,12.04,NA,NA
+2014-09-07,"BE","Mytilus_trossulus","Nucella_canaliculata",0,0,0,NA,2068.57142857143,12.04,NA,NA
+2014-09-07,"BE","Mytilus_trossulus","Nucella_ostrina",0.0317460317460317,2,76,43.3691237331362,2068.57142857143,12.04,3.53865543737806e-07,0.00073199615333192
+2014-09-07,"BE","Nucella_ostrina","Nucella_canaliculata",0,0,0,NA,0,12.04,NA,NA
+2014-09-07,"BE","Nucella_ostrina","Nucella_ostrina",0,0,76,NA,0,12.04,NA,NA
+2014-09-07,"BE","Pollicipes_polymerus","Nucella_canaliculata",0,0,0,NA,0,12.04,NA,NA
+2014-09-07,"BE","Pollicipes_polymerus","Nucella_ostrina",0,0,76,NA,0,12.04,NA,NA
+2014-09-07,"BE","Semibalanus_cariosus","Nucella_canaliculata",0,0,0,NA,0,12.04,NA,NA
+2014-09-07,"BE","Semibalanus_cariosus","Nucella_ostrina",0,0,76,NA,0,12.04,NA,NA
+2014-09-07,"BF","Adula_californiensis","Nucella_canaliculata",0,0,13,NA,0,12.04,NA,NA
+2014-09-07,"BF","Adula_californiensis","Nucella_ostrina",0,0,183,NA,0,12.04,NA,NA
+2014-09-07,"BF","Balanus_glandula","Nucella_canaliculata",0.181818181818182,2,13,13.802680010686,75520,12.04,1.74426276286757e-07,0.0131726723851759
+2014-09-07,"BF","Balanus_glandula","Nucella_ostrina",0.0662650602409639,11,183,20.847254189585,75520,12.04,4.2089498785121e-08,0.00317859894825234
+2014-09-07,"BF","Chthamalus_dalli","Nucella_canaliculata",0,0,13,NA,0,12.04,NA,NA
+2014-09-07,"BF","Chthamalus_dalli","Nucella_ostrina",0,0,183,NA,0,12.04,NA,NA
+2014-09-07,"BF","Hiatella_arctica","Nucella_canaliculata",0,0,13,NA,0,12.04,NA,NA
+2014-09-07,"BF","Hiatella_arctica","Nucella_ostrina",0,0,183,NA,0,12.04,NA,NA
+2014-09-07,"BF","Limpets","Nucella_canaliculata",0,0,13,NA,1017.14285714286,12.04,NA,NA
+2014-09-07,"BF","Limpets","Nucella_ostrina",0,0,183,NA,1017.14285714286,12.04,NA,NA
+2014-09-07,"BF","Littorina_sitkana","Nucella_canaliculata",0,0,13,NA,6605.71428571429,12.04,NA,NA
+2014-09-07,"BF","Littorina_sitkana","Nucella_ostrina",0,0,183,NA,6605.71428571429,12.04,NA,NA
+2014-09-07,"BF","Modiolus_modiolus","Nucella_canaliculata",0,0,13,NA,0,12.04,NA,NA
+2014-09-07,"BF","Modiolus_modiolus","Nucella_ostrina",0,0,183,NA,0,12.04,NA,NA
+2014-09-07,"BF","Mytilus_californianus","Nucella_canaliculata",0,0,13,NA,0,12.04,NA,NA
+2014-09-07,"BF","Mytilus_californianus","Nucella_ostrina",0,0,183,NA,0,12.04,NA,NA
+2014-09-07,"BF","Mytilus_trossulus","Nucella_canaliculata",0,0,13,NA,9325.71428571429,12.04,NA,NA
+2014-09-07,"BF","Mytilus_trossulus","Nucella_ostrina",0.036144578313253,6,183,63.7703241383573,9325.71428571429,12.04,6.07774440422406e-08,0.000566793078153924
+2014-09-07,"BF","Nucella_ostrina","Nucella_canaliculata",0,0,13,NA,22.8571428571429,12.04,NA,NA
+2014-09-07,"BF","Nucella_ostrina","Nucella_ostrina",0,0,183,NA,22.8571428571429,12.04,NA,NA
+2014-09-07,"BF","Pollicipes_polymerus","Nucella_canaliculata",0,0,13,NA,194.285714285714,12.04,NA,NA
+2014-09-07,"BF","Pollicipes_polymerus","Nucella_ostrina",0,0,183,NA,194.285714285714,12.04,NA,NA
+2014-09-07,"BF","Semibalanus_cariosus","Nucella_canaliculata",0,0,13,NA,0,12.04,NA,NA
+2014-09-07,"BF","Semibalanus_cariosus","Nucella_ostrina",0,0,183,NA,0,12.04,NA,NA
+2014-09-07,"C","Adula_californiensis","Nucella_canaliculata",0,0,141,NA,0,12.04,NA,NA
+2014-09-07,"C","Adula_californiensis","Nucella_ostrina",0,0,30,NA,0,12.04,NA,NA
+2014-09-07,"C","Balanus_glandula","Nucella_canaliculata",0.0072992700729927,1,141,26.8124087937477,12330.6666666667,12.04,2.20778634503662e-08,0.000272234774918649
+2014-09-07,"C","Balanus_glandula","Nucella_ostrina",0.08,2,30,37.2924752771308,12330.6666666667,12.04,1.73973146731159e-07,0.00214520488129301
+2014-09-07,"C","Chthamalus_dalli","Nucella_canaliculata",0,0,141,NA,298.666666666667,12.04,NA,NA
+2014-09-07,"C","Chthamalus_dalli","Nucella_ostrina",0,0,30,NA,298.666666666667,12.04,NA,NA
+2014-09-07,"C","Hiatella_arctica","Nucella_canaliculata",0,0,141,NA,0,12.04,NA,NA
+2014-09-07,"C","Hiatella_arctica","Nucella_ostrina",0,0,30,NA,0,12.04,NA,NA
+2014-09-07,"C","Limpets","Nucella_canaliculata",0,0,141,NA,2647.61904761905,12.04,NA,NA
+2014-09-07,"C","Limpets","Nucella_ostrina",0,0,30,NA,2647.61904761905,12.04,NA,NA
+2014-09-07,"C","Littorina_sitkana","Nucella_canaliculata",0,0,141,NA,373.333333333333,12.04,NA,NA
+2014-09-07,"C","Littorina_sitkana","Nucella_ostrina",0,0,30,NA,373.333333333333,12.04,NA,NA
+2014-09-07,"C","Modiolus_modiolus","Nucella_canaliculata",0,0,141,NA,0,12.04,NA,NA
+2014-09-07,"C","Modiolus_modiolus","Nucella_ostrina",0,0,30,NA,0,12.04,NA,NA
+2014-09-07,"C","Mytilus_californianus","Nucella_canaliculata",0,0,141,NA,0,12.04,NA,NA
+2014-09-07,"C","Mytilus_californianus","Nucella_ostrina",0,0,30,NA,0,12.04,NA,NA
+2014-09-07,"C","Mytilus_trossulus","Nucella_canaliculata",0.0218978102189781,3,141,70.0512457169968,1935.2380952381,12.04,1.61528968707273e-07,0.000312597013726837
+2014-09-07,"C","Mytilus_trossulus","Nucella_ostrina",0.12,3,30,59.6547681740417,1935.2380952381,12.04,1.03944539411906e-06,0.00201157432461898
+2014-09-07,"C","Nucella_ostrina","Nucella_canaliculata",0,0,141,NA,11.4285714285714,12.04,NA,NA
+2014-09-07,"C","Nucella_ostrina","Nucella_ostrina",0,0,30,NA,11.4285714285714,12.04,NA,NA
+2014-09-07,"C","Pollicipes_polymerus","Nucella_canaliculata",0,0,141,NA,236.190476190476,12.04,NA,NA
+2014-09-07,"C","Pollicipes_polymerus","Nucella_ostrina",0,0,30,NA,236.190476190476,12.04,NA,NA
+2014-09-07,"C","Semibalanus_cariosus","Nucella_canaliculata",0,0,141,NA,19.0476190476191,12.04,NA,NA
+2014-09-07,"C","Semibalanus_cariosus","Nucella_ostrina",0,0,30,NA,19.0476190476191,12.04,NA,NA
+2014-09-07,"D","Adula_californiensis","Nucella_canaliculata",0,0,9,NA,0,12.04,NA,NA
+2014-09-07,"D","Adula_californiensis","Nucella_ostrina",0,0,20,NA,0,12.04,NA,NA
+2014-09-07,"D","Balanus_glandula","Nucella_canaliculata",0.2,1,9,22.7162037705687,27223.619047619,12.04,3.23406229459502e-07,0.00880428798843236
+2014-09-07,"D","Balanus_glandula","Nucella_ostrina",0.0555555555555556,1,20,29.1469802192276,27223.619047619,12.04,7.0014512593839e-08,0.0019060484186594
+2014-09-07,"D","Chthamalus_dalli","Nucella_canaliculata",0,0,9,NA,199.619047619048,12.04,NA,NA
+2014-09-07,"D","Chthamalus_dalli","Nucella_ostrina",0,0,20,NA,199.619047619048,12.04,NA,NA
+2014-09-07,"D","Hiatella_arctica","Nucella_canaliculata",0,0,9,NA,0,12.04,NA,NA
+2014-09-07,"D","Hiatella_arctica","Nucella_ostrina",0,0,20,NA,0,12.04,NA,NA
+2014-09-07,"D","Limpets","Nucella_canaliculata",0,0,9,NA,2700.95238095238,12.04,NA,NA
+2014-09-07,"D","Limpets","Nucella_ostrina",0,0,20,NA,2700.95238095238,12.04,NA,NA
+2014-09-07,"D","Littorina_sitkana","Nucella_canaliculata",0,0,9,NA,5310.47619047619,12.04,NA,NA
+2014-09-07,"D","Littorina_sitkana","Nucella_ostrina",0,0,20,NA,5310.47619047619,12.04,NA,NA
+2014-09-07,"D","Modiolus_modiolus","Nucella_canaliculata",0,0,9,NA,0,12.04,NA,NA
+2014-09-07,"D","Modiolus_modiolus","Nucella_ostrina",0,0,20,NA,0,12.04,NA,NA
+2014-09-07,"D","Mytilus_californianus","Nucella_canaliculata",0,0,9,NA,0,12.04,NA,NA
+2014-09-07,"D","Mytilus_californianus","Nucella_ostrina",0,0,20,NA,0,12.04,NA,NA
+2014-09-07,"D","Mytilus_trossulus","Nucella_canaliculata",0.6,3,9,72.2324036597943,5085.71428571429,12.04,1.63330475122422e-06,0.00830652130622602
+2014-09-07,"D","Mytilus_trossulus","Nucella_ostrina",0.0555555555555556,1,20,62.244376260479,5085.71428571429,12.04,1.75499311741742e-07,0.000892539356858004
+2014-09-07,"D","Nucella_ostrina","Nucella_canaliculata",0,0,9,NA,7.6190476190476,12.04,NA,NA
+2014-09-07,"D","Nucella_ostrina","Nucella_ostrina",0,0,20,NA,7.6190476190476,12.04,NA,NA
+2014-09-07,"D","Pollicipes_polymerus","Nucella_canaliculata",0,0,9,NA,68.5714285714285,12.04,NA,NA
+2014-09-07,"D","Pollicipes_polymerus","Nucella_ostrina",0,0,20,NA,68.5714285714285,12.04,NA,NA
+2014-09-07,"D","Semibalanus_cariosus","Nucella_canaliculata",0,0,9,NA,0,12.04,NA,NA
+2014-09-07,"D","Semibalanus_cariosus","Nucella_ostrina",0,0,20,NA,0,12.04,NA,NA
+2014-09-07,"E","Adula_californiensis","Nucella_canaliculata",0,0,115,NA,0,12.04,NA,NA
+2014-09-07,"E","Adula_californiensis","Nucella_ostrina",0,0,46,NA,0,12.04,NA,NA
+2014-09-07,"E","Balanus_glandula","Nucella_canaliculata",0,0,115,NA,5161.90476190476,12.04,NA,NA
+2014-09-07,"E","Balanus_glandula","Nucella_ostrina",0.0810810810810811,3,46,27.8034040584924,5161.90476190476,12.04,5.6495202800643e-07,0.00291622856361414
+2014-09-07,"E","Chthamalus_dalli","Nucella_canaliculata",0,0,115,NA,3.8095238095238,12.04,NA,NA
+2014-09-07,"E","Chthamalus_dalli","Nucella_ostrina",0,0,46,NA,3.8095238095238,12.04,NA,NA
+2014-09-07,"E","Hiatella_arctica","Nucella_canaliculata",0,0,115,NA,0,12.04,NA,NA
+2014-09-07,"E","Hiatella_arctica","Nucella_ostrina",0,0,46,NA,0,12.04,NA,NA
+2014-09-07,"E","Limpets","Nucella_canaliculata",0,0,115,NA,643.809523809524,12.04,NA,NA
+2014-09-07,"E","Limpets","Nucella_ostrina",0,0,46,NA,643.809523809524,12.04,NA,NA
+2014-09-07,"E","Littorina_sitkana","Nucella_canaliculata",0,0,115,NA,460.952380952381,12.04,NA,NA
+2014-09-07,"E","Littorina_sitkana","Nucella_ostrina",0,0,46,NA,460.952380952381,12.04,NA,NA
+2014-09-07,"E","Modiolus_modiolus","Nucella_canaliculata",0,0,115,NA,0,12.04,NA,NA
+2014-09-07,"E","Modiolus_modiolus","Nucella_ostrina",0,0,46,NA,0,12.04,NA,NA
+2014-09-07,"E","Mytilus_californianus","Nucella_canaliculata",0,0,115,NA,0,12.04,NA,NA
+2014-09-07,"E","Mytilus_californianus","Nucella_ostrina",0,0,46,NA,0,12.04,NA,NA
+2014-09-07,"E","Mytilus_trossulus","Nucella_canaliculata",0.105769230769231,11,115,73.5029130842443,3432.38095238095,12.04,4.1923671673899e-07,0.00143898012107364
+2014-09-07,"E","Mytilus_trossulus","Nucella_ostrina",0.162162162162162,6,46,64.3820626408404,3432.38095238095,12.04,7.33819345540704e-07,0.00251874754412257
+2014-09-07,"E","Nucella_ostrina","Nucella_canaliculata",0,0,115,NA,34.2857142857143,12.04,NA,NA
+2014-09-07,"E","Nucella_ostrina","Nucella_ostrina",0,0,46,NA,34.2857142857143,12.04,NA,NA
+2014-09-07,"E","Pollicipes_polymerus","Nucella_canaliculata",0,0,115,NA,53.3333333333333,12.04,NA,NA
+2014-09-07,"E","Pollicipes_polymerus","Nucella_ostrina",0,0,46,NA,53.3333333333333,12.04,NA,NA
+2014-09-07,"E","Semibalanus_cariosus","Nucella_canaliculata",0,0,115,NA,0,12.04,NA,NA
+2014-09-07,"E","Semibalanus_cariosus","Nucella_ostrina",0,0,46,NA,0,12.04,NA,NA
+2014-09-07,"F","Adula_californiensis","Nucella_canaliculata",0,0,1,NA,0,12.04,NA,NA
+2014-09-07,"F","Adula_californiensis","Nucella_ostrina",0,0,33,NA,0,12.04,NA,NA
+2014-09-07,"F","Balanus_glandula","Nucella_canaliculata",0,0,1,NA,17330.2857142857,12.04,NA,NA
+2014-09-07,"F","Balanus_glandula","Nucella_ostrina",0.125,3,33,33.6188001511884,17330.2857142857,12.04,2.14546819484503e-07,0.00371815768075772
+2014-09-07,"F","Chthamalus_dalli","Nucella_canaliculata",0,0,1,NA,0,12.04,NA,NA
+2014-09-07,"F","Chthamalus_dalli","Nucella_ostrina",0,0,33,NA,0,12.04,NA,NA
+2014-09-07,"F","Hiatella_arctica","Nucella_canaliculata",0,0,1,NA,0,12.04,NA,NA
+2014-09-07,"F","Hiatella_arctica","Nucella_ostrina",0,0,33,NA,0,12.04,NA,NA
+2014-09-07,"F","Limpets","Nucella_canaliculata",0,0,1,NA,1108.57142857143,12.04,NA,NA
+2014-09-07,"F","Limpets","Nucella_ostrina",0,0,33,NA,1108.57142857143,12.04,NA,NA
+2014-09-07,"F","Littorina_sitkana","Nucella_canaliculata",0,0,1,NA,7634.28571428571,12.04,NA,NA
+2014-09-07,"F","Littorina_sitkana","Nucella_ostrina",0,0,33,NA,7634.28571428571,12.04,NA,NA
+2014-09-07,"F","Modiolus_modiolus","Nucella_canaliculata",0,0,1,NA,0,12.04,NA,NA
+2014-09-07,"F","Modiolus_modiolus","Nucella_ostrina",0,0,33,NA,0,12.04,NA,NA
+2014-09-07,"F","Mytilus_californianus","Nucella_canaliculata",0,0,1,NA,0,12.04,NA,NA
+2014-09-07,"F","Mytilus_californianus","Nucella_ostrina",0,0,33,NA,0,12.04,NA,NA
+2014-09-07,"F","Mytilus_trossulus","Nucella_canaliculata",0,0,1,NA,4983.61904761905,12.04,NA,NA
+2014-09-07,"F","Mytilus_trossulus","Nucella_ostrina",0.25,6,33,59.0280172113407,4983.61904761905,12.04,8.49839624113105e-07,0.00423527693815148
+2014-09-07,"F","Nucella_ostrina","Nucella_canaliculata",0,0,1,NA,7.61904761904763,12.04,NA,NA
+2014-09-07,"F","Nucella_ostrina","Nucella_ostrina",0,0,33,NA,7.61904761904763,12.04,NA,NA
+2014-09-07,"F","Pollicipes_polymerus","Nucella_canaliculata",0,0,1,NA,7.61904761904763,12.04,NA,NA
+2014-09-07,"F","Pollicipes_polymerus","Nucella_ostrina",0,0,33,NA,7.61904761904763,12.04,NA,NA
+2014-09-07,"F","Semibalanus_cariosus","Nucella_canaliculata",0,0,1,NA,0,12.04,NA,NA
+2014-09-07,"F","Semibalanus_cariosus","Nucella_ostrina",0,0,33,NA,0,12.04,NA,NA
+2014-09-07,"G","Adula_californiensis","Nucella_canaliculata",0,0,2,NA,0,12.04,NA,NA
+2014-09-07,"G","Adula_californiensis","Nucella_ostrina",0,0,8,NA,0,12.04,NA,NA
+2014-09-07,"G","Balanus_glandula","Nucella_canaliculata",0,0,2,NA,8049.52380952382,12.04,NA,NA
+2014-09-07,"G","Balanus_glandula","Nucella_ostrina",0,0,8,NA,8049.52380952382,12.04,NA,NA
+2014-09-07,"G","Chthamalus_dalli","Nucella_canaliculata",0,0,2,NA,598.095238095237,12.04,NA,NA
+2014-09-07,"G","Chthamalus_dalli","Nucella_ostrina",0,0,8,NA,598.095238095237,12.04,NA,NA
+2014-09-07,"G","Hiatella_arctica","Nucella_canaliculata",0,0,2,NA,0,12.04,NA,NA
+2014-09-07,"G","Hiatella_arctica","Nucella_ostrina",0,0,8,NA,0,12.04,NA,NA
+2014-09-07,"G","Limpets","Nucella_canaliculata",0,0,2,NA,788.571428571427,12.04,NA,NA
+2014-09-07,"G","Limpets","Nucella_ostrina",0,0,8,NA,788.571428571427,12.04,NA,NA
+2014-09-07,"G","Littorina_sitkana","Nucella_canaliculata",0,0,2,NA,655.238095238095,12.04,NA,NA
+2014-09-07,"G","Littorina_sitkana","Nucella_ostrina",0,0,8,NA,655.238095238095,12.04,NA,NA
+2014-09-07,"G","Modiolus_modiolus","Nucella_canaliculata",0,0,2,NA,0,12.04,NA,NA
+2014-09-07,"G","Modiolus_modiolus","Nucella_ostrina",0,0,8,NA,0,12.04,NA,NA
+2014-09-07,"G","Mytilus_californianus","Nucella_canaliculata",0,0,2,NA,68.5714285714287,12.04,NA,NA
+2014-09-07,"G","Mytilus_californianus","Nucella_ostrina",0,0,8,NA,68.5714285714287,12.04,NA,NA
+2014-09-07,"G","Mytilus_trossulus","Nucella_canaliculata",1,1,2,67.8546574008363,6377.14285714286,12.04,2.31096938440015e-06,0.0147373819028032
+2014-09-07,"G","Mytilus_trossulus","Nucella_ostrina",0.142857142857143,1,8,68.9092506556126,6377.14285714286,12.04,3.25086014992556e-07,0.00207311995846681
+2014-09-07,"G","Nucella_ostrina","Nucella_canaliculata",0,0,2,NA,3.8095238095238,12.04,NA,NA
+2014-09-07,"G","Nucella_ostrina","Nucella_ostrina",0,0,8,NA,3.8095238095238,12.04,NA,NA
+2014-09-07,"G","Pollicipes_polymerus","Nucella_canaliculata",0,0,2,NA,95.2380952380951,12.04,NA,NA
+2014-09-07,"G","Pollicipes_polymerus","Nucella_ostrina",0,0,8,NA,95.2380952380951,12.04,NA,NA
+2014-09-07,"G","Semibalanus_cariosus","Nucella_canaliculata",0,0,2,NA,3.8095238095238,12.04,NA,NA
+2014-09-07,"G","Semibalanus_cariosus","Nucella_ostrina",0,0,8,NA,3.8095238095238,12.04,NA,NA
+2014-10-13,"A","Adula_californiensis","Nucella_canaliculata",0,0,144,NA,0,13.31,NA,NA
+2014-10-13,"A","Adula_californiensis","Nucella_ostrina",0,0,6,NA,0,13.31,NA,NA
+2014-10-13,"A","Balanus_glandula","Nucella_canaliculata",0.0692307692307692,9,144,39.5551500949628,12498.2857142857,13.31,1.40037926535111e-07,0.00175023401667197
+2014-10-13,"A","Balanus_glandula","Nucella_ostrina",0,0,6,NA,12498.2857142857,13.31,NA,NA
+2014-10-13,"A","Chthamalus_dalli","Nucella_canaliculata",0,0,144,NA,96,13.31,NA,NA
+2014-10-13,"A","Chthamalus_dalli","Nucella_ostrina",0,0,6,NA,96,13.31,NA,NA
+2014-10-13,"A","Hiatella_arctica","Nucella_canaliculata",0,0,144,NA,0,13.31,NA,NA
+2014-10-13,"A","Hiatella_arctica","Nucella_ostrina",0,0,6,NA,0,13.31,NA,NA
+2014-10-13,"A","Limpets","Nucella_canaliculata",0,0,144,NA,1691.42857142857,13.31,NA,NA
+2014-10-13,"A","Limpets","Nucella_ostrina",0,0,6,NA,1691.42857142857,13.31,NA,NA
+2014-10-13,"A","Littorina_sitkana","Nucella_canaliculata",0,0,144,NA,805.714285714285,13.31,NA,NA
+2014-10-13,"A","Littorina_sitkana","Nucella_ostrina",0,0,6,NA,805.714285714285,13.31,NA,NA
+2014-10-13,"A","Modiolus_modiolus","Nucella_canaliculata",0,0,144,NA,0,13.31,NA,NA
+2014-10-13,"A","Modiolus_modiolus","Nucella_ostrina",0,0,6,NA,0,13.31,NA,NA
+2014-10-13,"A","Mytilus_californianus","Nucella_canaliculata",0,0,144,NA,5.7142857142857,13.31,NA,NA
+2014-10-13,"A","Mytilus_californianus","Nucella_ostrina",0,0,6,NA,5.7142857142857,13.31,NA,NA
+2014-10-13,"A","Mytilus_trossulus","Nucella_canaliculata",0.0384615384615385,5,144,69.4837367579513,4573.71428571428,13.31,1.2102482253222e-07,0.00055353295974165
+2014-10-13,"A","Mytilus_trossulus","Nucella_ostrina",0,0,6,NA,4573.71428571428,13.31,NA,NA
+2014-10-13,"A","Nucella_ostrina","Nucella_canaliculata",0,0,144,NA,28.5714285714286,13.31,NA,NA
+2014-10-13,"A","Nucella_ostrina","Nucella_ostrina",0,0,6,NA,28.5714285714286,13.31,NA,NA
+2014-10-13,"A","Pollicipes_polymerus","Nucella_canaliculata",0,0,144,NA,68.5714285714286,13.31,NA,NA
+2014-10-13,"A","Pollicipes_polymerus","Nucella_ostrina",0,0,6,NA,68.5714285714286,13.31,NA,NA
+2014-10-13,"A","Semibalanus_cariosus","Nucella_canaliculata",0,0,144,NA,0,13.31,NA,NA
+2014-10-13,"A","Semibalanus_cariosus","Nucella_ostrina",0,0,6,NA,0,13.31,NA,NA
+2014-10-13,"AB","Adula_californiensis","Nucella_canaliculata",0,0,24,NA,0,13.31,NA,NA
+2014-10-13,"AB","Adula_californiensis","Nucella_ostrina",0,0,6,NA,0,13.31,NA,NA
+2014-10-13,"AB","Balanus_glandula","Nucella_canaliculata",0.105263157894737,2,24,17.1028238482689,10036.5714285714,13.31,6.13229716634527e-07,0.00615472385312505
+2014-10-13,"AB","Balanus_glandula","Nucella_ostrina",0,0,6,NA,10036.5714285714,13.31,NA,NA
+2014-10-13,"AB","Chthamalus_dalli","Nucella_canaliculata",0,0,24,NA,0,13.31,NA,NA
+2014-10-13,"AB","Chthamalus_dalli","Nucella_ostrina",0,0,6,NA,0,13.31,NA,NA
+2014-10-13,"AB","Hiatella_arctica","Nucella_canaliculata",0,0,24,NA,0,13.31,NA,NA
+2014-10-13,"AB","Hiatella_arctica","Nucella_ostrina",0,0,6,NA,0,13.31,NA,NA
+2014-10-13,"AB","Limpets","Nucella_canaliculata",0,0,24,NA,897.142857142857,13.31,NA,NA
+2014-10-13,"AB","Limpets","Nucella_ostrina",0,0,6,NA,897.142857142857,13.31,NA,NA
+2014-10-13,"AB","Littorina_sitkana","Nucella_canaliculata",0,0,24,NA,748.571428571429,13.31,NA,NA
+2014-10-13,"AB","Littorina_sitkana","Nucella_ostrina",0,0,6,NA,748.571428571429,13.31,NA,NA
+2014-10-13,"AB","Modiolus_modiolus","Nucella_canaliculata",0,0,24,NA,0,13.31,NA,NA
+2014-10-13,"AB","Modiolus_modiolus","Nucella_ostrina",0,0,6,NA,0,13.31,NA,NA
+2014-10-13,"AB","Mytilus_californianus","Nucella_canaliculata",0,0,24,NA,0,13.31,NA,NA
+2014-10-13,"AB","Mytilus_californianus","Nucella_ostrina",0,0,6,NA,0,13.31,NA,NA
+2014-10-13,"AB","Mytilus_trossulus","Nucella_canaliculata",0.157894736842105,3,24,32.0481327729373,1714.28571428571,13.31,2.87396659925448e-06,0.00492679988443625
+2014-10-13,"AB","Mytilus_trossulus","Nucella_ostrina",0.2,1,6,39.1242192542145,1714.28571428571,13.31,2.98195513905621e-06,0.00511192309552492
+2014-10-13,"AB","Nucella_ostrina","Nucella_canaliculata",0,0,24,NA,0,13.31,NA,NA
+2014-10-13,"AB","Nucella_ostrina","Nucella_ostrina",0,0,6,NA,0,13.31,NA,NA
+2014-10-13,"AB","Pollicipes_polymerus","Nucella_canaliculata",0,0,24,NA,1171.42857142857,13.31,NA,NA
+2014-10-13,"AB","Pollicipes_polymerus","Nucella_ostrina",0,0,6,NA,1171.42857142857,13.31,NA,NA
+2014-10-13,"AB","Semibalanus_cariosus","Nucella_canaliculata",0,0,24,NA,0,13.31,NA,NA
+2014-10-13,"AB","Semibalanus_cariosus","Nucella_ostrina",0,0,6,NA,0,13.31,NA,NA
+2014-10-13,"AC","Adula_californiensis","Nucella_canaliculata",0,0,0,NA,0,13.31,NA,NA
+2014-10-13,"AC","Adula_californiensis","Nucella_ostrina",0,0,1,NA,0,13.31,NA,NA
+2014-10-13,"AC","Balanus_glandula","Nucella_canaliculata",0,0,0,NA,62365.7142857143,13.31,NA,NA
+2014-10-13,"AC","Balanus_glandula","Nucella_ostrina",0,0,1,NA,62365.7142857143,13.31,NA,NA
+2014-10-13,"AC","Chthamalus_dalli","Nucella_canaliculata",0,0,0,NA,21.3333333333333,13.31,NA,NA
+2014-10-13,"AC","Chthamalus_dalli","Nucella_ostrina",0,0,1,NA,21.3333333333333,13.31,NA,NA
+2014-10-13,"AC","Hiatella_arctica","Nucella_canaliculata",0,0,0,NA,0,13.31,NA,NA
+2014-10-13,"AC","Hiatella_arctica","Nucella_ostrina",0,0,1,NA,0,13.31,NA,NA
+2014-10-13,"AC","Limpets","Nucella_canaliculata",0,0,0,NA,1062.85714285714,13.31,NA,NA
+2014-10-13,"AC","Limpets","Nucella_ostrina",0,0,1,NA,1062.85714285714,13.31,NA,NA
+2014-10-13,"AC","Littorina_sitkana","Nucella_canaliculata",0,0,0,NA,3424.7619047619,13.31,NA,NA
+2014-10-13,"AC","Littorina_sitkana","Nucella_ostrina",0,0,1,NA,3424.7619047619,13.31,NA,NA
+2014-10-13,"AC","Modiolus_modiolus","Nucella_canaliculata",0,0,0,NA,0,13.31,NA,NA
+2014-10-13,"AC","Modiolus_modiolus","Nucella_ostrina",0,0,1,NA,0,13.31,NA,NA
+2014-10-13,"AC","Mytilus_californianus","Nucella_canaliculata",0,0,0,NA,0,13.31,NA,NA
+2014-10-13,"AC","Mytilus_californianus","Nucella_ostrina",0,0,1,NA,0,13.31,NA,NA
+2014-10-13,"AC","Mytilus_trossulus","Nucella_canaliculata",0,0,0,NA,1653.33333333333,13.31,NA,NA
+2014-10-13,"AC","Mytilus_trossulus","Nucella_ostrina",0,0,1,NA,1653.33333333333,13.31,NA,NA
+2014-10-13,"AC","Nucella_ostrina","Nucella_canaliculata",0,0,0,NA,7.6190476190476,13.31,NA,NA
+2014-10-13,"AC","Nucella_ostrina","Nucella_ostrina",0,0,1,NA,7.6190476190476,13.31,NA,NA
+2014-10-13,"AC","Pollicipes_polymerus","Nucella_canaliculata",0,0,0,NA,0,13.31,NA,NA
+2014-10-13,"AC","Pollicipes_polymerus","Nucella_ostrina",0,0,1,NA,0,13.31,NA,NA
+2014-10-13,"AC","Semibalanus_cariosus","Nucella_canaliculata",0,0,0,NA,0,13.31,NA,NA
+2014-10-13,"AC","Semibalanus_cariosus","Nucella_ostrina",0,0,1,NA,0,13.31,NA,NA
+2014-10-13,"AD","Adula_californiensis","Nucella_canaliculata",0,0,143,NA,0,13.31,NA,NA
+2014-10-13,"AD","Adula_californiensis","Nucella_ostrina",0,0,7,NA,0,13.31,NA,NA
+2014-10-13,"AD","Balanus_glandula","Nucella_canaliculata",0.129310344827586,15,143,22.3006528456817,10061.7142857143,13.31,5.76293487616336e-07,0.0057985004171134
+2014-10-13,"AD","Balanus_glandula","Nucella_ostrina",0,0,7,NA,10061.7142857143,13.31,NA,NA
+2014-10-13,"AD","Chthamalus_dalli","Nucella_canaliculata",0,0,143,NA,87.6190476190477,13.31,NA,NA
+2014-10-13,"AD","Chthamalus_dalli","Nucella_ostrina",0,0,7,NA,87.6190476190477,13.31,NA,NA
+2014-10-13,"AD","Hiatella_arctica","Nucella_canaliculata",0,0,143,NA,0,13.31,NA,NA
+2014-10-13,"AD","Hiatella_arctica","Nucella_ostrina",0,0,7,NA,0,13.31,NA,NA
+2014-10-13,"AD","Limpets","Nucella_canaliculata",0,0,143,NA,3680,13.31,NA,NA
+2014-10-13,"AD","Limpets","Nucella_ostrina",0,0,7,NA,3680,13.31,NA,NA
+2014-10-13,"AD","Littorina_sitkana","Nucella_canaliculata",0,0,143,NA,1782.85714285714,13.31,NA,NA
+2014-10-13,"AD","Littorina_sitkana","Nucella_ostrina",0,0,7,NA,1782.85714285714,13.31,NA,NA
+2014-10-13,"AD","Modiolus_modiolus","Nucella_canaliculata",0,0,143,NA,0,13.31,NA,NA
+2014-10-13,"AD","Modiolus_modiolus","Nucella_ostrina",0,0,7,NA,0,13.31,NA,NA
+2014-10-13,"AD","Mytilus_californianus","Nucella_canaliculata",0,0,143,NA,7.61904761904763,13.31,NA,NA
+2014-10-13,"AD","Mytilus_californianus","Nucella_ostrina",0,0,7,NA,7.61904761904763,13.31,NA,NA
+2014-10-13,"AD","Mytilus_trossulus","Nucella_canaliculata",0.103448275862069,12,143,45.2804169514946,7123.80952380953,13.31,3.20701167345183e-07,0.00228461403023045
+2014-10-13,"AD","Mytilus_trossulus","Nucella_ostrina",0.166666666666667,1,7,44.5119582005879,7123.80952380953,13.31,5.25605317557669e-07,0.00374431216698225
+2014-10-13,"AD","Nucella_ostrina","Nucella_canaliculata",0,0,143,NA,38.0952380952381,13.31,NA,NA
+2014-10-13,"AD","Nucella_ostrina","Nucella_ostrina",0,0,7,NA,38.0952380952381,13.31,NA,NA
+2014-10-13,"AD","Pollicipes_polymerus","Nucella_canaliculata",0,0,143,NA,19.047619047619,13.31,NA,NA
+2014-10-13,"AD","Pollicipes_polymerus","Nucella_ostrina",0,0,7,NA,19.047619047619,13.31,NA,NA
+2014-10-13,"AD","Semibalanus_cariosus","Nucella_canaliculata",0,0,143,NA,0,13.31,NA,NA
+2014-10-13,"AD","Semibalanus_cariosus","Nucella_ostrina",0,0,7,NA,0,13.31,NA,NA
+2014-10-13,"AE","Adula_californiensis","Nucella_canaliculata",0,0,14,NA,0,13.31,NA,NA
+2014-10-13,"AE","Adula_californiensis","Nucella_ostrina",0,0,7,NA,0,13.31,NA,NA
+2014-10-13,"AE","Balanus_glandula","Nucella_canaliculata",0.0769230769230769,1,14,54.2191542091313,27129.1428571428,13.31,5.22959235028281e-08,0.00141874357955444
+2014-10-13,"AE","Balanus_glandula","Nucella_ostrina",0,0,7,NA,27129.1428571428,13.31,NA,NA
+2014-10-13,"AE","Chthamalus_dalli","Nucella_canaliculata",0,0,14,NA,329.904761904762,13.31,NA,NA
+2014-10-13,"AE","Chthamalus_dalli","Nucella_ostrina",0,0,7,NA,329.904761904762,13.31,NA,NA
+2014-10-13,"AE","Hiatella_arctica","Nucella_canaliculata",0,0,14,NA,0,13.31,NA,NA
+2014-10-13,"AE","Hiatella_arctica","Nucella_ostrina",0,0,7,NA,0,13.31,NA,NA
+2014-10-13,"AE","Limpets","Nucella_canaliculata",0,0,14,NA,3253.33333333333,13.31,NA,NA
+2014-10-13,"AE","Limpets","Nucella_ostrina",0,0,7,NA,3253.33333333333,13.31,NA,NA
+2014-10-13,"AE","Littorina_sitkana","Nucella_canaliculata",0,0,14,NA,3161.90476190476,13.31,NA,NA
+2014-10-13,"AE","Littorina_sitkana","Nucella_ostrina",0,0,7,NA,3161.90476190476,13.31,NA,NA
+2014-10-13,"AE","Modiolus_modiolus","Nucella_canaliculata",0,0,14,NA,0,13.31,NA,NA
+2014-10-13,"AE","Modiolus_modiolus","Nucella_ostrina",0,0,7,NA,0,13.31,NA,NA
+2014-10-13,"AE","Mytilus_californianus","Nucella_canaliculata",0,0,14,NA,0,13.31,NA,NA
+2014-10-13,"AE","Mytilus_californianus","Nucella_ostrina",0,0,7,NA,0,13.31,NA,NA
+2014-10-13,"AE","Mytilus_trossulus","Nucella_canaliculata",0,0,14,NA,5062.85714285714,13.31,NA,NA
+2014-10-13,"AE","Mytilus_trossulus","Nucella_ostrina",0,0,7,NA,5062.85714285714,13.31,NA,NA
+2014-10-13,"AE","Nucella_ostrina","Nucella_canaliculata",0,0,14,NA,3.8095238095238,13.31,NA,NA
+2014-10-13,"AE","Nucella_ostrina","Nucella_ostrina",0,0,7,NA,3.8095238095238,13.31,NA,NA
+2014-10-13,"AE","Pollicipes_polymerus","Nucella_canaliculata",0,0,14,NA,19.047619047619,13.31,NA,NA
+2014-10-13,"AE","Pollicipes_polymerus","Nucella_ostrina",0,0,7,NA,19.047619047619,13.31,NA,NA
+2014-10-13,"AE","Semibalanus_cariosus","Nucella_canaliculata",0,0,14,NA,0,13.31,NA,NA
+2014-10-13,"AE","Semibalanus_cariosus","Nucella_ostrina",0,0,7,NA,0,13.31,NA,NA
+2014-10-13,"AF","Adula_californiensis","Nucella_canaliculata",0,0,29,NA,0,13.31,NA,NA
+2014-10-13,"AF","Adula_californiensis","Nucella_ostrina",0,0,11,NA,0,13.31,NA,NA
+2014-10-13,"AF","Balanus_glandula","Nucella_canaliculata",0.588235294117647,10,29,17.694173649924,53674.6666666667,13.31,6.19371813458901e-07,0.0332445756301354
+2014-10-13,"AF","Balanus_glandula","Nucella_ostrina",0.25,2,11,19.116573416992,53674.6666666667,13.31,2.43646739267314e-07,0.0130776575145933
+2014-10-13,"AF","Chthamalus_dalli","Nucella_canaliculata",0.0588235294117647,1,29,15.5692140530526,341.333333333333,13.31,1.10689311763776e-05,0.00377819517487021
+2014-10-13,"AF","Chthamalus_dalli","Nucella_ostrina",0,0,11,NA,341.333333333333,13.31,NA,NA
+2014-10-13,"AF","Hiatella_arctica","Nucella_canaliculata",0,0,29,NA,0,13.31,NA,NA
+2014-10-13,"AF","Hiatella_arctica","Nucella_ostrina",0,0,11,NA,0,13.31,NA,NA
+2014-10-13,"AF","Limpets","Nucella_canaliculata",0,0,29,NA,666.666666666668,13.31,NA,NA
+2014-10-13,"AF","Limpets","Nucella_ostrina",0,0,11,NA,666.666666666668,13.31,NA,NA
+2014-10-13,"AF","Littorina_sitkana","Nucella_canaliculata",0,0,29,NA,1367.61904761905,13.31,NA,NA
+2014-10-13,"AF","Littorina_sitkana","Nucella_ostrina",0,0,11,NA,1367.61904761905,13.31,NA,NA
+2014-10-13,"AF","Modiolus_modiolus","Nucella_canaliculata",0,0,29,NA,0,13.31,NA,NA
+2014-10-13,"AF","Modiolus_modiolus","Nucella_ostrina",0,0,11,NA,0,13.31,NA,NA
+2014-10-13,"AF","Mytilus_californianus","Nucella_canaliculata",0,0,29,NA,7.61904761904763,13.31,NA,NA
+2014-10-13,"AF","Mytilus_californianus","Nucella_ostrina",0,0,11,NA,7.61904761904763,13.31,NA,NA
+2014-10-13,"AF","Mytilus_trossulus","Nucella_canaliculata",0.0588235294117647,1,29,22.7342249131231,4853.33333333333,13.31,5.33127157613002e-07,0.00258744380494844
+2014-10-13,"AF","Mytilus_trossulus","Nucella_ostrina",0.125,1,11,82.483211149229,4853.33333333333,13.31,3.12251355720106e-07,0.00151545991309491
+2014-10-13,"AF","Nucella_ostrina","Nucella_canaliculata",0,0,29,NA,11.4285714285714,13.31,NA,NA
+2014-10-13,"AF","Nucella_ostrina","Nucella_ostrina",0,0,11,NA,11.4285714285714,13.31,NA,NA
+2014-10-13,"AF","Pollicipes_polymerus","Nucella_canaliculata",0,0,29,NA,0,13.31,NA,NA
+2014-10-13,"AF","Pollicipes_polymerus","Nucella_ostrina",0,0,11,NA,0,13.31,NA,NA
+2014-10-13,"AF","Semibalanus_cariosus","Nucella_canaliculata",0,0,29,NA,0,13.31,NA,NA
+2014-10-13,"AF","Semibalanus_cariosus","Nucella_ostrina",0,0,11,NA,0,13.31,NA,NA
+2014-10-13,"AG","Adula_californiensis","Nucella_canaliculata",0,0,33,NA,0,13.31,NA,NA
+2014-10-13,"AG","Adula_californiensis","Nucella_ostrina",0,0,17,NA,0,13.31,NA,NA
+2014-10-13,"AG","Balanus_glandula","Nucella_canaliculata",0.0357142857142857,1,33,7.54162940673452,9839.99999999999,13.31,4.81262123206296e-07,0.00473561929234995
+2014-10-13,"AG","Balanus_glandula","Nucella_ostrina",0,0,17,NA,9839.99999999999,13.31,NA,NA
+2014-10-13,"AG","Chthamalus_dalli","Nucella_canaliculata",0,0,33,NA,304.761904761905,13.31,NA,NA
+2014-10-13,"AG","Chthamalus_dalli","Nucella_ostrina",0,0,17,NA,304.761904761905,13.31,NA,NA
+2014-10-13,"AG","Hiatella_arctica","Nucella_canaliculata",0,0,33,NA,0,13.31,NA,NA
+2014-10-13,"AG","Hiatella_arctica","Nucella_ostrina",0,0,17,NA,0,13.31,NA,NA
+2014-10-13,"AG","Limpets","Nucella_canaliculata",0,0,33,NA,773.333333333333,13.31,NA,NA
+2014-10-13,"AG","Limpets","Nucella_ostrina",0,0,17,NA,773.333333333333,13.31,NA,NA
+2014-10-13,"AG","Littorina_sitkana","Nucella_canaliculata",0,0,33,NA,689.52380952381,13.31,NA,NA
+2014-10-13,"AG","Littorina_sitkana","Nucella_ostrina",0,0,17,NA,689.52380952381,13.31,NA,NA
+2014-10-13,"AG","Modiolus_modiolus","Nucella_canaliculata",0,0,33,NA,0,13.31,NA,NA
+2014-10-13,"AG","Modiolus_modiolus","Nucella_ostrina",0,0,17,NA,0,13.31,NA,NA
+2014-10-13,"AG","Mytilus_californianus","Nucella_canaliculata",0,0,33,NA,0,13.31,NA,NA
+2014-10-13,"AG","Mytilus_californianus","Nucella_ostrina",0,0,17,NA,0,13.31,NA,NA
+2014-10-13,"AG","Mytilus_trossulus","Nucella_canaliculata",0.142857142857143,4,33,74.8142766076946,4430.47619047619,13.31,4.30989879295253e-07,0.00190949039855382
+2014-10-13,"AG","Mytilus_trossulus","Nucella_ostrina",0,0,17,NA,4430.47619047619,13.31,NA,NA
+2014-10-13,"AG","Nucella_ostrina","Nucella_canaliculata",0,0,33,NA,15.2380952380953,13.31,NA,NA
+2014-10-13,"AG","Nucella_ostrina","Nucella_ostrina",0,0,17,NA,15.2380952380953,13.31,NA,NA
+2014-10-13,"AG","Pollicipes_polymerus","Nucella_canaliculata",0,0,33,NA,0,13.31,NA,NA
+2014-10-13,"AG","Pollicipes_polymerus","Nucella_ostrina",0,0,17,NA,0,13.31,NA,NA
+2014-10-13,"AG","Semibalanus_cariosus","Nucella_canaliculata",0,0,33,NA,11.4285714285714,13.31,NA,NA
+2014-10-13,"AG","Semibalanus_cariosus","Nucella_ostrina",0,0,17,NA,11.4285714285714,13.31,NA,NA
+2014-10-13,"B","Adula_californiensis","Nucella_canaliculata",0,0,140,NA,0,13.31,NA,NA
+2014-10-13,"B","Adula_californiensis","Nucella_ostrina",0,0,4,NA,0,13.31,NA,NA
+2014-10-13,"B","Balanus_glandula","Nucella_canaliculata",0.0813008130081301,10,140,19.2923270581255,10709.3333333333,13.31,3.93502808506184e-07,0.00421415274389556
+2014-10-13,"B","Balanus_glandula","Nucella_ostrina",0,0,4,NA,10709.3333333333,13.31,NA,NA
+2014-10-13,"B","Chthamalus_dalli","Nucella_canaliculata",0,0,140,NA,533.333333333333,13.31,NA,NA
+2014-10-13,"B","Chthamalus_dalli","Nucella_ostrina",0,0,4,NA,533.333333333333,13.31,NA,NA
+2014-10-13,"B","Hiatella_arctica","Nucella_canaliculata",0,0,140,NA,0,13.31,NA,NA
+2014-10-13,"B","Hiatella_arctica","Nucella_ostrina",0,0,4,NA,0,13.31,NA,NA
+2014-10-13,"B","Limpets","Nucella_canaliculata",0,0,140,NA,5401.90476190476,13.31,NA,NA
+2014-10-13,"B","Limpets","Nucella_ostrina",0,0,4,NA,5401.90476190476,13.31,NA,NA
+2014-10-13,"B","Littorina_sitkana","Nucella_canaliculata",0,0,140,NA,125.714285714286,13.31,NA,NA
+2014-10-13,"B","Littorina_sitkana","Nucella_ostrina",0,0,4,NA,125.714285714286,13.31,NA,NA
+2014-10-13,"B","Modiolus_modiolus","Nucella_canaliculata",0,0,140,NA,0,13.31,NA,NA
+2014-10-13,"B","Modiolus_modiolus","Nucella_ostrina",0,0,4,NA,0,13.31,NA,NA
+2014-10-13,"B","Mytilus_californianus","Nucella_canaliculata",0,0,140,NA,0,13.31,NA,NA
+2014-10-13,"B","Mytilus_californianus","Nucella_ostrina",0,0,4,NA,0,13.31,NA,NA
+2014-10-13,"B","Mytilus_trossulus","Nucella_canaliculata",0.0569105691056911,7,140,34.2654598143757,6083.80952380952,13.31,2.72998811352663e-07,0.00166087276849601
+2014-10-13,"B","Mytilus_trossulus","Nucella_ostrina",0,0,4,NA,6083.80952380952,13.31,NA,NA
+2014-10-13,"B","Nucella_ostrina","Nucella_canaliculata",0,0,140,NA,87.6190476190475,13.31,NA,NA
+2014-10-13,"B","Nucella_ostrina","Nucella_ostrina",0,0,4,NA,87.6190476190475,13.31,NA,NA
+2014-10-13,"B","Pollicipes_polymerus","Nucella_canaliculata",0,0,140,NA,186.666666666667,13.31,NA,NA
+2014-10-13,"B","Pollicipes_polymerus","Nucella_ostrina",0,0,4,NA,186.666666666667,13.31,NA,NA
+2014-10-13,"B","Semibalanus_cariosus","Nucella_canaliculata",0,0,140,NA,3.8095238095238,13.31,NA,NA
+2014-10-13,"B","Semibalanus_cariosus","Nucella_ostrina",0,0,4,NA,3.8095238095238,13.31,NA,NA
+2014-10-13,"BB","Adula_californiensis","Nucella_canaliculata",0,0,11,NA,0,13.31,NA,NA
+2014-10-13,"BB","Adula_californiensis","Nucella_ostrina",0,0,13,NA,0,13.31,NA,NA
+2014-10-13,"BB","Balanus_glandula","Nucella_canaliculata",0.125,1,11,26.4943987117673,5451.42857142857,13.31,8.65457247831386e-07,0.00471797836817796
+2014-10-13,"BB","Balanus_glandula","Nucella_ostrina",0,0,13,NA,5451.42857142857,13.31,NA,NA
+2014-10-13,"BB","Chthamalus_dalli","Nucella_canaliculata",0,0,11,NA,160,13.31,NA,NA
+2014-10-13,"BB","Chthamalus_dalli","Nucella_ostrina",0,0,13,NA,160,13.31,NA,NA
+2014-10-13,"BB","Hiatella_arctica","Nucella_canaliculata",0,0,11,NA,0,13.31,NA,NA
+2014-10-13,"BB","Hiatella_arctica","Nucella_ostrina",0,0,13,NA,0,13.31,NA,NA
+2014-10-13,"BB","Limpets","Nucella_canaliculata",0,0,11,NA,1001.90476190476,13.31,NA,NA
+2014-10-13,"BB","Limpets","Nucella_ostrina",0,0,13,NA,1001.90476190476,13.31,NA,NA
+2014-10-13,"BB","Littorina_sitkana","Nucella_canaliculata",0,0,11,NA,1161.90476190476,13.31,NA,NA
+2014-10-13,"BB","Littorina_sitkana","Nucella_ostrina",0,0,13,NA,1161.90476190476,13.31,NA,NA
+2014-10-13,"BB","Modiolus_modiolus","Nucella_canaliculata",0,0,11,NA,0,13.31,NA,NA
+2014-10-13,"BB","Modiolus_modiolus","Nucella_ostrina",0,0,13,NA,0,13.31,NA,NA
+2014-10-13,"BB","Mytilus_californianus","Nucella_canaliculata",0,0,11,NA,0,13.31,NA,NA
+2014-10-13,"BB","Mytilus_californianus","Nucella_ostrina",0,0,13,NA,0,13.31,NA,NA
+2014-10-13,"BB","Mytilus_trossulus","Nucella_canaliculata",0.25,2,11,84.8307506183336,4464.7619047619,13.31,6.60067568607048e-07,0.00294704453488556
+2014-10-13,"BB","Mytilus_trossulus","Nucella_ostrina",0,0,13,NA,4464.7619047619,13.31,NA,NA
+2014-10-13,"BB","Nucella_ostrina","Nucella_canaliculata",0,0,11,NA,0,13.31,NA,NA
+2014-10-13,"BB","Nucella_ostrina","Nucella_ostrina",0,0,13,NA,0,13.31,NA,NA
+2014-10-13,"BB","Pollicipes_polymerus","Nucella_canaliculata",0,0,11,NA,0,13.31,NA,NA
+2014-10-13,"BB","Pollicipes_polymerus","Nucella_ostrina",0,0,13,NA,0,13.31,NA,NA
+2014-10-13,"BB","Semibalanus_cariosus","Nucella_canaliculata",0,0,11,NA,0,13.31,NA,NA
+2014-10-13,"BB","Semibalanus_cariosus","Nucella_ostrina",0,0,13,NA,0,13.31,NA,NA
+2014-10-13,"BC","Adula_californiensis","Nucella_canaliculata",0,0,6,NA,0,13.31,NA,NA
+2014-10-13,"BC","Adula_californiensis","Nucella_ostrina",0,0,14,NA,0,13.31,NA,NA
+2014-10-13,"BC","Balanus_glandula","Nucella_canaliculata",0,0,6,NA,13249.5238095238,13.31,NA,NA
+2014-10-13,"BC","Balanus_glandula","Nucella_ostrina",0,0,14,NA,13249.5238095238,13.31,NA,NA
+2014-10-13,"BC","Chthamalus_dalli","Nucella_canaliculata",0,0,6,NA,0,13.31,NA,NA
+2014-10-13,"BC","Chthamalus_dalli","Nucella_ostrina",0,0,14,NA,0,13.31,NA,NA
+2014-10-13,"BC","Hiatella_arctica","Nucella_canaliculata",0,0,6,NA,0,13.31,NA,NA
+2014-10-13,"BC","Hiatella_arctica","Nucella_ostrina",0,0,14,NA,0,13.31,NA,NA
+2014-10-13,"BC","Limpets","Nucella_canaliculata",0,0,6,NA,1051.42857142857,13.31,NA,NA
+2014-10-13,"BC","Limpets","Nucella_ostrina",0,0,14,NA,1051.42857142857,13.31,NA,NA
+2014-10-13,"BC","Littorina_sitkana","Nucella_canaliculata",0,0,6,NA,1577.14285714285,13.31,NA,NA
+2014-10-13,"BC","Littorina_sitkana","Nucella_ostrina",0,0,14,NA,1577.14285714285,13.31,NA,NA
+2014-10-13,"BC","Modiolus_modiolus","Nucella_canaliculata",0,0,6,NA,0,13.31,NA,NA
+2014-10-13,"BC","Modiolus_modiolus","Nucella_ostrina",0,0,14,NA,0,13.31,NA,NA
+2014-10-13,"BC","Mytilus_californianus","Nucella_canaliculata",0,0,6,NA,0,13.31,NA,NA
+2014-10-13,"BC","Mytilus_californianus","Nucella_ostrina",0,0,14,NA,0,13.31,NA,NA
+2014-10-13,"BC","Mytilus_trossulus","Nucella_canaliculata",0,0,6,NA,5954.28571428571,13.31,NA,NA
+2014-10-13,"BC","Mytilus_trossulus","Nucella_ostrina",0.0769230769230769,1,14,33.2801198756386,5954.28571428571,13.31,3.88187990597296e-07,0.00231138220687076
+2014-10-13,"BC","Nucella_ostrina","Nucella_canaliculata",0,0,6,NA,3.8095238095238,13.31,NA,NA
+2014-10-13,"BC","Nucella_ostrina","Nucella_ostrina",0,0,14,NA,3.8095238095238,13.31,NA,NA
+2014-10-13,"BC","Pollicipes_polymerus","Nucella_canaliculata",0,0,6,NA,0,13.31,NA,NA
+2014-10-13,"BC","Pollicipes_polymerus","Nucella_ostrina",0,0,14,NA,0,13.31,NA,NA
+2014-10-13,"BC","Semibalanus_cariosus","Nucella_canaliculata",0,0,6,NA,0,13.31,NA,NA
+2014-10-13,"BC","Semibalanus_cariosus","Nucella_ostrina",0,0,14,NA,0,13.31,NA,NA
+2014-10-13,"BD","Adula_californiensis","Nucella_canaliculata",0,0,34,NA,0,13.31,NA,NA
+2014-10-13,"BD","Adula_californiensis","Nucella_ostrina",0,0,15,NA,0,13.31,NA,NA
+2014-10-13,"BD","Balanus_glandula","Nucella_canaliculata",0.0645161290322581,2,34,48.211029937671,0,13.31,Inf,0.00133820267095863
+2014-10-13,"BD","Balanus_glandula","Nucella_ostrina",0.0714285714285714,1,15,83.9040100390734,0,13.31,Inf,0.000851312963412687
+2014-10-13,"BD","Chthamalus_dalli","Nucella_canaliculata",0,0,34,NA,0,13.31,NA,NA
+2014-10-13,"BD","Chthamalus_dalli","Nucella_ostrina",0,0,15,NA,0,13.31,NA,NA
+2014-10-13,"BD","Hiatella_arctica","Nucella_canaliculata",0,0,34,NA,0,13.31,NA,NA
+2014-10-13,"BD","Hiatella_arctica","Nucella_ostrina",0,0,15,NA,0,13.31,NA,NA
+2014-10-13,"BD","Limpets","Nucella_canaliculata",0,0,34,NA,0,13.31,NA,NA
+2014-10-13,"BD","Limpets","Nucella_ostrina",0,0,15,NA,0,13.31,NA,NA
+2014-10-13,"BD","Littorina_sitkana","Nucella_canaliculata",0,0,34,NA,0,13.31,NA,NA
+2014-10-13,"BD","Littorina_sitkana","Nucella_ostrina",0,0,15,NA,0,13.31,NA,NA
+2014-10-13,"BD","Modiolus_modiolus","Nucella_canaliculata",0,0,34,NA,0,13.31,NA,NA
+2014-10-13,"BD","Modiolus_modiolus","Nucella_ostrina",0,0,15,NA,0,13.31,NA,NA
+2014-10-13,"BD","Mytilus_californianus","Nucella_canaliculata",0,0,34,NA,0,13.31,NA,NA
+2014-10-13,"BD","Mytilus_californianus","Nucella_ostrina",0,0,15,NA,0,13.31,NA,NA
+2014-10-13,"BD","Mytilus_trossulus","Nucella_canaliculata",0.032258064516129,1,34,34.3625271974407,0,13.31,Inf,0.000938757045742888
+2014-10-13,"BD","Mytilus_trossulus","Nucella_ostrina",0,0,15,NA,0,13.31,NA,NA
+2014-10-13,"BD","Nucella_ostrina","Nucella_canaliculata",0,0,34,NA,0,13.31,NA,NA
+2014-10-13,"BD","Nucella_ostrina","Nucella_ostrina",0,0,15,NA,0,13.31,NA,NA
+2014-10-13,"BD","Pollicipes_polymerus","Nucella_canaliculata",0,0,34,NA,0,13.31,NA,NA
+2014-10-13,"BD","Pollicipes_polymerus","Nucella_ostrina",0,0,15,NA,0,13.31,NA,NA
+2014-10-13,"BD","Semibalanus_cariosus","Nucella_canaliculata",0,0,34,NA,0,13.31,NA,NA
+2014-10-13,"BD","Semibalanus_cariosus","Nucella_ostrina",0,0,15,NA,0,13.31,NA,NA
+2014-10-13,"BE","Adula_californiensis","Nucella_canaliculata",0,0,2,NA,0,13.31,NA,NA
+2014-10-13,"BE","Adula_californiensis","Nucella_ostrina",0,0,1,NA,0,13.31,NA,NA
+2014-10-13,"BE","Balanus_glandula","Nucella_canaliculata",Inf,2,2,19.6211530180115,90720,13.31,5.6178796829502e-07,0.0509654044837242
+2014-10-13,"BE","Balanus_glandula","Nucella_ostrina",0,0,1,NA,90720,13.31,NA,NA
+2014-10-13,"BE","Chthamalus_dalli","Nucella_canaliculata",0,0,2,NA,0,13.31,NA,NA
+2014-10-13,"BE","Chthamalus_dalli","Nucella_ostrina",0,0,1,NA,0,13.31,NA,NA
+2014-10-13,"BE","Hiatella_arctica","Nucella_canaliculata",0,0,2,NA,0,13.31,NA,NA
+2014-10-13,"BE","Hiatella_arctica","Nucella_ostrina",0,0,1,NA,0,13.31,NA,NA
+2014-10-13,"BE","Limpets","Nucella_canaliculata",0,0,2,NA,702.857142857143,13.31,NA,NA
+2014-10-13,"BE","Limpets","Nucella_ostrina",0,0,1,NA,702.857142857143,13.31,NA,NA
+2014-10-13,"BE","Littorina_sitkana","Nucella_canaliculata",0,0,2,NA,3485.71428571429,13.31,NA,NA
+2014-10-13,"BE","Littorina_sitkana","Nucella_ostrina",0,0,1,NA,3485.71428571429,13.31,NA,NA
+2014-10-13,"BE","Modiolus_modiolus","Nucella_canaliculata",0,0,2,NA,0,13.31,NA,NA
+2014-10-13,"BE","Modiolus_modiolus","Nucella_ostrina",0,0,1,NA,0,13.31,NA,NA
+2014-10-13,"BE","Mytilus_californianus","Nucella_canaliculata",0,0,2,NA,0,13.31,NA,NA
+2014-10-13,"BE","Mytilus_californianus","Nucella_ostrina",0,0,1,NA,0,13.31,NA,NA
+2014-10-13,"BE","Mytilus_trossulus","Nucella_canaliculata",0,0,2,NA,8297.14285714285,13.31,NA,NA
+2014-10-13,"BE","Mytilus_trossulus","Nucella_ostrina",0,0,1,NA,8297.14285714285,13.31,NA,NA
+2014-10-13,"BE","Nucella_ostrina","Nucella_canaliculata",0,0,2,NA,0,13.31,NA,NA
+2014-10-13,"BE","Nucella_ostrina","Nucella_ostrina",0,0,1,NA,0,13.31,NA,NA
+2014-10-13,"BE","Pollicipes_polymerus","Nucella_canaliculata",0,0,2,NA,0,13.31,NA,NA
+2014-10-13,"BE","Pollicipes_polymerus","Nucella_ostrina",0,0,1,NA,0,13.31,NA,NA
+2014-10-13,"BE","Semibalanus_cariosus","Nucella_canaliculata",0,0,2,NA,0,13.31,NA,NA
+2014-10-13,"BE","Semibalanus_cariosus","Nucella_ostrina",0,0,1,NA,0,13.31,NA,NA
+2014-10-13,"BF","Adula_californiensis","Nucella_canaliculata",0,0,2,NA,0,13.31,NA,NA
+2014-10-13,"BF","Adula_californiensis","Nucella_ostrina",0,0,6,NA,0,13.31,NA,NA
+2014-10-13,"BF","Balanus_glandula","Nucella_canaliculata",0,0,2,NA,26240,13.31,NA,NA
+2014-10-13,"BF","Balanus_glandula","Nucella_ostrina",0,0,6,NA,26240,13.31,NA,NA
+2014-10-13,"BF","Chthamalus_dalli","Nucella_canaliculata",0,0,2,NA,0,13.31,NA,NA
+2014-10-13,"BF","Chthamalus_dalli","Nucella_ostrina",0,0,6,NA,0,13.31,NA,NA
+2014-10-13,"BF","Hiatella_arctica","Nucella_canaliculata",0,0,2,NA,0,13.31,NA,NA
+2014-10-13,"BF","Hiatella_arctica","Nucella_ostrina",0,0,6,NA,0,13.31,NA,NA
+2014-10-13,"BF","Limpets","Nucella_canaliculata",0,0,2,NA,605.714285714286,13.31,NA,NA
+2014-10-13,"BF","Limpets","Nucella_ostrina",0,0,6,NA,605.714285714286,13.31,NA,NA
+2014-10-13,"BF","Littorina_sitkana","Nucella_canaliculata",0,0,2,NA,4125.71428571429,13.31,NA,NA
+2014-10-13,"BF","Littorina_sitkana","Nucella_ostrina",0,0,6,NA,4125.71428571429,13.31,NA,NA
+2014-10-13,"BF","Modiolus_modiolus","Nucella_canaliculata",0,0,2,NA,0,13.31,NA,NA
+2014-10-13,"BF","Modiolus_modiolus","Nucella_ostrina",0,0,6,NA,0,13.31,NA,NA
+2014-10-13,"BF","Mytilus_californianus","Nucella_canaliculata",0,0,2,NA,22.8571428571429,13.31,NA,NA
+2014-10-13,"BF","Mytilus_californianus","Nucella_ostrina",0,0,6,NA,22.8571428571429,13.31,NA,NA
+2014-10-13,"BF","Mytilus_trossulus","Nucella_canaliculata",0,0,2,NA,8468.57142857143,13.31,NA,NA
+2014-10-13,"BF","Mytilus_trossulus","Nucella_ostrina",0,0,6,NA,8468.57142857143,13.31,NA,NA
+2014-10-13,"BF","Nucella_ostrina","Nucella_canaliculata",0,0,2,NA,11.4285714285714,13.31,NA,NA
+2014-10-13,"BF","Nucella_ostrina","Nucella_ostrina",0,0,6,NA,11.4285714285714,13.31,NA,NA
+2014-10-13,"BF","Pollicipes_polymerus","Nucella_canaliculata",0,0,2,NA,34.2857142857143,13.31,NA,NA
+2014-10-13,"BF","Pollicipes_polymerus","Nucella_ostrina",0,0,6,NA,34.2857142857143,13.31,NA,NA
+2014-10-13,"BF","Semibalanus_cariosus","Nucella_canaliculata",0,0,2,NA,0,13.31,NA,NA
+2014-10-13,"BF","Semibalanus_cariosus","Nucella_ostrina",0,0,6,NA,0,13.31,NA,NA
+2014-10-13,"C","Adula_californiensis","Nucella_canaliculata",0,0,66,NA,0,13.31,NA,NA
+2014-10-13,"C","Adula_californiensis","Nucella_ostrina",0,0,7,NA,0,13.31,NA,NA
+2014-10-13,"C","Balanus_glandula","Nucella_canaliculata",0.0943396226415094,5,66,22.1105853997607,19413.3333333333,13.31,2.19782840541175e-07,0.00426671754437268
+2014-10-13,"C","Balanus_glandula","Nucella_ostrina",0,0,7,NA,19413.3333333333,13.31,NA,NA
+2014-10-13,"C","Chthamalus_dalli","Nucella_canaliculata",0,0,66,NA,597.333333333333,13.31,NA,NA
+2014-10-13,"C","Chthamalus_dalli","Nucella_ostrina",0,0,7,NA,597.333333333333,13.31,NA,NA
+2014-10-13,"C","Hiatella_arctica","Nucella_canaliculata",0,0,66,NA,0,13.31,NA,NA
+2014-10-13,"C","Hiatella_arctica","Nucella_ostrina",0,0,7,NA,0,13.31,NA,NA
+2014-10-13,"C","Limpets","Nucella_canaliculata",0,0,66,NA,4278.09523809524,13.31,NA,NA
+2014-10-13,"C","Limpets","Nucella_ostrina",0,0,7,NA,4278.09523809524,13.31,NA,NA
+2014-10-13,"C","Littorina_sitkana","Nucella_canaliculata",0,0,66,NA,22.8571428571429,13.31,NA,NA
+2014-10-13,"C","Littorina_sitkana","Nucella_ostrina",0,0,7,NA,22.8571428571429,13.31,NA,NA
+2014-10-13,"C","Modiolus_modiolus","Nucella_canaliculata",0,0,66,NA,0,13.31,NA,NA
+2014-10-13,"C","Modiolus_modiolus","Nucella_ostrina",0,0,7,NA,0,13.31,NA,NA
+2014-10-13,"C","Mytilus_californianus","Nucella_canaliculata",0,0,66,NA,15.2380952380952,13.31,NA,NA
+2014-10-13,"C","Mytilus_californianus","Nucella_ostrina",0,0,7,NA,15.2380952380952,13.31,NA,NA
+2014-10-13,"C","Mytilus_trossulus","Nucella_canaliculata",0.150943396226415,8,66,53.9210660090522,1169.52380952381,13.31,2.39357246454335e-06,0.00279933998710402
+2014-10-13,"C","Mytilus_trossulus","Nucella_ostrina",0.166666666666667,1,7,29.5250437618283,1169.52380952381,13.31,4.82668694658189e-06,0.00564492530514528
+2014-10-13,"C","Nucella_ostrina","Nucella_canaliculata",0,0,66,NA,7.61904761904763,13.31,NA,NA
+2014-10-13,"C","Nucella_ostrina","Nucella_ostrina",0,0,7,NA,7.61904761904763,13.31,NA,NA
+2014-10-13,"C","Pollicipes_polymerus","Nucella_canaliculata",0,0,66,NA,236.190476190476,13.31,NA,NA
+2014-10-13,"C","Pollicipes_polymerus","Nucella_ostrina",0,0,7,NA,236.190476190476,13.31,NA,NA
+2014-10-13,"C","Semibalanus_cariosus","Nucella_canaliculata",0,0,66,NA,3.8095238095238,13.31,NA,NA
+2014-10-13,"C","Semibalanus_cariosus","Nucella_ostrina",0,0,7,NA,3.8095238095238,13.31,NA,NA
+2014-10-13,"D","Adula_californiensis","Nucella_canaliculata",0,0,25,NA,0,13.31,NA,NA
+2014-10-13,"D","Adula_californiensis","Nucella_ostrina",0,0,12,NA,0,13.31,NA,NA
+2014-10-13,"D","Balanus_glandula","Nucella_canaliculata",0,0,25,NA,16199.619047619,13.31,NA,NA
+2014-10-13,"D","Balanus_glandula","Nucella_ostrina",0,0,12,NA,16199.619047619,13.31,NA,NA
+2014-10-13,"D","Chthamalus_dalli","Nucella_canaliculata",0,0,25,NA,170.666666666667,13.31,NA,NA
+2014-10-13,"D","Chthamalus_dalli","Nucella_ostrina",0,0,12,NA,170.666666666667,13.31,NA,NA
+2014-10-13,"D","Hiatella_arctica","Nucella_canaliculata",0,0,25,NA,0,13.31,NA,NA
+2014-10-13,"D","Hiatella_arctica","Nucella_ostrina",0,0,12,NA,0,13.31,NA,NA
+2014-10-13,"D","Limpets","Nucella_canaliculata",0,0,25,NA,2335.23809523809,13.31,NA,NA
+2014-10-13,"D","Limpets","Nucella_ostrina",0,0,12,NA,2335.23809523809,13.31,NA,NA
+2014-10-13,"D","Littorina_sitkana","Nucella_canaliculata",0,0,25,NA,1127.61904761905,13.31,NA,NA
+2014-10-13,"D","Littorina_sitkana","Nucella_ostrina",0,0,12,NA,1127.61904761905,13.31,NA,NA
+2014-10-13,"D","Modiolus_modiolus","Nucella_canaliculata",0,0,25,NA,0,13.31,NA,NA
+2014-10-13,"D","Modiolus_modiolus","Nucella_ostrina",0,0,12,NA,0,13.31,NA,NA
+2014-10-13,"D","Mytilus_californianus","Nucella_canaliculata",0,0,25,NA,7.61904761904763,13.31,NA,NA
+2014-10-13,"D","Mytilus_californianus","Nucella_ostrina",0,0,12,NA,7.61904761904763,13.31,NA,NA
+2014-10-13,"D","Mytilus_trossulus","Nucella_canaliculata",0.136363636363636,3,25,72.3840724353305,5366.09523809524,13.31,3.51072800851285e-07,0.00188389008487284
+2014-10-13,"D","Mytilus_trossulus","Nucella_ostrina",0,0,12,NA,5366.09523809524,13.31,NA,NA
+2014-10-13,"D","Nucella_ostrina","Nucella_canaliculata",0,0,25,NA,3.8095238095238,13.31,NA,NA
+2014-10-13,"D","Nucella_ostrina","Nucella_ostrina",0,0,12,NA,3.8095238095238,13.31,NA,NA
+2014-10-13,"D","Pollicipes_polymerus","Nucella_canaliculata",0,0,25,NA,64.7619047619047,13.31,NA,NA
+2014-10-13,"D","Pollicipes_polymerus","Nucella_ostrina",0,0,12,NA,64.7619047619047,13.31,NA,NA
+2014-10-13,"D","Semibalanus_cariosus","Nucella_canaliculata",0,0,25,NA,0,13.31,NA,NA
+2014-10-13,"D","Semibalanus_cariosus","Nucella_ostrina",0,0,12,NA,0,13.31,NA,NA
+2014-10-13,"E","Adula_californiensis","Nucella_canaliculata",0,0,79,NA,0,13.31,NA,NA
+2014-10-13,"E","Adula_californiensis","Nucella_ostrina",0,0,7,NA,0,13.31,NA,NA
+2014-10-13,"E","Balanus_glandula","Nucella_canaliculata",0.0133333333333333,1,79,36.3873371961977,2899.04761904762,13.31,1.26395936557087e-07,0.000366427838933116
+2014-10-13,"E","Balanus_glandula","Nucella_ostrina",0,0,7,NA,2899.04761904762,13.31,NA,NA
+2014-10-13,"E","Chthamalus_dalli","Nucella_canaliculata",0,0,79,NA,99.047619047619,13.31,NA,NA
+2014-10-13,"E","Chthamalus_dalli","Nucella_ostrina",0,0,7,NA,99.047619047619,13.31,NA,NA
+2014-10-13,"E","Hiatella_arctica","Nucella_canaliculata",0,0,79,NA,0,13.31,NA,NA
+2014-10-13,"E","Hiatella_arctica","Nucella_ostrina",0,0,7,NA,0,13.31,NA,NA
+2014-10-13,"E","Limpets","Nucella_canaliculata",0,0,79,NA,632.380952380951,13.31,NA,NA
+2014-10-13,"E","Limpets","Nucella_ostrina",0,0,7,NA,632.380952380951,13.31,NA,NA
+2014-10-13,"E","Littorina_sitkana","Nucella_canaliculata",0,0,79,NA,491.428571428571,13.31,NA,NA
+2014-10-13,"E","Littorina_sitkana","Nucella_ostrina",0,0,7,NA,491.428571428571,13.31,NA,NA
+2014-10-13,"E","Modiolus_modiolus","Nucella_canaliculata",0,0,79,NA,0,13.31,NA,NA
+2014-10-13,"E","Modiolus_modiolus","Nucella_ostrina",0,0,7,NA,0,13.31,NA,NA
+2014-10-13,"E","Mytilus_californianus","Nucella_canaliculata",0,0,79,NA,0,13.31,NA,NA
+2014-10-13,"E","Mytilus_californianus","Nucella_ostrina",0,0,7,NA,0,13.31,NA,NA
+2014-10-13,"E","Mytilus_trossulus","Nucella_canaliculata",0.04,3,79,66.9002727814268,2971.42857142857,13.31,2.01217990627921e-07,0.00059790488643725
+2014-10-13,"E","Mytilus_trossulus","Nucella_ostrina",0,0,7,NA,2971.42857142857,13.31,NA,NA
+2014-10-13,"E","Nucella_ostrina","Nucella_canaliculata",0,0,79,NA,7.6190476190476,13.31,NA,NA
+2014-10-13,"E","Nucella_ostrina","Nucella_ostrina",0,0,7,NA,7.6190476190476,13.31,NA,NA
+2014-10-13,"E","Pollicipes_polymerus","Nucella_canaliculata",0,0,79,NA,26.6666666666667,13.31,NA,NA
+2014-10-13,"E","Pollicipes_polymerus","Nucella_ostrina",0,0,7,NA,26.6666666666667,13.31,NA,NA
+2014-10-13,"E","Semibalanus_cariosus","Nucella_canaliculata",0,0,79,NA,0,13.31,NA,NA
+2014-10-13,"E","Semibalanus_cariosus","Nucella_ostrina",0,0,7,NA,0,13.31,NA,NA
+2014-10-13,"F","Adula_californiensis","Nucella_canaliculata",0,0,10,NA,0,13.31,NA,NA
+2014-10-13,"F","Adula_californiensis","Nucella_ostrina",0,0,15,NA,0,13.31,NA,NA
+2014-10-13,"F","Balanus_glandula","Nucella_canaliculata",0,0,10,NA,11961.1428571429,13.31,NA,NA
+2014-10-13,"F","Balanus_glandula","Nucella_ostrina",0,0,15,NA,11961.1428571429,13.31,NA,NA
+2014-10-13,"F","Chthamalus_dalli","Nucella_canaliculata",0,0,10,NA,53.3333333333333,13.31,NA,NA
+2014-10-13,"F","Chthamalus_dalli","Nucella_ostrina",0,0,15,NA,53.3333333333333,13.31,NA,NA
+2014-10-13,"F","Hiatella_arctica","Nucella_canaliculata",0,0,10,NA,0,13.31,NA,NA
+2014-10-13,"F","Hiatella_arctica","Nucella_ostrina",0,0,15,NA,0,13.31,NA,NA
+2014-10-13,"F","Limpets","Nucella_canaliculata",0,0,10,NA,5283.80952380952,13.31,NA,NA
+2014-10-13,"F","Limpets","Nucella_ostrina",0,0,15,NA,5283.80952380952,13.31,NA,NA
+2014-10-13,"F","Littorina_sitkana","Nucella_canaliculata",0,0,10,NA,1668.57142857143,13.31,NA,NA
+2014-10-13,"F","Littorina_sitkana","Nucella_ostrina",0,0,15,NA,1668.57142857143,13.31,NA,NA
+2014-10-13,"F","Modiolus_modiolus","Nucella_canaliculata",0,0,10,NA,0,13.31,NA,NA
+2014-10-13,"F","Modiolus_modiolus","Nucella_ostrina",0,0,15,NA,0,13.31,NA,NA
+2014-10-13,"F","Mytilus_californianus","Nucella_canaliculata",0,0,10,NA,0,13.31,NA,NA
+2014-10-13,"F","Mytilus_californianus","Nucella_ostrina",0,0,15,NA,0,13.31,NA,NA
+2014-10-13,"F","Mytilus_trossulus","Nucella_canaliculata",0,0,10,NA,6667.42857142857,13.31,NA,NA
+2014-10-13,"F","Mytilus_trossulus","Nucella_ostrina",0,0,15,NA,6667.42857142857,13.31,NA,NA
+2014-10-13,"F","Nucella_ostrina","Nucella_canaliculata",0,0,10,NA,3.8095238095238,13.31,NA,NA
+2014-10-13,"F","Nucella_ostrina","Nucella_ostrina",0,0,15,NA,3.8095238095238,13.31,NA,NA
+2014-10-13,"F","Pollicipes_polymerus","Nucella_canaliculata",0,0,10,NA,19.0476190476191,13.31,NA,NA
+2014-10-13,"F","Pollicipes_polymerus","Nucella_ostrina",0,0,15,NA,19.0476190476191,13.31,NA,NA
+2014-10-13,"F","Semibalanus_cariosus","Nucella_canaliculata",0,0,10,NA,0,13.31,NA,NA
+2014-10-13,"F","Semibalanus_cariosus","Nucella_ostrina",0,0,15,NA,0,13.31,NA,NA
+2014-10-13,"G","Adula_californiensis","Nucella_canaliculata",0,0,43,NA,0,13.31,NA,NA
+2014-10-13,"G","Adula_californiensis","Nucella_ostrina",0,0,6,NA,0,13.31,NA,NA
+2014-10-13,"G","Balanus_glandula","Nucella_canaliculata",0.025,1,43,20.8492703880316,13268.5714285714,13.31,9.03701452562824e-08,0.00119908272734336
+2014-10-13,"G","Balanus_glandula","Nucella_ostrina",0,0,6,NA,13268.5714285714,13.31,NA,NA
+2014-10-13,"G","Chthamalus_dalli","Nucella_canaliculata",0,0,43,NA,152.380952380952,13.31,NA,NA
+2014-10-13,"G","Chthamalus_dalli","Nucella_ostrina",0,0,6,NA,152.380952380952,13.31,NA,NA
+2014-10-13,"G","Hiatella_arctica","Nucella_canaliculata",0,0,43,NA,0,13.31,NA,NA
+2014-10-13,"G","Hiatella_arctica","Nucella_ostrina",0,0,6,NA,0,13.31,NA,NA
+2014-10-13,"G","Limpets","Nucella_canaliculata",0,0,43,NA,1702.85714285714,13.31,NA,NA
+2014-10-13,"G","Limpets","Nucella_ostrina",0,0,6,NA,1702.85714285714,13.31,NA,NA
+2014-10-13,"G","Littorina_sitkana","Nucella_canaliculata",0,0,43,NA,544.761904761905,13.31,NA,NA
+2014-10-13,"G","Littorina_sitkana","Nucella_ostrina",0,0,6,NA,544.761904761905,13.31,NA,NA
+2014-10-13,"G","Modiolus_modiolus","Nucella_canaliculata",0,0,43,NA,0,13.31,NA,NA
+2014-10-13,"G","Modiolus_modiolus","Nucella_ostrina",0,0,6,NA,0,13.31,NA,NA
+2014-10-13,"G","Mytilus_californianus","Nucella_canaliculata",0,0,43,NA,106.666666666667,13.31,NA,NA
+2014-10-13,"G","Mytilus_californianus","Nucella_ostrina",0,0,6,NA,106.666666666667,13.31,NA,NA
+2014-10-13,"G","Mytilus_trossulus","Nucella_canaliculata",0.05,2,43,30.0698538540756,6940.95238095238,13.31,2.3956293329302e-07,0.00166279491222812
+2014-10-13,"G","Mytilus_trossulus","Nucella_ostrina",0,0,6,NA,6940.95238095238,13.31,NA,NA
+2014-10-13,"G","Nucella_ostrina","Nucella_canaliculata",0,0,43,NA,19.047619047619,13.31,NA,NA
+2014-10-13,"G","Nucella_ostrina","Nucella_ostrina",0,0,6,NA,19.047619047619,13.31,NA,NA
+2014-10-13,"G","Pollicipes_polymerus","Nucella_canaliculata",0,0,43,NA,110.47619047619,13.31,NA,NA
+2014-10-13,"G","Pollicipes_polymerus","Nucella_ostrina",0,0,6,NA,110.47619047619,13.31,NA,NA
+2014-10-13,"G","Semibalanus_cariosus","Nucella_canaliculata",0,0,43,NA,11.4285714285714,13.31,NA,NA
+2014-10-13,"G","Semibalanus_cariosus","Nucella_ostrina",0,0,6,NA,11.4285714285714,13.31,NA,NA
+2014-11-04,"A","Adula_californiensis","Nucella_canaliculata",0,0,138,NA,0,14.66,NA,NA
+2014-11-04,"A","Adula_californiensis","Nucella_ostrina",0,0,28,NA,0,14.66,NA,NA
+2014-11-04,"A","Balanus_glandula","Nucella_canaliculata",0.0555555555555556,7,138,29.4661957899745,18816,14.66,1.0020193776966e-07,0.00188539966107392
+2014-11-04,"A","Balanus_glandula","Nucella_ostrina",0.0384615384615385,1,28,39.348227984746,18816,14.66,5.19486383556551e-08,0.000977465579300006
+2014-11-04,"A","Chthamalus_dalli","Nucella_canaliculata",0,0,138,NA,0,14.66,NA,NA
+2014-11-04,"A","Chthamalus_dalli","Nucella_ostrina",0,0,28,NA,0,14.66,NA,NA
+2014-11-04,"A","Hiatella_arctica","Nucella_canaliculata",0,0,138,NA,0,14.66,NA,NA
+2014-11-04,"A","Hiatella_arctica","Nucella_ostrina",0,0,28,NA,0,14.66,NA,NA
+2014-11-04,"A","Limpets","Nucella_canaliculata",0,0,138,NA,3051.42857142857,14.66,NA,NA
+2014-11-04,"A","Limpets","Nucella_ostrina",0,0,28,NA,3051.42857142857,14.66,NA,NA
+2014-11-04,"A","Littorina_sitkana","Nucella_canaliculata",0,0,138,NA,1291.42857142857,14.66,NA,NA
+2014-11-04,"A","Littorina_sitkana","Nucella_ostrina",0,0,28,NA,1291.42857142857,14.66,NA,NA
+2014-11-04,"A","Modiolus_modiolus","Nucella_canaliculata",0,0,138,NA,0,14.66,NA,NA
+2014-11-04,"A","Modiolus_modiolus","Nucella_ostrina",0,0,28,NA,0,14.66,NA,NA
+2014-11-04,"A","Mytilus_californianus","Nucella_canaliculata",0,0,138,NA,0,14.66,NA,NA
+2014-11-04,"A","Mytilus_californianus","Nucella_ostrina",0,0,28,NA,0,14.66,NA,NA
+2014-11-04,"A","Mytilus_trossulus","Nucella_canaliculata",0.0396825396825397,5,138,53.163191536973,3712,14.66,2.01085357087671e-07,0.000746428845509435
+2014-11-04,"A","Mytilus_trossulus","Nucella_ostrina",0.0384615384615385,1,28,40.5915349734698,3712,14.66,2.55260261586951e-07,0.000947526091010761
+2014-11-04,"A","Nucella_ostrina","Nucella_canaliculata",0,0,138,NA,182.857142857143,14.66,NA,NA
+2014-11-04,"A","Nucella_ostrina","Nucella_ostrina",0,0,28,NA,182.857142857143,14.66,NA,NA
+2014-11-04,"A","Pollicipes_polymerus","Nucella_canaliculata",0,0,138,NA,217.142857142857,14.66,NA,NA
+2014-11-04,"A","Pollicipes_polymerus","Nucella_ostrina",0,0,28,NA,217.142857142857,14.66,NA,NA
+2014-11-04,"A","Semibalanus_cariosus","Nucella_canaliculata",0,0,138,NA,0,14.66,NA,NA
+2014-11-04,"A","Semibalanus_cariosus","Nucella_ostrina",0,0,28,NA,0,14.66,NA,NA
+2014-11-04,"AB","Adula_californiensis","Nucella_canaliculata",0,0,55,NA,0,14.66,NA,NA
+2014-11-04,"AB","Adula_californiensis","Nucella_ostrina",0,0,10,NA,0,14.66,NA,NA
+2014-11-04,"AB","Balanus_glandula","Nucella_canaliculata",0.0454545454545455,2,55,18.2034789623915,19672,14.66,1.26932959876676e-07,0.00249702518669397
+2014-11-04,"AB","Balanus_glandula","Nucella_ostrina",0,0,10,NA,19672,14.66,NA,NA
+2014-11-04,"AB","Chthamalus_dalli","Nucella_canaliculata",0,0,55,NA,69.7142857142857,14.66,NA,NA
+2014-11-04,"AB","Chthamalus_dalli","Nucella_ostrina",0,0,10,NA,69.7142857142857,14.66,NA,NA
+2014-11-04,"AB","Hiatella_arctica","Nucella_canaliculata",0,0,55,NA,0,14.66,NA,NA
+2014-11-04,"AB","Hiatella_arctica","Nucella_ostrina",0,0,10,NA,0,14.66,NA,NA
+2014-11-04,"AB","Limpets","Nucella_canaliculata",0,0,55,NA,485.714285714285,14.66,NA,NA
+2014-11-04,"AB","Limpets","Nucella_ostrina",0,0,10,NA,485.714285714285,14.66,NA,NA
+2014-11-04,"AB","Littorina_sitkana","Nucella_canaliculata",0,0,55,NA,600.000000000001,14.66,NA,NA
+2014-11-04,"AB","Littorina_sitkana","Nucella_ostrina",0,0,10,NA,600.000000000001,14.66,NA,NA
+2014-11-04,"AB","Modiolus_modiolus","Nucella_canaliculata",0,0,55,NA,0,14.66,NA,NA
+2014-11-04,"AB","Modiolus_modiolus","Nucella_ostrina",0,0,10,NA,0,14.66,NA,NA
+2014-11-04,"AB","Mytilus_californianus","Nucella_canaliculata",0,0,55,NA,0,14.66,NA,NA
+2014-11-04,"AB","Mytilus_californianus","Nucella_ostrina",0,0,10,NA,0,14.66,NA,NA
+2014-11-04,"AB","Mytilus_trossulus","Nucella_canaliculata",0.204545454545455,9,55,37.540539028856,17428.5714285714,14.66,3.12627759448149e-07,0.00544865523609632
+2014-11-04,"AB","Mytilus_trossulus","Nucella_ostrina",0.111111111111111,1,10,44.4514188333736,17428.5714285714,14.66,1.43420116928116e-07,0.00249960775217573
+2014-11-04,"AB","Nucella_ostrina","Nucella_canaliculata",0,0,55,NA,0,14.66,NA,NA
+2014-11-04,"AB","Nucella_ostrina","Nucella_ostrina",0,0,10,NA,0,14.66,NA,NA
+2014-11-04,"AB","Pollicipes_polymerus","Nucella_canaliculata",0,0,55,NA,2217.14285714286,14.66,NA,NA
+2014-11-04,"AB","Pollicipes_polymerus","Nucella_ostrina",0,0,10,NA,2217.14285714286,14.66,NA,NA
+2014-11-04,"AB","Semibalanus_cariosus","Nucella_canaliculata",0,0,55,NA,17.1428571428571,14.66,NA,NA
+2014-11-04,"AB","Semibalanus_cariosus","Nucella_ostrina",0,0,10,NA,17.1428571428571,14.66,NA,NA
+2014-11-04,"AC","Adula_californiensis","Nucella_canaliculata",0,0,14,NA,0,14.66,NA,NA
+2014-11-04,"AC","Adula_californiensis","Nucella_ostrina",0,0,8,NA,0,14.66,NA,NA
+2014-11-04,"AC","Balanus_glandula","Nucella_canaliculata",0.0769230769230769,1,14,10.7055160163477,63573.3333333333,14.66,1.13024881089998e-07,0.00718536844049482
+2014-11-04,"AC","Balanus_glandula","Nucella_ostrina",0.166666666666667,1,8,10.7055160163477,63573.3333333333,14.66,2.44887242361663e-07,0.0155682982877388
+2014-11-04,"AC","Chthamalus_dalli","Nucella_canaliculata",0,0,14,NA,0,14.66,NA,NA
+2014-11-04,"AC","Chthamalus_dalli","Nucella_ostrina",0,0,8,NA,0,14.66,NA,NA
+2014-11-04,"AC","Hiatella_arctica","Nucella_canaliculata",0,0,14,NA,0,14.66,NA,NA
+2014-11-04,"AC","Hiatella_arctica","Nucella_ostrina",0,0,8,NA,0,14.66,NA,NA
+2014-11-04,"AC","Limpets","Nucella_canaliculata",0,0,14,NA,259.047619047619,14.66,NA,NA
+2014-11-04,"AC","Limpets","Nucella_ostrina",0,0,8,NA,259.047619047619,14.66,NA,NA
+2014-11-04,"AC","Littorina_sitkana","Nucella_canaliculata",0,0,14,NA,5691.42857142857,14.66,NA,NA
+2014-11-04,"AC","Littorina_sitkana","Nucella_ostrina",0,0,8,NA,5691.42857142857,14.66,NA,NA
+2014-11-04,"AC","Modiolus_modiolus","Nucella_canaliculata",0,0,14,NA,0,14.66,NA,NA
+2014-11-04,"AC","Modiolus_modiolus","Nucella_ostrina",0,0,8,NA,0,14.66,NA,NA
+2014-11-04,"AC","Mytilus_californianus","Nucella_canaliculata",0,0,14,NA,0,14.66,NA,NA
+2014-11-04,"AC","Mytilus_californianus","Nucella_ostrina",0,0,8,NA,0,14.66,NA,NA
+2014-11-04,"AC","Mytilus_trossulus","Nucella_canaliculata",0,0,14,NA,3942.85714285714,14.66,NA,NA
+2014-11-04,"AC","Mytilus_trossulus","Nucella_ostrina",0.166666666666667,1,8,27.7715464237538,3942.85714285714,14.66,1.52208057686017e-06,0.00600134627447725
+2014-11-04,"AC","Nucella_ostrina","Nucella_canaliculata",0,0,14,NA,7.6190476190476,14.66,NA,NA
+2014-11-04,"AC","Nucella_ostrina","Nucella_ostrina",0,0,8,NA,7.6190476190476,14.66,NA,NA
+2014-11-04,"AC","Pollicipes_polymerus","Nucella_canaliculata",0,0,14,NA,201.904761904762,14.66,NA,NA
+2014-11-04,"AC","Pollicipes_polymerus","Nucella_ostrina",0,0,8,NA,201.904761904762,14.66,NA,NA
+2014-11-04,"AC","Semibalanus_cariosus","Nucella_canaliculata",0,0,14,NA,0,14.66,NA,NA
+2014-11-04,"AC","Semibalanus_cariosus","Nucella_ostrina",0,0,8,NA,0,14.66,NA,NA
+2014-11-04,"AD","Adula_californiensis","Nucella_canaliculata",0,0,79,NA,0,14.66,NA,NA
+2014-11-04,"AD","Adula_californiensis","Nucella_ostrina",0,0,33,NA,0,14.66,NA,NA
+2014-11-04,"AD","Balanus_glandula","Nucella_canaliculata",0.0303030303030303,2,79,17.4819656500368,11055.2380952381,14.66,1.56793370932284e-07,0.00173338804741139
+2014-11-04,"AD","Balanus_glandula","Nucella_ostrina",0,0,33,NA,11055.2380952381,14.66,NA,NA
+2014-11-04,"AD","Chthamalus_dalli","Nucella_canaliculata",0,0,79,NA,201.904761904762,14.66,NA,NA
+2014-11-04,"AD","Chthamalus_dalli","Nucella_ostrina",0.0344827586206897,1,33,18.0120119096601,201.904761904762,14.66,9.48185292914978e-06,0.00191443125807595
+2014-11-04,"AD","Hiatella_arctica","Nucella_canaliculata",0,0,79,NA,0,14.66,NA,NA
+2014-11-04,"AD","Hiatella_arctica","Nucella_ostrina",0,0,33,NA,0,14.66,NA,NA
+2014-11-04,"AD","Limpets","Nucella_canaliculata",0,0,79,NA,1718.09523809524,14.66,NA,NA
+2014-11-04,"AD","Limpets","Nucella_ostrina",0,0,33,NA,1718.09523809524,14.66,NA,NA
+2014-11-04,"AD","Littorina_sitkana","Nucella_canaliculata",0,0,79,NA,1009.52380952381,14.66,NA,NA
+2014-11-04,"AD","Littorina_sitkana","Nucella_ostrina",0,0,33,NA,1009.52380952381,14.66,NA,NA
+2014-11-04,"AD","Modiolus_modiolus","Nucella_canaliculata",0.0151515151515152,1,79,46.6387653984112,0,14.66,Inf,0.000324869559090672
+2014-11-04,"AD","Modiolus_modiolus","Nucella_ostrina",0,0,33,NA,0,14.66,NA,NA
+2014-11-04,"AD","Mytilus_californianus","Nucella_canaliculata",0,0,79,NA,30.4761904761905,14.66,NA,NA
+2014-11-04,"AD","Mytilus_californianus","Nucella_ostrina",0,0,33,NA,30.4761904761905,14.66,NA,NA
+2014-11-04,"AD","Mytilus_trossulus","Nucella_canaliculata",0.151515151515152,10,79,41.1333304837443,9641.90476190476,14.66,3.82031656996753e-07,0.00368351285279536
+2014-11-04,"AD","Mytilus_trossulus","Nucella_ostrina",0.103448275862069,3,33,32.8718593263659,9641.90476190476,14.66,3.2638947798244e-07,0.0031470162619945
+2014-11-04,"AD","Nucella_ostrina","Nucella_canaliculata",0,0,79,NA,110.47619047619,14.66,NA,NA
+2014-11-04,"AD","Nucella_ostrina","Nucella_ostrina",0,0,33,NA,110.47619047619,14.66,NA,NA
+2014-11-04,"AD","Pollicipes_polymerus","Nucella_canaliculata",0,0,79,NA,118.095238095238,14.66,NA,NA
+2014-11-04,"AD","Pollicipes_polymerus","Nucella_ostrina",0,0,33,NA,118.095238095238,14.66,NA,NA
+2014-11-04,"AD","Semibalanus_cariosus","Nucella_canaliculata",0,0,79,NA,3.8095238095238,14.66,NA,NA
+2014-11-04,"AD","Semibalanus_cariosus","Nucella_ostrina",0,0,33,NA,3.8095238095238,14.66,NA,NA
+2014-11-04,"AE","Adula_californiensis","Nucella_canaliculata",0,0,46,NA,0,14.66,NA,NA
+2014-11-04,"AE","Adula_californiensis","Nucella_ostrina",0,0,34,NA,0,14.66,NA,NA
+2014-11-04,"AE","Balanus_glandula","Nucella_canaliculata",0.0232558139534884,1,46,21.5736979481134,19040.7619047619,14.66,5.66138419416505e-08,0.00107797068492479
+2014-11-04,"AE","Balanus_glandula","Nucella_ostrina",0.0333333333333333,1,34,32.9143452472449,19040.7619047619,14.66,5.31874540942969e-08,0.00101272964972996
+2014-11-04,"AE","Chthamalus_dalli","Nucella_canaliculata",0,0,46,NA,752,14.66,NA,NA
+2014-11-04,"AE","Chthamalus_dalli","Nucella_ostrina",0.0333333333333333,1,34,13.2857857906389,752,14.66,3.33636578470082e-06,0.00250894707009501
+2014-11-04,"AE","Hiatella_arctica","Nucella_canaliculata",0,0,46,NA,0,14.66,NA,NA
+2014-11-04,"AE","Hiatella_arctica","Nucella_ostrina",0,0,34,NA,0,14.66,NA,NA
+2014-11-04,"AE","Limpets","Nucella_canaliculata",0,0,46,NA,1721.90476190476,14.66,NA,NA
+2014-11-04,"AE","Limpets","Nucella_ostrina",0,0,34,NA,1721.90476190476,14.66,NA,NA
+2014-11-04,"AE","Littorina_sitkana","Nucella_canaliculata",0,0,46,NA,2971.42857142857,14.66,NA,NA
+2014-11-04,"AE","Littorina_sitkana","Nucella_ostrina",0,0,34,NA,2971.42857142857,14.66,NA,NA
+2014-11-04,"AE","Modiolus_modiolus","Nucella_canaliculata",0,0,46,NA,0,14.66,NA,NA
+2014-11-04,"AE","Modiolus_modiolus","Nucella_ostrina",0,0,34,NA,0,14.66,NA,NA
+2014-11-04,"AE","Mytilus_californianus","Nucella_canaliculata",0,0,46,NA,11.4285714285714,14.66,NA,NA
+2014-11-04,"AE","Mytilus_californianus","Nucella_ostrina",0,0,34,NA,11.4285714285714,14.66,NA,NA
+2014-11-04,"AE","Mytilus_trossulus","Nucella_canaliculata",0.0465116279069767,2,46,54.7864758205228,8969.90476190476,14.66,9.4645581336025e-08,0.000848961850719256
+2014-11-04,"AE","Mytilus_trossulus","Nucella_ostrina",0.0666666666666667,2,34,35.444155737811,8969.90476190476,14.66,2.09689301432297e-07,0.00188089306343805
+2014-11-04,"AE","Nucella_ostrina","Nucella_canaliculata",0,0,46,NA,15.2380952380953,14.66,NA,NA
+2014-11-04,"AE","Nucella_ostrina","Nucella_ostrina",0,0,34,NA,15.2380952380953,14.66,NA,NA
+2014-11-04,"AE","Pollicipes_polymerus","Nucella_canaliculata",0,0,46,NA,144.761904761905,14.66,NA,NA
+2014-11-04,"AE","Pollicipes_polymerus","Nucella_ostrina",0,0,34,NA,144.761904761905,14.66,NA,NA
+2014-11-04,"AE","Semibalanus_cariosus","Nucella_canaliculata",0,0,46,NA,11.4285714285714,14.66,NA,NA
+2014-11-04,"AE","Semibalanus_cariosus","Nucella_ostrina",0,0,34,NA,11.4285714285714,14.66,NA,NA
+2014-11-04,"AF","Adula_californiensis","Nucella_canaliculata",0,0,48,NA,0,14.66,NA,NA
+2014-11-04,"AF","Adula_californiensis","Nucella_ostrina",0,0,17,NA,0,14.66,NA,NA
+2014-11-04,"AF","Balanus_glandula","Nucella_canaliculata",0.146341463414634,6,48,18.862693584553,61280,14.66,1.26603271180207e-07,0.00775824845792309
+2014-11-04,"AF","Balanus_glandula","Nucella_ostrina",0.0625,1,17,17.0606966563688,61280,14.66,5.9781182253613e-08,0.0036633908485014
+2014-11-04,"AF","Chthamalus_dalli","Nucella_canaliculata",0,0,48,NA,1344,14.66,NA,NA
+2014-11-04,"AF","Chthamalus_dalli","Nucella_ostrina",0,0,17,NA,1344,14.66,NA,NA
+2014-11-04,"AF","Hiatella_arctica","Nucella_canaliculata",0,0,48,NA,0,14.66,NA,NA
+2014-11-04,"AF","Hiatella_arctica","Nucella_ostrina",0,0,17,NA,0,14.66,NA,NA
+2014-11-04,"AF","Limpets","Nucella_canaliculata",0,0,48,NA,1628.57142857143,14.66,NA,NA
+2014-11-04,"AF","Limpets","Nucella_ostrina",0,0,17,NA,1628.57142857143,14.66,NA,NA
+2014-11-04,"AF","Littorina_sitkana","Nucella_canaliculata",0,0,48,NA,2685.71428571428,14.66,NA,NA
+2014-11-04,"AF","Littorina_sitkana","Nucella_ostrina",0,0,17,NA,2685.71428571428,14.66,NA,NA
+2014-11-04,"AF","Modiolus_modiolus","Nucella_canaliculata",0,0,48,NA,0,14.66,NA,NA
+2014-11-04,"AF","Modiolus_modiolus","Nucella_ostrina",0,0,17,NA,0,14.66,NA,NA
+2014-11-04,"AF","Mytilus_californianus","Nucella_canaliculata",0,0,48,NA,0,14.66,NA,NA
+2014-11-04,"AF","Mytilus_californianus","Nucella_ostrina",0,0,17,NA,0,14.66,NA,NA
+2014-11-04,"AF","Mytilus_trossulus","Nucella_canaliculata",0.024390243902439,1,48,25.0850547931171,11605.7142857143,14.66,8.3777850723075e-08,0.000972301798963231
+2014-11-04,"AF","Mytilus_trossulus","Nucella_ostrina",0,0,17,NA,11605.7142857143,14.66,NA,NA
+2014-11-04,"AF","Nucella_ostrina","Nucella_canaliculata",0,0,48,NA,17.1428571428571,14.66,NA,NA
+2014-11-04,"AF","Nucella_ostrina","Nucella_ostrina",0,0,17,NA,17.1428571428571,14.66,NA,NA
+2014-11-04,"AF","Pollicipes_polymerus","Nucella_canaliculata",0,0,48,NA,0,14.66,NA,NA
+2014-11-04,"AF","Pollicipes_polymerus","Nucella_ostrina",0,0,17,NA,0,14.66,NA,NA
+2014-11-04,"AF","Semibalanus_cariosus","Nucella_canaliculata",0,0,48,NA,0,14.66,NA,NA
+2014-11-04,"AF","Semibalanus_cariosus","Nucella_ostrina",0,0,17,NA,0,14.66,NA,NA
+2014-11-04,"AG","Adula_californiensis","Nucella_canaliculata",0,0,33,NA,0,14.66,NA,NA
+2014-11-04,"AG","Adula_californiensis","Nucella_ostrina",0,0,28,NA,0,14.66,NA,NA
+2014-11-04,"AG","Balanus_glandula","Nucella_canaliculata",0.115384615384615,3,33,17.8976660992418,8440,14.66,7.63851715886108e-07,0.00644690848207875
+2014-11-04,"AG","Balanus_glandula","Nucella_ostrina",0.04,1,28,21.5736979481134,8440,14.66,2.19681229629223e-07,0.00185410957807064
+2014-11-04,"AG","Chthamalus_dalli","Nucella_canaliculata",0,0,33,NA,251.428571428572,14.66,NA,NA
+2014-11-04,"AG","Chthamalus_dalli","Nucella_ostrina",0,0,28,NA,251.428571428572,14.66,NA,NA
+2014-11-04,"AG","Hiatella_arctica","Nucella_canaliculata",0,0,33,NA,0,14.66,NA,NA
+2014-11-04,"AG","Hiatella_arctica","Nucella_ostrina",0,0,28,NA,0,14.66,NA,NA
+2014-11-04,"AG","Limpets","Nucella_canaliculata",0,0,33,NA,611.428571428571,14.66,NA,NA
+2014-11-04,"AG","Limpets","Nucella_ostrina",0,0,28,NA,611.428571428571,14.66,NA,NA
+2014-11-04,"AG","Littorina_sitkana","Nucella_canaliculata",0,0,33,NA,491.428571428571,14.66,NA,NA
+2014-11-04,"AG","Littorina_sitkana","Nucella_ostrina",0,0,28,NA,491.428571428571,14.66,NA,NA
+2014-11-04,"AG","Modiolus_modiolus","Nucella_canaliculata",0,0,33,NA,0,14.66,NA,NA
+2014-11-04,"AG","Modiolus_modiolus","Nucella_ostrina",0,0,28,NA,0,14.66,NA,NA
+2014-11-04,"AG","Mytilus_californianus","Nucella_canaliculata",0,0,33,NA,0,14.66,NA,NA
+2014-11-04,"AG","Mytilus_californianus","Nucella_ostrina",0,0,28,NA,0,14.66,NA,NA
+2014-11-04,"AG","Mytilus_trossulus","Nucella_canaliculata",0.153846153846154,4,33,59.5336147507343,8017.14285714286,14.66,3.22332998519242e-07,0.00258418969669998
+2014-11-04,"AG","Mytilus_trossulus","Nucella_ostrina",0.08,2,28,74.3587068119032,8017.14285714286,14.66,1.34195680325566e-07,0.00107586593998154
+2014-11-04,"AG","Nucella_ostrina","Nucella_canaliculata",0,0,33,NA,0,14.66,NA,NA
+2014-11-04,"AG","Nucella_ostrina","Nucella_ostrina",0,0,28,NA,0,14.66,NA,NA
+2014-11-04,"AG","Pollicipes_polymerus","Nucella_canaliculata",0,0,33,NA,102.857142857143,14.66,NA,NA
+2014-11-04,"AG","Pollicipes_polymerus","Nucella_ostrina",0,0,28,NA,102.857142857143,14.66,NA,NA
+2014-11-04,"AG","Semibalanus_cariosus","Nucella_canaliculata",0,0,33,NA,0,14.66,NA,NA
+2014-11-04,"AG","Semibalanus_cariosus","Nucella_ostrina",0,0,28,NA,0,14.66,NA,NA
+2014-11-04,"B","Adula_californiensis","Nucella_canaliculata",0,0,126,NA,0,14.66,NA,NA
+2014-11-04,"B","Adula_californiensis","Nucella_ostrina",0,0,13,NA,0,14.66,NA,NA
+2014-11-04,"B","Balanus_glandula","Nucella_canaliculata",0.0267857142857143,3,126,24.2902803221533,9792,14.66,1.12615793288325e-07,0.00110273384787927
+2014-11-04,"B","Balanus_glandula","Nucella_ostrina",0.2,2,13,38.2110409759748,9792,14.66,5.34527091636926e-07,0.00523408928130877
+2014-11-04,"B","Chthamalus_dalli","Nucella_canaliculata",0.00892857142857143,1,126,6.07981483326471,405.333333333333,14.66,3.62309151972667e-06,0.00146855976266254
+2014-11-04,"B","Chthamalus_dalli","Nucella_ostrina",0,0,13,NA,405.333333333333,14.66,NA,NA
+2014-11-04,"B","Hiatella_arctica","Nucella_canaliculata",0,0,126,NA,0,14.66,NA,NA
+2014-11-04,"B","Hiatella_arctica","Nucella_ostrina",0,0,13,NA,0,14.66,NA,NA
+2014-11-04,"B","Limpets","Nucella_canaliculata",0,0,126,NA,3527.61904761905,14.66,NA,NA
+2014-11-04,"B","Limpets","Nucella_ostrina",0,0,13,NA,3527.61904761905,14.66,NA,NA
+2014-11-04,"B","Littorina_sitkana","Nucella_canaliculata",0,0,126,NA,87.6190476190475,14.66,NA,NA
+2014-11-04,"B","Littorina_sitkana","Nucella_ostrina",0,0,13,NA,87.6190476190475,14.66,NA,NA
+2014-11-04,"B","Modiolus_modiolus","Nucella_canaliculata",0,0,126,NA,0,14.66,NA,NA
+2014-11-04,"B","Modiolus_modiolus","Nucella_ostrina",0,0,13,NA,0,14.66,NA,NA
+2014-11-04,"B","Mytilus_californianus","Nucella_canaliculata",0,0,126,NA,0,14.66,NA,NA
+2014-11-04,"B","Mytilus_californianus","Nucella_ostrina",0,0,13,NA,0,14.66,NA,NA
+2014-11-04,"B","Mytilus_trossulus","Nucella_canaliculata",0.0892857142857143,10,126,39.4325525344303,7168,14.66,3.15885062876888e-07,0.00226426413070153
+2014-11-04,"B","Mytilus_trossulus","Nucella_ostrina",0.1,1,13,43.750442615851,7168,14.66,3.18874324989992e-07,0.00228569116152826
+2014-11-04,"B","Nucella_ostrina","Nucella_canaliculata",0,0,126,NA,49.5238095238095,14.66,NA,NA
+2014-11-04,"B","Nucella_ostrina","Nucella_ostrina",0,0,13,NA,49.5238095238095,14.66,NA,NA
+2014-11-04,"B","Pollicipes_polymerus","Nucella_canaliculata",0,0,126,NA,472.380952380953,14.66,NA,NA
+2014-11-04,"B","Pollicipes_polymerus","Nucella_ostrina",0,0,13,NA,472.380952380953,14.66,NA,NA
+2014-11-04,"B","Semibalanus_cariosus","Nucella_canaliculata",0,0,126,NA,7.6190476190476,14.66,NA,NA
+2014-11-04,"B","Semibalanus_cariosus","Nucella_ostrina",0,0,13,NA,7.6190476190476,14.66,NA,NA
+2014-11-04,"BB","Adula_californiensis","Nucella_canaliculata",0,0,27,NA,0,14.66,NA,NA
+2014-11-04,"BB","Adula_californiensis","Nucella_ostrina",0,0,35,NA,0,14.66,NA,NA
+2014-11-04,"BB","Balanus_glandula","Nucella_canaliculata",0.08,2,27,35.9840227807402,4845.71428571429,14.66,4.58799008183724e-07,0.00222320890822742
+2014-11-04,"BB","Balanus_glandula","Nucella_ostrina",0.0689655172413793,2,35,36.3615980345258,4845.71428571429,14.66,3.91409383152263e-07,0.00189665803950354
+2014-11-04,"BB","Chthamalus_dalli","Nucella_canaliculata",0,0,27,NA,152.380952380952,14.66,NA,NA
+2014-11-04,"BB","Chthamalus_dalli","Nucella_ostrina",0,0,35,NA,152.380952380952,14.66,NA,NA
+2014-11-04,"BB","Hiatella_arctica","Nucella_canaliculata",0,0,27,NA,0,14.66,NA,NA
+2014-11-04,"BB","Hiatella_arctica","Nucella_ostrina",0,0,35,NA,0,14.66,NA,NA
+2014-11-04,"BB","Limpets","Nucella_canaliculata",0,0,27,NA,628.571428571429,14.66,NA,NA
+2014-11-04,"BB","Limpets","Nucella_ostrina",0,0,35,NA,628.571428571429,14.66,NA,NA
+2014-11-04,"BB","Littorina_sitkana","Nucella_canaliculata",0,0,27,NA,933.333333333333,14.66,NA,NA
+2014-11-04,"BB","Littorina_sitkana","Nucella_ostrina",0,0,35,NA,933.333333333333,14.66,NA,NA
+2014-11-04,"BB","Modiolus_modiolus","Nucella_canaliculata",0,0,27,NA,0,14.66,NA,NA
+2014-11-04,"BB","Modiolus_modiolus","Nucella_ostrina",0,0,35,NA,0,14.66,NA,NA
+2014-11-04,"BB","Mytilus_californianus","Nucella_canaliculata",0,0,27,NA,0,14.66,NA,NA
+2014-11-04,"BB","Mytilus_californianus","Nucella_ostrina",0,0,35,NA,0,14.66,NA,NA
+2014-11-04,"BB","Mytilus_trossulus","Nucella_canaliculata",0,0,27,NA,5600,14.66,NA,NA
+2014-11-04,"BB","Mytilus_trossulus","Nucella_ostrina",0.137931034482759,4,35,36.6069873278605,5600,14.66,6.72837173169277e-07,0.00376788816974795
+2014-11-04,"BB","Nucella_ostrina","Nucella_canaliculata",0,0,27,NA,7.6190476190476,14.66,NA,NA
+2014-11-04,"BB","Nucella_ostrina","Nucella_ostrina",0,0,35,NA,7.6190476190476,14.66,NA,NA
+2014-11-04,"BB","Pollicipes_polymerus","Nucella_canaliculata",0,0,27,NA,3.8095238095238,14.66,NA,NA
+2014-11-04,"BB","Pollicipes_polymerus","Nucella_ostrina",0,0,35,NA,3.8095238095238,14.66,NA,NA
+2014-11-04,"BB","Semibalanus_cariosus","Nucella_canaliculata",0,0,27,NA,0,14.66,NA,NA
+2014-11-04,"BB","Semibalanus_cariosus","Nucella_ostrina",0,0,35,NA,0,14.66,NA,NA
+2014-11-04,"BC","Adula_californiensis","Nucella_canaliculata",0,0,48,NA,0,14.66,NA,NA
+2014-11-04,"BC","Adula_californiensis","Nucella_ostrina",0,0,41,NA,0,14.66,NA,NA
+2014-11-04,"BC","Balanus_glandula","Nucella_canaliculata",0.0952380952380952,4,48,40.1653364153511,12281.9047619048,14.66,1.93060562261296e-07,0.00237115143897302
+2014-11-04,"BC","Balanus_glandula","Nucella_ostrina",0.161290322580645,5,41,50.5871924153973,12281.9047619048,14.66,2.59598398157181e-07,0.00318836280250953
+2014-11-04,"BC","Chthamalus_dalli","Nucella_canaliculata",0,0,48,NA,114.285714285714,14.66,NA,NA
+2014-11-04,"BC","Chthamalus_dalli","Nucella_ostrina",0.0967741935483871,3,41,13.9352739408403,114.285714285714,14.66,6.07648042760563e-05,0.00694454906012072
+2014-11-04,"BC","Hiatella_arctica","Nucella_canaliculata",0,0,48,NA,0,14.66,NA,NA
+2014-11-04,"BC","Hiatella_arctica","Nucella_ostrina",0,0,41,NA,0,14.66,NA,NA
+2014-11-04,"BC","Limpets","Nucella_canaliculata",0,0,48,NA,727.619047619048,14.66,NA,NA
+2014-11-04,"BC","Limpets","Nucella_ostrina",0,0,41,NA,727.619047619048,14.66,NA,NA
+2014-11-04,"BC","Littorina_sitkana","Nucella_canaliculata",0,0,48,NA,1832.38095238095,14.66,NA,NA
+2014-11-04,"BC","Littorina_sitkana","Nucella_ostrina",0,0,41,NA,1832.38095238095,14.66,NA,NA
+2014-11-04,"BC","Modiolus_modiolus","Nucella_canaliculata",0,0,48,NA,0,14.66,NA,NA
+2014-11-04,"BC","Modiolus_modiolus","Nucella_ostrina",0,0,41,NA,0,14.66,NA,NA
+2014-11-04,"BC","Mytilus_californianus","Nucella_canaliculata",0,0,48,NA,0,14.66,NA,NA
+2014-11-04,"BC","Mytilus_californianus","Nucella_ostrina",0,0,41,NA,0,14.66,NA,NA
+2014-11-04,"BC","Mytilus_trossulus","Nucella_canaliculata",0.0476190476190476,2,48,55.8068390769776,6137.14285714286,14.66,1.39035930580944e-07,0.000853283368251048
+2014-11-04,"BC","Mytilus_trossulus","Nucella_ostrina",0.0645161290322581,2,41,34.1936997932587,6137.14285714286,14.66,3.07436887527004e-07,0.00188678409830858
+2014-11-04,"BC","Nucella_ostrina","Nucella_canaliculata",0,0,48,NA,0,14.66,NA,NA
+2014-11-04,"BC","Nucella_ostrina","Nucella_ostrina",0,0,41,NA,0,14.66,NA,NA
+2014-11-04,"BC","Pollicipes_polymerus","Nucella_canaliculata",0,0,48,NA,0,14.66,NA,NA
+2014-11-04,"BC","Pollicipes_polymerus","Nucella_ostrina",0,0,41,NA,0,14.66,NA,NA
+2014-11-04,"BC","Semibalanus_cariosus","Nucella_canaliculata",0,0,48,NA,0,14.66,NA,NA
+2014-11-04,"BC","Semibalanus_cariosus","Nucella_ostrina",0,0,41,NA,0,14.66,NA,NA
+2014-11-04,"BD","Adula_californiensis","Nucella_canaliculata",0,0,85,NA,0,14.66,NA,NA
+2014-11-04,"BD","Adula_californiensis","Nucella_ostrina",0,0,22,NA,0,14.66,NA,NA
+2014-11-04,"BD","Balanus_glandula","Nucella_canaliculata",0.0533333333333333,4,85,26.1535982617492,0,14.66,Inf,0.00203923501460736
+2014-11-04,"BD","Balanus_glandula","Nucella_ostrina",0.166666666666667,3,22,31.4797616394947,0,14.66,Inf,0.00529440688196208
+2014-11-04,"BD","Chthamalus_dalli","Nucella_canaliculata",0,0,85,NA,0,14.66,NA,NA
+2014-11-04,"BD","Chthamalus_dalli","Nucella_ostrina",0,0,22,NA,0,14.66,NA,NA
+2014-11-04,"BD","Hiatella_arctica","Nucella_canaliculata",0,0,85,NA,0,14.66,NA,NA
+2014-11-04,"BD","Hiatella_arctica","Nucella_ostrina",0,0,22,NA,0,14.66,NA,NA
+2014-11-04,"BD","Limpets","Nucella_canaliculata",0,0,85,NA,0,14.66,NA,NA
+2014-11-04,"BD","Limpets","Nucella_ostrina",0,0,22,NA,0,14.66,NA,NA
+2014-11-04,"BD","Littorina_sitkana","Nucella_canaliculata",0,0,85,NA,0,14.66,NA,NA
+2014-11-04,"BD","Littorina_sitkana","Nucella_ostrina",0,0,22,NA,0,14.66,NA,NA
+2014-11-04,"BD","Modiolus_modiolus","Nucella_canaliculata",0,0,85,NA,0,14.66,NA,NA
+2014-11-04,"BD","Modiolus_modiolus","Nucella_ostrina",0,0,22,NA,0,14.66,NA,NA
+2014-11-04,"BD","Mytilus_californianus","Nucella_canaliculata",0,0,85,NA,0,14.66,NA,NA
+2014-11-04,"BD","Mytilus_californianus","Nucella_ostrina",0,0,22,NA,0,14.66,NA,NA
+2014-11-04,"BD","Mytilus_trossulus","Nucella_canaliculata",0.08,6,85,42.4195664640675,0,14.66,Inf,0.00188592215028331
+2014-11-04,"BD","Mytilus_trossulus","Nucella_ostrina",0.0555555555555556,1,22,44.2547186308457,0,14.66,Inf,0.00125535891480809
+2014-11-04,"BD","Nucella_ostrina","Nucella_canaliculata",0,0,85,NA,0,14.66,NA,NA
+2014-11-04,"BD","Nucella_ostrina","Nucella_ostrina",0,0,22,NA,0,14.66,NA,NA
+2014-11-04,"BD","Pollicipes_polymerus","Nucella_canaliculata",0,0,85,NA,0,14.66,NA,NA
+2014-11-04,"BD","Pollicipes_polymerus","Nucella_ostrina",0,0,22,NA,0,14.66,NA,NA
+2014-11-04,"BD","Semibalanus_cariosus","Nucella_canaliculata",0,0,85,NA,0,14.66,NA,NA
+2014-11-04,"BD","Semibalanus_cariosus","Nucella_ostrina",0,0,22,NA,0,14.66,NA,NA
+2014-11-04,"BE","Adula_californiensis","Nucella_canaliculata",0,0,11,NA,0,14.66,NA,NA
+2014-11-04,"BE","Adula_californiensis","Nucella_ostrina",0,0,5,NA,0,14.66,NA,NA
+2014-11-04,"BE","Balanus_glandula","Nucella_canaliculata",0.222222222222222,2,11,24.9386499334464,44933.7142857143,14.66,1.98308910119208e-07,0.00891075590760789
+2014-11-04,"BE","Balanus_glandula","Nucella_ostrina",0,0,5,NA,44933.7142857143,14.66,NA,NA
+2014-11-04,"BE","Chthamalus_dalli","Nucella_canaliculata",0,0,11,NA,0,14.66,NA,NA
+2014-11-04,"BE","Chthamalus_dalli","Nucella_ostrina",0,0,5,NA,0,14.66,NA,NA
+2014-11-04,"BE","Hiatella_arctica","Nucella_canaliculata",0,0,11,NA,0,14.66,NA,NA
+2014-11-04,"BE","Hiatella_arctica","Nucella_ostrina",0,0,5,NA,0,14.66,NA,NA
+2014-11-04,"BE","Limpets","Nucella_canaliculata",0,0,11,NA,1131.42857142857,14.66,NA,NA
+2014-11-04,"BE","Limpets","Nucella_ostrina",0,0,5,NA,1131.42857142857,14.66,NA,NA
+2014-11-04,"BE","Littorina_sitkana","Nucella_canaliculata",0,0,11,NA,3262.85714285714,14.66,NA,NA
+2014-11-04,"BE","Littorina_sitkana","Nucella_ostrina",0,0,5,NA,3262.85714285714,14.66,NA,NA
+2014-11-04,"BE","Modiolus_modiolus","Nucella_canaliculata",0,0,11,NA,0,14.66,NA,NA
+2014-11-04,"BE","Modiolus_modiolus","Nucella_ostrina",0,0,5,NA,0,14.66,NA,NA
+2014-11-04,"BE","Mytilus_californianus","Nucella_canaliculata",0,0,11,NA,0,14.66,NA,NA
+2014-11-04,"BE","Mytilus_californianus","Nucella_ostrina",0,0,5,NA,0,14.66,NA,NA
+2014-11-04,"BE","Mytilus_trossulus","Nucella_canaliculata",0,0,11,NA,17325.7142857143,14.66,NA,NA
+2014-11-04,"BE","Mytilus_trossulus","Nucella_ostrina",0,0,5,NA,17325.7142857143,14.66,NA,NA
+2014-11-04,"BE","Nucella_ostrina","Nucella_canaliculata",0,0,11,NA,11.4285714285715,14.66,NA,NA
+2014-11-04,"BE","Nucella_ostrina","Nucella_ostrina",0,0,5,NA,11.4285714285715,14.66,NA,NA
+2014-11-04,"BE","Pollicipes_polymerus","Nucella_canaliculata",0,0,11,NA,0,14.66,NA,NA
+2014-11-04,"BE","Pollicipes_polymerus","Nucella_ostrina",0,0,5,NA,0,14.66,NA,NA
+2014-11-04,"BE","Semibalanus_cariosus","Nucella_canaliculata",0,0,11,NA,5.7142857142857,14.66,NA,NA
+2014-11-04,"BE","Semibalanus_cariosus","Nucella_ostrina",0,0,5,NA,5.7142857142857,14.66,NA,NA
+2014-11-04,"BF","Adula_californiensis","Nucella_canaliculata",0,0,43,NA,0,14.66,NA,NA
+2014-11-04,"BF","Adula_californiensis","Nucella_ostrina",0,0,20,NA,0,14.66,NA,NA
+2014-11-04,"BF","Balanus_glandula","Nucella_canaliculata",0.0512820512820513,2,43,27.9354817422501,20514.2857142857,14.66,8.94855318548114e-08,0.00183573176776442
+2014-11-04,"BF","Balanus_glandula","Nucella_ostrina",0.0526315789473684,1,20,32.9143452472449,20514.2857142857,14.66,7.79479645371983e-08,0.0015990468153631
+2014-11-04,"BF","Chthamalus_dalli","Nucella_canaliculata",0,0,43,NA,0,14.66,NA,NA
+2014-11-04,"BF","Chthamalus_dalli","Nucella_ostrina",0,0,20,NA,0,14.66,NA,NA
+2014-11-04,"BF","Hiatella_arctica","Nucella_canaliculata",0,0,43,NA,0,14.66,NA,NA
+2014-11-04,"BF","Hiatella_arctica","Nucella_ostrina",0,0,20,NA,0,14.66,NA,NA
+2014-11-04,"BF","Limpets","Nucella_canaliculata",0,0,43,NA,640,14.66,NA,NA
+2014-11-04,"BF","Limpets","Nucella_ostrina",0,0,20,NA,640,14.66,NA,NA
+2014-11-04,"BF","Littorina_sitkana","Nucella_canaliculata",0,0,43,NA,6685.71428571429,14.66,NA,NA
+2014-11-04,"BF","Littorina_sitkana","Nucella_ostrina",0,0,20,NA,6685.71428571429,14.66,NA,NA
+2014-11-04,"BF","Modiolus_modiolus","Nucella_canaliculata",0,0,43,NA,0,14.66,NA,NA
+2014-11-04,"BF","Modiolus_modiolus","Nucella_ostrina",0,0,20,NA,0,14.66,NA,NA
+2014-11-04,"BF","Mytilus_californianus","Nucella_canaliculata",0,0,43,NA,11.4285714285714,14.66,NA,NA
+2014-11-04,"BF","Mytilus_californianus","Nucella_ostrina",0,0,20,NA,11.4285714285714,14.66,NA,NA
+2014-11-04,"BF","Mytilus_trossulus","Nucella_canaliculata",0.0512820512820513,2,43,37.59856007681,27897.1428571429,14.66,4.8891622438715e-08,0.00136393657569033
+2014-11-04,"BF","Mytilus_trossulus","Nucella_ostrina",0,0,20,NA,27897.1428571429,14.66,NA,NA
+2014-11-04,"BF","Nucella_ostrina","Nucella_canaliculata",0,0,43,NA,0,14.66,NA,NA
+2014-11-04,"BF","Nucella_ostrina","Nucella_ostrina",0,0,20,NA,0,14.66,NA,NA
+2014-11-04,"BF","Pollicipes_polymerus","Nucella_canaliculata",0,0,43,NA,34.2857142857143,14.66,NA,NA
+2014-11-04,"BF","Pollicipes_polymerus","Nucella_ostrina",0,0,20,NA,34.2857142857143,14.66,NA,NA
+2014-11-04,"BF","Semibalanus_cariosus","Nucella_canaliculata",0,0,43,NA,0,14.66,NA,NA
+2014-11-04,"BF","Semibalanus_cariosus","Nucella_ostrina",0,0,20,NA,0,14.66,NA,NA
+2014-11-04,"C","Adula_californiensis","Nucella_canaliculata",0,0,92,NA,0,14.66,NA,NA
+2014-11-04,"C","Adula_californiensis","Nucella_ostrina",0,0,21,NA,0,14.66,NA,NA
+2014-11-04,"C","Balanus_glandula","Nucella_canaliculata",0.0769230769230769,6,92,28.331028378565,12181.3333333333,14.66,2.22894566115801e-07,0.00271515300804528
+2014-11-04,"C","Balanus_glandula","Nucella_ostrina",0.166666666666667,3,21,13.8120836813341,12181.3333333333,14.66,9.90591783116848e-07,0.0120667287074074
+2014-11-04,"C","Chthamalus_dalli","Nucella_canaliculata",0,0,92,NA,1258.66666666667,14.66,NA,NA
+2014-11-04,"C","Chthamalus_dalli","Nucella_ostrina",0,0,21,NA,1258.66666666667,14.66,NA,NA
+2014-11-04,"C","Hiatella_arctica","Nucella_canaliculata",0,0,92,NA,0,14.66,NA,NA
+2014-11-04,"C","Hiatella_arctica","Nucella_ostrina",0,0,21,NA,0,14.66,NA,NA
+2014-11-04,"C","Limpets","Nucella_canaliculata",0,0,92,NA,3241.90476190476,14.66,NA,NA
+2014-11-04,"C","Limpets","Nucella_ostrina",0,0,21,NA,3241.90476190476,14.66,NA,NA
+2014-11-04,"C","Littorina_sitkana","Nucella_canaliculata",0,0,92,NA,179.047619047619,14.66,NA,NA
+2014-11-04,"C","Littorina_sitkana","Nucella_ostrina",0,0,21,NA,179.047619047619,14.66,NA,NA
+2014-11-04,"C","Modiolus_modiolus","Nucella_canaliculata",0,0,92,NA,0,14.66,NA,NA
+2014-11-04,"C","Modiolus_modiolus","Nucella_ostrina",0,0,21,NA,0,14.66,NA,NA
+2014-11-04,"C","Mytilus_californianus","Nucella_canaliculata",0,0,92,NA,0,14.66,NA,NA
+2014-11-04,"C","Mytilus_californianus","Nucella_ostrina",0,0,21,NA,0,14.66,NA,NA
+2014-11-04,"C","Mytilus_trossulus","Nucella_canaliculata",0.102564102564103,8,92,38.4873448096587,2624,14.66,1.01557874475723e-06,0.00266487862624296
+2014-11-04,"C","Mytilus_trossulus","Nucella_ostrina",0,0,21,NA,2624,14.66,NA,NA
+2014-11-04,"C","Nucella_ostrina","Nucella_canaliculata",0,0,92,NA,15.2380952380952,14.66,NA,NA
+2014-11-04,"C","Nucella_ostrina","Nucella_ostrina",0,0,21,NA,15.2380952380952,14.66,NA,NA
+2014-11-04,"C","Pollicipes_polymerus","Nucella_canaliculata",0,0,92,NA,217.142857142857,14.66,NA,NA
+2014-11-04,"C","Pollicipes_polymerus","Nucella_ostrina",0,0,21,NA,217.142857142857,14.66,NA,NA
+2014-11-04,"C","Semibalanus_cariosus","Nucella_canaliculata",0,0,92,NA,3.8095238095238,14.66,NA,NA
+2014-11-04,"C","Semibalanus_cariosus","Nucella_ostrina",0,0,21,NA,3.8095238095238,14.66,NA,NA
+2014-11-04,"D","Adula_californiensis","Nucella_canaliculata",0,0,44,NA,0,14.66,NA,NA
+2014-11-04,"D","Adula_californiensis","Nucella_ostrina",0,0,5,NA,0,14.66,NA,NA
+2014-11-04,"D","Balanus_glandula","Nucella_canaliculata",0.0769230769230769,3,44,45.1129581489018,13724.9523809524,14.66,1.2423515202238e-07,0.00170512154554754
+2014-11-04,"D","Balanus_glandula","Nucella_ostrina",0.25,1,5,30.6999786529372,13724.9523809524,14.66,5.9332287005136e-07,0.00814332813798491
+2014-11-04,"D","Chthamalus_dalli","Nucella_canaliculata",0,0,44,NA,275.809523809524,14.66,NA,NA
+2014-11-04,"D","Chthamalus_dalli","Nucella_ostrina",0,0,5,NA,275.809523809524,14.66,NA,NA
+2014-11-04,"D","Hiatella_arctica","Nucella_canaliculata",0,0,44,NA,0,14.66,NA,NA
+2014-11-04,"D","Hiatella_arctica","Nucella_ostrina",0,0,5,NA,0,14.66,NA,NA
+2014-11-04,"D","Limpets","Nucella_canaliculata",0,0,44,NA,1897.14285714286,14.66,NA,NA
+2014-11-04,"D","Limpets","Nucella_ostrina",0,0,5,NA,1897.14285714286,14.66,NA,NA
+2014-11-04,"D","Littorina_sitkana","Nucella_canaliculata",0,0,44,NA,2003.80952380953,14.66,NA,NA
+2014-11-04,"D","Littorina_sitkana","Nucella_ostrina",0,0,5,NA,2003.80952380953,14.66,NA,NA
+2014-11-04,"D","Modiolus_modiolus","Nucella_canaliculata",0,0,44,NA,0,14.66,NA,NA
+2014-11-04,"D","Modiolus_modiolus","Nucella_ostrina",0,0,5,NA,0,14.66,NA,NA
+2014-11-04,"D","Mytilus_californianus","Nucella_canaliculata",0,0,44,NA,26.6666666666667,14.66,NA,NA
+2014-11-04,"D","Mytilus_californianus","Nucella_ostrina",0,0,5,NA,26.6666666666667,14.66,NA,NA
+2014-11-04,"D","Mytilus_trossulus","Nucella_canaliculata",0.0512820512820513,2,44,49.8804345321489,6953.14285714286,14.66,1.47861125650556e-07,0.00102809952966627
+2014-11-04,"D","Mytilus_trossulus","Nucella_ostrina",0,0,5,NA,6953.14285714286,14.66,NA,NA
+2014-11-04,"D","Nucella_ostrina","Nucella_canaliculata",0,0,44,NA,11.4285714285714,14.66,NA,NA
+2014-11-04,"D","Nucella_ostrina","Nucella_ostrina",0,0,5,NA,11.4285714285714,14.66,NA,NA
+2014-11-04,"D","Pollicipes_polymerus","Nucella_canaliculata",0,0,44,NA,102.857142857143,14.66,NA,NA
+2014-11-04,"D","Pollicipes_polymerus","Nucella_ostrina",0,0,5,NA,102.857142857143,14.66,NA,NA
+2014-11-04,"D","Semibalanus_cariosus","Nucella_canaliculata",0,0,44,NA,3.8095238095238,14.66,NA,NA
+2014-11-04,"D","Semibalanus_cariosus","Nucella_ostrina",0,0,5,NA,3.8095238095238,14.66,NA,NA
+2014-11-04,"E","Adula_californiensis","Nucella_canaliculata",0,0,78,NA,0,14.66,NA,NA
+2014-11-04,"E","Adula_californiensis","Nucella_ostrina",0,0,28,NA,0,14.66,NA,NA
+2014-11-04,"E","Balanus_glandula","Nucella_canaliculata",0.0136986301369863,1,78,39.348227984746,3005.71428571428,14.66,1.15825521793193e-07,0.000348138425504112
+2014-11-04,"E","Balanus_glandula","Nucella_ostrina",0.125,3,28,36.3832575008263,3005.71428571428,14.66,1.14303818096932e-06,0.00343564618965636
+2014-11-04,"E","Chthamalus_dalli","Nucella_canaliculata",0,0,78,NA,2000,14.66,NA,NA
+2014-11-04,"E","Chthamalus_dalli","Nucella_ostrina",0,0,28,NA,2000,14.66,NA,NA
+2014-11-04,"E","Hiatella_arctica","Nucella_canaliculata",0,0,78,NA,0,14.66,NA,NA
+2014-11-04,"E","Hiatella_arctica","Nucella_ostrina",0,0,28,NA,0,14.66,NA,NA
+2014-11-04,"E","Limpets","Nucella_canaliculata",0,0,78,NA,601.904761904761,14.66,NA,NA
+2014-11-04,"E","Limpets","Nucella_ostrina",0,0,28,NA,601.904761904761,14.66,NA,NA
+2014-11-04,"E","Littorina_sitkana","Nucella_canaliculata",0,0,78,NA,742.857142857143,14.66,NA,NA
+2014-11-04,"E","Littorina_sitkana","Nucella_ostrina",0,0,28,NA,742.857142857143,14.66,NA,NA
+2014-11-04,"E","Modiolus_modiolus","Nucella_canaliculata",0,0,78,NA,0,14.66,NA,NA
+2014-11-04,"E","Modiolus_modiolus","Nucella_ostrina",0,0,28,NA,0,14.66,NA,NA
+2014-11-04,"E","Mytilus_californianus","Nucella_canaliculata",0,0,78,NA,3.8095238095238,14.66,NA,NA
+2014-11-04,"E","Mytilus_californianus","Nucella_ostrina",0,0,28,NA,3.8095238095238,14.66,NA,NA
+2014-11-04,"E","Mytilus_trossulus","Nucella_canaliculata",0.0547945205479452,4,78,52.7672411741176,4613.33333333333,14.66,2.2509088423011e-07,0.00103841927924824
+2014-11-04,"E","Mytilus_trossulus","Nucella_ostrina",0.0416666666666667,1,28,56.1588652958261,4613.33333333333,14.66,1.6082575493536e-07,0.000741942816101796
+2014-11-04,"E","Nucella_ostrina","Nucella_canaliculata",0,0,78,NA,19.047619047619,14.66,NA,NA
+2014-11-04,"E","Nucella_ostrina","Nucella_ostrina",0,0,28,NA,19.047619047619,14.66,NA,NA
+2014-11-04,"E","Pollicipes_polymerus","Nucella_canaliculata",0,0,78,NA,434.285714285713,14.66,NA,NA
+2014-11-04,"E","Pollicipes_polymerus","Nucella_ostrina",0,0,28,NA,434.285714285713,14.66,NA,NA
+2014-11-04,"E","Semibalanus_cariosus","Nucella_canaliculata",0,0,78,NA,0,14.66,NA,NA
+2014-11-04,"E","Semibalanus_cariosus","Nucella_ostrina",0,0,28,NA,0,14.66,NA,NA
+2014-11-04,"F","Adula_californiensis","Nucella_canaliculata",0,0,12,NA,0,14.66,NA,NA
+2014-11-04,"F","Adula_californiensis","Nucella_ostrina",0,0,10,NA,0,14.66,NA,NA
+2014-11-04,"F","Balanus_glandula","Nucella_canaliculata",0,0,12,NA,0,14.66,NA,NA
+2014-11-04,"F","Balanus_glandula","Nucella_ostrina",0,0,10,NA,0,14.66,NA,NA
+2014-11-04,"F","Chthamalus_dalli","Nucella_canaliculata",0,0,12,NA,0,14.66,NA,NA
+2014-11-04,"F","Chthamalus_dalli","Nucella_ostrina",0,0,10,NA,0,14.66,NA,NA
+2014-11-04,"F","Hiatella_arctica","Nucella_canaliculata",0,0,12,NA,0,14.66,NA,NA
+2014-11-04,"F","Hiatella_arctica","Nucella_ostrina",0,0,10,NA,0,14.66,NA,NA
+2014-11-04,"F","Limpets","Nucella_canaliculata",0,0,12,NA,0,14.66,NA,NA
+2014-11-04,"F","Limpets","Nucella_ostrina",0,0,10,NA,0,14.66,NA,NA
+2014-11-04,"F","Littorina_sitkana","Nucella_canaliculata",0,0,12,NA,0,14.66,NA,NA
+2014-11-04,"F","Littorina_sitkana","Nucella_ostrina",0,0,10,NA,0,14.66,NA,NA
+2014-11-04,"F","Modiolus_modiolus","Nucella_canaliculata",0,0,12,NA,0,14.66,NA,NA
+2014-11-04,"F","Modiolus_modiolus","Nucella_ostrina",0,0,10,NA,0,14.66,NA,NA
+2014-11-04,"F","Mytilus_californianus","Nucella_canaliculata",0,0,12,NA,0,14.66,NA,NA
+2014-11-04,"F","Mytilus_californianus","Nucella_ostrina",0,0,10,NA,0,14.66,NA,NA
+2014-11-04,"F","Mytilus_trossulus","Nucella_canaliculata",0.2,2,12,73.3911070858684,0,14.66,Inf,0.00272512580803554
+2014-11-04,"F","Mytilus_trossulus","Nucella_ostrina",0,0,10,NA,0,14.66,NA,NA
+2014-11-04,"F","Nucella_ostrina","Nucella_canaliculata",0,0,12,NA,0,14.66,NA,NA
+2014-11-04,"F","Nucella_ostrina","Nucella_ostrina",0,0,10,NA,0,14.66,NA,NA
+2014-11-04,"F","Pollicipes_polymerus","Nucella_canaliculata",0,0,12,NA,0,14.66,NA,NA
+2014-11-04,"F","Pollicipes_polymerus","Nucella_ostrina",0,0,10,NA,0,14.66,NA,NA
+2014-11-04,"F","Semibalanus_cariosus","Nucella_canaliculata",0,0,12,NA,0,14.66,NA,NA
+2014-11-04,"F","Semibalanus_cariosus","Nucella_ostrina",0,0,10,NA,0,14.66,NA,NA
+2014-11-04,"G","Adula_californiensis","Nucella_canaliculata",0,0,68,NA,0,14.66,NA,NA
+2014-11-04,"G","Adula_californiensis","Nucella_ostrina",0,0,24,NA,0,14.66,NA,NA
+2014-11-04,"G","Balanus_glandula","Nucella_canaliculata",0.0166666666666667,1,68,15.2342502412431,5708.57142857143,14.66,1.91646205535964e-07,0.00109402605331673
+2014-11-04,"G","Balanus_glandula","Nucella_ostrina",0,0,24,NA,5708.57142857143,14.66,NA,NA
+2014-11-04,"G","Chthamalus_dalli","Nucella_canaliculata",0,0,68,NA,182.857142857143,14.66,NA,NA
+2014-11-04,"G","Chthamalus_dalli","Nucella_ostrina",0.0476190476190476,1,24,15.2342502412431,182.857142857143,14.66,1.70941570830739e-05,0.00312578872376209
+2014-11-04,"G","Hiatella_arctica","Nucella_canaliculata",0,0,68,NA,0,14.66,NA,NA
+2014-11-04,"G","Hiatella_arctica","Nucella_ostrina",0,0,24,NA,0,14.66,NA,NA
+2014-11-04,"G","Limpets","Nucella_canaliculata",0,0,68,NA,994.285714285714,14.66,NA,NA
+2014-11-04,"G","Limpets","Nucella_ostrina",0,0,24,NA,994.285714285714,14.66,NA,NA
+2014-11-04,"G","Littorina_sitkana","Nucella_canaliculata",0,0,68,NA,405.714285714286,14.66,NA,NA
+2014-11-04,"G","Littorina_sitkana","Nucella_ostrina",0,0,24,NA,405.714285714286,14.66,NA,NA
+2014-11-04,"G","Modiolus_modiolus","Nucella_canaliculata",0,0,68,NA,0,14.66,NA,NA
+2014-11-04,"G","Modiolus_modiolus","Nucella_ostrina",0,0,24,NA,0,14.66,NA,NA
+2014-11-04,"G","Mytilus_californianus","Nucella_canaliculata",0,0,68,NA,485.714285714285,14.66,NA,NA
+2014-11-04,"G","Mytilus_californianus","Nucella_ostrina",0,0,24,NA,485.714285714285,14.66,NA,NA
+2014-11-04,"G","Mytilus_trossulus","Nucella_canaliculata",0.116666666666667,7,68,74.7133482946396,9737.14285714286,14.66,1.60367754451762e-07,0.00156152373477601
+2014-11-04,"G","Mytilus_trossulus","Nucella_ostrina",0.0952380952380952,2,24,31.3957578949834,9737.14285714286,14.66,3.11535962945952e-07,0.00303347017634229
+2014-11-04,"G","Nucella_ostrina","Nucella_canaliculata",0,0,68,NA,28.5714285714286,14.66,NA,NA
+2014-11-04,"G","Nucella_ostrina","Nucella_ostrina",0,0,24,NA,28.5714285714286,14.66,NA,NA
+2014-11-04,"G","Pollicipes_polymerus","Nucella_canaliculata",0,0,68,NA,331.428571428572,14.66,NA,NA
+2014-11-04,"G","Pollicipes_polymerus","Nucella_ostrina",0,0,24,NA,331.428571428572,14.66,NA,NA
+2014-11-04,"G","Semibalanus_cariosus","Nucella_canaliculata",0,0,68,NA,5.7142857142857,14.66,NA,NA
+2014-11-04,"G","Semibalanus_cariosus","Nucella_ostrina",0,0,24,NA,5.7142857142857,14.66,NA,NA
+2014-12-04,"A","Adula_californiensis","Nucella_canaliculata",0,0,111,NA,0,12.79,NA,NA
+2014-12-04,"A","Adula_californiensis","Nucella_ostrina",0,0,15,NA,0,12.79,NA,NA
+2014-12-04,"A","Balanus_glandula","Nucella_canaliculata",0.0404040404040404,4,111,47.161676946673,12080,12.79,7.09199830880113e-08,0.000856713395703176
+2014-12-04,"A","Balanus_glandula","Nucella_ostrina",0,0,15,NA,12080,12.79,NA,NA
+2014-12-04,"A","Chthamalus_dalli","Nucella_canaliculata",0,0,111,NA,1108.57142857143,12.79,NA,NA
+2014-12-04,"A","Chthamalus_dalli","Nucella_ostrina",0,0,15,NA,1108.57142857143,12.79,NA,NA
+2014-12-04,"A","Hiatella_arctica","Nucella_canaliculata",0,0,111,NA,0,12.79,NA,NA
+2014-12-04,"A","Hiatella_arctica","Nucella_ostrina",0,0,15,NA,0,12.79,NA,NA
+2014-12-04,"A","Limpets","Nucella_canaliculata",0,0,111,NA,2491.42857142857,12.79,NA,NA
+2014-12-04,"A","Limpets","Nucella_ostrina",0,0,15,NA,2491.42857142857,12.79,NA,NA
+2014-12-04,"A","Littorina_sitkana","Nucella_canaliculata",0,0,111,NA,422.857142857143,12.79,NA,NA
+2014-12-04,"A","Littorina_sitkana","Nucella_ostrina",0,0,15,NA,422.857142857143,12.79,NA,NA
+2014-12-04,"A","Modiolus_modiolus","Nucella_canaliculata",0,0,111,NA,0,12.79,NA,NA
+2014-12-04,"A","Modiolus_modiolus","Nucella_ostrina",0,0,15,NA,0,12.79,NA,NA
+2014-12-04,"A","Mytilus_californianus","Nucella_canaliculata",0,0,111,NA,0,12.79,NA,NA
+2014-12-04,"A","Mytilus_californianus","Nucella_ostrina",0,0,15,NA,0,12.79,NA,NA
+2014-12-04,"A","Mytilus_trossulus","Nucella_canaliculata",0.0808080808080808,8,111,66.5696798296292,4022.85714285714,12.79,3.01747523012517e-07,0.00121388717829035
+2014-12-04,"A","Mytilus_trossulus","Nucella_ostrina",0,0,15,NA,4022.85714285714,12.79,NA,NA
+2014-12-04,"A","Nucella_ostrina","Nucella_canaliculata",0,0,111,NA,80,12.79,NA,NA
+2014-12-04,"A","Nucella_ostrina","Nucella_ostrina",0,0,15,NA,80,12.79,NA,NA
+2014-12-04,"A","Pollicipes_polymerus","Nucella_canaliculata",0,0,111,NA,1508.57142857143,12.79,NA,NA
+2014-12-04,"A","Pollicipes_polymerus","Nucella_ostrina",0,0,15,NA,1508.57142857143,12.79,NA,NA
+2014-12-04,"A","Semibalanus_cariosus","Nucella_canaliculata",0,0,111,NA,0,12.79,NA,NA
+2014-12-04,"A","Semibalanus_cariosus","Nucella_ostrina",0,0,15,NA,0,12.79,NA,NA
+2014-12-04,"AB","Adula_californiensis","Nucella_canaliculata",0,0,48,NA,0,12.79,NA,NA
+2014-12-04,"AB","Adula_californiensis","Nucella_ostrina",0,0,32,NA,0,12.79,NA,NA
+2014-12-04,"AB","Balanus_glandula","Nucella_canaliculata",0.108108108108108,4,48,26.3772760882157,10466.2857142857,12.79,3.91593735886404e-07,0.00409853192371165
+2014-12-04,"AB","Balanus_glandula","Nucella_ostrina",0.037037037037037,1,32,22.8993515928154,10466.2857142857,12.79,1.54532725534518e-07,0.00161738365765157
+2014-12-04,"AB","Chthamalus_dalli","Nucella_canaliculata",0,0,48,NA,32,12.79,NA,NA
+2014-12-04,"AB","Chthamalus_dalli","Nucella_ostrina",0.0740740740740741,2,32,19.8950366348464,32,12.79,0.000116351372319686,0.00372324391422996
+2014-12-04,"AB","Hiatella_arctica","Nucella_canaliculata",0,0,48,NA,0,12.79,NA,NA
+2014-12-04,"AB","Hiatella_arctica","Nucella_ostrina",0,0,32,NA,0,12.79,NA,NA
+2014-12-04,"AB","Limpets","Nucella_canaliculata",0,0,48,NA,337.142857142857,12.79,NA,NA
+2014-12-04,"AB","Limpets","Nucella_ostrina",0,0,32,NA,337.142857142857,12.79,NA,NA
+2014-12-04,"AB","Littorina_sitkana","Nucella_canaliculata",0,0,48,NA,822.857142857145,12.79,NA,NA
+2014-12-04,"AB","Littorina_sitkana","Nucella_ostrina",0,0,32,NA,822.857142857145,12.79,NA,NA
+2014-12-04,"AB","Modiolus_modiolus","Nucella_canaliculata",0,0,48,NA,0,12.79,NA,NA
+2014-12-04,"AB","Modiolus_modiolus","Nucella_ostrina",0,0,32,NA,0,12.79,NA,NA
+2014-12-04,"AB","Mytilus_californianus","Nucella_canaliculata",0,0,48,NA,0,12.79,NA,NA
+2014-12-04,"AB","Mytilus_californianus","Nucella_ostrina",0,0,32,NA,0,12.79,NA,NA
+2014-12-04,"AB","Mytilus_trossulus","Nucella_canaliculata",0.189189189189189,7,48,50.1720961858077,24672,12.79,1.52837425452349e-07,0.00377080496076035
+2014-12-04,"AB","Mytilus_trossulus","Nucella_ostrina",0.0740740740740741,2,32,52.9162063234565,24672,12.79,5.67378890894515e-08,0.00139983719961495
+2014-12-04,"AB","Nucella_ostrina","Nucella_canaliculata",0,0,48,NA,0,12.79,NA,NA
+2014-12-04,"AB","Nucella_ostrina","Nucella_ostrina",0,0,32,NA,0,12.79,NA,NA
+2014-12-04,"AB","Pollicipes_polymerus","Nucella_canaliculata",0,0,48,NA,2388.57142857143,12.79,NA,NA
+2014-12-04,"AB","Pollicipes_polymerus","Nucella_ostrina",0,0,32,NA,2388.57142857143,12.79,NA,NA
+2014-12-04,"AB","Semibalanus_cariosus","Nucella_canaliculata",0,0,48,NA,11.4285714285714,12.79,NA,NA
+2014-12-04,"AB","Semibalanus_cariosus","Nucella_ostrina",0,0,32,NA,11.4285714285714,12.79,NA,NA
+2014-12-04,"AC","Adula_californiensis","Nucella_canaliculata",0,0,10,NA,0,12.79,NA,NA
+2014-12-04,"AC","Adula_californiensis","Nucella_ostrina",0,0,9,NA,0,12.79,NA,NA
+2014-12-04,"AC","Balanus_glandula","Nucella_canaliculata",0,0,10,NA,56160,12.79,NA,NA
+2014-12-04,"AC","Balanus_glandula","Nucella_ostrina",0,0,9,NA,56160,12.79,NA,NA
+2014-12-04,"AC","Chthamalus_dalli","Nucella_canaliculata",0,0,10,NA,800,12.79,NA,NA
+2014-12-04,"AC","Chthamalus_dalli","Nucella_ostrina",0,0,9,NA,800,12.79,NA,NA
+2014-12-04,"AC","Hiatella_arctica","Nucella_canaliculata",0,0,10,NA,0,12.79,NA,NA
+2014-12-04,"AC","Hiatella_arctica","Nucella_ostrina",0,0,9,NA,0,12.79,NA,NA
+2014-12-04,"AC","Limpets","Nucella_canaliculata",0,0,10,NA,148.571428571429,12.79,NA,NA
+2014-12-04,"AC","Limpets","Nucella_ostrina",0,0,9,NA,148.571428571429,12.79,NA,NA
+2014-12-04,"AC","Littorina_sitkana","Nucella_canaliculata",0,0,10,NA,5994.28571428572,12.79,NA,NA
+2014-12-04,"AC","Littorina_sitkana","Nucella_ostrina",0,0,9,NA,5994.28571428572,12.79,NA,NA
+2014-12-04,"AC","Modiolus_modiolus","Nucella_canaliculata",0,0,10,NA,0,12.79,NA,NA
+2014-12-04,"AC","Modiolus_modiolus","Nucella_ostrina",0,0,9,NA,0,12.79,NA,NA
+2014-12-04,"AC","Mytilus_californianus","Nucella_canaliculata",0,0,10,NA,0,12.79,NA,NA
+2014-12-04,"AC","Mytilus_californianus","Nucella_ostrina",0,0,9,NA,0,12.79,NA,NA
+2014-12-04,"AC","Mytilus_trossulus","Nucella_canaliculata",0,0,10,NA,2877.14285714286,12.79,NA,NA
+2014-12-04,"AC","Mytilus_trossulus","Nucella_ostrina",0,0,9,NA,2877.14285714286,12.79,NA,NA
+2014-12-04,"AC","Nucella_ostrina","Nucella_canaliculata",0,0,10,NA,22.8571428571429,12.79,NA,NA
+2014-12-04,"AC","Nucella_ostrina","Nucella_ostrina",0,0,9,NA,22.8571428571429,12.79,NA,NA
+2014-12-04,"AC","Pollicipes_polymerus","Nucella_canaliculata",0,0,10,NA,185.714285714286,12.79,NA,NA
+2014-12-04,"AC","Pollicipes_polymerus","Nucella_ostrina",0,0,9,NA,185.714285714286,12.79,NA,NA
+2014-12-04,"AC","Semibalanus_cariosus","Nucella_canaliculata",0,0,10,NA,2.85714285714285,12.79,NA,NA
+2014-12-04,"AC","Semibalanus_cariosus","Nucella_ostrina",0,0,9,NA,2.85714285714285,12.79,NA,NA
+2014-12-04,"AD","Adula_californiensis","Nucella_canaliculata",0,0,105,NA,0,12.79,NA,NA
+2014-12-04,"AD","Adula_californiensis","Nucella_ostrina",0,0,19,NA,0,12.79,NA,NA
+2014-12-04,"AD","Balanus_glandula","Nucella_canaliculata",0.0315789473684211,3,105,22.6170883000943,7756.19047619048,12.79,1.80016573086757e-07,0.00139624282973195
+2014-12-04,"AD","Balanus_glandula","Nucella_ostrina",0,0,19,NA,7756.19047619048,12.79,NA,NA
+2014-12-04,"AD","Chthamalus_dalli","Nucella_canaliculata",0,0,105,NA,278.095238095238,12.79,NA,NA
+2014-12-04,"AD","Chthamalus_dalli","Nucella_ostrina",0,0,19,NA,278.095238095238,12.79,NA,NA
+2014-12-04,"AD","Hiatella_arctica","Nucella_canaliculata",0,0,105,NA,0,12.79,NA,NA
+2014-12-04,"AD","Hiatella_arctica","Nucella_ostrina",0,0,19,NA,0,12.79,NA,NA
+2014-12-04,"AD","Limpets","Nucella_canaliculata",0,0,105,NA,1752.38095238095,12.79,NA,NA
+2014-12-04,"AD","Limpets","Nucella_ostrina",0,0,19,NA,1752.38095238095,12.79,NA,NA
+2014-12-04,"AD","Littorina_sitkana","Nucella_canaliculata",0,0,105,NA,2525.71428571429,12.79,NA,NA
+2014-12-04,"AD","Littorina_sitkana","Nucella_ostrina",0,0,19,NA,2525.71428571429,12.79,NA,NA
+2014-12-04,"AD","Modiolus_modiolus","Nucella_canaliculata",0,0,105,NA,0,12.79,NA,NA
+2014-12-04,"AD","Modiolus_modiolus","Nucella_ostrina",0,0,19,NA,0,12.79,NA,NA
+2014-12-04,"AD","Mytilus_californianus","Nucella_canaliculata",0,0,105,NA,30.4761904761905,12.79,NA,NA
+2014-12-04,"AD","Mytilus_californianus","Nucella_ostrina",0,0,19,NA,30.4761904761905,12.79,NA,NA
+2014-12-04,"AD","Mytilus_trossulus","Nucella_canaliculata",0.0736842105263158,7,105,50.5670330234817,9439.99999999999,12.79,1.54360070373679e-07,0.00145715906432753
+2014-12-04,"AD","Mytilus_trossulus","Nucella_ostrina",0.117647058823529,2,19,41.7141191664087,9439.99999999999,12.79,2.98762443329867e-07,0.00282031746503394
+2014-12-04,"AD","Nucella_ostrina","Nucella_canaliculata",0,0,105,NA,38.0952380952381,12.79,NA,NA
+2014-12-04,"AD","Nucella_ostrina","Nucella_ostrina",0,0,19,NA,38.0952380952381,12.79,NA,NA
+2014-12-04,"AD","Pollicipes_polymerus","Nucella_canaliculata",0,0,105,NA,426.666666666667,12.79,NA,NA
+2014-12-04,"AD","Pollicipes_polymerus","Nucella_ostrina",0,0,19,NA,426.666666666667,12.79,NA,NA
+2014-12-04,"AD","Semibalanus_cariosus","Nucella_canaliculata",0,0,105,NA,7.6190476190476,12.79,NA,NA
+2014-12-04,"AD","Semibalanus_cariosus","Nucella_ostrina",0,0,19,NA,7.6190476190476,12.79,NA,NA
+2014-12-04,"AE","Adula_californiensis","Nucella_canaliculata",0,0,44,NA,0,12.79,NA,NA
+2014-12-04,"AE","Adula_californiensis","Nucella_ostrina",0,0,35,NA,0,12.79,NA,NA
+2014-12-04,"AE","Balanus_glandula","Nucella_canaliculata",0.0232558139534884,1,44,58.156933166031,18603.4285714286,12.79,2.14949805672632e-08,0.000399880335627325
+2014-12-04,"AE","Balanus_glandula","Nucella_ostrina",0,0,35,NA,18603.4285714286,12.79,NA,NA
+2014-12-04,"AE","Chthamalus_dalli","Nucella_canaliculata",0,0,44,NA,985.904761904762,12.79,NA,NA
+2014-12-04,"AE","Chthamalus_dalli","Nucella_ostrina",0,0,35,NA,985.904761904762,12.79,NA,NA
+2014-12-04,"AE","Hiatella_arctica","Nucella_canaliculata",0,0,44,NA,0,12.79,NA,NA
+2014-12-04,"AE","Hiatella_arctica","Nucella_ostrina",0,0,35,NA,0,12.79,NA,NA
+2014-12-04,"AE","Limpets","Nucella_canaliculata",0,0,44,NA,2491.42857142857,12.79,NA,NA
+2014-12-04,"AE","Limpets","Nucella_ostrina",0,0,35,NA,2491.42857142857,12.79,NA,NA
+2014-12-04,"AE","Littorina_sitkana","Nucella_canaliculata",0,0,44,NA,3546.66666666667,12.79,NA,NA
+2014-12-04,"AE","Littorina_sitkana","Nucella_ostrina",0,0,35,NA,3546.66666666667,12.79,NA,NA
+2014-12-04,"AE","Modiolus_modiolus","Nucella_canaliculata",0,0,44,NA,0,12.79,NA,NA
+2014-12-04,"AE","Modiolus_modiolus","Nucella_ostrina",0,0,35,NA,0,12.79,NA,NA
+2014-12-04,"AE","Mytilus_californianus","Nucella_canaliculata",0,0,44,NA,0,12.79,NA,NA
+2014-12-04,"AE","Mytilus_californianus","Nucella_ostrina",0,0,35,NA,0,12.79,NA,NA
+2014-12-04,"AE","Mytilus_trossulus","Nucella_canaliculata",0,0,44,NA,10430.4761904762,12.79,NA,NA
+2014-12-04,"AE","Mytilus_trossulus","Nucella_ostrina",0,0,35,NA,10430.4761904762,12.79,NA,NA
+2014-12-04,"AE","Nucella_ostrina","Nucella_canaliculata",0,0,44,NA,11.4285714285714,12.79,NA,NA
+2014-12-04,"AE","Nucella_ostrina","Nucella_ostrina",0,0,35,NA,11.4285714285714,12.79,NA,NA
+2014-12-04,"AE","Pollicipes_polymerus","Nucella_canaliculata",0,0,44,NA,87.6190476190476,12.79,NA,NA
+2014-12-04,"AE","Pollicipes_polymerus","Nucella_ostrina",0,0,35,NA,87.6190476190476,12.79,NA,NA
+2014-12-04,"AE","Semibalanus_cariosus","Nucella_canaliculata",0,0,44,NA,19.047619047619,12.79,NA,NA
+2014-12-04,"AE","Semibalanus_cariosus","Nucella_ostrina",0,0,35,NA,19.047619047619,12.79,NA,NA
+2014-12-04,"AF","Adula_californiensis","Nucella_canaliculata",0,0,27,NA,0,12.79,NA,NA
+2014-12-04,"AF","Adula_californiensis","Nucella_ostrina",0,0,13,NA,0,12.79,NA,NA
+2014-12-04,"AF","Balanus_glandula","Nucella_canaliculata",0,0,27,NA,34336,12.79,NA,NA
+2014-12-04,"AF","Balanus_glandula","Nucella_ostrina",0,0,13,NA,34336,12.79,NA,NA
+2014-12-04,"AF","Chthamalus_dalli","Nucella_canaliculata",0,0,27,NA,1600,12.79,NA,NA
+2014-12-04,"AF","Chthamalus_dalli","Nucella_ostrina",0,0,13,NA,1600,12.79,NA,NA
+2014-12-04,"AF","Hiatella_arctica","Nucella_canaliculata",0,0,27,NA,0,12.79,NA,NA
+2014-12-04,"AF","Hiatella_arctica","Nucella_ostrina",0,0,13,NA,0,12.79,NA,NA
+2014-12-04,"AF","Limpets","Nucella_canaliculata",0,0,27,NA,977.142857142856,12.79,NA,NA
+2014-12-04,"AF","Limpets","Nucella_ostrina",0,0,13,NA,977.142857142856,12.79,NA,NA
+2014-12-04,"AF","Littorina_sitkana","Nucella_canaliculata",0,0,27,NA,2645.71428571429,12.79,NA,NA
+2014-12-04,"AF","Littorina_sitkana","Nucella_ostrina",0,0,13,NA,2645.71428571429,12.79,NA,NA
+2014-12-04,"AF","Modiolus_modiolus","Nucella_canaliculata",0,0,27,NA,0,12.79,NA,NA
+2014-12-04,"AF","Modiolus_modiolus","Nucella_ostrina",0,0,13,NA,0,12.79,NA,NA
+2014-12-04,"AF","Mytilus_californianus","Nucella_canaliculata",0,0,27,NA,0,12.79,NA,NA
+2014-12-04,"AF","Mytilus_californianus","Nucella_ostrina",0,0,13,NA,0,12.79,NA,NA
+2014-12-04,"AF","Mytilus_trossulus","Nucella_canaliculata",0,0,27,NA,14176,12.79,NA,NA
+2014-12-04,"AF","Mytilus_trossulus","Nucella_ostrina",0.0833333333333333,1,13,13.0724841192701,14176,12.79,4.49683473053924e-07,0.00637471291401242
+2014-12-04,"AF","Nucella_ostrina","Nucella_canaliculata",0,0,27,NA,11.4285714285715,12.79,NA,NA
+2014-12-04,"AF","Nucella_ostrina","Nucella_ostrina",0,0,13,NA,11.4285714285715,12.79,NA,NA
+2014-12-04,"AF","Pollicipes_polymerus","Nucella_canaliculata",0,0,27,NA,57.142857142857,12.79,NA,NA
+2014-12-04,"AF","Pollicipes_polymerus","Nucella_ostrina",0,0,13,NA,57.142857142857,12.79,NA,NA
+2014-12-04,"AF","Semibalanus_cariosus","Nucella_canaliculata",0,0,27,NA,0,12.79,NA,NA
+2014-12-04,"AF","Semibalanus_cariosus","Nucella_ostrina",0,0,13,NA,0,12.79,NA,NA
+2014-12-04,"AG","Adula_californiensis","Nucella_canaliculata",0,0,32,NA,0,12.79,NA,NA
+2014-12-04,"AG","Adula_californiensis","Nucella_ostrina",0,0,29,NA,0,12.79,NA,NA
+2014-12-04,"AG","Balanus_glandula","Nucella_canaliculata",0,0,32,NA,11227.4285714286,12.79,NA,NA
+2014-12-04,"AG","Balanus_glandula","Nucella_ostrina",0,0,29,NA,11227.4285714286,12.79,NA,NA
+2014-12-04,"AG","Chthamalus_dalli","Nucella_canaliculata",0,0,32,NA,259.428571428572,12.79,NA,NA
+2014-12-04,"AG","Chthamalus_dalli","Nucella_ostrina",0.0384615384615385,1,29,19.3678781846721,259.428571428572,12.79,7.65467582240884e-06,0.00198584161335635
+2014-12-04,"AG","Hiatella_arctica","Nucella_canaliculata",0,0,32,NA,0,12.79,NA,NA
+2014-12-04,"AG","Hiatella_arctica","Nucella_ostrina",0,0,29,NA,0,12.79,NA,NA
+2014-12-04,"AG","Limpets","Nucella_canaliculata",0,0,32,NA,388.571428571428,12.79,NA,NA
+2014-12-04,"AG","Limpets","Nucella_ostrina",0,0,29,NA,388.571428571428,12.79,NA,NA
+2014-12-04,"AG","Littorina_sitkana","Nucella_canaliculata",0,0,32,NA,925.714285714284,12.79,NA,NA
+2014-12-04,"AG","Littorina_sitkana","Nucella_ostrina",0,0,29,NA,925.714285714284,12.79,NA,NA
+2014-12-04,"AG","Modiolus_modiolus","Nucella_canaliculata",0,0,32,NA,0,12.79,NA,NA
+2014-12-04,"AG","Modiolus_modiolus","Nucella_ostrina",0,0,29,NA,0,12.79,NA,NA
+2014-12-04,"AG","Mytilus_californianus","Nucella_canaliculata",0,0,32,NA,0,12.79,NA,NA
+2014-12-04,"AG","Mytilus_californianus","Nucella_ostrina",0,0,29,NA,0,12.79,NA,NA
+2014-12-04,"AG","Mytilus_trossulus","Nucella_canaliculata",0.230769230769231,6,32,48.58495754789,8257.14285714286,12.79,5.75236289718865e-07,0.00474980822082149
+2014-12-04,"AG","Mytilus_trossulus","Nucella_ostrina",0.0769230769230769,2,29,49.1784158501008,8257.14285714286,12.79,1.89431550629743e-07,0.00156416337519988
+2014-12-04,"AG","Nucella_ostrina","Nucella_canaliculata",0,0,32,NA,0,12.79,NA,NA
+2014-12-04,"AG","Nucella_ostrina","Nucella_ostrina",0,0,29,NA,0,12.79,NA,NA
+2014-12-04,"AG","Pollicipes_polymerus","Nucella_canaliculata",0,0,32,NA,240,12.79,NA,NA
+2014-12-04,"AG","Pollicipes_polymerus","Nucella_ostrina",0,0,29,NA,240,12.79,NA,NA
+2014-12-04,"AG","Semibalanus_cariosus","Nucella_canaliculata",0,0,32,NA,22.8571428571429,12.79,NA,NA
+2014-12-04,"AG","Semibalanus_cariosus","Nucella_ostrina",0,0,29,NA,22.8571428571429,12.79,NA,NA
+2014-12-04,"B","Adula_californiensis","Nucella_canaliculata",0,0,118,NA,0,12.79,NA,NA
+2014-12-04,"B","Adula_californiensis","Nucella_ostrina",0,0,8,NA,0,12.79,NA,NA
+2014-12-04,"B","Balanus_glandula","Nucella_canaliculata",0.00934579439252336,1,118,34.0380909267858,5380.57142857143,12.79,5.10296544006684e-08,0.000274568700478111
+2014-12-04,"B","Balanus_glandula","Nucella_ostrina",0,0,8,NA,5380.57142857143,12.79,NA,NA
+2014-12-04,"B","Chthamalus_dalli","Nucella_canaliculata",0,0,118,NA,749.714285714286,12.79,NA,NA
+2014-12-04,"B","Chthamalus_dalli","Nucella_ostrina",0,0,8,NA,749.714285714286,12.79,NA,NA
+2014-12-04,"B","Hiatella_arctica","Nucella_canaliculata",0,0,118,NA,0,12.79,NA,NA
+2014-12-04,"B","Hiatella_arctica","Nucella_ostrina",0,0,8,NA,0,12.79,NA,NA
+2014-12-04,"B","Limpets","Nucella_canaliculata",0,0,118,NA,2270.47619047619,12.79,NA,NA
+2014-12-04,"B","Limpets","Nucella_ostrina",0,0,8,NA,2270.47619047619,12.79,NA,NA
+2014-12-04,"B","Littorina_sitkana","Nucella_canaliculata",0,0,118,NA,26.6666666666667,12.79,NA,NA
+2014-12-04,"B","Littorina_sitkana","Nucella_ostrina",0,0,8,NA,26.6666666666667,12.79,NA,NA
+2014-12-04,"B","Modiolus_modiolus","Nucella_canaliculata",0,0,118,NA,0,12.79,NA,NA
+2014-12-04,"B","Modiolus_modiolus","Nucella_ostrina",0,0,8,NA,0,12.79,NA,NA
+2014-12-04,"B","Mytilus_californianus","Nucella_canaliculata",0,0,118,NA,0,12.79,NA,NA
+2014-12-04,"B","Mytilus_californianus","Nucella_ostrina",0,0,8,NA,0,12.79,NA,NA
+2014-12-04,"B","Mytilus_trossulus","Nucella_canaliculata",0.0934579439252336,10,118,40.3719765593668,5663.2380952381,12.79,4.0876282238822e-07,0.00231492118766601
+2014-12-04,"B","Mytilus_trossulus","Nucella_ostrina",0,0,8,NA,5663.2380952381,12.79,NA,NA
+2014-12-04,"B","Nucella_ostrina","Nucella_canaliculata",0,0,118,NA,0,12.79,NA,NA
+2014-12-04,"B","Nucella_ostrina","Nucella_ostrina",0,0,8,NA,0,12.79,NA,NA
+2014-12-04,"B","Pollicipes_polymerus","Nucella_canaliculata",0,0,118,NA,1017.14285714286,12.79,NA,NA
+2014-12-04,"B","Pollicipes_polymerus","Nucella_ostrina",0,0,8,NA,1017.14285714286,12.79,NA,NA
+2014-12-04,"B","Semibalanus_cariosus","Nucella_canaliculata",0,0,118,NA,11.4285714285714,12.79,NA,NA
+2014-12-04,"B","Semibalanus_cariosus","Nucella_ostrina",0,0,8,NA,11.4285714285714,12.79,NA,NA
+2014-12-04,"BB","Adula_californiensis","Nucella_canaliculata",0,0,26,NA,0,12.79,NA,NA
+2014-12-04,"BB","Adula_californiensis","Nucella_ostrina",0,0,42,NA,0,12.79,NA,NA
+2014-12-04,"BB","Balanus_glandula","Nucella_canaliculata",0,0,26,NA,6247.61904761905,12.79,NA,NA
+2014-12-04,"BB","Balanus_glandula","Nucella_ostrina",0.0526315789473684,2,42,56.7787599294968,6247.61904761905,12.79,1.48369951803425e-07,0.000926958936981399
+2014-12-04,"BB","Chthamalus_dalli","Nucella_canaliculata",0,0,26,NA,255.238095238096,12.79,NA,NA
+2014-12-04,"BB","Chthamalus_dalli","Nucella_ostrina",0,0,42,NA,255.238095238096,12.79,NA,NA
+2014-12-04,"BB","Hiatella_arctica","Nucella_canaliculata",0,0,26,NA,0,12.79,NA,NA
+2014-12-04,"BB","Hiatella_arctica","Nucella_ostrina",0,0,42,NA,0,12.79,NA,NA
+2014-12-04,"BB","Limpets","Nucella_canaliculata",0,0,26,NA,514.285714285714,12.79,NA,NA
+2014-12-04,"BB","Limpets","Nucella_ostrina",0,0,42,NA,514.285714285714,12.79,NA,NA
+2014-12-04,"BB","Littorina_sitkana","Nucella_canaliculata",0,0,26,NA,1459.04761904762,12.79,NA,NA
+2014-12-04,"BB","Littorina_sitkana","Nucella_ostrina",0,0,42,NA,1459.04761904762,12.79,NA,NA
+2014-12-04,"BB","Modiolus_modiolus","Nucella_canaliculata",0,0,26,NA,0,12.79,NA,NA
+2014-12-04,"BB","Modiolus_modiolus","Nucella_ostrina",0,0,42,NA,0,12.79,NA,NA
+2014-12-04,"BB","Mytilus_californianus","Nucella_canaliculata",0,0,26,NA,0,12.79,NA,NA
+2014-12-04,"BB","Mytilus_californianus","Nucella_ostrina",0,0,42,NA,0,12.79,NA,NA
+2014-12-04,"BB","Mytilus_trossulus","Nucella_canaliculata",0,0,26,NA,5805.71428571429,12.79,NA,NA
+2014-12-04,"BB","Mytilus_trossulus","Nucella_ostrina",0.0526315789473684,2,42,53.0362776688766,5805.71428571429,12.79,1.70929768372357e-07,0.000992369398093228
+2014-12-04,"BB","Nucella_ostrina","Nucella_canaliculata",0,0,26,NA,11.4285714285714,12.79,NA,NA
+2014-12-04,"BB","Nucella_ostrina","Nucella_ostrina",0,0,42,NA,11.4285714285714,12.79,NA,NA
+2014-12-04,"BB","Pollicipes_polymerus","Nucella_canaliculata",0,0,26,NA,3.8095238095238,12.79,NA,NA
+2014-12-04,"BB","Pollicipes_polymerus","Nucella_ostrina",0,0,42,NA,3.8095238095238,12.79,NA,NA
+2014-12-04,"BB","Semibalanus_cariosus","Nucella_canaliculata",0,0,26,NA,22.8571428571428,12.79,NA,NA
+2014-12-04,"BB","Semibalanus_cariosus","Nucella_ostrina",0,0,42,NA,22.8571428571428,12.79,NA,NA
+2014-12-04,"BC","Adula_californiensis","Nucella_canaliculata",0,0,27,NA,0,12.79,NA,NA
+2014-12-04,"BC","Adula_californiensis","Nucella_ostrina",0,0,37,NA,0,12.79,NA,NA
+2014-12-04,"BC","Balanus_glandula","Nucella_canaliculata",0.0416666666666667,1,27,58.156933166031,14460.1904761905,12.79,4.95465304678135e-08,0.000716452267998957
+2014-12-04,"BC","Balanus_glandula","Nucella_ostrina",0.0909090909090909,3,37,75.0009018281227,14460.1904761905,12.79,8.38236978477085e-08,0.0012121066372965
+2014-12-04,"BC","Chthamalus_dalli","Nucella_canaliculata",0,0,27,NA,449.52380952381,12.79,NA,NA
+2014-12-04,"BC","Chthamalus_dalli","Nucella_ostrina",0,0,37,NA,449.52380952381,12.79,NA,NA
+2014-12-04,"BC","Hiatella_arctica","Nucella_canaliculata",0,0,27,NA,0,12.79,NA,NA
+2014-12-04,"BC","Hiatella_arctica","Nucella_ostrina",0,0,37,NA,0,12.79,NA,NA
+2014-12-04,"BC","Limpets","Nucella_canaliculata",0,0,27,NA,1253.33333333333,12.79,NA,NA
+2014-12-04,"BC","Limpets","Nucella_ostrina",0,0,37,NA,1253.33333333333,12.79,NA,NA
+2014-12-04,"BC","Littorina_sitkana","Nucella_canaliculata",0,0,27,NA,2274.28571428571,12.79,NA,NA
+2014-12-04,"BC","Littorina_sitkana","Nucella_ostrina",0,0,37,NA,2274.28571428571,12.79,NA,NA
+2014-12-04,"BC","Modiolus_modiolus","Nucella_canaliculata",0,0,27,NA,0,12.79,NA,NA
+2014-12-04,"BC","Modiolus_modiolus","Nucella_ostrina",0,0,37,NA,0,12.79,NA,NA
+2014-12-04,"BC","Mytilus_californianus","Nucella_canaliculata",0,0,27,NA,0,12.79,NA,NA
+2014-12-04,"BC","Mytilus_californianus","Nucella_ostrina",0,0,37,NA,0,12.79,NA,NA
+2014-12-04,"BC","Mytilus_trossulus","Nucella_canaliculata",0.0833333333333333,2,27,66.6366156426859,7927.61904761905,12.79,1.57747704990508e-07,0.00125056371080094
+2014-12-04,"BC","Mytilus_trossulus","Nucella_ostrina",0.0303030303030303,1,37,40.0366605041327,7927.61904761905,12.79,9.54740712283226e-08,0.000756882065623388
+2014-12-04,"BC","Nucella_ostrina","Nucella_canaliculata",0,0,27,NA,11.4285714285714,12.79,NA,NA
+2014-12-04,"BC","Nucella_ostrina","Nucella_ostrina",0,0,37,NA,11.4285714285714,12.79,NA,NA
+2014-12-04,"BC","Pollicipes_polymerus","Nucella_canaliculata",0,0,27,NA,0,12.79,NA,NA
+2014-12-04,"BC","Pollicipes_polymerus","Nucella_ostrina",0,0,37,NA,0,12.79,NA,NA
+2014-12-04,"BC","Semibalanus_cariosus","Nucella_canaliculata",0,0,27,NA,7.61904761904763,12.79,NA,NA
+2014-12-04,"BC","Semibalanus_cariosus","Nucella_ostrina",0,0,37,NA,7.61904761904763,12.79,NA,NA
+2014-12-04,"BD","Adula_californiensis","Nucella_canaliculata",0,0,32,NA,0,12.79,NA,NA
+2014-12-04,"BD","Adula_californiensis","Nucella_ostrina",0,0,7,NA,0,12.79,NA,NA
+2014-12-04,"BD","Balanus_glandula","Nucella_canaliculata",0,0,32,NA,16885.7142857143,12.79,NA,NA
+2014-12-04,"BD","Balanus_glandula","Nucella_ostrina",0,0,7,NA,16885.7142857143,12.79,NA,NA
+2014-12-04,"BD","Chthamalus_dalli","Nucella_canaliculata",0,0,32,NA,600,12.79,NA,NA
+2014-12-04,"BD","Chthamalus_dalli","Nucella_ostrina",0,0,7,NA,600,12.79,NA,NA
+2014-12-04,"BD","Hiatella_arctica","Nucella_canaliculata",0,0,32,NA,0,12.79,NA,NA
+2014-12-04,"BD","Hiatella_arctica","Nucella_ostrina",0,0,7,NA,0,12.79,NA,NA
+2014-12-04,"BD","Limpets","Nucella_canaliculata",0,0,32,NA,1851.42857142857,12.79,NA,NA
+2014-12-04,"BD","Limpets","Nucella_ostrina",0,0,7,NA,1851.42857142857,12.79,NA,NA
+2014-12-04,"BD","Littorina_sitkana","Nucella_canaliculata",0,0,32,NA,1194.28571428572,12.79,NA,NA
+2014-12-04,"BD","Littorina_sitkana","Nucella_ostrina",0,0,7,NA,1194.28571428572,12.79,NA,NA
+2014-12-04,"BD","Modiolus_modiolus","Nucella_canaliculata",0,0,32,NA,0,12.79,NA,NA
+2014-12-04,"BD","Modiolus_modiolus","Nucella_ostrina",0,0,7,NA,0,12.79,NA,NA
+2014-12-04,"BD","Mytilus_californianus","Nucella_canaliculata",0,0,32,NA,5.7142857142857,12.79,NA,NA
+2014-12-04,"BD","Mytilus_californianus","Nucella_ostrina",0,0,7,NA,5.7142857142857,12.79,NA,NA
+2014-12-04,"BD","Mytilus_trossulus","Nucella_canaliculata",0.103448275862069,3,32,41.7517497508979,33841.1428571428,12.79,7.32155880269455e-08,0.00247769917378958
+2014-12-04,"BD","Mytilus_trossulus","Nucella_ostrina",0.166666666666667,1,7,28.4567838572768,33841.1428571428,12.79,1.73068453574347e-07,0.00585683426147428
+2014-12-04,"BD","Nucella_ostrina","Nucella_canaliculata",0,0,32,NA,28.5714285714286,12.79,NA,NA
+2014-12-04,"BD","Nucella_ostrina","Nucella_ostrina",0,0,7,NA,28.5714285714286,12.79,NA,NA
+2014-12-04,"BD","Pollicipes_polymerus","Nucella_canaliculata",0,0,32,NA,6645.71428571429,12.79,NA,NA
+2014-12-04,"BD","Pollicipes_polymerus","Nucella_ostrina",0,0,7,NA,6645.71428571429,12.79,NA,NA
+2014-12-04,"BD","Semibalanus_cariosus","Nucella_canaliculata",0,0,32,NA,5.7142857142857,12.79,NA,NA
+2014-12-04,"BD","Semibalanus_cariosus","Nucella_ostrina",0,0,7,NA,5.7142857142857,12.79,NA,NA
+2014-12-04,"BE","Adula_californiensis","Nucella_canaliculata",0,0,14,NA,0,12.79,NA,NA
+2014-12-04,"BE","Adula_californiensis","Nucella_ostrina",0,0,11,NA,0,12.79,NA,NA
+2014-12-04,"BE","Balanus_glandula","Nucella_canaliculata",0.166666666666667,2,14,25.7443788002507,25280,12.79,2.56088020432453e-07,0.00647390515653241
+2014-12-04,"BE","Balanus_glandula","Nucella_ostrina",0,0,11,NA,25280,12.79,NA,NA
+2014-12-04,"BE","Chthamalus_dalli","Nucella_canaliculata",0,0,14,NA,200,12.79,NA,NA
+2014-12-04,"BE","Chthamalus_dalli","Nucella_ostrina",0,0,11,NA,200,12.79,NA,NA
+2014-12-04,"BE","Hiatella_arctica","Nucella_canaliculata",0,0,14,NA,0,12.79,NA,NA
+2014-12-04,"BE","Hiatella_arctica","Nucella_ostrina",0,0,11,NA,0,12.79,NA,NA
+2014-12-04,"BE","Limpets","Nucella_canaliculata",0,0,14,NA,662.857142857143,12.79,NA,NA
+2014-12-04,"BE","Limpets","Nucella_ostrina",0,0,11,NA,662.857142857143,12.79,NA,NA
+2014-12-04,"BE","Littorina_sitkana","Nucella_canaliculata",0,0,14,NA,2091.42857142857,12.79,NA,NA
+2014-12-04,"BE","Littorina_sitkana","Nucella_ostrina",0,0,11,NA,2091.42857142857,12.79,NA,NA
+2014-12-04,"BE","Modiolus_modiolus","Nucella_canaliculata",0,0,14,NA,0,12.79,NA,NA
+2014-12-04,"BE","Modiolus_modiolus","Nucella_ostrina",0,0,11,NA,0,12.79,NA,NA
+2014-12-04,"BE","Mytilus_californianus","Nucella_canaliculata",0,0,14,NA,5.7142857142857,12.79,NA,NA
+2014-12-04,"BE","Mytilus_californianus","Nucella_ostrina",0,0,11,NA,5.7142857142857,12.79,NA,NA
+2014-12-04,"BE","Mytilus_trossulus","Nucella_canaliculata",0,0,14,NA,8622.85714285713,12.79,NA,NA
+2014-12-04,"BE","Mytilus_trossulus","Nucella_ostrina",0.1,1,11,36.8942491040493,8622.85714285713,12.79,3.1433311270248e-07,0.0027104495261031
+2014-12-04,"BE","Nucella_ostrina","Nucella_canaliculata",0,0,14,NA,0,12.79,NA,NA
+2014-12-04,"BE","Nucella_ostrina","Nucella_ostrina",0,0,11,NA,0,12.79,NA,NA
+2014-12-04,"BE","Pollicipes_polymerus","Nucella_canaliculata",0,0,14,NA,0,12.79,NA,NA
+2014-12-04,"BE","Pollicipes_polymerus","Nucella_ostrina",0,0,11,NA,0,12.79,NA,NA
+2014-12-04,"BE","Semibalanus_cariosus","Nucella_canaliculata",0,0,14,NA,5.7142857142857,12.79,NA,NA
+2014-12-04,"BE","Semibalanus_cariosus","Nucella_ostrina",0,0,11,NA,5.7142857142857,12.79,NA,NA
+2014-12-04,"BF","Adula_californiensis","Nucella_canaliculata",0,0,35,NA,0,12.79,NA,NA
+2014-12-04,"BF","Adula_californiensis","Nucella_ostrina",0,0,25,NA,0,12.79,NA,NA
+2014-12-04,"BF","Balanus_glandula","Nucella_canaliculata",0.0666666666666667,2,35,19.3850476224383,13954.2857142857,12.79,2.46453084385245e-07,0.00343907675467868
+2014-12-04,"BF","Balanus_glandula","Nucella_ostrina",0,0,25,NA,13954.2857142857,12.79,NA,NA
+2014-12-04,"BF","Chthamalus_dalli","Nucella_canaliculata",0,0,35,NA,0,12.79,NA,NA
+2014-12-04,"BF","Chthamalus_dalli","Nucella_ostrina",0.0454545454545455,1,25,13.6103271789081,0,12.79,Inf,0.00333970997589141
+2014-12-04,"BF","Hiatella_arctica","Nucella_canaliculata",0,0,35,NA,0,12.79,NA,NA
+2014-12-04,"BF","Hiatella_arctica","Nucella_ostrina",0,0,25,NA,0,12.79,NA,NA
+2014-12-04,"BF","Limpets","Nucella_canaliculata",0,0,35,NA,560,12.79,NA,NA
+2014-12-04,"BF","Limpets","Nucella_ostrina",0,0,25,NA,560,12.79,NA,NA
+2014-12-04,"BF","Littorina_sitkana","Nucella_canaliculata",0,0,35,NA,1200,12.79,NA,NA
+2014-12-04,"BF","Littorina_sitkana","Nucella_ostrina",0,0,25,NA,1200,12.79,NA,NA
+2014-12-04,"BF","Modiolus_modiolus","Nucella_canaliculata",0,0,35,NA,0,12.79,NA,NA
+2014-12-04,"BF","Modiolus_modiolus","Nucella_ostrina",0,0,25,NA,0,12.79,NA,NA
+2014-12-04,"BF","Mytilus_californianus","Nucella_canaliculata",0,0,35,NA,0,12.79,NA,NA
+2014-12-04,"BF","Mytilus_californianus","Nucella_ostrina",0,0,25,NA,0,12.79,NA,NA
+2014-12-04,"BF","Mytilus_trossulus","Nucella_canaliculata",0.1,3,35,39.7394105878459,70272,12.79,3.58093357023418e-08,0.00251639363847496
+2014-12-04,"BF","Mytilus_trossulus","Nucella_ostrina",0.0909090909090909,2,25,50.619900486602,70272,12.79,2.55566375472145e-08,0.00179591603371786
+2014-12-04,"BF","Nucella_ostrina","Nucella_canaliculata",0,0,35,NA,0,12.79,NA,NA
+2014-12-04,"BF","Nucella_ostrina","Nucella_ostrina",0,0,25,NA,0,12.79,NA,NA
+2014-12-04,"BF","Pollicipes_polymerus","Nucella_canaliculata",0,0,35,NA,251.428571428571,12.79,NA,NA
+2014-12-04,"BF","Pollicipes_polymerus","Nucella_ostrina",0,0,25,NA,251.428571428571,12.79,NA,NA
+2014-12-04,"BF","Semibalanus_cariosus","Nucella_canaliculata",0,0,35,NA,0,12.79,NA,NA
+2014-12-04,"BF","Semibalanus_cariosus","Nucella_ostrina",0,0,25,NA,0,12.79,NA,NA
+2014-12-04,"C","Adula_californiensis","Nucella_canaliculata",0,0,97,NA,0,12.79,NA,NA
+2014-12-04,"C","Adula_californiensis","Nucella_ostrina",0,0,25,NA,0,12.79,NA,NA
+2014-12-04,"C","Balanus_glandula","Nucella_canaliculata",0.032967032967033,3,97,66.059845405072,9386.66666666667,12.79,5.31656237700373e-08,0.00049904798845475
+2014-12-04,"C","Balanus_glandula","Nucella_ostrina",0.0454545454545455,1,25,58.156933166031,9386.66666666667,12.79,8.3265372055664e-08,0.000781584292362499
+2014-12-04,"C","Chthamalus_dalli","Nucella_canaliculata",0,0,97,NA,2523.42857142857,12.79,NA,NA
+2014-12-04,"C","Chthamalus_dalli","Nucella_ostrina",0,0,25,NA,2523.42857142857,12.79,NA,NA
+2014-12-04,"C","Hiatella_arctica","Nucella_canaliculata",0,0,97,NA,0,12.79,NA,NA
+2014-12-04,"C","Hiatella_arctica","Nucella_ostrina",0,0,25,NA,0,12.79,NA,NA
+2014-12-04,"C","Limpets","Nucella_canaliculata",0,0,97,NA,1801.90476190476,12.79,NA,NA
+2014-12-04,"C","Limpets","Nucella_ostrina",0,0,25,NA,1801.90476190476,12.79,NA,NA
+2014-12-04,"C","Littorina_sitkana","Nucella_canaliculata",0,0,97,NA,129.52380952381,12.79,NA,NA
+2014-12-04,"C","Littorina_sitkana","Nucella_ostrina",0,0,25,NA,129.52380952381,12.79,NA,NA
+2014-12-04,"C","Modiolus_modiolus","Nucella_canaliculata",0,0,97,NA,0,12.79,NA,NA
+2014-12-04,"C","Modiolus_modiolus","Nucella_ostrina",0,0,25,NA,0,12.79,NA,NA
+2014-12-04,"C","Mytilus_californianus","Nucella_canaliculata",0,0,97,NA,22.8571428571429,12.79,NA,NA
+2014-12-04,"C","Mytilus_californianus","Nucella_ostrina",0,0,25,NA,22.8571428571429,12.79,NA,NA
+2014-12-04,"C","Mytilus_trossulus","Nucella_canaliculata",0.032967032967033,3,97,57.1698382028173,2525.71428571429,12.79,2.28311968543998e-07,0.000576650800551127
+2014-12-04,"C","Mytilus_trossulus","Nucella_ostrina",0.0909090909090909,2,25,35.2060584708147,2525.71428571429,12.79,1.02236432903154e-06,0.00258220019103966
+2014-12-04,"C","Nucella_ostrina","Nucella_canaliculata",0,0,97,NA,3.8095238095238,12.79,NA,NA
+2014-12-04,"C","Nucella_ostrina","Nucella_ostrina",0,0,25,NA,3.8095238095238,12.79,NA,NA
+2014-12-04,"C","Pollicipes_polymerus","Nucella_canaliculata",0,0,97,NA,1020.95238095238,12.79,NA,NA
+2014-12-04,"C","Pollicipes_polymerus","Nucella_ostrina",0,0,25,NA,1020.95238095238,12.79,NA,NA
+2014-12-04,"C","Semibalanus_cariosus","Nucella_canaliculata",0,0,97,NA,7.6190476190476,12.79,NA,NA
+2014-12-04,"C","Semibalanus_cariosus","Nucella_ostrina",0,0,25,NA,7.6190476190476,12.79,NA,NA
+2014-12-04,"D","Adula_californiensis","Nucella_canaliculata",0,0,51,NA,0,12.79,NA,NA
+2014-12-04,"D","Adula_californiensis","Nucella_ostrina",0,0,20,NA,0,12.79,NA,NA
+2014-12-04,"D","Balanus_glandula","Nucella_canaliculata",0,0,51,NA,12773.3333333333,12.79,NA,NA
+2014-12-04,"D","Balanus_glandula","Nucella_ostrina",0.0526315789473684,1,20,70.2305195017177,12773.3333333333,12.79,5.86700248839324e-08,0.00074941178451743
+2014-12-04,"D","Chthamalus_dalli","Nucella_canaliculata",0,0,51,NA,611.809523809524,12.79,NA,NA
+2014-12-04,"D","Chthamalus_dalli","Nucella_ostrina",0,0,20,NA,611.809523809524,12.79,NA,NA
+2014-12-04,"D","Hiatella_arctica","Nucella_canaliculata",0,0,51,NA,0,12.79,NA,NA
+2014-12-04,"D","Hiatella_arctica","Nucella_ostrina",0,0,20,NA,0,12.79,NA,NA
+2014-12-04,"D","Limpets","Nucella_canaliculata",0,0,51,NA,1260.95238095238,12.79,NA,NA
+2014-12-04,"D","Limpets","Nucella_ostrina",0,0,20,NA,1260.95238095238,12.79,NA,NA
+2014-12-04,"D","Littorina_sitkana","Nucella_canaliculata",0,0,51,NA,2179.04761904762,12.79,NA,NA
+2014-12-04,"D","Littorina_sitkana","Nucella_ostrina",0,0,20,NA,2179.04761904762,12.79,NA,NA
+2014-12-04,"D","Modiolus_modiolus","Nucella_canaliculata",0,0,51,NA,0,12.79,NA,NA
+2014-12-04,"D","Modiolus_modiolus","Nucella_ostrina",0,0,20,NA,0,12.79,NA,NA
+2014-12-04,"D","Mytilus_californianus","Nucella_canaliculata",0,0,51,NA,175.238095238095,12.79,NA,NA
+2014-12-04,"D","Mytilus_californianus","Nucella_ostrina",0,0,20,NA,175.238095238095,12.79,NA,NA
+2014-12-04,"D","Mytilus_trossulus","Nucella_canaliculata",0.0625,3,51,49.3040462187872,5780.57142857143,12.79,2.19293966776866e-07,0.00126764443880844
+2014-12-04,"D","Mytilus_trossulus","Nucella_ostrina",0,0,20,NA,5780.57142857143,12.79,NA,NA
+2014-12-04,"D","Nucella_ostrina","Nucella_canaliculata",0,0,51,NA,7.6190476190476,12.79,NA,NA
+2014-12-04,"D","Nucella_ostrina","Nucella_ostrina",0,0,20,NA,7.6190476190476,12.79,NA,NA
+2014-12-04,"D","Pollicipes_polymerus","Nucella_canaliculata",0,0,51,NA,160,12.79,NA,NA
+2014-12-04,"D","Pollicipes_polymerus","Nucella_ostrina",0,0,20,NA,160,12.79,NA,NA
+2014-12-04,"D","Semibalanus_cariosus","Nucella_canaliculata",0,0,51,NA,0,12.79,NA,NA
+2014-12-04,"D","Semibalanus_cariosus","Nucella_ostrina",0,0,20,NA,0,12.79,NA,NA
+2014-12-04,"E","Adula_californiensis","Nucella_canaliculata",0,0,128,NA,0,12.79,NA,NA
+2014-12-04,"E","Adula_californiensis","Nucella_ostrina",0,0,28,NA,0,12.79,NA,NA
+2014-12-04,"E","Balanus_glandula","Nucella_canaliculata",0.0338983050847458,4,128,63.3393529588242,3154.28571428571,12.79,1.69669325141644e-07,0.000535185528446785
+2014-12-04,"E","Balanus_glandula","Nucella_ostrina",0.227272727272727,5,28,64.8219022874386,3154.28571428571,12.79,1.11153853278231e-06,0.00350611011483334
+2014-12-04,"E","Chthamalus_dalli","Nucella_canaliculata",0,0,128,NA,1900.95238095238,12.79,NA,NA
+2014-12-04,"E","Chthamalus_dalli","Nucella_ostrina",0,0,28,NA,1900.95238095238,12.79,NA,NA
+2014-12-04,"E","Hiatella_arctica","Nucella_canaliculata",0,0,128,NA,0,12.79,NA,NA
+2014-12-04,"E","Hiatella_arctica","Nucella_ostrina",0,0,28,NA,0,12.79,NA,NA
+2014-12-04,"E","Limpets","Nucella_canaliculata",0,0,128,NA,506.666666666666,12.79,NA,NA
+2014-12-04,"E","Limpets","Nucella_ostrina",0,0,28,NA,506.666666666666,12.79,NA,NA
+2014-12-04,"E","Littorina_sitkana","Nucella_canaliculata",0,0,128,NA,796.190476190478,12.79,NA,NA
+2014-12-04,"E","Littorina_sitkana","Nucella_ostrina",0,0,28,NA,796.190476190478,12.79,NA,NA
+2014-12-04,"E","Modiolus_modiolus","Nucella_canaliculata",0,0,128,NA,0,12.79,NA,NA
+2014-12-04,"E","Modiolus_modiolus","Nucella_ostrina",0,0,28,NA,0,12.79,NA,NA
+2014-12-04,"E","Mytilus_californianus","Nucella_canaliculata",0,0,128,NA,72.3809523809523,12.79,NA,NA
+2014-12-04,"E","Mytilus_californianus","Nucella_ostrina",0,0,28,NA,72.3809523809523,12.79,NA,NA
+2014-12-04,"E","Mytilus_trossulus","Nucella_canaliculata",0.0508474576271186,6,128,53.6373958245402,6335.2380952381,12.79,1.49636870758481e-07,0.000947985204081346
+2014-12-04,"E","Mytilus_trossulus","Nucella_ostrina",0.0454545454545455,1,28,29.7359660483717,6335.2380952381,12.79,2.41286112037442e-07,0.00152860496883149
+2014-12-04,"E","Nucella_ostrina","Nucella_canaliculata",0,0,128,NA,22.8571428571429,12.79,NA,NA
+2014-12-04,"E","Nucella_ostrina","Nucella_ostrina",0,0,28,NA,22.8571428571429,12.79,NA,NA
+2014-12-04,"E","Pollicipes_polymerus","Nucella_canaliculata",0,0,128,NA,613.333333333335,12.79,NA,NA
+2014-12-04,"E","Pollicipes_polymerus","Nucella_ostrina",0,0,28,NA,613.333333333335,12.79,NA,NA
+2014-12-04,"E","Semibalanus_cariosus","Nucella_canaliculata",0,0,128,NA,0,12.79,NA,NA
+2014-12-04,"E","Semibalanus_cariosus","Nucella_ostrina",0,0,28,NA,0,12.79,NA,NA
+2014-12-04,"F","Adula_californiensis","Nucella_canaliculata",0,0,26,NA,0,12.79,NA,NA
+2014-12-04,"F","Adula_californiensis","Nucella_ostrina",0,0,10,NA,0,12.79,NA,NA
+2014-12-04,"F","Balanus_glandula","Nucella_canaliculata",0,0,26,NA,13677.7142857143,12.79,NA,NA
+2014-12-04,"F","Balanus_glandula","Nucella_ostrina",0,0,10,NA,13677.7142857143,12.79,NA,NA
+2014-12-04,"F","Chthamalus_dalli","Nucella_canaliculata",0,0,26,NA,243.809523809524,12.79,NA,NA
+2014-12-04,"F","Chthamalus_dalli","Nucella_ostrina",0,0,10,NA,243.809523809524,12.79,NA,NA
+2014-12-04,"F","Hiatella_arctica","Nucella_canaliculata",0,0,26,NA,0,12.79,NA,NA
+2014-12-04,"F","Hiatella_arctica","Nucella_ostrina",0,0,10,NA,0,12.79,NA,NA
+2014-12-04,"F","Limpets","Nucella_canaliculata",0,0,26,NA,5531.42857142857,12.79,NA,NA
+2014-12-04,"F","Limpets","Nucella_ostrina",0,0,10,NA,5531.42857142857,12.79,NA,NA
+2014-12-04,"F","Littorina_sitkana","Nucella_canaliculata",0,0,26,NA,2563.80952380952,12.79,NA,NA
+2014-12-04,"F","Littorina_sitkana","Nucella_ostrina",0,0,10,NA,2563.80952380952,12.79,NA,NA
+2014-12-04,"F","Modiolus_modiolus","Nucella_canaliculata",0,0,26,NA,0,12.79,NA,NA
+2014-12-04,"F","Modiolus_modiolus","Nucella_ostrina",0,0,10,NA,0,12.79,NA,NA
+2014-12-04,"F","Mytilus_californianus","Nucella_canaliculata",0,0,26,NA,3.8095238095238,12.79,NA,NA
+2014-12-04,"F","Mytilus_californianus","Nucella_ostrina",0,0,10,NA,3.8095238095238,12.79,NA,NA
+2014-12-04,"F","Mytilus_trossulus","Nucella_canaliculata",0.130434782608696,3,26,61.5989940381985,7314.28571428571,12.79,2.89499539939307e-07,0.00211748234927036
+2014-12-04,"F","Mytilus_trossulus","Nucella_ostrina",0.111111111111111,1,10,17.1142683817594,7314.28571428571,12.79,8.87620310922141e-07,0.00649230855988766
+2014-12-04,"F","Nucella_ostrina","Nucella_canaliculata",0,0,26,NA,30.4761904761905,12.79,NA,NA
+2014-12-04,"F","Nucella_ostrina","Nucella_ostrina",0,0,10,NA,30.4761904761905,12.79,NA,NA
+2014-12-04,"F","Pollicipes_polymerus","Nucella_canaliculata",0,0,26,NA,72.3809523809523,12.79,NA,NA
+2014-12-04,"F","Pollicipes_polymerus","Nucella_ostrina",0,0,10,NA,72.3809523809523,12.79,NA,NA
+2014-12-04,"F","Semibalanus_cariosus","Nucella_canaliculata",0,0,26,NA,7.61904761904763,12.79,NA,NA
+2014-12-04,"F","Semibalanus_cariosus","Nucella_ostrina",0,0,10,NA,7.61904761904763,12.79,NA,NA
+2014-12-04,"G","Adula_californiensis","Nucella_canaliculata",0,0,98,NA,0,12.79,NA,NA
+2014-12-04,"G","Adula_californiensis","Nucella_ostrina",0,0,20,NA,0,12.79,NA,NA
+2014-12-04,"G","Balanus_glandula","Nucella_canaliculata",0,0,98,NA,38216.380952381,12.79,NA,NA
+2014-12-04,"G","Balanus_glandula","Nucella_ostrina",0.0555555555555556,1,20,51.0116321113703,38216.380952381,12.79,2.84976283578213e-08,0.00108907622156187
+2014-12-04,"G","Chthamalus_dalli","Nucella_canaliculata",0,0,98,NA,1977.14285714286,12.79,NA,NA
+2014-12-04,"G","Chthamalus_dalli","Nucella_ostrina",0.0555555555555556,1,20,9.45368168478323,1977.14285714286,12.79,2.97227144869284e-06,0.0058766052642727
+2014-12-04,"G","Hiatella_arctica","Nucella_canaliculata",0,0,98,NA,0,12.79,NA,NA
+2014-12-04,"G","Hiatella_arctica","Nucella_ostrina",0,0,20,NA,0,12.79,NA,NA
+2014-12-04,"G","Limpets","Nucella_canaliculata",0,0,98,NA,921.904761904761,12.79,NA,NA
+2014-12-04,"G","Limpets","Nucella_ostrina",0,0,20,NA,921.904761904761,12.79,NA,NA
+2014-12-04,"G","Littorina_sitkana","Nucella_canaliculata",0,0,98,NA,5074.28571428571,12.79,NA,NA
+2014-12-04,"G","Littorina_sitkana","Nucella_ostrina",0,0,20,NA,5074.28571428571,12.79,NA,NA
+2014-12-04,"G","Modiolus_modiolus","Nucella_canaliculata",0,0,98,NA,0,12.79,NA,NA
+2014-12-04,"G","Modiolus_modiolus","Nucella_ostrina",0,0,20,NA,0,12.79,NA,NA
+2014-12-04,"G","Mytilus_californianus","Nucella_canaliculata",0,0,98,NA,0,12.79,NA,NA
+2014-12-04,"G","Mytilus_californianus","Nucella_ostrina",0,0,20,NA,0,12.79,NA,NA
+2014-12-04,"G","Mytilus_trossulus","Nucella_canaliculata",0.0769230769230769,7,98,65.8067697450297,31687.619047619,12.79,3.68889646568674e-08,0.0011689234591079
+2014-12-04,"G","Mytilus_trossulus","Nucella_ostrina",0,0,20,NA,31687.619047619,12.79,NA,NA
+2014-12-04,"G","Nucella_ostrina","Nucella_canaliculata",0,0,98,NA,3.8095238095238,12.79,NA,NA
+2014-12-04,"G","Nucella_ostrina","Nucella_ostrina",0,0,20,NA,3.8095238095238,12.79,NA,NA
+2014-12-04,"G","Pollicipes_polymerus","Nucella_canaliculata",0,0,98,NA,4643.80952380953,12.79,NA,NA
+2014-12-04,"G","Pollicipes_polymerus","Nucella_ostrina",0,0,20,NA,4643.80952380953,12.79,NA,NA
+2014-12-04,"G","Semibalanus_cariosus","Nucella_canaliculata",0,0,98,NA,213.333333333333,12.79,NA,NA
+2014-12-04,"G","Semibalanus_cariosus","Nucella_ostrina",0,0,20,NA,213.333333333333,12.79,NA,NA
+2015-01-18,"A","Adula_californiensis","Nucella_canaliculata",0,0,109,NA,0,11.89,NA,NA
+2015-01-18,"A","Adula_californiensis","Nucella_ostrina",0,0,29,NA,0,11.89,NA,NA
+2015-01-18,"A","Balanus_glandula","Nucella_canaliculata",0,0,109,NA,5034.28571428571,11.89,NA,NA
+2015-01-18,"A","Balanus_glandula","Nucella_ostrina",0,0,29,NA,5034.28571428571,11.89,NA,NA
+2015-01-18,"A","Chthamalus_dalli","Nucella_canaliculata",0,0,109,NA,600,11.89,NA,NA
+2015-01-18,"A","Chthamalus_dalli","Nucella_ostrina",0.115384615384615,3,29,23.3591042350508,600,11.89,8.23266553257341e-06,0.00493959931954404
+2015-01-18,"A","Hiatella_arctica","Nucella_canaliculata",0,0,109,NA,0,11.89,NA,NA
+2015-01-18,"A","Hiatella_arctica","Nucella_ostrina",0,0,29,NA,0,11.89,NA,NA
+2015-01-18,"A","Limpets","Nucella_canaliculata",0,0,109,NA,765.714285714288,11.89,NA,NA
+2015-01-18,"A","Limpets","Nucella_ostrina",0,0,29,NA,765.714285714288,11.89,NA,NA
+2015-01-18,"A","Littorina_sitkana","Nucella_canaliculata",0,0,109,NA,148.571428571428,11.89,NA,NA
+2015-01-18,"A","Littorina_sitkana","Nucella_ostrina",0,0,29,NA,148.571428571428,11.89,NA,NA
+2015-01-18,"A","Modiolus_modiolus","Nucella_canaliculata",0,0,109,NA,0,11.89,NA,NA
+2015-01-18,"A","Modiolus_modiolus","Nucella_ostrina",0,0,29,NA,0,11.89,NA,NA
+2015-01-18,"A","Mytilus_californianus","Nucella_canaliculata",0,0,109,NA,0,11.89,NA,NA
+2015-01-18,"A","Mytilus_californianus","Nucella_ostrina",0,0,29,NA,0,11.89,NA,NA
+2015-01-18,"A","Mytilus_trossulus","Nucella_canaliculata",0.00925925925925926,1,109,38.5708694447123,2645.71428571429,11.89,9.07347973427129e-08,0.000240058349541006
+2015-01-18,"A","Mytilus_trossulus","Nucella_ostrina",0,0,29,NA,2645.71428571429,11.89,NA,NA
+2015-01-18,"A","Nucella_ostrina","Nucella_canaliculata",0,0,109,NA,5.7142857142857,11.89,NA,NA
+2015-01-18,"A","Nucella_ostrina","Nucella_ostrina",0,0,29,NA,5.7142857142857,11.89,NA,NA
+2015-01-18,"A","Pollicipes_polymerus","Nucella_canaliculata",0,0,109,NA,577.142857142858,11.89,NA,NA
+2015-01-18,"A","Pollicipes_polymerus","Nucella_ostrina",0,0,29,NA,577.142857142858,11.89,NA,NA
+2015-01-18,"A","Semibalanus_cariosus","Nucella_canaliculata",0,0,109,NA,17.1428571428571,11.89,NA,NA
+2015-01-18,"A","Semibalanus_cariosus","Nucella_ostrina",0,0,29,NA,17.1428571428571,11.89,NA,NA
+2015-01-18,"AB","Adula_californiensis","Nucella_canaliculata",0,0,25,NA,0,11.89,NA,NA
+2015-01-18,"AB","Adula_californiensis","Nucella_ostrina",0,0,42,NA,0,11.89,NA,NA
+2015-01-18,"AB","Balanus_glandula","Nucella_canaliculata",0,0,25,NA,10533.3333333333,11.89,NA,NA
+2015-01-18,"AB","Balanus_glandula","Nucella_ostrina",0,0,42,NA,10533.3333333333,11.89,NA,NA
+2015-01-18,"AB","Chthamalus_dalli","Nucella_canaliculata",0,0,25,NA,2028.19047619048,11.89,NA,NA
+2015-01-18,"AB","Chthamalus_dalli","Nucella_ostrina",0,0,42,NA,2028.19047619048,11.89,NA,NA
+2015-01-18,"AB","Hiatella_arctica","Nucella_canaliculata",0,0,25,NA,0,11.89,NA,NA
+2015-01-18,"AB","Hiatella_arctica","Nucella_ostrina",0,0,42,NA,0,11.89,NA,NA
+2015-01-18,"AB","Limpets","Nucella_canaliculata",0,0,25,NA,841.904761904761,11.89,NA,NA
+2015-01-18,"AB","Limpets","Nucella_ostrina",0,0,42,NA,841.904761904761,11.89,NA,NA
+2015-01-18,"AB","Littorina_sitkana","Nucella_canaliculata",0,0,25,NA,849.52380952381,11.89,NA,NA
+2015-01-18,"AB","Littorina_sitkana","Nucella_ostrina",0,0,42,NA,849.52380952381,11.89,NA,NA
+2015-01-18,"AB","Modiolus_modiolus","Nucella_canaliculata",0,0,25,NA,0,11.89,NA,NA
+2015-01-18,"AB","Modiolus_modiolus","Nucella_ostrina",0,0,42,NA,0,11.89,NA,NA
+2015-01-18,"AB","Mytilus_californianus","Nucella_canaliculata",0,0,25,NA,321.52380952381,11.89,NA,NA
+2015-01-18,"AB","Mytilus_californianus","Nucella_ostrina",0,0,42,NA,321.52380952381,11.89,NA,NA
+2015-01-18,"AB","Mytilus_trossulus","Nucella_canaliculata",0.0869565217391304,2,25,42.9899689398557,16710.8571428571,11.89,1.21042058739463e-07,0.00202271655187249
+2015-01-18,"AB","Mytilus_trossulus","Nucella_ostrina",0.024390243902439,1,42,43.3000681418713,16710.8571428571,11.89,3.37076780271622e-08,0.000563284192129332
+2015-01-18,"AB","Nucella_ostrina","Nucella_canaliculata",0,0,25,NA,7.61904761904763,11.89,NA,NA
+2015-01-18,"AB","Nucella_ostrina","Nucella_ostrina",0,0,42,NA,7.61904761904763,11.89,NA,NA
+2015-01-18,"AB","Pollicipes_polymerus","Nucella_canaliculata",0,0,25,NA,2986.66666666667,11.89,NA,NA
+2015-01-18,"AB","Pollicipes_polymerus","Nucella_ostrina",0,0,42,NA,2986.66666666667,11.89,NA,NA
+2015-01-18,"AB","Semibalanus_cariosus","Nucella_canaliculata",0,0,25,NA,38.0952380952381,11.89,NA,NA
+2015-01-18,"AB","Semibalanus_cariosus","Nucella_ostrina",0,0,42,NA,38.0952380952381,11.89,NA,NA
+2015-01-18,"AC","Adula_californiensis","Nucella_canaliculata",0,0,17,NA,0,11.89,NA,NA
+2015-01-18,"AC","Adula_californiensis","Nucella_ostrina",0,0,31,NA,0,11.89,NA,NA
+2015-01-18,"AC","Balanus_glandula","Nucella_canaliculata",0,0,17,NA,28700.1904761905,11.89,NA,NA
+2015-01-18,"AC","Balanus_glandula","Nucella_ostrina",0.0689655172413793,2,31,36.7366375960981,28700.1904761905,11.89,6.54105520828738e-08,0.00187729530393125
+2015-01-18,"AC","Chthamalus_dalli","Nucella_canaliculata",0,0,17,NA,736.761904761905,11.89,NA,NA
+2015-01-18,"AC","Chthamalus_dalli","Nucella_ostrina",0,0,31,NA,736.761904761905,11.89,NA,NA
+2015-01-18,"AC","Hiatella_arctica","Nucella_canaliculata",0,0,17,NA,0,11.89,NA,NA
+2015-01-18,"AC","Hiatella_arctica","Nucella_ostrina",0,0,31,NA,0,11.89,NA,NA
+2015-01-18,"AC","Limpets","Nucella_canaliculata",0,0,17,NA,784.761904761904,11.89,NA,NA
+2015-01-18,"AC","Limpets","Nucella_ostrina",0,0,31,NA,784.761904761904,11.89,NA,NA
+2015-01-18,"AC","Littorina_sitkana","Nucella_canaliculata",0,0,17,NA,5619.04761904762,11.89,NA,NA
+2015-01-18,"AC","Littorina_sitkana","Nucella_ostrina",0,0,31,NA,5619.04761904762,11.89,NA,NA
+2015-01-18,"AC","Modiolus_modiolus","Nucella_canaliculata",0,0,17,NA,0,11.89,NA,NA
+2015-01-18,"AC","Modiolus_modiolus","Nucella_ostrina",0,0,31,NA,0,11.89,NA,NA
+2015-01-18,"AC","Mytilus_californianus","Nucella_canaliculata",0,0,17,NA,38.095238095238,11.89,NA,NA
+2015-01-18,"AC","Mytilus_californianus","Nucella_ostrina",0,0,31,NA,38.095238095238,11.89,NA,NA
+2015-01-18,"AC","Mytilus_trossulus","Nucella_canaliculata",0,0,17,NA,5036.19047619048,11.89,NA,NA
+2015-01-18,"AC","Mytilus_trossulus","Nucella_ostrina",0,0,31,NA,5036.19047619048,11.89,NA,NA
+2015-01-18,"AC","Nucella_ostrina","Nucella_canaliculata",0,0,17,NA,15.2380952380952,11.89,NA,NA
+2015-01-18,"AC","Nucella_ostrina","Nucella_ostrina",0,0,31,NA,15.2380952380952,11.89,NA,NA
+2015-01-18,"AC","Pollicipes_polymerus","Nucella_canaliculata",0,0,17,NA,247.619047619048,11.89,NA,NA
+2015-01-18,"AC","Pollicipes_polymerus","Nucella_ostrina",0,0,31,NA,247.619047619048,11.89,NA,NA
+2015-01-18,"AC","Semibalanus_cariosus","Nucella_canaliculata",0,0,17,NA,3.8095238095238,11.89,NA,NA
+2015-01-18,"AC","Semibalanus_cariosus","Nucella_ostrina",0,0,31,NA,3.8095238095238,11.89,NA,NA
+2015-01-18,"AD","Adula_californiensis","Nucella_canaliculata",0,0,58,NA,0,11.89,NA,NA
+2015-01-18,"AD","Adula_californiensis","Nucella_ostrina",0,0,24,NA,0,11.89,NA,NA
+2015-01-18,"AD","Balanus_glandula","Nucella_canaliculata",0.0175438596491228,1,58,84.7337387459957,3657.14285714286,11.89,5.66143922574609e-08,0.000207046920255857
+2015-01-18,"AD","Balanus_glandula","Nucella_ostrina",0,0,24,NA,3657.14285714286,11.89,NA,NA
+2015-01-18,"AD","Chthamalus_dalli","Nucella_canaliculata",0,0,58,NA,590.476190476191,11.89,NA,NA
+2015-01-18,"AD","Chthamalus_dalli","Nucella_ostrina",0,0,24,NA,590.476190476191,11.89,NA,NA
+2015-01-18,"AD","Hiatella_arctica","Nucella_canaliculata",0,0,58,NA,0,11.89,NA,NA
+2015-01-18,"AD","Hiatella_arctica","Nucella_ostrina",0,0,24,NA,0,11.89,NA,NA
+2015-01-18,"AD","Limpets","Nucella_canaliculata",0,0,58,NA,1779.04761904762,11.89,NA,NA
+2015-01-18,"AD","Limpets","Nucella_ostrina",0,0,24,NA,1779.04761904762,11.89,NA,NA
+2015-01-18,"AD","Littorina_sitkana","Nucella_canaliculata",0,0,58,NA,742.857142857143,11.89,NA,NA
+2015-01-18,"AD","Littorina_sitkana","Nucella_ostrina",0,0,24,NA,742.857142857143,11.89,NA,NA
+2015-01-18,"AD","Modiolus_modiolus","Nucella_canaliculata",0,0,58,NA,0,11.89,NA,NA
+2015-01-18,"AD","Modiolus_modiolus","Nucella_ostrina",0,0,24,NA,0,11.89,NA,NA
+2015-01-18,"AD","Mytilus_californianus","Nucella_canaliculata",0,0,58,NA,53.3333333333334,11.89,NA,NA
+2015-01-18,"AD","Mytilus_californianus","Nucella_ostrina",0,0,24,NA,53.3333333333334,11.89,NA,NA
+2015-01-18,"AD","Mytilus_trossulus","Nucella_canaliculata",0,0,58,NA,6720,11.89,NA,NA
+2015-01-18,"AD","Mytilus_trossulus","Nucella_ostrina",0,0,24,NA,6720,11.89,NA,NA
+2015-01-18,"AD","Nucella_ostrina","Nucella_canaliculata",0,0,58,NA,38.0952380952381,11.89,NA,NA
+2015-01-18,"AD","Nucella_ostrina","Nucella_ostrina",0,0,24,NA,38.0952380952381,11.89,NA,NA
+2015-01-18,"AD","Pollicipes_polymerus","Nucella_canaliculata",0,0,58,NA,666.666666666666,11.89,NA,NA
+2015-01-18,"AD","Pollicipes_polymerus","Nucella_ostrina",0,0,24,NA,666.666666666666,11.89,NA,NA
+2015-01-18,"AD","Semibalanus_cariosus","Nucella_canaliculata",0,0,58,NA,19.047619047619,11.89,NA,NA
+2015-01-18,"AD","Semibalanus_cariosus","Nucella_ostrina",0,0,24,NA,19.047619047619,11.89,NA,NA
+2015-01-18,"AE","Adula_californiensis","Nucella_canaliculata",0,0,16,NA,0,11.89,NA,NA
+2015-01-18,"AE","Adula_californiensis","Nucella_ostrina",0,0,31,NA,0,11.89,NA,NA
+2015-01-18,"AE","Balanus_glandula","Nucella_canaliculata",0,0,16,NA,12294.0952380952,11.89,NA,NA
+2015-01-18,"AE","Balanus_glandula","Nucella_ostrina",0.0740740740740741,2,31,46.0793109768777,12294.0952380952,11.89,1.30756618848824e-07,0.00160753432513876
+2015-01-18,"AE","Chthamalus_dalli","Nucella_canaliculata",0,0,16,NA,1806.47619047619,11.89,NA,NA
+2015-01-18,"AE","Chthamalus_dalli","Nucella_ostrina",0.037037037037037,1,31,15.4745434099238,1806.47619047619,11.89,1.32490930528746e-06,0.00239341711454214
+2015-01-18,"AE","Hiatella_arctica","Nucella_canaliculata",0,0,16,NA,0,11.89,NA,NA
+2015-01-18,"AE","Hiatella_arctica","Nucella_ostrina",0,0,31,NA,0,11.89,NA,NA
+2015-01-18,"AE","Limpets","Nucella_canaliculata",0,0,16,NA,1607.61904761905,11.89,NA,NA
+2015-01-18,"AE","Limpets","Nucella_ostrina",0,0,31,NA,1607.61904761905,11.89,NA,NA
+2015-01-18,"AE","Littorina_sitkana","Nucella_canaliculata",0,0,16,NA,1900.95238095238,11.89,NA,NA
+2015-01-18,"AE","Littorina_sitkana","Nucella_ostrina",0,0,31,NA,1900.95238095238,11.89,NA,NA
+2015-01-18,"AE","Modiolus_modiolus","Nucella_canaliculata",0,0,16,NA,0,11.89,NA,NA
+2015-01-18,"AE","Modiolus_modiolus","Nucella_ostrina",0,0,31,NA,0,11.89,NA,NA
+2015-01-18,"AE","Mytilus_californianus","Nucella_canaliculata",0,0,16,NA,297.142857142857,11.89,NA,NA
+2015-01-18,"AE","Mytilus_californianus","Nucella_ostrina",0,0,31,NA,297.142857142857,11.89,NA,NA
+2015-01-18,"AE","Mytilus_trossulus","Nucella_canaliculata",0,0,16,NA,8236.19047619048,11.89,NA,NA
+2015-01-18,"AE","Mytilus_trossulus","Nucella_ostrina",0.037037037037037,1,31,36.1317495623531,8236.19047619048,11.89,1.24457439706751e-07,0.00102505517960379
+2015-01-18,"AE","Nucella_ostrina","Nucella_canaliculata",0,0,16,NA,22.8571428571428,11.89,NA,NA
+2015-01-18,"AE","Nucella_ostrina","Nucella_ostrina",0,0,31,NA,22.8571428571428,11.89,NA,NA
+2015-01-18,"AE","Pollicipes_polymerus","Nucella_canaliculata",0,0,16,NA,186.666666666667,11.89,NA,NA
+2015-01-18,"AE","Pollicipes_polymerus","Nucella_ostrina",0,0,31,NA,186.666666666667,11.89,NA,NA
+2015-01-18,"AE","Semibalanus_cariosus","Nucella_canaliculata",0,0,16,NA,57.1428571428572,11.89,NA,NA
+2015-01-18,"AE","Semibalanus_cariosus","Nucella_ostrina",0,0,31,NA,57.1428571428572,11.89,NA,NA
+2015-01-18,"AF","Adula_californiensis","Nucella_canaliculata",0,0,29,NA,0,11.89,NA,NA
+2015-01-18,"AF","Adula_californiensis","Nucella_ostrina",0,0,25,NA,0,11.89,NA,NA
+2015-01-18,"AF","Balanus_glandula","Nucella_canaliculata",0.0740740740740741,2,29,48.6304046380348,20183.6190476191,11.89,7.54673860596027e-08,0.00152320497074662
+2015-01-18,"AF","Balanus_glandula","Nucella_ostrina",0.0434782608695652,1,25,57.9987317822723,20183.6190476191,11.89,3.71410883829936e-08,0.000749641578936294
+2015-01-18,"AF","Chthamalus_dalli","Nucella_canaliculata",0,0,29,NA,515.809523809524,11.89,NA,NA
+2015-01-18,"AF","Chthamalus_dalli","Nucella_ostrina",0,0,25,NA,515.809523809524,11.89,NA,NA
+2015-01-18,"AF","Hiatella_arctica","Nucella_canaliculata",0,0,29,NA,0,11.89,NA,NA
+2015-01-18,"AF","Hiatella_arctica","Nucella_ostrina",0,0,25,NA,0,11.89,NA,NA
+2015-01-18,"AF","Limpets","Nucella_canaliculata",0,0,29,NA,560.000000000001,11.89,NA,NA
+2015-01-18,"AF","Limpets","Nucella_ostrina",0,0,25,NA,560.000000000001,11.89,NA,NA
+2015-01-18,"AF","Littorina_sitkana","Nucella_canaliculata",0,0,29,NA,777.142857142858,11.89,NA,NA
+2015-01-18,"AF","Littorina_sitkana","Nucella_ostrina",0,0,25,NA,777.142857142858,11.89,NA,NA
+2015-01-18,"AF","Modiolus_modiolus","Nucella_canaliculata",0,0,29,NA,0,11.89,NA,NA
+2015-01-18,"AF","Modiolus_modiolus","Nucella_ostrina",0,0,25,NA,0,11.89,NA,NA
+2015-01-18,"AF","Mytilus_californianus","Nucella_canaliculata",0,0,29,NA,0,11.89,NA,NA
+2015-01-18,"AF","Mytilus_californianus","Nucella_ostrina",0,0,25,NA,0,11.89,NA,NA
+2015-01-18,"AF","Mytilus_trossulus","Nucella_canaliculata",0,0,29,NA,6761.90476190476,11.89,NA,NA
+2015-01-18,"AF","Mytilus_trossulus","Nucella_ostrina",0.0434782608695652,1,25,40.5618862280896,6761.90476190476,11.89,1.5852033146505e-07,0.00107189938419225
+2015-01-18,"AF","Nucella_ostrina","Nucella_canaliculata",0,0,29,NA,3.8095238095238,11.89,NA,NA
+2015-01-18,"AF","Nucella_ostrina","Nucella_ostrina",0,0,25,NA,3.8095238095238,11.89,NA,NA
+2015-01-18,"AF","Pollicipes_polymerus","Nucella_canaliculata",0,0,29,NA,22.8571428571429,11.89,NA,NA
+2015-01-18,"AF","Pollicipes_polymerus","Nucella_ostrina",0,0,25,NA,22.8571428571429,11.89,NA,NA
+2015-01-18,"AF","Semibalanus_cariosus","Nucella_canaliculata",0,0,29,NA,3.8095238095238,11.89,NA,NA
+2015-01-18,"AF","Semibalanus_cariosus","Nucella_ostrina",0,0,25,NA,3.8095238095238,11.89,NA,NA
+2015-01-18,"AG","Adula_californiensis","Nucella_canaliculata",0,0,26,NA,0,11.89,NA,NA
+2015-01-18,"AG","Adula_californiensis","Nucella_ostrina",0,0,73,NA,0,11.89,NA,NA
+2015-01-18,"AG","Balanus_glandula","Nucella_canaliculata",0,0,26,NA,9331.42857142857,11.89,NA,NA
+2015-01-18,"AG","Balanus_glandula","Nucella_ostrina",0.028169014084507,2,73,101.979412131387,9331.42857142857,11.89,2.96013151585073e-08,0.000276222558021956
+2015-01-18,"AG","Chthamalus_dalli","Nucella_canaliculata",0,0,26,NA,108.571428571428,11.89,NA,NA
+2015-01-18,"AG","Chthamalus_dalli","Nucella_ostrina",0,0,73,NA,108.571428571428,11.89,NA,NA
+2015-01-18,"AG","Hiatella_arctica","Nucella_canaliculata",0,0,26,NA,0,11.89,NA,NA
+2015-01-18,"AG","Hiatella_arctica","Nucella_ostrina",0,0,73,NA,0,11.89,NA,NA
+2015-01-18,"AG","Limpets","Nucella_canaliculata",0,0,26,NA,531.428571428572,11.89,NA,NA
+2015-01-18,"AG","Limpets","Nucella_ostrina",0,0,73,NA,531.428571428572,11.89,NA,NA
+2015-01-18,"AG","Littorina_sitkana","Nucella_canaliculata",0,0,26,NA,1474.28571428571,11.89,NA,NA
+2015-01-18,"AG","Littorina_sitkana","Nucella_ostrina",0,0,73,NA,1474.28571428571,11.89,NA,NA
+2015-01-18,"AG","Modiolus_modiolus","Nucella_canaliculata",0,0,26,NA,0,11.89,NA,NA
+2015-01-18,"AG","Modiolus_modiolus","Nucella_ostrina",0,0,73,NA,0,11.89,NA,NA
+2015-01-18,"AG","Mytilus_californianus","Nucella_canaliculata",0,0,26,NA,0,11.89,NA,NA
+2015-01-18,"AG","Mytilus_californianus","Nucella_ostrina",0,0,73,NA,0,11.89,NA,NA
+2015-01-18,"AG","Mytilus_trossulus","Nucella_canaliculata",0.0833333333333333,2,26,53.5692626316512,9594.28571428571,11.89,1.62140100565872e-07,0.00155561845057199
+2015-01-18,"AG","Mytilus_trossulus","Nucella_ostrina",0,0,73,NA,9594.28571428571,11.89,NA,NA
+2015-01-18,"AG","Nucella_ostrina","Nucella_canaliculata",0,0,26,NA,28.5714285714286,11.89,NA,NA
+2015-01-18,"AG","Nucella_ostrina","Nucella_ostrina",0,0,73,NA,28.5714285714286,11.89,NA,NA
+2015-01-18,"AG","Pollicipes_polymerus","Nucella_canaliculata",0,0,26,NA,485.714285714286,11.89,NA,NA
+2015-01-18,"AG","Pollicipes_polymerus","Nucella_ostrina",0,0,73,NA,485.714285714286,11.89,NA,NA
+2015-01-18,"AG","Semibalanus_cariosus","Nucella_canaliculata",0,0,26,NA,5.7142857142857,11.89,NA,NA
+2015-01-18,"AG","Semibalanus_cariosus","Nucella_ostrina",0,0,73,NA,5.7142857142857,11.89,NA,NA
+2015-01-18,"B","Adula_californiensis","Nucella_canaliculata",0,0,70,NA,0,11.89,NA,NA
+2015-01-18,"B","Adula_californiensis","Nucella_ostrina",0,0,15,NA,0,11.89,NA,NA
+2015-01-18,"B","Balanus_glandula","Nucella_canaliculata",0.0151515151515152,1,70,65.1132079359168,2354.28571428571,11.89,9.88388775670001e-08,0.000232694957472023
+2015-01-18,"B","Balanus_glandula","Nucella_ostrina",0,0,15,NA,2354.28571428571,11.89,NA,NA
+2015-01-18,"B","Chthamalus_dalli","Nucella_canaliculata",0.0151515151515152,1,70,19.2042558843725,163.809523809524,11.89,4.81636545277474e-06,0.000788966531311672
+2015-01-18,"B","Chthamalus_dalli","Nucella_ostrina",0,0,15,NA,163.809523809524,11.89,NA,NA
+2015-01-18,"B","Hiatella_arctica","Nucella_canaliculata",0,0,70,NA,0,11.89,NA,NA
+2015-01-18,"B","Hiatella_arctica","Nucella_ostrina",0,0,15,NA,0,11.89,NA,NA
+2015-01-18,"B","Limpets","Nucella_canaliculata",0,0,70,NA,1238.09523809524,11.89,NA,NA
+2015-01-18,"B","Limpets","Nucella_ostrina",0,0,15,NA,1238.09523809524,11.89,NA,NA
+2015-01-18,"B","Littorina_sitkana","Nucella_canaliculata",0,0,70,NA,3.8095238095238,11.89,NA,NA
+2015-01-18,"B","Littorina_sitkana","Nucella_ostrina",0,0,15,NA,3.8095238095238,11.89,NA,NA
+2015-01-18,"B","Modiolus_modiolus","Nucella_canaliculata",0,0,70,NA,0,11.89,NA,NA
+2015-01-18,"B","Modiolus_modiolus","Nucella_ostrina",0,0,15,NA,0,11.89,NA,NA
+2015-01-18,"B","Mytilus_californianus","Nucella_canaliculata",0,0,70,NA,0,11.89,NA,NA
+2015-01-18,"B","Mytilus_californianus","Nucella_ostrina",0,0,15,NA,0,11.89,NA,NA
+2015-01-18,"B","Mytilus_trossulus","Nucella_canaliculata",0.0303030303030303,2,70,37.6593879986829,3729.52380952381,11.89,2.15754279149676e-07,0.000804660721095365
+2015-01-18,"B","Mytilus_trossulus","Nucella_ostrina",0.25,3,15,39.7415917730905,3729.52380952381,11.89,1.68671367763627e-06,0.00629063882059394
+2015-01-18,"B","Nucella_ostrina","Nucella_canaliculata",0,0,70,NA,0,11.89,NA,NA
+2015-01-18,"B","Nucella_ostrina","Nucella_ostrina",0,0,15,NA,0,11.89,NA,NA
+2015-01-18,"B","Pollicipes_polymerus","Nucella_canaliculata",0,0,70,NA,1291.42857142857,11.89,NA,NA
+2015-01-18,"B","Pollicipes_polymerus","Nucella_ostrina",0,0,15,NA,1291.42857142857,11.89,NA,NA
+2015-01-18,"B","Semibalanus_cariosus","Nucella_canaliculata",0,0,70,NA,3.8095238095238,11.89,NA,NA
+2015-01-18,"B","Semibalanus_cariosus","Nucella_ostrina",0,0,15,NA,3.8095238095238,11.89,NA,NA
+2015-01-18,"BB","Adula_californiensis","Nucella_canaliculata",0,0,32,NA,0,11.89,NA,NA
+2015-01-18,"BB","Adula_californiensis","Nucella_ostrina",0,0,76,NA,0,11.89,NA,NA
+2015-01-18,"BB","Balanus_glandula","Nucella_canaliculata",0.032258064516129,1,32,78.2907706805154,8844.19047619048,11.89,4.65875262652897e-08,0.000412028956104749
+2015-01-18,"BB","Balanus_glandula","Nucella_ostrina",0.0571428571428571,4,76,82.150624784418,8844.19047619048,11.89,7.86489616355842e-08,0.000695586397459704
+2015-01-18,"BB","Chthamalus_dalli","Nucella_canaliculata",0,0,32,NA,194.285714285714,11.89,NA,NA
+2015-01-18,"BB","Chthamalus_dalli","Nucella_ostrina",0,0,76,NA,194.285714285714,11.89,NA,NA
+2015-01-18,"BB","Hiatella_arctica","Nucella_canaliculata",0,0,32,NA,0,11.89,NA,NA
+2015-01-18,"BB","Hiatella_arctica","Nucella_ostrina",0,0,76,NA,0,11.89,NA,NA
+2015-01-18,"BB","Limpets","Nucella_canaliculata",0,0,32,NA,327.619047619048,11.89,NA,NA
+2015-01-18,"BB","Limpets","Nucella_ostrina",0,0,76,NA,327.619047619048,11.89,NA,NA
+2015-01-18,"BB","Littorina_sitkana","Nucella_canaliculata",0,0,32,NA,1356.19047619048,11.89,NA,NA
+2015-01-18,"BB","Littorina_sitkana","Nucella_ostrina",0,0,76,NA,1356.19047619048,11.89,NA,NA
+2015-01-18,"BB","Modiolus_modiolus","Nucella_canaliculata",0,0,32,NA,0,11.89,NA,NA
+2015-01-18,"BB","Modiolus_modiolus","Nucella_ostrina",0,0,76,NA,0,11.89,NA,NA
+2015-01-18,"BB","Mytilus_californianus","Nucella_canaliculata",0,0,32,NA,0,11.89,NA,NA
+2015-01-18,"BB","Mytilus_californianus","Nucella_ostrina",0,0,76,NA,0,11.89,NA,NA
+2015-01-18,"BB","Mytilus_trossulus","Nucella_canaliculata",0,0,32,NA,6232.38095238095,11.89,NA,NA
+2015-01-18,"BB","Mytilus_trossulus","Nucella_ostrina",0.0285714285714286,2,76,47.223741871898,6232.38095238095,11.89,9.70772729250342e-08,0.00060502254668707
+2015-01-18,"BB","Nucella_ostrina","Nucella_canaliculata",0,0,32,NA,22.8571428571428,11.89,NA,NA
+2015-01-18,"BB","Nucella_ostrina","Nucella_ostrina",0,0,76,NA,22.8571428571428,11.89,NA,NA
+2015-01-18,"BB","Pollicipes_polymerus","Nucella_canaliculata",0,0,32,NA,0,11.89,NA,NA
+2015-01-18,"BB","Pollicipes_polymerus","Nucella_ostrina",0,0,76,NA,0,11.89,NA,NA
+2015-01-18,"BB","Semibalanus_cariosus","Nucella_canaliculata",0,0,32,NA,3.8095238095238,11.89,NA,NA
+2015-01-18,"BB","Semibalanus_cariosus","Nucella_ostrina",0,0,76,NA,3.8095238095238,11.89,NA,NA
+2015-01-18,"BC","Adula_californiensis","Nucella_canaliculata",0,0,58,NA,0,11.89,NA,NA
+2015-01-18,"BC","Adula_californiensis","Nucella_ostrina",0,0,51,NA,0,11.89,NA,NA
+2015-01-18,"BC","Balanus_glandula","Nucella_canaliculata",0.0363636363636364,2,58,52.1680241112555,10292.5714285714,11.89,6.77234429213469e-08,0.000697048373656742
+2015-01-18,"BC","Balanus_glandula","Nucella_ostrina",0.0212765957446809,1,51,72.8854789109501,10292.5714285714,11.89,2.83620253395177e-08,0.000291918171665938
+2015-01-18,"BC","Chthamalus_dalli","Nucella_canaliculata",0,0,58,NA,220.952380952381,11.89,NA,NA
+2015-01-18,"BC","Chthamalus_dalli","Nucella_ostrina",0.0212765957446809,1,51,19.2042558843725,220.952380952381,11.89,5.01424987343167e-06,0.0011079104482249
+2015-01-18,"BC","Hiatella_arctica","Nucella_canaliculata",0,0,58,NA,0,11.89,NA,NA
+2015-01-18,"BC","Hiatella_arctica","Nucella_ostrina",0,0,51,NA,0,11.89,NA,NA
+2015-01-18,"BC","Limpets","Nucella_canaliculata",0,0,58,NA,605.714285714286,11.89,NA,NA
+2015-01-18,"BC","Limpets","Nucella_ostrina",0,0,51,NA,605.714285714286,11.89,NA,NA
+2015-01-18,"BC","Littorina_sitkana","Nucella_canaliculata",0,0,58,NA,2019.04761904762,11.89,NA,NA
+2015-01-18,"BC","Littorina_sitkana","Nucella_ostrina",0,0,51,NA,2019.04761904762,11.89,NA,NA
+2015-01-18,"BC","Modiolus_modiolus","Nucella_canaliculata",0,0,58,NA,0,11.89,NA,NA
+2015-01-18,"BC","Modiolus_modiolus","Nucella_ostrina",0,0,51,NA,0,11.89,NA,NA
+2015-01-18,"BC","Mytilus_californianus","Nucella_canaliculata",0,0,58,NA,0,11.89,NA,NA
+2015-01-18,"BC","Mytilus_californianus","Nucella_ostrina",0,0,51,NA,0,11.89,NA,NA
+2015-01-18,"BC","Mytilus_trossulus","Nucella_canaliculata",0.0181818181818182,1,58,65.1881847078192,6099.04761904762,11.89,4.57305472872736e-08,0.00027891278555019
+2015-01-18,"BC","Mytilus_trossulus","Nucella_ostrina",0.0425531914893617,2,51,41.0323171888051,6099.04761904762,11.89,1.7003724911896e-07,0.0010370652793884
+2015-01-18,"BC","Nucella_ostrina","Nucella_canaliculata",0,0,58,NA,11.4285714285714,11.89,NA,NA
+2015-01-18,"BC","Nucella_ostrina","Nucella_ostrina",0,0,51,NA,11.4285714285714,11.89,NA,NA
+2015-01-18,"BC","Pollicipes_polymerus","Nucella_canaliculata",0,0,58,NA,0,11.89,NA,NA
+2015-01-18,"BC","Pollicipes_polymerus","Nucella_ostrina",0,0,51,NA,0,11.89,NA,NA
+2015-01-18,"BC","Semibalanus_cariosus","Nucella_canaliculata",0,0,58,NA,0,11.89,NA,NA
+2015-01-18,"BC","Semibalanus_cariosus","Nucella_ostrina",0,0,51,NA,0,11.89,NA,NA
+2015-01-18,"BD","Adula_californiensis","Nucella_canaliculata",0,0,97,NA,0,11.89,NA,NA
+2015-01-18,"BD","Adula_californiensis","Nucella_ostrina",0,0,30,NA,0,11.89,NA,NA
+2015-01-18,"BD","Balanus_glandula","Nucella_canaliculata",0,0,97,NA,12617.1428571429,11.89,NA,NA
+2015-01-18,"BD","Balanus_glandula","Nucella_ostrina",0,0,30,NA,12617.1428571429,11.89,NA,NA
+2015-01-18,"BD","Chthamalus_dalli","Nucella_canaliculata",0,0,97,NA,270.47619047619,11.89,NA,NA
+2015-01-18,"BD","Chthamalus_dalli","Nucella_ostrina",0,0,30,NA,270.47619047619,11.89,NA,NA
+2015-01-18,"BD","Hiatella_arctica","Nucella_canaliculata",0,0,97,NA,0,11.89,NA,NA
+2015-01-18,"BD","Hiatella_arctica","Nucella_ostrina",0,0,30,NA,0,11.89,NA,NA
+2015-01-18,"BD","Limpets","Nucella_canaliculata",0,0,97,NA,1950.47619047619,11.89,NA,NA
+2015-01-18,"BD","Limpets","Nucella_ostrina",0,0,30,NA,1950.47619047619,11.89,NA,NA
+2015-01-18,"BD","Littorina_sitkana","Nucella_canaliculata",0,0,97,NA,979.047619047618,11.89,NA,NA
+2015-01-18,"BD","Littorina_sitkana","Nucella_ostrina",0,0,30,NA,979.047619047618,11.89,NA,NA
+2015-01-18,"BD","Modiolus_modiolus","Nucella_canaliculata",0,0,97,NA,0,11.89,NA,NA
+2015-01-18,"BD","Modiolus_modiolus","Nucella_ostrina",0,0,30,NA,0,11.89,NA,NA
+2015-01-18,"BD","Mytilus_californianus","Nucella_canaliculata",0,0,97,NA,106.666666666667,11.89,NA,NA
+2015-01-18,"BD","Mytilus_californianus","Nucella_ostrina",0,0,30,NA,106.666666666667,11.89,NA,NA
+2015-01-18,"BD","Mytilus_trossulus","Nucella_canaliculata",0.0319148936170213,3,97,45.2060218009244,23553.5238095238,11.89,2.9973759646786e-08,0.000705987661501518
+2015-01-18,"BD","Mytilus_trossulus","Nucella_ostrina",0.0714285714285714,2,30,38.6420467730054,23553.5238095238,11.89,7.84794502172005e-08,0.00184846759924917
+2015-01-18,"BD","Nucella_ostrina","Nucella_canaliculata",0,0,97,NA,15.2380952380953,11.89,NA,NA
+2015-01-18,"BD","Nucella_ostrina","Nucella_ostrina",0,0,30,NA,15.2380952380953,11.89,NA,NA
+2015-01-18,"BD","Pollicipes_polymerus","Nucella_canaliculata",0,0,97,NA,12327.619047619,11.89,NA,NA
+2015-01-18,"BD","Pollicipes_polymerus","Nucella_ostrina",0,0,30,NA,12327.619047619,11.89,NA,NA
+2015-01-18,"BD","Semibalanus_cariosus","Nucella_canaliculata",0,0,97,NA,34.2857142857143,11.89,NA,NA
+2015-01-18,"BD","Semibalanus_cariosus","Nucella_ostrina",0,0,30,NA,34.2857142857143,11.89,NA,NA
+2015-01-18,"BE","Adula_californiensis","Nucella_canaliculata",0,0,17,NA,0,11.89,NA,NA
+2015-01-18,"BE","Adula_californiensis","Nucella_ostrina",0,0,15,NA,0,11.89,NA,NA
+2015-01-18,"BE","Balanus_glandula","Nucella_canaliculata",0,0,17,NA,9565.71428571429,11.89,NA,NA
+2015-01-18,"BE","Balanus_glandula","Nucella_ostrina",0,0,15,NA,9565.71428571429,11.89,NA,NA
+2015-01-18,"BE","Chthamalus_dalli","Nucella_canaliculata",0,0,17,NA,0,11.89,NA,NA
+2015-01-18,"BE","Chthamalus_dalli","Nucella_ostrina",0,0,15,NA,0,11.89,NA,NA
+2015-01-18,"BE","Hiatella_arctica","Nucella_canaliculata",0,0,17,NA,0,11.89,NA,NA
+2015-01-18,"BE","Hiatella_arctica","Nucella_ostrina",0,0,15,NA,0,11.89,NA,NA
+2015-01-18,"BE","Limpets","Nucella_canaliculata",0,0,17,NA,594.285714285714,11.89,NA,NA
+2015-01-18,"BE","Limpets","Nucella_ostrina",0,0,15,NA,594.285714285714,11.89,NA,NA
+2015-01-18,"BE","Littorina_sitkana","Nucella_canaliculata",0,0,17,NA,5782.85714285714,11.89,NA,NA
+2015-01-18,"BE","Littorina_sitkana","Nucella_ostrina",0,0,15,NA,5782.85714285714,11.89,NA,NA
+2015-01-18,"BE","Modiolus_modiolus","Nucella_canaliculata",0,0,17,NA,0,11.89,NA,NA
+2015-01-18,"BE","Modiolus_modiolus","Nucella_ostrina",0,0,15,NA,0,11.89,NA,NA
+2015-01-18,"BE","Mytilus_californianus","Nucella_canaliculata",0,0,17,NA,0,11.89,NA,NA
+2015-01-18,"BE","Mytilus_californianus","Nucella_ostrina",0,0,15,NA,0,11.89,NA,NA
+2015-01-18,"BE","Mytilus_trossulus","Nucella_canaliculata",0,0,17,NA,2102.85714285714,11.89,NA,NA
+2015-01-18,"BE","Mytilus_trossulus","Nucella_ostrina",0,0,15,NA,2102.85714285714,11.89,NA,NA
+2015-01-18,"BE","Nucella_ostrina","Nucella_canaliculata",0,0,17,NA,0,11.89,NA,NA
+2015-01-18,"BE","Nucella_ostrina","Nucella_ostrina",0,0,15,NA,0,11.89,NA,NA
+2015-01-18,"BE","Pollicipes_polymerus","Nucella_canaliculata",0,0,17,NA,0,11.89,NA,NA
+2015-01-18,"BE","Pollicipes_polymerus","Nucella_ostrina",0,0,15,NA,0,11.89,NA,NA
+2015-01-18,"BE","Semibalanus_cariosus","Nucella_canaliculata",0,0,17,NA,0,11.89,NA,NA
+2015-01-18,"BE","Semibalanus_cariosus","Nucella_ostrina",0,0,15,NA,0,11.89,NA,NA
+2015-01-18,"BF","Adula_californiensis","Nucella_canaliculata",0,0,26,NA,0,11.89,NA,NA
+2015-01-18,"BF","Adula_californiensis","Nucella_ostrina",0,0,15,NA,0,11.89,NA,NA
+2015-01-18,"BF","Balanus_glandula","Nucella_canaliculata",0.0833333333333333,2,26,58.9858682943981,19902.8571428571,11.89,7.09831636301665e-08,0.00141276776527925
+2015-01-18,"BF","Balanus_glandula","Nucella_ostrina",0.0769230769230769,1,15,89.6449345078593,19902.8571428571,11.89,4.31137170969505e-08,0.000858086152278163
+2015-01-18,"BF","Chthamalus_dalli","Nucella_canaliculata",0,0,26,NA,217.142857142857,11.89,NA,NA
+2015-01-18,"BF","Chthamalus_dalli","Nucella_ostrina",0.0769230769230769,1,15,22.0207102876471,217.142857142857,11.89,1.60871746423399e-05,0.0034932150651938
+2015-01-18,"BF","Hiatella_arctica","Nucella_canaliculata",0,0,26,NA,0,11.89,NA,NA
+2015-01-18,"BF","Hiatella_arctica","Nucella_ostrina",0,0,15,NA,0,11.89,NA,NA
+2015-01-18,"BF","Limpets","Nucella_canaliculata",0,0,26,NA,908.571428571428,11.89,NA,NA
+2015-01-18,"BF","Limpets","Nucella_ostrina",0,0,15,NA,908.571428571428,11.89,NA,NA
+2015-01-18,"BF","Littorina_sitkana","Nucella_canaliculata",0,0,26,NA,1828.57142857143,11.89,NA,NA
+2015-01-18,"BF","Littorina_sitkana","Nucella_ostrina",0,0,15,NA,1828.57142857143,11.89,NA,NA
+2015-01-18,"BF","Modiolus_modiolus","Nucella_canaliculata",0,0,26,NA,0,11.89,NA,NA
+2015-01-18,"BF","Modiolus_modiolus","Nucella_ostrina",0,0,15,NA,0,11.89,NA,NA
+2015-01-18,"BF","Mytilus_californianus","Nucella_canaliculata",0,0,26,NA,0,11.89,NA,NA
+2015-01-18,"BF","Mytilus_californianus","Nucella_ostrina",0,0,15,NA,0,11.89,NA,NA
+2015-01-18,"BF","Mytilus_trossulus","Nucella_canaliculata",0,0,26,NA,15609.1428571429,11.89,NA,NA
+2015-01-18,"BF","Mytilus_trossulus","Nucella_ostrina",0,0,15,NA,15609.1428571429,11.89,NA,NA
+2015-01-18,"BF","Nucella_ostrina","Nucella_canaliculata",0,0,26,NA,5.7142857142857,11.89,NA,NA
+2015-01-18,"BF","Nucella_ostrina","Nucella_ostrina",0,0,15,NA,5.7142857142857,11.89,NA,NA
+2015-01-18,"BF","Pollicipes_polymerus","Nucella_canaliculata",0,0,26,NA,582.857142857144,11.89,NA,NA
+2015-01-18,"BF","Pollicipes_polymerus","Nucella_ostrina",0,0,15,NA,582.857142857144,11.89,NA,NA
+2015-01-18,"BF","Semibalanus_cariosus","Nucella_canaliculata",0,0,26,NA,28.5714285714286,11.89,NA,NA
+2015-01-18,"BF","Semibalanus_cariosus","Nucella_ostrina",0,0,15,NA,28.5714285714286,11.89,NA,NA
+2015-01-18,"C","Adula_californiensis","Nucella_canaliculata",0,0,68,NA,0,11.89,NA,NA
+2015-01-18,"C","Adula_californiensis","Nucella_ostrina",0,0,27,NA,0,11.89,NA,NA
+2015-01-18,"C","Balanus_glandula","Nucella_canaliculata",0,0,68,NA,4110.47619047619,11.89,NA,NA
+2015-01-18,"C","Balanus_glandula","Nucella_ostrina",0,0,27,NA,4110.47619047619,11.89,NA,NA
+2015-01-18,"C","Chthamalus_dalli","Nucella_canaliculata",0,0,68,NA,853.333333333333,11.89,NA,NA
+2015-01-18,"C","Chthamalus_dalli","Nucella_ostrina",0,0,27,NA,853.333333333333,11.89,NA,NA
+2015-01-18,"C","Hiatella_arctica","Nucella_canaliculata",0,0,68,NA,0,11.89,NA,NA
+2015-01-18,"C","Hiatella_arctica","Nucella_ostrina",0,0,27,NA,0,11.89,NA,NA
+2015-01-18,"C","Limpets","Nucella_canaliculata",0,0,68,NA,998.095238095239,11.89,NA,NA
+2015-01-18,"C","Limpets","Nucella_ostrina",0,0,27,NA,998.095238095239,11.89,NA,NA
+2015-01-18,"C","Littorina_sitkana","Nucella_canaliculata",0,0,68,NA,76.1904761904763,11.89,NA,NA
+2015-01-18,"C","Littorina_sitkana","Nucella_ostrina",0,0,27,NA,76.1904761904763,11.89,NA,NA
+2015-01-18,"C","Modiolus_modiolus","Nucella_canaliculata",0,0,68,NA,0,11.89,NA,NA
+2015-01-18,"C","Modiolus_modiolus","Nucella_ostrina",0,0,27,NA,0,11.89,NA,NA
+2015-01-18,"C","Mytilus_californianus","Nucella_canaliculata",0,0,68,NA,0,11.89,NA,NA
+2015-01-18,"C","Mytilus_californianus","Nucella_ostrina",0,0,27,NA,0,11.89,NA,NA
+2015-01-18,"C","Mytilus_trossulus","Nucella_canaliculata",0,0,68,NA,1641.90476190476,11.89,NA,NA
+2015-01-18,"C","Mytilus_trossulus","Nucella_ostrina",0.173913043478261,4,27,50.2625970189871,1641.90476190476,11.89,2.10736260125246e-06,0.00346008869005642
+2015-01-18,"C","Nucella_ostrina","Nucella_canaliculata",0,0,68,NA,0,11.89,NA,NA
+2015-01-18,"C","Nucella_ostrina","Nucella_ostrina",0,0,27,NA,0,11.89,NA,NA
+2015-01-18,"C","Pollicipes_polymerus","Nucella_canaliculata",0,0,68,NA,1600,11.89,NA,NA
+2015-01-18,"C","Pollicipes_polymerus","Nucella_ostrina",0,0,27,NA,1600,11.89,NA,NA
+2015-01-18,"C","Semibalanus_cariosus","Nucella_canaliculata",0,0,68,NA,3.8095238095238,11.89,NA,NA
+2015-01-18,"C","Semibalanus_cariosus","Nucella_ostrina",0,0,27,NA,3.8095238095238,11.89,NA,NA
+2015-01-18,"D","Adula_californiensis","Nucella_canaliculata",0,0,35,NA,0,11.89,NA,NA
+2015-01-18,"D","Adula_californiensis","Nucella_ostrina",0,0,19,NA,0,11.89,NA,NA
+2015-01-18,"D","Balanus_glandula","Nucella_canaliculata",0,0,35,NA,10848,11.89,NA,NA
+2015-01-18,"D","Balanus_glandula","Nucella_ostrina",0.0588235294117647,1,19,89.6449345078593,10848,11.89,6.04888945623813e-08,0.000656183528212713
+2015-01-18,"D","Chthamalus_dalli","Nucella_canaliculata",0,0,35,NA,672,11.89,NA,NA
+2015-01-18,"D","Chthamalus_dalli","Nucella_ostrina",0,0,19,NA,672,11.89,NA,NA
+2015-01-18,"D","Hiatella_arctica","Nucella_canaliculata",0,0,35,NA,0,11.89,NA,NA
+2015-01-18,"D","Hiatella_arctica","Nucella_ostrina",0,0,19,NA,0,11.89,NA,NA
+2015-01-18,"D","Limpets","Nucella_canaliculata",0,0,35,NA,1582.85714285714,11.89,NA,NA
+2015-01-18,"D","Limpets","Nucella_ostrina",0,0,19,NA,1582.85714285714,11.89,NA,NA
+2015-01-18,"D","Littorina_sitkana","Nucella_canaliculata",0,0,35,NA,1491.42857142857,11.89,NA,NA
+2015-01-18,"D","Littorina_sitkana","Nucella_ostrina",0,0,19,NA,1491.42857142857,11.89,NA,NA
+2015-01-18,"D","Modiolus_modiolus","Nucella_canaliculata",0,0,35,NA,0,11.89,NA,NA
+2015-01-18,"D","Modiolus_modiolus","Nucella_ostrina",0,0,19,NA,0,11.89,NA,NA
+2015-01-18,"D","Mytilus_californianus","Nucella_canaliculata",0,0,35,NA,851.42857142857,11.89,NA,NA
+2015-01-18,"D","Mytilus_californianus","Nucella_ostrina",0,0,19,NA,851.42857142857,11.89,NA,NA
+2015-01-18,"D","Mytilus_trossulus","Nucella_canaliculata",0,0,35,NA,5036.57142857143,11.89,NA,NA
+2015-01-18,"D","Mytilus_trossulus","Nucella_ostrina",0.0588235294117647,1,19,56.735817443285,5036.57142857143,11.89,2.05853741352263e-07,0.00103679707215934
+2015-01-18,"D","Nucella_ostrina","Nucella_canaliculata",0,0,35,NA,5.7142857142857,11.89,NA,NA
+2015-01-18,"D","Nucella_ostrina","Nucella_ostrina",0,0,19,NA,5.7142857142857,11.89,NA,NA
+2015-01-18,"D","Pollicipes_polymerus","Nucella_canaliculata",0,0,35,NA,97.1428571428572,11.89,NA,NA
+2015-01-18,"D","Pollicipes_polymerus","Nucella_ostrina",0,0,19,NA,97.1428571428572,11.89,NA,NA
+2015-01-18,"D","Semibalanus_cariosus","Nucella_canaliculata",0,0,35,NA,5.7142857142857,11.89,NA,NA
+2015-01-18,"D","Semibalanus_cariosus","Nucella_ostrina",0,0,19,NA,5.7142857142857,11.89,NA,NA
+2015-01-18,"E","Adula_californiensis","Nucella_canaliculata",0,0,98,NA,0,11.89,NA,NA
+2015-01-18,"E","Adula_californiensis","Nucella_ostrina",0,0,26,NA,0,11.89,NA,NA
+2015-01-18,"E","Balanus_glandula","Nucella_canaliculata",0,0,98,NA,3344.76190476191,11.89,NA,NA
+2015-01-18,"E","Balanus_glandula","Nucella_ostrina",0.142857142857143,3,26,45.4828957176484,3344.76190476191,11.89,9.39049844484043e-07,0.00314089814650282
+2015-01-18,"E","Chthamalus_dalli","Nucella_canaliculata",0,0,98,NA,2125.71428571429,11.89,NA,NA
+2015-01-18,"E","Chthamalus_dalli","Nucella_ostrina",0.0476190476190476,1,26,22.0207102876471,2125.71428571429,11.89,1.01728933350178e-06,0.0021624664689295
+2015-01-18,"E","Hiatella_arctica","Nucella_canaliculata",0,0,98,NA,0,11.89,NA,NA
+2015-01-18,"E","Hiatella_arctica","Nucella_ostrina",0,0,26,NA,0,11.89,NA,NA
+2015-01-18,"E","Limpets","Nucella_canaliculata",0,0,98,NA,384.761904761905,11.89,NA,NA
+2015-01-18,"E","Limpets","Nucella_ostrina",0,0,26,NA,384.761904761905,11.89,NA,NA
+2015-01-18,"E","Littorina_sitkana","Nucella_canaliculata",0,0,98,NA,396.190476190476,11.89,NA,NA
+2015-01-18,"E","Littorina_sitkana","Nucella_ostrina",0,0,26,NA,396.190476190476,11.89,NA,NA
+2015-01-18,"E","Modiolus_modiolus","Nucella_canaliculata",0,0,98,NA,0,11.89,NA,NA
+2015-01-18,"E","Modiolus_modiolus","Nucella_ostrina",0,0,26,NA,0,11.89,NA,NA
+2015-01-18,"E","Mytilus_californianus","Nucella_canaliculata",0,0,98,NA,30.4761904761905,11.89,NA,NA
+2015-01-18,"E","Mytilus_californianus","Nucella_ostrina",0,0,26,NA,30.4761904761905,11.89,NA,NA
+2015-01-18,"E","Mytilus_trossulus","Nucella_canaliculata",0.0103092783505155,1,98,38.8169944557561,4784.76190476191,11.89,5.55067792695003e-08,0.000265586722904733
+2015-01-18,"E","Mytilus_trossulus","Nucella_ostrina",0.0476190476190476,1,26,47.8425758857989,4784.76190476191,11.89,2.08020348300627e-07,0.000995327837964142
+2015-01-18,"E","Nucella_ostrina","Nucella_canaliculata",0,0,98,NA,0,11.89,NA,NA
+2015-01-18,"E","Nucella_ostrina","Nucella_ostrina",0,0,26,NA,0,11.89,NA,NA
+2015-01-18,"E","Pollicipes_polymerus","Nucella_canaliculata",0,0,98,NA,1264.76190476191,11.89,NA,NA
+2015-01-18,"E","Pollicipes_polymerus","Nucella_ostrina",0,0,26,NA,1264.76190476191,11.89,NA,NA
+2015-01-18,"E","Semibalanus_cariosus","Nucella_canaliculata",0,0,98,NA,0,11.89,NA,NA
+2015-01-18,"E","Semibalanus_cariosus","Nucella_ostrina",0,0,26,NA,0,11.89,NA,NA
+2015-01-18,"F","Adula_californiensis","Nucella_canaliculata",0,0,33,NA,0,11.89,NA,NA
+2015-01-18,"F","Adula_californiensis","Nucella_ostrina",0,0,63,NA,0,11.89,NA,NA
+2015-01-18,"F","Balanus_glandula","Nucella_canaliculata",0.03125,1,33,64.2960241206856,8038.09523809524,11.89,6.04662110914859e-08,0.000486033163440134
+2015-01-18,"F","Balanus_glandula","Nucella_ostrina",0.0508474576271186,3,63,89.8782276978598,8038.09523809524,11.89,7.03819986662086e-08,0.000565737208326477
+2015-01-18,"F","Chthamalus_dalli","Nucella_canaliculata",0,0,33,NA,289.523809523809,11.89,NA,NA
+2015-01-18,"F","Chthamalus_dalli","Nucella_ostrina",0,0,63,NA,289.523809523809,11.89,NA,NA
+2015-01-18,"F","Hiatella_arctica","Nucella_canaliculata",0,0,33,NA,0,11.89,NA,NA
+2015-01-18,"F","Hiatella_arctica","Nucella_ostrina",0,0,63,NA,0,11.89,NA,NA
+2015-01-18,"F","Limpets","Nucella_canaliculata",0,0,33,NA,3398.09523809524,11.89,NA,NA
+2015-01-18,"F","Limpets","Nucella_ostrina",0,0,63,NA,3398.09523809524,11.89,NA,NA
+2015-01-18,"F","Littorina_sitkana","Nucella_canaliculata",0,0,33,NA,1980.95238095238,11.89,NA,NA
+2015-01-18,"F","Littorina_sitkana","Nucella_ostrina",0,0,63,NA,1980.95238095238,11.89,NA,NA
+2015-01-18,"F","Modiolus_modiolus","Nucella_canaliculata",0,0,33,NA,0,11.89,NA,NA
+2015-01-18,"F","Modiolus_modiolus","Nucella_ostrina",0,0,63,NA,0,11.89,NA,NA
+2015-01-18,"F","Mytilus_californianus","Nucella_canaliculata",0,0,33,NA,64.7619047619047,11.89,NA,NA
+2015-01-18,"F","Mytilus_californianus","Nucella_ostrina",0,0,63,NA,64.7619047619047,11.89,NA,NA
+2015-01-18,"F","Mytilus_trossulus","Nucella_canaliculata",0,0,33,NA,6236.19047619048,11.89,NA,NA
+2015-01-18,"F","Mytilus_trossulus","Nucella_ostrina",0.0169491525423729,1,63,35.0620170000296,6236.19047619048,11.89,7.75160654442505e-08,0.000483404949075193
+2015-01-18,"F","Nucella_ostrina","Nucella_canaliculata",0,0,33,NA,34.2857142857143,11.89,NA,NA
+2015-01-18,"F","Nucella_ostrina","Nucella_ostrina",0,0,63,NA,34.2857142857143,11.89,NA,NA
+2015-01-18,"F","Pollicipes_polymerus","Nucella_canaliculata",0,0,33,NA,57.1428571428571,11.89,NA,NA
+2015-01-18,"F","Pollicipes_polymerus","Nucella_ostrina",0,0,63,NA,57.1428571428571,11.89,NA,NA
+2015-01-18,"F","Semibalanus_cariosus","Nucella_canaliculata",0,0,33,NA,3.8095238095238,11.89,NA,NA
+2015-01-18,"F","Semibalanus_cariosus","Nucella_ostrina",0,0,63,NA,3.8095238095238,11.89,NA,NA
+2015-01-18,"G","Adula_californiensis","Nucella_canaliculata",0,0,35,NA,0,11.89,NA,NA
+2015-01-18,"G","Adula_californiensis","Nucella_ostrina",0,0,8,NA,0,11.89,NA,NA
+2015-01-18,"G","Balanus_glandula","Nucella_canaliculata",0,0,35,NA,39301.3333333333,11.89,NA,NA
+2015-01-18,"G","Balanus_glandula","Nucella_ostrina",0,0,8,NA,39301.3333333333,11.89,NA,NA
+2015-01-18,"G","Chthamalus_dalli","Nucella_canaliculata",0,0,35,NA,0,11.89,NA,NA
+2015-01-18,"G","Chthamalus_dalli","Nucella_ostrina",0,0,8,NA,0,11.89,NA,NA
+2015-01-18,"G","Hiatella_arctica","Nucella_canaliculata",0,0,35,NA,0,11.89,NA,NA
+2015-01-18,"G","Hiatella_arctica","Nucella_ostrina",0,0,8,NA,0,11.89,NA,NA
+2015-01-18,"G","Limpets","Nucella_canaliculata",0,0,35,NA,499.047619047619,11.89,NA,NA
+2015-01-18,"G","Limpets","Nucella_ostrina",0,0,8,NA,499.047619047619,11.89,NA,NA
+2015-01-18,"G","Littorina_sitkana","Nucella_canaliculata",0,0,35,NA,3504.76190476191,11.89,NA,NA
+2015-01-18,"G","Littorina_sitkana","Nucella_ostrina",0,0,8,NA,3504.76190476191,11.89,NA,NA
+2015-01-18,"G","Modiolus_modiolus","Nucella_canaliculata",0,0,35,NA,0,11.89,NA,NA
+2015-01-18,"G","Modiolus_modiolus","Nucella_ostrina",0,0,8,NA,0,11.89,NA,NA
+2015-01-18,"G","Mytilus_californianus","Nucella_canaliculata",0,0,35,NA,144.761904761905,11.89,NA,NA
+2015-01-18,"G","Mytilus_californianus","Nucella_ostrina",0,0,8,NA,144.761904761905,11.89,NA,NA
+2015-01-18,"G","Mytilus_trossulus","Nucella_canaliculata",0.0294117647058824,1,35,28.8300975831151,22236.1904761905,11.89,4.58790677963899e-08,0.00102017569039058
+2015-01-18,"G","Mytilus_trossulus","Nucella_ostrina",0,0,8,NA,22236.1904761905,11.89,NA,NA
+2015-01-18,"G","Nucella_ostrina","Nucella_canaliculata",0,0,35,NA,0,11.89,NA,NA
+2015-01-18,"G","Nucella_ostrina","Nucella_ostrina",0,0,8,NA,0,11.89,NA,NA
+2015-01-18,"G","Pollicipes_polymerus","Nucella_canaliculata",0,0,35,NA,5603.80952380951,11.89,NA,NA
+2015-01-18,"G","Pollicipes_polymerus","Nucella_ostrina",0,0,8,NA,5603.80952380951,11.89,NA,NA
+2015-01-18,"G","Semibalanus_cariosus","Nucella_canaliculata",0,0,35,NA,57.142857142857,11.89,NA,NA
+2015-01-18,"G","Semibalanus_cariosus","Nucella_ostrina",0,0,8,NA,57.142857142857,11.89,NA,NA
+2015-02-17,"A","Adula_californiensis","Nucella_canaliculata",0,0,59,NA,0,12.49,NA,NA
+2015-02-17,"A","Adula_californiensis","Nucella_ostrina",0,0,87,NA,0,12.49,NA,NA
+2015-02-17,"A","Balanus_glandula","Nucella_canaliculata",0.0576923076923077,3,59,55.5960934403679,5645.71428571429,12.49,1.83803907148127e-07,0.00103770434435628
+2015-02-17,"A","Balanus_glandula","Nucella_ostrina",0.0588235294117647,4,87,59.2424511154677,5645.71428571429,12.49,1.75872996810071e-07,0.000992928690562001
+2015-02-17,"A","Chthamalus_dalli","Nucella_canaliculata",0,0,59,NA,1291.42857142857,12.49,NA,NA
+2015-02-17,"A","Chthamalus_dalli","Nucella_ostrina",0,0,87,NA,1291.42857142857,12.49,NA,NA
+2015-02-17,"A","Hiatella_arctica","Nucella_canaliculata",0,0,59,NA,0,12.49,NA,NA
+2015-02-17,"A","Hiatella_arctica","Nucella_ostrina",0,0,87,NA,0,12.49,NA,NA
+2015-02-17,"A","Limpets","Nucella_canaliculata",0,0,59,NA,594.285714285714,12.49,NA,NA
+2015-02-17,"A","Limpets","Nucella_ostrina",0,0,87,NA,594.285714285714,12.49,NA,NA
+2015-02-17,"A","Littorina_sitkana","Nucella_canaliculata",0,0,59,NA,137.142857142857,12.49,NA,NA
+2015-02-17,"A","Littorina_sitkana","Nucella_ostrina",0,0,87,NA,137.142857142857,12.49,NA,NA
+2015-02-17,"A","Modiolus_modiolus","Nucella_canaliculata",0,0,59,NA,0,12.49,NA,NA
+2015-02-17,"A","Modiolus_modiolus","Nucella_ostrina",0,0,87,NA,0,12.49,NA,NA
+2015-02-17,"A","Mytilus_californianus","Nucella_canaliculata",0,0,59,NA,0,12.49,NA,NA
+2015-02-17,"A","Mytilus_californianus","Nucella_ostrina",0,0,87,NA,0,12.49,NA,NA
+2015-02-17,"A","Mytilus_trossulus","Nucella_canaliculata",0.0769230769230769,4,59,48.188344621475,2320,12.49,6.88060545224953e-07,0.00159630046492189
+2015-02-17,"A","Mytilus_trossulus","Nucella_ostrina",0.220588235294118,15,87,43.571904481104,2320,12.49,2.18216616957543e-06,0.00506262551341499
+2015-02-17,"A","Nucella_ostrina","Nucella_canaliculata",0,0,59,NA,11.4285714285714,12.49,NA,NA
+2015-02-17,"A","Nucella_ostrina","Nucella_ostrina",0,0,87,NA,11.4285714285714,12.49,NA,NA
+2015-02-17,"A","Pollicipes_polymerus","Nucella_canaliculata",0,0,59,NA,1760,12.49,NA,NA
+2015-02-17,"A","Pollicipes_polymerus","Nucella_ostrina",0,0,87,NA,1760,12.49,NA,NA
+2015-02-17,"A","Semibalanus_cariosus","Nucella_canaliculata",0,0,59,NA,0,12.49,NA,NA
+2015-02-17,"A","Semibalanus_cariosus","Nucella_ostrina",0,0,87,NA,0,12.49,NA,NA
+2015-02-17,"AB","Adula_californiensis","Nucella_canaliculata",0,0,40,NA,0,12.49,NA,NA
+2015-02-17,"AB","Adula_californiensis","Nucella_ostrina",0,0,158,NA,0,12.49,NA,NA
+2015-02-17,"AB","Balanus_glandula","Nucella_canaliculata",0.0333333333333333,1,40,30.6596748909052,3805.71428571428,12.49,2.85676830883714e-07,0.00108720439639173
+2015-02-17,"AB","Balanus_glandula","Nucella_ostrina",0.0327868852459016,4,158,25.8608233884159,3805.71428571428,12.49,3.33136049854386e-07,0.00126782062401726
+2015-02-17,"AB","Chthamalus_dalli","Nucella_canaliculata",0,0,40,NA,725.714285714285,12.49,NA,NA
+2015-02-17,"AB","Chthamalus_dalli","Nucella_ostrina",0,0,158,NA,725.714285714285,12.49,NA,NA
+2015-02-17,"AB","Hiatella_arctica","Nucella_canaliculata",0,0,40,NA,0,12.49,NA,NA
+2015-02-17,"AB","Hiatella_arctica","Nucella_ostrina",0,0,158,NA,0,12.49,NA,NA
+2015-02-17,"AB","Limpets","Nucella_canaliculata",0,0,40,NA,628.571428571428,12.49,NA,NA
+2015-02-17,"AB","Limpets","Nucella_ostrina",0,0,158,NA,628.571428571428,12.49,NA,NA
+2015-02-17,"AB","Littorina_sitkana","Nucella_canaliculata",0,0,40,NA,462.857142857143,12.49,NA,NA
+2015-02-17,"AB","Littorina_sitkana","Nucella_ostrina",0,0,158,NA,462.857142857143,12.49,NA,NA
+2015-02-17,"AB","Modiolus_modiolus","Nucella_canaliculata",0,0,40,NA,0,12.49,NA,NA
+2015-02-17,"AB","Modiolus_modiolus","Nucella_ostrina",0,0,158,NA,0,12.49,NA,NA
+2015-02-17,"AB","Mytilus_californianus","Nucella_canaliculata",0,0,40,NA,160,12.49,NA,NA
+2015-02-17,"AB","Mytilus_californianus","Nucella_ostrina",0,0,158,NA,160,12.49,NA,NA
+2015-02-17,"AB","Mytilus_trossulus","Nucella_canaliculata",0.3,9,40,47.6158004738942,15680,12.49,4.0181311394133e-07,0.00630042962660006
+2015-02-17,"AB","Mytilus_trossulus","Nucella_ostrina",0.262295081967213,32,158,43.2335899230156,15680,12.49,3.8692143553814e-07,0.00606692810923803
+2015-02-17,"AB","Nucella_ostrina","Nucella_canaliculata",0,0,40,NA,28.5714285714286,12.49,NA,NA
+2015-02-17,"AB","Nucella_ostrina","Nucella_ostrina",0,0,158,NA,28.5714285714286,12.49,NA,NA
+2015-02-17,"AB","Pollicipes_polymerus","Nucella_canaliculata",0,0,40,NA,4628.57142857143,12.49,NA,NA
+2015-02-17,"AB","Pollicipes_polymerus","Nucella_ostrina",0,0,158,NA,4628.57142857143,12.49,NA,NA
+2015-02-17,"AB","Semibalanus_cariosus","Nucella_canaliculata",0,0,40,NA,22.8571428571429,12.49,NA,NA
+2015-02-17,"AB","Semibalanus_cariosus","Nucella_ostrina",0,0,158,NA,22.8571428571429,12.49,NA,NA
+2015-02-17,"AC","Adula_californiensis","Nucella_canaliculata",0,0,20,NA,0,12.49,NA,NA
+2015-02-17,"AC","Adula_californiensis","Nucella_ostrina",0,0,99,NA,0,12.49,NA,NA
+2015-02-17,"AC","Balanus_glandula","Nucella_canaliculata",0.133333333333333,2,20,28.0227607595258,19245.7142857143,12.49,2.47225795718367e-07,0.00475803702845406
+2015-02-17,"AC","Balanus_glandula","Nucella_ostrina",0.0581395348837209,5,99,49.2067058871135,19245.7142857143,12.49,6.13922042191415e-08,0.00118153682177182
+2015-02-17,"AC","Chthamalus_dalli","Nucella_canaliculata",0,0,20,NA,1302.85714285714,12.49,NA,NA
+2015-02-17,"AC","Chthamalus_dalli","Nucella_ostrina",0,0,99,NA,1302.85714285714,12.49,NA,NA
+2015-02-17,"AC","Hiatella_arctica","Nucella_canaliculata",0,0,20,NA,0,12.49,NA,NA
+2015-02-17,"AC","Hiatella_arctica","Nucella_ostrina",0,0,99,NA,0,12.49,NA,NA
+2015-02-17,"AC","Limpets","Nucella_canaliculata",0,0,20,NA,114.285714285715,12.49,NA,NA
+2015-02-17,"AC","Limpets","Nucella_ostrina",0,0,99,NA,114.285714285715,12.49,NA,NA
+2015-02-17,"AC","Littorina_sitkana","Nucella_canaliculata",0,0,20,NA,5180.95238095238,12.49,NA,NA
+2015-02-17,"AC","Littorina_sitkana","Nucella_ostrina",0,0,99,NA,5180.95238095238,12.49,NA,NA
+2015-02-17,"AC","Modiolus_modiolus","Nucella_canaliculata",0,0,20,NA,0,12.49,NA,NA
+2015-02-17,"AC","Modiolus_modiolus","Nucella_ostrina",0,0,99,NA,0,12.49,NA,NA
+2015-02-17,"AC","Mytilus_californianus","Nucella_canaliculata",0,0,20,NA,0,12.49,NA,NA
+2015-02-17,"AC","Mytilus_californianus","Nucella_ostrina",0,0,99,NA,0,12.49,NA,NA
+2015-02-17,"AC","Mytilus_trossulus","Nucella_canaliculata",0.2,3,20,35.7591893653767,4194.28571428572,12.49,1.33347328482483e-06,0.00559296794892245
+2015-02-17,"AC","Mytilus_trossulus","Nucella_ostrina",0.0930232558139535,8,99,38.6657954999893,4194.28571428572,12.49,5.73596608544062e-07,0.00240582806097909
+2015-02-17,"AC","Nucella_ostrina","Nucella_canaliculata",0,0,20,NA,11.4285714285714,12.49,NA,NA
+2015-02-17,"AC","Nucella_ostrina","Nucella_ostrina",0,0,99,NA,11.4285714285714,12.49,NA,NA
+2015-02-17,"AC","Pollicipes_polymerus","Nucella_canaliculata",0,0,20,NA,304.761904761905,12.49,NA,NA
+2015-02-17,"AC","Pollicipes_polymerus","Nucella_ostrina",0,0,99,NA,304.761904761905,12.49,NA,NA
+2015-02-17,"AC","Semibalanus_cariosus","Nucella_canaliculata",0,0,20,NA,3.8095238095238,12.49,NA,NA
+2015-02-17,"AC","Semibalanus_cariosus","Nucella_ostrina",0,0,99,NA,3.8095238095238,12.49,NA,NA
+2015-02-17,"AD","Adula_californiensis","Nucella_canaliculata",0,0,58,NA,0,12.49,NA,NA
+2015-02-17,"AD","Adula_californiensis","Nucella_ostrina",0,0,82,NA,0,12.49,NA,NA
+2015-02-17,"AD","Balanus_glandula","Nucella_canaliculata",0,0,58,NA,2407.61904761905,12.49,NA,NA
+2015-02-17,"AD","Balanus_glandula","Nucella_ostrina",0.0298507462686567,2,82,43.0395478878235,2407.61904761905,12.49,2.88071120458077e-07,0.000693565516683829
+2015-02-17,"AD","Chthamalus_dalli","Nucella_canaliculata",0,0,58,NA,739.047619047621,12.49,NA,NA
+2015-02-17,"AD","Chthamalus_dalli","Nucella_ostrina",0.0149253731343284,1,82,17.6109608102594,739.047619047621,12.49,1.14675257623743e-06,0.000847504761104996
+2015-02-17,"AD","Hiatella_arctica","Nucella_canaliculata",0,0,58,NA,0,12.49,NA,NA
+2015-02-17,"AD","Hiatella_arctica","Nucella_ostrina",0,0,82,NA,0,12.49,NA,NA
+2015-02-17,"AD","Limpets","Nucella_canaliculata",0,0,58,NA,601.904761904762,12.49,NA,NA
+2015-02-17,"AD","Limpets","Nucella_ostrina",0,0,82,NA,601.904761904762,12.49,NA,NA
+2015-02-17,"AD","Littorina_sitkana","Nucella_canaliculata",0,0,58,NA,819.04761904762,12.49,NA,NA
+2015-02-17,"AD","Littorina_sitkana","Nucella_ostrina",0,0,82,NA,819.04761904762,12.49,NA,NA
+2015-02-17,"AD","Modiolus_modiolus","Nucella_canaliculata",0,0,58,NA,0,12.49,NA,NA
+2015-02-17,"AD","Modiolus_modiolus","Nucella_ostrina",0,0,82,NA,0,12.49,NA,NA
+2015-02-17,"AD","Mytilus_californianus","Nucella_canaliculata",0,0,58,NA,213.333333333334,12.49,NA,NA
+2015-02-17,"AD","Mytilus_californianus","Nucella_ostrina",0,0,82,NA,213.333333333334,12.49,NA,NA
+2015-02-17,"AD","Mytilus_trossulus","Nucella_canaliculata",0.137254901960784,7,58,47.7677993252766,4979.04761904762,12.49,5.770937227895e-07,0.00287337712642239
+2015-02-17,"AD","Mytilus_trossulus","Nucella_ostrina",0.17910447761194,12,82,42.9343289108124,4979.04761904762,12.49,8.37829184941317e-07,0.00417159140845067
+2015-02-17,"AD","Nucella_ostrina","Nucella_canaliculata",0,0,58,NA,30.4761904761905,12.49,NA,NA
+2015-02-17,"AD","Nucella_ostrina","Nucella_ostrina",0,0,82,NA,30.4761904761905,12.49,NA,NA
+2015-02-17,"AD","Pollicipes_polymerus","Nucella_canaliculata",0,0,58,NA,1184.76190476191,12.49,NA,NA
+2015-02-17,"AD","Pollicipes_polymerus","Nucella_ostrina",0,0,82,NA,1184.76190476191,12.49,NA,NA
+2015-02-17,"AD","Semibalanus_cariosus","Nucella_canaliculata",0,0,58,NA,3.8095238095238,12.49,NA,NA
+2015-02-17,"AD","Semibalanus_cariosus","Nucella_ostrina",0,0,82,NA,3.8095238095238,12.49,NA,NA
+2015-02-17,"AE","Adula_californiensis","Nucella_canaliculata",0,0,18,NA,0,12.49,NA,NA
+2015-02-17,"AE","Adula_californiensis","Nucella_ostrina",0,0,89,NA,0,12.49,NA,NA
+2015-02-17,"AE","Balanus_glandula","Nucella_canaliculata",0.0625,1,18,48.8603643297404,8775.61904761905,12.49,1.45762414710013e-07,0.00127915542295614
+2015-02-17,"AE","Balanus_glandula","Nucella_ostrina",0.0555555555555556,4,89,51.9570313876465,8775.61904761905,12.49,1.21844352246076e-07,0.00106925961841547
+2015-02-17,"AE","Chthamalus_dalli","Nucella_canaliculata",0,0,18,NA,1523.04761904762,12.49,NA,NA
+2015-02-17,"AE","Chthamalus_dalli","Nucella_ostrina",0.0416666666666667,3,89,16.9695509504213,1523.04761904762,12.49,1.61214806415829e-06,0.00245537827066851
+2015-02-17,"AE","Hiatella_arctica","Nucella_canaliculata",0,0,18,NA,0,12.49,NA,NA
+2015-02-17,"AE","Hiatella_arctica","Nucella_ostrina",0,0,89,NA,0,12.49,NA,NA
+2015-02-17,"AE","Limpets","Nucella_canaliculata",0,0,18,NA,1093.33333333333,12.49,NA,NA
+2015-02-17,"AE","Limpets","Nucella_ostrina",0,0,89,NA,1093.33333333333,12.49,NA,NA
+2015-02-17,"AE","Littorina_sitkana","Nucella_canaliculata",0,0,18,NA,765.714285714285,12.49,NA,NA
+2015-02-17,"AE","Littorina_sitkana","Nucella_ostrina",0,0,89,NA,765.714285714285,12.49,NA,NA
+2015-02-17,"AE","Modiolus_modiolus","Nucella_canaliculata",0,0,18,NA,0,12.49,NA,NA
+2015-02-17,"AE","Modiolus_modiolus","Nucella_ostrina",0,0,89,NA,0,12.49,NA,NA
+2015-02-17,"AE","Mytilus_californianus","Nucella_canaliculata",0,0,18,NA,125.714285714286,12.49,NA,NA
+2015-02-17,"AE","Mytilus_californianus","Nucella_ostrina",0,0,89,NA,125.714285714286,12.49,NA,NA
+2015-02-17,"AE","Mytilus_trossulus","Nucella_canaliculata",0.0625,1,18,63.9779529096161,8348.95238095238,12.49,1.17008575837539e-07,0.000976899027830665
+2015-02-17,"AE","Mytilus_trossulus","Nucella_ostrina",0.138888888888889,10,89,50.7603857108893,8348.95238095238,12.49,3.27725780212955e-07,0.00273616693300843
+2015-02-17,"AE","Nucella_ostrina","Nucella_canaliculata",0,0,18,NA,83.809523809524,12.49,NA,NA
+2015-02-17,"AE","Nucella_ostrina","Nucella_ostrina",0,0,89,NA,83.809523809524,12.49,NA,NA
+2015-02-17,"AE","Pollicipes_polymerus","Nucella_canaliculata",0,0,18,NA,552.380952380953,12.49,NA,NA
+2015-02-17,"AE","Pollicipes_polymerus","Nucella_ostrina",0,0,89,NA,552.380952380953,12.49,NA,NA
+2015-02-17,"AE","Semibalanus_cariosus","Nucella_canaliculata",0,0,18,NA,60.9523809523811,12.49,NA,NA
+2015-02-17,"AE","Semibalanus_cariosus","Nucella_ostrina",0,0,89,NA,60.9523809523811,12.49,NA,NA
+2015-02-17,"AF","Adula_californiensis","Nucella_canaliculata",0,0,31,NA,0,12.49,NA,NA
+2015-02-17,"AF","Adula_californiensis","Nucella_ostrina",0,0,122,NA,0,12.49,NA,NA
+2015-02-17,"AF","Balanus_glandula","Nucella_canaliculata",0,0,31,NA,14191.2380952381,12.49,NA,NA
+2015-02-17,"AF","Balanus_glandula","Nucella_ostrina",0.019047619047619,2,122,31.9005625195243,14191.2380952381,12.49,4.20748008257434e-08,0.000597093516327845
+2015-02-17,"AF","Chthamalus_dalli","Nucella_canaliculata",0,0,31,NA,671.238095238095,12.49,NA,NA
+2015-02-17,"AF","Chthamalus_dalli","Nucella_ostrina",0,0,122,NA,671.238095238095,12.49,NA,NA
+2015-02-17,"AF","Hiatella_arctica","Nucella_canaliculata",0,0,31,NA,0,12.49,NA,NA
+2015-02-17,"AF","Hiatella_arctica","Nucella_ostrina",0,0,122,NA,0,12.49,NA,NA
+2015-02-17,"AF","Limpets","Nucella_canaliculata",0,0,31,NA,304.761904761905,12.49,NA,NA
+2015-02-17,"AF","Limpets","Nucella_ostrina",0,0,122,NA,304.761904761905,12.49,NA,NA
+2015-02-17,"AF","Littorina_sitkana","Nucella_canaliculata",0,0,31,NA,1180.95238095238,12.49,NA,NA
+2015-02-17,"AF","Littorina_sitkana","Nucella_ostrina",0,0,122,NA,1180.95238095238,12.49,NA,NA
+2015-02-17,"AF","Modiolus_modiolus","Nucella_canaliculata",0,0,31,NA,0,12.49,NA,NA
+2015-02-17,"AF","Modiolus_modiolus","Nucella_ostrina",0,0,122,NA,0,12.49,NA,NA
+2015-02-17,"AF","Mytilus_californianus","Nucella_canaliculata",0,0,31,NA,0,12.49,NA,NA
+2015-02-17,"AF","Mytilus_californianus","Nucella_ostrina",0,0,122,NA,0,12.49,NA,NA
+2015-02-17,"AF","Mytilus_trossulus","Nucella_canaliculata",0.24,6,31,37.0820839238026,7674.66666666667,12.49,8.43310654655461e-07,0.00647212817092911
+2015-02-17,"AF","Mytilus_trossulus","Nucella_ostrina",0.142857142857143,15,122,40.3989360527116,7674.66666666667,12.49,4.60757603170658e-07,0.00353616101846708
+2015-02-17,"AF","Nucella_ostrina","Nucella_canaliculata",0,0,31,NA,11.4285714285714,12.49,NA,NA
+2015-02-17,"AF","Nucella_ostrina","Nucella_ostrina",0,0,122,NA,11.4285714285714,12.49,NA,NA
+2015-02-17,"AF","Pollicipes_polymerus","Nucella_canaliculata",0,0,31,NA,34.2857142857143,12.49,NA,NA
+2015-02-17,"AF","Pollicipes_polymerus","Nucella_ostrina",0,0,122,NA,34.2857142857143,12.49,NA,NA
+2015-02-17,"AF","Semibalanus_cariosus","Nucella_canaliculata",0,0,31,NA,3.8095238095238,12.49,NA,NA
+2015-02-17,"AF","Semibalanus_cariosus","Nucella_ostrina",0,0,122,NA,3.8095238095238,12.49,NA,NA
+2015-02-17,"AG","Adula_californiensis","Nucella_canaliculata",0,0,21,NA,0,12.49,NA,NA
+2015-02-17,"AG","Adula_californiensis","Nucella_ostrina",0,0,140,NA,0,12.49,NA,NA
+2015-02-17,"AG","Balanus_glandula","Nucella_canaliculata",0,0,21,NA,8011.42857142858,12.49,NA,NA
+2015-02-17,"AG","Balanus_glandula","Nucella_ostrina",0.0434782608695652,5,140,63.4719657037733,8011.42857142858,12.49,8.55027829835839e-08,0.000684999438531341
+2015-02-17,"AG","Chthamalus_dalli","Nucella_canaliculata",0,0,21,NA,302.857142857143,12.49,NA,NA
+2015-02-17,"AG","Chthamalus_dalli","Nucella_ostrina",0.00869565217391304,1,140,20.1937460230056,302.857142857143,12.49,1.42182926496635e-06,0.000430611148818381
+2015-02-17,"AG","Hiatella_arctica","Nucella_canaliculata",0,0,21,NA,0,12.49,NA,NA
+2015-02-17,"AG","Hiatella_arctica","Nucella_ostrina",0,0,140,NA,0,12.49,NA,NA
+2015-02-17,"AG","Limpets","Nucella_canaliculata",0,0,21,NA,257.142857142857,12.49,NA,NA
+2015-02-17,"AG","Limpets","Nucella_ostrina",0,0,140,NA,257.142857142857,12.49,NA,NA
+2015-02-17,"AG","Littorina_sitkana","Nucella_canaliculata",0,0,21,NA,1371.42857142858,12.49,NA,NA
+2015-02-17,"AG","Littorina_sitkana","Nucella_ostrina",0,0,140,NA,1371.42857142858,12.49,NA,NA
+2015-02-17,"AG","Modiolus_modiolus","Nucella_canaliculata",0,0,21,NA,0,12.49,NA,NA
+2015-02-17,"AG","Modiolus_modiolus","Nucella_ostrina",0,0,140,NA,0,12.49,NA,NA
+2015-02-17,"AG","Mytilus_californianus","Nucella_canaliculata",0,0,21,NA,0,12.49,NA,NA
+2015-02-17,"AG","Mytilus_californianus","Nucella_ostrina",0,0,140,NA,0,12.49,NA,NA
+2015-02-17,"AG","Mytilus_trossulus","Nucella_canaliculata",0.05,1,21,34.7550448549157,7885.71428571428,12.49,1.82436240166386e-07,0.00143864006531207
+2015-02-17,"AG","Mytilus_trossulus","Nucella_ostrina",0.165217391304348,19,140,50.4274119868192,7885.71428571428,12.49,4.15478009992359e-07,0.00327634087879689
+2015-02-17,"AG","Nucella_ostrina","Nucella_canaliculata",0,0,21,NA,68.5714285714286,12.49,NA,NA
+2015-02-17,"AG","Nucella_ostrina","Nucella_ostrina",0,0,140,NA,68.5714285714286,12.49,NA,NA
+2015-02-17,"AG","Pollicipes_polymerus","Nucella_canaliculata",0,0,21,NA,1234.28571428571,12.49,NA,NA
+2015-02-17,"AG","Pollicipes_polymerus","Nucella_ostrina",0,0,140,NA,1234.28571428571,12.49,NA,NA
+2015-02-17,"AG","Semibalanus_cariosus","Nucella_canaliculata",0,0,21,NA,11.4285714285715,12.49,NA,NA
+2015-02-17,"AG","Semibalanus_cariosus","Nucella_ostrina",0,0,140,NA,11.4285714285715,12.49,NA,NA
+2015-02-17,"B","Adula_californiensis","Nucella_canaliculata",0,0,37,NA,0,12.49,NA,NA
+2015-02-17,"B","Adula_californiensis","Nucella_ostrina",0,0,15,NA,0,12.49,NA,NA
+2015-02-17,"B","Balanus_glandula","Nucella_canaliculata",0,0,37,NA,2419.04761904762,12.49,NA,NA
+2015-02-17,"B","Balanus_glandula","Nucella_ostrina",0,0,15,NA,2419.04761904762,12.49,NA,NA
+2015-02-17,"B","Chthamalus_dalli","Nucella_canaliculata",0,0,37,NA,480,12.49,NA,NA
+2015-02-17,"B","Chthamalus_dalli","Nucella_ostrina",0,0,15,NA,480,12.49,NA,NA
+2015-02-17,"B","Hiatella_arctica","Nucella_canaliculata",0,0,37,NA,0,12.49,NA,NA
+2015-02-17,"B","Hiatella_arctica","Nucella_ostrina",0,0,15,NA,0,12.49,NA,NA
+2015-02-17,"B","Limpets","Nucella_canaliculata",0,0,37,NA,449.523809523809,12.49,NA,NA
+2015-02-17,"B","Limpets","Nucella_ostrina",0,0,15,NA,449.523809523809,12.49,NA,NA
+2015-02-17,"B","Littorina_sitkana","Nucella_canaliculata",0,0,37,NA,331.428571428572,12.49,NA,NA
+2015-02-17,"B","Littorina_sitkana","Nucella_ostrina",0,0,15,NA,331.428571428572,12.49,NA,NA
+2015-02-17,"B","Modiolus_modiolus","Nucella_canaliculata",0,0,37,NA,0,12.49,NA,NA
+2015-02-17,"B","Modiolus_modiolus","Nucella_ostrina",0,0,15,NA,0,12.49,NA,NA
+2015-02-17,"B","Mytilus_californianus","Nucella_canaliculata",0,0,37,NA,30.4761904761905,12.49,NA,NA
+2015-02-17,"B","Mytilus_californianus","Nucella_ostrina",0,0,15,NA,30.4761904761905,12.49,NA,NA
+2015-02-17,"B","Mytilus_trossulus","Nucella_canaliculata",0.121212121212121,4,37,45.4267791653949,3550.47619047619,12.49,7.51532041004433e-07,0.00266829661796621
+2015-02-17,"B","Mytilus_trossulus","Nucella_ostrina",0.153846153846154,2,15,37.3290778139183,3550.47619047619,12.49,1.16078764664179e-06,0.00412134890160056
+2015-02-17,"B","Nucella_ostrina","Nucella_canaliculata",0,0,37,NA,30.4761904761905,12.49,NA,NA
+2015-02-17,"B","Nucella_ostrina","Nucella_ostrina",0,0,15,NA,30.4761904761905,12.49,NA,NA
+2015-02-17,"B","Pollicipes_polymerus","Nucella_canaliculata",0,0,37,NA,4015.2380952381,12.49,NA,NA
+2015-02-17,"B","Pollicipes_polymerus","Nucella_ostrina",0,0,15,NA,4015.2380952381,12.49,NA,NA
+2015-02-17,"B","Semibalanus_cariosus","Nucella_canaliculata",0,0,37,NA,19.047619047619,12.49,NA,NA
+2015-02-17,"B","Semibalanus_cariosus","Nucella_ostrina",0,0,15,NA,19.047619047619,12.49,NA,NA
+2015-02-17,"BB","Adula_californiensis","Nucella_canaliculata",0,0,8,NA,0,12.49,NA,NA
+2015-02-17,"BB","Adula_californiensis","Nucella_ostrina",0,0,98,NA,0,12.49,NA,NA
+2015-02-17,"BB","Balanus_glandula","Nucella_canaliculata",0.166666666666667,1,8,76.6768342894491,6049.52380952382,12.49,3.59305102891345e-07,0.0021736247748246
+2015-02-17,"BB","Balanus_glandula","Nucella_ostrina",0.0428571428571429,3,98,64.3734245880259,6049.52380952382,12.49,1.10051359188591e-07,0.000665758317681839
+2015-02-17,"BB","Chthamalus_dalli","Nucella_canaliculata",0,0,8,NA,952.380952380953,12.49,NA,NA
+2015-02-17,"BB","Chthamalus_dalli","Nucella_ostrina",0,0,98,NA,952.380952380953,12.49,NA,NA
+2015-02-17,"BB","Hiatella_arctica","Nucella_canaliculata",0,0,8,NA,0,12.49,NA,NA
+2015-02-17,"BB","Hiatella_arctica","Nucella_ostrina",0,0,98,NA,0,12.49,NA,NA
+2015-02-17,"BB","Limpets","Nucella_canaliculata",0,0,8,NA,247.619047619047,12.49,NA,NA
+2015-02-17,"BB","Limpets","Nucella_ostrina",0,0,98,NA,247.619047619047,12.49,NA,NA
+2015-02-17,"BB","Littorina_sitkana","Nucella_canaliculata",0,0,8,NA,1127.61904761905,12.49,NA,NA
+2015-02-17,"BB","Littorina_sitkana","Nucella_ostrina",0,0,98,NA,1127.61904761905,12.49,NA,NA
+2015-02-17,"BB","Modiolus_modiolus","Nucella_canaliculata",0,0,8,NA,0,12.49,NA,NA
+2015-02-17,"BB","Modiolus_modiolus","Nucella_ostrina",0,0,98,NA,0,12.49,NA,NA
+2015-02-17,"BB","Mytilus_californianus","Nucella_canaliculata",0,0,8,NA,0,12.49,NA,NA
+2015-02-17,"BB","Mytilus_californianus","Nucella_ostrina",0,0,98,NA,0,12.49,NA,NA
+2015-02-17,"BB","Mytilus_trossulus","Nucella_canaliculata",0.166666666666667,1,8,38.9160014280071,5497.14285714286,12.49,7.79082619134671e-07,0.0042827284549003
+2015-02-17,"BB","Mytilus_trossulus","Nucella_ostrina",0.357142857142857,25,98,54.2654594724732,5497.14285714286,12.49,1.1972406683808e-06,0.00658140298847045
+2015-02-17,"BB","Nucella_ostrina","Nucella_canaliculata",0,0,8,NA,22.8571428571428,12.49,NA,NA
+2015-02-17,"BB","Nucella_ostrina","Nucella_ostrina",0,0,98,NA,22.8571428571428,12.49,NA,NA
+2015-02-17,"BB","Pollicipes_polymerus","Nucella_canaliculata",0,0,8,NA,3.8095238095238,12.49,NA,NA
+2015-02-17,"BB","Pollicipes_polymerus","Nucella_ostrina",0,0,98,NA,3.8095238095238,12.49,NA,NA
+2015-02-17,"BB","Semibalanus_cariosus","Nucella_canaliculata",0,0,8,NA,26.6666666666667,12.49,NA,NA
+2015-02-17,"BB","Semibalanus_cariosus","Nucella_ostrina",0,0,98,NA,26.6666666666667,12.49,NA,NA
+2015-02-17,"BC","Adula_californiensis","Nucella_canaliculata",0,0,21,NA,0,12.49,NA,NA
+2015-02-17,"BC","Adula_californiensis","Nucella_ostrina",0,0,122,NA,0,12.49,NA,NA
+2015-02-17,"BC","Balanus_glandula","Nucella_canaliculata",0,0,21,NA,7165.71428571428,12.49,NA,NA
+2015-02-17,"BC","Balanus_glandula","Nucella_ostrina",0.0188679245283019,2,122,89.3607758102767,7165.71428571428,12.49,2.94657643991325e-08,0.000211143248894355
+2015-02-17,"BC","Chthamalus_dalli","Nucella_canaliculata",0,0,21,NA,769.52380952381,12.49,NA,NA
+2015-02-17,"BC","Chthamalus_dalli","Nucella_ostrina",0,0,122,NA,769.52380952381,12.49,NA,NA
+2015-02-17,"BC","Hiatella_arctica","Nucella_canaliculata",0,0,21,NA,0,12.49,NA,NA
+2015-02-17,"BC","Hiatella_arctica","Nucella_ostrina",0,0,122,NA,0,12.49,NA,NA
+2015-02-17,"BC","Limpets","Nucella_canaliculata",0,0,21,NA,1078.09523809524,12.49,NA,NA
+2015-02-17,"BC","Limpets","Nucella_ostrina",0,0,122,NA,1078.09523809524,12.49,NA,NA
+2015-02-17,"BC","Littorina_sitkana","Nucella_canaliculata",0,0,21,NA,1451.42857142857,12.49,NA,NA
+2015-02-17,"BC","Littorina_sitkana","Nucella_ostrina",0,0,122,NA,1451.42857142857,12.49,NA,NA
+2015-02-17,"BC","Modiolus_modiolus","Nucella_canaliculata",0,0,21,NA,0,12.49,NA,NA
+2015-02-17,"BC","Modiolus_modiolus","Nucella_ostrina",0,0,122,NA,0,12.49,NA,NA
+2015-02-17,"BC","Mytilus_californianus","Nucella_canaliculata",0,0,21,NA,3.8095238095238,12.49,NA,NA
+2015-02-17,"BC","Mytilus_californianus","Nucella_ostrina",0,0,122,NA,3.8095238095238,12.49,NA,NA
+2015-02-17,"BC","Mytilus_trossulus","Nucella_canaliculata",0.105263157894737,2,21,59.3534649217135,4491.42857142857,12.49,3.94862435759338e-07,0.00177349642575337
+2015-02-17,"BC","Mytilus_trossulus","Nucella_ostrina",0.132075471698113,14,122,56.2125481901771,4491.42857142857,12.49,5.23123704919764e-07,0.0023495727546682
+2015-02-17,"BC","Nucella_ostrina","Nucella_canaliculata",0,0,21,NA,57.142857142857,12.49,NA,NA
+2015-02-17,"BC","Nucella_ostrina","Nucella_ostrina",0,0,122,NA,57.142857142857,12.49,NA,NA
+2015-02-17,"BC","Pollicipes_polymerus","Nucella_canaliculata",0,0,21,NA,30.4761904761905,12.49,NA,NA
+2015-02-17,"BC","Pollicipes_polymerus","Nucella_ostrina",0,0,122,NA,30.4761904761905,12.49,NA,NA
+2015-02-17,"BC","Semibalanus_cariosus","Nucella_canaliculata",0,0,21,NA,19.047619047619,12.49,NA,NA
+2015-02-17,"BC","Semibalanus_cariosus","Nucella_ostrina",0,0,122,NA,19.047619047619,12.49,NA,NA
+2015-02-17,"BD","Adula_californiensis","Nucella_canaliculata",0,0,25,NA,0,12.49,NA,NA
+2015-02-17,"BD","Adula_californiensis","Nucella_ostrina",0,0,54,NA,0,12.49,NA,NA
+2015-02-17,"BD","Balanus_glandula","Nucella_canaliculata",0,0,25,NA,6689.52380952381,12.49,NA,NA
+2015-02-17,"BD","Balanus_glandula","Nucella_ostrina",0.0238095238095238,1,54,66.8384820774155,6689.52380952381,12.49,5.32511421849169e-08,0.000356224783530339
+2015-02-17,"BD","Chthamalus_dalli","Nucella_canaliculata",0,0,25,NA,853.333333333334,12.49,NA,NA
+2015-02-17,"BD","Chthamalus_dalli","Nucella_ostrina",0,0,54,NA,853.333333333334,12.49,NA,NA
+2015-02-17,"BD","Hiatella_arctica","Nucella_canaliculata",0,0,25,NA,0,12.49,NA,NA
+2015-02-17,"BD","Hiatella_arctica","Nucella_ostrina",0,0,54,NA,0,12.49,NA,NA
+2015-02-17,"BD","Limpets","Nucella_canaliculata",0,0,25,NA,2438.09523809524,12.49,NA,NA
+2015-02-17,"BD","Limpets","Nucella_ostrina",0,0,54,NA,2438.09523809524,12.49,NA,NA
+2015-02-17,"BD","Littorina_sitkana","Nucella_canaliculata",0,0,25,NA,2460.95238095238,12.49,NA,NA
+2015-02-17,"BD","Littorina_sitkana","Nucella_ostrina",0,0,54,NA,2460.95238095238,12.49,NA,NA
+2015-02-17,"BD","Modiolus_modiolus","Nucella_canaliculata",0,0,25,NA,0,12.49,NA,NA
+2015-02-17,"BD","Modiolus_modiolus","Nucella_ostrina",0,0,54,NA,0,12.49,NA,NA
+2015-02-17,"BD","Mytilus_californianus","Nucella_canaliculata",0,0,25,NA,192,12.49,NA,NA
+2015-02-17,"BD","Mytilus_californianus","Nucella_ostrina",0,0,54,NA,192,12.49,NA,NA
+2015-02-17,"BD","Mytilus_trossulus","Nucella_canaliculata",0.136363636363636,3,25,82.7420247883881,25414.8571428571,12.49,6.48462336325978e-08,0.00164805776402481
+2015-02-17,"BD","Mytilus_trossulus","Nucella_ostrina",0.261904761904762,11,54,59.7753009194021,25414.8571428571,12.49,1.72398685767185e-07,0.00438148797038932
+2015-02-17,"BD","Nucella_ostrina","Nucella_canaliculata",0,0,25,NA,41.9047619047619,12.49,NA,NA
+2015-02-17,"BD","Nucella_ostrina","Nucella_ostrina",0,0,54,NA,41.9047619047619,12.49,NA,NA
+2015-02-17,"BD","Pollicipes_polymerus","Nucella_canaliculata",0,0,25,NA,15820.9523809524,12.49,NA,NA
+2015-02-17,"BD","Pollicipes_polymerus","Nucella_ostrina",0,0,54,NA,15820.9523809524,12.49,NA,NA
+2015-02-17,"BD","Semibalanus_cariosus","Nucella_canaliculata",0,0,25,NA,34.2857142857143,12.49,NA,NA
+2015-02-17,"BD","Semibalanus_cariosus","Nucella_ostrina",0,0,54,NA,34.2857142857143,12.49,NA,NA
+2015-02-17,"BE","Adula_californiensis","Nucella_canaliculata",0,0,12,NA,0,12.49,NA,NA
+2015-02-17,"BE","Adula_californiensis","Nucella_ostrina",0,0,73,NA,0,12.49,NA,NA
+2015-02-17,"BE","Balanus_glandula","Nucella_canaliculata",0,0,12,NA,7634.28571428571,12.49,NA,NA
+2015-02-17,"BE","Balanus_glandula","Nucella_ostrina",0.0847457627118644,5,73,44.4070922349651,7634.28571428571,12.49,2.49975385400261e-07,0.00190838351368428
+2015-02-17,"BE","Chthamalus_dalli","Nucella_canaliculata",0,0,12,NA,0,12.49,NA,NA
+2015-02-17,"BE","Chthamalus_dalli","Nucella_ostrina",0.0169491525423729,1,73,17.6109608102594,0,12.49,Inf,0.000962420660915842
+2015-02-17,"BE","Hiatella_arctica","Nucella_canaliculata",0,0,12,NA,0,12.49,NA,NA
+2015-02-17,"BE","Hiatella_arctica","Nucella_ostrina",0,0,73,NA,0,12.49,NA,NA
+2015-02-17,"BE","Limpets","Nucella_canaliculata",0,0,12,NA,537.142857142857,12.49,NA,NA
+2015-02-17,"BE","Limpets","Nucella_ostrina",0,0,73,NA,537.142857142857,12.49,NA,NA
+2015-02-17,"BE","Littorina_sitkana","Nucella_canaliculata",0,0,12,NA,4194.28571428571,12.49,NA,NA
+2015-02-17,"BE","Littorina_sitkana","Nucella_ostrina",0,0,73,NA,4194.28571428571,12.49,NA,NA
+2015-02-17,"BE","Modiolus_modiolus","Nucella_canaliculata",0,0,12,NA,0,12.49,NA,NA
+2015-02-17,"BE","Modiolus_modiolus","Nucella_ostrina",0,0,73,NA,0,12.49,NA,NA
+2015-02-17,"BE","Mytilus_californianus","Nucella_canaliculata",0,0,12,NA,0,12.49,NA,NA
+2015-02-17,"BE","Mytilus_californianus","Nucella_ostrina",0,0,73,NA,0,12.49,NA,NA
+2015-02-17,"BE","Mytilus_trossulus","Nucella_canaliculata",0.0909090909090909,1,12,29.5886787508522,434.285714285714,12.49,7.07467019069384e-06,0.00307242819710132
+2015-02-17,"BE","Mytilus_trossulus","Nucella_ostrina",0.135593220338983,8,73,34.0211568639319,434.285714285714,12.49,9.17726673118273e-06,0.00398555583754221
+2015-02-17,"BE","Nucella_ostrina","Nucella_canaliculata",0,0,12,NA,0,12.49,NA,NA
+2015-02-17,"BE","Nucella_ostrina","Nucella_ostrina",0,0,73,NA,0,12.49,NA,NA
+2015-02-17,"BE","Pollicipes_polymerus","Nucella_canaliculata",0,0,12,NA,0,12.49,NA,NA
+2015-02-17,"BE","Pollicipes_polymerus","Nucella_ostrina",0,0,73,NA,0,12.49,NA,NA
+2015-02-17,"BE","Semibalanus_cariosus","Nucella_canaliculata",0,0,12,NA,0,12.49,NA,NA
+2015-02-17,"BE","Semibalanus_cariosus","Nucella_ostrina",0,0,73,NA,0,12.49,NA,NA
+2015-02-17,"BF","Adula_californiensis","Nucella_canaliculata",0,0,33,NA,0,12.49,NA,NA
+2015-02-17,"BF","Adula_californiensis","Nucella_ostrina",0,0,79,NA,0,12.49,NA,NA
+2015-02-17,"BF","Balanus_glandula","Nucella_canaliculata",0.285714285714286,4,33,57.2447896883103,6594.28571428571,12.49,7.56882094627924e-07,0.00499109678400356
+2015-02-17,"BF","Balanus_glandula","Nucella_ostrina",0,0,79,NA,6594.28571428571,12.49,NA,NA
+2015-02-17,"BF","Chthamalus_dalli","Nucella_canaliculata",0.357142857142857,5,33,18.9956408508131,0,12.49,Inf,0.0188013060442533
+2015-02-17,"BF","Chthamalus_dalli","Nucella_ostrina",0,0,79,NA,0,12.49,NA,NA
+2015-02-17,"BF","Hiatella_arctica","Nucella_canaliculata",0,0,33,NA,0,12.49,NA,NA
+2015-02-17,"BF","Hiatella_arctica","Nucella_ostrina",0,0,79,NA,0,12.49,NA,NA
+2015-02-17,"BF","Limpets","Nucella_canaliculata",0,0,33,NA,937.142857142857,12.49,NA,NA
+2015-02-17,"BF","Limpets","Nucella_ostrina",0,0,79,NA,937.142857142857,12.49,NA,NA
+2015-02-17,"BF","Littorina_sitkana","Nucella_canaliculata",0,0,33,NA,5565.71428571429,12.49,NA,NA
+2015-02-17,"BF","Littorina_sitkana","Nucella_ostrina",0,0,79,NA,5565.71428571429,12.49,NA,NA
+2015-02-17,"BF","Modiolus_modiolus","Nucella_canaliculata",0,0,33,NA,0,12.49,NA,NA
+2015-02-17,"BF","Modiolus_modiolus","Nucella_ostrina",0,0,79,NA,0,12.49,NA,NA
+2015-02-17,"BF","Mytilus_californianus","Nucella_canaliculata",0,0,33,NA,137.142857142857,12.49,NA,NA
+2015-02-17,"BF","Mytilus_californianus","Nucella_ostrina",0,0,79,NA,137.142857142857,12.49,NA,NA
+2015-02-17,"BF","Mytilus_trossulus","Nucella_canaliculata",0.714285714285714,10,33,40.745907141989,25097.1428571429,12.49,6.98495625287925e-07,0.0175302444929404
+2015-02-17,"BF","Mytilus_trossulus","Nucella_ostrina",0,0,79,NA,25097.1428571429,12.49,NA,NA
+2015-02-17,"BF","Nucella_ostrina","Nucella_canaliculata",0,0,33,NA,11.4285714285714,12.49,NA,NA
+2015-02-17,"BF","Nucella_ostrina","Nucella_ostrina",0,0,79,NA,11.4285714285714,12.49,NA,NA
+2015-02-17,"BF","Pollicipes_polymerus","Nucella_canaliculata",0,0,33,NA,4057.14285714286,12.49,NA,NA
+2015-02-17,"BF","Pollicipes_polymerus","Nucella_ostrina",0,0,79,NA,4057.14285714286,12.49,NA,NA
+2015-02-17,"BF","Semibalanus_cariosus","Nucella_canaliculata",0,0,33,NA,0,12.49,NA,NA
+2015-02-17,"BF","Semibalanus_cariosus","Nucella_ostrina",0,0,79,NA,0,12.49,NA,NA
+2015-02-17,"C","Adula_californiensis","Nucella_canaliculata",0,0,52,NA,0,12.49,NA,NA
+2015-02-17,"C","Adula_californiensis","Nucella_ostrina",0,0,95,NA,0,12.49,NA,NA
+2015-02-17,"C","Balanus_glandula","Nucella_canaliculata",0,0,52,NA,5843.80952380952,12.49,NA,NA
+2015-02-17,"C","Balanus_glandula","Nucella_ostrina",0.0684931506849315,5,95,37.5535186602955,5843.80952380952,12.49,3.1210480645748e-07,0.00182388104040295
+2015-02-17,"C","Chthamalus_dalli","Nucella_canaliculata",0,0,52,NA,480,12.49,NA,NA
+2015-02-17,"C","Chthamalus_dalli","Nucella_ostrina",0,0,95,NA,480,12.49,NA,NA
+2015-02-17,"C","Hiatella_arctica","Nucella_canaliculata",0,0,52,NA,0,12.49,NA,NA
+2015-02-17,"C","Hiatella_arctica","Nucella_ostrina",0,0,95,NA,0,12.49,NA,NA
+2015-02-17,"C","Limpets","Nucella_canaliculata",0,0,52,NA,495.238095238095,12.49,NA,NA
+2015-02-17,"C","Limpets","Nucella_ostrina",0,0,95,NA,495.238095238095,12.49,NA,NA
+2015-02-17,"C","Littorina_sitkana","Nucella_canaliculata",0,0,52,NA,289.52380952381,12.49,NA,NA
+2015-02-17,"C","Littorina_sitkana","Nucella_ostrina",0,0,95,NA,289.52380952381,12.49,NA,NA
+2015-02-17,"C","Modiolus_modiolus","Nucella_canaliculata",0,0,52,NA,0,12.49,NA,NA
+2015-02-17,"C","Modiolus_modiolus","Nucella_ostrina",0,0,95,NA,0,12.49,NA,NA
+2015-02-17,"C","Mytilus_californianus","Nucella_canaliculata",0,0,52,NA,190.476190476191,12.49,NA,NA
+2015-02-17,"C","Mytilus_californianus","Nucella_ostrina",0,0,95,NA,190.476190476191,12.49,NA,NA
+2015-02-17,"C","Mytilus_trossulus","Nucella_canaliculata",0.04,2,52,55.7283051520243,1870.47619047619,12.49,3.83735494172434e-07,0.000717768105290153
+2015-02-17,"C","Mytilus_trossulus","Nucella_ostrina",0.232876712328767,17,95,42.7332993474171,1870.47619047619,12.49,2.91344921234048e-06,0.00544953738384449
+2015-02-17,"C","Nucella_ostrina","Nucella_canaliculata",0,0,52,NA,26.6666666666667,12.49,NA,NA
+2015-02-17,"C","Nucella_ostrina","Nucella_ostrina",0,0,95,NA,26.6666666666667,12.49,NA,NA
+2015-02-17,"C","Pollicipes_polymerus","Nucella_canaliculata",0,0,52,NA,4952.38095238095,12.49,NA,NA
+2015-02-17,"C","Pollicipes_polymerus","Nucella_ostrina",0,0,95,NA,4952.38095238095,12.49,NA,NA
+2015-02-17,"C","Semibalanus_cariosus","Nucella_canaliculata",0,0,52,NA,11.4285714285714,12.49,NA,NA
+2015-02-17,"C","Semibalanus_cariosus","Nucella_ostrina",0,0,95,NA,11.4285714285714,12.49,NA,NA
+2015-02-17,"D","Adula_californiensis","Nucella_canaliculata",0,0,42,NA,0,12.49,NA,NA
+2015-02-17,"D","Adula_californiensis","Nucella_ostrina",0,0,98,NA,0,12.49,NA,NA
+2015-02-17,"D","Balanus_glandula","Nucella_canaliculata",0.0263157894736842,1,42,56.0261191025707,9184,12.49,5.11439171801186e-08,0.000469705735382209
+2015-02-17,"D","Balanus_glandula","Nucella_ostrina",0.0333333333333333,3,98,53.2302720820141,9184,12.49,6.81848962772155e-08,0.000626210087409947
+2015-02-17,"D","Chthamalus_dalli","Nucella_canaliculata",0,0,42,NA,608,12.49,NA,NA
+2015-02-17,"D","Chthamalus_dalli","Nucella_ostrina",0,0,98,NA,608,12.49,NA,NA
+2015-02-17,"D","Hiatella_arctica","Nucella_canaliculata",0,0,42,NA,0,12.49,NA,NA
+2015-02-17,"D","Hiatella_arctica","Nucella_ostrina",0,0,98,NA,0,12.49,NA,NA
+2015-02-17,"D","Limpets","Nucella_canaliculata",0,0,42,NA,1685.71428571429,12.49,NA,NA
+2015-02-17,"D","Limpets","Nucella_ostrina",0,0,98,NA,1685.71428571429,12.49,NA,NA
+2015-02-17,"D","Littorina_sitkana","Nucella_canaliculata",0,0,42,NA,1325.71428571429,12.49,NA,NA
+2015-02-17,"D","Littorina_sitkana","Nucella_ostrina",0,0,98,NA,1325.71428571429,12.49,NA,NA
+2015-02-17,"D","Modiolus_modiolus","Nucella_canaliculata",0,0,42,NA,0,12.49,NA,NA
+2015-02-17,"D","Modiolus_modiolus","Nucella_ostrina",0,0,98,NA,0,12.49,NA,NA
+2015-02-17,"D","Mytilus_californianus","Nucella_canaliculata",0,0,42,NA,960,12.49,NA,NA
+2015-02-17,"D","Mytilus_californianus","Nucella_ostrina",0,0,98,NA,960,12.49,NA,NA
+2015-02-17,"D","Mytilus_trossulus","Nucella_canaliculata",0.0789473684210526,3,42,53.4835540524421,4736,12.49,3.11677682080125e-07,0.00147610550233147
+2015-02-17,"D","Mytilus_trossulus","Nucella_ostrina",0.0555555555555556,5,98,49.3396716688489,4736,12.49,2.37749463742108e-07,0.00112598146028262
+2015-02-17,"D","Nucella_ostrina","Nucella_canaliculata",0,0,42,NA,34.2857142857143,12.49,NA,NA
+2015-02-17,"D","Nucella_ostrina","Nucella_ostrina",0,0,98,NA,34.2857142857143,12.49,NA,NA
+2015-02-17,"D","Pollicipes_polymerus","Nucella_canaliculata",0,0,42,NA,85.7142857142859,12.49,NA,NA
+2015-02-17,"D","Pollicipes_polymerus","Nucella_ostrina",0,0,98,NA,85.7142857142859,12.49,NA,NA
+2015-02-17,"D","Semibalanus_cariosus","Nucella_canaliculata",0,0,42,NA,0,12.49,NA,NA
+2015-02-17,"D","Semibalanus_cariosus","Nucella_ostrina",0,0,98,NA,0,12.49,NA,NA
+2015-02-17,"E","Adula_californiensis","Nucella_canaliculata",0,0,38,NA,0,12.49,NA,NA
+2015-02-17,"E","Adula_californiensis","Nucella_ostrina",0,0,110,NA,0,12.49,NA,NA
+2015-02-17,"E","Balanus_glandula","Nucella_canaliculata",0,0,38,NA,2746.66666666667,12.49,NA,NA
+2015-02-17,"E","Balanus_glandula","Nucella_ostrina",0.0352941176470588,3,110,55.1188698829923,2746.66666666667,12.49,2.33128874766451e-07,0.000640327309358519
+2015-02-17,"E","Chthamalus_dalli","Nucella_canaliculata",0,0,38,NA,2415.23809523809,12.49,NA,NA
+2015-02-17,"E","Chthamalus_dalli","Nucella_ostrina",0,0,110,NA,2415.23809523809,12.49,NA,NA
+2015-02-17,"E","Hiatella_arctica","Nucella_canaliculata",0,0,38,NA,0,12.49,NA,NA
+2015-02-17,"E","Hiatella_arctica","Nucella_ostrina",0,0,110,NA,0,12.49,NA,NA
+2015-02-17,"E","Limpets","Nucella_canaliculata",0,0,38,NA,312.380952380952,12.49,NA,NA
+2015-02-17,"E","Limpets","Nucella_ostrina",0,0,110,NA,312.380952380952,12.49,NA,NA
+2015-02-17,"E","Littorina_sitkana","Nucella_canaliculata",0,0,38,NA,358.095238095238,12.49,NA,NA
+2015-02-17,"E","Littorina_sitkana","Nucella_ostrina",0,0,110,NA,358.095238095238,12.49,NA,NA
+2015-02-17,"E","Modiolus_modiolus","Nucella_canaliculata",0,0,38,NA,0,12.49,NA,NA
+2015-02-17,"E","Modiolus_modiolus","Nucella_ostrina",0,0,110,NA,0,12.49,NA,NA
+2015-02-17,"E","Mytilus_californianus","Nucella_canaliculata",0,0,38,NA,11.4285714285714,12.49,NA,NA
+2015-02-17,"E","Mytilus_californianus","Nucella_ostrina",0,0,110,NA,11.4285714285714,12.49,NA,NA
+2015-02-17,"E","Mytilus_trossulus","Nucella_canaliculata",0.0555555555555556,2,38,43.3951096758913,4000,12.49,3.20056545371633e-07,0.00128022618148653
+2015-02-17,"E","Mytilus_trossulus","Nucella_ostrina",0.258823529411765,22,110,47.7897703369885,4000,12.49,1.35396930968007e-06,0.00541587723872027
+2015-02-17,"E","Nucella_ostrina","Nucella_canaliculata",0,0,38,NA,19.047619047619,12.49,NA,NA
+2015-02-17,"E","Nucella_ostrina","Nucella_ostrina",0,0,110,NA,19.047619047619,12.49,NA,NA
+2015-02-17,"E","Pollicipes_polymerus","Nucella_canaliculata",0,0,38,NA,3390.47619047619,12.49,NA,NA
+2015-02-17,"E","Pollicipes_polymerus","Nucella_ostrina",0,0,110,NA,3390.47619047619,12.49,NA,NA
+2015-02-17,"E","Semibalanus_cariosus","Nucella_canaliculata",0,0,38,NA,0,12.49,NA,NA
+2015-02-17,"E","Semibalanus_cariosus","Nucella_ostrina",0,0,110,NA,0,12.49,NA,NA
+2015-02-17,"F","Adula_californiensis","Nucella_canaliculata",0,0,29,NA,0,12.49,NA,NA
+2015-02-17,"F","Adula_californiensis","Nucella_ostrina",0,0,154,NA,0,12.49,NA,NA
+2015-02-17,"F","Balanus_glandula","Nucella_canaliculata",0.136363636363636,3,29,58.7508785241369,5893.33333333333,12.49,3.93843065177254e-07,0.00232104846411128
+2015-02-17,"F","Balanus_glandula","Nucella_ostrina",0.0151515151515152,2,154,66.2417321855146,5893.33333333333,12.49,3.88117636494052e-08,0.000228730660440495
+2015-02-17,"F","Chthamalus_dalli","Nucella_canaliculata",0,0,29,NA,438.095238095238,12.49,NA,NA
+2015-02-17,"F","Chthamalus_dalli","Nucella_ostrina",0,0,154,NA,438.095238095238,12.49,NA,NA
+2015-02-17,"F","Hiatella_arctica","Nucella_canaliculata",0,0,29,NA,0,12.49,NA,NA
+2015-02-17,"F","Hiatella_arctica","Nucella_ostrina",0,0,154,NA,0,12.49,NA,NA
+2015-02-17,"F","Limpets","Nucella_canaliculata",0,0,29,NA,1737.14285714286,12.49,NA,NA
+2015-02-17,"F","Limpets","Nucella_ostrina",0,0,154,NA,1737.14285714286,12.49,NA,NA
+2015-02-17,"F","Littorina_sitkana","Nucella_canaliculata",0,0,29,NA,1036.19047619048,12.49,NA,NA
+2015-02-17,"F","Littorina_sitkana","Nucella_ostrina",0,0,154,NA,1036.19047619048,12.49,NA,NA
+2015-02-17,"F","Modiolus_modiolus","Nucella_canaliculata",0,0,29,NA,0,12.49,NA,NA
+2015-02-17,"F","Modiolus_modiolus","Nucella_ostrina",0,0,154,NA,0,12.49,NA,NA
+2015-02-17,"F","Mytilus_californianus","Nucella_canaliculata",0,0,29,NA,0,12.49,NA,NA
+2015-02-17,"F","Mytilus_californianus","Nucella_ostrina",0,0,154,NA,0,12.49,NA,NA
+2015-02-17,"F","Mytilus_trossulus","Nucella_canaliculata",0.181818181818182,4,29,77.8150956884139,5935.2380952381,12.49,3.93672709279957e-07,0.00233654126117399
+2015-02-17,"F","Mytilus_trossulus","Nucella_ostrina",0.151515151515152,20,154,51.5803092253168,5935.2380952381,12.49,4.94918829856836e-07,0.00293746109301695
+2015-02-17,"F","Nucella_ostrina","Nucella_canaliculata",0,0,29,NA,41.9047619047619,12.49,NA,NA
+2015-02-17,"F","Nucella_ostrina","Nucella_ostrina",0,0,154,NA,41.9047619047619,12.49,NA,NA
+2015-02-17,"F","Pollicipes_polymerus","Nucella_canaliculata",0,0,29,NA,34.2857142857143,12.49,NA,NA
+2015-02-17,"F","Pollicipes_polymerus","Nucella_ostrina",0,0,154,NA,34.2857142857143,12.49,NA,NA
+2015-02-17,"F","Semibalanus_cariosus","Nucella_canaliculata",0,0,29,NA,7.6190476190476,12.49,NA,NA
+2015-02-17,"F","Semibalanus_cariosus","Nucella_ostrina",0,0,154,NA,7.6190476190476,12.49,NA,NA
+2015-02-17,"G","Adula_californiensis","Nucella_canaliculata",0,0,61,NA,0,12.49,NA,NA
+2015-02-17,"G","Adula_californiensis","Nucella_ostrina",0,0,66,NA,0,12.49,NA,NA
+2015-02-17,"G","Balanus_glandula","Nucella_canaliculata",0,0,61,NA,12267.4285714286,12.49,NA,NA
+2015-02-17,"G","Balanus_glandula","Nucella_ostrina",0.0196078431372549,1,66,17.6109608102594,12267.4285714286,12.49,9.07597383790199e-08,0.00111338860772617
+2015-02-17,"G","Chthamalus_dalli","Nucella_canaliculata",0,0,61,NA,758.095238095239,12.49,NA,NA
+2015-02-17,"G","Chthamalus_dalli","Nucella_ostrina",0,0,66,NA,758.095238095239,12.49,NA,NA
+2015-02-17,"G","Hiatella_arctica","Nucella_canaliculata",0,0,61,NA,0,12.49,NA,NA
+2015-02-17,"G","Hiatella_arctica","Nucella_ostrina",0,0,66,NA,0,12.49,NA,NA
+2015-02-17,"G","Limpets","Nucella_canaliculata",0,0,61,NA,575.238095238095,12.49,NA,NA
+2015-02-17,"G","Limpets","Nucella_ostrina",0,0,66,NA,575.238095238095,12.49,NA,NA
+2015-02-17,"G","Littorina_sitkana","Nucella_canaliculata",0,0,61,NA,483.809523809524,12.49,NA,NA
+2015-02-17,"G","Littorina_sitkana","Nucella_ostrina",0,0,66,NA,483.809523809524,12.49,NA,NA
+2015-02-17,"G","Modiolus_modiolus","Nucella_canaliculata",0,0,61,NA,0,12.49,NA,NA
+2015-02-17,"G","Modiolus_modiolus","Nucella_ostrina",0,0,66,NA,0,12.49,NA,NA
+2015-02-17,"G","Mytilus_californianus","Nucella_canaliculata",0,0,61,NA,537.142857142857,12.49,NA,NA
+2015-02-17,"G","Mytilus_californianus","Nucella_ostrina",0,0,66,NA,537.142857142857,12.49,NA,NA
+2015-02-17,"G","Mytilus_trossulus","Nucella_canaliculata",0.0892857142857143,5,61,51.4565046590392,6457.14285714286,12.49,2.68720810322074e-07,0.00173516866093682
+2015-02-17,"G","Mytilus_trossulus","Nucella_ostrina",0.274509803921569,14,66,50.0969919841845,6457.14285714286,12.49,8.48605446545801e-07,0.00547956659769574
+2015-02-17,"G","Nucella_ostrina","Nucella_canaliculata",0,0,61,NA,22.8571428571429,12.49,NA,NA
+2015-02-17,"G","Nucella_ostrina","Nucella_ostrina",0,0,66,NA,22.8571428571429,12.49,NA,NA
+2015-02-17,"G","Pollicipes_polymerus","Nucella_canaliculata",0,0,61,NA,3310.47619047619,12.49,NA,NA
+2015-02-17,"G","Pollicipes_polymerus","Nucella_ostrina",0,0,66,NA,3310.47619047619,12.49,NA,NA
+2015-02-17,"G","Semibalanus_cariosus","Nucella_canaliculata",0,0,61,NA,60.952380952381,12.49,NA,NA
+2015-02-17,"G","Semibalanus_cariosus","Nucella_ostrina",0,0,66,NA,60.952380952381,12.49,NA,NA
+2015-03-17,"A","Adula_californiensis","Nucella_canaliculata",0,0,29,NA,0,11.58,NA,NA
+2015-03-17,"A","Adula_californiensis","Nucella_ostrina",0,0,117,NA,0,11.58,NA,NA
+2015-03-17,"A","Balanus_glandula","Nucella_canaliculata",0.0357142857142857,1,29,18.2974989382785,3417.14285714286,11.58,5.71198558446575e-07,0.00195186707400601
+2015-03-17,"A","Balanus_glandula","Nucella_ostrina",0.00980392156862745,1,117,23.0112993994649,3417.14285714286,11.58,1.24679642944999e-07,0.000426048151320626
+2015-03-17,"A","Chthamalus_dalli","Nucella_canaliculata",0,0,29,NA,1897.14285714286,11.58,NA,NA
+2015-03-17,"A","Chthamalus_dalli","Nucella_ostrina",0.0294117647058824,3,117,16.2225756116065,1897.14285714286,11.58,9.55655230012084e-07,0.00181301449350864
+2015-03-17,"A","Hiatella_arctica","Nucella_canaliculata",0,0,29,NA,0,11.58,NA,NA
+2015-03-17,"A","Hiatella_arctica","Nucella_ostrina",0,0,117,NA,0,11.58,NA,NA
+2015-03-17,"A","Limpets","Nucella_canaliculata",0,0,29,NA,200,11.58,NA,NA
+2015-03-17,"A","Limpets","Nucella_ostrina",0,0,117,NA,200,11.58,NA,NA
+2015-03-17,"A","Littorina_sitkana","Nucella_canaliculata",0,0,29,NA,28.5714285714286,11.58,NA,NA
+2015-03-17,"A","Littorina_sitkana","Nucella_ostrina",0,0,117,NA,28.5714285714286,11.58,NA,NA
+2015-03-17,"A","Modiolus_modiolus","Nucella_canaliculata",0,0,29,NA,0,11.58,NA,NA
+2015-03-17,"A","Modiolus_modiolus","Nucella_ostrina",0,0,117,NA,0,11.58,NA,NA
+2015-03-17,"A","Mytilus_californianus","Nucella_canaliculata",0,0,29,NA,417.142857142857,11.58,NA,NA
+2015-03-17,"A","Mytilus_californianus","Nucella_ostrina",0,0,117,NA,417.142857142857,11.58,NA,NA
+2015-03-17,"A","Mytilus_trossulus","Nucella_canaliculata",0,0,29,NA,1188.57142857143,11.58,NA,NA
+2015-03-17,"A","Mytilus_trossulus","Nucella_ostrina",0.107843137254902,11,117,46.7916664881046,1188.57142857143,11.58,1.93909333772459e-06,0.00230475093855266
+2015-03-17,"A","Nucella_ostrina","Nucella_canaliculata",0,0,29,NA,28.5714285714286,11.58,NA,NA
+2015-03-17,"A","Nucella_ostrina","Nucella_ostrina",0,0,117,NA,28.5714285714286,11.58,NA,NA
+2015-03-17,"A","Pollicipes_polymerus","Nucella_canaliculata",0,0,29,NA,1571.42857142857,11.58,NA,NA
+2015-03-17,"A","Pollicipes_polymerus","Nucella_ostrina",0,0,117,NA,1571.42857142857,11.58,NA,NA
+2015-03-17,"A","Semibalanus_cariosus","Nucella_canaliculata",0,0,29,NA,5.7142857142857,11.58,NA,NA
+2015-03-17,"A","Semibalanus_cariosus","Nucella_ostrina",0,0,117,NA,5.7142857142857,11.58,NA,NA
+2015-03-17,"AB","Adula_californiensis","Nucella_canaliculata",0,0,34,NA,0,11.58,NA,NA
+2015-03-17,"AB","Adula_californiensis","Nucella_ostrina",0,0,140,NA,0,11.58,NA,NA
+2015-03-17,"AB","Balanus_glandula","Nucella_canaliculata",0,0,34,NA,2257.14285714286,11.58,NA,NA
+2015-03-17,"AB","Balanus_glandula","Nucella_ostrina",0,0,140,NA,2257.14285714286,11.58,NA,NA
+2015-03-17,"AB","Chthamalus_dalli","Nucella_canaliculata",0,0,34,NA,577.142857142857,11.58,NA,NA
+2015-03-17,"AB","Chthamalus_dalli","Nucella_ostrina",0.00819672131147541,1,140,9.63491666263881,577.142857142857,11.58,1.47403868589674e-06,0.00085073089871755
+2015-03-17,"AB","Hiatella_arctica","Nucella_canaliculata",0,0,34,NA,0,11.58,NA,NA
+2015-03-17,"AB","Hiatella_arctica","Nucella_ostrina",0,0,140,NA,0,11.58,NA,NA
+2015-03-17,"AB","Limpets","Nucella_canaliculata",0,0,34,NA,211.428571428572,11.58,NA,NA
+2015-03-17,"AB","Limpets","Nucella_ostrina",0,0,140,NA,211.428571428572,11.58,NA,NA
+2015-03-17,"AB","Littorina_sitkana","Nucella_canaliculata",0,0,34,NA,325.714285714285,11.58,NA,NA
+2015-03-17,"AB","Littorina_sitkana","Nucella_ostrina",0,0,140,NA,325.714285714285,11.58,NA,NA
+2015-03-17,"AB","Modiolus_modiolus","Nucella_canaliculata",0,0,34,NA,0,11.58,NA,NA
+2015-03-17,"AB","Modiolus_modiolus","Nucella_ostrina",0,0,140,NA,0,11.58,NA,NA
+2015-03-17,"AB","Mytilus_californianus","Nucella_canaliculata",0,0,34,NA,261.714285714286,11.58,NA,NA
+2015-03-17,"AB","Mytilus_californianus","Nucella_ostrina",0,0,140,NA,261.714285714286,11.58,NA,NA
+2015-03-17,"AB","Mytilus_trossulus","Nucella_canaliculata",0.0303030303030303,1,34,32.8460814375469,9046.85714285714,11.58,1.01977594240508e-07,0.000922576726866127
+2015-03-17,"AB","Mytilus_trossulus","Nucella_ostrina",0.139344262295082,17,140,49.6717182988105,9046.85714285714,11.58,3.10086011083257e-07,0.00280530384426864
+2015-03-17,"AB","Nucella_ostrina","Nucella_canaliculata",0,0,34,NA,160,11.58,NA,NA
+2015-03-17,"AB","Nucella_ostrina","Nucella_ostrina",0,0,140,NA,160,11.58,NA,NA
+2015-03-17,"AB","Pollicipes_polymerus","Nucella_canaliculata",0,0,34,NA,6754.28571428572,11.58,NA,NA
+2015-03-17,"AB","Pollicipes_polymerus","Nucella_ostrina",0,0,140,NA,6754.28571428572,11.58,NA,NA
+2015-03-17,"AB","Semibalanus_cariosus","Nucella_canaliculata",0,0,34,NA,28.5714285714286,11.58,NA,NA
+2015-03-17,"AB","Semibalanus_cariosus","Nucella_ostrina",0,0,140,NA,28.5714285714286,11.58,NA,NA
+2015-03-17,"AC","Adula_californiensis","Nucella_canaliculata",0,0,16,NA,0,11.58,NA,NA
+2015-03-17,"AC","Adula_californiensis","Nucella_ostrina",0,0,106,NA,0,11.58,NA,NA
+2015-03-17,"AC","Balanus_glandula","Nucella_canaliculata",0,0,16,NA,16938.6666666667,11.58,NA,NA
+2015-03-17,"AC","Balanus_glandula","Nucella_ostrina",0.0561797752808989,5,106,54.0999662155017,16938.6666666667,11.58,6.13061131038699e-08,0.00103844381449542
+2015-03-17,"AC","Chthamalus_dalli","Nucella_canaliculata",0,0,16,NA,1472,11.58,NA,NA
+2015-03-17,"AC","Chthamalus_dalli","Nucella_ostrina",0,0,106,NA,1472,11.58,NA,NA
+2015-03-17,"AC","Hiatella_arctica","Nucella_canaliculata",0,0,16,NA,0,11.58,NA,NA
+2015-03-17,"AC","Hiatella_arctica","Nucella_ostrina",0,0,106,NA,0,11.58,NA,NA
+2015-03-17,"AC","Limpets","Nucella_canaliculata",0,0,16,NA,297.142857142857,11.58,NA,NA
+2015-03-17,"AC","Limpets","Nucella_ostrina",0,0,106,NA,297.142857142857,11.58,NA,NA
+2015-03-17,"AC","Littorina_sitkana","Nucella_canaliculata",0,0,16,NA,2228.57142857143,11.58,NA,NA
+2015-03-17,"AC","Littorina_sitkana","Nucella_ostrina",0,0,106,NA,2228.57142857143,11.58,NA,NA
+2015-03-17,"AC","Modiolus_modiolus","Nucella_canaliculata",0,0,16,NA,0,11.58,NA,NA
+2015-03-17,"AC","Modiolus_modiolus","Nucella_ostrina",0.0112359550561798,1,106,0,0,11.58,Inf,Inf
+2015-03-17,"AC","Mytilus_californianus","Nucella_canaliculata",0,0,16,NA,60.952380952381,11.58,NA,NA
+2015-03-17,"AC","Mytilus_californianus","Nucella_ostrina",0,0,106,NA,60.952380952381,11.58,NA,NA
+2015-03-17,"AC","Mytilus_trossulus","Nucella_canaliculata",0,0,16,NA,3401.90476190476,11.58,NA,NA
+2015-03-17,"AC","Mytilus_trossulus","Nucella_ostrina",0.123595505617978,11,106,48.3166144893523,3401.90476190476,11.58,7.51941460161451e-07,0.00255803323399686
+2015-03-17,"AC","Nucella_ostrina","Nucella_canaliculata",0,0,16,NA,114.285714285714,11.58,NA,NA
+2015-03-17,"AC","Nucella_ostrina","Nucella_ostrina",0,0,106,NA,114.285714285714,11.58,NA,NA
+2015-03-17,"AC","Pollicipes_polymerus","Nucella_canaliculata",0,0,16,NA,419.047619047618,11.58,NA,NA
+2015-03-17,"AC","Pollicipes_polymerus","Nucella_ostrina",0,0,106,NA,419.047619047618,11.58,NA,NA
+2015-03-17,"AC","Semibalanus_cariosus","Nucella_canaliculata",0,0,16,NA,7.61904761904763,11.58,NA,NA
+2015-03-17,"AC","Semibalanus_cariosus","Nucella_ostrina",0,0,106,NA,7.61904761904763,11.58,NA,NA
+2015-03-17,"AD","Adula_californiensis","Nucella_canaliculata",0,0,17,NA,0,11.58,NA,NA
+2015-03-17,"AD","Adula_californiensis","Nucella_ostrina",0,0,123,NA,0,11.58,NA,NA
+2015-03-17,"AD","Balanus_glandula","Nucella_canaliculata",0.0666666666666667,1,17,82.0153810554679,1660.95238095238,11.58,4.89391308829666e-07,0.000812855659618033
+2015-03-17,"AD","Balanus_glandula","Nucella_ostrina",0.0185185185185185,2,123,79.0166621614391,1660.95238095238,11.58,1.41101093184955e-07,0.000234362196680534
+2015-03-17,"AD","Chthamalus_dalli","Nucella_canaliculata",0,0,17,NA,906.666666666668,11.58,NA,NA
+2015-03-17,"AD","Chthamalus_dalli","Nucella_ostrina",0.0185185185185185,2,123,18.9537070820935,906.666666666668,11.58,1.07761698082817e-06,0.000977039395950877
+2015-03-17,"AD","Hiatella_arctica","Nucella_canaliculata",0,0,17,NA,0,11.58,NA,NA
+2015-03-17,"AD","Hiatella_arctica","Nucella_ostrina",0,0,123,NA,0,11.58,NA,NA
+2015-03-17,"AD","Limpets","Nucella_canaliculata",0,0,17,NA,323.809523809524,11.58,NA,NA
+2015-03-17,"AD","Limpets","Nucella_ostrina",0,0,123,NA,323.809523809524,11.58,NA,NA
+2015-03-17,"AD","Littorina_sitkana","Nucella_canaliculata",0,0,17,NA,346.666666666667,11.58,NA,NA
+2015-03-17,"AD","Littorina_sitkana","Nucella_ostrina",0,0,123,NA,346.666666666667,11.58,NA,NA
+2015-03-17,"AD","Modiolus_modiolus","Nucella_canaliculata",0,0,17,NA,0,11.58,NA,NA
+2015-03-17,"AD","Modiolus_modiolus","Nucella_ostrina",0,0,123,NA,0,11.58,NA,NA
+2015-03-17,"AD","Mytilus_californianus","Nucella_canaliculata",0,0,17,NA,102.857142857143,11.58,NA,NA
+2015-03-17,"AD","Mytilus_californianus","Nucella_ostrina",0,0,123,NA,102.857142857143,11.58,NA,NA
+2015-03-17,"AD","Mytilus_trossulus","Nucella_canaliculata",0.0666666666666667,1,17,34.283031871927,4278.09523809524,11.58,4.54547286994707e-07,0.00194459658398117
+2015-03-17,"AD","Mytilus_trossulus","Nucella_ostrina",0.101851851851852,11,123,47.9357999526293,4278.09523809524,11.58,4.96659219698556e-07,0.00212475544274849
+2015-03-17,"AD","Nucella_ostrina","Nucella_canaliculata",0,0,17,NA,68.5714285714285,11.58,NA,NA
+2015-03-17,"AD","Nucella_ostrina","Nucella_ostrina",0,0,123,NA,68.5714285714285,11.58,NA,NA
+2015-03-17,"AD","Pollicipes_polymerus","Nucella_canaliculata",0,0,17,NA,2281.90476190476,11.58,NA,NA
+2015-03-17,"AD","Pollicipes_polymerus","Nucella_ostrina",0,0,123,NA,2281.90476190476,11.58,NA,NA
+2015-03-17,"AD","Semibalanus_cariosus","Nucella_canaliculata",0,0,17,NA,19.047619047619,11.58,NA,NA
+2015-03-17,"AD","Semibalanus_cariosus","Nucella_ostrina",0,0,123,NA,19.047619047619,11.58,NA,NA
+2015-03-17,"AE","Adula_californiensis","Nucella_canaliculata",0,0,9,NA,0,11.58,NA,NA
+2015-03-17,"AE","Adula_californiensis","Nucella_ostrina",0,0,109,NA,0,11.58,NA,NA
+2015-03-17,"AE","Balanus_glandula","Nucella_canaliculata",0,0,9,NA,6300.95238095238,11.58,NA,NA
+2015-03-17,"AE","Balanus_glandula","Nucella_ostrina",0.0204081632653061,2,109,47.8029915969877,6300.95238095238,11.58,6.77552022677427e-08,0.000426922303050844
+2015-03-17,"AE","Chthamalus_dalli","Nucella_canaliculata",0,0,9,NA,2295.61904761905,11.58,NA,NA
+2015-03-17,"AE","Chthamalus_dalli","Nucella_ostrina",0.0102040816326531,1,109,16.2107303759132,2295.61904761905,11.58,2.74202570814884e-07,0.000629464644468757
+2015-03-17,"AE","Hiatella_arctica","Nucella_canaliculata",0,0,9,NA,0,11.58,NA,NA
+2015-03-17,"AE","Hiatella_arctica","Nucella_ostrina",0,0,109,NA,0,11.58,NA,NA
+2015-03-17,"AE","Limpets","Nucella_canaliculata",0,0,9,NA,598.095238095237,11.58,NA,NA
+2015-03-17,"AE","Limpets","Nucella_ostrina",0,0,109,NA,598.095238095237,11.58,NA,NA
+2015-03-17,"AE","Littorina_sitkana","Nucella_canaliculata",0,0,9,NA,796.190476190476,11.58,NA,NA
+2015-03-17,"AE","Littorina_sitkana","Nucella_ostrina",0,0,109,NA,796.190476190476,11.58,NA,NA
+2015-03-17,"AE","Modiolus_modiolus","Nucella_canaliculata",0,0,9,NA,0,11.58,NA,NA
+2015-03-17,"AE","Modiolus_modiolus","Nucella_ostrina",0,0,109,NA,0,11.58,NA,NA
+2015-03-17,"AE","Mytilus_californianus","Nucella_canaliculata",0,0,9,NA,102.857142857143,11.58,NA,NA
+2015-03-17,"AE","Mytilus_californianus","Nucella_ostrina",0,0,109,NA,102.857142857143,11.58,NA,NA
+2015-03-17,"AE","Mytilus_trossulus","Nucella_canaliculata",0.125,1,9,59.2802161211461,8601.14285714286,11.58,2.45156873279118e-07,0.00210862928948416
+2015-03-17,"AE","Mytilus_trossulus","Nucella_ostrina",0.0816326530612245,8,109,42.7693868335521,8601.14285714286,11.58,2.21908902911087e-07,0.0019086701752101
+2015-03-17,"AE","Nucella_ostrina","Nucella_canaliculata",0,0,9,NA,60.9523809523809,11.58,NA,NA
+2015-03-17,"AE","Nucella_ostrina","Nucella_ostrina",0,0,109,NA,60.9523809523809,11.58,NA,NA
+2015-03-17,"AE","Pollicipes_polymerus","Nucella_canaliculata",0,0,9,NA,639.999999999999,11.58,NA,NA
+2015-03-17,"AE","Pollicipes_polymerus","Nucella_ostrina",0,0,109,NA,639.999999999999,11.58,NA,NA
+2015-03-17,"AE","Semibalanus_cariosus","Nucella_canaliculata",0,0,9,NA,57.1428571428572,11.58,NA,NA
+2015-03-17,"AE","Semibalanus_cariosus","Nucella_ostrina",0,0,109,NA,57.1428571428572,11.58,NA,NA
+2015-03-17,"AF","Adula_californiensis","Nucella_canaliculata",0,0,23,NA,0,11.58,NA,NA
+2015-03-17,"AF","Adula_californiensis","Nucella_ostrina",0,0,106,NA,0,11.58,NA,NA
+2015-03-17,"AF","Balanus_glandula","Nucella_canaliculata",0,0,23,NA,9858.28571428573,11.58,NA,NA
+2015-03-17,"AF","Balanus_glandula","Nucella_ostrina",0.0779220779220779,6,106,26.0209585928857,9858.28571428573,11.58,3.03763671126105e-07,0.00299458905958147
+2015-03-17,"AF","Chthamalus_dalli","Nucella_canaliculata",0,0,23,NA,1583.2380952381,11.58,NA,NA
+2015-03-17,"AF","Chthamalus_dalli","Nucella_ostrina",0.012987012987013,1,106,20.1178804417557,1583.2380952381,11.58,4.07737654972953e-07,0.000645545788216226
+2015-03-17,"AF","Hiatella_arctica","Nucella_canaliculata",0,0,23,NA,0,11.58,NA,NA
+2015-03-17,"AF","Hiatella_arctica","Nucella_ostrina",0,0,106,NA,0,11.58,NA,NA
+2015-03-17,"AF","Limpets","Nucella_canaliculata",0,0,23,NA,289.523809523809,11.58,NA,NA
+2015-03-17,"AF","Limpets","Nucella_ostrina",0,0,106,NA,289.523809523809,11.58,NA,NA
+2015-03-17,"AF","Littorina_sitkana","Nucella_canaliculata",0,0,23,NA,735.238095238096,11.58,NA,NA
+2015-03-17,"AF","Littorina_sitkana","Nucella_ostrina",0,0,106,NA,735.238095238096,11.58,NA,NA
+2015-03-17,"AF","Modiolus_modiolus","Nucella_canaliculata",0,0,23,NA,0,11.58,NA,NA
+2015-03-17,"AF","Modiolus_modiolus","Nucella_ostrina",0,0,106,NA,0,11.58,NA,NA
+2015-03-17,"AF","Mytilus_californianus","Nucella_canaliculata",0,0,23,NA,0,11.58,NA,NA
+2015-03-17,"AF","Mytilus_californianus","Nucella_ostrina",0,0,106,NA,0,11.58,NA,NA
+2015-03-17,"AF","Mytilus_trossulus","Nucella_canaliculata",0,0,23,NA,5203.04761904762,11.58,NA,NA
+2015-03-17,"AF","Mytilus_trossulus","Nucella_ostrina",0.285714285714286,22,106,43.867100288525,5203.04761904762,11.58,1.25180080780179e-06,0.00651317921255498
+2015-03-17,"AF","Nucella_ostrina","Nucella_canaliculata",0,0,23,NA,26.6666666666666,11.58,NA,NA
+2015-03-17,"AF","Nucella_ostrina","Nucella_ostrina",0,0,106,NA,26.6666666666666,11.58,NA,NA
+2015-03-17,"AF","Pollicipes_polymerus","Nucella_canaliculata",0,0,23,NA,64.7619047619047,11.58,NA,NA
+2015-03-17,"AF","Pollicipes_polymerus","Nucella_ostrina",0,0,106,NA,64.7619047619047,11.58,NA,NA
+2015-03-17,"AF","Semibalanus_cariosus","Nucella_canaliculata",0,0,23,NA,11.4285714285714,11.58,NA,NA
+2015-03-17,"AF","Semibalanus_cariosus","Nucella_ostrina",0,0,106,NA,11.4285714285714,11.58,NA,NA
+2015-03-17,"AG","Adula_californiensis","Nucella_canaliculata",0,0,45,NA,0,11.58,NA,NA
+2015-03-17,"AG","Adula_californiensis","Nucella_ostrina",0,0,263,NA,0,11.58,NA,NA
+2015-03-17,"AG","Balanus_glandula","Nucella_canaliculata",0.05,2,45,66.7445417657524,6108.57142857143,11.58,1.22635044230962e-07,0.000749124927330848
+2015-03-17,"AG","Balanus_glandula","Nucella_ostrina",0.0468085106382979,11,263,73.2258250354355,6108.57142857143,11.58,1.04645580812427e-07,0.000639235005077051
+2015-03-17,"AG","Chthamalus_dalli","Nucella_canaliculata",0,0,45,NA,1068.57142857143,11.58,NA,NA
+2015-03-17,"AG","Chthamalus_dalli","Nucella_ostrina",0.00425531914893617,1,263,17.9197368515089,1068.57142857143,11.58,2.22227065801637e-07,0.000237465493170892
+2015-03-17,"AG","Hiatella_arctica","Nucella_canaliculata",0,0,45,NA,0,11.58,NA,NA
+2015-03-17,"AG","Hiatella_arctica","Nucella_ostrina",0,0,263,NA,0,11.58,NA,NA
+2015-03-17,"AG","Limpets","Nucella_canaliculata",0,0,45,NA,165.714285714285,11.58,NA,NA
+2015-03-17,"AG","Limpets","Nucella_ostrina",0,0,263,NA,165.714285714285,11.58,NA,NA
+2015-03-17,"AG","Littorina_sitkana","Nucella_canaliculata",0,0,45,NA,1245.71428571428,11.58,NA,NA
+2015-03-17,"AG","Littorina_sitkana","Nucella_ostrina",0,0,263,NA,1245.71428571428,11.58,NA,NA
+2015-03-17,"AG","Modiolus_modiolus","Nucella_canaliculata",0,0,45,NA,0,11.58,NA,NA
+2015-03-17,"AG","Modiolus_modiolus","Nucella_ostrina",0,0,263,NA,0,11.58,NA,NA
+2015-03-17,"AG","Mytilus_californianus","Nucella_canaliculata",0,0,45,NA,0,11.58,NA,NA
+2015-03-17,"AG","Mytilus_californianus","Nucella_ostrina",0,0,263,NA,0,11.58,NA,NA
+2015-03-17,"AG","Mytilus_trossulus","Nucella_canaliculata",0.075,3,45,53.8376300579742,5914.28571428572,11.58,2.35544532822755e-07,0.00139307766555172
+2015-03-17,"AG","Mytilus_trossulus","Nucella_ostrina",0.0680851063829787,16,263,53.6874815345755,5914.28571428572,11.58,2.14425675784129e-07,0.00126817471106614
+2015-03-17,"AG","Nucella_ostrina","Nucella_canaliculata",0,0,45,NA,45.7142857142857,11.58,NA,NA
+2015-03-17,"AG","Nucella_ostrina","Nucella_ostrina",0,0,263,NA,45.7142857142857,11.58,NA,NA
+2015-03-17,"AG","Pollicipes_polymerus","Nucella_canaliculata",0,0,45,NA,1908.57142857143,11.58,NA,NA
+2015-03-17,"AG","Pollicipes_polymerus","Nucella_ostrina",0,0,263,NA,1908.57142857143,11.58,NA,NA
+2015-03-17,"AG","Semibalanus_cariosus","Nucella_canaliculata",0,0,45,NA,17.1428571428571,11.58,NA,NA
+2015-03-17,"AG","Semibalanus_cariosus","Nucella_ostrina",0,0,263,NA,17.1428571428571,11.58,NA,NA
+2015-03-17,"B","Adula_californiensis","Nucella_canaliculata",0,0,43,NA,0,11.58,NA,NA
+2015-03-17,"B","Adula_californiensis","Nucella_ostrina",0,0,56,NA,0,11.58,NA,NA
+2015-03-17,"B","Balanus_glandula","Nucella_canaliculata",0,0,43,NA,1942.85714285714,11.58,NA,NA
+2015-03-17,"B","Balanus_glandula","Nucella_ostrina",0,0,56,NA,1942.85714285714,11.58,NA,NA
+2015-03-17,"B","Chthamalus_dalli","Nucella_canaliculata",0,0,43,NA,281.904761904762,11.58,NA,NA
+2015-03-17,"B","Chthamalus_dalli","Nucella_ostrina",0,0,56,NA,281.904761904762,11.58,NA,NA
+2015-03-17,"B","Hiatella_arctica","Nucella_canaliculata",0,0,43,NA,0,11.58,NA,NA
+2015-03-17,"B","Hiatella_arctica","Nucella_ostrina",0,0,56,NA,0,11.58,NA,NA
+2015-03-17,"B","Limpets","Nucella_canaliculata",0,0,43,NA,396.190476190476,11.58,NA,NA
+2015-03-17,"B","Limpets","Nucella_ostrina",0,0,56,NA,396.190476190476,11.58,NA,NA
+2015-03-17,"B","Littorina_sitkana","Nucella_canaliculata",0,0,43,NA,91.4285714285716,11.58,NA,NA
+2015-03-17,"B","Littorina_sitkana","Nucella_ostrina",0,0,56,NA,91.4285714285716,11.58,NA,NA
+2015-03-17,"B","Modiolus_modiolus","Nucella_canaliculata",0,0,43,NA,0,11.58,NA,NA
+2015-03-17,"B","Modiolus_modiolus","Nucella_ostrina",0,0,56,NA,0,11.58,NA,NA
+2015-03-17,"B","Mytilus_californianus","Nucella_canaliculata",0,0,43,NA,19.047619047619,11.58,NA,NA
+2015-03-17,"B","Mytilus_californianus","Nucella_ostrina",0,0,56,NA,19.047619047619,11.58,NA,NA
+2015-03-17,"B","Mytilus_trossulus","Nucella_canaliculata",0.162162162162162,6,43,51.4412638475861,2537.14285714285,11.58,1.24249020800387e-06,0.00315237515630696
+2015-03-17,"B","Mytilus_trossulus","Nucella_ostrina",0.0566037735849057,3,56,56.6193032166486,2537.14285714285,11.58,3.94036037666946e-07,0.000999725718423565
+2015-03-17,"B","Nucella_ostrina","Nucella_canaliculata",0,0,43,NA,121.904761904762,11.58,NA,NA
+2015-03-17,"B","Nucella_ostrina","Nucella_ostrina",0,0,56,NA,121.904761904762,11.58,NA,NA
+2015-03-17,"B","Pollicipes_polymerus","Nucella_canaliculata",0,0,43,NA,5573.33333333335,11.58,NA,NA
+2015-03-17,"B","Pollicipes_polymerus","Nucella_ostrina",0,0,56,NA,5573.33333333335,11.58,NA,NA
+2015-03-17,"B","Semibalanus_cariosus","Nucella_canaliculata",0,0,43,NA,26.6666666666667,11.58,NA,NA
+2015-03-17,"B","Semibalanus_cariosus","Nucella_ostrina",0,0,56,NA,26.6666666666667,11.58,NA,NA
+2015-03-17,"BB","Adula_californiensis","Nucella_canaliculata",0,0,13,NA,0,11.58,NA,NA
+2015-03-17,"BB","Adula_californiensis","Nucella_ostrina",0,0,145,NA,0,11.58,NA,NA
+2015-03-17,"BB","Balanus_glandula","Nucella_canaliculata",0,0,13,NA,5230.47619047619,11.58,NA,NA
+2015-03-17,"BB","Balanus_glandula","Nucella_ostrina",0.0461538461538462,6,145,70.2708543336657,5230.47619047619,11.58,1.2557160203195e-07,0.000656799274628066
+2015-03-17,"BB","Chthamalus_dalli","Nucella_canaliculata",0,0,13,NA,1379.04761904762,11.58,NA,NA
+2015-03-17,"BB","Chthamalus_dalli","Nucella_ostrina",0.0153846153846154,2,145,31.7917741975078,1379.04761904762,11.58,3.5090747158103e-07,0.000483918113189838
+2015-03-17,"BB","Hiatella_arctica","Nucella_canaliculata",0,0,13,NA,0,11.58,NA,NA
+2015-03-17,"BB","Hiatella_arctica","Nucella_ostrina",0,0,145,NA,0,11.58,NA,NA
+2015-03-17,"BB","Limpets","Nucella_canaliculata",0,0,13,NA,281.904761904762,11.58,NA,NA
+2015-03-17,"BB","Limpets","Nucella_ostrina",0,0,145,NA,281.904761904762,11.58,NA,NA
+2015-03-17,"BB","Littorina_sitkana","Nucella_canaliculata",0,0,13,NA,1733.33333333334,11.58,NA,NA
+2015-03-17,"BB","Littorina_sitkana","Nucella_ostrina",0,0,145,NA,1733.33333333334,11.58,NA,NA
+2015-03-17,"BB","Modiolus_modiolus","Nucella_canaliculata",0,0,13,NA,0,11.58,NA,NA
+2015-03-17,"BB","Modiolus_modiolus","Nucella_ostrina",0,0,145,NA,0,11.58,NA,NA
+2015-03-17,"BB","Mytilus_californianus","Nucella_canaliculata",0,0,13,NA,0,11.58,NA,NA
+2015-03-17,"BB","Mytilus_californianus","Nucella_ostrina",0,0,145,NA,0,11.58,NA,NA
+2015-03-17,"BB","Mytilus_trossulus","Nucella_canaliculata",0.181818181818182,2,13,78.7135250574349,5078.09523809524,11.58,4.54869803134098e-07,0.00230987218124858
+2015-03-17,"BB","Mytilus_trossulus","Nucella_ostrina",0.0538461538461538,7,145,63.4642519303347,5078.09523809524,11.58,1.67080082393654e-07,0.000848448570783774
+2015-03-17,"BB","Nucella_ostrina","Nucella_canaliculata",0,0,13,NA,99.0476190476191,11.58,NA,NA
+2015-03-17,"BB","Nucella_ostrina","Nucella_ostrina",0,0,145,NA,99.0476190476191,11.58,NA,NA
+2015-03-17,"BB","Pollicipes_polymerus","Nucella_canaliculata",0,0,13,NA,7.6190476190476,11.58,NA,NA
+2015-03-17,"BB","Pollicipes_polymerus","Nucella_ostrina",0,0,145,NA,7.6190476190476,11.58,NA,NA
+2015-03-17,"BB","Semibalanus_cariosus","Nucella_canaliculata",0,0,13,NA,60.9523809523809,11.58,NA,NA
+2015-03-17,"BB","Semibalanus_cariosus","Nucella_ostrina",0,0,145,NA,60.9523809523809,11.58,NA,NA
+2015-03-17,"BC","Adula_californiensis","Nucella_canaliculata",0,0,77,NA,0,11.58,NA,NA
+2015-03-17,"BC","Adula_californiensis","Nucella_ostrina",0,0,89,NA,0,11.58,NA,NA
+2015-03-17,"BC","Balanus_glandula","Nucella_canaliculata",0,0,77,NA,5013.33333333333,11.58,NA,NA
+2015-03-17,"BC","Balanus_glandula","Nucella_ostrina",0.04,3,89,23.7410309127413,5013.33333333333,11.58,3.36073165212607e-07,0.0016848468015992
+2015-03-17,"BC","Chthamalus_dalli","Nucella_canaliculata",0,0,77,NA,1680,11.58,NA,NA
+2015-03-17,"BC","Chthamalus_dalli","Nucella_ostrina",0.0266666666666667,2,89,24.990158561315,1680,11.58,6.35170674650598e-07,0.001067086733413
+2015-03-17,"BC","Hiatella_arctica","Nucella_canaliculata",0,0,77,NA,0,11.58,NA,NA
+2015-03-17,"BC","Hiatella_arctica","Nucella_ostrina",0.0133333333333333,1,89,48.8780833340588,0,11.58,Inf,0.000272787564974802
+2015-03-17,"BC","Limpets","Nucella_canaliculata",0,0,77,NA,674.285714285714,11.58,NA,NA
+2015-03-17,"BC","Limpets","Nucella_ostrina",0,0,89,NA,674.285714285714,11.58,NA,NA
+2015-03-17,"BC","Littorina_sitkana","Nucella_canaliculata",0,0,77,NA,1360,11.58,NA,NA
+2015-03-17,"BC","Littorina_sitkana","Nucella_ostrina",0,0,89,NA,1360,11.58,NA,NA
+2015-03-17,"BC","Modiolus_modiolus","Nucella_canaliculata",0,0,77,NA,0,11.58,NA,NA
+2015-03-17,"BC","Modiolus_modiolus","Nucella_ostrina",0,0,89,NA,0,11.58,NA,NA
+2015-03-17,"BC","Mytilus_californianus","Nucella_canaliculata",0,0,77,NA,0,11.58,NA,NA
+2015-03-17,"BC","Mytilus_californianus","Nucella_ostrina",0,0,89,NA,0,11.58,NA,NA
+2015-03-17,"BC","Mytilus_trossulus","Nucella_canaliculata",0.0266666666666667,2,77,44.9830354822803,4156.19047619047,11.58,1.42634482537942e-07,0.000592816077900549
+2015-03-17,"BC","Mytilus_trossulus","Nucella_ostrina",0.106666666666667,8,89,49.4753156442316,4156.19047619047,11.58,5.18733991321103e-07,0.00215595727440504
+2015-03-17,"BC","Nucella_ostrina","Nucella_canaliculata",0,0,77,NA,53.3333333333333,11.58,NA,NA
+2015-03-17,"BC","Nucella_ostrina","Nucella_ostrina",0,0,89,NA,53.3333333333333,11.58,NA,NA
+2015-03-17,"BC","Pollicipes_polymerus","Nucella_canaliculata",0,0,77,NA,95.2380952380954,11.58,NA,NA
+2015-03-17,"BC","Pollicipes_polymerus","Nucella_ostrina",0,0,89,NA,95.2380952380954,11.58,NA,NA
+2015-03-17,"BC","Semibalanus_cariosus","Nucella_canaliculata",0,0,77,NA,11.4285714285714,11.58,NA,NA
+2015-03-17,"BC","Semibalanus_cariosus","Nucella_ostrina",0,0,89,NA,11.4285714285714,11.58,NA,NA
+2015-03-17,"BD","Adula_californiensis","Nucella_canaliculata",0,0,14,NA,0,11.58,NA,NA
+2015-03-17,"BD","Adula_californiensis","Nucella_ostrina",0,0,66,NA,0,11.58,NA,NA
+2015-03-17,"BD","Balanus_glandula","Nucella_canaliculata",0,0,14,NA,4575.2380952381,11.58,NA,NA
+2015-03-17,"BD","Balanus_glandula","Nucella_ostrina",0.0175438596491228,1,66,50.3128422064593,4575.2380952381,11.58,7.62136204899575e-08,0.000348695459841672
+2015-03-17,"BD","Chthamalus_dalli","Nucella_canaliculata",0,0,14,NA,876.190476190475,11.58,NA,NA
+2015-03-17,"BD","Chthamalus_dalli","Nucella_ostrina",0.0175438596491228,1,66,17.9197368515089,876.190476190475,11.58,1.1173648062532e-06,0.000979024401669465
+2015-03-17,"BD","Hiatella_arctica","Nucella_canaliculata",0,0,14,NA,0,11.58,NA,NA
+2015-03-17,"BD","Hiatella_arctica","Nucella_ostrina",0,0,66,NA,0,11.58,NA,NA
+2015-03-17,"BD","Limpets","Nucella_canaliculata",0,0,14,NA,4110.47619047619,11.58,NA,NA
+2015-03-17,"BD","Limpets","Nucella_ostrina",0,0,66,NA,4110.47619047619,11.58,NA,NA
+2015-03-17,"BD","Littorina_sitkana","Nucella_canaliculata",0,0,14,NA,2445.71428571429,11.58,NA,NA
+2015-03-17,"BD","Littorina_sitkana","Nucella_ostrina",0,0,66,NA,2445.71428571429,11.58,NA,NA
+2015-03-17,"BD","Modiolus_modiolus","Nucella_canaliculata",0,0,14,NA,0,11.58,NA,NA
+2015-03-17,"BD","Modiolus_modiolus","Nucella_ostrina",0,0,66,NA,0,11.58,NA,NA
+2015-03-17,"BD","Mytilus_californianus","Nucella_canaliculata",0,0,14,NA,80,11.58,NA,NA
+2015-03-17,"BD","Mytilus_californianus","Nucella_ostrina",0,0,66,NA,80,11.58,NA,NA
+2015-03-17,"BD","Mytilus_trossulus","Nucella_canaliculata",0.166666666666667,2,14,50.0239711683391,17824.7619047619,11.58,1.86916158489765e-07,0.00333173602123281
+2015-03-17,"BD","Mytilus_trossulus","Nucella_ostrina",0.12280701754386,7,66,53.1918592205041,17824.7619047619,11.58,1.29525201435119e-07,0.00230875587624733
+2015-03-17,"BD","Nucella_ostrina","Nucella_canaliculata",0,0,14,NA,49.5238095238095,11.58,NA,NA
+2015-03-17,"BD","Nucella_ostrina","Nucella_ostrina",0,0,66,NA,49.5238095238095,11.58,NA,NA
+2015-03-17,"BD","Pollicipes_polymerus","Nucella_canaliculata",0,0,14,NA,18350.4761904762,11.58,NA,NA
+2015-03-17,"BD","Pollicipes_polymerus","Nucella_ostrina",0,0,66,NA,18350.4761904762,11.58,NA,NA
+2015-03-17,"BD","Semibalanus_cariosus","Nucella_canaliculata",0,0,14,NA,38.0952380952381,11.58,NA,NA
+2015-03-17,"BD","Semibalanus_cariosus","Nucella_ostrina",0,0,66,NA,38.0952380952381,11.58,NA,NA
+2015-03-17,"BE","Adula_californiensis","Nucella_canaliculata",0,0,8,NA,0,11.58,NA,NA
+2015-03-17,"BE","Adula_californiensis","Nucella_ostrina",0,0,72,NA,0,11.58,NA,NA
+2015-03-17,"BE","Balanus_glandula","Nucella_canaliculata",0.142857142857143,1,8,36.1117567386556,6982.85714285714,11.58,5.66526444204161e-07,0.00395597322752848
+2015-03-17,"BE","Balanus_glandula","Nucella_ostrina",0.0350877192982456,2,72,58.4655211728032,6982.85714285714,11.58,8.59453050433113e-08,0.000600143787216722
+2015-03-17,"BE","Chthamalus_dalli","Nucella_canaliculata",0,0,8,NA,0,11.58,NA,NA
+2015-03-17,"BE","Chthamalus_dalli","Nucella_ostrina",0.0350877192982456,2,72,21.5931027387269,0,11.58,Inf,0.00162495032431427
+2015-03-17,"BE","Hiatella_arctica","Nucella_canaliculata",0,0,8,NA,0,11.58,NA,NA
+2015-03-17,"BE","Hiatella_arctica","Nucella_ostrina",0,0,72,NA,0,11.58,NA,NA
+2015-03-17,"BE","Limpets","Nucella_canaliculata",0,0,8,NA,514.285714285714,11.58,NA,NA
+2015-03-17,"BE","Limpets","Nucella_ostrina",0,0,72,NA,514.285714285714,11.58,NA,NA
+2015-03-17,"BE","Littorina_sitkana","Nucella_canaliculata",0,0,8,NA,2800,11.58,NA,NA
+2015-03-17,"BE","Littorina_sitkana","Nucella_ostrina",0,0,72,NA,2800,11.58,NA,NA
+2015-03-17,"BE","Modiolus_modiolus","Nucella_canaliculata",0,0,8,NA,0,11.58,NA,NA
+2015-03-17,"BE","Modiolus_modiolus","Nucella_ostrina",0,0,72,NA,0,11.58,NA,NA
+2015-03-17,"BE","Mytilus_californianus","Nucella_canaliculata",0,0,8,NA,0,11.58,NA,NA
+2015-03-17,"BE","Mytilus_californianus","Nucella_ostrina",0,0,72,NA,0,11.58,NA,NA
+2015-03-17,"BE","Mytilus_trossulus","Nucella_canaliculata",0,0,8,NA,662.857142857143,11.58,NA,NA
+2015-03-17,"BE","Mytilus_trossulus","Nucella_ostrina",0.192982456140351,11,72,54.9218663296747,662.857142857143,11.58,5.30093650361808e-06,0.00351376362525541
+2015-03-17,"BE","Nucella_ostrina","Nucella_canaliculata",0,0,8,NA,11.4285714285714,11.58,NA,NA
+2015-03-17,"BE","Nucella_ostrina","Nucella_ostrina",0,0,72,NA,11.4285714285714,11.58,NA,NA
+2015-03-17,"BE","Pollicipes_polymerus","Nucella_canaliculata",0,0,8,NA,11.4285714285714,11.58,NA,NA
+2015-03-17,"BE","Pollicipes_polymerus","Nucella_ostrina",0,0,72,NA,11.4285714285714,11.58,NA,NA
+2015-03-17,"BE","Semibalanus_cariosus","Nucella_canaliculata",0,0,8,NA,0,11.58,NA,NA
+2015-03-17,"BE","Semibalanus_cariosus","Nucella_ostrina",0,0,72,NA,0,11.58,NA,NA
+2015-03-17,"BF","Adula_californiensis","Nucella_canaliculata",0,0,4,NA,0,11.58,NA,NA
+2015-03-17,"BF","Adula_californiensis","Nucella_ostrina",0,0,77,NA,0,11.58,NA,NA
+2015-03-17,"BF","Balanus_glandula","Nucella_canaliculata",0,0,4,NA,0,11.58,NA,NA
+2015-03-17,"BF","Balanus_glandula","Nucella_ostrina",0.0307692307692308,2,77,38.9873877091405,0,11.58,Inf,0.000789209859321173
+2015-03-17,"BF","Chthamalus_dalli","Nucella_canaliculata",0,0,4,NA,0,11.58,NA,NA
+2015-03-17,"BF","Chthamalus_dalli","Nucella_ostrina",0.0307692307692308,2,77,36.4542866617031,0,11.58,Inf,0.000844049728767709
+2015-03-17,"BF","Hiatella_arctica","Nucella_canaliculata",0,0,4,NA,0,11.58,NA,NA
+2015-03-17,"BF","Hiatella_arctica","Nucella_ostrina",0,0,77,NA,0,11.58,NA,NA
+2015-03-17,"BF","Limpets","Nucella_canaliculata",0,0,4,NA,0,11.58,NA,NA
+2015-03-17,"BF","Limpets","Nucella_ostrina",0,0,77,NA,0,11.58,NA,NA
+2015-03-17,"BF","Littorina_sitkana","Nucella_canaliculata",0,0,4,NA,0,11.58,NA,NA
+2015-03-17,"BF","Littorina_sitkana","Nucella_ostrina",0,0,77,NA,0,11.58,NA,NA
+2015-03-17,"BF","Modiolus_modiolus","Nucella_canaliculata",0,0,4,NA,0,11.58,NA,NA
+2015-03-17,"BF","Modiolus_modiolus","Nucella_ostrina",0,0,77,NA,0,11.58,NA,NA
+2015-03-17,"BF","Mytilus_californianus","Nucella_canaliculata",0,0,4,NA,0,11.58,NA,NA
+2015-03-17,"BF","Mytilus_californianus","Nucella_ostrina",0,0,77,NA,0,11.58,NA,NA
+2015-03-17,"BF","Mytilus_trossulus","Nucella_canaliculata",0,0,4,NA,0,11.58,NA,NA
+2015-03-17,"BF","Mytilus_trossulus","Nucella_ostrina",0.123076923076923,8,77,47.0948763442096,0,11.58,Inf,0.00261338244477747
+2015-03-17,"BF","Nucella_ostrina","Nucella_canaliculata",0,0,4,NA,0,11.58,NA,NA
+2015-03-17,"BF","Nucella_ostrina","Nucella_ostrina",0,0,77,NA,0,11.58,NA,NA
+2015-03-17,"BF","Pollicipes_polymerus","Nucella_canaliculata",0,0,4,NA,0,11.58,NA,NA
+2015-03-17,"BF","Pollicipes_polymerus","Nucella_ostrina",0,0,77,NA,0,11.58,NA,NA
+2015-03-17,"BF","Semibalanus_cariosus","Nucella_canaliculata",0,0,4,NA,0,11.58,NA,NA
+2015-03-17,"BF","Semibalanus_cariosus","Nucella_ostrina",0,0,77,NA,0,11.58,NA,NA
+2015-03-17,"C","Adula_californiensis","Nucella_canaliculata",0,0,29,NA,0,11.58,NA,NA
+2015-03-17,"C","Adula_californiensis","Nucella_ostrina",0,0,81,NA,0,11.58,NA,NA
+2015-03-17,"C","Balanus_glandula","Nucella_canaliculata",0,0,29,NA,2998.09523809524,11.58,NA,NA
+2015-03-17,"C","Balanus_glandula","Nucella_ostrina",0.0169491525423729,1,81,28.7143641527816,2998.09523809524,11.58,1.96880797543021e-07,0.000590267381586124
+2015-03-17,"C","Chthamalus_dalli","Nucella_canaliculata",0,0,29,NA,2373.33333333333,11.58,NA,NA
+2015-03-17,"C","Chthamalus_dalli","Nucella_ostrina",0.0338983050847458,2,81,17.9197368515089,2373.33333333333,11.58,7.97053764451907e-07,0.00189167426763253
+2015-03-17,"C","Hiatella_arctica","Nucella_canaliculata",0,0,29,NA,0,11.58,NA,NA
+2015-03-17,"C","Hiatella_arctica","Nucella_ostrina",0,0,81,NA,0,11.58,NA,NA
+2015-03-17,"C","Limpets","Nucella_canaliculata",0,0,29,NA,457.142857142857,11.58,NA,NA
+2015-03-17,"C","Limpets","Nucella_ostrina",0,0,81,NA,457.142857142857,11.58,NA,NA
+2015-03-17,"C","Littorina_sitkana","Nucella_canaliculata",0,0,29,NA,148.571428571429,11.58,NA,NA
+2015-03-17,"C","Littorina_sitkana","Nucella_ostrina",0,0,81,NA,148.571428571429,11.58,NA,NA
+2015-03-17,"C","Modiolus_modiolus","Nucella_canaliculata",0,0,29,NA,0,11.58,NA,NA
+2015-03-17,"C","Modiolus_modiolus","Nucella_ostrina",0,0,81,NA,0,11.58,NA,NA
+2015-03-17,"C","Mytilus_californianus","Nucella_canaliculata",0,0,29,NA,255.238095238095,11.58,NA,NA
+2015-03-17,"C","Mytilus_californianus","Nucella_ostrina",0,0,81,NA,255.238095238095,11.58,NA,NA
+2015-03-17,"C","Mytilus_trossulus","Nucella_canaliculata",0.16,4,29,55.45656160731,971.42857142857,11.58,2.96999809543242e-06,0.00288514100699149
+2015-03-17,"C","Mytilus_trossulus","Nucella_ostrina",0.322033898305085,19,81,45.9996999710074,971.42857142857,11.58,7.20668795140605e-06,0.00700078258136587
+2015-03-17,"C","Nucella_ostrina","Nucella_canaliculata",0,0,29,NA,137.142857142857,11.58,NA,NA
+2015-03-17,"C","Nucella_ostrina","Nucella_ostrina",0,0,81,NA,137.142857142857,11.58,NA,NA
+2015-03-17,"C","Pollicipes_polymerus","Nucella_canaliculata",0,0,29,NA,7782.85714285714,11.58,NA,NA
+2015-03-17,"C","Pollicipes_polymerus","Nucella_ostrina",0,0,81,NA,7782.85714285714,11.58,NA,NA
+2015-03-17,"C","Semibalanus_cariosus","Nucella_canaliculata",0,0,29,NA,22.8571428571429,11.58,NA,NA
+2015-03-17,"C","Semibalanus_cariosus","Nucella_ostrina",0,0,81,NA,22.8571428571429,11.58,NA,NA
+2015-03-17,"D","Adula_californiensis","Nucella_canaliculata",0,0,23,NA,0,11.58,NA,NA
+2015-03-17,"D","Adula_californiensis","Nucella_ostrina",0,0,131,NA,0,11.58,NA,NA
+2015-03-17,"D","Balanus_glandula","Nucella_canaliculata",0,0,23,NA,7584,11.58,NA,NA
+2015-03-17,"D","Balanus_glandula","Nucella_ostrina",0.008,1,131,88.7648673157953,7584,11.58,1.18836692102777e-08,9.01257472907464e-05
+2015-03-17,"D","Chthamalus_dalli","Nucella_canaliculata",0,0,23,NA,1184,11.58,NA,NA
+2015-03-17,"D","Chthamalus_dalli","Nucella_ostrina",0,0,131,NA,1184,11.58,NA,NA
+2015-03-17,"D","Hiatella_arctica","Nucella_canaliculata",0,0,23,NA,0,11.58,NA,NA
+2015-03-17,"D","Hiatella_arctica","Nucella_ostrina",0,0,131,NA,0,11.58,NA,NA
+2015-03-17,"D","Limpets","Nucella_canaliculata",0,0,23,NA,977.142857142856,11.58,NA,NA
+2015-03-17,"D","Limpets","Nucella_ostrina",0,0,131,NA,977.142857142856,11.58,NA,NA
+2015-03-17,"D","Littorina_sitkana","Nucella_canaliculata",0,0,23,NA,400,11.58,NA,NA
+2015-03-17,"D","Littorina_sitkana","Nucella_ostrina",0,0,131,NA,400,11.58,NA,NA
+2015-03-17,"D","Modiolus_modiolus","Nucella_canaliculata",0,0,23,NA,0,11.58,NA,NA
+2015-03-17,"D","Modiolus_modiolus","Nucella_ostrina",0,0,131,NA,0,11.58,NA,NA
+2015-03-17,"D","Mytilus_californianus","Nucella_canaliculata",0,0,23,NA,937.142857142855,11.58,NA,NA
+2015-03-17,"D","Mytilus_californianus","Nucella_ostrina",0,0,131,NA,937.142857142855,11.58,NA,NA
+2015-03-17,"D","Mytilus_trossulus","Nucella_canaliculata",0.0454545454545455,1,23,47.5473985197961,5002.28571428572,11.58,1.91109407214285e-07,0.000955983857573631
+2015-03-17,"D","Mytilus_trossulus","Nucella_ostrina",0.04,5,131,52.313267407776,5002.28571428572,11.58,1.52855000737864e-07,0.000764624386548149
+2015-03-17,"D","Nucella_ostrina","Nucella_canaliculata",0,0,23,NA,80,11.58,NA,NA
+2015-03-17,"D","Nucella_ostrina","Nucella_ostrina",0,0,131,NA,80,11.58,NA,NA
+2015-03-17,"D","Pollicipes_polymerus","Nucella_canaliculata",0,0,23,NA,182.857142857142,11.58,NA,NA
+2015-03-17,"D","Pollicipes_polymerus","Nucella_ostrina",0,0,131,NA,182.857142857142,11.58,NA,NA
+2015-03-17,"D","Semibalanus_cariosus","Nucella_canaliculata",0,0,23,NA,0,11.58,NA,NA
+2015-03-17,"D","Semibalanus_cariosus","Nucella_ostrina",0,0,131,NA,0,11.58,NA,NA
+2015-03-17,"E","Adula_californiensis","Nucella_canaliculata",0,0,15,NA,0,11.58,NA,NA
+2015-03-17,"E","Adula_californiensis","Nucella_ostrina",0,0,66,NA,0,11.58,NA,NA
+2015-03-17,"E","Balanus_glandula","Nucella_canaliculata",0,0,15,NA,2190.47619047619,11.58,NA,NA
+2015-03-17,"E","Balanus_glandula","Nucella_ostrina",0,0,66,NA,2190.47619047619,11.58,NA,NA
+2015-03-17,"E","Chthamalus_dalli","Nucella_canaliculata",0,0,15,NA,1634.28571428571,11.58,NA,NA
+2015-03-17,"E","Chthamalus_dalli","Nucella_ostrina",0,0,66,NA,1634.28571428571,11.58,NA,NA
+2015-03-17,"E","Hiatella_arctica","Nucella_canaliculata",0,0,15,NA,0,11.58,NA,NA
+2015-03-17,"E","Hiatella_arctica","Nucella_ostrina",0,0,66,NA,0,11.58,NA,NA
+2015-03-17,"E","Limpets","Nucella_canaliculata",0,0,15,NA,335.238095238095,11.58,NA,NA
+2015-03-17,"E","Limpets","Nucella_ostrina",0,0,66,NA,335.238095238095,11.58,NA,NA
+2015-03-17,"E","Littorina_sitkana","Nucella_canaliculata",0,0,15,NA,521.904761904762,11.58,NA,NA
+2015-03-17,"E","Littorina_sitkana","Nucella_ostrina",0,0,66,NA,521.904761904762,11.58,NA,NA
+2015-03-17,"E","Modiolus_modiolus","Nucella_canaliculata",0,0,15,NA,0,11.58,NA,NA
+2015-03-17,"E","Modiolus_modiolus","Nucella_ostrina",0,0,66,NA,0,11.58,NA,NA
+2015-03-17,"E","Mytilus_californianus","Nucella_canaliculata",0,0,15,NA,72.3809523809525,11.58,NA,NA
+2015-03-17,"E","Mytilus_californianus","Nucella_ostrina",0,0,66,NA,72.3809523809525,11.58,NA,NA
+2015-03-17,"E","Mytilus_trossulus","Nucella_canaliculata",0.153846153846154,2,15,50.4551581301354,2708.57142857143,11.58,1.12574694935143e-06,0.00304916602281474
+2015-03-17,"E","Mytilus_trossulus","Nucella_ostrina",0.274509803921569,14,66,52.2046845732139,2708.57142857143,11.58,1.94136900028621e-06,0.00525833660648951
+2015-03-17,"E","Nucella_ostrina","Nucella_canaliculata",0,0,15,NA,129.523809523809,11.58,NA,NA
+2015-03-17,"E","Nucella_ostrina","Nucella_ostrina",0,0,66,NA,129.523809523809,11.58,NA,NA
+2015-03-17,"E","Pollicipes_polymerus","Nucella_canaliculata",0,0,15,NA,5398.09523809524,11.58,NA,NA
+2015-03-17,"E","Pollicipes_polymerus","Nucella_ostrina",0.0196078431372549,1,66,7.13917849084361,5398.09523809524,11.58,5.0879289879306e-07,0.00274651252415149
+2015-03-17,"E","Semibalanus_cariosus","Nucella_canaliculata",0,0,15,NA,0,11.58,NA,NA
+2015-03-17,"E","Semibalanus_cariosus","Nucella_ostrina",0,0,66,NA,0,11.58,NA,NA
+2015-03-17,"F","Adula_californiensis","Nucella_canaliculata",0,0,11,NA,0,11.58,NA,NA
+2015-03-17,"F","Adula_californiensis","Nucella_ostrina",0,0,110,NA,0,11.58,NA,NA
+2015-03-17,"F","Balanus_glandula","Nucella_canaliculata",0,0,11,NA,4358.09523809524,11.58,NA,NA
+2015-03-17,"F","Balanus_glandula","Nucella_ostrina",0.0618556701030928,6,110,61.3263471622726,4358.09523809524,11.58,2.3143855133426e-07,0.0010086312484815
+2015-03-17,"F","Chthamalus_dalli","Nucella_canaliculata",0,0,11,NA,887.619047619047,11.58,NA,NA
+2015-03-17,"F","Chthamalus_dalli","Nucella_ostrina",0,0,110,NA,887.619047619047,11.58,NA,NA
+2015-03-17,"F","Hiatella_arctica","Nucella_canaliculata",0,0,11,NA,0,11.58,NA,NA
+2015-03-17,"F","Hiatella_arctica","Nucella_ostrina",0,0,110,NA,0,11.58,NA,NA
+2015-03-17,"F","Limpets","Nucella_canaliculata",0,0,11,NA,1523.80952380952,11.58,NA,NA
+2015-03-17,"F","Limpets","Nucella_ostrina",0,0,110,NA,1523.80952380952,11.58,NA,NA
+2015-03-17,"F","Littorina_sitkana","Nucella_canaliculata",0,0,11,NA,872.380952380952,11.58,NA,NA
+2015-03-17,"F","Littorina_sitkana","Nucella_ostrina",0,0,110,NA,872.380952380952,11.58,NA,NA
+2015-03-17,"F","Modiolus_modiolus","Nucella_canaliculata",0,0,11,NA,0,11.58,NA,NA
+2015-03-17,"F","Modiolus_modiolus","Nucella_ostrina",0,0,110,NA,0,11.58,NA,NA
+2015-03-17,"F","Mytilus_californianus","Nucella_canaliculata",0,0,11,NA,0,11.58,NA,NA
+2015-03-17,"F","Mytilus_californianus","Nucella_ostrina",0,0,110,NA,0,11.58,NA,NA
+2015-03-17,"F","Mytilus_trossulus","Nucella_canaliculata",0,0,11,NA,5443.80952380952,11.58,NA,NA
+2015-03-17,"F","Mytilus_trossulus","Nucella_ostrina",0.0721649484536082,7,110,56.6158871820715,5443.80952380952,11.58,2.34145096693544e-07,0.00127464130733362
+2015-03-17,"F","Nucella_ostrina","Nucella_canaliculata",0,0,11,NA,110.47619047619,11.58,NA,NA
+2015-03-17,"F","Nucella_ostrina","Nucella_ostrina",0,0,110,NA,110.47619047619,11.58,NA,NA
+2015-03-17,"F","Pollicipes_polymerus","Nucella_canaliculata",0,0,11,NA,38.0952380952381,11.58,NA,NA
+2015-03-17,"F","Pollicipes_polymerus","Nucella_ostrina",0,0,110,NA,38.0952380952381,11.58,NA,NA
+2015-03-17,"F","Semibalanus_cariosus","Nucella_canaliculata",0,0,11,NA,0,11.58,NA,NA
+2015-03-17,"F","Semibalanus_cariosus","Nucella_ostrina",0,0,110,NA,0,11.58,NA,NA
+2015-03-17,"G","Adula_californiensis","Nucella_canaliculata",0,0,26,NA,0,11.58,NA,NA
+2015-03-17,"G","Adula_californiensis","Nucella_ostrina",0,0,132,NA,0,11.58,NA,NA
+2015-03-17,"G","Balanus_glandula","Nucella_canaliculata",0,0,26,NA,5977.14285714286,11.58,NA,NA
+2015-03-17,"G","Balanus_glandula","Nucella_ostrina",0.0087719298245614,1,132,20.8167102706492,5977.14285714286,11.58,7.05000483969991e-08,0.000421388860704349
+2015-03-17,"G","Chthamalus_dalli","Nucella_canaliculata",0,0,26,NA,514.285714285715,11.58,NA,NA
+2015-03-17,"G","Chthamalus_dalli","Nucella_ostrina",0.0087719298245614,1,132,20.1178804417557,514.285714285715,11.58,8.4782938559587e-07,0.000436026541163591
+2015-03-17,"G","Hiatella_arctica","Nucella_canaliculata",0,0,26,NA,0,11.58,NA,NA
+2015-03-17,"G","Hiatella_arctica","Nucella_ostrina",0,0,132,NA,0,11.58,NA,NA
+2015-03-17,"G","Limpets","Nucella_canaliculata",0,0,26,NA,251.428571428571,11.58,NA,NA
+2015-03-17,"G","Limpets","Nucella_ostrina",0,0,132,NA,251.428571428571,11.58,NA,NA
+2015-03-17,"G","Littorina_sitkana","Nucella_canaliculata",0,0,26,NA,445.714285714285,11.58,NA,NA
+2015-03-17,"G","Littorina_sitkana","Nucella_ostrina",0,0,132,NA,445.714285714285,11.58,NA,NA
+2015-03-17,"G","Modiolus_modiolus","Nucella_canaliculata",0,0,26,NA,0,11.58,NA,NA
+2015-03-17,"G","Modiolus_modiolus","Nucella_ostrina",0,0,132,NA,0,11.58,NA,NA
+2015-03-17,"G","Mytilus_californianus","Nucella_canaliculata",0,0,26,NA,1171.42857142857,11.58,NA,NA
+2015-03-17,"G","Mytilus_californianus","Nucella_ostrina",0,0,132,NA,1171.42857142857,11.58,NA,NA
+2015-03-17,"G","Mytilus_trossulus","Nucella_canaliculata",0.0833333333333333,2,26,56.6992771579868,5542.85714285714,11.58,2.65159716574104e-07,0.00146974242901075
+2015-03-17,"G","Mytilus_trossulus","Nucella_ostrina",0.140350877192982,16,132,41.382911584586,5542.85714285714,11.58,6.1187175033274e-07,0.00339151770184433
+2015-03-17,"G","Nucella_ostrina","Nucella_canaliculata",0,0,26,NA,97.142857142857,11.58,NA,NA
+2015-03-17,"G","Nucella_ostrina","Nucella_ostrina",0,0,132,NA,97.142857142857,11.58,NA,NA
+2015-03-17,"G","Pollicipes_polymerus","Nucella_canaliculata",0,0,26,NA,6365.71428571428,11.58,NA,NA
+2015-03-17,"G","Pollicipes_polymerus","Nucella_ostrina",0,0,132,NA,6365.71428571428,11.58,NA,NA
+2015-03-17,"G","Semibalanus_cariosus","Nucella_canaliculata",0,0,26,NA,74.2857142857144,11.58,NA,NA
+2015-03-17,"G","Semibalanus_cariosus","Nucella_ostrina",0,0,132,NA,74.2857142857144,11.58,NA,NA
+2015-04-19,"A","Adula_californiensis","Nucella_canaliculata",0,0,34,NA,0,12.04,NA,NA
+2015-04-19,"A","Adula_californiensis","Nucella_ostrina",0,0,146,NA,0,12.04,NA,NA
+2015-04-19,"A","Balanus_glandula","Nucella_canaliculata",0,0,34,NA,2302.85714285714,12.04,NA,NA
+2015-04-19,"A","Balanus_glandula","Nucella_ostrina",0.0387596899224806,5,146,26.7959825287433,2302.85714285714,12.04,6.28121429829404e-07,0.00144647392126428
+2015-04-19,"A","Chthamalus_dalli","Nucella_canaliculata",0,0,34,NA,1428.57142857143,12.04,NA,NA
+2015-04-19,"A","Chthamalus_dalli","Nucella_ostrina",0.0155038759689922,2,146,15.9348825339494,1428.57142857143,12.04,6.81066406054313e-07,0.000972952008649017
+2015-04-19,"A","Hiatella_arctica","Nucella_canaliculata",0,0,34,NA,0,12.04,NA,NA
+2015-04-19,"A","Hiatella_arctica","Nucella_ostrina",0,0,146,NA,0,12.04,NA,NA
+2015-04-19,"A","Limpets","Nucella_canaliculata",0,0,34,NA,1222.85714285714,12.04,NA,NA
+2015-04-19,"A","Limpets","Nucella_ostrina",0,0,146,NA,1222.85714285714,12.04,NA,NA
+2015-04-19,"A","Littorina_sitkana","Nucella_canaliculata",0,0,34,NA,142.857142857143,12.04,NA,NA
+2015-04-19,"A","Littorina_sitkana","Nucella_ostrina",0,0,146,NA,142.857142857143,12.04,NA,NA
+2015-04-19,"A","Modiolus_modiolus","Nucella_canaliculata",0,0,34,NA,0,12.04,NA,NA
+2015-04-19,"A","Modiolus_modiolus","Nucella_ostrina",0,0,146,NA,0,12.04,NA,NA
+2015-04-19,"A","Mytilus_californianus","Nucella_canaliculata",0,0,34,NA,102.857142857143,12.04,NA,NA
+2015-04-19,"A","Mytilus_californianus","Nucella_ostrina",0,0,146,NA,102.857142857143,12.04,NA,NA
+2015-04-19,"A","Mytilus_trossulus","Nucella_canaliculata",0,0,34,NA,200,12.04,NA,NA
+2015-04-19,"A","Mytilus_trossulus","Nucella_ostrina",0.0775193798449612,10,146,52.7084255900054,200,12.04,7.35360418920012e-06,0.00147072083784002
+2015-04-19,"A","Nucella_ostrina","Nucella_canaliculata",0,0,34,NA,297.142857142857,12.04,NA,NA
+2015-04-19,"A","Nucella_ostrina","Nucella_ostrina",0,0,146,NA,297.142857142857,12.04,NA,NA
+2015-04-19,"A","Pollicipes_polymerus","Nucella_canaliculata",0,0,34,NA,2605.71428571428,12.04,NA,NA
+2015-04-19,"A","Pollicipes_polymerus","Nucella_ostrina",0,0,146,NA,2605.71428571428,12.04,NA,NA
+2015-04-19,"A","Semibalanus_cariosus","Nucella_canaliculata",0,0,34,NA,5.7142857142857,12.04,NA,NA
+2015-04-19,"A","Semibalanus_cariosus","Nucella_ostrina",0,0,146,NA,5.7142857142857,12.04,NA,NA
+2015-04-19,"AB","Adula_californiensis","Nucella_canaliculata",0,0,40,NA,0,12.04,NA,NA
+2015-04-19,"AB","Adula_californiensis","Nucella_ostrina",0,0,239,NA,0,12.04,NA,NA
+2015-04-19,"AB","Balanus_glandula","Nucella_canaliculata",0,0,40,NA,548.571428571428,12.04,NA,NA
+2015-04-19,"AB","Balanus_glandula","Nucella_ostrina",0.0192307692307692,4,239,35.8492211924943,548.571428571428,12.04,9.77875908526834e-07,0.000536434784106149
+2015-04-19,"AB","Chthamalus_dalli","Nucella_canaliculata",0,0,40,NA,222.857142857143,12.04,NA,NA
+2015-04-19,"AB","Chthamalus_dalli","Nucella_ostrina",0.00961538461538462,2,239,20.231617840498,222.857142857143,12.04,2.13260041523368e-06,0.000475265235394934
+2015-04-19,"AB","Hiatella_arctica","Nucella_canaliculata",0,0,40,NA,0,12.04,NA,NA
+2015-04-19,"AB","Hiatella_arctica","Nucella_ostrina",0,0,239,NA,0,12.04,NA,NA
+2015-04-19,"AB","Limpets","Nucella_canaliculata",0,0,40,NA,702.857142857143,12.04,NA,NA
+2015-04-19,"AB","Limpets","Nucella_ostrina",0.00480769230769231,1,239,8.86214115624853,702.857142857143,12.04,7.71846499880297e-07,0.000542497825630152
+2015-04-19,"AB","Littorina_sitkana","Nucella_canaliculata",0,0,40,NA,828.571428571427,12.04,NA,NA
+2015-04-19,"AB","Littorina_sitkana","Nucella_ostrina",0,0,239,NA,828.571428571427,12.04,NA,NA
+2015-04-19,"AB","Modiolus_modiolus","Nucella_canaliculata",0,0,40,NA,0,12.04,NA,NA
+2015-04-19,"AB","Modiolus_modiolus","Nucella_ostrina",0,0,239,NA,0,12.04,NA,NA
+2015-04-19,"AB","Mytilus_californianus","Nucella_canaliculata",0,0,40,NA,102.857142857143,12.04,NA,NA
+2015-04-19,"AB","Mytilus_californianus","Nucella_ostrina",0,0,239,NA,102.857142857143,12.04,NA,NA
+2015-04-19,"AB","Mytilus_trossulus","Nucella_canaliculata",0,0,40,NA,1537.14285714286,12.04,NA,NA
+2015-04-19,"AB","Mytilus_trossulus","Nucella_ostrina",0.100961538461538,21,239,55.78540415385,1537.14285714286,12.04,1.17739217366797e-06,0.00180981996980962
+2015-04-19,"AB","Nucella_ostrina","Nucella_canaliculata",0,0,40,NA,571.428571428572,12.04,NA,NA
+2015-04-19,"AB","Nucella_ostrina","Nucella_ostrina",0,0,239,NA,571.428571428572,12.04,NA,NA
+2015-04-19,"AB","Pollicipes_polymerus","Nucella_canaliculata",0,0,40,NA,7074.28571428572,12.04,NA,NA
+2015-04-19,"AB","Pollicipes_polymerus","Nucella_ostrina",0.0144230769230769,3,239,7.9215339995228,7074.28571428572,12.04,2.57374806552437e-07,0.00182074291721096
+2015-04-19,"AB","Semibalanus_cariosus","Nucella_canaliculata",0,0,40,NA,11.4285714285715,12.04,NA,NA
+2015-04-19,"AB","Semibalanus_cariosus","Nucella_ostrina",0,0,239,NA,11.4285714285715,12.04,NA,NA
+2015-04-19,"AC","Adula_californiensis","Nucella_canaliculata",0,0,24,NA,0,12.04,NA,NA
+2015-04-19,"AC","Adula_californiensis","Nucella_ostrina",0,0,181,NA,0,12.04,NA,NA
+2015-04-19,"AC","Balanus_glandula","Nucella_canaliculata",0.0454545454545455,1,24,37.856097341067,9561.14285714286,12.04,1.25583236757171e-07,0.00120071926709771
+2015-04-19,"AC","Balanus_glandula","Nucella_ostrina",0.0429447852760736,7,181,34.2661587439504,9561.14285714286,12.04,1.31079629718129e-07,0.00125327106539642
+2015-04-19,"AC","Chthamalus_dalli","Nucella_canaliculata",0,0,24,NA,1131.42857142857,12.04,NA,NA
+2015-04-19,"AC","Chthamalus_dalli","Nucella_ostrina",0.00613496932515337,1,181,9.94520263546641,1131.42857142857,12.04,5.45219798127052e-07,0.000616877257309464
+2015-04-19,"AC","Hiatella_arctica","Nucella_canaliculata",0,0,24,NA,0,12.04,NA,NA
+2015-04-19,"AC","Hiatella_arctica","Nucella_ostrina",0,0,181,NA,0,12.04,NA,NA
+2015-04-19,"AC","Limpets","Nucella_canaliculata",0,0,24,NA,1443.80952380952,12.04,NA,NA
+2015-04-19,"AC","Limpets","Nucella_ostrina",0,0,181,NA,1443.80952380952,12.04,NA,NA
+2015-04-19,"AC","Littorina_sitkana","Nucella_canaliculata",0,0,24,NA,9931.42857142857,12.04,NA,NA
+2015-04-19,"AC","Littorina_sitkana","Nucella_ostrina",0,0,181,NA,9931.42857142857,12.04,NA,NA
+2015-04-19,"AC","Modiolus_modiolus","Nucella_canaliculata",0,0,24,NA,0,12.04,NA,NA
+2015-04-19,"AC","Modiolus_modiolus","Nucella_ostrina",0,0,181,NA,0,12.04,NA,NA
+2015-04-19,"AC","Mytilus_californianus","Nucella_canaliculata",0,0,24,NA,0,12.04,NA,NA
+2015-04-19,"AC","Mytilus_californianus","Nucella_ostrina",0,0,181,NA,0,12.04,NA,NA
+2015-04-19,"AC","Mytilus_trossulus","Nucella_canaliculata",0.0454545454545455,1,24,34.9835892216116,3287.61904761905,12.04,3.95213222637811e-07,0.00129931051861497
+2015-04-19,"AC","Mytilus_trossulus","Nucella_ostrina",0.0613496932515337,10,181,45.1177611322836,3287.61904761905,12.04,4.13602701744134e-07,0.00135976812040071
+2015-04-19,"AC","Nucella_ostrina","Nucella_canaliculata",0,0,24,NA,198.095238095238,12.04,NA,NA
+2015-04-19,"AC","Nucella_ostrina","Nucella_ostrina",0,0,181,NA,198.095238095238,12.04,NA,NA
+2015-04-19,"AC","Pollicipes_polymerus","Nucella_canaliculata",0,0,24,NA,457.142857142856,12.04,NA,NA
+2015-04-19,"AC","Pollicipes_polymerus","Nucella_ostrina",0,0,181,NA,457.142857142856,12.04,NA,NA
+2015-04-19,"AC","Semibalanus_cariosus","Nucella_canaliculata",0,0,24,NA,26.6666666666667,12.04,NA,NA
+2015-04-19,"AC","Semibalanus_cariosus","Nucella_ostrina",0,0,181,NA,26.6666666666667,12.04,NA,NA
+2015-04-19,"AD","Adula_californiensis","Nucella_canaliculata",0,0,37,NA,0,12.04,NA,NA
+2015-04-19,"AD","Adula_californiensis","Nucella_ostrina",0,0,301,NA,0,12.04,NA,NA
+2015-04-19,"AD","Balanus_glandula","Nucella_canaliculata",0,0,37,NA,1569.52380952381,12.04,NA,NA
+2015-04-19,"AD","Balanus_glandula","Nucella_ostrina",0.0151515151515152,4,301,31.64496322573,1569.52380952381,12.04,3.05058802309174e-07,0.000478797053529065
+2015-04-19,"AD","Chthamalus_dalli","Nucella_canaliculata",0,0,37,NA,365.714285714286,12.04,NA,NA
+2015-04-19,"AD","Chthamalus_dalli","Nucella_ostrina",0.00378787878787879,1,301,40.586629446336,365.714285714286,12.04,2.55194412590994e-07,9.33282423189921e-05
+2015-04-19,"AD","Hiatella_arctica","Nucella_canaliculata",0,0,37,NA,0,12.04,NA,NA
+2015-04-19,"AD","Hiatella_arctica","Nucella_ostrina",0,0,301,NA,0,12.04,NA,NA
+2015-04-19,"AD","Limpets","Nucella_canaliculata",0,0,37,NA,933.333333333332,12.04,NA,NA
+2015-04-19,"AD","Limpets","Nucella_ostrina",0,0,301,NA,933.333333333332,12.04,NA,NA
+2015-04-19,"AD","Littorina_sitkana","Nucella_canaliculata",0,0,37,NA,590.476190476189,12.04,NA,NA
+2015-04-19,"AD","Littorina_sitkana","Nucella_ostrina",0,0,301,NA,590.476190476189,12.04,NA,NA
+2015-04-19,"AD","Modiolus_modiolus","Nucella_canaliculata",0,0,37,NA,0,12.04,NA,NA
+2015-04-19,"AD","Modiolus_modiolus","Nucella_ostrina",0,0,301,NA,0,12.04,NA,NA
+2015-04-19,"AD","Mytilus_californianus","Nucella_canaliculata",0,0,37,NA,22.8571428571428,12.04,NA,NA
+2015-04-19,"AD","Mytilus_californianus","Nucella_ostrina",0,0,301,NA,22.8571428571428,12.04,NA,NA
+2015-04-19,"AD","Mytilus_trossulus","Nucella_canaliculata",0.0571428571428571,2,37,56.7043934265226,1512.38095238095,12.04,6.66321832078515e-07,0.00100773244699113
+2015-04-19,"AD","Mytilus_trossulus","Nucella_ostrina",0.113636363636364,30,301,49.221063841224,1512.38095238095,12.04,1.52652925857983e-06,0.00230869377392835
+2015-04-19,"AD","Nucella_ostrina","Nucella_canaliculata",0,0,37,NA,354.285714285714,12.04,NA,NA
+2015-04-19,"AD","Nucella_ostrina","Nucella_ostrina",0,0,301,NA,354.285714285714,12.04,NA,NA
+2015-04-19,"AD","Pollicipes_polymerus","Nucella_canaliculata",0,0,37,NA,3078.09523809524,12.04,NA,NA
+2015-04-19,"AD","Pollicipes_polymerus","Nucella_ostrina",0.00757575757575758,2,301,11.6889103329459,3078.09523809524,12.04,2.10557147608948e-07,0.000648114953402018
+2015-04-19,"AD","Semibalanus_cariosus","Nucella_canaliculata",0,0,37,NA,15.2380952380952,12.04,NA,NA
+2015-04-19,"AD","Semibalanus_cariosus","Nucella_ostrina",0,0,301,NA,15.2380952380952,12.04,NA,NA
+2015-04-19,"AE","Adula_californiensis","Nucella_canaliculata",0,0,17,NA,0,12.04,NA,NA
+2015-04-19,"AE","Adula_californiensis","Nucella_ostrina",0,0,211,NA,0,12.04,NA,NA
+2015-04-19,"AE","Balanus_glandula","Nucella_canaliculata",0,0,17,NA,3321.90476190476,12.04,NA,NA
+2015-04-19,"AE","Balanus_glandula","Nucella_ostrina",0.010989010989011,2,211,61.7607424773502,3321.90476190476,12.04,5.35622635536888e-08,0.000177928738357397
+2015-04-19,"AE","Chthamalus_dalli","Nucella_canaliculata",0,0,17,NA,1245.71428571429,12.04,NA,NA
+2015-04-19,"AE","Chthamalus_dalli","Nucella_ostrina",0.00549450549450549,1,211,15.1369790872455,1245.71428571429,12.04,2.91387526029392e-07,0.000362985603853758
+2015-04-19,"AE","Hiatella_arctica","Nucella_canaliculata",0,0,17,NA,0,12.04,NA,NA
+2015-04-19,"AE","Hiatella_arctica","Nucella_ostrina",0,0,211,NA,0,12.04,NA,NA
+2015-04-19,"AE","Limpets","Nucella_canaliculata",0,0,17,NA,2011.42857142857,12.04,NA,NA
+2015-04-19,"AE","Limpets","Nucella_ostrina",0,0,211,NA,2011.42857142857,12.04,NA,NA
+2015-04-19,"AE","Littorina_sitkana","Nucella_canaliculata",0,0,17,NA,1108.57142857143,12.04,NA,NA
+2015-04-19,"AE","Littorina_sitkana","Nucella_ostrina",0,0,211,NA,1108.57142857143,12.04,NA,NA
+2015-04-19,"AE","Modiolus_modiolus","Nucella_canaliculata",0,0,17,NA,0,12.04,NA,NA
+2015-04-19,"AE","Modiolus_modiolus","Nucella_ostrina",0,0,211,NA,0,12.04,NA,NA
+2015-04-19,"AE","Mytilus_californianus","Nucella_canaliculata",0,0,17,NA,179.047619047619,12.04,NA,NA
+2015-04-19,"AE","Mytilus_californianus","Nucella_ostrina",0,0,211,NA,179.047619047619,12.04,NA,NA
+2015-04-19,"AE","Mytilus_trossulus","Nucella_canaliculata",0,0,17,NA,3043.80952380952,12.04,NA,NA
+2015-04-19,"AE","Mytilus_trossulus","Nucella_ostrina",0.142857142857143,26,211,46.8958670893674,3043.80952380952,12.04,1.00080604106147e-06,0.00304626295926902
+2015-04-19,"AE","Nucella_ostrina","Nucella_canaliculata",0,0,17,NA,289.523809523809,12.04,NA,NA
+2015-04-19,"AE","Nucella_ostrina","Nucella_ostrina",0,0,211,NA,289.523809523809,12.04,NA,NA
+2015-04-19,"AE","Pollicipes_polymerus","Nucella_canaliculata",0,0,17,NA,716.190476190477,12.04,NA,NA
+2015-04-19,"AE","Pollicipes_polymerus","Nucella_ostrina",0,0,211,NA,716.190476190477,12.04,NA,NA
+2015-04-19,"AE","Semibalanus_cariosus","Nucella_canaliculata",0,0,17,NA,91.4285714285716,12.04,NA,NA
+2015-04-19,"AE","Semibalanus_cariosus","Nucella_ostrina",0,0,211,NA,91.4285714285716,12.04,NA,NA
+2015-04-19,"AF","Adula_californiensis","Nucella_canaliculata",0,0,41,NA,0,12.04,NA,NA
+2015-04-19,"AF","Adula_californiensis","Nucella_ostrina",0,0,353,NA,0,12.04,NA,NA
+2015-04-19,"AF","Balanus_glandula","Nucella_canaliculata",0.0263157894736842,1,41,37.856097341067,5792,12.04,1.20019554540517e-07,0.000695153259898672
+2015-04-19,"AF","Balanus_glandula","Nucella_ostrina",0.039344262295082,12,353,33.5565314591742,5792,12.04,2.02430426207056e-07,0.00117247702859127
+2015-04-19,"AF","Chthamalus_dalli","Nucella_canaliculata",0,0,41,NA,1540.57142857143,12.04,NA,NA
+2015-04-19,"AF","Chthamalus_dalli","Nucella_ostrina",0.00655737704918033,2,353,27.7101949580731,1540.57142857143,12.04,1.53606196591804e-07,0.00023664131772086
+2015-04-19,"AF","Hiatella_arctica","Nucella_canaliculata",0,0,41,NA,0,12.04,NA,NA
+2015-04-19,"AF","Hiatella_arctica","Nucella_ostrina",0,0,353,NA,0,12.04,NA,NA
+2015-04-19,"AF","Limpets","Nucella_canaliculata",0,0,41,NA,933.333333333334,12.04,NA,NA
+2015-04-19,"AF","Limpets","Nucella_ostrina",0,0,353,NA,933.333333333334,12.04,NA,NA
+2015-04-19,"AF","Littorina_sitkana","Nucella_canaliculata",0,0,41,NA,3097.14285714286,12.04,NA,NA
+2015-04-19,"AF","Littorina_sitkana","Nucella_ostrina",0,0,353,NA,3097.14285714286,12.04,NA,NA
+2015-04-19,"AF","Modiolus_modiolus","Nucella_canaliculata",0,0,41,NA,0,12.04,NA,NA
+2015-04-19,"AF","Modiolus_modiolus","Nucella_ostrina",0,0,353,NA,0,12.04,NA,NA
+2015-04-19,"AF","Mytilus_californianus","Nucella_canaliculata",0,0,41,NA,7.61904761904763,12.04,NA,NA
+2015-04-19,"AF","Mytilus_californianus","Nucella_ostrina",0,0,353,NA,7.61904761904763,12.04,NA,NA
+2015-04-19,"AF","Mytilus_trossulus","Nucella_canaliculata",0.0526315789473684,2,41,62.5169317662418,1993.14285714286,12.04,4.22386779078994e-07,0.000841877191672876
+2015-04-19,"AF","Mytilus_trossulus","Nucella_ostrina",0.108196721311475,33,353,53.3682238934689,1993.14285714286,12.04,1.0171685491607e-06,0.00202736222827
+2015-04-19,"AF","Nucella_ostrina","Nucella_canaliculata",0,0,41,NA,83.8095238095237,12.04,NA,NA
+2015-04-19,"AF","Nucella_ostrina","Nucella_ostrina",0,0,353,NA,83.8095238095237,12.04,NA,NA
+2015-04-19,"AF","Pollicipes_polymerus","Nucella_canaliculata",0,0,41,NA,68.5714285714285,12.04,NA,NA
+2015-04-19,"AF","Pollicipes_polymerus","Nucella_ostrina",0.00327868852459016,1,353,34.3079792873354,68.5714285714285,12.04,1.39367600900714e-06,9.55663549033468e-05
+2015-04-19,"AF","Semibalanus_cariosus","Nucella_canaliculata",0,0,41,NA,19.047619047619,12.04,NA,NA
+2015-04-19,"AF","Semibalanus_cariosus","Nucella_ostrina",0,0,353,NA,19.047619047619,12.04,NA,NA
+2015-04-19,"AG","Adula_californiensis","Nucella_canaliculata",0,0,19,NA,0,12.04,NA,NA
+2015-04-19,"AG","Adula_californiensis","Nucella_ostrina",0,0,345,NA,0,12.04,NA,NA
+2015-04-19,"AG","Balanus_glandula","Nucella_canaliculata",0.0555555555555556,1,19,59.7621675593269,4102.85714285714,12.04,2.26576445046191e-07,0.000929610785960945
+2015-04-19,"AG","Balanus_glandula","Nucella_ostrina",0.0313479623824451,10,345,57.1937557081221,4102.85714285714,12.04,1.33590109351775e-07,0.000548101134368999
+2015-04-19,"AG","Chthamalus_dalli","Nucella_canaliculata",0,0,19,NA,468.571428571429,12.04,NA,NA
+2015-04-19,"AG","Chthamalus_dalli","Nucella_ostrina",0.00313479623824451,1,345,15.1369790872455,468.571428571429,12.04,4.41971537684157e-07,0.000207095234800577
+2015-04-19,"AG","Hiatella_arctica","Nucella_canaliculata",0,0,19,NA,0,12.04,NA,NA
+2015-04-19,"AG","Hiatella_arctica","Nucella_ostrina",0,0,345,NA,0,12.04,NA,NA
+2015-04-19,"AG","Limpets","Nucella_canaliculata",0,0,19,NA,457.142857142858,12.04,NA,NA
+2015-04-19,"AG","Limpets","Nucella_ostrina",0,0,345,NA,457.142857142858,12.04,NA,NA
+2015-04-19,"AG","Littorina_sitkana","Nucella_canaliculata",0,0,19,NA,2771.42857142857,12.04,NA,NA
+2015-04-19,"AG","Littorina_sitkana","Nucella_ostrina",0,0,345,NA,2771.42857142857,12.04,NA,NA
+2015-04-19,"AG","Modiolus_modiolus","Nucella_canaliculata",0,0,19,NA,0,12.04,NA,NA
+2015-04-19,"AG","Modiolus_modiolus","Nucella_ostrina",0,0,345,NA,0,12.04,NA,NA
+2015-04-19,"AG","Mytilus_californianus","Nucella_canaliculata",0,0,19,NA,11.4285714285714,12.04,NA,NA
+2015-04-19,"AG","Mytilus_californianus","Nucella_ostrina",0,0,345,NA,11.4285714285714,12.04,NA,NA
+2015-04-19,"AG","Mytilus_trossulus","Nucella_canaliculata",0,0,19,NA,1857.14285714286,12.04,NA,NA
+2015-04-19,"AG","Mytilus_trossulus","Nucella_ostrina",0.0470219435736677,15,345,58.6960155794056,1857.14285714286,12.04,4.31366726143034e-07,0.000801109634265636
+2015-04-19,"AG","Nucella_ostrina","Nucella_canaliculata",0,0,19,NA,194.285714285715,12.04,NA,NA
+2015-04-19,"AG","Nucella_ostrina","Nucella_ostrina",0,0,345,NA,194.285714285715,12.04,NA,NA
+2015-04-19,"AG","Pollicipes_polymerus","Nucella_canaliculata",0,0,19,NA,2222.85714285714,12.04,NA,NA
+2015-04-19,"AG","Pollicipes_polymerus","Nucella_ostrina",0,0,345,NA,2222.85714285714,12.04,NA,NA
+2015-04-19,"AG","Semibalanus_cariosus","Nucella_canaliculata",0,0,19,NA,45.7142857142857,12.04,NA,NA
+2015-04-19,"AG","Semibalanus_cariosus","Nucella_ostrina",0,0,345,NA,45.7142857142857,12.04,NA,NA
+2015-04-19,"B","Adula_californiensis","Nucella_canaliculata",0,0,125,NA,0,12.04,NA,NA
+2015-04-19,"B","Adula_californiensis","Nucella_ostrina",0,0,174,NA,0,12.04,NA,NA
+2015-04-19,"B","Balanus_glandula","Nucella_canaliculata",0.0172413793103448,2,125,11.8020491067346,1081.90476190476,12.04,1.35028535312225e-06,0.00146088015347321
+2015-04-19,"B","Balanus_glandula","Nucella_ostrina",0.0134228187919463,2,174,34.6376154666848,1081.90476190476,12.04,3.5818443406398e-07,0.000387521444853981
+2015-04-19,"B","Chthamalus_dalli","Nucella_canaliculata",0.00862068965517241,1,125,16.7327859806534,106.666666666667,12.04,4.82997664648821e-06,0.000515197508958742
+2015-04-19,"B","Chthamalus_dalli","Nucella_ostrina",0.0335570469798658,5,174,11.6356367004223,106.666666666667,12.04,2.70373958500116e-05,0.00288398889066791
+2015-04-19,"B","Hiatella_arctica","Nucella_canaliculata",0,0,125,NA,0,12.04,NA,NA
+2015-04-19,"B","Hiatella_arctica","Nucella_ostrina",0,0,174,NA,0,12.04,NA,NA
+2015-04-19,"B","Limpets","Nucella_canaliculata",0,0,125,NA,1257.14285714286,12.04,NA,NA
+2015-04-19,"B","Limpets","Nucella_ostrina",0,0,174,NA,1257.14285714286,12.04,NA,NA
+2015-04-19,"B","Littorina_sitkana","Nucella_canaliculata",0,0,125,NA,765.714285714287,12.04,NA,NA
+2015-04-19,"B","Littorina_sitkana","Nucella_ostrina",0,0,174,NA,765.714285714287,12.04,NA,NA
+2015-04-19,"B","Modiolus_modiolus","Nucella_canaliculata",0,0,125,NA,0,12.04,NA,NA
+2015-04-19,"B","Modiolus_modiolus","Nucella_ostrina",0,0,174,NA,0,12.04,NA,NA
+2015-04-19,"B","Mytilus_californianus","Nucella_canaliculata",0,0,125,NA,243.809523809524,12.04,NA,NA
+2015-04-19,"B","Mytilus_californianus","Nucella_ostrina",0,0,174,NA,243.809523809524,12.04,NA,NA
+2015-04-19,"B","Mytilus_trossulus","Nucella_canaliculata",0.0517241379310345,6,125,60.1852382329975,659.047619047618,12.04,1.30402669441073e-06,0.000859415688125928
+2015-04-19,"B","Mytilus_trossulus","Nucella_ostrina",0.114093959731544,17,174,51.384710939681,659.047619047618,12.04,3.36908478034952e-06,0.00222038730285892
+2015-04-19,"B","Nucella_ostrina","Nucella_canaliculata",0,0,125,NA,152.380952380952,12.04,NA,NA
+2015-04-19,"B","Nucella_ostrina","Nucella_ostrina",0,0,174,NA,152.380952380952,12.04,NA,NA
+2015-04-19,"B","Pollicipes_polymerus","Nucella_canaliculata",0,0,125,NA,7546.66666666667,12.04,NA,NA
+2015-04-19,"B","Pollicipes_polymerus","Nucella_ostrina",0.00671140939597315,1,174,21.1788759216074,7546.66666666667,12.04,4.19909458994468e-08,0.000316891671721158
+2015-04-19,"B","Semibalanus_cariosus","Nucella_canaliculata",0,0,125,NA,22.8571428571429,12.04,NA,NA
+2015-04-19,"B","Semibalanus_cariosus","Nucella_ostrina",0,0,174,NA,22.8571428571429,12.04,NA,NA
+2015-04-19,"BB","Adula_californiensis","Nucella_canaliculata",0,0,11,NA,0,12.04,NA,NA
+2015-04-19,"BB","Adula_californiensis","Nucella_ostrina",0,0,233,NA,0,12.04,NA,NA
+2015-04-19,"BB","Balanus_glandula","Nucella_canaliculata",0,0,11,NA,3542.85714285714,12.04,NA,NA
+2015-04-19,"BB","Balanus_glandula","Nucella_ostrina",0.0348258706467662,7,233,56.926898451156,3542.85714285714,12.04,1.72675538476411e-07,0.000611764764887854
+2015-04-19,"BB","Chthamalus_dalli","Nucella_canaliculata",0,0,11,NA,742.857142857142,12.04,NA,NA
+2015-04-19,"BB","Chthamalus_dalli","Nucella_ostrina",0.0199004975124378,4,233,16.3725329875946,742.857142857142,12.04,1.63622399093904e-06,0.00121548067898329
+2015-04-19,"BB","Hiatella_arctica","Nucella_canaliculata",0,0,11,NA,0,12.04,NA,NA
+2015-04-19,"BB","Hiatella_arctica","Nucella_ostrina",0,0,233,NA,0,12.04,NA,NA
+2015-04-19,"BB","Limpets","Nucella_canaliculata",0,0,11,NA,586.666666666667,12.04,NA,NA
+2015-04-19,"BB","Limpets","Nucella_ostrina",0,0,233,NA,586.666666666667,12.04,NA,NA
+2015-04-19,"BB","Littorina_sitkana","Nucella_canaliculata",0,0,11,NA,1992.38095238095,12.04,NA,NA
+2015-04-19,"BB","Littorina_sitkana","Nucella_ostrina",0,0,233,NA,1992.38095238095,12.04,NA,NA
+2015-04-19,"BB","Modiolus_modiolus","Nucella_canaliculata",0,0,11,NA,0,12.04,NA,NA
+2015-04-19,"BB","Modiolus_modiolus","Nucella_ostrina",0,0,233,NA,0,12.04,NA,NA
+2015-04-19,"BB","Mytilus_californianus","Nucella_canaliculata",0,0,11,NA,3.8095238095238,12.04,NA,NA
+2015-04-19,"BB","Mytilus_californianus","Nucella_ostrina",0,0,233,NA,3.8095238095238,12.04,NA,NA
+2015-04-19,"BB","Mytilus_trossulus","Nucella_canaliculata",0.1,1,11,62.0117401867703,2590.47619047619,12.04,6.22510206296488e-07,0.00161259786773947
+2015-04-19,"BB","Mytilus_trossulus","Nucella_ostrina",0.104477611940299,21,233,58.9184748642387,2590.47619047619,12.04,6.84529448069171e-07,0.001773257236903
+2015-04-19,"BB","Nucella_ostrina","Nucella_canaliculata",0,0,11,NA,240,12.04,NA,NA
+2015-04-19,"BB","Nucella_ostrina","Nucella_ostrina",0,0,233,NA,240,12.04,NA,NA
+2015-04-19,"BB","Pollicipes_polymerus","Nucella_canaliculata",0,0,11,NA,83.809523809524,12.04,NA,NA
+2015-04-19,"BB","Pollicipes_polymerus","Nucella_ostrina",0,0,233,NA,83.809523809524,12.04,NA,NA
+2015-04-19,"BB","Semibalanus_cariosus","Nucella_canaliculata",0,0,11,NA,3.8095238095238,12.04,NA,NA
+2015-04-19,"BB","Semibalanus_cariosus","Nucella_ostrina",0,0,233,NA,3.8095238095238,12.04,NA,NA
+2015-04-19,"BC","Adula_californiensis","Nucella_canaliculata",0,0,14,NA,0,12.04,NA,NA
+2015-04-19,"BC","Adula_californiensis","Nucella_ostrina",0,0,234,NA,0,12.04,NA,NA
+2015-04-19,"BC","Balanus_glandula","Nucella_canaliculata",0,0,14,NA,2647.61904761905,12.04,NA,NA
+2015-04-19,"BC","Balanus_glandula","Nucella_ostrina",0.014018691588785,3,234,53.0081710710806,2647.61904761905,12.04,9.98870447692901e-08,0.000264462842341549
+2015-04-19,"BC","Chthamalus_dalli","Nucella_canaliculata",0,0,14,NA,2015.2380952381,12.04,NA,NA
+2015-04-19,"BC","Chthamalus_dalli","Nucella_ostrina",0.0186915887850467,4,234,13.9922312569918,2015.2380952381,12.04,6.62876891448677e-07,0.00133585476410038
+2015-04-19,"BC","Hiatella_arctica","Nucella_canaliculata",0,0,14,NA,0,12.04,NA,NA
+2015-04-19,"BC","Hiatella_arctica","Nucella_ostrina",0,0,234,NA,0,12.04,NA,NA
+2015-04-19,"BC","Limpets","Nucella_canaliculata",0,0,14,NA,1230.47619047619,12.04,NA,NA
+2015-04-19,"BC","Limpets","Nucella_ostrina",0,0,234,NA,1230.47619047619,12.04,NA,NA
+2015-04-19,"BC","Littorina_sitkana","Nucella_canaliculata",0,0,14,NA,1680,12.04,NA,NA
+2015-04-19,"BC","Littorina_sitkana","Nucella_ostrina",0,0,234,NA,1680,12.04,NA,NA
+2015-04-19,"BC","Modiolus_modiolus","Nucella_canaliculata",0,0,14,NA,0,12.04,NA,NA
+2015-04-19,"BC","Modiolus_modiolus","Nucella_ostrina",0,0,234,NA,0,12.04,NA,NA
+2015-04-19,"BC","Mytilus_californianus","Nucella_canaliculata",0,0,14,NA,0,12.04,NA,NA
+2015-04-19,"BC","Mytilus_californianus","Nucella_ostrina",0,0,234,NA,0,12.04,NA,NA
+2015-04-19,"BC","Mytilus_trossulus","Nucella_canaliculata",0.0769230769230769,1,14,65.7408751425051,1786.66666666667,12.04,6.54903982812542e-07,0.00117009511595841
+2015-04-19,"BC","Mytilus_trossulus","Nucella_ostrina",0.0607476635514019,13,234,47.5713546560894,1786.66666666667,12.04,7.14727554085362e-07,0.00127697989663252
+2015-04-19,"BC","Nucella_ostrina","Nucella_canaliculata",0,0,14,NA,163.809523809524,12.04,NA,NA
+2015-04-19,"BC","Nucella_ostrina","Nucella_ostrina",0,0,234,NA,163.809523809524,12.04,NA,NA
+2015-04-19,"BC","Pollicipes_polymerus","Nucella_canaliculata",0,0,14,NA,182.857142857143,12.04,NA,NA
+2015-04-19,"BC","Pollicipes_polymerus","Nucella_ostrina",0,0,234,NA,182.857142857143,12.04,NA,NA
+2015-04-19,"BC","Semibalanus_cariosus","Nucella_canaliculata",0,0,14,NA,11.4285714285714,12.04,NA,NA
+2015-04-19,"BC","Semibalanus_cariosus","Nucella_ostrina",0,0,234,NA,11.4285714285714,12.04,NA,NA
+2015-04-19,"BD","Adula_californiensis","Nucella_canaliculata",0,0,24,NA,0,12.04,NA,NA
+2015-04-19,"BD","Adula_californiensis","Nucella_ostrina",0,0,107,NA,0,12.04,NA,NA
+2015-04-19,"BD","Balanus_glandula","Nucella_canaliculata",0,0,24,NA,3588.57142857143,12.04,NA,NA
+2015-04-19,"BD","Balanus_glandula","Nucella_ostrina",0.0625,6,107,55.3716347477005,3588.57142857143,12.04,3.14536519523809e-07,0.00112873676720544
+2015-04-19,"BD","Chthamalus_dalli","Nucella_canaliculata",0,0,24,NA,613.333333333333,12.04,NA,NA
+2015-04-19,"BD","Chthamalus_dalli","Nucella_ostrina",0,0,107,NA,613.333333333333,12.04,NA,NA
+2015-04-19,"BD","Hiatella_arctica","Nucella_canaliculata",0,0,24,NA,0,12.04,NA,NA
+2015-04-19,"BD","Hiatella_arctica","Nucella_ostrina",0,0,107,NA,0,12.04,NA,NA
+2015-04-19,"BD","Limpets","Nucella_canaliculata",0,0,24,NA,4293.33333333334,12.04,NA,NA
+2015-04-19,"BD","Limpets","Nucella_ostrina",0,0,107,NA,4293.33333333334,12.04,NA,NA
+2015-04-19,"BD","Littorina_sitkana","Nucella_canaliculata",0,0,24,NA,3192.38095238095,12.04,NA,NA
+2015-04-19,"BD","Littorina_sitkana","Nucella_ostrina",0,0,107,NA,3192.38095238095,12.04,NA,NA
+2015-04-19,"BD","Modiolus_modiolus","Nucella_canaliculata",0,0,24,NA,0,12.04,NA,NA
+2015-04-19,"BD","Modiolus_modiolus","Nucella_ostrina",0,0,107,NA,0,12.04,NA,NA
+2015-04-19,"BD","Mytilus_californianus","Nucella_canaliculata",0,0,24,NA,285.714285714286,12.04,NA,NA
+2015-04-19,"BD","Mytilus_californianus","Nucella_ostrina",0,0,107,NA,285.714285714286,12.04,NA,NA
+2015-04-19,"BD","Mytilus_trossulus","Nucella_canaliculata",0,0,24,NA,9584.76190476189,12.04,NA,NA
+2015-04-19,"BD","Mytilus_trossulus","Nucella_ostrina",0.0416666666666667,4,107,50.8590038511095,9584.76190476189,12.04,8.54750925350365e-08,0.000819258410735815
+2015-04-19,"BD","Nucella_ostrina","Nucella_canaliculata",0,0,24,NA,228.571428571428,12.04,NA,NA
+2015-04-19,"BD","Nucella_ostrina","Nucella_ostrina",0,0,107,NA,228.571428571428,12.04,NA,NA
+2015-04-19,"BD","Pollicipes_polymerus","Nucella_canaliculata",0,0,24,NA,21348.5714285714,12.04,NA,NA
+2015-04-19,"BD","Pollicipes_polymerus","Nucella_ostrina",0.0104166666666667,1,107,8.58784168499985,21348.5714285714,12.04,5.68166885838265e-08,0.00121295513456672
+2015-04-19,"BD","Semibalanus_cariosus","Nucella_canaliculata",0,0,24,NA,26.6666666666667,12.04,NA,NA
+2015-04-19,"BD","Semibalanus_cariosus","Nucella_ostrina",0,0,107,NA,26.6666666666667,12.04,NA,NA
+2015-04-19,"BE","Adula_californiensis","Nucella_canaliculata",0,0,11,NA,0,12.04,NA,NA
+2015-04-19,"BE","Adula_californiensis","Nucella_ostrina",0,0,166,NA,0,12.04,NA,NA
+2015-04-19,"BE","Balanus_glandula","Nucella_canaliculata",0,0,11,NA,4365.71428571429,12.04,NA,NA
+2015-04-19,"BE","Balanus_glandula","Nucella_ostrina",0.038961038961039,6,166,49.4284202062643,4365.71428571429,12.04,1.80550414403409e-07,0.0007882315234526
+2015-04-19,"BE","Chthamalus_dalli","Nucella_canaliculata",0,0,11,NA,0,12.04,NA,NA
+2015-04-19,"BE","Chthamalus_dalli","Nucella_ostrina",0,0,166,NA,0,12.04,NA,NA
+2015-04-19,"BE","Hiatella_arctica","Nucella_canaliculata",0,0,11,NA,0,12.04,NA,NA
+2015-04-19,"BE","Hiatella_arctica","Nucella_ostrina",0,0,166,NA,0,12.04,NA,NA
+2015-04-19,"BE","Limpets","Nucella_canaliculata",0,0,11,NA,377.142857142857,12.04,NA,NA
+2015-04-19,"BE","Limpets","Nucella_ostrina",0,0,166,NA,377.142857142857,12.04,NA,NA
+2015-04-19,"BE","Littorina_sitkana","Nucella_canaliculata",0,0,11,NA,3417.14285714286,12.04,NA,NA
+2015-04-19,"BE","Littorina_sitkana","Nucella_ostrina",0,0,166,NA,3417.14285714286,12.04,NA,NA
+2015-04-19,"BE","Modiolus_modiolus","Nucella_canaliculata",0,0,11,NA,0,12.04,NA,NA
+2015-04-19,"BE","Modiolus_modiolus","Nucella_ostrina",0,0,166,NA,0,12.04,NA,NA
+2015-04-19,"BE","Mytilus_californianus","Nucella_canaliculata",0,0,11,NA,0,12.04,NA,NA
+2015-04-19,"BE","Mytilus_californianus","Nucella_ostrina",0,0,166,NA,0,12.04,NA,NA
+2015-04-19,"BE","Mytilus_trossulus","Nucella_canaliculata",0,0,11,NA,582.857142857143,12.04,NA,NA
+2015-04-19,"BE","Mytilus_trossulus","Nucella_ostrina",0.038961038961039,6,166,44.2318636479813,582.857142857143,12.04,1.51123905422753e-06,0.000880836477321188
+2015-04-19,"BE","Nucella_ostrina","Nucella_canaliculata",0,0,11,NA,11.4285714285714,12.04,NA,NA
+2015-04-19,"BE","Nucella_ostrina","Nucella_ostrina",0,0,166,NA,11.4285714285714,12.04,NA,NA
+2015-04-19,"BE","Pollicipes_polymerus","Nucella_canaliculata",0,0,11,NA,91.4285714285714,12.04,NA,NA
+2015-04-19,"BE","Pollicipes_polymerus","Nucella_ostrina",0,0,166,NA,91.4285714285714,12.04,NA,NA
+2015-04-19,"BE","Semibalanus_cariosus","Nucella_canaliculata",0,0,11,NA,0,12.04,NA,NA
+2015-04-19,"BE","Semibalanus_cariosus","Nucella_ostrina",0,0,166,NA,0,12.04,NA,NA
+2015-04-19,"BF","Adula_californiensis","Nucella_canaliculata",0,0,18,NA,0,12.04,NA,NA
+2015-04-19,"BF","Adula_californiensis","Nucella_ostrina",0,0,197,NA,0,12.04,NA,NA
+2015-04-19,"BF","Balanus_glandula","Nucella_canaliculata",0,0,18,NA,0,12.04,NA,NA
+2015-04-19,"BF","Balanus_glandula","Nucella_ostrina",0.0114285714285714,2,197,22.4103168322152,0,12.04,Inf,0.000509969203654571
+2015-04-19,"BF","Chthamalus_dalli","Nucella_canaliculata",0,0,18,NA,0,12.04,NA,NA
+2015-04-19,"BF","Chthamalus_dalli","Nucella_ostrina",0.00571428571428571,1,197,10.514088315364,0,12.04,Inf,0.000543488464514375
+2015-04-19,"BF","Hiatella_arctica","Nucella_canaliculata",0,0,18,NA,0,12.04,NA,NA
+2015-04-19,"BF","Hiatella_arctica","Nucella_ostrina",0,0,197,NA,0,12.04,NA,NA
+2015-04-19,"BF","Limpets","Nucella_canaliculata",0,0,18,NA,0,12.04,NA,NA
+2015-04-19,"BF","Limpets","Nucella_ostrina",0,0,197,NA,0,12.04,NA,NA
+2015-04-19,"BF","Littorina_sitkana","Nucella_canaliculata",0,0,18,NA,0,12.04,NA,NA
+2015-04-19,"BF","Littorina_sitkana","Nucella_ostrina",0,0,197,NA,0,12.04,NA,NA
+2015-04-19,"BF","Modiolus_modiolus","Nucella_canaliculata",0,0,18,NA,0,12.04,NA,NA
+2015-04-19,"BF","Modiolus_modiolus","Nucella_ostrina",0,0,197,NA,0,12.04,NA,NA
+2015-04-19,"BF","Mytilus_californianus","Nucella_canaliculata",0,0,18,NA,0,12.04,NA,NA
+2015-04-19,"BF","Mytilus_californianus","Nucella_ostrina",0,0,197,NA,0,12.04,NA,NA
+2015-04-19,"BF","Mytilus_trossulus","Nucella_canaliculata",0,0,18,NA,0,12.04,NA,NA
+2015-04-19,"BF","Mytilus_trossulus","Nucella_ostrina",0.108571428571429,19,197,46.567627632008,0,12.04,Inf,0.00233147862780114
+2015-04-19,"BF","Nucella_ostrina","Nucella_canaliculata",0,0,18,NA,0,12.04,NA,NA
+2015-04-19,"BF","Nucella_ostrina","Nucella_ostrina",0,0,197,NA,0,12.04,NA,NA
+2015-04-19,"BF","Pollicipes_polymerus","Nucella_canaliculata",0,0,18,NA,0,12.04,NA,NA
+2015-04-19,"BF","Pollicipes_polymerus","Nucella_ostrina",0,0,197,NA,0,12.04,NA,NA
+2015-04-19,"BF","Semibalanus_cariosus","Nucella_canaliculata",0,0,18,NA,0,12.04,NA,NA
+2015-04-19,"BF","Semibalanus_cariosus","Nucella_ostrina",0,0,197,NA,0,12.04,NA,NA
+2015-04-19,"C","Adula_californiensis","Nucella_canaliculata",0,0,16,NA,0,12.04,NA,NA
+2015-04-19,"C","Adula_californiensis","Nucella_ostrina",0,0,149,NA,0,12.04,NA,NA
+2015-04-19,"C","Balanus_glandula","Nucella_canaliculata",0,0,16,NA,1630.47619047619,12.04,NA,NA
+2015-04-19,"C","Balanus_glandula","Nucella_ostrina",0.00740740740740741,1,149,26.8124087937477,1630.47619047619,12.04,1.69439998148354e-07,0.000276267882695222
+2015-04-19,"C","Chthamalus_dalli","Nucella_canaliculata",0,0,16,NA,438.095238095238,12.04,NA,NA
+2015-04-19,"C","Chthamalus_dalli","Nucella_ostrina",0,0,149,NA,438.095238095238,12.04,NA,NA
+2015-04-19,"C","Hiatella_arctica","Nucella_canaliculata",0,0,16,NA,0,12.04,NA,NA
+2015-04-19,"C","Hiatella_arctica","Nucella_ostrina",0,0,149,NA,0,12.04,NA,NA
+2015-04-19,"C","Limpets","Nucella_canaliculata",0,0,16,NA,1622.85714285714,12.04,NA,NA
+2015-04-19,"C","Limpets","Nucella_ostrina",0,0,149,NA,1622.85714285714,12.04,NA,NA
+2015-04-19,"C","Littorina_sitkana","Nucella_canaliculata",0,0,16,NA,491.428571428571,12.04,NA,NA
+2015-04-19,"C","Littorina_sitkana","Nucella_ostrina",0,0,149,NA,491.428571428571,12.04,NA,NA
+2015-04-19,"C","Modiolus_modiolus","Nucella_canaliculata",0,0,16,NA,0,12.04,NA,NA
+2015-04-19,"C","Modiolus_modiolus","Nucella_ostrina",0,0,149,NA,0,12.04,NA,NA
+2015-04-19,"C","Mytilus_californianus","Nucella_canaliculata",0,0,16,NA,34.2857142857143,12.04,NA,NA
+2015-04-19,"C","Mytilus_californianus","Nucella_ostrina",0,0,149,NA,34.2857142857143,12.04,NA,NA
+2015-04-19,"C","Mytilus_trossulus","Nucella_canaliculata",0,0,16,NA,506.666666666667,12.04,NA,NA
+2015-04-19,"C","Mytilus_trossulus","Nucella_ostrina",0.0814814814814815,11,149,42.0459893921112,506.666666666667,12.04,3.82482885467468e-06,0.00193791328636851
+2015-04-19,"C","Nucella_ostrina","Nucella_canaliculata",0,0,16,NA,224.761904761905,12.04,NA,NA
+2015-04-19,"C","Nucella_ostrina","Nucella_ostrina",0,0,149,NA,224.761904761905,12.04,NA,NA
+2015-04-19,"C","Pollicipes_polymerus","Nucella_canaliculata",0.0666666666666667,1,16,6.5772982934294,7584.76190476191,12.04,1.33634702218518e-06,0.0101358739854121
+2015-04-19,"C","Pollicipes_polymerus","Nucella_ostrina",0.0148148148148148,2,149,7.45022092685623,7584.76190476191,12.04,2.6217128547047e-07,0.00198850677855888
+2015-04-19,"C","Semibalanus_cariosus","Nucella_canaliculata",0,0,16,NA,3.8095238095238,12.04,NA,NA
+2015-04-19,"C","Semibalanus_cariosus","Nucella_ostrina",0,0,149,NA,3.8095238095238,12.04,NA,NA
+2015-04-19,"D","Adula_californiensis","Nucella_canaliculata",0,0,22,NA,0,12.04,NA,NA
+2015-04-19,"D","Adula_californiensis","Nucella_ostrina",0,0,160,NA,0,12.04,NA,NA
+2015-04-19,"D","Balanus_glandula","Nucella_canaliculata",0,0,22,NA,3577.14285714286,12.04,NA,NA
+2015-04-19,"D","Balanus_glandula","Nucella_ostrina",0.0416666666666667,6,160,71.3418445080864,3577.14285714286,12.04,1.63270656923316e-07,0.000584042464194262
+2015-04-19,"D","Chthamalus_dalli","Nucella_canaliculata",0.0476190476190476,1,22,29.9369813595816,497.142857142857,12.04,3.19956910359534e-06,0.0015906429257874
+2015-04-19,"D","Chthamalus_dalli","Nucella_ostrina",0,0,160,NA,497.142857142857,12.04,NA,NA
+2015-04-19,"D","Hiatella_arctica","Nucella_canaliculata",0,0,22,NA,0,12.04,NA,NA
+2015-04-19,"D","Hiatella_arctica","Nucella_ostrina",0,0,160,NA,0,12.04,NA,NA
+2015-04-19,"D","Limpets","Nucella_canaliculata",0,0,22,NA,1491.42857142857,12.04,NA,NA
+2015-04-19,"D","Limpets","Nucella_ostrina",0,0,160,NA,1491.42857142857,12.04,NA,NA
+2015-04-19,"D","Littorina_sitkana","Nucella_canaliculata",0,0,22,NA,1891.42857142857,12.04,NA,NA
+2015-04-19,"D","Littorina_sitkana","Nucella_ostrina",0,0,160,NA,1891.42857142857,12.04,NA,NA
+2015-04-19,"D","Modiolus_modiolus","Nucella_canaliculata",0,0,22,NA,0,12.04,NA,NA
+2015-04-19,"D","Modiolus_modiolus","Nucella_ostrina",0,0,160,NA,0,12.04,NA,NA
+2015-04-19,"D","Mytilus_californianus","Nucella_canaliculata",0,0,22,NA,125.714285714285,12.04,NA,NA
+2015-04-19,"D","Mytilus_californianus","Nucella_ostrina",0,0,160,NA,125.714285714285,12.04,NA,NA
+2015-04-19,"D","Mytilus_trossulus","Nucella_canaliculata",0,0,22,NA,2883.42857142857,12.04,NA,NA
+2015-04-19,"D","Mytilus_trossulus","Nucella_ostrina",0.0694444444444444,10,160,48.9976850742515,2883.42857142857,12.04,4.91533077047643e-07,0.00141730051816137
+2015-04-19,"D","Nucella_ostrina","Nucella_canaliculata",0,0,22,NA,308.571428571428,12.04,NA,NA
+2015-04-19,"D","Nucella_ostrina","Nucella_ostrina",0,0,160,NA,308.571428571428,12.04,NA,NA
+2015-04-19,"D","Pollicipes_polymerus","Nucella_canaliculata",0,0,22,NA,234.285714285715,12.04,NA,NA
+2015-04-19,"D","Pollicipes_polymerus","Nucella_ostrina",0,0,160,NA,234.285714285715,12.04,NA,NA
+2015-04-19,"D","Semibalanus_cariosus","Nucella_canaliculata",0,0,22,NA,0,12.04,NA,NA
+2015-04-19,"D","Semibalanus_cariosus","Nucella_ostrina",0,0,160,NA,0,12.04,NA,NA
+2015-04-19,"E","Adula_californiensis","Nucella_canaliculata",0,0,31,NA,0,12.04,NA,NA
+2015-04-19,"E","Adula_californiensis","Nucella_ostrina",0,0,172,NA,0,12.04,NA,NA
+2015-04-19,"E","Balanus_glandula","Nucella_canaliculata",0,0,31,NA,1706.66666666666,12.04,NA,NA
+2015-04-19,"E","Balanus_glandula","Nucella_ostrina",0,0,172,NA,1706.66666666666,12.04,NA,NA
+2015-04-19,"E","Chthamalus_dalli","Nucella_canaliculata",0,0,31,NA,194.285714285714,12.04,NA,NA
+2015-04-19,"E","Chthamalus_dalli","Nucella_ostrina",0.01875,3,172,21.7854753291243,194.285714285714,12.04,4.42989429806743e-06,0.000860665177910243
+2015-04-19,"E","Hiatella_arctica","Nucella_canaliculata",0,0,31,NA,0,12.04,NA,NA
+2015-04-19,"E","Hiatella_arctica","Nucella_ostrina",0,0,172,NA,0,12.04,NA,NA
+2015-04-19,"E","Limpets","Nucella_canaliculata",0,0,31,NA,834.285714285713,12.04,NA,NA
+2015-04-19,"E","Limpets","Nucella_ostrina",0,0,172,NA,834.285714285713,12.04,NA,NA
+2015-04-19,"E","Littorina_sitkana","Nucella_canaliculata",0,0,31,NA,986.666666666666,12.04,NA,NA
+2015-04-19,"E","Littorina_sitkana","Nucella_ostrina",0,0,172,NA,986.666666666666,12.04,NA,NA
+2015-04-19,"E","Modiolus_modiolus","Nucella_canaliculata",0,0,31,NA,0,12.04,NA,NA
+2015-04-19,"E","Modiolus_modiolus","Nucella_ostrina",0,0,172,NA,0,12.04,NA,NA
+2015-04-19,"E","Mytilus_californianus","Nucella_canaliculata",0,0,31,NA,7.6190476190476,12.04,NA,NA
+2015-04-19,"E","Mytilus_californianus","Nucella_ostrina",0,0,172,NA,7.6190476190476,12.04,NA,NA
+2015-04-19,"E","Mytilus_trossulus","Nucella_canaliculata",0.0333333333333333,1,31,41.0137985717987,560,12.04,1.45131179253263e-06,0.000812734603818274
+2015-04-19,"E","Mytilus_trossulus","Nucella_ostrina",0.03125,5,172,77.3600283472234,560,12.04,7.21348900986724e-07,0.000403955384552566
+2015-04-19,"E","Nucella_ostrina","Nucella_canaliculata",0,0,31,NA,262.857142857143,12.04,NA,NA
+2015-04-19,"E","Nucella_ostrina","Nucella_ostrina",0,0,172,NA,262.857142857143,12.04,NA,NA
+2015-04-19,"E","Pollicipes_polymerus","Nucella_canaliculata",0,0,31,NA,5771.42857142857,12.04,NA,NA
+2015-04-19,"E","Pollicipes_polymerus","Nucella_ostrina",0.025,4,172,10.0827372342928,5771.42857142857,12.04,4.29613810978251e-07,0.00247948542336019
+2015-04-19,"E","Semibalanus_cariosus","Nucella_canaliculata",0,0,31,NA,3.8095238095238,12.04,NA,NA
+2015-04-19,"E","Semibalanus_cariosus","Nucella_ostrina",0,0,172,NA,3.8095238095238,12.04,NA,NA
+2015-04-19,"F","Adula_californiensis","Nucella_canaliculata",0,0,15,NA,0,12.04,NA,NA
+2015-04-19,"F","Adula_californiensis","Nucella_ostrina",0,0,143,NA,0,12.04,NA,NA
+2015-04-19,"F","Balanus_glandula","Nucella_canaliculata",0,0,15,NA,2830.47619047619,12.04,NA,NA
+2015-04-19,"F","Balanus_glandula","Nucella_ostrina",0.0172413793103448,2,143,66.8721474769721,2830.47619047619,12.04,9.10892718493597e-08,0.000257826015177425
+2015-04-19,"F","Chthamalus_dalli","Nucella_canaliculata",0,0,15,NA,1020.95238095238,12.04,NA,NA
+2015-04-19,"F","Chthamalus_dalli","Nucella_ostrina",0,0,143,NA,1020.95238095238,12.04,NA,NA
+2015-04-19,"F","Hiatella_arctica","Nucella_canaliculata",0,0,15,NA,0,12.04,NA,NA
+2015-04-19,"F","Hiatella_arctica","Nucella_ostrina",0,0,143,NA,0,12.04,NA,NA
+2015-04-19,"F","Limpets","Nucella_canaliculata",0,0,15,NA,3139.04761904762,12.04,NA,NA
+2015-04-19,"F","Limpets","Nucella_ostrina",0,0,143,NA,3139.04761904762,12.04,NA,NA
+2015-04-19,"F","Littorina_sitkana","Nucella_canaliculata",0,0,15,NA,1203.80952380952,12.04,NA,NA
+2015-04-19,"F","Littorina_sitkana","Nucella_ostrina",0,0,143,NA,1203.80952380952,12.04,NA,NA
+2015-04-19,"F","Modiolus_modiolus","Nucella_canaliculata",0,0,15,NA,0,12.04,NA,NA
+2015-04-19,"F","Modiolus_modiolus","Nucella_ostrina",0,0,143,NA,0,12.04,NA,NA
+2015-04-19,"F","Mytilus_californianus","Nucella_canaliculata",0,0,15,NA,0,12.04,NA,NA
+2015-04-19,"F","Mytilus_californianus","Nucella_ostrina",0,0,143,NA,0,12.04,NA,NA
+2015-04-19,"F","Mytilus_trossulus","Nucella_canaliculata",0.0714285714285714,1,15,66.2296453298167,2019.04761904762,12.04,5.34161980098043e-07,0.00107849847410272
+2015-04-19,"F","Mytilus_trossulus","Nucella_ostrina",0.206896551724138,24,143,62.2820354584514,2019.04761904762,12.04,1.64529543675005e-06,0.0033219298342001
+2015-04-19,"F","Nucella_ostrina","Nucella_canaliculata",0,0,15,NA,262.857142857143,12.04,NA,NA
+2015-04-19,"F","Nucella_ostrina","Nucella_ostrina",0,0,143,NA,262.857142857143,12.04,NA,NA
+2015-04-19,"F","Pollicipes_polymerus","Nucella_canaliculata",0,0,15,NA,15.2380952380953,12.04,NA,NA
+2015-04-19,"F","Pollicipes_polymerus","Nucella_ostrina",0.00862068965517241,1,143,7.76068821454813,15.2380952380953,12.04,7.28972409380099e-05,0.00111081510000777
+2015-04-19,"F","Semibalanus_cariosus","Nucella_canaliculata",0,0,15,NA,0,12.04,NA,NA
+2015-04-19,"F","Semibalanus_cariosus","Nucella_ostrina",0,0,143,NA,0,12.04,NA,NA
+2015-04-19,"G","Adula_californiensis","Nucella_canaliculata",0,0,7,NA,0,12.04,NA,NA
+2015-04-19,"G","Adula_californiensis","Nucella_ostrina",0,0,165,NA,0,12.04,NA,NA
+2015-04-19,"G","Balanus_glandula","Nucella_canaliculata",0,0,7,NA,1811.42857142857,12.04,NA,NA
+2015-04-19,"G","Balanus_glandula","Nucella_ostrina",0.0300751879699248,4,165,28.9467175010136,1811.42857142857,12.04,5.73571830705057e-07,0.00103898440190573
+2015-04-19,"G","Chthamalus_dalli","Nucella_canaliculata",0,0,7,NA,131.428571428572,12.04,NA,NA
+2015-04-19,"G","Chthamalus_dalli","Nucella_ostrina",0.0150375939849624,2,165,10.514088315364,131.428571428572,12.04,1.08822060972558e-05,0.00143023280135362
+2015-04-19,"G","Hiatella_arctica","Nucella_canaliculata",0,0,7,NA,0,12.04,NA,NA
+2015-04-19,"G","Hiatella_arctica","Nucella_ostrina",0,0,165,NA,0,12.04,NA,NA
+2015-04-19,"G","Limpets","Nucella_canaliculata",0,0,7,NA,497.142857142858,12.04,NA,NA
+2015-04-19,"G","Limpets","Nucella_ostrina",0,0,165,NA,497.142857142858,12.04,NA,NA
+2015-04-19,"G","Littorina_sitkana","Nucella_canaliculata",0,0,7,NA,365.714285714285,12.04,NA,NA
+2015-04-19,"G","Littorina_sitkana","Nucella_ostrina",0,0,165,NA,365.714285714285,12.04,NA,NA
+2015-04-19,"G","Modiolus_modiolus","Nucella_canaliculata",0,0,7,NA,0,12.04,NA,NA
+2015-04-19,"G","Modiolus_modiolus","Nucella_ostrina",0,0,165,NA,0,12.04,NA,NA
+2015-04-19,"G","Mytilus_californianus","Nucella_canaliculata",0,0,7,NA,205.714285714286,12.04,NA,NA
+2015-04-19,"G","Mytilus_californianus","Nucella_ostrina",0,0,165,NA,205.714285714286,12.04,NA,NA
+2015-04-19,"G","Mytilus_trossulus","Nucella_canaliculata",0,0,7,NA,2462.85714285714,12.04,NA,NA
+2015-04-19,"G","Mytilus_trossulus","Nucella_ostrina",0.195488721804511,26,165,48.1193960147667,2462.85714285714,12.04,1.64953797445745e-06,0.00406257638280664
+2015-04-19,"G","Nucella_ostrina","Nucella_canaliculata",0,0,7,NA,428.571428571429,12.04,NA,NA
+2015-04-19,"G","Nucella_ostrina","Nucella_ostrina",0,0,165,NA,428.571428571429,12.04,NA,NA
+2015-04-19,"G","Pollicipes_polymerus","Nucella_canaliculata",0,0,7,NA,6451.42857142857,12.04,NA,NA
+2015-04-19,"G","Pollicipes_polymerus","Nucella_ostrina",0,0,165,NA,6451.42857142857,12.04,NA,NA
+2015-04-19,"G","Semibalanus_cariosus","Nucella_canaliculata",0,0,7,NA,40,12.04,NA,NA
+2015-04-19,"G","Semibalanus_cariosus","Nucella_ostrina",0,0,165,NA,40,12.04,NA,NA
+2015-05-18,"A","Adula_californiensis","Nucella_canaliculata",0,0,36,NA,0,11.22,NA,NA
+2015-05-18,"A","Adula_californiensis","Nucella_ostrina",0,0,174,NA,0,11.22,NA,NA
+2015-05-18,"A","Balanus_glandula","Nucella_canaliculata",0,0,36,NA,2262.85714285714,11.22,NA,NA
+2015-05-18,"A","Balanus_glandula","Nucella_ostrina",0.0384615384615385,6,174,20.4633320115275,2262.85714285714,11.22,8.30602366580243e-07,0.00187953449809015
+2015-05-18,"A","Chthamalus_dalli","Nucella_canaliculata",0,0,36,NA,577.142857142857,11.22,NA,NA
+2015-05-18,"A","Chthamalus_dalli","Nucella_ostrina",0.032051282051282,5,174,15.9788360263095,577.142857142857,11.22,3.47549718279648e-06,0.00200585837407111
+2015-05-18,"A","Hiatella_arctica","Nucella_canaliculata",0,0,36,NA,0,11.22,NA,NA
+2015-05-18,"A","Hiatella_arctica","Nucella_ostrina",0,0,174,NA,0,11.22,NA,NA
+2015-05-18,"A","Limpets","Nucella_canaliculata",0,0,36,NA,2268.57142857143,11.22,NA,NA
+2015-05-18,"A","Limpets","Nucella_ostrina",0.00641025641025641,1,174,2.03679128809041,2268.57142857143,11.22,1.38731925766927e-06,0.00314723283025544
+2015-05-18,"A","Littorina_sitkana","Nucella_canaliculata",0,0,36,NA,662.857142857144,11.22,NA,NA
+2015-05-18,"A","Littorina_sitkana","Nucella_ostrina",0,0,174,NA,662.857142857144,11.22,NA,NA
+2015-05-18,"A","Modiolus_modiolus","Nucella_canaliculata",0,0,36,NA,0,11.22,NA,NA
+2015-05-18,"A","Modiolus_modiolus","Nucella_ostrina",0,0,174,NA,0,11.22,NA,NA
+2015-05-18,"A","Mytilus_californianus","Nucella_canaliculata",0,0,36,NA,34.2857142857143,11.22,NA,NA
+2015-05-18,"A","Mytilus_californianus","Nucella_ostrina",0,0,174,NA,34.2857142857143,11.22,NA,NA
+2015-05-18,"A","Mytilus_trossulus","Nucella_canaliculata",0.0285714285714286,1,36,36.4313125277352,34.2857142857142,11.22,2.28740958124667e-05,0.000784254713570288
+2015-05-18,"A","Mytilus_trossulus","Nucella_ostrina",0.032051282051282,5,174,50.5785211245833,34.2857142857142,11.22,1.84827282222511e-05,0.00063369353904861
+2015-05-18,"A","Nucella_ostrina","Nucella_canaliculata",0,0,36,NA,125.714285714286,11.22,NA,NA
+2015-05-18,"A","Nucella_ostrina","Nucella_ostrina",0,0,174,NA,125.714285714286,11.22,NA,NA
+2015-05-18,"A","Pollicipes_polymerus","Nucella_canaliculata",0,0,36,NA,2217.14285714286,11.22,NA,NA
+2015-05-18,"A","Pollicipes_polymerus","Nucella_ostrina",0.00641025641025641,1,174,16.0386459369517,2217.14285714286,11.22,1.8026608404126e-07,0.000399675660617192
+2015-05-18,"A","Semibalanus_cariosus","Nucella_canaliculata",0,0,36,NA,5.7142857142857,11.22,NA,NA
+2015-05-18,"A","Semibalanus_cariosus","Nucella_ostrina",0,0,174,NA,5.7142857142857,11.22,NA,NA
+2015-05-18,"AB","Adula_californiensis","Nucella_canaliculata",0,0,53,NA,0,11.22,NA,NA
+2015-05-18,"AB","Adula_californiensis","Nucella_ostrina",0,0,235,NA,0,11.22,NA,NA
+2015-05-18,"AB","Balanus_glandula","Nucella_canaliculata",0,0,53,NA,497.142857142857,11.22,NA,NA
+2015-05-18,"AB","Balanus_glandula","Nucella_ostrina",0.0182648401826484,4,235,24.8606794432602,497.142857142857,11.22,1.47782047312514e-06,0.000734687892353643
+2015-05-18,"AB","Chthamalus_dalli","Nucella_canaliculata",0,0,53,NA,11.4285714285715,11.22,NA,NA
+2015-05-18,"AB","Chthamalus_dalli","Nucella_ostrina",0.0091324200913242,2,235,18.4770886233052,11.4285714285715,11.22,4.32474387216489e-05,0.000494256442533131
+2015-05-18,"AB","Hiatella_arctica","Nucella_canaliculata",0,0,53,NA,0,11.22,NA,NA
+2015-05-18,"AB","Hiatella_arctica","Nucella_ostrina",0,0,235,NA,0,11.22,NA,NA
+2015-05-18,"AB","Limpets","Nucella_canaliculata",0.0204081632653061,1,53,7.5366976181552,1120,11.22,2.41771333642593e-06,0.00270783893679704
+2015-05-18,"AB","Limpets","Nucella_ostrina",0.0045662100456621,1,235,12.2213162575378,1120,11.22,3.33595266593391e-07,0.000373626698584597
+2015-05-18,"AB","Littorina_sitkana","Nucella_canaliculata",0,0,53,NA,1480,11.22,NA,NA
+2015-05-18,"AB","Littorina_sitkana","Nucella_ostrina",0.0045662100456621,1,235,28.4406217994699,1480,11.22,1.08481350359833e-07,0.000160552398532553
+2015-05-18,"AB","Modiolus_modiolus","Nucella_canaliculata",0,0,53,NA,0,11.22,NA,NA
+2015-05-18,"AB","Modiolus_modiolus","Nucella_ostrina",0,0,235,NA,0,11.22,NA,NA
+2015-05-18,"AB","Mytilus_californianus","Nucella_canaliculata",0,0,53,NA,91.4285714285715,11.22,NA,NA
+2015-05-18,"AB","Mytilus_californianus","Nucella_ostrina",0,0,235,NA,91.4285714285715,11.22,NA,NA
+2015-05-18,"AB","Mytilus_trossulus","Nucella_canaliculata",0.0612244897959184,3,53,73.3823101146702,965.714285714284,11.22,8.63943097759512e-07,0.000834322191550613
+2015-05-18,"AB","Mytilus_trossulus","Nucella_ostrina",0.0365296803652968,8,235,69.7711316806766,965.714285714284,11.22,5.42152480303234e-07,0.000523564395264264
+2015-05-18,"AB","Nucella_ostrina","Nucella_canaliculata",0,0,53,NA,154.285714285714,11.22,NA,NA
+2015-05-18,"AB","Nucella_ostrina","Nucella_ostrina",0,0,235,NA,154.285714285714,11.22,NA,NA
+2015-05-18,"AB","Pollicipes_polymerus","Nucella_canaliculata",0,0,53,NA,7080,11.22,NA,NA
+2015-05-18,"AB","Pollicipes_polymerus","Nucella_ostrina",0,0,235,NA,7080,11.22,NA,NA
+2015-05-18,"AB","Semibalanus_cariosus","Nucella_canaliculata",0,0,53,NA,22.8571428571429,11.22,NA,NA
+2015-05-18,"AB","Semibalanus_cariosus","Nucella_ostrina",0,0,235,NA,22.8571428571429,11.22,NA,NA
+2015-05-18,"AC","Adula_californiensis","Nucella_canaliculata",0,0,9,NA,0,11.22,NA,NA
+2015-05-18,"AC","Adula_californiensis","Nucella_ostrina",0,0,287,NA,0,11.22,NA,NA
+2015-05-18,"AC","Balanus_glandula","Nucella_canaliculata",0,0,9,NA,5568,11.22,NA,NA
+2015-05-18,"AC","Balanus_glandula","Nucella_ostrina",0.0737704918032787,18,287,38.2684259330532,5568,11.22,3.46212586943325e-07,0.00192771168410043
+2015-05-18,"AC","Chthamalus_dalli","Nucella_canaliculata",0,0,9,NA,898.285714285714,11.22,NA,NA
+2015-05-18,"AC","Chthamalus_dalli","Nucella_ostrina",0.0163934426229508,4,287,14.2520386798045,898.285714285714,11.22,1.28049733700908e-06,0.00115025246501616
+2015-05-18,"AC","Hiatella_arctica","Nucella_canaliculata",0,0,9,NA,0,11.22,NA,NA
+2015-05-18,"AC","Hiatella_arctica","Nucella_ostrina",0,0,287,NA,0,11.22,NA,NA
+2015-05-18,"AC","Limpets","Nucella_canaliculata",0,0,9,NA,1904.7619047619,11.22,NA,NA
+2015-05-18,"AC","Limpets","Nucella_ostrina",0,0,287,NA,1904.7619047619,11.22,NA,NA
+2015-05-18,"AC","Littorina_sitkana","Nucella_canaliculata",0,0,9,NA,7683.80952380953,11.22,NA,NA
+2015-05-18,"AC","Littorina_sitkana","Nucella_ostrina",0,0,287,NA,7683.80952380953,11.22,NA,NA
+2015-05-18,"AC","Modiolus_modiolus","Nucella_canaliculata",0,0,9,NA,0,11.22,NA,NA
+2015-05-18,"AC","Modiolus_modiolus","Nucella_ostrina",0,0,287,NA,0,11.22,NA,NA
+2015-05-18,"AC","Mytilus_californianus","Nucella_canaliculata",0,0,9,NA,0,11.22,NA,NA
+2015-05-18,"AC","Mytilus_californianus","Nucella_ostrina",0,0,287,NA,0,11.22,NA,NA
+2015-05-18,"AC","Mytilus_trossulus","Nucella_canaliculata",0.125,1,9,31.5578243039265,1550.47619047619,11.22,2.55468793868536e-06,0.00396098282302836
+2015-05-18,"AC","Mytilus_trossulus","Nucella_ostrina",0.0860655737704918,21,287,39.3771985306188,1550.47619047619,11.22,1.40967679782784e-06,0.00218567031129879
+2015-05-18,"AC","Nucella_ostrina","Nucella_canaliculata",0,0,9,NA,182.857142857143,11.22,NA,NA
+2015-05-18,"AC","Nucella_ostrina","Nucella_ostrina",0,0,287,NA,182.857142857143,11.22,NA,NA
+2015-05-18,"AC","Pollicipes_polymerus","Nucella_canaliculata",0,0,9,NA,285.714285714286,11.22,NA,NA
+2015-05-18,"AC","Pollicipes_polymerus","Nucella_ostrina",0,0,287,NA,285.714285714286,11.22,NA,NA
+2015-05-18,"AC","Semibalanus_cariosus","Nucella_canaliculata",0,0,9,NA,30.4761904761905,11.22,NA,NA
+2015-05-18,"AC","Semibalanus_cariosus","Nucella_ostrina",0,0,287,NA,30.4761904761905,11.22,NA,NA
+2015-05-18,"AD","Adula_californiensis","Nucella_canaliculata",0,0,0,NA,0,11.22,NA,NA
+2015-05-18,"AD","Adula_californiensis","Nucella_ostrina",0,0,243,NA,0,11.22,NA,NA
+2015-05-18,"AD","Balanus_glandula","Nucella_canaliculata",0,0,0,NA,2232.38095238095,11.22,NA,NA
+2015-05-18,"AD","Balanus_glandula","Nucella_ostrina",0,0,243,NA,2232.38095238095,11.22,NA,NA
+2015-05-18,"AD","Chthamalus_dalli","Nucella_canaliculata",0,0,0,NA,137.142857142857,11.22,NA,NA
+2015-05-18,"AD","Chthamalus_dalli","Nucella_ostrina",0,0,243,NA,137.142857142857,11.22,NA,NA
+2015-05-18,"AD","Hiatella_arctica","Nucella_canaliculata",0,0,0,NA,0,11.22,NA,NA
+2015-05-18,"AD","Hiatella_arctica","Nucella_ostrina",0,0,243,NA,0,11.22,NA,NA
+2015-05-18,"AD","Limpets","Nucella_canaliculata",0,0,0,NA,1333.33333333333,11.22,NA,NA
+2015-05-18,"AD","Limpets","Nucella_ostrina",0,0,243,NA,1333.33333333333,11.22,NA,NA
+2015-05-18,"AD","Littorina_sitkana","Nucella_canaliculata",0,0,0,NA,761.904761904761,11.22,NA,NA
+2015-05-18,"AD","Littorina_sitkana","Nucella_ostrina",0,0,243,NA,761.904761904761,11.22,NA,NA
+2015-05-18,"AD","Modiolus_modiolus","Nucella_canaliculata",0,0,0,NA,0,11.22,NA,NA
+2015-05-18,"AD","Modiolus_modiolus","Nucella_ostrina",0,0,243,NA,0,11.22,NA,NA
+2015-05-18,"AD","Mytilus_californianus","Nucella_canaliculata",0,0,0,NA,60.9523809523808,11.22,NA,NA
+2015-05-18,"AD","Mytilus_californianus","Nucella_ostrina",0,0,243,NA,60.9523809523808,11.22,NA,NA
+2015-05-18,"AD","Mytilus_trossulus","Nucella_canaliculata",0,0,0,NA,1398.09523809524,11.22,NA,NA
+2015-05-18,"AD","Mytilus_trossulus","Nucella_ostrina",0,0,243,NA,1398.09523809524,11.22,NA,NA
+2015-05-18,"AD","Nucella_ostrina","Nucella_canaliculata",0,0,0,NA,167.619047619048,11.22,NA,NA
+2015-05-18,"AD","Nucella_ostrina","Nucella_ostrina",0,0,243,NA,167.619047619048,11.22,NA,NA
+2015-05-18,"AD","Pollicipes_polymerus","Nucella_canaliculata",0,0,0,NA,2441.90476190476,11.22,NA,NA
+2015-05-18,"AD","Pollicipes_polymerus","Nucella_ostrina",0,0,243,NA,2441.90476190476,11.22,NA,NA
+2015-05-18,"AD","Semibalanus_cariosus","Nucella_canaliculata",0,0,0,NA,19.047619047619,11.22,NA,NA
+2015-05-18,"AD","Semibalanus_cariosus","Nucella_ostrina",0,0,243,NA,19.047619047619,11.22,NA,NA
+2015-05-18,"AE","Adula_californiensis","Nucella_canaliculata",0,0,13,NA,0,11.22,NA,NA
+2015-05-18,"AE","Adula_californiensis","Nucella_ostrina",0,0,260,NA,0,11.22,NA,NA
+2015-05-18,"AE","Balanus_glandula","Nucella_canaliculata",0,0,13,NA,1619.04761904762,11.22,NA,NA
+2015-05-18,"AE","Balanus_glandula","Nucella_ostrina",0.0405405405405405,9,260,55.5593789212685,1619.04761904762,11.22,4.50684404940234e-07,0.00072967951276038
+2015-05-18,"AE","Chthamalus_dalli","Nucella_canaliculata",0,0,13,NA,304.761904761904,11.22,NA,NA
+2015-05-18,"AE","Chthamalus_dalli","Nucella_ostrina",0,0,260,NA,304.761904761904,11.22,NA,NA
+2015-05-18,"AE","Hiatella_arctica","Nucella_canaliculata",0,0,13,NA,0,11.22,NA,NA
+2015-05-18,"AE","Hiatella_arctica","Nucella_ostrina",0,0,260,NA,0,11.22,NA,NA
+2015-05-18,"AE","Limpets","Nucella_canaliculata",0,0,13,NA,2121.90476190476,11.22,NA,NA
+2015-05-18,"AE","Limpets","Nucella_ostrina",0,0,260,NA,2121.90476190476,11.22,NA,NA
+2015-05-18,"AE","Littorina_sitkana","Nucella_canaliculata",0,0,13,NA,1249.52380952381,11.22,NA,NA
+2015-05-18,"AE","Littorina_sitkana","Nucella_ostrina",0,0,260,NA,1249.52380952381,11.22,NA,NA
+2015-05-18,"AE","Modiolus_modiolus","Nucella_canaliculata",0,0,13,NA,0,11.22,NA,NA
+2015-05-18,"AE","Modiolus_modiolus","Nucella_ostrina",0,0,260,NA,0,11.22,NA,NA
+2015-05-18,"AE","Mytilus_californianus","Nucella_canaliculata",0,0,13,NA,118.095238095238,11.22,NA,NA
+2015-05-18,"AE","Mytilus_californianus","Nucella_ostrina",0,0,260,NA,118.095238095238,11.22,NA,NA
+2015-05-18,"AE","Mytilus_trossulus","Nucella_canaliculata",0,0,13,NA,1302.85714285714,11.22,NA,NA
+2015-05-18,"AE","Mytilus_trossulus","Nucella_ostrina",0.130630630630631,29,260,53.7094300697711,1302.85714285714,11.22,1.86679952277253e-06,0.00243217309252649
+2015-05-18,"AE","Nucella_ostrina","Nucella_canaliculata",0,0,13,NA,175.238095238095,11.22,NA,NA
+2015-05-18,"AE","Nucella_ostrina","Nucella_ostrina",0,0,260,NA,175.238095238095,11.22,NA,NA
+2015-05-18,"AE","Pollicipes_polymerus","Nucella_canaliculata",0,0,13,NA,529.52380952381,11.22,NA,NA
+2015-05-18,"AE","Pollicipes_polymerus","Nucella_ostrina",0,0,260,NA,529.52380952381,11.22,NA,NA
+2015-05-18,"AE","Semibalanus_cariosus","Nucella_canaliculata",0,0,13,NA,45.7142857142857,11.22,NA,NA
+2015-05-18,"AE","Semibalanus_cariosus","Nucella_ostrina",0,0,260,NA,45.7142857142857,11.22,NA,NA
+2015-05-18,"AF","Adula_californiensis","Nucella_canaliculata",0,0,8,NA,0,11.22,NA,NA
+2015-05-18,"AF","Adula_californiensis","Nucella_ostrina",0,0,139,NA,0,11.22,NA,NA
+2015-05-18,"AF","Balanus_glandula","Nucella_canaliculata",0,0,8,NA,6598.09523809524,11.22,NA,NA
+2015-05-18,"AF","Balanus_glandula","Nucella_ostrina",0.0701754385964912,8,139,35.476533401963,6598.09523809524,11.22,2.99795686363812e-07,0.00197808049059856
+2015-05-18,"AF","Chthamalus_dalli","Nucella_canaliculata",0.166666666666667,1,8,37.0251203297856,1173.33333333333,11.22,3.83646165846984e-06,0.00450144834593795
+2015-05-18,"AF","Chthamalus_dalli","Nucella_ostrina",0.0526315789473684,6,139,16.8370229137078,1173.33333333333,11.22,2.66415622049333e-06,0.00312594329871218
+2015-05-18,"AF","Hiatella_arctica","Nucella_canaliculata",0,0,8,NA,0,11.22,NA,NA
+2015-05-18,"AF","Hiatella_arctica","Nucella_ostrina",0,0,139,NA,0,11.22,NA,NA
+2015-05-18,"AF","Limpets","Nucella_canaliculata",0,0,8,NA,2064.76190476191,11.22,NA,NA
+2015-05-18,"AF","Limpets","Nucella_ostrina",0,0,139,NA,2064.76190476191,11.22,NA,NA
+2015-05-18,"AF","Littorina_sitkana","Nucella_canaliculata",0,0,8,NA,2560,11.22,NA,NA
+2015-05-18,"AF","Littorina_sitkana","Nucella_ostrina",0,0,139,NA,2560,11.22,NA,NA
+2015-05-18,"AF","Modiolus_modiolus","Nucella_canaliculata",0,0,8,NA,0,11.22,NA,NA
+2015-05-18,"AF","Modiolus_modiolus","Nucella_ostrina",0,0,139,NA,0,11.22,NA,NA
+2015-05-18,"AF","Mytilus_californianus","Nucella_canaliculata",0,0,8,NA,53.3333333333333,11.22,NA,NA
+2015-05-18,"AF","Mytilus_californianus","Nucella_ostrina",0,0,139,NA,53.3333333333333,11.22,NA,NA
+2015-05-18,"AF","Mytilus_trossulus","Nucella_canaliculata",0.166666666666667,1,8,75.0990817613844,590.47619047619,11.22,3.75847557514698e-06,0.0022192903396106
+2015-05-18,"AF","Mytilus_trossulus","Nucella_ostrina",0.0964912280701754,11,139,41.2749620466797,590.47619047619,11.22,3.95912087047886e-06,0.00233776660923514
+2015-05-18,"AF","Nucella_ostrina","Nucella_canaliculata",0,0,8,NA,95.2380952380952,11.22,NA,NA
+2015-05-18,"AF","Nucella_ostrina","Nucella_ostrina",0,0,139,NA,95.2380952380952,11.22,NA,NA
+2015-05-18,"AF","Pollicipes_polymerus","Nucella_canaliculata",0,0,8,NA,80,11.22,NA,NA
+2015-05-18,"AF","Pollicipes_polymerus","Nucella_ostrina",0,0,139,NA,80,11.22,NA,NA
+2015-05-18,"AF","Semibalanus_cariosus","Nucella_canaliculata",0,0,8,NA,26.6666666666667,11.22,NA,NA
+2015-05-18,"AF","Semibalanus_cariosus","Nucella_ostrina",0,0,139,NA,26.6666666666667,11.22,NA,NA
+2015-05-18,"AG","Adula_californiensis","Nucella_canaliculata",0,0,22,NA,0,11.22,NA,NA
+2015-05-18,"AG","Adula_californiensis","Nucella_ostrina",0,0,290,NA,0,11.22,NA,NA
+2015-05-18,"AG","Balanus_glandula","Nucella_canaliculata",0,0,22,NA,4994.28571428571,11.22,NA,NA
+2015-05-18,"AG","Balanus_glandula","Nucella_ostrina",0.02,5,290,69.2911465117219,4994.28571428571,11.22,5.77934824380696e-08,0.000288637163719273
+2015-05-18,"AG","Chthamalus_dalli","Nucella_canaliculata",0,0,22,NA,308.571428571429,11.22,NA,NA
+2015-05-18,"AG","Chthamalus_dalli","Nucella_ostrina",0.02,5,290,21.4686085035563,308.571428571429,11.22,3.01905057349562e-06,0.000931592748392935
+2015-05-18,"AG","Hiatella_arctica","Nucella_canaliculata",0,0,22,NA,0,11.22,NA,NA
+2015-05-18,"AG","Hiatella_arctica","Nucella_ostrina",0,0,290,NA,0,11.22,NA,NA
+2015-05-18,"AG","Limpets","Nucella_canaliculata",0,0,22,NA,1280,11.22,NA,NA
+2015-05-18,"AG","Limpets","Nucella_ostrina",0,0,290,NA,1280,11.22,NA,NA
+2015-05-18,"AG","Littorina_sitkana","Nucella_canaliculata",0,0,22,NA,2217.14285714286,11.22,NA,NA
+2015-05-18,"AG","Littorina_sitkana","Nucella_ostrina",0,0,290,NA,2217.14285714286,11.22,NA,NA
+2015-05-18,"AG","Modiolus_modiolus","Nucella_canaliculata",0,0,22,NA,0,11.22,NA,NA
+2015-05-18,"AG","Modiolus_modiolus","Nucella_ostrina",0,0,290,NA,0,11.22,NA,NA
+2015-05-18,"AG","Mytilus_californianus","Nucella_canaliculata",0,0,22,NA,0,11.22,NA,NA
+2015-05-18,"AG","Mytilus_californianus","Nucella_ostrina",0,0,290,NA,0,11.22,NA,NA
+2015-05-18,"AG","Mytilus_trossulus","Nucella_canaliculata",0,0,22,NA,1222.85714285714,11.22,NA,NA
+2015-05-18,"AG","Mytilus_trossulus","Nucella_ostrina",0.1,25,290,62.05018586619,1222.85714285714,11.22,1.31789614798137e-06,0.00161159871810292
+2015-05-18,"AG","Nucella_ostrina","Nucella_canaliculata",0,0,22,NA,171.428571428571,11.22,NA,NA
+2015-05-18,"AG","Nucella_ostrina","Nucella_ostrina",0,0,290,NA,171.428571428571,11.22,NA,NA
+2015-05-18,"AG","Pollicipes_polymerus","Nucella_canaliculata",0.0476190476190476,1,22,14.6775323352839,720,11.22,4.50604124908487e-06,0.00324434969934111
+2015-05-18,"AG","Pollicipes_polymerus","Nucella_ostrina",0.02,5,290,12.3431925801411,720,11.22,2.25045324355299e-06,0.00162032633535815
+2015-05-18,"AG","Semibalanus_cariosus","Nucella_canaliculata",0,0,22,NA,11.4285714285714,11.22,NA,NA
+2015-05-18,"AG","Semibalanus_cariosus","Nucella_ostrina",0,0,290,NA,11.4285714285714,11.22,NA,NA
+2015-05-18,"B","Adula_californiensis","Nucella_canaliculata",0,0,84,NA,0,11.22,NA,NA
+2015-05-18,"B","Adula_californiensis","Nucella_ostrina",0,0,90,NA,0,11.22,NA,NA
+2015-05-18,"B","Balanus_glandula","Nucella_canaliculata",0,0,84,NA,636.190476190476,11.22,NA,NA
+2015-05-18,"B","Balanus_glandula","Nucella_ostrina",0.0238095238095238,2,90,43.0841250265001,636.190476190476,11.22,8.68652889610254e-07,0.000552628695485381
+2015-05-18,"B","Chthamalus_dalli","Nucella_canaliculata",0,0,84,NA,26.6666666666667,11.22,NA,NA
+2015-05-18,"B","Chthamalus_dalli","Nucella_ostrina",0.0238095238095238,2,90,19.5437941546938,26.6666666666667,11.22,4.56849440691999e-05,0.00121826517517866
+2015-05-18,"B","Hiatella_arctica","Nucella_canaliculata",0,0,84,NA,0,11.22,NA,NA
+2015-05-18,"B","Hiatella_arctica","Nucella_ostrina",0,0,90,NA,0,11.22,NA,NA
+2015-05-18,"B","Limpets","Nucella_canaliculata",0,0,84,NA,1131.42857142857,11.22,NA,NA
+2015-05-18,"B","Limpets","Nucella_ostrina",0,0,90,NA,1131.42857142857,11.22,NA,NA
+2015-05-18,"B","Littorina_sitkana","Nucella_canaliculata",0,0,84,NA,1062.85714285714,11.22,NA,NA
+2015-05-18,"B","Littorina_sitkana","Nucella_ostrina",0,0,90,NA,1062.85714285714,11.22,NA,NA
+2015-05-18,"B","Modiolus_modiolus","Nucella_canaliculata",0,0,84,NA,0,11.22,NA,NA
+2015-05-18,"B","Modiolus_modiolus","Nucella_ostrina",0,0,90,NA,0,11.22,NA,NA
+2015-05-18,"B","Mytilus_californianus","Nucella_canaliculata",0,0,84,NA,15.2380952380952,11.22,NA,NA
+2015-05-18,"B","Mytilus_californianus","Nucella_ostrina",0,0,90,NA,15.2380952380952,11.22,NA,NA
+2015-05-18,"B","Mytilus_trossulus","Nucella_canaliculata",0.05,4,84,64.6336047155449,624.761904761905,11.22,1.23821792327838e-06,0.000773591388257733
+2015-05-18,"B","Mytilus_trossulus","Nucella_ostrina",0.0119047619047619,1,90,43.3340925740444,624.761904761905,11.22,4.39720250659954e-07,0.000274720461364695
+2015-05-18,"B","Nucella_ostrina","Nucella_canaliculata",0,0,84,NA,106.666666666667,11.22,NA,NA
+2015-05-18,"B","Nucella_ostrina","Nucella_ostrina",0,0,90,NA,106.666666666667,11.22,NA,NA
+2015-05-18,"B","Pollicipes_polymerus","Nucella_canaliculata",0,0,84,NA,8960.00000000002,11.22,NA,NA
+2015-05-18,"B","Pollicipes_polymerus","Nucella_ostrina",0.0119047619047619,1,90,12.8762533581467,8960.00000000002,11.22,1.03186573425445e-07,0.000924551697891985
+2015-05-18,"B","Semibalanus_cariosus","Nucella_canaliculata",0,0,84,NA,19.0476190476191,11.22,NA,NA
+2015-05-18,"B","Semibalanus_cariosus","Nucella_ostrina",0,0,90,NA,19.0476190476191,11.22,NA,NA
+2015-05-18,"BB","Adula_californiensis","Nucella_canaliculata",0,0,8,NA,0,11.22,NA,NA
+2015-05-18,"BB","Adula_californiensis","Nucella_ostrina",0,0,251,NA,0,11.22,NA,NA
+2015-05-18,"BB","Balanus_glandula","Nucella_canaliculata",0.166666666666667,1,8,93.8362987520485,1680,11.22,1.05722785878938e-06,0.00177614280276616
+2015-05-18,"BB","Balanus_glandula","Nucella_ostrina",0.0523809523809524,11,251,48.1367636242142,1680,11.22,6.47719870936888e-07,0.00108816938317397
+2015-05-18,"BB","Chthamalus_dalli","Nucella_canaliculata",0,0,8,NA,346.666666666667,11.22,NA,NA
+2015-05-18,"BB","Chthamalus_dalli","Nucella_ostrina",0.0285714285714286,6,251,25.712229136193,346.666666666667,11.22,3.20538456549339e-06,0.00111119998270438
+2015-05-18,"BB","Hiatella_arctica","Nucella_canaliculata",0,0,8,NA,0,11.22,NA,NA
+2015-05-18,"BB","Hiatella_arctica","Nucella_ostrina",0,0,251,NA,0,11.22,NA,NA
+2015-05-18,"BB","Limpets","Nucella_canaliculata",0,0,8,NA,815.238095238096,11.22,NA,NA
+2015-05-18,"BB","Limpets","Nucella_ostrina",0,0,251,NA,815.238095238096,11.22,NA,NA
+2015-05-18,"BB","Littorina_sitkana","Nucella_canaliculata",0,0,8,NA,2140.95238095238,11.22,NA,NA
+2015-05-18,"BB","Littorina_sitkana","Nucella_ostrina",0,0,251,NA,2140.95238095238,11.22,NA,NA
+2015-05-18,"BB","Modiolus_modiolus","Nucella_canaliculata",0,0,8,NA,0,11.22,NA,NA
+2015-05-18,"BB","Modiolus_modiolus","Nucella_ostrina",0,0,251,NA,0,11.22,NA,NA
+2015-05-18,"BB","Mytilus_californianus","Nucella_canaliculata",0,0,8,NA,3.8095238095238,11.22,NA,NA
+2015-05-18,"BB","Mytilus_californianus","Nucella_ostrina",0,0,251,NA,3.8095238095238,11.22,NA,NA
+2015-05-18,"BB","Mytilus_trossulus","Nucella_canaliculata",0.166666666666667,1,8,21.306333869433,990.47619047619,11.22,7.89761541335073e-06,0.00782240002846167
+2015-05-18,"BB","Mytilus_trossulus","Nucella_ostrina",0.0952380952380952,20,251,64.1620939962885,990.47619047619,11.22,1.49860829291837e-06,0.00148433583298582
+2015-05-18,"BB","Nucella_ostrina","Nucella_canaliculata",0,0,8,NA,217.142857142857,11.22,NA,NA
+2015-05-18,"BB","Nucella_ostrina","Nucella_ostrina",0,0,251,NA,217.142857142857,11.22,NA,NA
+2015-05-18,"BB","Pollicipes_polymerus","Nucella_canaliculata",0,0,8,NA,148.571428571428,11.22,NA,NA
+2015-05-18,"BB","Pollicipes_polymerus","Nucella_ostrina",0.019047619047619,4,251,10.5474605726655,148.571428571428,11.22,1.21550706278421e-05,0.00180589620756511
+2015-05-18,"BB","Semibalanus_cariosus","Nucella_canaliculata",0,0,8,NA,11.4285714285714,11.22,NA,NA
+2015-05-18,"BB","Semibalanus_cariosus","Nucella_ostrina",0,0,251,NA,11.4285714285714,11.22,NA,NA
+2015-05-18,"BC","Adula_californiensis","Nucella_canaliculata",0,0,4,NA,0,11.22,NA,NA
+2015-05-18,"BC","Adula_californiensis","Nucella_ostrina",0,0,258,NA,0,11.22,NA,NA
+2015-05-18,"BC","Balanus_glandula","Nucella_canaliculata",0,0,4,NA,3775.23809523809,11.22,NA,NA
+2015-05-18,"BC","Balanus_glandula","Nucella_ostrina",0.0542986425339367,12,258,49.2330019023987,3775.23809523809,11.22,2.92138172818195e-07,0.0011028911590965
+2015-05-18,"BC","Chthamalus_dalli","Nucella_canaliculata",0,0,4,NA,1817.14285714286,11.22,NA,NA
+2015-05-18,"BC","Chthamalus_dalli","Nucella_ostrina",0.0135746606334842,3,258,16.6347211813997,1817.14285714286,11.22,4.49080692616286e-07,0.000816043772868451
+2015-05-18,"BC","Hiatella_arctica","Nucella_canaliculata",0,0,4,NA,0,11.22,NA,NA
+2015-05-18,"BC","Hiatella_arctica","Nucella_ostrina",0,0,258,NA,0,11.22,NA,NA
+2015-05-18,"BC","Limpets","Nucella_canaliculata",0,0,4,NA,1539.04761904762,11.22,NA,NA
+2015-05-18,"BC","Limpets","Nucella_ostrina",0,0,258,NA,1539.04761904762,11.22,NA,NA
+2015-05-18,"BC","Littorina_sitkana","Nucella_canaliculata",0,0,4,NA,2514.28571428571,11.22,NA,NA
+2015-05-18,"BC","Littorina_sitkana","Nucella_ostrina",0,0,258,NA,2514.28571428571,11.22,NA,NA
+2015-05-18,"BC","Modiolus_modiolus","Nucella_canaliculata",0,0,4,NA,0,11.22,NA,NA
+2015-05-18,"BC","Modiolus_modiolus","Nucella_ostrina",0,0,258,NA,0,11.22,NA,NA
+2015-05-18,"BC","Mytilus_californianus","Nucella_canaliculata",0,0,4,NA,15.2380952380952,11.22,NA,NA
+2015-05-18,"BC","Mytilus_californianus","Nucella_ostrina",0,0,258,NA,15.2380952380952,11.22,NA,NA
+2015-05-18,"BC","Mytilus_trossulus","Nucella_canaliculata",0.333333333333333,1,4,58.9065627671446,1020.95238095238,11.22,5.54254945419316e-06,0.00565867906180484
+2015-05-18,"BC","Mytilus_trossulus","Nucella_ostrina",0.0995475113122172,22,258,51.2626175761851,1020.95238095238,11.22,1.90205969310447e-06,0.00194191237238856
+2015-05-18,"BC","Nucella_ostrina","Nucella_canaliculata",0,0,4,NA,148.571428571428,11.22,NA,NA
+2015-05-18,"BC","Nucella_ostrina","Nucella_ostrina",0,0,258,NA,148.571428571428,11.22,NA,NA
+2015-05-18,"BC","Pollicipes_polymerus","Nucella_canaliculata",0,0,4,NA,152.380952380952,11.22,NA,NA
+2015-05-18,"BC","Pollicipes_polymerus","Nucella_ostrina",0,0,258,NA,152.380952380952,11.22,NA,NA
+2015-05-18,"BC","Semibalanus_cariosus","Nucella_canaliculata",0,0,4,NA,7.6190476190476,11.22,NA,NA
+2015-05-18,"BC","Semibalanus_cariosus","Nucella_ostrina",0,0,258,NA,7.6190476190476,11.22,NA,NA
+2015-05-18,"BD","Adula_californiensis","Nucella_canaliculata",0,0,21,NA,0,11.22,NA,NA
+2015-05-18,"BD","Adula_californiensis","Nucella_ostrina",0,0,126,NA,0,11.22,NA,NA
+2015-05-18,"BD","Balanus_glandula","Nucella_canaliculata",0,0,21,NA,2255.2380952381,11.22,NA,NA
+2015-05-18,"BD","Balanus_glandula","Nucella_ostrina",0.0176991150442478,2,126,64.0848143938628,2255.2380952381,11.22,1.224627541541e-07,0.000276182668416104
+2015-05-18,"BD","Chthamalus_dalli","Nucella_canaliculata",0,0,21,NA,281.904761904762,11.22,NA,NA
+2015-05-18,"BD","Chthamalus_dalli","Nucella_ostrina",0,0,126,NA,281.904761904762,11.22,NA,NA
+2015-05-18,"BD","Hiatella_arctica","Nucella_canaliculata",0,0,21,NA,0,11.22,NA,NA
+2015-05-18,"BD","Hiatella_arctica","Nucella_ostrina",0,0,126,NA,0,11.22,NA,NA
+2015-05-18,"BD","Limpets","Nucella_canaliculata",0,0,21,NA,4601.90476190476,11.22,NA,NA
+2015-05-18,"BD","Limpets","Nucella_ostrina",0.0176991150442478,2,126,11.0800484500206,4601.90476190476,11.22,3.47114108661175e-07,0.00159738606957219
+2015-05-18,"BD","Littorina_sitkana","Nucella_canaliculata",0,0,21,NA,3360,11.22,NA,NA
+2015-05-18,"BD","Littorina_sitkana","Nucella_ostrina",0,0,126,NA,3360,11.22,NA,NA
+2015-05-18,"BD","Modiolus_modiolus","Nucella_canaliculata",0,0,21,NA,0,11.22,NA,NA
+2015-05-18,"BD","Modiolus_modiolus","Nucella_ostrina",0,0,126,NA,0,11.22,NA,NA
+2015-05-18,"BD","Mytilus_californianus","Nucella_canaliculata",0,0,21,NA,727.619047619048,11.22,NA,NA
+2015-05-18,"BD","Mytilus_californianus","Nucella_ostrina",0,0,126,NA,727.619047619048,11.22,NA,NA
+2015-05-18,"BD","Mytilus_trossulus","Nucella_canaliculata",0,0,21,NA,7798.09523809525,11.22,NA,NA
+2015-05-18,"BD","Mytilus_trossulus","Nucella_ostrina",0.0707964601769911,8,126,72.6179442914773,7798.09523809525,11.22,1.25019874349848e-07,0.000974916886834816
+2015-05-18,"BD","Nucella_ostrina","Nucella_canaliculata",0,0,21,NA,213.333333333333,11.22,NA,NA
+2015-05-18,"BD","Nucella_ostrina","Nucella_ostrina",0,0,126,NA,213.333333333333,11.22,NA,NA
+2015-05-18,"BD","Pollicipes_polymerus","Nucella_canaliculata",0,0,21,NA,20883.8095238095,11.22,NA,NA
+2015-05-18,"BD","Pollicipes_polymerus","Nucella_ostrina",0.00884955752212389,1,126,12.9777383033721,20883.8095238095,11.22,3.26522280250817e-08,0.000681902910603803
+2015-05-18,"BD","Semibalanus_cariosus","Nucella_canaliculata",0,0,21,NA,72.3809523809523,11.22,NA,NA
+2015-05-18,"BD","Semibalanus_cariosus","Nucella_ostrina",0,0,126,NA,72.3809523809523,11.22,NA,NA
+2015-05-18,"BE","Adula_californiensis","Nucella_canaliculata",0,0,4,NA,0,11.22,NA,NA
+2015-05-18,"BE","Adula_californiensis","Nucella_ostrina",0,0,204,NA,0,11.22,NA,NA
+2015-05-18,"BE","Balanus_glandula","Nucella_canaliculata",0,0,4,NA,2891.42857142857,11.22,NA,NA
+2015-05-18,"BE","Balanus_glandula","Nucella_ostrina",0.116279069767442,20,204,43.0908787697708,2891.42857142857,11.22,9.3326231553273e-07,0.00269846132376892
+2015-05-18,"BE","Chthamalus_dalli","Nucella_canaliculata",0,0,4,NA,0,11.22,NA,NA
+2015-05-18,"BE","Chthamalus_dalli","Nucella_ostrina",0.00581395348837209,1,204,25.7175082815804,0,11.22,Inf,0.000226069859673622
+2015-05-18,"BE","Hiatella_arctica","Nucella_canaliculata",0,0,4,NA,0,11.22,NA,NA
+2015-05-18,"BE","Hiatella_arctica","Nucella_ostrina",0,0,204,NA,0,11.22,NA,NA
+2015-05-18,"BE","Limpets","Nucella_canaliculata",0,0,4,NA,674.285714285714,11.22,NA,NA
+2015-05-18,"BE","Limpets","Nucella_ostrina",0,0,204,NA,674.285714285714,11.22,NA,NA
+2015-05-18,"BE","Littorina_sitkana","Nucella_canaliculata",0,0,4,NA,3188.57142857143,11.22,NA,NA
+2015-05-18,"BE","Littorina_sitkana","Nucella_ostrina",0,0,204,NA,3188.57142857143,11.22,NA,NA
+2015-05-18,"BE","Modiolus_modiolus","Nucella_canaliculata",0,0,4,NA,0,11.22,NA,NA
+2015-05-18,"BE","Modiolus_modiolus","Nucella_ostrina",0,0,204,NA,0,11.22,NA,NA
+2015-05-18,"BE","Mytilus_californianus","Nucella_canaliculata",0,0,4,NA,0,11.22,NA,NA
+2015-05-18,"BE","Mytilus_californianus","Nucella_ostrina",0,0,204,NA,0,11.22,NA,NA
+2015-05-18,"BE","Mytilus_trossulus","Nucella_canaliculata",0,0,4,NA,491.428571428571,11.22,NA,NA
+2015-05-18,"BE","Mytilus_trossulus","Nucella_ostrina",0.063953488372093,11,204,38.5712143724993,491.428571428571,11.22,3.37396461330654e-06,0.00165806260996778
+2015-05-18,"BE","Nucella_ostrina","Nucella_canaliculata",0,0,4,NA,57.1428571428571,11.22,NA,NA
+2015-05-18,"BE","Nucella_ostrina","Nucella_ostrina",0,0,204,NA,57.1428571428571,11.22,NA,NA
+2015-05-18,"BE","Pollicipes_polymerus","Nucella_canaliculata",0,0,4,NA,68.5714285714286,11.22,NA,NA
+2015-05-18,"BE","Pollicipes_polymerus","Nucella_ostrina",0,0,204,NA,68.5714285714286,11.22,NA,NA
+2015-05-18,"BE","Semibalanus_cariosus","Nucella_canaliculata",0,0,4,NA,0,11.22,NA,NA
+2015-05-18,"BE","Semibalanus_cariosus","Nucella_ostrina",0,0,204,NA,0,11.22,NA,NA
+2015-05-18,"BF","Adula_californiensis","Nucella_canaliculata",0,0,6,NA,0,11.22,NA,NA
+2015-05-18,"BF","Adula_californiensis","Nucella_ostrina",0,0,273,NA,0,11.22,NA,NA
+2015-05-18,"BF","Balanus_glandula","Nucella_canaliculata",0,0,6,NA,0,11.22,NA,NA
+2015-05-18,"BF","Balanus_glandula","Nucella_ostrina",0.032,8,273,38.3838541503443,0,11.22,Inf,0.000833683868083189
+2015-05-18,"BF","Chthamalus_dalli","Nucella_canaliculata",0,0,6,NA,0,11.22,NA,NA
+2015-05-18,"BF","Chthamalus_dalli","Nucella_ostrina",0,0,273,NA,0,11.22,NA,NA
+2015-05-18,"BF","Hiatella_arctica","Nucella_canaliculata",0,0,6,NA,0,11.22,NA,NA
+2015-05-18,"BF","Hiatella_arctica","Nucella_ostrina",0,0,273,NA,0,11.22,NA,NA
+2015-05-18,"BF","Limpets","Nucella_canaliculata",0,0,6,NA,0,11.22,NA,NA
+2015-05-18,"BF","Limpets","Nucella_ostrina",0,0,273,NA,0,11.22,NA,NA
+2015-05-18,"BF","Littorina_sitkana","Nucella_canaliculata",0,0,6,NA,0,11.22,NA,NA
+2015-05-18,"BF","Littorina_sitkana","Nucella_ostrina",0,0,273,NA,0,11.22,NA,NA
+2015-05-18,"BF","Modiolus_modiolus","Nucella_canaliculata",0,0,6,NA,0,11.22,NA,NA
+2015-05-18,"BF","Modiolus_modiolus","Nucella_ostrina",0,0,273,NA,0,11.22,NA,NA
+2015-05-18,"BF","Mytilus_californianus","Nucella_canaliculata",0,0,6,NA,0,11.22,NA,NA
+2015-05-18,"BF","Mytilus_californianus","Nucella_ostrina",0,0,273,NA,0,11.22,NA,NA
+2015-05-18,"BF","Mytilus_trossulus","Nucella_canaliculata",0,0,6,NA,0,11.22,NA,NA
+2015-05-18,"BF","Mytilus_trossulus","Nucella_ostrina",0.056,14,273,48.6753044469674,0,11.22,Inf,0.00115048073425022
+2015-05-18,"BF","Nucella_ostrina","Nucella_canaliculata",0,0,6,NA,0,11.22,NA,NA
+2015-05-18,"BF","Nucella_ostrina","Nucella_ostrina",0,0,273,NA,0,11.22,NA,NA
+2015-05-18,"BF","Pollicipes_polymerus","Nucella_canaliculata",0,0,6,NA,0,11.22,NA,NA
+2015-05-18,"BF","Pollicipes_polymerus","Nucella_ostrina",0.004,1,273,9.24503347000772,0,11.22,Inf,0.000432664739719613
+2015-05-18,"BF","Semibalanus_cariosus","Nucella_canaliculata",0,0,6,NA,0,11.22,NA,NA
+2015-05-18,"BF","Semibalanus_cariosus","Nucella_ostrina",0,0,273,NA,0,11.22,NA,NA
+2015-05-18,"C","Adula_californiensis","Nucella_canaliculata",0,0,25,NA,0,11.22,NA,NA
+2015-05-18,"C","Adula_californiensis","Nucella_ostrina",0,0,140,NA,0,11.22,NA,NA
+2015-05-18,"C","Balanus_glandula","Nucella_canaliculata",0,0,25,NA,1089.52380952381,11.22,NA,NA
+2015-05-18,"C","Balanus_glandula","Nucella_ostrina",0.0078740157480315,1,140,58.2168838516266,1089.52380952381,11.22,1.24139673328779e-07,0.000135253129798212
+2015-05-18,"C","Chthamalus_dalli","Nucella_canaliculata",0,0,25,NA,106.666666666667,11.22,NA,NA
+2015-05-18,"C","Chthamalus_dalli","Nucella_ostrina",0,0,140,NA,106.666666666667,11.22,NA,NA
+2015-05-18,"C","Hiatella_arctica","Nucella_canaliculata",0,0,25,NA,0,11.22,NA,NA
+2015-05-18,"C","Hiatella_arctica","Nucella_ostrina",0,0,140,NA,0,11.22,NA,NA
+2015-05-18,"C","Limpets","Nucella_canaliculata",0,0,25,NA,2822.85714285714,11.22,NA,NA
+2015-05-18,"C","Limpets","Nucella_ostrina",0,0,140,NA,2822.85714285714,11.22,NA,NA
+2015-05-18,"C","Littorina_sitkana","Nucella_canaliculata",0,0,25,NA,1070.47619047619,11.22,NA,NA
+2015-05-18,"C","Littorina_sitkana","Nucella_ostrina",0,0,140,NA,1070.47619047619,11.22,NA,NA
+2015-05-18,"C","Modiolus_modiolus","Nucella_canaliculata",0,0,25,NA,0,11.22,NA,NA
+2015-05-18,"C","Modiolus_modiolus","Nucella_ostrina",0,0,140,NA,0,11.22,NA,NA
+2015-05-18,"C","Mytilus_californianus","Nucella_canaliculata",0,0,25,NA,22.8571428571429,11.22,NA,NA
+2015-05-18,"C","Mytilus_californianus","Nucella_ostrina",0,0,140,NA,22.8571428571429,11.22,NA,NA
+2015-05-18,"C","Mytilus_trossulus","Nucella_canaliculata",0.0416666666666667,1,25,49.1545917781901,609.523809523808,11.22,1.39070171324932e-06,0.000847665806171015
+2015-05-18,"C","Mytilus_trossulus","Nucella_ostrina",0.0866141732283465,11,140,61.1924438149387,609.523809523808,11.22,2.32220465622368e-06,0.00141543902855538
+2015-05-18,"C","Nucella_ostrina","Nucella_canaliculata",0,0,25,NA,137.142857142857,11.22,NA,NA
+2015-05-18,"C","Nucella_ostrina","Nucella_ostrina",0,0,140,NA,137.142857142857,11.22,NA,NA
+2015-05-18,"C","Pollicipes_polymerus","Nucella_canaliculata",0,0,25,NA,8548.57142857143,11.22,NA,NA
+2015-05-18,"C","Pollicipes_polymerus","Nucella_ostrina",0.0078740157480315,1,140,5.29665531753083,8548.57142857143,11.22,1.73900576714275e-07,0.00148660150151174
+2015-05-18,"C","Semibalanus_cariosus","Nucella_canaliculata",0,0,25,NA,7.6190476190476,11.22,NA,NA
+2015-05-18,"C","Semibalanus_cariosus","Nucella_ostrina",0,0,140,NA,7.6190476190476,11.22,NA,NA
+2015-05-18,"D","Adula_californiensis","Nucella_canaliculata",0,0,13,NA,0,11.22,NA,NA
+2015-05-18,"D","Adula_californiensis","Nucella_ostrina",0,0,245,NA,0,11.22,NA,NA
+2015-05-18,"D","Balanus_glandula","Nucella_canaliculata",0,0,13,NA,3508.57142857142,11.22,NA,NA
+2015-05-18,"D","Balanus_glandula","Nucella_ostrina",0.0452488687782805,10,245,65.0756620810605,3508.57142857142,11.22,1.98179536583211e-07,0.000695327059783379
+2015-05-18,"D","Chthamalus_dalli","Nucella_canaliculata",0,0,13,NA,148.571428571429,11.22,NA,NA
+2015-05-18,"D","Chthamalus_dalli","Nucella_ostrina",0,0,245,NA,148.571428571429,11.22,NA,NA
+2015-05-18,"D","Hiatella_arctica","Nucella_canaliculata",0,0,13,NA,0,11.22,NA,NA
+2015-05-18,"D","Hiatella_arctica","Nucella_ostrina",0,0,245,NA,0,11.22,NA,NA
+2015-05-18,"D","Limpets","Nucella_canaliculata",0,0,13,NA,3177.14285714286,11.22,NA,NA
+2015-05-18,"D","Limpets","Nucella_ostrina",0,0,245,NA,3177.14285714286,11.22,NA,NA
+2015-05-18,"D","Littorina_sitkana","Nucella_canaliculata",0,0,13,NA,2400,11.22,NA,NA
+2015-05-18,"D","Littorina_sitkana","Nucella_ostrina",0,0,245,NA,2400,11.22,NA,NA
+2015-05-18,"D","Modiolus_modiolus","Nucella_canaliculata",0,0,13,NA,0,11.22,NA,NA
+2015-05-18,"D","Modiolus_modiolus","Nucella_ostrina",0,0,245,NA,0,11.22,NA,NA
+2015-05-18,"D","Mytilus_californianus","Nucella_canaliculata",0,0,13,NA,377.142857142857,11.22,NA,NA
+2015-05-18,"D","Mytilus_californianus","Nucella_ostrina",0,0,245,NA,377.142857142857,11.22,NA,NA
+2015-05-18,"D","Mytilus_trossulus","Nucella_canaliculata",0,0,13,NA,1622.85714285714,11.22,NA,NA
+2015-05-18,"D","Mytilus_trossulus","Nucella_ostrina",0.0633484162895928,14,245,52.3229524878221,1622.85714285714,11.22,7.4604191497965e-07,0.00121071945059554
+2015-05-18,"D","Nucella_ostrina","Nucella_canaliculata",0,0,13,NA,114.285714285714,11.22,NA,NA
+2015-05-18,"D","Nucella_ostrina","Nucella_ostrina",0,0,245,NA,114.285714285714,11.22,NA,NA
+2015-05-18,"D","Pollicipes_polymerus","Nucella_canaliculata",0,0,13,NA,125.714285714286,11.22,NA,NA
+2015-05-18,"D","Pollicipes_polymerus","Nucella_ostrina",0,0,245,NA,125.714285714286,11.22,NA,NA
+2015-05-18,"D","Semibalanus_cariosus","Nucella_canaliculata",0,0,13,NA,0,11.22,NA,NA
+2015-05-18,"D","Semibalanus_cariosus","Nucella_ostrina",0,0,245,NA,0,11.22,NA,NA
+2015-05-18,"E","Adula_californiensis","Nucella_canaliculata",0,0,18,NA,0,11.22,NA,NA
+2015-05-18,"E","Adula_californiensis","Nucella_ostrina",0,0,174,NA,0,11.22,NA,NA
+2015-05-18,"E","Balanus_glandula","Nucella_canaliculata",0,0,18,NA,655.238095238096,11.22,NA,NA
+2015-05-18,"E","Balanus_glandula","Nucella_ostrina",0,0,174,NA,655.238095238096,11.22,NA,NA
+2015-05-18,"E","Chthamalus_dalli","Nucella_canaliculata",0,0,18,NA,236.190476190476,11.22,NA,NA
+2015-05-18,"E","Chthamalus_dalli","Nucella_ostrina",0.0258064516129032,4,174,20.5834980815883,236.190476190476,11.22,5.30819328333898e-06,0.00125374469930292
+2015-05-18,"E","Hiatella_arctica","Nucella_canaliculata",0,0,18,NA,0,11.22,NA,NA
+2015-05-18,"E","Hiatella_arctica","Nucella_ostrina",0,0,174,NA,0,11.22,NA,NA
+2015-05-18,"E","Limpets","Nucella_canaliculata",0,0,18,NA,1169.52380952381,11.22,NA,NA
+2015-05-18,"E","Limpets","Nucella_ostrina",0,0,174,NA,1169.52380952381,11.22,NA,NA
+2015-05-18,"E","Littorina_sitkana","Nucella_canaliculata",0,0,18,NA,1455.23809523809,11.22,NA,NA
+2015-05-18,"E","Littorina_sitkana","Nucella_ostrina",0,0,174,NA,1455.23809523809,11.22,NA,NA
+2015-05-18,"E","Modiolus_modiolus","Nucella_canaliculata",0,0,18,NA,0,11.22,NA,NA
+2015-05-18,"E","Modiolus_modiolus","Nucella_ostrina",0,0,174,NA,0,11.22,NA,NA
+2015-05-18,"E","Mytilus_californianus","Nucella_canaliculata",0,0,18,NA,19.0476190476191,11.22,NA,NA
+2015-05-18,"E","Mytilus_californianus","Nucella_ostrina",0,0,174,NA,19.0476190476191,11.22,NA,NA
+2015-05-18,"E","Mytilus_trossulus","Nucella_canaliculata",0.142857142857143,2,18,74.0629271049625,148.571428571428,11.22,1.29827229239234e-05,0.00192886169155433
+2015-05-18,"E","Mytilus_trossulus","Nucella_ostrina",0.0580645161290323,9,174,66.2771655938207,148.571428571428,11.22,5.89673464547241e-06,0.000876086290184472
+2015-05-18,"E","Nucella_ostrina","Nucella_canaliculata",0,0,18,NA,137.142857142857,11.22,NA,NA
+2015-05-18,"E","Nucella_ostrina","Nucella_ostrina",0,0,174,NA,137.142857142857,11.22,NA,NA
+2015-05-18,"E","Pollicipes_polymerus","Nucella_canaliculata",0.142857142857143,2,18,5.18958475652387,6518.09523809524,11.22,4.2232680698285e-06,0.0275276634951488
+2015-05-18,"E","Pollicipes_polymerus","Nucella_ostrina",0.0387096774193548,6,174,9.70002005375803,6518.09523809524,11.22,6.12246369169502e-07,0.00399068014342483
+2015-05-18,"E","Semibalanus_cariosus","Nucella_canaliculata",0,0,18,NA,7.6190476190476,11.22,NA,NA
+2015-05-18,"E","Semibalanus_cariosus","Nucella_ostrina",0,0,174,NA,7.6190476190476,11.22,NA,NA
+2015-05-18,"F","Adula_californiensis","Nucella_canaliculata",0,0,4,NA,0,11.22,NA,NA
+2015-05-18,"F","Adula_californiensis","Nucella_ostrina",0,0,196,NA,0,11.22,NA,NA
+2015-05-18,"F","Balanus_glandula","Nucella_canaliculata",0,0,4,NA,5390.47619047619,11.22,NA,NA
+2015-05-18,"F","Balanus_glandula","Nucella_ostrina",0.0828025477707006,13,196,47.4077780317351,5390.47619047619,11.22,3.24016381045329e-07,0.0017466025873491
+2015-05-18,"F","Chthamalus_dalli","Nucella_canaliculata",0,0,4,NA,1135.23809523809,11.22,NA,NA
+2015-05-18,"F","Chthamalus_dalli","Nucella_ostrina",0,0,196,NA,1135.23809523809,11.22,NA,NA
+2015-05-18,"F","Hiatella_arctica","Nucella_canaliculata",0,0,4,NA,0,11.22,NA,NA
+2015-05-18,"F","Hiatella_arctica","Nucella_ostrina",0,0,196,NA,0,11.22,NA,NA
+2015-05-18,"F","Limpets","Nucella_canaliculata",0,0,4,NA,3779.04761904762,11.22,NA,NA
+2015-05-18,"F","Limpets","Nucella_ostrina",0,0,196,NA,3779.04761904762,11.22,NA,NA
+2015-05-18,"F","Littorina_sitkana","Nucella_canaliculata",0,0,4,NA,1466.66666666667,11.22,NA,NA
+2015-05-18,"F","Littorina_sitkana","Nucella_ostrina",0.00636942675159236,1,196,33.0364588941055,1466.66666666667,11.22,1.31454493380029e-07,0.000192799923624042
+2015-05-18,"F","Modiolus_modiolus","Nucella_canaliculata",0,0,4,NA,0,11.22,NA,NA
+2015-05-18,"F","Modiolus_modiolus","Nucella_ostrina",0,0,196,NA,0,11.22,NA,NA
+2015-05-18,"F","Mytilus_californianus","Nucella_canaliculata",0,0,4,NA,19.047619047619,11.22,NA,NA
+2015-05-18,"F","Mytilus_californianus","Nucella_ostrina",0,0,196,NA,19.047619047619,11.22,NA,NA
+2015-05-18,"F","Mytilus_trossulus","Nucella_canaliculata",0.333333333333333,1,4,101.374614090475,1093.33333333333,11.22,3.00743979659829e-06,0.00328813417761413
+2015-05-18,"F","Mytilus_trossulus","Nucella_ostrina",0.159235668789809,25,196,62.4038891206261,1093.33333333333,11.22,2.33386704006787e-06,0.0025516946304742
+2015-05-18,"F","Nucella_ostrina","Nucella_canaliculata",0,0,4,NA,125.714285714286,11.22,NA,NA
+2015-05-18,"F","Nucella_ostrina","Nucella_ostrina",0,0,196,NA,125.714285714286,11.22,NA,NA
+2015-05-18,"F","Pollicipes_polymerus","Nucella_canaliculata",0,0,4,NA,30.4761904761905,11.22,NA,NA
+2015-05-18,"F","Pollicipes_polymerus","Nucella_ostrina",0,0,196,NA,30.4761904761905,11.22,NA,NA
+2015-05-18,"F","Semibalanus_cariosus","Nucella_canaliculata",0,0,4,NA,0,11.22,NA,NA
+2015-05-18,"F","Semibalanus_cariosus","Nucella_ostrina",0,0,196,NA,0,11.22,NA,NA
+2015-05-18,"G","Adula_californiensis","Nucella_canaliculata",0,0,15,NA,0,11.22,NA,NA
+2015-05-18,"G","Adula_californiensis","Nucella_ostrina",0,0,264,NA,0,11.22,NA,NA
+2015-05-18,"G","Balanus_glandula","Nucella_canaliculata",0,0,15,NA,1034.28571428571,11.22,NA,NA
+2015-05-18,"G","Balanus_glandula","Nucella_ostrina",0.0208333333333333,5,264,22.2441223749826,1034.28571428571,11.22,9.05530245651803e-07,0.000936576996931291
+2015-05-18,"G","Chthamalus_dalli","Nucella_canaliculata",0,0,15,NA,40,11.22,NA,NA
+2015-05-18,"G","Chthamalus_dalli","Nucella_ostrina",0.00833333333333333,2,264,13.1889218472076,40,11.22,1.57960852105165e-05,0.00063184340842066
+2015-05-18,"G","Hiatella_arctica","Nucella_canaliculata",0,0,15,NA,0,11.22,NA,NA
+2015-05-18,"G","Hiatella_arctica","Nucella_ostrina",0,0,264,NA,0,11.22,NA,NA
+2015-05-18,"G","Limpets","Nucella_canaliculata",0,0,15,NA,1371.42857142857,11.22,NA,NA
+2015-05-18,"G","Limpets","Nucella_ostrina",0,0,264,NA,1371.42857142857,11.22,NA,NA
+2015-05-18,"G","Littorina_sitkana","Nucella_canaliculata",0,0,15,NA,588.571428571428,11.22,NA,NA
+2015-05-18,"G","Littorina_sitkana","Nucella_ostrina",0,0,264,NA,588.571428571428,11.22,NA,NA
+2015-05-18,"G","Modiolus_modiolus","Nucella_canaliculata",0,0,15,NA,0,11.22,NA,NA
+2015-05-18,"G","Modiolus_modiolus","Nucella_ostrina",0,0,264,NA,0,11.22,NA,NA
+2015-05-18,"G","Mytilus_californianus","Nucella_canaliculata",0,0,15,NA,177.142857142857,11.22,NA,NA
+2015-05-18,"G","Mytilus_californianus","Nucella_ostrina",0,0,264,NA,177.142857142857,11.22,NA,NA
+2015-05-18,"G","Mytilus_trossulus","Nucella_canaliculata",0.153846153846154,2,15,52.7327406722658,1457.14285714286,11.22,2.00218483754092e-06,0.00291746933470248
+2015-05-18,"G","Mytilus_trossulus","Nucella_ostrina",0.0708333333333333,17,264,50.8957081567518,1457.14285714286,11.22,9.55112186697463e-07,0.0013917349006163
+2015-05-18,"G","Nucella_ostrina","Nucella_canaliculata",0,0,15,NA,285.714285714285,11.22,NA,NA
+2015-05-18,"G","Nucella_ostrina","Nucella_ostrina",0,0,264,NA,285.714285714285,11.22,NA,NA
+2015-05-18,"G","Pollicipes_polymerus","Nucella_canaliculata",0,0,15,NA,7474.28571428572,11.22,NA,NA
+2015-05-18,"G","Pollicipes_polymerus","Nucella_ostrina",0,0,264,NA,7474.28571428572,11.22,NA,NA
+2015-05-18,"G","Semibalanus_cariosus","Nucella_canaliculata",0,0,15,NA,57.1428571428572,11.22,NA,NA
+2015-05-18,"G","Semibalanus_cariosus","Nucella_ostrina",0,0,264,NA,57.1428571428572,11.22,NA,NA
+2015-06-15,"A","Adula_californiensis","Nucella_canaliculata",0,0,40,NA,0,11.16,NA,NA
+2015-06-15,"A","Adula_californiensis","Nucella_ostrina",0,0,199,NA,0,11.16,NA,NA
+2015-06-15,"A","Balanus_glandula","Nucella_canaliculata",0,0,40,NA,1114.28571428571,11.16,NA,NA
+2015-06-15,"A","Balanus_glandula","Nucella_ostrina",0.0444444444444444,8,199,20.9112553680572,1114.28571428571,11.16,1.90739576290419e-06,0.00212538385009324
+2015-06-15,"A","Chthamalus_dalli","Nucella_canaliculata",0,0,40,NA,274.285714285715,11.16,NA,NA
+2015-06-15,"A","Chthamalus_dalli","Nucella_ostrina",0.0333333333333333,6,199,17.7689680982253,274.285714285715,11.16,6.83932669055304e-06,0.00187592960655169
+2015-06-15,"A","Hiatella_arctica","Nucella_canaliculata",0,0,40,NA,0,11.16,NA,NA
+2015-06-15,"A","Hiatella_arctica","Nucella_ostrina",0,0,199,NA,0,11.16,NA,NA
+2015-06-15,"A","Limpets","Nucella_canaliculata",0,0,40,NA,2508.57142857143,11.16,NA,NA
+2015-06-15,"A","Limpets","Nucella_ostrina",0,0,199,NA,2508.57142857143,11.16,NA,NA
+2015-06-15,"A","Littorina_sitkana","Nucella_canaliculata",0,0,40,NA,565.714285714285,11.16,NA,NA
+2015-06-15,"A","Littorina_sitkana","Nucella_ostrina",0,0,199,NA,565.714285714285,11.16,NA,NA
+2015-06-15,"A","Modiolus_modiolus","Nucella_canaliculata",0,0,40,NA,0,11.16,NA,NA
+2015-06-15,"A","Modiolus_modiolus","Nucella_ostrina",0,0,199,NA,0,11.16,NA,NA
+2015-06-15,"A","Mytilus_californianus","Nucella_canaliculata",0,0,40,NA,17.1428571428571,11.16,NA,NA
+2015-06-15,"A","Mytilus_californianus","Nucella_ostrina",0,0,199,NA,17.1428571428571,11.16,NA,NA
+2015-06-15,"A","Mytilus_trossulus","Nucella_canaliculata",0,0,40,NA,68.5714285714285,11.16,NA,NA
+2015-06-15,"A","Mytilus_trossulus","Nucella_ostrina",0.00555555555555556,1,199,39.0098866222751,68.5714285714285,11.16,2.07687141731543e-06,0.000142414040044486
+2015-06-15,"A","Nucella_ostrina","Nucella_canaliculata",0,0,40,NA,108.571428571428,11.16,NA,NA
+2015-06-15,"A","Nucella_ostrina","Nucella_ostrina",0,0,199,NA,108.571428571428,11.16,NA,NA
+2015-06-15,"A","Pollicipes_polymerus","Nucella_canaliculata",0.0256410256410256,1,40,16.1288011811076,3245.71428571429,11.16,4.89804778245574e-07,0.00158976636596278
+2015-06-15,"A","Pollicipes_polymerus","Nucella_ostrina",0.0222222222222222,4,199,8.47797657122043,3245.71428571429,11.16,8.07578944132011e-07,0.00262117051581133
+2015-06-15,"A","Semibalanus_cariosus","Nucella_canaliculata",0,0,40,NA,17.1428571428571,11.16,NA,NA
+2015-06-15,"A","Semibalanus_cariosus","Nucella_ostrina",0,0,199,NA,17.1428571428571,11.16,NA,NA
+2015-06-15,"AB","Adula_californiensis","Nucella_canaliculata",0,0,61,NA,0,11.16,NA,NA
+2015-06-15,"AB","Adula_californiensis","Nucella_ostrina",0,0,204,NA,0,11.16,NA,NA
+2015-06-15,"AB","Balanus_glandula","Nucella_canaliculata",0.0166666666666667,1,61,29.1060809215423,388.571428571428,11.16,1.47364933734515e-06,0.000572618028225543
+2015-06-15,"AB","Balanus_glandula","Nucella_ostrina",0.0106951871657754,2,204,40.4415767274909,388.571428571428,11.16,6.80596083602774e-07,0.000264460192485649
+2015-06-15,"AB","Chthamalus_dalli","Nucella_canaliculata",0,0,61,NA,0,11.16,NA,NA
+2015-06-15,"AB","Chthamalus_dalli","Nucella_ostrina",0.0053475935828877,1,204,31.6120097605818,0,11.16,Inf,0.00016916335352888
+2015-06-15,"AB","Hiatella_arctica","Nucella_canaliculata",0,0,61,NA,0,11.16,NA,NA
+2015-06-15,"AB","Hiatella_arctica","Nucella_ostrina",0,0,204,NA,0,11.16,NA,NA
+2015-06-15,"AB","Limpets","Nucella_canaliculata",0,0,61,NA,1125.71428571428,11.16,NA,NA
+2015-06-15,"AB","Limpets","Nucella_ostrina",0.0213903743315508,4,204,15.1319558506704,1125.71428571428,11.16,1.25572673824042e-06,0.00141358952819065
+2015-06-15,"AB","Littorina_sitkana","Nucella_canaliculata",0,0,61,NA,1811.42857142857,11.16,NA,NA
+2015-06-15,"AB","Littorina_sitkana","Nucella_ostrina",0.0053475935828877,1,204,28.5638450813473,1811.42857142857,11.16,1.03352386887437e-07,0.000187215466533243
+2015-06-15,"AB","Modiolus_modiolus","Nucella_canaliculata",0,0,61,NA,0,11.16,NA,NA
+2015-06-15,"AB","Modiolus_modiolus","Nucella_ostrina",0,0,204,NA,0,11.16,NA,NA
+2015-06-15,"AB","Mytilus_californianus","Nucella_canaliculata",0,0,61,NA,57.142857142857,11.16,NA,NA
+2015-06-15,"AB","Mytilus_californianus","Nucella_ostrina",0,0,204,NA,57.142857142857,11.16,NA,NA
+2015-06-15,"AB","Mytilus_trossulus","Nucella_canaliculata",0,0,61,NA,771.42857142857,11.16,NA,NA
+2015-06-15,"AB","Mytilus_trossulus","Nucella_ostrina",0.0106951871657754,2,204,56.8482533593072,771.42857142857,11.16,2.4387963907286e-07,0.000188135721570492
+2015-06-15,"AB","Nucella_ostrina","Nucella_canaliculata",0,0,61,NA,114.285714285714,11.16,NA,NA
+2015-06-15,"AB","Nucella_ostrina","Nucella_ostrina",0,0,204,NA,114.285714285714,11.16,NA,NA
+2015-06-15,"AB","Pollicipes_polymerus","Nucella_canaliculata",0,0,61,NA,8200,11.16,NA,NA
+2015-06-15,"AB","Pollicipes_polymerus","Nucella_ostrina",0.0267379679144385,5,204,10.1253864414642,8200,11.16,3.22034898449978e-07,0.00264068616728982
+2015-06-15,"AB","Semibalanus_cariosus","Nucella_canaliculata",0,0,61,NA,5.7142857142857,11.16,NA,NA
+2015-06-15,"AB","Semibalanus_cariosus","Nucella_ostrina",0.0106951871657754,2,204,79.996288306554,5.7142857142857,11.16,2.33968074473445e-05,0.000133696042556254
+2015-06-15,"AC","Adula_californiensis","Nucella_canaliculata",0,0,53,NA,0,11.16,NA,NA
+2015-06-15,"AC","Adula_californiensis","Nucella_ostrina",0,0,240,NA,0,11.16,NA,NA
+2015-06-15,"AC","Balanus_glandula","Nucella_canaliculata",13.5,27,53,35.351149257846,4015.2380952381,11.16,9.51084115068104e-05,0.381882917059726
+2015-06-15,"AC","Balanus_glandula","Nucella_ostrina",0,0,240,NA,4015.2380952381,11.16,NA,NA
+2015-06-15,"AC","Chthamalus_dalli","Nucella_canaliculata",2.5,5,53,14.9394922451361,152.380952380952,11.16,0.00109817989331876,0.167341698029525
+2015-06-15,"AC","Chthamalus_dalli","Nucella_ostrina",0,0,240,NA,152.380952380952,11.16,NA,NA
+2015-06-15,"AC","Hiatella_arctica","Nucella_canaliculata",0,0,53,NA,0,11.16,NA,NA
+2015-06-15,"AC","Hiatella_arctica","Nucella_ostrina",0,0,240,NA,0,11.16,NA,NA
+2015-06-15,"AC","Limpets","Nucella_canaliculata",0,0,53,NA,2651.42857142857,11.16,NA,NA
+2015-06-15,"AC","Limpets","Nucella_ostrina",0,0,240,NA,2651.42857142857,11.16,NA,NA
+2015-06-15,"AC","Littorina_sitkana","Nucella_canaliculata",0,0,53,NA,8175.2380952381,11.16,NA,NA
+2015-06-15,"AC","Littorina_sitkana","Nucella_ostrina",0,0,240,NA,8175.2380952381,11.16,NA,NA
+2015-06-15,"AC","Modiolus_modiolus","Nucella_canaliculata",0,0,53,NA,0,11.16,NA,NA
+2015-06-15,"AC","Modiolus_modiolus","Nucella_ostrina",0,0,240,NA,0,11.16,NA,NA
+2015-06-15,"AC","Mytilus_californianus","Nucella_canaliculata",0,0,53,NA,30.4761904761905,11.16,NA,NA
+2015-06-15,"AC","Mytilus_californianus","Nucella_ostrina",0,0,240,NA,30.4761904761905,11.16,NA,NA
+2015-06-15,"AC","Mytilus_trossulus","Nucella_canaliculata",9.5,19,53,47.1393076406083,1268.57142857143,11.16,0.000158863995114929,0.20153032523151
+2015-06-15,"AC","Mytilus_trossulus","Nucella_ostrina",0,0,240,NA,1268.57142857143,11.16,NA,NA
+2015-06-15,"AC","Nucella_ostrina","Nucella_canaliculata",0,0,53,NA,335.238095238095,11.16,NA,NA
+2015-06-15,"AC","Nucella_ostrina","Nucella_ostrina",0,0,240,NA,335.238095238095,11.16,NA,NA
+2015-06-15,"AC","Pollicipes_polymerus","Nucella_canaliculata",0,0,53,NA,323.809523809524,11.16,NA,NA
+2015-06-15,"AC","Pollicipes_polymerus","Nucella_ostrina",0,0,240,NA,323.809523809524,11.16,NA,NA
+2015-06-15,"AC","Semibalanus_cariosus","Nucella_canaliculata",0,0,53,NA,22.8571428571428,11.16,NA,NA
+2015-06-15,"AC","Semibalanus_cariosus","Nucella_ostrina",0,0,240,NA,22.8571428571428,11.16,NA,NA
+2015-06-15,"AD","Adula_californiensis","Nucella_canaliculata",0,0,21,NA,0,11.16,NA,NA
+2015-06-15,"AD","Adula_californiensis","Nucella_ostrina",0,0,210,NA,0,11.16,NA,NA
+2015-06-15,"AD","Balanus_glandula","Nucella_canaliculata",0,0,21,NA,1394.28571428571,11.16,NA,NA
+2015-06-15,"AD","Balanus_glandula","Nucella_ostrina",0.0362694300518135,7,210,36.0005982196908,1394.28571428571,11.16,7.2256885119173e-07,0.00100746742680447
+2015-06-15,"AD","Chthamalus_dalli","Nucella_canaliculata",0,0,21,NA,68.5714285714285,11.16,NA,NA
+2015-06-15,"AD","Chthamalus_dalli","Nucella_ostrina",0,0,210,NA,68.5714285714285,11.16,NA,NA
+2015-06-15,"AD","Hiatella_arctica","Nucella_canaliculata",0,0,21,NA,0,11.16,NA,NA
+2015-06-15,"AD","Hiatella_arctica","Nucella_ostrina",0,0,210,NA,0,11.16,NA,NA
+2015-06-15,"AD","Limpets","Nucella_canaliculata",0,0,21,NA,1535.23809523809,11.16,NA,NA
+2015-06-15,"AD","Limpets","Nucella_ostrina",0.00518134715025907,1,210,5.30749656178254,1535.23809523809,11.16,6.35883024290766e-07,0.000976231843006394
+2015-06-15,"AD","Littorina_sitkana","Nucella_canaliculata",0,0,21,NA,1055.2380952381,11.16,NA,NA
+2015-06-15,"AD","Littorina_sitkana","Nucella_ostrina",0,0,210,NA,1055.2380952381,11.16,NA,NA
+2015-06-15,"AD","Modiolus_modiolus","Nucella_canaliculata",0,0,21,NA,0,11.16,NA,NA
+2015-06-15,"AD","Modiolus_modiolus","Nucella_ostrina",0,0,210,NA,0,11.16,NA,NA
+2015-06-15,"AD","Mytilus_californianus","Nucella_canaliculata",0,0,21,NA,91.4285714285714,11.16,NA,NA
+2015-06-15,"AD","Mytilus_californianus","Nucella_ostrina",0,0,210,NA,91.4285714285714,11.16,NA,NA
+2015-06-15,"AD","Mytilus_trossulus","Nucella_canaliculata",0,0,21,NA,422.857142857143,11.16,NA,NA
+2015-06-15,"AD","Mytilus_trossulus","Nucella_ostrina",0.0466321243523316,9,210,58.5647893035239,422.857142857143,11.16,1.88302004952663e-06,0.000796248478085546
+2015-06-15,"AD","Nucella_ostrina","Nucella_canaliculata",0,0,21,NA,190.476190476191,11.16,NA,NA
+2015-06-15,"AD","Nucella_ostrina","Nucella_ostrina",0,0,210,NA,190.476190476191,11.16,NA,NA
+2015-06-15,"AD","Pollicipes_polymerus","Nucella_canaliculata",0,0,21,NA,5009.52380952381,11.16,NA,NA
+2015-06-15,"AD","Pollicipes_polymerus","Nucella_ostrina",0,0,210,NA,5009.52380952381,11.16,NA,NA
+2015-06-15,"AD","Semibalanus_cariosus","Nucella_canaliculata",0,0,21,NA,26.6666666666667,11.16,NA,NA
+2015-06-15,"AD","Semibalanus_cariosus","Nucella_ostrina",0,0,210,NA,26.6666666666667,11.16,NA,NA
+2015-06-15,"AE","Adula_californiensis","Nucella_canaliculata",0,0,13,NA,0,11.16,NA,NA
+2015-06-15,"AE","Adula_californiensis","Nucella_ostrina",0,0,293,NA,0,11.16,NA,NA
+2015-06-15,"AE","Balanus_glandula","Nucella_canaliculata",0.181818181818182,2,13,48.4472539565875,1081.90476190476,11.16,3.46879881694216e-06,0.00375290995813932
+2015-06-15,"AE","Balanus_glandula","Nucella_ostrina",0.0236220472440945,6,293,61.6109566885808,1081.90476190476,11.16,3.54381097612401e-07,0.000383406597035892
+2015-06-15,"AE","Chthamalus_dalli","Nucella_canaliculata",0,0,13,NA,76.1904761904763,11.16,NA,NA
+2015-06-15,"AE","Chthamalus_dalli","Nucella_ostrina",0,0,293,NA,76.1904761904763,11.16,NA,NA
+2015-06-15,"AE","Hiatella_arctica","Nucella_canaliculata",0,0,13,NA,0,11.16,NA,NA
+2015-06-15,"AE","Hiatella_arctica","Nucella_ostrina",0,0,293,NA,0,11.16,NA,NA
+2015-06-15,"AE","Limpets","Nucella_canaliculata",0,0,13,NA,2422.85714285714,11.16,NA,NA
+2015-06-15,"AE","Limpets","Nucella_ostrina",0,0,293,NA,2422.85714285714,11.16,NA,NA
+2015-06-15,"AE","Littorina_sitkana","Nucella_canaliculata",0,0,13,NA,1493.33333333333,11.16,NA,NA
+2015-06-15,"AE","Littorina_sitkana","Nucella_ostrina",0.00393700787401575,1,293,23.7970627490106,1493.33333333333,11.16,1.10786328092506e-07,0.000165440916618142
+2015-06-15,"AE","Modiolus_modiolus","Nucella_canaliculata",0,0,13,NA,0,11.16,NA,NA
+2015-06-15,"AE","Modiolus_modiolus","Nucella_ostrina",0,0,293,NA,0,11.16,NA,NA
+2015-06-15,"AE","Mytilus_californianus","Nucella_canaliculata",0,0,13,NA,80.0000000000001,11.16,NA,NA
+2015-06-15,"AE","Mytilus_californianus","Nucella_ostrina",0,0,293,NA,80.0000000000001,11.16,NA,NA
+2015-06-15,"AE","Mytilus_trossulus","Nucella_canaliculata",0,0,13,NA,739.047619047619,11.16,NA,NA
+2015-06-15,"AE","Mytilus_trossulus","Nucella_ostrina",0.125984251968504,32,293,61.8656385768544,739.047619047619,11.16,2.75546144993086e-06,0.0020364172239489
+2015-06-15,"AE","Nucella_ostrina","Nucella_canaliculata",0,0,13,NA,228.571428571429,11.16,NA,NA
+2015-06-15,"AE","Nucella_ostrina","Nucella_ostrina",0,0,293,NA,228.571428571429,11.16,NA,NA
+2015-06-15,"AE","Pollicipes_polymerus","Nucella_canaliculata",0,0,13,NA,613.333333333333,11.16,NA,NA
+2015-06-15,"AE","Pollicipes_polymerus","Nucella_ostrina",0,0,293,NA,613.333333333333,11.16,NA,NA
+2015-06-15,"AE","Semibalanus_cariosus","Nucella_canaliculata",0,0,13,NA,53.3333333333334,11.16,NA,NA
+2015-06-15,"AE","Semibalanus_cariosus","Nucella_ostrina",0,0,293,NA,53.3333333333334,11.16,NA,NA
+2015-06-15,"AF","Adula_californiensis","Nucella_canaliculata",0,0,28,NA,0,11.16,NA,NA
+2015-06-15,"AF","Adula_californiensis","Nucella_ostrina",0,0,317,NA,0,11.16,NA,NA
+2015-06-15,"AF","Balanus_glandula","Nucella_canaliculata",0.0384615384615385,1,28,40.7411356350379,8220.95238095238,11.16,1.14834236934621e-07,0.00094404679354252
+2015-06-15,"AF","Balanus_glandula","Nucella_ostrina",0.0134680134680135,4,317,18.0451426491535,8220.95238095238,11.16,9.07864616065916e-08,0.000746351177702951
+2015-06-15,"AF","Chthamalus_dalli","Nucella_canaliculata",0,0,28,NA,1036.19047619047,11.16,NA,NA
+2015-06-15,"AF","Chthamalus_dalli","Nucella_ostrina",0.00673400673400673,2,317,15.0297124088984,1036.19047619047,11.16,4.32397604762072e-07,0.000448046279982032
+2015-06-15,"AF","Hiatella_arctica","Nucella_canaliculata",0,0,28,NA,0,11.16,NA,NA
+2015-06-15,"AF","Hiatella_arctica","Nucella_ostrina",0,0,317,NA,0,11.16,NA,NA
+2015-06-15,"AF","Limpets","Nucella_canaliculata",0,0,28,NA,1878.09523809524,11.16,NA,NA
+2015-06-15,"AF","Limpets","Nucella_ostrina",0,0,317,NA,1878.09523809524,11.16,NA,NA
+2015-06-15,"AF","Littorina_sitkana","Nucella_canaliculata",0,0,28,NA,3801.90476190476,11.16,NA,NA
+2015-06-15,"AF","Littorina_sitkana","Nucella_ostrina",0,0,317,NA,3801.90476190476,11.16,NA,NA
+2015-06-15,"AF","Modiolus_modiolus","Nucella_canaliculata",0,0,28,NA,0,11.16,NA,NA
+2015-06-15,"AF","Modiolus_modiolus","Nucella_ostrina",0.00336700336700337,1,317,37.6943673131156,0,11.16,Inf,8.93237798378389e-05
+2015-06-15,"AF","Mytilus_californianus","Nucella_canaliculata",0,0,28,NA,15.2380952380952,11.16,NA,NA
+2015-06-15,"AF","Mytilus_californianus","Nucella_ostrina",0,0,317,NA,15.2380952380952,11.16,NA,NA
+2015-06-15,"AF","Mytilus_trossulus","Nucella_canaliculata",0,0,28,NA,300.952380952381,11.16,NA,NA
+2015-06-15,"AF","Mytilus_trossulus","Nucella_ostrina",0.0437710437710438,13,317,63.6436128703044,300.952380952381,11.16,2.28525303335933e-06,0.000687752341468142
+2015-06-15,"AF","Nucella_ostrina","Nucella_canaliculata",0,0,28,NA,133.333333333333,11.16,NA,NA
+2015-06-15,"AF","Nucella_ostrina","Nucella_ostrina",0,0,317,NA,133.333333333333,11.16,NA,NA
+2015-06-15,"AF","Pollicipes_polymerus","Nucella_canaliculata",0.0384615384615385,1,28,17.058747966388,76.1904761904762,11.16,2.95923061471071e-05,0.00225465189692244
+2015-06-15,"AF","Pollicipes_polymerus","Nucella_ostrina",0,0,317,NA,76.1904761904762,11.16,NA,NA
+2015-06-15,"AF","Semibalanus_cariosus","Nucella_canaliculata",0,0,28,NA,22.8571428571429,11.16,NA,NA
+2015-06-15,"AF","Semibalanus_cariosus","Nucella_ostrina",0,0,317,NA,22.8571428571429,11.16,NA,NA
+2015-06-15,"AG","Adula_californiensis","Nucella_canaliculata",0,0,8,NA,0,11.16,NA,NA
+2015-06-15,"AG","Adula_californiensis","Nucella_ostrina",0,0,284,NA,0,11.16,NA,NA
+2015-06-15,"AG","Balanus_glandula","Nucella_canaliculata",0,0,8,NA,0,11.16,NA,NA
+2015-06-15,"AG","Balanus_glandula","Nucella_ostrina",0.0289256198347107,7,284,48.7566586353514,0,11.16,Inf,0.000593265015370393
+2015-06-15,"AG","Chthamalus_dalli","Nucella_canaliculata",0,0,8,NA,0,11.16,NA,NA
+2015-06-15,"AG","Chthamalus_dalli","Nucella_ostrina",0.012396694214876,3,284,14.4163626252454,0,11.16,Inf,0.000859904438944079
+2015-06-15,"AG","Hiatella_arctica","Nucella_canaliculata",0,0,8,NA,0,11.16,NA,NA
+2015-06-15,"AG","Hiatella_arctica","Nucella_ostrina",0,0,284,NA,0,11.16,NA,NA
+2015-06-15,"AG","Limpets","Nucella_canaliculata",0,0,8,NA,0,11.16,NA,NA
+2015-06-15,"AG","Limpets","Nucella_ostrina",0,0,284,NA,0,11.16,NA,NA
+2015-06-15,"AG","Littorina_sitkana","Nucella_canaliculata",0,0,8,NA,0,11.16,NA,NA
+2015-06-15,"AG","Littorina_sitkana","Nucella_ostrina",0,0,284,NA,0,11.16,NA,NA
+2015-06-15,"AG","Modiolus_modiolus","Nucella_canaliculata",0,0,8,NA,0,11.16,NA,NA
+2015-06-15,"AG","Modiolus_modiolus","Nucella_ostrina",0,0,284,NA,0,11.16,NA,NA
+2015-06-15,"AG","Mytilus_californianus","Nucella_canaliculata",0,0,8,NA,0,11.16,NA,NA
+2015-06-15,"AG","Mytilus_californianus","Nucella_ostrina",0,0,284,NA,0,11.16,NA,NA
+2015-06-15,"AG","Mytilus_trossulus","Nucella_canaliculata",0,0,8,NA,0,11.16,NA,NA
+2015-06-15,"AG","Mytilus_trossulus","Nucella_ostrina",0.128099173553719,31,284,59.4094383137948,0,11.16,Inf,0.00215620913426435
+2015-06-15,"AG","Nucella_ostrina","Nucella_canaliculata",0,0,8,NA,0,11.16,NA,NA
+2015-06-15,"AG","Nucella_ostrina","Nucella_ostrina",0,0,284,NA,0,11.16,NA,NA
+2015-06-15,"AG","Pollicipes_polymerus","Nucella_canaliculata",0,0,8,NA,0,11.16,NA,NA
+2015-06-15,"AG","Pollicipes_polymerus","Nucella_ostrina",0.00413223140495868,1,284,7.42029294676097,0,11.16,Inf,0.000556882515906928
+2015-06-15,"AG","Semibalanus_cariosus","Nucella_canaliculata",0,0,8,NA,0,11.16,NA,NA
+2015-06-15,"AG","Semibalanus_cariosus","Nucella_ostrina",0,0,284,NA,0,11.16,NA,NA
+2015-06-15,"B","Adula_californiensis","Nucella_canaliculata",0,0,79,NA,0,11.16,NA,NA
+2015-06-15,"B","Adula_californiensis","Nucella_ostrina",0,0,77,NA,0,11.16,NA,NA
+2015-06-15,"B","Balanus_glandula","Nucella_canaliculata",0,0,79,NA,655.238095238095,11.16,NA,NA
+2015-06-15,"B","Balanus_glandula","Nucella_ostrina",0.027027027027027,2,77,16.9781269775356,655.238095238095,11.16,2.42945779863735e-06,0.00159187330044047
+2015-06-15,"B","Chthamalus_dalli","Nucella_canaliculata",0,0,79,NA,0,11.16,NA,NA
+2015-06-15,"B","Chthamalus_dalli","Nucella_ostrina",0,0,77,NA,0,11.16,NA,NA
+2015-06-15,"B","Hiatella_arctica","Nucella_canaliculata",0,0,79,NA,0,11.16,NA,NA
+2015-06-15,"B","Hiatella_arctica","Nucella_ostrina",0,0,77,NA,0,11.16,NA,NA
+2015-06-15,"B","Limpets","Nucella_canaliculata",0,0,79,NA,1226.66666666667,11.16,NA,NA
+2015-06-15,"B","Limpets","Nucella_ostrina",0,0,77,NA,1226.66666666667,11.16,NA,NA
+2015-06-15,"B","Littorina_sitkana","Nucella_canaliculata",0,0,79,NA,723.809523809524,11.16,NA,NA
+2015-06-15,"B","Littorina_sitkana","Nucella_ostrina",0,0,77,NA,723.809523809524,11.16,NA,NA
+2015-06-15,"B","Modiolus_modiolus","Nucella_canaliculata",0,0,79,NA,0,11.16,NA,NA
+2015-06-15,"B","Modiolus_modiolus","Nucella_ostrina",0,0,77,NA,0,11.16,NA,NA
+2015-06-15,"B","Mytilus_californianus","Nucella_canaliculata",0,0,79,NA,121.904761904762,11.16,NA,NA
+2015-06-15,"B","Mytilus_californianus","Nucella_ostrina",0,0,77,NA,121.904761904762,11.16,NA,NA
+2015-06-15,"B","Mytilus_trossulus","Nucella_canaliculata",0.0684931506849315,5,79,46.4167232389315,468.571428571429,11.16,3.14917548567812e-06,0.00147561365614632
+2015-06-15,"B","Mytilus_trossulus","Nucella_ostrina",0.0135135135135135,1,77,63.6805948902138,468.571428571429,11.16,4.52882317995011e-07,0.000212207714717662
+2015-06-15,"B","Nucella_ostrina","Nucella_canaliculata",0,0,79,NA,91.4285714285715,11.16,NA,NA
+2015-06-15,"B","Nucella_ostrina","Nucella_ostrina",0,0,77,NA,91.4285714285715,11.16,NA,NA
+2015-06-15,"B","Pollicipes_polymerus","Nucella_canaliculata",0.0136986301369863,1,79,7.73884191005929,10293.3333333333,11.16,1.71967005159553e-07,0.00177011370644233
+2015-06-15,"B","Pollicipes_polymerus","Nucella_ostrina",0,0,77,NA,10293.3333333333,11.16,NA,NA
+2015-06-15,"B","Semibalanus_cariosus","Nucella_canaliculata",0,0,79,NA,11.4285714285714,11.16,NA,NA
+2015-06-15,"B","Semibalanus_cariosus","Nucella_ostrina",0,0,77,NA,11.4285714285714,11.16,NA,NA
+2015-06-15,"BB","Adula_californiensis","Nucella_canaliculata",0,0,6,NA,0,11.16,NA,NA
+2015-06-15,"BB","Adula_californiensis","Nucella_ostrina",0,0,254,NA,0,11.16,NA,NA
+2015-06-15,"BB","Balanus_glandula","Nucella_canaliculata",0,0,6,NA,681.904761904763,11.16,NA,NA
+2015-06-15,"BB","Balanus_glandula","Nucella_ostrina",0.0300429184549356,7,254,26.9575432082035,681.904761904763,11.16,1.63432372685169e-06,0.00111445313183411
+2015-06-15,"BB","Chthamalus_dalli","Nucella_canaliculata",0,0,6,NA,148.571428571428,11.16,NA,NA
+2015-06-15,"BB","Chthamalus_dalli","Nucella_ostrina",0.0171673819742489,4,254,18.7334921321097,148.571428571428,11.16,6.16808043851482e-06,0.00091640052229363
+2015-06-15,"BB","Hiatella_arctica","Nucella_canaliculata",0,0,6,NA,0,11.16,NA,NA
+2015-06-15,"BB","Hiatella_arctica","Nucella_ostrina",0,0,254,NA,0,11.16,NA,NA
+2015-06-15,"BB","Limpets","Nucella_canaliculata",0,0,6,NA,1241.90476190476,11.16,NA,NA
+2015-06-15,"BB","Limpets","Nucella_ostrina",0.00858369098712446,2,254,16.230941491177,1241.90476190476,11.16,4.25835702274198e-07,0.000528847386443386
+2015-06-15,"BB","Littorina_sitkana","Nucella_canaliculata",0,0,6,NA,3432.38095238095,11.16,NA,NA
+2015-06-15,"BB","Littorina_sitkana","Nucella_ostrina",0.00429184549356223,1,254,34.7457136247868,3432.38095238095,11.16,3.59871421927464e-08,0.000123521581393008
+2015-06-15,"BB","Modiolus_modiolus","Nucella_canaliculata",0,0,6,NA,0,11.16,NA,NA
+2015-06-15,"BB","Modiolus_modiolus","Nucella_ostrina",0,0,254,NA,0,11.16,NA,NA
+2015-06-15,"BB","Mytilus_californianus","Nucella_canaliculata",0,0,6,NA,15.2380952380952,11.16,NA,NA
+2015-06-15,"BB","Mytilus_californianus","Nucella_ostrina",0,0,254,NA,15.2380952380952,11.16,NA,NA
+2015-06-15,"BB","Mytilus_trossulus","Nucella_canaliculata",0,0,6,NA,316.190476190476,11.16,NA,NA
+2015-06-15,"BB","Mytilus_trossulus","Nucella_ostrina",0.0257510729613734,6,254,84.2848285539564,316.190476190476,11.16,9.6626697605306e-07,0.000305524415285349
+2015-06-15,"BB","Nucella_ostrina","Nucella_canaliculata",0,0,6,NA,209.52380952381,11.16,NA,NA
+2015-06-15,"BB","Nucella_ostrina","Nucella_ostrina",0.00429184549356223,1,254,61.5098502791375,209.52380952381,11.16,3.33016711055199e-07,6.97749299353751e-05
+2015-06-15,"BB","Pollicipes_polymerus","Nucella_canaliculata",0,0,6,NA,316.190476190476,11.16,NA,NA
+2015-06-15,"BB","Pollicipes_polymerus","Nucella_ostrina",0,0,254,NA,316.190476190476,11.16,NA,NA
+2015-06-15,"BB","Semibalanus_cariosus","Nucella_canaliculata",0,0,6,NA,0,11.16,NA,NA
+2015-06-15,"BB","Semibalanus_cariosus","Nucella_ostrina",0,0,254,NA,0,11.16,NA,NA
+2015-06-15,"BC","Adula_californiensis","Nucella_canaliculata",0,0,3,NA,0,11.16,NA,NA
+2015-06-15,"BC","Adula_californiensis","Nucella_ostrina",0,0,294,NA,0,11.16,NA,NA
+2015-06-15,"BC","Balanus_glandula","Nucella_canaliculata",0,0,3,NA,4617.14285714286,11.16,NA,NA
+2015-06-15,"BC","Balanus_glandula","Nucella_ostrina",0.05859375,15,294,43.1512346243528,4617.14285714286,11.16,2.94093046065853e-07,0.00135786960697834
+2015-06-15,"BC","Chthamalus_dalli","Nucella_canaliculata",0,0,3,NA,1470.47619047619,11.16,NA,NA
+2015-06-15,"BC","Chthamalus_dalli","Nucella_ostrina",0,0,294,NA,1470.47619047619,11.16,NA,NA
+2015-06-15,"BC","Hiatella_arctica","Nucella_canaliculata",0,0,3,NA,0,11.16,NA,NA
+2015-06-15,"BC","Hiatella_arctica","Nucella_ostrina",0,0,294,NA,0,11.16,NA,NA
+2015-06-15,"BC","Limpets","Nucella_canaliculata",0,0,3,NA,2853.33333333333,11.16,NA,NA
+2015-06-15,"BC","Limpets","Nucella_ostrina",0,0,294,NA,2853.33333333333,11.16,NA,NA
+2015-06-15,"BC","Littorina_sitkana","Nucella_canaliculata",0,0,3,NA,2403.80952380952,11.16,NA,NA
+2015-06-15,"BC","Littorina_sitkana","Nucella_ostrina",0,0,294,NA,2403.80952380952,11.16,NA,NA
+2015-06-15,"BC","Modiolus_modiolus","Nucella_canaliculata",0,0,3,NA,0,11.16,NA,NA
+2015-06-15,"BC","Modiolus_modiolus","Nucella_ostrina",0,0,294,NA,0,11.16,NA,NA
+2015-06-15,"BC","Mytilus_californianus","Nucella_canaliculata",0,0,3,NA,34.2857142857143,11.16,NA,NA
+2015-06-15,"BC","Mytilus_californianus","Nucella_ostrina",0,0,294,NA,34.2857142857143,11.16,NA,NA
+2015-06-15,"BC","Mytilus_trossulus","Nucella_canaliculata",0,0,3,NA,422.857142857143,11.16,NA,NA
+2015-06-15,"BC","Mytilus_trossulus","Nucella_ostrina",0.08984375,23,294,51.4721799054857,422.857142857143,11.16,4.12782843261819e-06,0.00174548173722141
+2015-06-15,"BC","Nucella_ostrina","Nucella_canaliculata",0,0,3,NA,220.952380952381,11.16,NA,NA
+2015-06-15,"BC","Nucella_ostrina","Nucella_ostrina",0,0,294,NA,220.952380952381,11.16,NA,NA
+2015-06-15,"BC","Pollicipes_polymerus","Nucella_canaliculata",0,0,3,NA,220.952380952381,11.16,NA,NA
+2015-06-15,"BC","Pollicipes_polymerus","Nucella_ostrina",0,0,294,NA,220.952380952381,11.16,NA,NA
+2015-06-15,"BC","Semibalanus_cariosus","Nucella_canaliculata",0,0,3,NA,3.8095238095238,11.16,NA,NA
+2015-06-15,"BC","Semibalanus_cariosus","Nucella_ostrina",0,0,294,NA,3.8095238095238,11.16,NA,NA
+2015-06-15,"BD","Adula_californiensis","Nucella_canaliculata",0,0,30,NA,0,11.16,NA,NA
+2015-06-15,"BD","Adula_californiensis","Nucella_ostrina",0,0,162,NA,0,11.16,NA,NA
+2015-06-15,"BD","Balanus_glandula","Nucella_canaliculata",0,0,30,NA,3108.57142857143,11.16,NA,NA
+2015-06-15,"BD","Balanus_glandula","Nucella_ostrina",0.0214285714285714,3,162,39.6570742105286,3108.57142857143,11.16,1.73824783854353e-07,0.000540346756667247
+2015-06-15,"BD","Chthamalus_dalli","Nucella_canaliculata",0,0,30,NA,144.761904761905,11.16,NA,NA
+2015-06-15,"BD","Chthamalus_dalli","Nucella_ostrina",0,0,162,NA,144.761904761905,11.16,NA,NA
+2015-06-15,"BD","Hiatella_arctica","Nucella_canaliculata",0,0,30,NA,0,11.16,NA,NA
+2015-06-15,"BD","Hiatella_arctica","Nucella_ostrina",0,0,162,NA,0,11.16,NA,NA
+2015-06-15,"BD","Limpets","Nucella_canaliculata",0,0,30,NA,5371.42857142857,11.16,NA,NA
+2015-06-15,"BD","Limpets","Nucella_ostrina",0.0214285714285714,3,162,9.48471912767516,5371.42857142857,11.16,4.20609366331917e-07,0.00225927316772572
+2015-06-15,"BD","Littorina_sitkana","Nucella_canaliculata",0,0,30,NA,4083.80952380952,11.16,NA,NA
+2015-06-15,"BD","Littorina_sitkana","Nucella_ostrina",0.0142857142857143,2,162,29.245031743361,4083.80952380952,11.16,1.19614653150525e-07,0.000488483459723285
+2015-06-15,"BD","Modiolus_modiolus","Nucella_canaliculata",0,0,30,NA,0,11.16,NA,NA
+2015-06-15,"BD","Modiolus_modiolus","Nucella_ostrina",0,0,162,NA,0,11.16,NA,NA
+2015-06-15,"BD","Mytilus_californianus","Nucella_canaliculata",0,0,30,NA,415.238095238095,11.16,NA,NA
+2015-06-15,"BD","Mytilus_californianus","Nucella_ostrina",0,0,162,NA,415.238095238095,11.16,NA,NA
+2015-06-15,"BD","Mytilus_trossulus","Nucella_canaliculata",0.0769230769230769,2,30,87.9657325015666,10236.1904761905,11.16,8.54288904001352e-08,0.000874466394305384
+2015-06-15,"BD","Mytilus_trossulus","Nucella_ostrina",0.0714285714285714,10,162,54.0318394484146,10236.1904761905,11.16,1.2914686040182e-07,0.00132197186247501
+2015-06-15,"BD","Nucella_ostrina","Nucella_canaliculata",0,0,30,NA,167.619047619047,11.16,NA,NA
+2015-06-15,"BD","Nucella_ostrina","Nucella_ostrina",0,0,162,NA,167.619047619047,11.16,NA,NA
+2015-06-15,"BD","Pollicipes_polymerus","Nucella_canaliculata",0.0769230769230769,2,30,16.6216300340378,25401.9047619048,11.16,1.82186734967856e-07,0.00462789009053587
+2015-06-15,"BD","Pollicipes_polymerus","Nucella_ostrina",0.0285714285714286,4,162,11.6228522209565,25401.9047619048,11.16,9.67727218421471e-08,0.00245821146378452
+2015-06-15,"BD","Semibalanus_cariosus","Nucella_canaliculata",0,0,30,NA,60.9523809523809,11.16,NA,NA
+2015-06-15,"BD","Semibalanus_cariosus","Nucella_ostrina",0,0,162,NA,60.9523809523809,11.16,NA,NA
+2015-06-15,"BE","Adula_californiensis","Nucella_canaliculata",0,0,2,NA,0,11.16,NA,NA
+2015-06-15,"BE","Adula_californiensis","Nucella_ostrina",0,0,355,NA,0,11.16,NA,NA
+2015-06-15,"BE","Balanus_glandula","Nucella_canaliculata",0,0,2,NA,1771.42857142857,11.16,NA,NA
+2015-06-15,"BE","Balanus_glandula","Nucella_ostrina",0.103448275862069,30,355,43.6917567485002,1771.42857142857,11.16,1.33659583845232e-06,0.00236768405668696
+2015-06-15,"BE","Chthamalus_dalli","Nucella_canaliculata",0,0,2,NA,0,11.16,NA,NA
+2015-06-15,"BE","Chthamalus_dalli","Nucella_ostrina",0.00689655172413793,2,355,22.2477291475672,0,11.16,Inf,0.000309989018582243
+2015-06-15,"BE","Hiatella_arctica","Nucella_canaliculata",0,0,2,NA,0,11.16,NA,NA
+2015-06-15,"BE","Hiatella_arctica","Nucella_ostrina",0,0,355,NA,0,11.16,NA,NA
+2015-06-15,"BE","Limpets","Nucella_canaliculata",0,0,2,NA,1931.42857142857,11.16,NA,NA
+2015-06-15,"BE","Limpets","Nucella_ostrina",0,0,355,NA,1931.42857142857,11.16,NA,NA
+2015-06-15,"BE","Littorina_sitkana","Nucella_canaliculata",0,0,2,NA,3600,11.16,NA,NA
+2015-06-15,"BE","Littorina_sitkana","Nucella_ostrina",0,0,355,NA,3600,11.16,NA,NA
+2015-06-15,"BE","Modiolus_modiolus","Nucella_canaliculata",0,0,2,NA,0,11.16,NA,NA
+2015-06-15,"BE","Modiolus_modiolus","Nucella_ostrina",0,0,355,NA,0,11.16,NA,NA
+2015-06-15,"BE","Mytilus_californianus","Nucella_canaliculata",0,0,2,NA,0,11.16,NA,NA
+2015-06-15,"BE","Mytilus_californianus","Nucella_ostrina",0,0,355,NA,0,11.16,NA,NA
+2015-06-15,"BE","Mytilus_trossulus","Nucella_canaliculata",0,0,2,NA,594.285714285714,11.16,NA,NA
+2015-06-15,"BE","Mytilus_trossulus","Nucella_ostrina",0.113793103448276,33,355,45.7735104597199,594.285714285714,11.16,4.18317882805488e-06,0.00248600341781547
+2015-06-15,"BE","Nucella_ostrina","Nucella_canaliculata",0,0,2,NA,194.285714285714,11.16,NA,NA
+2015-06-15,"BE","Nucella_ostrina","Nucella_ostrina",0,0,355,NA,194.285714285714,11.16,NA,NA
+2015-06-15,"BE","Pollicipes_polymerus","Nucella_canaliculata",0,0,2,NA,205.714285714286,11.16,NA,NA
+2015-06-15,"BE","Pollicipes_polymerus","Nucella_ostrina",0,0,355,NA,205.714285714286,11.16,NA,NA
+2015-06-15,"BE","Semibalanus_cariosus","Nucella_canaliculata",0,0,2,NA,22.8571428571429,11.16,NA,NA
+2015-06-15,"BE","Semibalanus_cariosus","Nucella_ostrina",0,0,355,NA,22.8571428571429,11.16,NA,NA
+2015-06-15,"BF","Adula_californiensis","Nucella_canaliculata",0,0,3,NA,0,11.16,NA,NA
+2015-06-15,"BF","Adula_californiensis","Nucella_ostrina",0,0,341,NA,0,11.16,NA,NA
+2015-06-15,"BF","Balanus_glandula","Nucella_canaliculata",0,0,3,NA,0,11.16,NA,NA
+2015-06-15,"BF","Balanus_glandula","Nucella_ostrina",0.0226537216828479,7,341,39.7739220636606,0,11.16,Inf,0.000569562178117341
+2015-06-15,"BF","Chthamalus_dalli","Nucella_canaliculata",0,0,3,NA,0,11.16,NA,NA
+2015-06-15,"BF","Chthamalus_dalli","Nucella_ostrina",0,0,341,NA,0,11.16,NA,NA
+2015-06-15,"BF","Hiatella_arctica","Nucella_canaliculata",0,0,3,NA,0,11.16,NA,NA
+2015-06-15,"BF","Hiatella_arctica","Nucella_ostrina",0,0,341,NA,0,11.16,NA,NA
+2015-06-15,"BF","Limpets","Nucella_canaliculata",0,0,3,NA,0,11.16,NA,NA
+2015-06-15,"BF","Limpets","Nucella_ostrina",0,0,341,NA,0,11.16,NA,NA
+2015-06-15,"BF","Littorina_sitkana","Nucella_canaliculata",0,0,3,NA,0,11.16,NA,NA
+2015-06-15,"BF","Littorina_sitkana","Nucella_ostrina",0.00647249190938511,2,341,29.245031743361,0,11.16,Inf,0.000221319366864919
+2015-06-15,"BF","Modiolus_modiolus","Nucella_canaliculata",0,0,3,NA,0,11.16,NA,NA
+2015-06-15,"BF","Modiolus_modiolus","Nucella_ostrina",0,0,341,NA,0,11.16,NA,NA
+2015-06-15,"BF","Mytilus_californianus","Nucella_canaliculata",0,0,3,NA,0,11.16,NA,NA
+2015-06-15,"BF","Mytilus_californianus","Nucella_ostrina",0,0,341,NA,0,11.16,NA,NA
+2015-06-15,"BF","Mytilus_trossulus","Nucella_canaliculata",0,0,3,NA,0,11.16,NA,NA
+2015-06-15,"BF","Mytilus_trossulus","Nucella_ostrina",0.0679611650485437,21,341,50.4258221491244,0,11.16,Inf,0.00134774530492655
+2015-06-15,"BF","Nucella_ostrina","Nucella_canaliculata",0,0,3,NA,0,11.16,NA,NA
+2015-06-15,"BF","Nucella_ostrina","Nucella_ostrina",0,0,341,NA,0,11.16,NA,NA
+2015-06-15,"BF","Pollicipes_polymerus","Nucella_canaliculata",0,0,3,NA,0,11.16,NA,NA
+2015-06-15,"BF","Pollicipes_polymerus","Nucella_ostrina",0.00647249190938511,2,341,8.85444946652178,0,11.16,Inf,0.000730987503385419
+2015-06-15,"BF","Semibalanus_cariosus","Nucella_canaliculata",0,0,3,NA,0,11.16,NA,NA
+2015-06-15,"BF","Semibalanus_cariosus","Nucella_ostrina",0,0,341,NA,0,11.16,NA,NA
+2015-06-15,"C","Adula_californiensis","Nucella_canaliculata",0,0,32,NA,0,11.16,NA,NA
+2015-06-15,"C","Adula_californiensis","Nucella_ostrina",0,0,160,NA,0,11.16,NA,NA
+2015-06-15,"C","Balanus_glandula","Nucella_canaliculata",0,0,32,NA,449.52380952381,11.16,NA,NA
+2015-06-15,"C","Balanus_glandula","Nucella_ostrina",0.0482758620689655,7,160,24.9241750028242,449.52380952381,11.16,4.30880208542595e-06,0.00193690912792481
+2015-06-15,"C","Chthamalus_dalli","Nucella_canaliculata",0,0,32,NA,22.8571428571428,11.16,NA,NA
+2015-06-15,"C","Chthamalus_dalli","Nucella_ostrina",0,0,160,NA,22.8571428571428,11.16,NA,NA
+2015-06-15,"C","Hiatella_arctica","Nucella_canaliculata",0,0,32,NA,0,11.16,NA,NA
+2015-06-15,"C","Hiatella_arctica","Nucella_ostrina",0,0,160,NA,0,11.16,NA,NA
+2015-06-15,"C","Limpets","Nucella_canaliculata",0,0,32,NA,2712.38095238095,11.16,NA,NA
+2015-06-15,"C","Limpets","Nucella_ostrina",0.0206896551724138,3,160,8.85046535110416,2712.38095238095,11.16,8.6185947484142e-07,0.00233769122318892
+2015-06-15,"C","Littorina_sitkana","Nucella_canaliculata",0,0,32,NA,990.47619047619,11.16,NA,NA
+2015-06-15,"C","Littorina_sitkana","Nucella_ostrina",0,0,160,NA,990.47619047619,11.16,NA,NA
+2015-06-15,"C","Modiolus_modiolus","Nucella_canaliculata",0,0,32,NA,0,11.16,NA,NA
+2015-06-15,"C","Modiolus_modiolus","Nucella_ostrina",0,0,160,NA,0,11.16,NA,NA
+2015-06-15,"C","Mytilus_californianus","Nucella_canaliculata",0,0,32,NA,38.0952380952381,11.16,NA,NA
+2015-06-15,"C","Mytilus_californianus","Nucella_ostrina",0,0,160,NA,38.0952380952381,11.16,NA,NA
+2015-06-15,"C","Mytilus_trossulus","Nucella_canaliculata",0,0,32,NA,137.142857142857,11.16,NA,NA
+2015-06-15,"C","Mytilus_trossulus","Nucella_ostrina",0.0137931034482759,2,160,83.5989249735673,137.142857142857,11.16,1.20306227233757e-06,0.000164991397349153
+2015-06-15,"C","Nucella_ostrina","Nucella_canaliculata",0,0,32,NA,80.0000000000001,11.16,NA,NA
+2015-06-15,"C","Nucella_ostrina","Nucella_ostrina",0.00689655172413793,1,160,91.3893088203872,80.0000000000001,11.16,9.43293013859549e-07,7.5463441108764e-05
+2015-06-15,"C","Pollicipes_polymerus","Nucella_canaliculata",0,0,32,NA,10361.9047619048,11.16,NA,NA
+2015-06-15,"C","Pollicipes_polymerus","Nucella_ostrina",0.0137931034482759,2,160,5.2289529765625,10361.9047619048,11.16,2.54570256914416e-07,0.00263783275736081
+2015-06-15,"C","Semibalanus_cariosus","Nucella_canaliculata",0,0,32,NA,3.8095238095238,11.16,NA,NA
+2015-06-15,"C","Semibalanus_cariosus","Nucella_ostrina",0,0,160,NA,3.8095238095238,11.16,NA,NA
+2015-06-15,"D","Adula_californiensis","Nucella_canaliculata",0,0,12,NA,0,11.16,NA,NA
+2015-06-15,"D","Adula_californiensis","Nucella_ostrina",0,0,297,NA,0,11.16,NA,NA
+2015-06-15,"D","Balanus_glandula","Nucella_canaliculata",0,0,12,NA,2988.57142857142,11.16,NA,NA
+2015-06-15,"D","Balanus_glandula","Nucella_ostrina",0.0413533834586466,11,297,36.2733504546611,2988.57142857142,11.16,3.81469426562604e-07,0.00114004862909852
+2015-06-15,"D","Chthamalus_dalli","Nucella_canaliculata",0,0,12,NA,365.714285714286,11.16,NA,NA
+2015-06-15,"D","Chthamalus_dalli","Nucella_ostrina",0.0037593984962406,1,297,14.631470372683,365.714285714286,11.16,7.02568163097943e-07,0.000256939213932962
+2015-06-15,"D","Hiatella_arctica","Nucella_canaliculata",0,0,12,NA,0,11.16,NA,NA
+2015-06-15,"D","Hiatella_arctica","Nucella_ostrina",0,0,297,NA,0,11.16,NA,NA
+2015-06-15,"D","Limpets","Nucella_canaliculata",0,0,12,NA,3274.28571428572,11.16,NA,NA
+2015-06-15,"D","Limpets","Nucella_ostrina",0,0,297,NA,3274.28571428572,11.16,NA,NA
+2015-06-15,"D","Littorina_sitkana","Nucella_canaliculata",0,0,12,NA,2028.57142857143,11.16,NA,NA
+2015-06-15,"D","Littorina_sitkana","Nucella_ostrina",0.0037593984962406,1,297,27.0844617678106,2028.57142857143,11.16,6.84239039605119e-08,0.00013880277660561
+2015-06-15,"D","Modiolus_modiolus","Nucella_canaliculata",0,0,12,NA,0,11.16,NA,NA
+2015-06-15,"D","Modiolus_modiolus","Nucella_ostrina",0,0,297,NA,0,11.16,NA,NA
+2015-06-15,"D","Mytilus_californianus","Nucella_canaliculata",0,0,12,NA,262.857142857143,11.16,NA,NA
+2015-06-15,"D","Mytilus_californianus","Nucella_ostrina",0,0,297,NA,262.857142857143,11.16,NA,NA
+2015-06-15,"D","Mytilus_trossulus","Nucella_canaliculata",0.0909090909090909,1,12,31.0217955465062,577.142857142857,11.16,5.0775833184452e-06,0.00293049094378837
+2015-06-15,"D","Mytilus_trossulus","Nucella_ostrina",0.0676691729323308,18,297,52.6790844912217,577.142857142857,11.16,2.22571383110307e-06,0.0012845548396652
+2015-06-15,"D","Nucella_ostrina","Nucella_canaliculata",0,0,12,NA,177.142857142857,11.16,NA,NA
+2015-06-15,"D","Nucella_ostrina","Nucella_ostrina",0,0,297,NA,177.142857142857,11.16,NA,NA
+2015-06-15,"D","Pollicipes_polymerus","Nucella_canaliculata",0,0,12,NA,120,11.16,NA,NA
+2015-06-15,"D","Pollicipes_polymerus","Nucella_ostrina",0,0,297,NA,120,11.16,NA,NA
+2015-06-15,"D","Semibalanus_cariosus","Nucella_canaliculata",0,0,12,NA,5.7142857142857,11.16,NA,NA
+2015-06-15,"D","Semibalanus_cariosus","Nucella_ostrina",0,0,297,NA,5.7142857142857,11.16,NA,NA
+2015-06-15,"E","Adula_californiensis","Nucella_canaliculata",0,0,32,NA,0,11.16,NA,NA
+2015-06-15,"E","Adula_californiensis","Nucella_ostrina",0,0,224,NA,0,11.16,NA,NA
+2015-06-15,"E","Balanus_glandula","Nucella_canaliculata",0,0,32,NA,289.52380952381,11.16,NA,NA
+2015-06-15,"E","Balanus_glandula","Nucella_ostrina",0.0099009900990099,2,224,48.0558534163333,289.52380952381,11.16,7.11619839543105e-07,0.000206030886877242
+2015-06-15,"E","Chthamalus_dalli","Nucella_canaliculata",0,0,32,NA,45.7142857142857,11.16,NA,NA
+2015-06-15,"E","Chthamalus_dalli","Nucella_ostrina",0,0,224,NA,45.7142857142857,11.16,NA,NA
+2015-06-15,"E","Hiatella_arctica","Nucella_canaliculata",0,0,32,NA,0,11.16,NA,NA
+2015-06-15,"E","Hiatella_arctica","Nucella_ostrina",0,0,224,NA,0,11.16,NA,NA
+2015-06-15,"E","Limpets","Nucella_canaliculata",0,0,32,NA,960.000000000002,11.16,NA,NA
+2015-06-15,"E","Limpets","Nucella_ostrina",0.0099009900990099,2,224,10.9633105262626,960.000000000002,11.16,9.40731481465316e-07,0.000903102222206705
+2015-06-15,"E","Littorina_sitkana","Nucella_canaliculata",0,0,32,NA,1276.19047619048,11.16,NA,NA
+2015-06-15,"E","Littorina_sitkana","Nucella_ostrina",0.0099009900990099,2,224,25.894830846073,1276.19047619048,11.16,2.99605684104893e-07,0.000382353920667197
+2015-06-15,"E","Modiolus_modiolus","Nucella_canaliculata",0,0,32,NA,0,11.16,NA,NA
+2015-06-15,"E","Modiolus_modiolus","Nucella_ostrina",0,0,224,NA,0,11.16,NA,NA
+2015-06-15,"E","Mytilus_californianus","Nucella_canaliculata",0,0,32,NA,22.8571428571429,11.16,NA,NA
+2015-06-15,"E","Mytilus_californianus","Nucella_ostrina",0,0,224,NA,22.8571428571429,11.16,NA,NA
+2015-06-15,"E","Mytilus_trossulus","Nucella_canaliculata",0,0,32,NA,41.9047619047619,11.16,NA,NA
+2015-06-15,"E","Mytilus_trossulus","Nucella_ostrina",0,0,224,NA,41.9047619047619,11.16,NA,NA
+2015-06-15,"E","Nucella_ostrina","Nucella_canaliculata",0,0,32,NA,38.0952380952381,11.16,NA,NA
+2015-06-15,"E","Nucella_ostrina","Nucella_ostrina",0.00495049504950495,1,224,140.703237440125,38.0952380952381,11.16,9.2357857156488e-07,3.5183945583424e-05
+2015-06-15,"E","Pollicipes_polymerus","Nucella_canaliculata",0.0666666666666667,2,32,10.5060772795195,8030.47619047618,11.16,7.90181488201069e-07,0.00634553362715372
+2015-06-15,"E","Pollicipes_polymerus","Nucella_ostrina",0.0742574257425743,15,224,12.0051840987424,8030.47619047618,11.16,7.70246558400583e-07,0.0061854466480321
+2015-06-15,"E","Semibalanus_cariosus","Nucella_canaliculata",0,0,32,NA,7.6190476190476,11.16,NA,NA
+2015-06-15,"E","Semibalanus_cariosus","Nucella_ostrina",0,0,224,NA,7.6190476190476,11.16,NA,NA
+2015-06-15,"F","Adula_californiensis","Nucella_canaliculata",0,0,10,NA,0,11.16,NA,NA
+2015-06-15,"F","Adula_californiensis","Nucella_ostrina",0,0,283,NA,0,11.16,NA,NA
+2015-06-15,"F","Balanus_glandula","Nucella_canaliculata",0,0,10,NA,5043.80952380952,11.16,NA,NA
+2015-06-15,"F","Balanus_glandula","Nucella_ostrina",0.0528455284552846,13,283,43.3176397036569,5043.80952380952,11.16,2.41871547437403e-07,0.00121995401450332
+2015-06-15,"F","Chthamalus_dalli","Nucella_canaliculata",0,0,10,NA,2468.57142857143,11.16,NA,NA
+2015-06-15,"F","Chthamalus_dalli","Nucella_ostrina",0.0040650406504065,1,283,24.5565681678377,2468.57142857143,11.16,6.70581428484862e-08,0.000165537815488835
+2015-06-15,"F","Hiatella_arctica","Nucella_canaliculata",0,0,10,NA,0,11.16,NA,NA
+2015-06-15,"F","Hiatella_arctica","Nucella_ostrina",0,0,283,NA,0,11.16,NA,NA
+2015-06-15,"F","Limpets","Nucella_canaliculata",0,0,10,NA,5436.19047619048,11.16,NA,NA
+2015-06-15,"F","Limpets","Nucella_ostrina",0.0040650406504065,1,283,4.01470305220044,5436.19047619048,11.16,1.86258799452196e-07,0.0010125383116887
+2015-06-15,"F","Littorina_sitkana","Nucella_canaliculata",0,0,10,NA,2643.80952380953,11.16,NA,NA
+2015-06-15,"F","Littorina_sitkana","Nucella_ostrina",0.0040650406504065,1,283,29.8047021877862,2643.80952380953,11.16,5.15881487621882e-08,0.000136389239013176
+2015-06-15,"F","Modiolus_modiolus","Nucella_canaliculata",0,0,10,NA,0,11.16,NA,NA
+2015-06-15,"F","Modiolus_modiolus","Nucella_ostrina",0,0,283,NA,0,11.16,NA,NA
+2015-06-15,"F","Mytilus_californianus","Nucella_canaliculata",0,0,10,NA,22.8571428571429,11.16,NA,NA
+2015-06-15,"F","Mytilus_californianus","Nucella_ostrina",0,0,283,NA,22.8571428571429,11.16,NA,NA
+2015-06-15,"F","Mytilus_trossulus","Nucella_canaliculata",0.111111111111111,1,10,69.4274510917904,377.142857142857,11.16,4.2434626358857e-06,0.00160039162267689
+2015-06-15,"F","Mytilus_trossulus","Nucella_ostrina",0.0813008130081301,20,283,77.1256709056204,377.142857142857,11.16,2.7950529958482e-06,0.00105413427271989
+2015-06-15,"F","Nucella_ostrina","Nucella_canaliculata",0,0,10,NA,201.904761904762,11.16,NA,NA
+2015-06-15,"F","Nucella_ostrina","Nucella_ostrina",0,0,283,NA,201.904761904762,11.16,NA,NA
+2015-06-15,"F","Pollicipes_polymerus","Nucella_canaliculata",0,0,10,NA,0,11.16,NA,NA
+2015-06-15,"F","Pollicipes_polymerus","Nucella_ostrina",0.0040650406504065,1,283,9.53228286703242,0,11.16,Inf,0.000426449855413494
+2015-06-15,"F","Semibalanus_cariosus","Nucella_canaliculata",0,0,10,NA,19.047619047619,11.16,NA,NA
+2015-06-15,"F","Semibalanus_cariosus","Nucella_ostrina",0,0,283,NA,19.047619047619,11.16,NA,NA
+2015-06-15,"G","Adula_californiensis","Nucella_canaliculata",0,0,35,NA,0,11.16,NA,NA
+2015-06-15,"G","Adula_californiensis","Nucella_ostrina",0,0,257,NA,0,11.16,NA,NA
+2015-06-15,"G","Balanus_glandula","Nucella_canaliculata",0,0,35,NA,320,11.16,NA,NA
+2015-06-15,"G","Balanus_glandula","Nucella_ostrina",0.0346320346320346,8,257,20.1957496360001,320,11.16,5.35880619317001e-06,0.0017148179818144
+2015-06-15,"G","Chthamalus_dalli","Nucella_canaliculata",0,0,35,NA,22.8571428571429,11.16,NA,NA
+2015-06-15,"G","Chthamalus_dalli","Nucella_ostrina",0.00432900432900433,1,257,13.6212955373268,22.8571428571429,11.16,1.39042530040508e-05,0.000317811497235446
+2015-06-15,"G","Hiatella_arctica","Nucella_canaliculata",0,0,35,NA,0,11.16,NA,NA
+2015-06-15,"G","Hiatella_arctica","Nucella_ostrina",0,0,257,NA,0,11.16,NA,NA
+2015-06-15,"G","Limpets","Nucella_canaliculata",0,0,35,NA,891.428571428574,11.16,NA,NA
+2015-06-15,"G","Limpets","Nucella_ostrina",0,0,257,NA,891.428571428574,11.16,NA,NA
+2015-06-15,"G","Littorina_sitkana","Nucella_canaliculata",0,0,35,NA,1057.14285714286,11.16,NA,NA
+2015-06-15,"G","Littorina_sitkana","Nucella_ostrina",0.00432900432900433,1,257,28.6245280831447,1057.14285714286,11.16,1.43059270116505e-07,0.000151234085551734
+2015-06-15,"G","Modiolus_modiolus","Nucella_canaliculata",0,0,35,NA,0,11.16,NA,NA
+2015-06-15,"G","Modiolus_modiolus","Nucella_ostrina",0,0,257,NA,0,11.16,NA,NA
+2015-06-15,"G","Mytilus_californianus","Nucella_canaliculata",0,0,35,NA,57.1428571428572,11.16,NA,NA
+2015-06-15,"G","Mytilus_californianus","Nucella_ostrina",0,0,257,NA,57.1428571428572,11.16,NA,NA
+2015-06-15,"G","Mytilus_trossulus","Nucella_canaliculata",0.0294117647058824,1,35,22.7283430141074,1028.57142857143,11.16,1.25811068691111e-06,0.00129405670653715
+2015-06-15,"G","Mytilus_trossulus","Nucella_ostrina",0.0649350649350649,15,257,57.928438411522,1028.57142857143,11.16,1.0898155528176e-06,0.00112095314004096
+2015-06-15,"G","Nucella_ostrina","Nucella_canaliculata",0,0,35,NA,188.571428571428,11.16,NA,NA
+2015-06-15,"G","Nucella_ostrina","Nucella_ostrina",0,0,257,NA,188.571428571428,11.16,NA,NA
+2015-06-15,"G","Pollicipes_polymerus","Nucella_canaliculata",0,0,35,NA,9068.57142857143,11.16,NA,NA
+2015-06-15,"G","Pollicipes_polymerus","Nucella_ostrina",0.00432900432900433,1,257,1.79487875508979,9068.57142857143,11.16,2.65958591893773e-07,0.00241186448763096
+2015-06-15,"G","Semibalanus_cariosus","Nucella_canaliculata",0,0,35,NA,40,11.16,NA,NA
+2015-06-15,"G","Semibalanus_cariosus","Nucella_ostrina",0,0,257,NA,40,11.16,NA,NA
+2015-07-13,"A","Adula_californiensis","Nucella_canaliculata",0,0,48,NA,0,13.68,NA,NA
+2015-07-13,"A","Adula_californiensis","Nucella_ostrina",0,0,191,NA,0,13.68,NA,NA
+2015-07-13,"A","Balanus_glandula","Nucella_canaliculata",0.025,1,48,9.52049503033182,1377.14285714286,13.68,1.90678393435616e-06,0.00262591387531334
+2015-07-13,"A","Balanus_glandula","Nucella_ostrina",0.0359281437125748,6,191,18.0118133041465,1377.14285714286,13.68,1.44843279216625e-06,0.00199469887378323
+2015-07-13,"A","Chthamalus_dalli","Nucella_canaliculata",0.025,1,48,11.0681462300372,51.4285714285714,13.68,4.39198309281353e-05,0.00225873416201839
+2015-07-13,"A","Chthamalus_dalli","Nucella_ostrina",0.0179640718562874,3,191,15.3422174680995,51.4285714285714,13.68,2.27673345089703e-05,0.00117089148903276
+2015-07-13,"A","Hiatella_arctica","Nucella_canaliculata",0,0,48,NA,0,13.68,NA,NA
+2015-07-13,"A","Hiatella_arctica","Nucella_ostrina",0,0,191,NA,0,13.68,NA,NA
+2015-07-13,"A","Limpets","Nucella_canaliculata",0,0,48,NA,1222.85714285714,13.68,NA,NA
+2015-07-13,"A","Limpets","Nucella_ostrina",0.0239520958083832,4,191,16.2959481215486,1222.85714285714,13.68,1.20195487183264e-06,0.00146981910041249
+2015-07-13,"A","Littorina_sitkana","Nucella_canaliculata",0,0,48,NA,805.714285714286,13.68,NA,NA
+2015-07-13,"A","Littorina_sitkana","Nucella_ostrina",0.00598802395209581,1,191,28.1564047137207,805.714285714286,13.68,2.63952187680194e-07,0.000212670048359471
+2015-07-13,"A","Modiolus_modiolus","Nucella_canaliculata",0,0,48,NA,0,13.68,NA,NA
+2015-07-13,"A","Modiolus_modiolus","Nucella_ostrina",0,0,191,NA,0,13.68,NA,NA
+2015-07-13,"A","Mytilus_californianus","Nucella_canaliculata",0,0,48,NA,5.7142857142857,13.68,NA,NA
+2015-07-13,"A","Mytilus_californianus","Nucella_ostrina",0,0,191,NA,5.7142857142857,13.68,NA,NA
+2015-07-13,"A","Mytilus_trossulus","Nucella_canaliculata",0.15,6,48,37.5709867649323,851.428571428572,13.68,4.68911018351883e-06,0.00399244238482461
+2015-07-13,"A","Mytilus_trossulus","Nucella_ostrina",0.0239520958083832,4,191,33.0565123551643,851.428571428572,13.68,8.51017065821549e-07,0.000724580244613776
+2015-07-13,"A","Nucella_ostrina","Nucella_canaliculata",0,0,48,NA,154.285714285714,13.68,NA,NA
+2015-07-13,"A","Nucella_ostrina","Nucella_ostrina",0,0,191,NA,154.285714285714,13.68,NA,NA
+2015-07-13,"A","Pollicipes_polymerus","Nucella_canaliculata",0,0,48,NA,3628.57142857142,13.68,NA,NA
+2015-07-13,"A","Pollicipes_polymerus","Nucella_ostrina",0.0359281437125748,6,191,7.91009837085108,3628.57142857142,13.68,1.25174889924878e-06,0.00454206029155984
+2015-07-13,"A","Semibalanus_cariosus","Nucella_canaliculata",0,0,48,NA,17.1428571428571,13.68,NA,NA
+2015-07-13,"A","Semibalanus_cariosus","Nucella_ostrina",0,0,191,NA,17.1428571428571,13.68,NA,NA
+2015-07-13,"AB","Adula_californiensis","Nucella_canaliculata",0,0,52,NA,0,13.68,NA,NA
+2015-07-13,"AB","Adula_californiensis","Nucella_ostrina",0,0,195,NA,0,13.68,NA,NA
+2015-07-13,"AB","Balanus_glandula","Nucella_canaliculata",0.0217391304347826,1,52,37.5272289267923,668.571428571428,13.68,8.66458683874316e-07,0.000579289520075971
+2015-07-13,"AB","Balanus_glandula","Nucella_ostrina",0.00598802395209581,1,195,10.2265486119034,668.571428571428,13.68,8.75803403679078e-07,0.000585537132745441
+2015-07-13,"AB","Chthamalus_dalli","Nucella_canaliculata",0,0,52,NA,5.7142857142857,13.68,NA,NA
+2015-07-13,"AB","Chthamalus_dalli","Nucella_ostrina",0.00598802395209581,1,195,13.3659327846145,5.7142857142857,13.68,7.84011268426403e-05,0.000448006439100801
+2015-07-13,"AB","Hiatella_arctica","Nucella_canaliculata",0,0,52,NA,0,13.68,NA,NA
+2015-07-13,"AB","Hiatella_arctica","Nucella_ostrina",0,0,195,NA,0,13.68,NA,NA
+2015-07-13,"AB","Limpets","Nucella_canaliculata",0,0,52,NA,1902.85714285714,13.68,NA,NA
+2015-07-13,"AB","Limpets","Nucella_ostrina",0.0538922155688623,9,195,18.5017215974503,1902.85714285714,13.68,1.53076213796581e-06,0.00291282166824352
+2015-07-13,"AB","Littorina_sitkana","Nucella_canaliculata",0,0,52,NA,2491.42857142857,13.68,NA,NA
+2015-07-13,"AB","Littorina_sitkana","Nucella_ostrina",0.0359281437125748,6,195,26.153050759548,2491.42857142857,13.68,5.51396470615179e-07,0.00137376492107553
+2015-07-13,"AB","Modiolus_modiolus","Nucella_canaliculata",0,0,52,NA,0,13.68,NA,NA
+2015-07-13,"AB","Modiolus_modiolus","Nucella_ostrina",0,0,195,NA,0,13.68,NA,NA
+2015-07-13,"AB","Mytilus_californianus","Nucella_canaliculata",0,0,52,NA,57.142857142857,13.68,NA,NA
+2015-07-13,"AB","Mytilus_californianus","Nucella_ostrina",0,0,195,NA,57.142857142857,13.68,NA,NA
+2015-07-13,"AB","Mytilus_trossulus","Nucella_canaliculata",0,0,52,NA,165.714285714286,13.68,NA,NA
+2015-07-13,"AB","Mytilus_trossulus","Nucella_ostrina",0.0239520958083832,4,195,21.2820366982072,165.714285714286,13.68,6.79157315806598e-06,0.00112546069476522
+2015-07-13,"AB","Nucella_ostrina","Nucella_canaliculata",0,0,52,NA,62.8571428571428,13.68,NA,NA
+2015-07-13,"AB","Nucella_ostrina","Nucella_ostrina",0,0,195,NA,62.8571428571428,13.68,NA,NA
+2015-07-13,"AB","Pollicipes_polymerus","Nucella_canaliculata",0.108695652173913,5,52,13.187889788167,8617.14285714286,13.68,9.56474884733095e-07,0.00824208072101433
+2015-07-13,"AB","Pollicipes_polymerus","Nucella_ostrina",0.0419161676646707,7,195,12.8298975114008,8617.14285714286,13.68,3.7913605679346e-07,0.00326706956368308
+2015-07-13,"AB","Semibalanus_cariosus","Nucella_canaliculata",0,0,52,NA,57.1428571428572,13.68,NA,NA
+2015-07-13,"AB","Semibalanus_cariosus","Nucella_ostrina",0,0,195,NA,57.1428571428572,13.68,NA,NA
+2015-07-13,"AC","Adula_californiensis","Nucella_canaliculata",0,0,7,NA,0,13.68,NA,NA
+2015-07-13,"AC","Adula_californiensis","Nucella_ostrina",0,0,331,NA,0,13.68,NA,NA
+2015-07-13,"AC","Balanus_glandula","Nucella_canaliculata",0.166666666666667,1,7,41.6316398781105,2194.28571428572,13.68,1.82445037796956e-06,0.00400336540080177
+2015-07-13,"AC","Balanus_glandula","Nucella_ostrina",0.0760869565217391,21,331,25.9056000333829,2194.28571428572,13.68,1.33851542697994e-06,0.00293708527977312
+2015-07-13,"AC","Chthamalus_dalli","Nucella_canaliculata",0,0,7,NA,205.714285714286,13.68,NA,NA
+2015-07-13,"AC","Chthamalus_dalli","Nucella_ostrina",0.0217391304347826,6,331,11.1759317183249,205.714285714286,13.68,9.45570634877273e-06,0.00194517387746182
+2015-07-13,"AC","Hiatella_arctica","Nucella_canaliculata",0,0,7,NA,0,13.68,NA,NA
+2015-07-13,"AC","Hiatella_arctica","Nucella_ostrina",0,0,331,NA,0,13.68,NA,NA
+2015-07-13,"AC","Limpets","Nucella_canaliculata",0,0,7,NA,2224.76190476191,13.68,NA,NA
+2015-07-13,"AC","Limpets","Nucella_ostrina",0.0036231884057971,1,331,0.554762130916074,2224.76190476191,13.68,2.93562495514728e-06,0.00653106656688005
+2015-07-13,"AC","Littorina_sitkana","Nucella_canaliculata",0,0,7,NA,9683.80952380954,13.68,NA,NA
+2015-07-13,"AC","Littorina_sitkana","Nucella_ostrina",0.0036231884057971,1,331,17.1957091026957,9683.80952380954,13.68,2.17582814330127e-08,0.000210703052962737
+2015-07-13,"AC","Modiolus_modiolus","Nucella_canaliculata",0,0,7,NA,0,13.68,NA,NA
+2015-07-13,"AC","Modiolus_modiolus","Nucella_ostrina",0,0,331,NA,0,13.68,NA,NA
+2015-07-13,"AC","Mytilus_californianus","Nucella_canaliculata",0,0,7,NA,22.8571428571429,13.68,NA,NA
+2015-07-13,"AC","Mytilus_californianus","Nucella_ostrina",0,0,331,NA,22.8571428571429,13.68,NA,NA
+2015-07-13,"AC","Mytilus_trossulus","Nucella_canaliculata",0,0,7,NA,1104.7619047619,13.68,NA,NA
+2015-07-13,"AC","Mytilus_trossulus","Nucella_ostrina",0.0942028985507246,26,331,57.964687759732,1104.7619047619,13.68,1.47106571885484e-06,0.00162517736559201
+2015-07-13,"AC","Nucella_ostrina","Nucella_canaliculata",0,0,7,NA,499.047619047619,13.68,NA,NA
+2015-07-13,"AC","Nucella_ostrina","Nucella_ostrina",0,0,331,NA,499.047619047619,13.68,NA,NA
+2015-07-13,"AC","Pollicipes_polymerus","Nucella_canaliculata",0,0,7,NA,285.714285714286,13.68,NA,NA
+2015-07-13,"AC","Pollicipes_polymerus","Nucella_ostrina",0,0,331,NA,285.714285714286,13.68,NA,NA
+2015-07-13,"AC","Semibalanus_cariosus","Nucella_canaliculata",0,0,7,NA,26.6666666666667,13.68,NA,NA
+2015-07-13,"AC","Semibalanus_cariosus","Nucella_ostrina",0,0,331,NA,26.6666666666667,13.68,NA,NA
+2015-07-13,"AD","Adula_californiensis","Nucella_canaliculata",0,0,14,NA,0,13.68,NA,NA
+2015-07-13,"AD","Adula_californiensis","Nucella_ostrina",0,0,259,NA,0,13.68,NA,NA
+2015-07-13,"AD","Balanus_glandula","Nucella_canaliculata",0,0,14,NA,20100.5714285714,13.68,NA,NA
+2015-07-13,"AD","Balanus_glandula","Nucella_ostrina",0.0606060606060606,14,259,24.4914883712674,20100.5714285714,13.68,1.23109756819103e-07,0.00247457646049644
+2015-07-13,"AD","Chthamalus_dalli","Nucella_canaliculata",0,0,14,NA,92.9523809523809,13.68,NA,NA
+2015-07-13,"AD","Chthamalus_dalli","Nucella_ostrina",0.00865800865800866,2,259,13.8337633815929,92.9523809523809,13.68,6.73313239415479e-06,0.000625860687304293
+2015-07-13,"AD","Hiatella_arctica","Nucella_canaliculata",0,0,14,NA,0,13.68,NA,NA
+2015-07-13,"AD","Hiatella_arctica","Nucella_ostrina",0,0,259,NA,0,13.68,NA,NA
+2015-07-13,"AD","Limpets","Nucella_canaliculata",0,0,14,NA,1885.71428571429,13.68,NA,NA
+2015-07-13,"AD","Limpets","Nucella_ostrina",0.00865800865800866,2,259,16.172241544063,1885.71428571429,13.68,2.8390425750334e-07,0.000535362314149155
+2015-07-13,"AD","Littorina_sitkana","Nucella_canaliculata",0,0,14,NA,2072.38095238095,13.68,NA,NA
+2015-07-13,"AD","Littorina_sitkana","Nucella_ostrina",0,0,259,NA,2072.38095238095,13.68,NA,NA
+2015-07-13,"AD","Modiolus_modiolus","Nucella_canaliculata",0,0,14,NA,0,13.68,NA,NA
+2015-07-13,"AD","Modiolus_modiolus","Nucella_ostrina",0,0,259,NA,0,13.68,NA,NA
+2015-07-13,"AD","Mytilus_californianus","Nucella_canaliculata",0,0,14,NA,60.952380952381,13.68,NA,NA
+2015-07-13,"AD","Mytilus_californianus","Nucella_ostrina",0,0,259,NA,60.952380952381,13.68,NA,NA
+2015-07-13,"AD","Mytilus_trossulus","Nucella_canaliculata",0.0769230769230769,1,14,43.5172895308059,716.190476190476,13.68,2.46811998491605e-06,0.00176764402729226
+2015-07-13,"AD","Mytilus_trossulus","Nucella_ostrina",0.038961038961039,9,259,61.88208465331,716.190476190476,13.68,8.79097515088085e-07,0.0006296012679488
+2015-07-13,"AD","Nucella_ostrina","Nucella_canaliculata",0,0,14,NA,232.380952380952,13.68,NA,NA
+2015-07-13,"AD","Nucella_ostrina","Nucella_ostrina",0,0,259,NA,232.380952380952,13.68,NA,NA
+2015-07-13,"AD","Pollicipes_polymerus","Nucella_canaliculata",0,0,14,NA,5146.66666666667,13.68,NA,NA
+2015-07-13,"AD","Pollicipes_polymerus","Nucella_ostrina",0.00432900432900433,1,259,9.59477398121108,5146.66666666667,13.68,8.76652004289105e-08,0.000451183564874126
+2015-07-13,"AD","Semibalanus_cariosus","Nucella_canaliculata",0,0,14,NA,41.9047619047619,13.68,NA,NA
+2015-07-13,"AD","Semibalanus_cariosus","Nucella_ostrina",0,0,259,NA,41.9047619047619,13.68,NA,NA
+2015-07-13,"AE","Adula_californiensis","Nucella_canaliculata",0,0,12,NA,0,13.68,NA,NA
+2015-07-13,"AE","Adula_californiensis","Nucella_ostrina",0,0,271,NA,0,13.68,NA,NA
+2015-07-13,"AE","Balanus_glandula","Nucella_canaliculata",0,0,12,NA,1225.71428571429,13.68,NA,NA
+2015-07-13,"AE","Balanus_glandula","Nucella_ostrina",0.0341880341880342,8,271,45.5550221418177,1225.71428571429,13.68,6.12277950339074e-07,0.000750477830558466
+2015-07-13,"AE","Chthamalus_dalli","Nucella_canaliculata",0,0,12,NA,308.571428571428,13.68,NA,NA
+2015-07-13,"AE","Chthamalus_dalli","Nucella_ostrina",0.00854700854700855,2,271,19.1961785233155,308.571428571428,13.68,1.44292463086377e-06,0.000445245314666533
+2015-07-13,"AE","Hiatella_arctica","Nucella_canaliculata",0,0,12,NA,0,13.68,NA,NA
+2015-07-13,"AE","Hiatella_arctica","Nucella_ostrina",0,0,271,NA,0,13.68,NA,NA
+2015-07-13,"AE","Limpets","Nucella_canaliculata",0,0,12,NA,2402.85714285714,13.68,NA,NA
+2015-07-13,"AE","Limpets","Nucella_ostrina",0.00854700854700855,2,271,17.5153244245375,2402.85714285714,13.68,2.03080395691917e-07,0.000487973179362577
+2015-07-13,"AE","Littorina_sitkana","Nucella_canaliculata",0,0,12,NA,2574.28571428571,13.68,NA,NA
+2015-07-13,"AE","Littorina_sitkana","Nucella_ostrina",0.00427350427350427,1,271,15.2248871961419,2574.28571428571,13.68,1.09036853984629e-07,0.000280692015543289
+2015-07-13,"AE","Modiolus_modiolus","Nucella_canaliculata",0,0,12,NA,0,13.68,NA,NA
+2015-07-13,"AE","Modiolus_modiolus","Nucella_ostrina",0,0,271,NA,0,13.68,NA,NA
+2015-07-13,"AE","Mytilus_californianus","Nucella_canaliculata",0,0,12,NA,65.7142857142858,13.68,NA,NA
+2015-07-13,"AE","Mytilus_californianus","Nucella_ostrina",0,0,271,NA,65.7142857142858,13.68,NA,NA
+2015-07-13,"AE","Mytilus_trossulus","Nucella_canaliculata",0,0,12,NA,845.714285714286,13.68,NA,NA
+2015-07-13,"AE","Mytilus_trossulus","Nucella_ostrina",0.102564102564103,24,271,58.2210655002815,845.714285714286,13.68,2.08301102415474e-06,0.001761632180428
+2015-07-13,"AE","Nucella_ostrina","Nucella_canaliculata",0,0,12,NA,317.142857142857,13.68,NA,NA
+2015-07-13,"AE","Nucella_ostrina","Nucella_ostrina",0,0,271,NA,317.142857142857,13.68,NA,NA
+2015-07-13,"AE","Pollicipes_polymerus","Nucella_canaliculata",0,0,12,NA,634.285714285714,13.68,NA,NA
+2015-07-13,"AE","Pollicipes_polymerus","Nucella_ostrina",0,0,271,NA,634.285714285714,13.68,NA,NA
+2015-07-13,"AE","Semibalanus_cariosus","Nucella_canaliculata",0,0,12,NA,88.5714285714286,13.68,NA,NA
+2015-07-13,"AE","Semibalanus_cariosus","Nucella_ostrina",0,0,271,NA,88.5714285714286,13.68,NA,NA
+2015-07-13,"AF","Adula_californiensis","Nucella_canaliculata",0,0,11,NA,0,13.68,NA,NA
+2015-07-13,"AF","Adula_californiensis","Nucella_ostrina",0,0,268,NA,0,13.68,NA,NA
+2015-07-13,"AF","Balanus_glandula","Nucella_canaliculata",0,0,11,NA,19146.6666666667,13.68,NA,NA
+2015-07-13,"AF","Balanus_glandula","Nucella_ostrina",0.0791666666666667,19,268,10.9365080500197,19146.6666666667,13.68,3.78068510050036e-07,0.00723875173909135
+2015-07-13,"AF","Chthamalus_dalli","Nucella_canaliculata",0,0,11,NA,1268.57142857143,13.68,NA,NA
+2015-07-13,"AF","Chthamalus_dalli","Nucella_ostrina",0.00416666666666667,1,268,11.0681462300372,1268.57142857143,13.68,2.96755614379292e-07,0.000376455693669731
+2015-07-13,"AF","Hiatella_arctica","Nucella_canaliculata",0,0,11,NA,0,13.68,NA,NA
+2015-07-13,"AF","Hiatella_arctica","Nucella_ostrina",0,0,268,NA,0,13.68,NA,NA
+2015-07-13,"AF","Limpets","Nucella_canaliculata",0,0,11,NA,2640,13.68,NA,NA
+2015-07-13,"AF","Limpets","Nucella_ostrina",0,0,268,NA,2640,13.68,NA,NA
+2015-07-13,"AF","Littorina_sitkana","Nucella_canaliculata",0,0,11,NA,6030.47619047619,13.68,NA,NA
+2015-07-13,"AF","Littorina_sitkana","Nucella_ostrina",0.00416666666666667,1,268,15.2248871961419,6030.47619047619,13.68,4.53819410790338e-08,0.000273674715154707
+2015-07-13,"AF","Modiolus_modiolus","Nucella_canaliculata",0,0,11,NA,0,13.68,NA,NA
+2015-07-13,"AF","Modiolus_modiolus","Nucella_ostrina",0,0,268,NA,0,13.68,NA,NA
+2015-07-13,"AF","Mytilus_californianus","Nucella_canaliculata",0,0,11,NA,0,13.68,NA,NA
+2015-07-13,"AF","Mytilus_californianus","Nucella_ostrina",0,0,268,NA,0,13.68,NA,NA
+2015-07-13,"AF","Mytilus_trossulus","Nucella_canaliculata",0.1,1,11,52.7574460874283,224.761904761905,13.68,8.43322198538546e-06,0.00189546703671521
+2015-07-13,"AF","Mytilus_trossulus","Nucella_ostrina",0.0291666666666667,7,268,49.4274069956868,224.761904761905,13.68,2.62540475092829e-06,0.000590090972589597
+2015-07-13,"AF","Nucella_ostrina","Nucella_canaliculata",0,0,11,NA,441.904761904762,13.68,NA,NA
+2015-07-13,"AF","Nucella_ostrina","Nucella_ostrina",0,0,268,NA,441.904761904762,13.68,NA,NA
+2015-07-13,"AF","Pollicipes_polymerus","Nucella_canaliculata",0,0,11,NA,76.1904761904762,13.68,NA,NA
+2015-07-13,"AF","Pollicipes_polymerus","Nucella_ostrina",0,0,268,NA,76.1904761904762,13.68,NA,NA
+2015-07-13,"AF","Semibalanus_cariosus","Nucella_canaliculata",0,0,11,NA,3.8095238095238,13.68,NA,NA
+2015-07-13,"AF","Semibalanus_cariosus","Nucella_ostrina",0,0,268,NA,3.8095238095238,13.68,NA,NA
+2015-07-13,"AG","Adula_californiensis","Nucella_canaliculata",0,0,3,NA,0,13.68,NA,NA
+2015-07-13,"AG","Adula_californiensis","Nucella_ostrina",0,0,241,NA,0,13.68,NA,NA
+2015-07-13,"AG","Balanus_glandula","Nucella_canaliculata",0,0,3,NA,0,13.68,NA,NA
+2015-07-13,"AG","Balanus_glandula","Nucella_ostrina",0.0287081339712919,6,241,34.5499531290625,0,13.68,Inf,0.000830916726979388
+2015-07-13,"AG","Chthamalus_dalli","Nucella_canaliculata",0,0,3,NA,0,13.68,NA,NA
+2015-07-13,"AG","Chthamalus_dalli","Nucella_ostrina",0.0143540669856459,3,241,11.2852244316167,0,13.68,Inf,0.00127193456121542
+2015-07-13,"AG","Hiatella_arctica","Nucella_canaliculata",0,0,3,NA,0,13.68,NA,NA
+2015-07-13,"AG","Hiatella_arctica","Nucella_ostrina",0,0,241,NA,0,13.68,NA,NA
+2015-07-13,"AG","Limpets","Nucella_canaliculata",0,0,3,NA,0,13.68,NA,NA
+2015-07-13,"AG","Limpets","Nucella_ostrina",0.0143540669856459,3,241,13.7342832191322,0,13.68,Inf,0.00104512676465346
+2015-07-13,"AG","Littorina_sitkana","Nucella_canaliculata",0,0,3,NA,0,13.68,NA,NA
+2015-07-13,"AG","Littorina_sitkana","Nucella_ostrina",0.00956937799043062,2,241,27.8366259981293,0,13.68,Inf,0.000343769319998542
+2015-07-13,"AG","Modiolus_modiolus","Nucella_canaliculata",0,0,3,NA,0,13.68,NA,NA
+2015-07-13,"AG","Modiolus_modiolus","Nucella_ostrina",0,0,241,NA,0,13.68,NA,NA
+2015-07-13,"AG","Mytilus_californianus","Nucella_canaliculata",0,0,3,NA,0,13.68,NA,NA
+2015-07-13,"AG","Mytilus_californianus","Nucella_ostrina",0,0,241,NA,0,13.68,NA,NA
+2015-07-13,"AG","Mytilus_trossulus","Nucella_canaliculata",0,0,3,NA,0,13.68,NA,NA
+2015-07-13,"AG","Mytilus_trossulus","Nucella_ostrina",0.0861244019138756,18,241,58.3924587505046,0,13.68,Inf,0.00147492336779073
+2015-07-13,"AG","Nucella_ostrina","Nucella_canaliculata",0,0,3,NA,0,13.68,NA,NA
+2015-07-13,"AG","Nucella_ostrina","Nucella_ostrina",0,0,241,NA,0,13.68,NA,NA
+2015-07-13,"AG","Pollicipes_polymerus","Nucella_canaliculata",0,0,3,NA,0,13.68,NA,NA
+2015-07-13,"AG","Pollicipes_polymerus","Nucella_ostrina",0,0,241,NA,0,13.68,NA,NA
+2015-07-13,"AG","Semibalanus_cariosus","Nucella_canaliculata",0,0,3,NA,0,13.68,NA,NA
+2015-07-13,"AG","Semibalanus_cariosus","Nucella_ostrina",0,0,241,NA,0,13.68,NA,NA
+2015-07-13,"B","Adula_californiensis","Nucella_canaliculata",0,0,147,NA,0,13.68,NA,NA
+2015-07-13,"B","Adula_californiensis","Nucella_ostrina",0,0,98,NA,0,13.68,NA,NA
+2015-07-13,"B","Balanus_glandula","Nucella_canaliculata",0.0232558139534884,3,147,37.2137474476563,1718.09523809524,13.68,3.63731492237581e-07,0.000624925344758662
+2015-07-13,"B","Balanus_glandula","Nucella_ostrina",0.0253164556962025,2,98,14.6274194202163,1718.09523809524,13.68,1.00736754753136e-06,0.0017307533864253
+2015-07-13,"B","Chthamalus_dalli","Nucella_canaliculata",0,0,147,NA,72.3809523809522,13.68,NA,NA
+2015-07-13,"B","Chthamalus_dalli","Nucella_ostrina",0.0253164556962025,2,98,24.723625207952,72.3809523809522,13.68,1.41470686105568e-05,0.00102397829943078
+2015-07-13,"B","Hiatella_arctica","Nucella_canaliculata",0,0,147,NA,0,13.68,NA,NA
+2015-07-13,"B","Hiatella_arctica","Nucella_ostrina",0,0,98,NA,0,13.68,NA,NA
+2015-07-13,"B","Limpets","Nucella_canaliculata",0,0,147,NA,1577.14285714286,13.68,NA,NA
+2015-07-13,"B","Limpets","Nucella_ostrina",0.0632911392405063,5,98,36.1818251568135,1577.14285714286,13.68,1.10912733550906e-06,0.00174925225486
+2015-07-13,"B","Littorina_sitkana","Nucella_canaliculata",0,0,147,NA,567.619047619048,13.68,NA,NA
+2015-07-13,"B","Littorina_sitkana","Nucella_ostrina",0,0,98,NA,567.619047619048,13.68,NA,NA
+2015-07-13,"B","Modiolus_modiolus","Nucella_canaliculata",0,0,147,NA,0,13.68,NA,NA
+2015-07-13,"B","Modiolus_modiolus","Nucella_ostrina",0,0,98,NA,0,13.68,NA,NA
+2015-07-13,"B","Mytilus_californianus","Nucella_canaliculata",0.00775193798449612,1,147,124.843605769262,41.9047619047619,13.68,1.48176935483085e-06,6.20931920119594e-05
+2015-07-13,"B","Mytilus_californianus","Nucella_ostrina",0,0,98,NA,41.9047619047619,13.68,NA,NA
+2015-07-13,"B","Mytilus_trossulus","Nucella_canaliculata",0.0310077519379845,4,147,40.3935664605807,160,13.68,4.79775535050928e-06,0.000767640856081485
+2015-07-13,"B","Mytilus_trossulus","Nucella_ostrina",0.10126582278481,8,98,38.0771575995263,160,13.68,1.66218129793632e-05,0.00265949007669811
+2015-07-13,"B","Nucella_ostrina","Nucella_canaliculata",0,0,147,NA,80,13.68,NA,NA
+2015-07-13,"B","Nucella_ostrina","Nucella_ostrina",0,0,98,NA,80,13.68,NA,NA
+2015-07-13,"B","Pollicipes_polymerus","Nucella_canaliculata",0.0697674418604651,9,147,13.1078335092535,9935.23809523808,13.68,5.35727084466947e-07,0.00532257613824685
+2015-07-13,"B","Pollicipes_polymerus","Nucella_ostrina",0.0253164556962025,2,98,9.28699324900111,9935.23809523808,13.68,2.74378132104338e-07,0.00272601207058329
+2015-07-13,"B","Semibalanus_cariosus","Nucella_canaliculata",0.00775193798449612,1,147,29.486519360649,11.4285714285714,13.68,2.30035483451677e-05,0.000262897695373345
+2015-07-13,"B","Semibalanus_cariosus","Nucella_ostrina",0,0,98,NA,11.4285714285714,13.68,NA,NA
+2015-07-13,"BB","Adula_californiensis","Nucella_canaliculata",0,0,12,NA,0,13.68,NA,NA
+2015-07-13,"BB","Adula_californiensis","Nucella_ostrina",0,0,199,NA,0,13.68,NA,NA
+2015-07-13,"BB","Balanus_glandula","Nucella_canaliculata",0,0,12,NA,1165.71428571429,13.68,NA,NA
+2015-07-13,"BB","Balanus_glandula","Nucella_ostrina",0.0454545454545455,8,199,9.97979693420229,1165.71428571429,13.68,3.90718069037941e-06,0.00455465634764229
+2015-07-13,"BB","Chthamalus_dalli","Nucella_canaliculata",0,0,12,NA,7.61904761904763,13.68,NA,NA
+2015-07-13,"BB","Chthamalus_dalli","Nucella_ostrina",0.00568181818181818,1,199,12.0912229007269,7.61904761904763,13.68,6.16760308271881e-05,0.000469912615826196
+2015-07-13,"BB","Hiatella_arctica","Nucella_canaliculata",0,0,12,NA,0,13.68,NA,NA
+2015-07-13,"BB","Hiatella_arctica","Nucella_ostrina",0,0,199,NA,0,13.68,NA,NA
+2015-07-13,"BB","Limpets","Nucella_canaliculata",0,0,12,NA,1066.66666666667,13.68,NA,NA
+2015-07-13,"BB","Limpets","Nucella_ostrina",0.0170454545454545,3,199,5.99364296441243,1066.66666666667,13.68,2.66617710318189e-06,0.00284392224339401
+2015-07-13,"BB","Littorina_sitkana","Nucella_canaliculata",0,0,12,NA,3801.90476190476,13.68,NA,NA
+2015-07-13,"BB","Littorina_sitkana","Nucella_ostrina",0.0397727272727273,7,199,26.1815932420079,3801.90476190476,13.68,3.995655779717e-07,0.00151911027358384
+2015-07-13,"BB","Modiolus_modiolus","Nucella_canaliculata",0,0,12,NA,0,13.68,NA,NA
+2015-07-13,"BB","Modiolus_modiolus","Nucella_ostrina",0,0,199,NA,0,13.68,NA,NA
+2015-07-13,"BB","Mytilus_californianus","Nucella_canaliculata",0,0,12,NA,19.0476190476191,13.68,NA,NA
+2015-07-13,"BB","Mytilus_californianus","Nucella_ostrina",0,0,199,NA,19.0476190476191,13.68,NA,NA
+2015-07-13,"BB","Mytilus_trossulus","Nucella_canaliculata",0,0,12,NA,106.666666666667,13.68,NA,NA
+2015-07-13,"BB","Mytilus_trossulus","Nucella_ostrina",0.0170454545454545,3,199,49.749603161664,106.666666666667,13.68,3.21210876485494e-06,0.000342624934917861
+2015-07-13,"BB","Nucella_ostrina","Nucella_canaliculata",0,0,12,NA,34.2857142857143,13.68,NA,NA
+2015-07-13,"BB","Nucella_ostrina","Nucella_ostrina",0,0,199,NA,34.2857142857143,13.68,NA,NA
+2015-07-13,"BB","Pollicipes_polymerus","Nucella_canaliculata",0,0,12,NA,228.571428571428,13.68,NA,NA
+2015-07-13,"BB","Pollicipes_polymerus","Nucella_ostrina",0.00568181818181818,1,199,19.4762977032302,228.571428571428,13.68,1.27631826768246e-06,0.00029172988975599
+2015-07-13,"BB","Semibalanus_cariosus","Nucella_canaliculata",0,0,12,NA,7.6190476190476,13.68,NA,NA
+2015-07-13,"BB","Semibalanus_cariosus","Nucella_ostrina",0,0,199,NA,7.6190476190476,13.68,NA,NA
+2015-07-13,"BC","Adula_californiensis","Nucella_canaliculata",0,0,6,NA,0,13.68,NA,NA
+2015-07-13,"BC","Adula_californiensis","Nucella_ostrina",0,0,368,NA,0,13.68,NA,NA
+2015-07-13,"BC","Balanus_glandula","Nucella_canaliculata",0,0,6,NA,5904.76190476192,13.68,NA,NA
+2015-07-13,"BC","Balanus_glandula","Nucella_ostrina",0.0511182108626198,16,368,22.1950542188636,5904.76190476192,13.68,3.90047092041278e-07,0.00230313521014851
+2015-07-13,"BC","Chthamalus_dalli","Nucella_canaliculata",0,0,6,NA,1104.7619047619,13.68,NA,NA
+2015-07-13,"BC","Chthamalus_dalli","Nucella_ostrina",0.012779552715655,4,368,18.3776590198105,1104.7619047619,13.68,6.29443530667101e-07,0.000695385233879844
+2015-07-13,"BC","Hiatella_arctica","Nucella_canaliculata",0,0,6,NA,0,13.68,NA,NA
+2015-07-13,"BC","Hiatella_arctica","Nucella_ostrina",0,0,368,NA,0,13.68,NA,NA
+2015-07-13,"BC","Limpets","Nucella_canaliculata",0,0,6,NA,2845.71428571429,13.68,NA,NA
+2015-07-13,"BC","Limpets","Nucella_ostrina",0.00638977635782748,2,368,11.0905863856711,2845.71428571429,13.68,2.02460290241733e-07,0.00057614414023076
+2015-07-13,"BC","Littorina_sitkana","Nucella_canaliculata",0,0,6,NA,2727.61904761905,13.68,NA,NA
+2015-07-13,"BC","Littorina_sitkana","Nucella_ostrina",0.00638977635782748,2,368,27.6380347789468,2727.61904761905,13.68,8.47607487646946e-08,0.000231195032821034
+2015-07-13,"BC","Modiolus_modiolus","Nucella_canaliculata",0,0,6,NA,0,13.68,NA,NA
+2015-07-13,"BC","Modiolus_modiolus","Nucella_ostrina",0,0,368,NA,0,13.68,NA,NA
+2015-07-13,"BC","Mytilus_californianus","Nucella_canaliculata",0,0,6,NA,49.5238095238095,13.68,NA,NA
+2015-07-13,"BC","Mytilus_californianus","Nucella_ostrina",0.00319488817891374,1,368,120.318279180667,49.5238095238095,13.68,5.36179253812906e-07,2.65536392364487e-05
+2015-07-13,"BC","Mytilus_trossulus","Nucella_canaliculata",0,0,6,NA,281.904761904762,13.68,NA,NA
+2015-07-13,"BC","Mytilus_trossulus","Nucella_ostrina",0.0926517571884984,29,368,58.7743627571435,281.904761904762,13.68,5.59195051118882e-06,0.0015763974774399
+2015-07-13,"BC","Nucella_ostrina","Nucella_canaliculata",0,0,6,NA,114.285714285714,13.68,NA,NA
+2015-07-13,"BC","Nucella_ostrina","Nucella_ostrina",0,0,368,NA,114.285714285714,13.68,NA,NA
+2015-07-13,"BC","Pollicipes_polymerus","Nucella_canaliculata",0,0,6,NA,213.333333333333,13.68,NA,NA
+2015-07-13,"BC","Pollicipes_polymerus","Nucella_ostrina",0.00319488817891374,1,368,13.9168865797374,213.333333333333,13.68,1.07610551058617e-06,0.000229569175591716
+2015-07-13,"BC","Semibalanus_cariosus","Nucella_canaliculata",0,0,6,NA,11.4285714285714,13.68,NA,NA
+2015-07-13,"BC","Semibalanus_cariosus","Nucella_ostrina",0,0,368,NA,11.4285714285714,13.68,NA,NA
+2015-07-13,"BD","Adula_californiensis","Nucella_canaliculata",0,0,40,NA,0,13.68,NA,NA
+2015-07-13,"BD","Adula_californiensis","Nucella_ostrina",0,0,273,NA,0,13.68,NA,NA
+2015-07-13,"BD","Balanus_glandula","Nucella_canaliculata",0,0,40,NA,3139.04761904762,13.68,NA,NA
+2015-07-13,"BD","Balanus_glandula","Nucella_ostrina",0.0129310344827586,3,273,38.2192632011904,3139.04761904762,13.68,1.07783691936768e-07,0.000338338141546273
+2015-07-13,"BD","Chthamalus_dalli","Nucella_canaliculata",0,0,40,NA,0,13.68,NA,NA
+2015-07-13,"BD","Chthamalus_dalli","Nucella_ostrina",0,0,273,NA,0,13.68,NA,NA
+2015-07-13,"BD","Hiatella_arctica","Nucella_canaliculata",0,0,40,NA,0,13.68,NA,NA
+2015-07-13,"BD","Hiatella_arctica","Nucella_ostrina",0,0,273,NA,0,13.68,NA,NA
+2015-07-13,"BD","Limpets","Nucella_canaliculata",0,0,40,NA,3257.14285714286,13.68,NA,NA
+2015-07-13,"BD","Limpets","Nucella_ostrina",0.0603448275862069,14,273,12.9305907124058,3257.14285714286,13.68,1.43279770910823e-06,0.00466682682395253
+2015-07-13,"BD","Littorina_sitkana","Nucella_canaliculata",0,0,40,NA,2297.14285714286,13.68,NA,NA
+2015-07-13,"BD","Littorina_sitkana","Nucella_ostrina",0.0431034482758621,10,273,22.468891634283,2297.14285714286,13.68,8.35107455742471e-07,0.00191836112690556
+2015-07-13,"BD","Modiolus_modiolus","Nucella_canaliculata",0,0,40,NA,0,13.68,NA,NA
+2015-07-13,"BD","Modiolus_modiolus","Nucella_ostrina",0,0,273,NA,0,13.68,NA,NA
+2015-07-13,"BD","Mytilus_californianus","Nucella_canaliculata",0,0,40,NA,91.4285714285716,13.68,NA,NA
+2015-07-13,"BD","Mytilus_californianus","Nucella_ostrina",0,0,273,NA,91.4285714285716,13.68,NA,NA
+2015-07-13,"BD","Mytilus_trossulus","Nucella_canaliculata",0.0810810810810811,3,40,82.3481796705458,4346.66666666667,13.68,2.26521375733257e-07,0.000984612913187225
+2015-07-13,"BD","Mytilus_trossulus","Nucella_ostrina",0.0517241379310345,12,273,74.4978084073816,4346.66666666667,13.68,1.59732551044476e-07,0.000694304155206657
+2015-07-13,"BD","Nucella_ostrina","Nucella_canaliculata",0,0,40,NA,95.2380952380952,13.68,NA,NA
+2015-07-13,"BD","Nucella_ostrina","Nucella_ostrina",0,0,273,NA,95.2380952380952,13.68,NA,NA
+2015-07-13,"BD","Pollicipes_polymerus","Nucella_canaliculata",0,0,40,NA,17881.9047619048,13.68,NA,NA
+2015-07-13,"BD","Pollicipes_polymerus","Nucella_ostrina",0.00862068965517241,2,273,10.0860313410466,17881.9047619048,13.68,4.77978013437928e-08,0.000854715731458147
+2015-07-13,"BD","Semibalanus_cariosus","Nucella_canaliculata",0,0,40,NA,87.6190476190475,13.68,NA,NA
+2015-07-13,"BD","Semibalanus_cariosus","Nucella_ostrina",0,0,273,NA,87.6190476190475,13.68,NA,NA
+2015-07-13,"BE","Adula_californiensis","Nucella_canaliculata",0,0,2,NA,0,13.68,NA,NA
+2015-07-13,"BE","Adula_californiensis","Nucella_ostrina",0,0,381,NA,0,13.68,NA,NA
+2015-07-13,"BE","Balanus_glandula","Nucella_canaliculata",0,0,2,NA,1542.85714285714,13.68,NA,NA
+2015-07-13,"BE","Balanus_glandula","Nucella_ostrina",0.0848484848484849,28,381,36.9635736572208,1542.85714285714,13.68,1.48779955200513e-06,0.00229546216595077
+2015-07-13,"BE","Chthamalus_dalli","Nucella_canaliculata",0,0,2,NA,422.857142857143,13.68,NA,NA
+2015-07-13,"BE","Chthamalus_dalli","Nucella_ostrina",0.00909090909090909,3,381,17.6303351538218,422.857142857143,13.68,1.21941933101091e-06,0.000515640174256043
+2015-07-13,"BE","Hiatella_arctica","Nucella_canaliculata",0,0,2,NA,0,13.68,NA,NA
+2015-07-13,"BE","Hiatella_arctica","Nucella_ostrina",0,0,381,NA,0,13.68,NA,NA
+2015-07-13,"BE","Limpets","Nucella_canaliculata",0,0,2,NA,1805.71428571429,13.68,NA,NA
+2015-07-13,"BE","Limpets","Nucella_ostrina",0.00606060606060606,2,381,7.57397759451547,1805.71428571429,13.68,4.43142094252771e-07,0.000800188010193576
+2015-07-13,"BE","Littorina_sitkana","Nucella_canaliculata",0,0,2,NA,3748.57142857143,13.68,NA,NA
+2015-07-13,"BE","Littorina_sitkana","Nucella_ostrina",0.00606060606060606,2,381,23.9624343386954,3748.57142857143,13.68,6.74713390367374e-08,0.00025292113376057
+2015-07-13,"BE","Modiolus_modiolus","Nucella_canaliculata",0,0,2,NA,0,13.68,NA,NA
+2015-07-13,"BE","Modiolus_modiolus","Nucella_ostrina",0,0,381,NA,0,13.68,NA,NA
+2015-07-13,"BE","Mytilus_californianus","Nucella_canaliculata",0,0,2,NA,0,13.68,NA,NA
+2015-07-13,"BE","Mytilus_californianus","Nucella_ostrina",0,0,381,NA,0,13.68,NA,NA
+2015-07-13,"BE","Mytilus_trossulus","Nucella_canaliculata",0,0,2,NA,251.428571428571,13.68,NA,NA
+2015-07-13,"BE","Mytilus_trossulus","Nucella_ostrina",0.0484848484848485,16,381,53.3359251133089,251.428571428571,13.68,3.61552677965306e-06,0.000909046733169911
+2015-07-13,"BE","Nucella_ostrina","Nucella_canaliculata",0,0,2,NA,80,13.68,NA,NA
+2015-07-13,"BE","Nucella_ostrina","Nucella_ostrina",0,0,381,NA,80,13.68,NA,NA
+2015-07-13,"BE","Pollicipes_polymerus","Nucella_canaliculata",0,0,2,NA,251.428571428571,13.68,NA,NA
+2015-07-13,"BE","Pollicipes_polymerus","Nucella_ostrina",0,0,381,NA,251.428571428571,13.68,NA,NA
+2015-07-13,"BE","Semibalanus_cariosus","Nucella_canaliculata",0,0,2,NA,11.4285714285714,13.68,NA,NA
+2015-07-13,"BE","Semibalanus_cariosus","Nucella_ostrina",0,0,381,NA,11.4285714285714,13.68,NA,NA
+2015-07-13,"BF","Adula_californiensis","Nucella_canaliculata",0,0,5,NA,0,13.68,NA,NA
+2015-07-13,"BF","Adula_californiensis","Nucella_ostrina",0,0,244,NA,0,13.68,NA,NA
+2015-07-13,"BF","Balanus_glandula","Nucella_canaliculata",0,0,5,NA,0,13.68,NA,NA
+2015-07-13,"BF","Balanus_glandula","Nucella_ostrina",0.0241545893719807,5,244,42.4007385267143,0,13.68,Inf,0.000569673788978044
+2015-07-13,"BF","Chthamalus_dalli","Nucella_canaliculata",0,0,5,NA,0,13.68,NA,NA
+2015-07-13,"BF","Chthamalus_dalli","Nucella_ostrina",0.00483091787439614,1,244,10.2265486119034,0,13.68,Inf,0.000472389860717336
+2015-07-13,"BF","Hiatella_arctica","Nucella_canaliculata",0,0,5,NA,0,13.68,NA,NA
+2015-07-13,"BF","Hiatella_arctica","Nucella_ostrina",0,0,244,NA,0,13.68,NA,NA
+2015-07-13,"BF","Limpets","Nucella_canaliculata",0,0,5,NA,0,13.68,NA,NA
+2015-07-13,"BF","Limpets","Nucella_ostrina",0.00483091787439614,1,244,6.99044913680942,0,13.68,Inf,0.000691074032562243
+2015-07-13,"BF","Littorina_sitkana","Nucella_canaliculata",0,0,5,NA,0,13.68,NA,NA
+2015-07-13,"BF","Littorina_sitkana","Nucella_ostrina",0.0289855072463768,6,244,25.2348275361406,0,13.68,Inf,0.00114863108158218
+2015-07-13,"BF","Modiolus_modiolus","Nucella_canaliculata",0,0,5,NA,0,13.68,NA,NA
+2015-07-13,"BF","Modiolus_modiolus","Nucella_ostrina",0,0,244,NA,0,13.68,NA,NA
+2015-07-13,"BF","Mytilus_californianus","Nucella_canaliculata",0,0,5,NA,0,13.68,NA,NA
+2015-07-13,"BF","Mytilus_californianus","Nucella_ostrina",0,0,244,NA,0,13.68,NA,NA
+2015-07-13,"BF","Mytilus_trossulus","Nucella_canaliculata",0,0,5,NA,0,13.68,NA,NA
+2015-07-13,"BF","Mytilus_trossulus","Nucella_ostrina",0.106280193236715,22,244,54.9105530391422,0,13.68,Inf,0.00193551489384845
+2015-07-13,"BF","Nucella_ostrina","Nucella_canaliculata",0,0,5,NA,0,13.68,NA,NA
+2015-07-13,"BF","Nucella_ostrina","Nucella_ostrina",0,0,244,NA,0,13.68,NA,NA
+2015-07-13,"BF","Pollicipes_polymerus","Nucella_canaliculata",0.25,1,5,11.5844437930269,0,13.68,Inf,0.0215806649388282
+2015-07-13,"BF","Pollicipes_polymerus","Nucella_ostrina",0.00966183574879227,2,244,5.39946250120876,0,13.68,Inf,0.00178940695423467
+2015-07-13,"BF","Semibalanus_cariosus","Nucella_canaliculata",0,0,5,NA,0,13.68,NA,NA
+2015-07-13,"BF","Semibalanus_cariosus","Nucella_ostrina",0,0,244,NA,0,13.68,NA,NA
+2015-07-13,"C","Adula_californiensis","Nucella_canaliculata",0,0,51,NA,0,13.68,NA,NA
+2015-07-13,"C","Adula_californiensis","Nucella_ostrina",0,0,176,NA,0,13.68,NA,NA
+2015-07-13,"C","Balanus_glandula","Nucella_canaliculata",0,0,51,NA,1047.61904761905,13.68,NA,NA
+2015-07-13,"C","Balanus_glandula","Nucella_ostrina",0.00613496932515337,1,176,8.91857046351219,1047.61904761905,13.68,6.56619478094562e-07,0.000687887072289541
+2015-07-13,"C","Chthamalus_dalli","Nucella_canaliculata",0,0,51,NA,53.3333333333334,13.68,NA,NA
+2015-07-13,"C","Chthamalus_dalli","Nucella_ostrina",0.00613496932515337,1,176,13.3659327846145,53.3333333333334,13.68,8.60625866524159e-06,0.000459000462146219
+2015-07-13,"C","Hiatella_arctica","Nucella_canaliculata",0,0,51,NA,0,13.68,NA,NA
+2015-07-13,"C","Hiatella_arctica","Nucella_ostrina",0,0,176,NA,0,13.68,NA,NA
+2015-07-13,"C","Limpets","Nucella_canaliculata",0,0,51,NA,2361.90476190476,13.68,NA,NA
+2015-07-13,"C","Limpets","Nucella_ostrina",0.049079754601227,8,176,20.3479056135073,2361.90476190476,13.68,1.02122229214634e-06,0.00241202979478374
+2015-07-13,"C","Littorina_sitkana","Nucella_canaliculata",0,0,51,NA,613.333333333333,13.68,NA,NA
+2015-07-13,"C","Littorina_sitkana","Nucella_ostrina",0,0,176,NA,613.333333333333,13.68,NA,NA
+2015-07-13,"C","Modiolus_modiolus","Nucella_canaliculata",0,0,51,NA,0,13.68,NA,NA
+2015-07-13,"C","Modiolus_modiolus","Nucella_ostrina",0,0,176,NA,0,13.68,NA,NA
+2015-07-13,"C","Mytilus_californianus","Nucella_canaliculata",0,0,51,NA,30.4761904761905,13.68,NA,NA
+2015-07-13,"C","Mytilus_californianus","Nucella_ostrina",0,0,176,NA,30.4761904761905,13.68,NA,NA
+2015-07-13,"C","Mytilus_trossulus","Nucella_canaliculata",0,0,51,NA,87.6190476190477,13.68,NA,NA
+2015-07-13,"C","Mytilus_trossulus","Nucella_ostrina",0,0,176,NA,87.6190476190477,13.68,NA,NA
+2015-07-13,"C","Nucella_ostrina","Nucella_canaliculata",0,0,51,NA,140.952380952381,13.68,NA,NA
+2015-07-13,"C","Nucella_ostrina","Nucella_ostrina",0,0,176,NA,140.952380952381,13.68,NA,NA
+2015-07-13,"C","Pollicipes_polymerus","Nucella_canaliculata",0.0408163265306122,2,51,12.5528436352384,9577.14285714286,13.68,3.39512548798243e-07,0.00325156018163346
+2015-07-13,"C","Pollicipes_polymerus","Nucella_ostrina",0.0184049079754601,3,176,6.35542237716424,9577.14285714286,13.68,3.02380141503913e-07,0.00289593781234605
+2015-07-13,"C","Semibalanus_cariosus","Nucella_canaliculata",0,0,51,NA,0,13.68,NA,NA
+2015-07-13,"C","Semibalanus_cariosus","Nucella_ostrina",0,0,176,NA,0,13.68,NA,NA
+2015-07-13,"D","Adula_californiensis","Nucella_canaliculata",0,0,4,NA,0,13.68,NA,NA
+2015-07-13,"D","Adula_californiensis","Nucella_ostrina",0,0,318,NA,0,13.68,NA,NA
+2015-07-13,"D","Balanus_glandula","Nucella_canaliculata",0,0,4,NA,1931.42857142857,13.68,NA,NA
+2015-07-13,"D","Balanus_glandula","Nucella_ostrina",0.106060606060606,28,318,26.3309453496115,1931.42857142857,13.68,2.0854942712141e-06,0.00402798322097352
+2015-07-13,"D","Chthamalus_dalli","Nucella_canaliculata",0,0,4,NA,977.142857142858,13.68,NA,NA
+2015-07-13,"D","Chthamalus_dalli","Nucella_ostrina",0.0189393939393939,5,318,18.4692576017978,977.142857142858,13.68,1.04944232822457e-06,0.00102545507500801
+2015-07-13,"D","Hiatella_arctica","Nucella_canaliculata",0,0,4,NA,0,13.68,NA,NA
+2015-07-13,"D","Hiatella_arctica","Nucella_ostrina",0,0,318,NA,0,13.68,NA,NA
+2015-07-13,"D","Limpets","Nucella_canaliculata",0,0,4,NA,2960,13.68,NA,NA
+2015-07-13,"D","Limpets","Nucella_ostrina",0,0,318,NA,2960,13.68,NA,NA
+2015-07-13,"D","Littorina_sitkana","Nucella_canaliculata",0,0,4,NA,2474.28571428571,13.68,NA,NA
+2015-07-13,"D","Littorina_sitkana","Nucella_ostrina",0,0,318,NA,2474.28571428571,13.68,NA,NA
+2015-07-13,"D","Modiolus_modiolus","Nucella_canaliculata",0,0,4,NA,0,13.68,NA,NA
+2015-07-13,"D","Modiolus_modiolus","Nucella_ostrina",0,0,318,NA,0,13.68,NA,NA
+2015-07-13,"D","Mytilus_californianus","Nucella_canaliculata",0,0,4,NA,137.142857142857,13.68,NA,NA
+2015-07-13,"D","Mytilus_californianus","Nucella_ostrina",0,0,318,NA,137.142857142857,13.68,NA,NA
+2015-07-13,"D","Mytilus_trossulus","Nucella_canaliculata",0,0,4,NA,160,13.68,NA,NA
+2015-07-13,"D","Mytilus_trossulus","Nucella_ostrina",0.0795454545454545,21,318,49.1675627503479,160,13.68,1.01115260366566e-05,0.00161784416586506
+2015-07-13,"D","Nucella_ostrina","Nucella_canaliculata",0,0,4,NA,205.714285714285,13.68,NA,NA
+2015-07-13,"D","Nucella_ostrina","Nucella_ostrina",0,0,318,NA,205.714285714285,13.68,NA,NA
+2015-07-13,"D","Pollicipes_polymerus","Nucella_canaliculata",0,0,4,NA,142.857142857143,13.68,NA,NA
+2015-07-13,"D","Pollicipes_polymerus","Nucella_ostrina",0,0,318,NA,142.857142857143,13.68,NA,NA
+2015-07-13,"D","Semibalanus_cariosus","Nucella_canaliculata",0,0,4,NA,17.1428571428571,13.68,NA,NA
+2015-07-13,"D","Semibalanus_cariosus","Nucella_ostrina",0,0,318,NA,17.1428571428571,13.68,NA,NA
+2015-07-13,"E","Adula_californiensis","Nucella_canaliculata",0,0,24,NA,0,13.68,NA,NA
+2015-07-13,"E","Adula_californiensis","Nucella_ostrina",0,0,158,NA,0,13.68,NA,NA
+2015-07-13,"E","Balanus_glandula","Nucella_canaliculata",0,0,24,NA,308.571428571429,13.68,NA,NA
+2015-07-13,"E","Balanus_glandula","Nucella_ostrina",0.00763358778625954,1,158,41.0758764939656,308.571428571429,13.68,6.02262959393855e-07,0.000185841141755818
+2015-07-13,"E","Chthamalus_dalli","Nucella_canaliculata",0,0,24,NA,102.857142857143,13.68,NA,NA
+2015-07-13,"E","Chthamalus_dalli","Nucella_ostrina",0,0,158,NA,102.857142857143,13.68,NA,NA
+2015-07-13,"E","Hiatella_arctica","Nucella_canaliculata",0,0,24,NA,0,13.68,NA,NA
+2015-07-13,"E","Hiatella_arctica","Nucella_ostrina",0,0,158,NA,0,13.68,NA,NA
+2015-07-13,"E","Limpets","Nucella_canaliculata",0,0,24,NA,737.142857142856,13.68,NA,NA
+2015-07-13,"E","Limpets","Nucella_ostrina",0.0381679389312977,5,158,41.2202987240783,737.142857142856,13.68,1.25613383044843e-06,0.000925950080730552
+2015-07-13,"E","Littorina_sitkana","Nucella_canaliculata",0,0,24,NA,1034.28571428571,13.68,NA,NA
+2015-07-13,"E","Littorina_sitkana","Nucella_ostrina",0.0305343511450382,4,158,24.2210960062447,1034.28571428571,13.68,1.21886155365057e-06,0.00126065109263287
+2015-07-13,"E","Modiolus_modiolus","Nucella_canaliculata",0,0,24,NA,0,13.68,NA,NA
+2015-07-13,"E","Modiolus_modiolus","Nucella_ostrina",0,0,158,NA,0,13.68,NA,NA
+2015-07-13,"E","Mytilus_californianus","Nucella_canaliculata",0,0,24,NA,85.7142857142858,13.68,NA,NA
+2015-07-13,"E","Mytilus_californianus","Nucella_ostrina",0,0,158,NA,85.7142857142858,13.68,NA,NA
+2015-07-13,"E","Mytilus_trossulus","Nucella_canaliculata",0.1,2,24,52.426525925939,51.4285714285715,13.68,3.70889432420391e-05,0.00190743136673344
+2015-07-13,"E","Mytilus_trossulus","Nucella_ostrina",0.0534351145038168,7,158,30.800961129532,51.4285714285715,13.68,3.37332367968149e-05,0.00173485217812191
+2015-07-13,"E","Nucella_ostrina","Nucella_canaliculata",0,0,24,NA,51.4285714285715,13.68,NA,NA
+2015-07-13,"E","Nucella_ostrina","Nucella_ostrina",0,0,158,NA,51.4285714285715,13.68,NA,NA
+2015-07-13,"E","Pollicipes_polymerus","Nucella_canaliculata",0.1,2,24,6.65946803021296,7771.4285714286,13.68,1.93223347577389e-06,0.0150162144403
+2015-07-13,"E","Pollicipes_polymerus","Nucella_ostrina",0.0763358778625954,10,158,10.3236223207011,7771.4285714286,13.68,9.51471396131652e-07,0.00739429199279458
+2015-07-13,"E","Semibalanus_cariosus","Nucella_canaliculata",0,0,24,NA,5.7142857142857,13.68,NA,NA
+2015-07-13,"E","Semibalanus_cariosus","Nucella_ostrina",0,0,158,NA,5.7142857142857,13.68,NA,NA
+2015-07-13,"F","Adula_californiensis","Nucella_canaliculata",0,0,4,NA,0,13.68,NA,NA
+2015-07-13,"F","Adula_californiensis","Nucella_ostrina",0.00684931506849315,1,184,62.025851797385,0,13.68,Inf,0.00011042677964129
+2015-07-13,"F","Balanus_glandula","Nucella_canaliculata",0,0,4,NA,4441.90476190476,13.68,NA,NA
+2015-07-13,"F","Balanus_glandula","Nucella_ostrina",0.0753424657534247,11,184,14.7855260745109,4441.90476190476,13.68,1.14718591249485e-06,0.00509569056750095
+2015-07-13,"F","Chthamalus_dalli","Nucella_canaliculata",0,0,4,NA,3653.33333333333,13.68,NA,NA
+2015-07-13,"F","Chthamalus_dalli","Nucella_ostrina",0.00684931506849315,1,184,17.1636159397056,3653.33333333333,13.68,1.09231791560368e-07,0.000399060145167209
+2015-07-13,"F","Hiatella_arctica","Nucella_canaliculata",0,0,4,NA,0,13.68,NA,NA
+2015-07-13,"F","Hiatella_arctica","Nucella_ostrina",0,0,184,NA,0,13.68,NA,NA
+2015-07-13,"F","Limpets","Nucella_canaliculata",0,0,4,NA,4720,13.68,NA,NA
+2015-07-13,"F","Limpets","Nucella_ostrina",0.00684931506849315,1,184,7.22438050073852,4720,13.68,2.00865122439904e-07,0.000948083377916345
+2015-07-13,"F","Littorina_sitkana","Nucella_canaliculata",0,0,4,NA,2441.90476190476,13.68,NA,NA
+2015-07-13,"F","Littorina_sitkana","Nucella_ostrina",0.0273972602739726,4,184,29.9097944645604,2441.90476190476,13.68,3.75115478662363e-07,0.00091599627360981
+2015-07-13,"F","Modiolus_modiolus","Nucella_canaliculata",0,0,4,NA,0,13.68,NA,NA
+2015-07-13,"F","Modiolus_modiolus","Nucella_ostrina",0,0,184,NA,0,13.68,NA,NA
+2015-07-13,"F","Mytilus_californianus","Nucella_canaliculata",0,0,4,NA,7.61904761904763,13.68,NA,NA
+2015-07-13,"F","Mytilus_californianus","Nucella_ostrina",0,0,184,NA,7.61904761904763,13.68,NA,NA
+2015-07-13,"F","Mytilus_trossulus","Nucella_canaliculata",0,0,4,NA,160,13.68,NA,NA
+2015-07-13,"F","Mytilus_trossulus","Nucella_ostrina",0.13013698630137,19,184,58.9511893019073,160,13.68,1.37971120517707e-05,0.00220753792828331
+2015-07-13,"F","Nucella_ostrina","Nucella_canaliculata",0,0,4,NA,114.285714285714,13.68,NA,NA
+2015-07-13,"F","Nucella_ostrina","Nucella_ostrina",0,0,184,NA,114.285714285714,13.68,NA,NA
+2015-07-13,"F","Pollicipes_polymerus","Nucella_canaliculata",0,0,4,NA,0,13.68,NA,NA
+2015-07-13,"F","Pollicipes_polymerus","Nucella_ostrina",0.00684931506849315,1,184,13.7882998329193,0,13.68,Inf,0.000496748341092827
+2015-07-13,"F","Semibalanus_cariosus","Nucella_canaliculata",0,0,4,NA,22.8571428571429,13.68,NA,NA
+2015-07-13,"F","Semibalanus_cariosus","Nucella_ostrina",0,0,184,NA,22.8571428571429,13.68,NA,NA
+2015-07-13,"G","Adula_californiensis","Nucella_canaliculata",0,0,27,NA,0,13.68,NA,NA
+2015-07-13,"G","Adula_californiensis","Nucella_ostrina",0,0,237,NA,0,13.68,NA,NA
+2015-07-13,"G","Balanus_glandula","Nucella_canaliculata",0,0,27,NA,360,13.68,NA,NA
+2015-07-13,"G","Balanus_glandula","Nucella_ostrina",0.0140845070422535,3,237,15.1785246644311,360,13.68,2.57756478563478e-06,0.00092792332282852
+2015-07-13,"G","Chthamalus_dalli","Nucella_canaliculata",0,0,27,NA,17.1428571428571,13.68,NA,NA
+2015-07-13,"G","Chthamalus_dalli","Nucella_ostrina",0.0187793427230047,4,237,12.5601303455872,17.1428571428571,13.68,8.721737981221e-05,0.00149515508249503
+2015-07-13,"G","Hiatella_arctica","Nucella_canaliculata",0,0,27,NA,0,13.68,NA,NA
+2015-07-13,"G","Hiatella_arctica","Nucella_ostrina",0,0,237,NA,0,13.68,NA,NA
+2015-07-13,"G","Limpets","Nucella_canaliculata",0,0,27,NA,760.000000000001,13.68,NA,NA
+2015-07-13,"G","Limpets","Nucella_ostrina",0.00469483568075117,1,237,0,760.000000000001,13.68,Inf,Inf
+2015-07-13,"G","Littorina_sitkana","Nucella_canaliculata",0,0,27,NA,1325.71428571429,13.68,NA,NA
+2015-07-13,"G","Littorina_sitkana","Nucella_ostrina",0.0140845070422535,3,237,23.2834606421696,1325.71428571429,13.68,4.56293397577124e-07,0.000604914675645103
+2015-07-13,"G","Modiolus_modiolus","Nucella_canaliculata",0,0,27,NA,0,13.68,NA,NA
+2015-07-13,"G","Modiolus_modiolus","Nucella_ostrina",0,0,237,NA,0,13.68,NA,NA
+2015-07-13,"G","Mytilus_californianus","Nucella_canaliculata",0,0,27,NA,45.7142857142857,13.68,NA,NA
+2015-07-13,"G","Mytilus_californianus","Nucella_ostrina",0,0,237,NA,45.7142857142857,13.68,NA,NA
+2015-07-13,"G","Mytilus_trossulus","Nucella_canaliculata",0.08,2,27,51.8771619157806,177.142857142857,13.68,8.70542810262003e-06,0.00154210440674983
+2015-07-13,"G","Mytilus_trossulus","Nucella_ostrina",0.0563380281690141,12,237,65.4185753253522,177.142857142857,13.68,4.86157416622263e-06,0.000861193138016581
+2015-07-13,"G","Nucella_ostrina","Nucella_canaliculata",0,0,27,NA,171.428571428571,13.68,NA,NA
+2015-07-13,"G","Nucella_ostrina","Nucella_ostrina",0,0,237,NA,171.428571428571,13.68,NA,NA
+2015-07-13,"G","Pollicipes_polymerus","Nucella_canaliculata",0,0,27,NA,8697.14285714286,13.68,NA,NA
+2015-07-13,"G","Pollicipes_polymerus","Nucella_ostrina",0.00469483568075117,1,237,4.80822254317751,8697.14285714286,13.68,1.12268839258336e-07,0.000976418133435354
+2015-07-13,"G","Semibalanus_cariosus","Nucella_canaliculata",0,0,27,NA,57.1428571428572,13.68,NA,NA
+2015-07-13,"G","Semibalanus_cariosus","Nucella_ostrina",0,0,237,NA,57.1428571428572,13.68,NA,NA
+2015-08-28,"A","Adula_californiensis","Nucella_canaliculata",0,0,89,NA,0,13.22,NA,NA
+2015-08-28,"A","Adula_californiensis","Nucella_ostrina",0,0,90,NA,0,13.22,NA,NA
+2015-08-28,"A","Balanus_glandula","Nucella_canaliculata",0.0352941176470588,3,89,9.01379988551102,15497.1428571429,13.22,2.5266365854092e-07,0.003915564811217
+2015-08-28,"A","Balanus_glandula","Nucella_ostrina",0.0864197530864197,7,90,12.088617692573,15497.1428571429,13.22,4.61301366986797e-07,0.00714885318438967
+2015-08-28,"A","Chthamalus_dalli","Nucella_canaliculata",0,0,89,NA,291.428571428572,13.22,NA,NA
+2015-08-28,"A","Chthamalus_dalli","Nucella_ostrina",0,0,90,NA,291.428571428572,13.22,NA,NA
+2015-08-28,"A","Hiatella_arctica","Nucella_canaliculata",0,0,89,NA,0,13.22,NA,NA
+2015-08-28,"A","Hiatella_arctica","Nucella_ostrina",0,0,90,NA,0,13.22,NA,NA
+2015-08-28,"A","Limpets","Nucella_canaliculata",0,0,89,NA,2451.42857142857,13.22,NA,NA
+2015-08-28,"A","Limpets","Nucella_ostrina",0.0123456790123457,1,90,1.86386473801552,2451.42857142857,13.22,2.70197511896131e-06,0.00662369900591086
+2015-08-28,"A","Littorina_sitkana","Nucella_canaliculata",0,0,89,NA,3125.71428571428,13.22,NA,NA
+2015-08-28,"A","Littorina_sitkana","Nucella_ostrina",0,0,90,NA,3125.71428571428,13.22,NA,NA
+2015-08-28,"A","Modiolus_modiolus","Nucella_canaliculata",0,0,89,NA,0,13.22,NA,NA
+2015-08-28,"A","Modiolus_modiolus","Nucella_ostrina",0,0,90,NA,0,13.22,NA,NA
+2015-08-28,"A","Mytilus_californianus","Nucella_canaliculata",0,0,89,NA,5.7142857142857,13.22,NA,NA
+2015-08-28,"A","Mytilus_californianus","Nucella_ostrina",0,0,90,NA,5.7142857142857,13.22,NA,NA
+2015-08-28,"A","Mytilus_trossulus","Nucella_canaliculata",0,0,89,NA,617.142857142855,13.22,NA,NA
+2015-08-28,"A","Mytilus_trossulus","Nucella_ostrina",0,0,90,NA,617.142857142855,13.22,NA,NA
+2015-08-28,"A","Nucella_ostrina","Nucella_canaliculata",0,0,89,NA,51.4285714285714,13.22,NA,NA
+2015-08-28,"A","Nucella_ostrina","Nucella_ostrina",0,0,90,NA,51.4285714285714,13.22,NA,NA
+2015-08-28,"A","Pollicipes_polymerus","Nucella_canaliculata",0.0117647058823529,1,89,7.75192962564062,5634.28571428571,13.22,2.69359555452527e-07,0.00151764869529252
+2015-08-28,"A","Pollicipes_polymerus","Nucella_ostrina",0.0123456790123457,1,90,7.78817164976467,5634.28571428571,13.22,2.81345906156053e-07,0.00158518321982782
+2015-08-28,"A","Semibalanus_cariosus","Nucella_canaliculata",0,0,89,NA,22.8571428571429,13.22,NA,NA
+2015-08-28,"A","Semibalanus_cariosus","Nucella_ostrina",0,0,90,NA,22.8571428571429,13.22,NA,NA
+2015-08-28,"AB","Adula_californiensis","Nucella_canaliculata",0,0,67,NA,0,13.22,NA,NA
+2015-08-28,"AB","Adula_californiensis","Nucella_ostrina",0,0,80,NA,0,13.22,NA,NA
+2015-08-28,"AB","Balanus_glandula","Nucella_canaliculata",0,0,67,NA,959.999999999999,13.22,NA,NA
+2015-08-28,"AB","Balanus_glandula","Nucella_ostrina",0.0142857142857143,1,80,10.8608186509512,959.999999999999,13.22,1.37015015711077e-06,0.00131534415082634
+2015-08-28,"AB","Chthamalus_dalli","Nucella_canaliculata",0,0,67,NA,53.3333333333334,13.22,NA,NA
+2015-08-28,"AB","Chthamalus_dalli","Nucella_ostrina",0,0,80,NA,53.3333333333334,13.22,NA,NA
+2015-08-28,"AB","Hiatella_arctica","Nucella_canaliculata",0,0,67,NA,0,13.22,NA,NA
+2015-08-28,"AB","Hiatella_arctica","Nucella_ostrina",0,0,80,NA,0,13.22,NA,NA
+2015-08-28,"AB","Limpets","Nucella_canaliculata",0,0,67,NA,2419.04761904762,13.22,NA,NA
+2015-08-28,"AB","Limpets","Nucella_ostrina",0.0142857142857143,1,80,10.6321616959702,2419.04761904762,13.22,5.55438487477284e-07,0.00134363215065934
+2015-08-28,"AB","Littorina_sitkana","Nucella_canaliculata",0,0,67,NA,4857.14285714286,13.22,NA,NA
+2015-08-28,"AB","Littorina_sitkana","Nucella_ostrina",0.0571428571428571,4,80,22.1221241877312,4857.14285714286,13.22,5.31807243396525e-07,0.00258306375364027
+2015-08-28,"AB","Modiolus_modiolus","Nucella_canaliculata",0,0,67,NA,0,13.22,NA,NA
+2015-08-28,"AB","Modiolus_modiolus","Nucella_ostrina",0,0,80,NA,0,13.22,NA,NA
+2015-08-28,"AB","Mytilus_californianus","Nucella_canaliculata",0,0,67,NA,64.7619047619049,13.22,NA,NA
+2015-08-28,"AB","Mytilus_californianus","Nucella_ostrina",0,0,80,NA,64.7619047619049,13.22,NA,NA
+2015-08-28,"AB","Mytilus_trossulus","Nucella_canaliculata",0,0,67,NA,304.761904761905,13.22,NA,NA
+2015-08-28,"AB","Mytilus_trossulus","Nucella_ostrina",0,0,80,NA,304.761904761905,13.22,NA,NA
+2015-08-28,"AB","Nucella_ostrina","Nucella_canaliculata",0,0,67,NA,15.2380952380952,13.22,NA,NA
+2015-08-28,"AB","Nucella_ostrina","Nucella_ostrina",0,0,80,NA,15.2380952380952,13.22,NA,NA
+2015-08-28,"AB","Pollicipes_polymerus","Nucella_canaliculata",0.0806451612903226,5,67,9.03047036798001,8228.57142857143,13.22,1.08528424775017e-06,0.00893033895291567
+2015-08-28,"AB","Pollicipes_polymerus","Nucella_ostrina",0.0571428571428571,4,80,8.83899710497918,8228.57142857143,13.22,7.85659771348098e-07,0.00646485754709292
+2015-08-28,"AB","Semibalanus_cariosus","Nucella_canaliculata",0,0,67,NA,72.3809523809523,13.22,NA,NA
+2015-08-28,"AB","Semibalanus_cariosus","Nucella_ostrina",0,0,80,NA,72.3809523809523,13.22,NA,NA
+2015-08-28,"AC","Adula_californiensis","Nucella_canaliculata",0,0,2,NA,0,13.22,NA,NA
+2015-08-28,"AC","Adula_californiensis","Nucella_ostrina",0,0,18,NA,0,13.22,NA,NA
+2015-08-28,"AC","Balanus_glandula","Nucella_canaliculata",0,0,2,NA,1447.61904761905,13.22,NA,NA
+2015-08-28,"AC","Balanus_glandula","Nucella_ostrina",0.125,2,18,14.0481491177207,1447.61904761905,13.22,6.14662355068568e-06,0.00889796933051641
+2015-08-28,"AC","Chthamalus_dalli","Nucella_canaliculata",0,0,2,NA,636.190476190475,13.22,NA,NA
+2015-08-28,"AC","Chthamalus_dalli","Nucella_ostrina",0,0,18,NA,636.190476190475,13.22,NA,NA
+2015-08-28,"AC","Hiatella_arctica","Nucella_canaliculata",0,0,2,NA,0,13.22,NA,NA
+2015-08-28,"AC","Hiatella_arctica","Nucella_ostrina",0,0,18,NA,0,13.22,NA,NA
+2015-08-28,"AC","Limpets","Nucella_canaliculata",0,0,2,NA,3382.85714285714,13.22,NA,NA
+2015-08-28,"AC","Limpets","Nucella_ostrina",0,0,18,NA,3382.85714285714,13.22,NA,NA
+2015-08-28,"AC","Littorina_sitkana","Nucella_canaliculata",0,0,2,NA,6205.71428571428,13.22,NA,NA
+2015-08-28,"AC","Littorina_sitkana","Nucella_ostrina",0,0,18,NA,6205.71428571428,13.22,NA,NA
+2015-08-28,"AC","Modiolus_modiolus","Nucella_canaliculata",0,0,2,NA,0,13.22,NA,NA
+2015-08-28,"AC","Modiolus_modiolus","Nucella_ostrina",0,0,18,NA,0,13.22,NA,NA
+2015-08-28,"AC","Mytilus_californianus","Nucella_canaliculata",0,0,2,NA,22.8571428571429,13.22,NA,NA
+2015-08-28,"AC","Mytilus_californianus","Nucella_ostrina",0,0,18,NA,22.8571428571429,13.22,NA,NA
+2015-08-28,"AC","Mytilus_trossulus","Nucella_canaliculata",0,0,2,NA,567.619047619049,13.22,NA,NA
+2015-08-28,"AC","Mytilus_trossulus","Nucella_ostrina",0,0,18,NA,567.619047619049,13.22,NA,NA
+2015-08-28,"AC","Nucella_ostrina","Nucella_canaliculata",0,0,2,NA,26.6666666666667,13.22,NA,NA
+2015-08-28,"AC","Nucella_ostrina","Nucella_ostrina",0,0,18,NA,26.6666666666667,13.22,NA,NA
+2015-08-28,"AC","Pollicipes_polymerus","Nucella_canaliculata",0,0,2,NA,278.095238095238,13.22,NA,NA
+2015-08-28,"AC","Pollicipes_polymerus","Nucella_ostrina",0,0,18,NA,278.095238095238,13.22,NA,NA
+2015-08-28,"AC","Semibalanus_cariosus","Nucella_canaliculata",0,0,2,NA,34.2857142857143,13.22,NA,NA
+2015-08-28,"AC","Semibalanus_cariosus","Nucella_ostrina",0,0,18,NA,34.2857142857143,13.22,NA,NA
+2015-08-28,"AD","Adula_californiensis","Nucella_canaliculata",0,0,33,NA,0,13.22,NA,NA
+2015-08-28,"AD","Adula_californiensis","Nucella_ostrina",0,0,135,NA,0,13.22,NA,NA
+2015-08-28,"AD","Balanus_glandula","Nucella_canaliculata",0.217391304347826,5,33,18.6778409047554,37077.3333333333,13.22,3.1391134022634e-07,0.0116389953986854
+2015-08-28,"AD","Balanus_glandula","Nucella_ostrina",0.368421052631579,35,135,18.4765489868174,37077.3333333333,13.22,5.37792931658411e-07,0.0199399277914094
+2015-08-28,"AD","Chthamalus_dalli","Nucella_canaliculata",0,0,33,NA,874.666666666667,13.22,NA,NA
+2015-08-28,"AD","Chthamalus_dalli","Nucella_ostrina",0.0105263157894737,1,135,21.8452561156258,874.666666666667,13.22,5.50904954219059e-07,0.000481858199956937
+2015-08-28,"AD","Hiatella_arctica","Nucella_canaliculata",0,0,33,NA,0,13.22,NA,NA
+2015-08-28,"AD","Hiatella_arctica","Nucella_ostrina",0,0,135,NA,0,13.22,NA,NA
+2015-08-28,"AD","Limpets","Nucella_canaliculata",0.0434782608695652,1,33,15.0096852017962,2407.61904761905,13.22,1.20313070232499e-06,0.00289668039569293
+2015-08-28,"AD","Limpets","Nucella_ostrina",0,0,135,NA,2407.61904761905,13.22,NA,NA
+2015-08-28,"AD","Littorina_sitkana","Nucella_canaliculata",0,0,33,NA,3539.04761904762,13.22,NA,NA
+2015-08-28,"AD","Littorina_sitkana","Nucella_ostrina",0,0,135,NA,3539.04761904762,13.22,NA,NA
+2015-08-28,"AD","Modiolus_modiolus","Nucella_canaliculata",0,0,33,NA,0,13.22,NA,NA
+2015-08-28,"AD","Modiolus_modiolus","Nucella_ostrina",0,0,135,NA,0,13.22,NA,NA
+2015-08-28,"AD","Mytilus_californianus","Nucella_canaliculata",0,0,33,NA,72.3809523809524,13.22,NA,NA
+2015-08-28,"AD","Mytilus_californianus","Nucella_ostrina",0,0,135,NA,72.3809523809524,13.22,NA,NA
+2015-08-28,"AD","Mytilus_trossulus","Nucella_canaliculata",0.0434782608695652,1,33,21.9634838195908,750.476190476192,13.22,2.63775234065737e-06,0.0019795703280362
+2015-08-28,"AD","Mytilus_trossulus","Nucella_ostrina",0.0210526315789474,2,135,37.1387781026808,750.476190476192,13.22,7.55338916536595e-07,0.000566863872600798
+2015-08-28,"AD","Nucella_ostrina","Nucella_canaliculata",0,0,33,NA,91.4285714285715,13.22,NA,NA
+2015-08-28,"AD","Nucella_ostrina","Nucella_ostrina",0,0,135,NA,91.4285714285715,13.22,NA,NA
+2015-08-28,"AD","Pollicipes_polymerus","Nucella_canaliculata",0.130434782608696,3,33,6.87456594538611,6285.71428571429,13.22,3.01851612263893e-06,0.0189735299137304
+2015-08-28,"AD","Pollicipes_polymerus","Nucella_ostrina",0.0210526315789474,2,135,4.44096550673697,6285.71428571429,13.22,7.54178858531965e-07,0.00474055282505807
+2015-08-28,"AD","Semibalanus_cariosus","Nucella_canaliculata",0,0,33,NA,45.7142857142857,13.22,NA,NA
+2015-08-28,"AD","Semibalanus_cariosus","Nucella_ostrina",0,0,135,NA,45.7142857142857,13.22,NA,NA
+2015-08-28,"AE","Adula_californiensis","Nucella_canaliculata",0,0,1,NA,0,13.22,NA,NA
+2015-08-28,"AE","Adula_californiensis","Nucella_ostrina",0,0,29,NA,0,13.22,NA,NA
+2015-08-28,"AE","Balanus_glandula","Nucella_canaliculata",0,0,1,NA,1664.7619047619,13.22,NA,NA
+2015-08-28,"AE","Balanus_glandula","Nucella_ostrina",0.0384615384615385,1,29,45.6544323609294,1664.7619047619,13.22,5.06047839921064e-07,0.000842449165887637
+2015-08-28,"AE","Chthamalus_dalli","Nucella_canaliculata",0,0,1,NA,788.571428571429,13.22,NA,NA
+2015-08-28,"AE","Chthamalus_dalli","Nucella_ostrina",0.0769230769230769,2,29,14.9679135185062,788.571428571429,13.22,6.51709939635e-06,0.00513919838112171
+2015-08-28,"AE","Hiatella_arctica","Nucella_canaliculata",0,0,1,NA,0,13.22,NA,NA
+2015-08-28,"AE","Hiatella_arctica","Nucella_ostrina",0,0,29,NA,0,13.22,NA,NA
+2015-08-28,"AE","Limpets","Nucella_canaliculata",0,0,1,NA,2034.28571428572,13.22,NA,NA
+2015-08-28,"AE","Limpets","Nucella_ostrina",0,0,29,NA,2034.28571428572,13.22,NA,NA
+2015-08-28,"AE","Littorina_sitkana","Nucella_canaliculata",0,0,1,NA,1805.71428571429,13.22,NA,NA
+2015-08-28,"AE","Littorina_sitkana","Nucella_ostrina",0,0,29,NA,1805.71428571429,13.22,NA,NA
+2015-08-28,"AE","Modiolus_modiolus","Nucella_canaliculata",0,0,1,NA,0,13.22,NA,NA
+2015-08-28,"AE","Modiolus_modiolus","Nucella_ostrina",0,0,29,NA,0,13.22,NA,NA
+2015-08-28,"AE","Mytilus_californianus","Nucella_canaliculata",0,0,1,NA,53.3333333333333,13.22,NA,NA
+2015-08-28,"AE","Mytilus_californianus","Nucella_ostrina",0,0,29,NA,53.3333333333333,13.22,NA,NA
+2015-08-28,"AE","Mytilus_trossulus","Nucella_canaliculata",0,0,1,NA,281.904761904762,13.22,NA,NA
+2015-08-28,"AE","Mytilus_trossulus","Nucella_ostrina",0,0,29,NA,281.904761904762,13.22,NA,NA
+2015-08-28,"AE","Nucella_ostrina","Nucella_canaliculata",0,0,1,NA,45.7142857142857,13.22,NA,NA
+2015-08-28,"AE","Nucella_ostrina","Nucella_ostrina",0,0,29,NA,45.7142857142857,13.22,NA,NA
+2015-08-28,"AE","Pollicipes_polymerus","Nucella_canaliculata",0,0,1,NA,803.809523809525,13.22,NA,NA
+2015-08-28,"AE","Pollicipes_polymerus","Nucella_ostrina",0,0,29,NA,803.809523809525,13.22,NA,NA
+2015-08-28,"AE","Semibalanus_cariosus","Nucella_canaliculata",0,0,1,NA,148.571428571429,13.22,NA,NA
+2015-08-28,"AE","Semibalanus_cariosus","Nucella_ostrina",0,0,29,NA,148.571428571429,13.22,NA,NA
+2015-08-28,"AF","Adula_californiensis","Nucella_canaliculata",0,0,2,NA,0,13.22,NA,NA
+2015-08-28,"AF","Adula_californiensis","Nucella_ostrina",0,0,15,NA,0,13.22,NA,NA
+2015-08-28,"AF","Balanus_glandula","Nucella_canaliculata",0,0,2,NA,31060.5714285714,13.22,NA,NA
+2015-08-28,"AF","Balanus_glandula","Nucella_ostrina",0.0769230769230769,1,15,43.623480654124,31060.5714285714,13.22,5.67710454685636e-08,0.001763341112851
+2015-08-28,"AF","Chthamalus_dalli","Nucella_canaliculata",0,0,2,NA,3499.42857142857,13.22,NA,NA
+2015-08-28,"AF","Chthamalus_dalli","Nucella_ostrina",0,0,15,NA,3499.42857142857,13.22,NA,NA
+2015-08-28,"AF","Hiatella_arctica","Nucella_canaliculata",0,0,2,NA,0,13.22,NA,NA
+2015-08-28,"AF","Hiatella_arctica","Nucella_ostrina",0,0,15,NA,0,13.22,NA,NA
+2015-08-28,"AF","Limpets","Nucella_canaliculata",0,0,2,NA,771.428571428571,13.22,NA,NA
+2015-08-28,"AF","Limpets","Nucella_ostrina",0.0769230769230769,1,15,112.498519695212,771.428571428571,13.22,8.86368104978216e-07,0.000683769680983195
+2015-08-28,"AF","Littorina_sitkana","Nucella_canaliculata",0,0,2,NA,3788.57142857143,13.22,NA,NA
+2015-08-28,"AF","Littorina_sitkana","Nucella_ostrina",0,0,15,NA,3788.57142857143,13.22,NA,NA
+2015-08-28,"AF","Modiolus_modiolus","Nucella_canaliculata",0,0,2,NA,0,13.22,NA,NA
+2015-08-28,"AF","Modiolus_modiolus","Nucella_ostrina",0,0,15,NA,0,13.22,NA,NA
+2015-08-28,"AF","Mytilus_californianus","Nucella_canaliculata",0,0,2,NA,0,13.22,NA,NA
+2015-08-28,"AF","Mytilus_californianus","Nucella_ostrina",0,0,15,NA,0,13.22,NA,NA
+2015-08-28,"AF","Mytilus_trossulus","Nucella_canaliculata",0,0,2,NA,137.142857142857,13.22,NA,NA
+2015-08-28,"AF","Mytilus_trossulus","Nucella_ostrina",0,0,15,NA,137.142857142857,13.22,NA,NA
+2015-08-28,"AF","Nucella_ostrina","Nucella_canaliculata",0,0,2,NA,40,13.22,NA,NA
+2015-08-28,"AF","Nucella_ostrina","Nucella_ostrina",0,0,15,NA,40,13.22,NA,NA
+2015-08-28,"AF","Pollicipes_polymerus","Nucella_canaliculata",0,0,2,NA,45.7142857142857,13.22,NA,NA
+2015-08-28,"AF","Pollicipes_polymerus","Nucella_ostrina",0,0,15,NA,45.7142857142857,13.22,NA,NA
+2015-08-28,"AF","Semibalanus_cariosus","Nucella_canaliculata",0,0,2,NA,5.7142857142857,13.22,NA,NA
+2015-08-28,"AF","Semibalanus_cariosus","Nucella_ostrina",0,0,15,NA,5.7142857142857,13.22,NA,NA
+2015-08-28,"AG","Adula_californiensis","Nucella_canaliculata",0,0,2,NA,0,13.22,NA,NA
+2015-08-28,"AG","Adula_californiensis","Nucella_ostrina",0,0,87,NA,0,13.22,NA,NA
+2015-08-28,"AG","Balanus_glandula","Nucella_canaliculata",0,0,2,NA,0,13.22,NA,NA
+2015-08-28,"AG","Balanus_glandula","Nucella_ostrina",0.217391304347826,15,87,13.428824011305,0,13.22,Inf,0.0161884096600577
+2015-08-28,"AG","Chthamalus_dalli","Nucella_canaliculata",0,0,2,NA,0,13.22,NA,NA
+2015-08-28,"AG","Chthamalus_dalli","Nucella_ostrina",0.0289855072463768,2,87,9.27389077190492,0,13.22,Inf,0.00312549586352557
+2015-08-28,"AG","Hiatella_arctica","Nucella_canaliculata",0,0,2,NA,0,13.22,NA,NA
+2015-08-28,"AG","Hiatella_arctica","Nucella_ostrina",0,0,87,NA,0,13.22,NA,NA
+2015-08-28,"AG","Limpets","Nucella_canaliculata",0,0,2,NA,0,13.22,NA,NA
+2015-08-28,"AG","Limpets","Nucella_ostrina",0.0144927536231884,1,87,14.7479359623588,0,13.22,Inf,0.000982697081149411
+2015-08-28,"AG","Littorina_sitkana","Nucella_canaliculata",0,0,2,NA,0,13.22,NA,NA
+2015-08-28,"AG","Littorina_sitkana","Nucella_ostrina",0,0,87,NA,0,13.22,NA,NA
+2015-08-28,"AG","Modiolus_modiolus","Nucella_canaliculata",0,0,2,NA,0,13.22,NA,NA
+2015-08-28,"AG","Modiolus_modiolus","Nucella_ostrina",0,0,87,NA,0,13.22,NA,NA
+2015-08-28,"AG","Mytilus_californianus","Nucella_canaliculata",0,0,2,NA,0,13.22,NA,NA
+2015-08-28,"AG","Mytilus_californianus","Nucella_ostrina",0,0,87,NA,0,13.22,NA,NA
+2015-08-28,"AG","Mytilus_trossulus","Nucella_canaliculata",0,0,2,NA,0,13.22,NA,NA
+2015-08-28,"AG","Mytilus_trossulus","Nucella_ostrina",0,0,87,NA,0,13.22,NA,NA
+2015-08-28,"AG","Nucella_ostrina","Nucella_canaliculata",0,0,2,NA,0,13.22,NA,NA
+2015-08-28,"AG","Nucella_ostrina","Nucella_ostrina",0,0,87,NA,0,13.22,NA,NA
+2015-08-28,"AG","Pollicipes_polymerus","Nucella_canaliculata",0,0,2,NA,0,13.22,NA,NA
+2015-08-28,"AG","Pollicipes_polymerus","Nucella_ostrina",0,0,87,NA,0,13.22,NA,NA
+2015-08-28,"AG","Semibalanus_cariosus","Nucella_canaliculata",0,0,2,NA,0,13.22,NA,NA
+2015-08-28,"AG","Semibalanus_cariosus","Nucella_ostrina",0,0,87,NA,0,13.22,NA,NA
+2015-08-28,"B","Adula_californiensis","Nucella_canaliculata",0,0,163,NA,0,13.22,NA,NA
+2015-08-28,"B","Adula_californiensis","Nucella_ostrina",0,0,39,NA,0,13.22,NA,NA
+2015-08-28,"B","Balanus_glandula","Nucella_canaliculata",0.0958904109589041,14,163,11.0217159916484,3462.85714285714,13.22,2.51241506294429e-06,0.0087001344465385
+2015-08-28,"B","Balanus_glandula","Nucella_ostrina",0.0625,2,39,8.03449783318968,3462.85714285714,13.22,2.24639800056073e-06,0.00777895536194173
+2015-08-28,"B","Chthamalus_dalli","Nucella_canaliculata",0,0,163,NA,129.52380952381,13.22,NA,NA
+2015-08-28,"B","Chthamalus_dalli","Nucella_ostrina",0,0,39,NA,129.52380952381,13.22,NA,NA
+2015-08-28,"B","Hiatella_arctica","Nucella_canaliculata",0,0,163,NA,0,13.22,NA,NA
+2015-08-28,"B","Hiatella_arctica","Nucella_ostrina",0,0,39,NA,0,13.22,NA,NA
+2015-08-28,"B","Limpets","Nucella_canaliculata",0,0,163,NA,1462.85714285714,13.22,NA,NA
+2015-08-28,"B","Limpets","Nucella_ostrina",0.0625,2,39,26.7507192668734,1462.85714285714,13.22,1.59713871424413e-06,0.0023363857762657
+2015-08-28,"B","Littorina_sitkana","Nucella_canaliculata",0,0,163,NA,1120,13.22,NA,NA
+2015-08-28,"B","Littorina_sitkana","Nucella_ostrina",0,0,39,NA,1120,13.22,NA,NA
+2015-08-28,"B","Modiolus_modiolus","Nucella_canaliculata",0,0,163,NA,0,13.22,NA,NA
+2015-08-28,"B","Modiolus_modiolus","Nucella_ostrina",0,0,39,NA,0,13.22,NA,NA
+2015-08-28,"B","Mytilus_californianus","Nucella_canaliculata",0,0,163,NA,34.2857142857143,13.22,NA,NA
+2015-08-28,"B","Mytilus_californianus","Nucella_ostrina",0,0,39,NA,34.2857142857143,13.22,NA,NA
+2015-08-28,"B","Mytilus_trossulus","Nucella_canaliculata",0.0136986301369863,2,163,29.6276981988122,171.428571428571,13.22,2.69709362039776e-06,0.000462358906353902
+2015-08-28,"B","Mytilus_trossulus","Nucella_ostrina",0.09375,3,39,23.1462765398313,171.428571428571,13.22,2.3626910317904e-05,0.00405032748306925
+2015-08-28,"B","Nucella_ostrina","Nucella_canaliculata",0,0,163,NA,76.1904761904762,13.22,NA,NA
+2015-08-28,"B","Nucella_ostrina","Nucella_ostrina",0,0,39,NA,76.1904761904762,13.22,NA,NA
+2015-08-28,"B","Pollicipes_polymerus","Nucella_canaliculata",0.00684931506849315,1,163,9.62507677892717,10982.8571428572,13.22,6.47929281215368e-08,0.00071161147342625
+2015-08-28,"B","Pollicipes_polymerus","Nucella_ostrina",0,0,39,NA,10982.8571428572,13.22,NA,NA
+2015-08-28,"B","Semibalanus_cariosus","Nucella_canaliculata",0,0,163,NA,15.2380952380953,13.22,NA,NA
+2015-08-28,"B","Semibalanus_cariosus","Nucella_ostrina",0,0,39,NA,15.2380952380953,13.22,NA,NA
+2015-08-28,"BB","Adula_californiensis","Nucella_canaliculata",0,0,0,NA,0,13.22,NA,NA
+2015-08-28,"BB","Adula_californiensis","Nucella_ostrina",0,0,8,NA,0,13.22,NA,NA
+2015-08-28,"BB","Balanus_glandula","Nucella_canaliculata",0,0,0,NA,12544.7619047619,13.22,NA,NA
+2015-08-28,"BB","Balanus_glandula","Nucella_ostrina",0,0,8,NA,12544.7619047619,13.22,NA,NA
+2015-08-28,"BB","Chthamalus_dalli","Nucella_canaliculata",0,0,0,NA,22.8571428571429,13.22,NA,NA
+2015-08-28,"BB","Chthamalus_dalli","Nucella_ostrina",0,0,8,NA,22.8571428571429,13.22,NA,NA
+2015-08-28,"BB","Hiatella_arctica","Nucella_canaliculata",0,0,0,NA,0,13.22,NA,NA
+2015-08-28,"BB","Hiatella_arctica","Nucella_ostrina",0,0,8,NA,0,13.22,NA,NA
+2015-08-28,"BB","Limpets","Nucella_canaliculata",0,0,0,NA,491.428571428571,13.22,NA,NA
+2015-08-28,"BB","Limpets","Nucella_ostrina",0,0,8,NA,491.428571428571,13.22,NA,NA
+2015-08-28,"BB","Littorina_sitkana","Nucella_canaliculata",0,0,0,NA,2388.57142857143,13.22,NA,NA
+2015-08-28,"BB","Littorina_sitkana","Nucella_ostrina",0,0,8,NA,2388.57142857143,13.22,NA,NA
+2015-08-28,"BB","Modiolus_modiolus","Nucella_canaliculata",0,0,0,NA,0,13.22,NA,NA
+2015-08-28,"BB","Modiolus_modiolus","Nucella_ostrina",0,0,8,NA,0,13.22,NA,NA
+2015-08-28,"BB","Mytilus_californianus","Nucella_canaliculata",0,0,0,NA,7.61904761904763,13.22,NA,NA
+2015-08-28,"BB","Mytilus_californianus","Nucella_ostrina",0,0,8,NA,7.61904761904763,13.22,NA,NA
+2015-08-28,"BB","Mytilus_trossulus","Nucella_canaliculata",0,0,0,NA,171.428571428571,13.22,NA,NA
+2015-08-28,"BB","Mytilus_trossulus","Nucella_ostrina",0.142857142857143,1,8,23.7101258700134,171.428571428571,13.22,3.51467275164179e-05,0.00602515328852878
+2015-08-28,"BB","Nucella_ostrina","Nucella_canaliculata",0,0,0,NA,0,13.22,NA,NA
+2015-08-28,"BB","Nucella_ostrina","Nucella_ostrina",0,0,8,NA,0,13.22,NA,NA
+2015-08-28,"BB","Pollicipes_polymerus","Nucella_canaliculata",0,0,0,NA,236.190476190476,13.22,NA,NA
+2015-08-28,"BB","Pollicipes_polymerus","Nucella_ostrina",0,0,8,NA,236.190476190476,13.22,NA,NA
+2015-08-28,"BB","Semibalanus_cariosus","Nucella_canaliculata",0,0,0,NA,19.047619047619,13.22,NA,NA
+2015-08-28,"BB","Semibalanus_cariosus","Nucella_ostrina",0,0,8,NA,19.047619047619,13.22,NA,NA
+2015-08-28,"BC","Adula_californiensis","Nucella_canaliculata",0,0,0,NA,0,13.22,NA,NA
+2015-08-28,"BC","Adula_californiensis","Nucella_ostrina",0,0,61,NA,0,13.22,NA,NA
+2015-08-28,"BC","Balanus_glandula","Nucella_canaliculata",0,0,0,NA,13020.9523809524,13.22,NA,NA
+2015-08-28,"BC","Balanus_glandula","Nucella_ostrina",0.142857142857143,7,61,26.9719253815905,13020.9523809524,13.22,4.06768449301362e-07,0.00529651260842688
+2015-08-28,"BC","Chthamalus_dalli","Nucella_canaliculata",0,0,0,NA,411.428571428571,13.22,NA,NA
+2015-08-28,"BC","Chthamalus_dalli","Nucella_ostrina",0.0204081632653061,1,61,18.2281361180585,411.428571428571,13.22,2.72124227523368e-06,0.00111959682181043
+2015-08-28,"BC","Hiatella_arctica","Nucella_canaliculata",0,0,0,NA,0,13.22,NA,NA
+2015-08-28,"BC","Hiatella_arctica","Nucella_ostrina",0,0,61,NA,0,13.22,NA,NA
+2015-08-28,"BC","Limpets","Nucella_canaliculata",0,0,0,NA,2137.14285714286,13.22,NA,NA
+2015-08-28,"BC","Limpets","Nucella_ostrina",0.0204081632653061,1,61,5.80909922826989,2137.14285714286,13.22,1.64384767412566e-06,0.00351313731498855
+2015-08-28,"BC","Littorina_sitkana","Nucella_canaliculata",0,0,0,NA,2678.09523809524,13.22,NA,NA
+2015-08-28,"BC","Littorina_sitkana","Nucella_ostrina",0,0,61,NA,2678.09523809524,13.22,NA,NA
+2015-08-28,"BC","Modiolus_modiolus","Nucella_canaliculata",0,0,0,NA,0,13.22,NA,NA
+2015-08-28,"BC","Modiolus_modiolus","Nucella_ostrina",0,0,61,NA,0,13.22,NA,NA
+2015-08-28,"BC","Mytilus_californianus","Nucella_canaliculata",0,0,0,NA,41.9047619047619,13.22,NA,NA
+2015-08-28,"BC","Mytilus_californianus","Nucella_ostrina",0,0,61,NA,41.9047619047619,13.22,NA,NA
+2015-08-28,"BC","Mytilus_trossulus","Nucella_canaliculata",0,0,0,NA,1325.71428571428,13.22,NA,NA
+2015-08-28,"BC","Mytilus_trossulus","Nucella_ostrina",0.0612244897959184,3,61,34.5149499909947,1325.71428571428,13.22,1.33803659057602e-06,0.00177385422293506
+2015-08-28,"BC","Nucella_ostrina","Nucella_canaliculata",0,0,0,NA,26.6666666666667,13.22,NA,NA
+2015-08-28,"BC","Nucella_ostrina","Nucella_ostrina",0,0,61,NA,26.6666666666667,13.22,NA,NA
+2015-08-28,"BC","Pollicipes_polymerus","Nucella_canaliculata",0,0,0,NA,259.047619047619,13.22,NA,NA
+2015-08-28,"BC","Pollicipes_polymerus","Nucella_ostrina",0,0,61,NA,259.047619047619,13.22,NA,NA
+2015-08-28,"BC","Semibalanus_cariosus","Nucella_canaliculata",0,0,0,NA,11.4285714285714,13.22,NA,NA
+2015-08-28,"BC","Semibalanus_cariosus","Nucella_ostrina",0,0,61,NA,11.4285714285714,13.22,NA,NA
+2015-08-28,"BD","Adula_californiensis","Nucella_canaliculata",0,0,64,NA,0,13.22,NA,NA
+2015-08-28,"BD","Adula_californiensis","Nucella_ostrina",0,0,60,NA,0,13.22,NA,NA
+2015-08-28,"BD","Balanus_glandula","Nucella_canaliculata",0.102040816326531,5,64,23.3834451776419,3474.28571428571,13.22,1.25602966238534e-06,0.0043638059127445
+2015-08-28,"BD","Balanus_glandula","Nucella_ostrina",0.0196078431372549,1,60,34.2818786999681,3474.28571428571,13.22,1.64626475105241e-07,0.000571959410651352
+2015-08-28,"BD","Chthamalus_dalli","Nucella_canaliculata",0,0,64,NA,102.857142857143,13.22,NA,NA
+2015-08-28,"BD","Chthamalus_dalli","Nucella_ostrina",0,0,60,NA,102.857142857143,13.22,NA,NA
+2015-08-28,"BD","Hiatella_arctica","Nucella_canaliculata",0,0,64,NA,0,13.22,NA,NA
+2015-08-28,"BD","Hiatella_arctica","Nucella_ostrina",0,0,60,NA,0,13.22,NA,NA
+2015-08-28,"BD","Limpets","Nucella_canaliculata",0,0,64,NA,1824.7619047619,13.22,NA,NA
+2015-08-28,"BD","Limpets","Nucella_ostrina",0,0,60,NA,1824.7619047619,13.22,NA,NA
+2015-08-28,"BD","Littorina_sitkana","Nucella_canaliculata",0,0,64,NA,1702.85714285714,13.22,NA,NA
+2015-08-28,"BD","Littorina_sitkana","Nucella_ostrina",0.0196078431372549,1,60,25.9996854027667,1702.85714285714,13.22,4.42877396588112e-07,0.000754156938190042
+2015-08-28,"BD","Modiolus_modiolus","Nucella_canaliculata",0,0,64,NA,0,13.22,NA,NA
+2015-08-28,"BD","Modiolus_modiolus","Nucella_ostrina",0,0,60,NA,0,13.22,NA,NA
+2015-08-28,"BD","Mytilus_californianus","Nucella_canaliculata",0,0,64,NA,76.1904761904763,13.22,NA,NA
+2015-08-28,"BD","Mytilus_californianus","Nucella_ostrina",0,0,60,NA,76.1904761904763,13.22,NA,NA
+2015-08-28,"BD","Mytilus_trossulus","Nucella_canaliculata",0.0816326530612245,4,64,60.9222293987042,1767.61904761905,13.22,7.58052790675361e-07,0.00133994855189854
+2015-08-28,"BD","Mytilus_trossulus","Nucella_ostrina",0,0,60,NA,1767.61904761905,13.22,NA,NA
+2015-08-28,"BD","Nucella_ostrina","Nucella_canaliculata",0,0,64,NA,22.8571428571429,13.22,NA,NA
+2015-08-28,"BD","Nucella_ostrina","Nucella_ostrina",0,0,60,NA,22.8571428571429,13.22,NA,NA
+2015-08-28,"BD","Pollicipes_polymerus","Nucella_canaliculata",0.122448979591837,6,64,13.1947550281531,17516.1904761905,13.22,5.29802715059759e-07,0.0092801252717896
+2015-08-28,"BD","Pollicipes_polymerus","Nucella_ostrina",0.137254901960784,7,60,16.1529619017365,17516.1904761905,13.22,4.85105318379966e-07,0.00849719715775651
+2015-08-28,"BD","Semibalanus_cariosus","Nucella_canaliculata",0,0,64,NA,11.4285714285714,13.22,NA,NA
+2015-08-28,"BD","Semibalanus_cariosus","Nucella_ostrina",0,0,60,NA,11.4285714285714,13.22,NA,NA
+2015-08-28,"BE","Adula_californiensis","Nucella_canaliculata",0,0,1,NA,0,13.22,NA,NA
+2015-08-28,"BE","Adula_californiensis","Nucella_ostrina",0,0,26,NA,0,13.22,NA,NA
+2015-08-28,"BE","Balanus_glandula","Nucella_canaliculata",0,0,1,NA,1268.57142857143,13.22,NA,NA
+2015-08-28,"BE","Balanus_glandula","Nucella_ostrina",0,0,26,NA,1268.57142857143,13.22,NA,NA
+2015-08-28,"BE","Chthamalus_dalli","Nucella_canaliculata",0,0,1,NA,1097.14285714286,13.22,NA,NA
+2015-08-28,"BE","Chthamalus_dalli","Nucella_ostrina",0,0,26,NA,1097.14285714286,13.22,NA,NA
+2015-08-28,"BE","Hiatella_arctica","Nucella_canaliculata",0,0,1,NA,0,13.22,NA,NA
+2015-08-28,"BE","Hiatella_arctica","Nucella_ostrina",0,0,26,NA,0,13.22,NA,NA
+2015-08-28,"BE","Limpets","Nucella_canaliculata",0,0,1,NA,1074.28571428571,13.22,NA,NA
+2015-08-28,"BE","Limpets","Nucella_ostrina",0,0,26,NA,1074.28571428571,13.22,NA,NA
+2015-08-28,"BE","Littorina_sitkana","Nucella_canaliculata",0,0,1,NA,2274.28571428571,13.22,NA,NA
+2015-08-28,"BE","Littorina_sitkana","Nucella_ostrina",0.04,1,26,21.5494479281266,2274.28571428571,13.22,8.16166602372049e-07,0.00185619604425186
+2015-08-28,"BE","Modiolus_modiolus","Nucella_canaliculata",0,0,1,NA,0,13.22,NA,NA
+2015-08-28,"BE","Modiolus_modiolus","Nucella_ostrina",0,0,26,NA,0,13.22,NA,NA
+2015-08-28,"BE","Mytilus_californianus","Nucella_canaliculata",0,0,1,NA,0,13.22,NA,NA
+2015-08-28,"BE","Mytilus_californianus","Nucella_ostrina",0,0,26,NA,0,13.22,NA,NA
+2015-08-28,"BE","Mytilus_trossulus","Nucella_canaliculata",Inf,1,1,31.2556930136633,182.857142857143,13.22,0.000174968124930372,0.0319941714158394
+2015-08-28,"BE","Mytilus_trossulus","Nucella_ostrina",0,0,26,NA,182.857142857143,13.22,NA,NA
+2015-08-28,"BE","Nucella_ostrina","Nucella_canaliculata",0,0,1,NA,0,13.22,NA,NA
+2015-08-28,"BE","Nucella_ostrina","Nucella_ostrina",0,0,26,NA,0,13.22,NA,NA
+2015-08-28,"BE","Pollicipes_polymerus","Nucella_canaliculata",0,0,1,NA,160,13.22,NA,NA
+2015-08-28,"BE","Pollicipes_polymerus","Nucella_ostrina",0,0,26,NA,160,13.22,NA,NA
+2015-08-28,"BE","Semibalanus_cariosus","Nucella_canaliculata",0,0,1,NA,0,13.22,NA,NA
+2015-08-28,"BE","Semibalanus_cariosus","Nucella_ostrina",0,0,26,NA,0,13.22,NA,NA
+2015-08-28,"BF","Adula_californiensis","Nucella_canaliculata",0,0,4,NA,0,13.22,NA,NA
+2015-08-28,"BF","Adula_californiensis","Nucella_ostrina",0,0,28,NA,0,13.22,NA,NA
+2015-08-28,"BF","Balanus_glandula","Nucella_canaliculata",0,0,4,NA,0,13.22,NA,NA
+2015-08-28,"BF","Balanus_glandula","Nucella_ostrina",0,0,28,NA,0,13.22,NA,NA
+2015-08-28,"BF","Chthamalus_dalli","Nucella_canaliculata",0,0,4,NA,0,13.22,NA,NA
+2015-08-28,"BF","Chthamalus_dalli","Nucella_ostrina",0.0416666666666667,1,28,10.1109742803511,0,13.22,Inf,0.00412093488830632
+2015-08-28,"BF","Hiatella_arctica","Nucella_canaliculata",0,0,4,NA,0,13.22,NA,NA
+2015-08-28,"BF","Hiatella_arctica","Nucella_ostrina",0,0,28,NA,0,13.22,NA,NA
+2015-08-28,"BF","Limpets","Nucella_canaliculata",0,0,4,NA,0,13.22,NA,NA
+2015-08-28,"BF","Limpets","Nucella_ostrina",0,0,28,NA,0,13.22,NA,NA
+2015-08-28,"BF","Littorina_sitkana","Nucella_canaliculata",0,0,4,NA,0,13.22,NA,NA
+2015-08-28,"BF","Littorina_sitkana","Nucella_ostrina",0.0833333333333333,2,28,24.6584657918542,0,13.22,Inf,0.00337950195428874
+2015-08-28,"BF","Modiolus_modiolus","Nucella_canaliculata",0,0,4,NA,0,13.22,NA,NA
+2015-08-28,"BF","Modiolus_modiolus","Nucella_ostrina",0,0,28,NA,0,13.22,NA,NA
+2015-08-28,"BF","Mytilus_californianus","Nucella_canaliculata",0,0,4,NA,0,13.22,NA,NA
+2015-08-28,"BF","Mytilus_californianus","Nucella_ostrina",0,0,28,NA,0,13.22,NA,NA
+2015-08-28,"BF","Mytilus_trossulus","Nucella_canaliculata",0,0,4,NA,0,13.22,NA,NA
+2015-08-28,"BF","Mytilus_trossulus","Nucella_ostrina",0.0416666666666667,1,28,21.3223978559882,0,13.22,Inf,0.00195412668631755
+2015-08-28,"BF","Nucella_ostrina","Nucella_canaliculata",0,0,4,NA,0,13.22,NA,NA
+2015-08-28,"BF","Nucella_ostrina","Nucella_ostrina",0,0,28,NA,0,13.22,NA,NA
+2015-08-28,"BF","Pollicipes_polymerus","Nucella_canaliculata",0,0,4,NA,0,13.22,NA,NA
+2015-08-28,"BF","Pollicipes_polymerus","Nucella_ostrina",0,0,28,NA,0,13.22,NA,NA
+2015-08-28,"BF","Semibalanus_cariosus","Nucella_canaliculata",0,0,4,NA,0,13.22,NA,NA
+2015-08-28,"BF","Semibalanus_cariosus","Nucella_ostrina",0,0,28,NA,0,13.22,NA,NA
+2015-08-28,"C","Adula_californiensis","Nucella_canaliculata",0,0,101,NA,0,13.22,NA,NA
+2015-08-28,"C","Adula_californiensis","Nucella_ostrina",0,0,86,NA,0,13.22,NA,NA
+2015-08-28,"C","Balanus_glandula","Nucella_canaliculata",0.101123595505618,9,101,13.4559002273102,2030.47619047619,13.22,3.70119394703424e-06,0.00751518618578761
+2015-08-28,"C","Balanus_glandula","Nucella_ostrina",0.0789473684210526,6,86,10.7476198374977,2030.47619047619,13.22,3.61765760587189e-06,0.00734556763401796
+2015-08-28,"C","Chthamalus_dalli","Nucella_canaliculata",0,0,101,NA,118.095238095238,13.22,NA,NA
+2015-08-28,"C","Chthamalus_dalli","Nucella_ostrina",0,0,86,NA,118.095238095238,13.22,NA,NA
+2015-08-28,"C","Hiatella_arctica","Nucella_canaliculata",0,0,101,NA,0,13.22,NA,NA
+2015-08-28,"C","Hiatella_arctica","Nucella_ostrina",0,0,86,NA,0,13.22,NA,NA
+2015-08-28,"C","Limpets","Nucella_canaliculata",0,0,101,NA,1782.85714285714,13.22,NA,NA
+2015-08-28,"C","Limpets","Nucella_ostrina",0,0,86,NA,1782.85714285714,13.22,NA,NA
+2015-08-28,"C","Littorina_sitkana","Nucella_canaliculata",0,0,101,NA,1363.80952380952,13.22,NA,NA
+2015-08-28,"C","Littorina_sitkana","Nucella_ostrina",0,0,86,NA,1363.80952380952,13.22,NA,NA
+2015-08-28,"C","Modiolus_modiolus","Nucella_canaliculata",0,0,101,NA,0,13.22,NA,NA
+2015-08-28,"C","Modiolus_modiolus","Nucella_ostrina",0,0,86,NA,0,13.22,NA,NA
+2015-08-28,"C","Mytilus_californianus","Nucella_canaliculata",0,0,101,NA,30.4761904761905,13.22,NA,NA
+2015-08-28,"C","Mytilus_californianus","Nucella_ostrina",0,0,86,NA,30.4761904761905,13.22,NA,NA
+2015-08-28,"C","Mytilus_trossulus","Nucella_canaliculata",0.0112359550561798,1,101,67.3582026193386,384.761904761905,13.22,4.33538267093056e-07,0.0001668090094339
+2015-08-28,"C","Mytilus_trossulus","Nucella_ostrina",0,0,86,NA,384.761904761905,13.22,NA,NA
+2015-08-28,"C","Nucella_ostrina","Nucella_canaliculata",0,0,101,NA,53.3333333333334,13.22,NA,NA
+2015-08-28,"C","Nucella_ostrina","Nucella_ostrina",0,0,86,NA,53.3333333333334,13.22,NA,NA
+2015-08-28,"C","Pollicipes_polymerus","Nucella_canaliculata",0.0224719101123595,2,101,9.58647395012572,11641.9047619047,13.22,2.01352511216035e-07,0.00234412675914744
+2015-08-28,"C","Pollicipes_polymerus","Nucella_ostrina",0.0526315789473684,4,86,11.1078270456351,11641.9047619047,13.22,4.06998911695536e-07,0.00473824256815831
+2015-08-28,"C","Semibalanus_cariosus","Nucella_canaliculata",0,0,101,NA,0,13.22,NA,NA
+2015-08-28,"C","Semibalanus_cariosus","Nucella_ostrina",0,0,86,NA,0,13.22,NA,NA
+2015-08-28,"D","Adula_californiensis","Nucella_canaliculata",0,0,0,NA,0,13.22,NA,NA
+2015-08-28,"D","Adula_californiensis","Nucella_ostrina",0,0,12,NA,0,13.22,NA,NA
+2015-08-28,"D","Balanus_glandula","Nucella_canaliculata",0,0,0,NA,2080,13.22,NA,NA
+2015-08-28,"D","Balanus_glandula","Nucella_ostrina",0.0909090909090909,1,12,8.0110156950388,2080,13.22,5.45577432002298e-06,0.0113480105856478
+2015-08-28,"D","Chthamalus_dalli","Nucella_canaliculata",0,0,0,NA,3011.42857142857,13.22,NA,NA
+2015-08-28,"D","Chthamalus_dalli","Nucella_ostrina",0,0,12,NA,3011.42857142857,13.22,NA,NA
+2015-08-28,"D","Hiatella_arctica","Nucella_canaliculata",0,0,0,NA,0,13.22,NA,NA
+2015-08-28,"D","Hiatella_arctica","Nucella_ostrina",0,0,12,NA,0,13.22,NA,NA
+2015-08-28,"D","Limpets","Nucella_canaliculata",0,0,0,NA,2365.71428571429,13.22,NA,NA
+2015-08-28,"D","Limpets","Nucella_ostrina",0,0,12,NA,2365.71428571429,13.22,NA,NA
+2015-08-28,"D","Littorina_sitkana","Nucella_canaliculata",0,0,0,NA,2068.57142857143,13.22,NA,NA
+2015-08-28,"D","Littorina_sitkana","Nucella_ostrina",0,0,12,NA,2068.57142857143,13.22,NA,NA
+2015-08-28,"D","Modiolus_modiolus","Nucella_canaliculata",0,0,0,NA,0,13.22,NA,NA
+2015-08-28,"D","Modiolus_modiolus","Nucella_ostrina",0,0,12,NA,0,13.22,NA,NA
+2015-08-28,"D","Mytilus_californianus","Nucella_canaliculata",0,0,0,NA,74.2857142857142,13.22,NA,NA
+2015-08-28,"D","Mytilus_californianus","Nucella_ostrina",0,0,12,NA,74.2857142857142,13.22,NA,NA
+2015-08-28,"D","Mytilus_trossulus","Nucella_canaliculata",0,0,0,NA,142.857142857143,13.22,NA,NA
+2015-08-28,"D","Mytilus_trossulus","Nucella_ostrina",0,0,12,NA,142.857142857143,13.22,NA,NA
+2015-08-28,"D","Nucella_ostrina","Nucella_canaliculata",0,0,0,NA,11.4285714285715,13.22,NA,NA
+2015-08-28,"D","Nucella_ostrina","Nucella_ostrina",0,0,12,NA,11.4285714285715,13.22,NA,NA
+2015-08-28,"D","Pollicipes_polymerus","Nucella_canaliculata",0,0,0,NA,268.571428571429,13.22,NA,NA
+2015-08-28,"D","Pollicipes_polymerus","Nucella_ostrina",0,0,12,NA,268.571428571429,13.22,NA,NA
+2015-08-28,"D","Semibalanus_cariosus","Nucella_canaliculata",0,0,0,NA,51.4285714285715,13.22,NA,NA
+2015-08-28,"D","Semibalanus_cariosus","Nucella_ostrina",0,0,12,NA,51.4285714285715,13.22,NA,NA
+2015-08-28,"E","Adula_californiensis","Nucella_canaliculata",0,0,83,NA,0,13.22,NA,NA
+2015-08-28,"E","Adula_californiensis","Nucella_ostrina",0,0,175,NA,0,13.22,NA,NA
+2015-08-28,"E","Balanus_glandula","Nucella_canaliculata",0.0125,1,83,6.70855084129609,6640.00000000001,13.22,2.80616509439499e-07,0.00186329362267828
+2015-08-28,"E","Balanus_glandula","Nucella_ostrina",0.0860927152317881,13,175,11.9133055329038,6640.00000000001,13.22,1.08834364487862e-06,0.00722660180199404
+2015-08-28,"E","Chthamalus_dalli","Nucella_canaliculata",0,0,83,NA,3.8095238095238,13.22,NA,NA
+2015-08-28,"E","Chthamalus_dalli","Nucella_ostrina",0,0,175,NA,3.8095238095238,13.22,NA,NA
+2015-08-28,"E","Hiatella_arctica","Nucella_canaliculata",0,0,83,NA,0,13.22,NA,NA
+2015-08-28,"E","Hiatella_arctica","Nucella_ostrina",0,0,175,NA,0,13.22,NA,NA
+2015-08-28,"E","Limpets","Nucella_canaliculata",0,0,83,NA,777.142857142857,13.22,NA,NA
+2015-08-28,"E","Limpets","Nucella_ostrina",0.00662251655629139,1,175,7.12349941517936,777.142857142857,13.22,1.1962688661978e-06,0.000929671804588005
+2015-08-28,"E","Littorina_sitkana","Nucella_canaliculata",0,0,83,NA,2849.52380952381,13.22,NA,NA
+2015-08-28,"E","Littorina_sitkana","Nucella_ostrina",0.0198675496688742,3,175,25.8044058969558,2849.52380952381,13.22,2.70195525471252e-07,0.000769928583057128
+2015-08-28,"E","Modiolus_modiolus","Nucella_canaliculata",0,0,83,NA,0,13.22,NA,NA
+2015-08-28,"E","Modiolus_modiolus","Nucella_ostrina",0,0,175,NA,0,13.22,NA,NA
+2015-08-28,"E","Mytilus_californianus","Nucella_canaliculata",0,0,83,NA,68.5714285714285,13.22,NA,NA
+2015-08-28,"E","Mytilus_californianus","Nucella_ostrina",0,0,175,NA,68.5714285714285,13.22,NA,NA
+2015-08-28,"E","Mytilus_trossulus","Nucella_canaliculata",0,0,83,NA,102.857142857143,13.22,NA,NA
+2015-08-28,"E","Mytilus_trossulus","Nucella_ostrina",0,0,175,NA,102.857142857143,13.22,NA,NA
+2015-08-28,"E","Nucella_ostrina","Nucella_canaliculata",0,0,83,NA,64.7619047619047,13.22,NA,NA
+2015-08-28,"E","Nucella_ostrina","Nucella_ostrina",0,0,175,NA,64.7619047619047,13.22,NA,NA
+2015-08-28,"E","Pollicipes_polymerus","Nucella_canaliculata",0.025,2,83,10.4383634608896,9135.2380952381,13.22,2.62172854637823e-07,0.00239501144922476
+2015-08-28,"E","Pollicipes_polymerus","Nucella_ostrina",0.0463576158940397,7,175,6.0500960023384,9135.2380952381,13.22,8.38762403770817e-07,0.00766229426378065
+2015-08-28,"E","Semibalanus_cariosus","Nucella_canaliculata",0,0,83,NA,15.2380952380953,13.22,NA,NA
+2015-08-28,"E","Semibalanus_cariosus","Nucella_ostrina",0,0,175,NA,15.2380952380953,13.22,NA,NA
+2015-08-28,"F","Adula_californiensis","Nucella_canaliculata",0,0,1,NA,0,13.22,NA,NA
+2015-08-28,"F","Adula_californiensis","Nucella_ostrina",0,0,10,NA,0,13.22,NA,NA
+2015-08-28,"F","Balanus_glandula","Nucella_canaliculata",0,0,1,NA,8083.80952380952,13.22,NA,NA
+2015-08-28,"F","Balanus_glandula","Nucella_ostrina",0.166666666666667,1,10,8.91940968114318,8083.80952380952,13.22,2.31151419960603e-06,0.0186858405011962
+2015-08-28,"F","Chthamalus_dalli","Nucella_canaliculata",0,0,1,NA,14007.6190476191,13.22,NA,NA
+2015-08-28,"F","Chthamalus_dalli","Nucella_ostrina",0.333333333333333,2,10,12.1529438473941,14007.6190476191,13.22,1.95809127337886e-06,0.0274281966179584
+2015-08-28,"F","Hiatella_arctica","Nucella_canaliculata",0,0,1,NA,0,13.22,NA,NA
+2015-08-28,"F","Hiatella_arctica","Nucella_ostrina",0,0,10,NA,0,13.22,NA,NA
+2015-08-28,"F","Limpets","Nucella_canaliculata",0,0,1,NA,3817.14285714286,13.22,NA,NA
+2015-08-28,"F","Limpets","Nucella_ostrina",0,0,10,NA,3817.14285714286,13.22,NA,NA
+2015-08-28,"F","Littorina_sitkana","Nucella_canaliculata",0,0,1,NA,2240,13.22,NA,NA
+2015-08-28,"F","Littorina_sitkana","Nucella_ostrina",0,0,10,NA,2240,13.22,NA,NA
+2015-08-28,"F","Modiolus_modiolus","Nucella_canaliculata",0,0,1,NA,0,13.22,NA,NA
+2015-08-28,"F","Modiolus_modiolus","Nucella_ostrina",0,0,10,NA,0,13.22,NA,NA
+2015-08-28,"F","Mytilus_californianus","Nucella_canaliculata",0,0,1,NA,0,13.22,NA,NA
+2015-08-28,"F","Mytilus_californianus","Nucella_ostrina",0,0,10,NA,0,13.22,NA,NA
+2015-08-28,"F","Mytilus_trossulus","Nucella_canaliculata",0,0,1,NA,278.095238095238,13.22,NA,NA
+2015-08-28,"F","Mytilus_trossulus","Nucella_ostrina",0.166666666666667,1,10,25.8697241265944,278.095238095238,13.22,2.31666586609266e-05,0.00644253745618151
+2015-08-28,"F","Nucella_ostrina","Nucella_canaliculata",0,0,1,NA,0,13.22,NA,NA
+2015-08-28,"F","Nucella_ostrina","Nucella_ostrina",0,0,10,NA,0,13.22,NA,NA
+2015-08-28,"F","Pollicipes_polymerus","Nucella_canaliculata",0,0,1,NA,0,13.22,NA,NA
+2015-08-28,"F","Pollicipes_polymerus","Nucella_ostrina",0,0,10,NA,0,13.22,NA,NA
+2015-08-28,"F","Semibalanus_cariosus","Nucella_canaliculata",0,0,1,NA,11.4285714285714,13.22,NA,NA
+2015-08-28,"F","Semibalanus_cariosus","Nucella_ostrina",0,0,10,NA,11.4285714285714,13.22,NA,NA
+2015-08-28,"G","Adula_californiensis","Nucella_canaliculata",0,0,5,NA,0,13.22,NA,NA
+2015-08-28,"G","Adula_californiensis","Nucella_ostrina",0,0,27,NA,0,13.22,NA,NA
+2015-08-28,"G","Balanus_glandula","Nucella_canaliculata",0,0,5,NA,182.857142857143,13.22,NA,NA
+2015-08-28,"G","Balanus_glandula","Nucella_ostrina",0,0,27,NA,182.857142857143,13.22,NA,NA
+2015-08-28,"G","Chthamalus_dalli","Nucella_canaliculata",0,0,5,NA,34.2857142857143,13.22,NA,NA
+2015-08-28,"G","Chthamalus_dalli","Nucella_ostrina",0,0,27,NA,34.2857142857143,13.22,NA,NA
+2015-08-28,"G","Hiatella_arctica","Nucella_canaliculata",0,0,5,NA,0,13.22,NA,NA
+2015-08-28,"G","Hiatella_arctica","Nucella_ostrina",0,0,27,NA,0,13.22,NA,NA
+2015-08-28,"G","Limpets","Nucella_canaliculata",0,0,5,NA,1028.57142857143,13.22,NA,NA
+2015-08-28,"G","Limpets","Nucella_ostrina",0,0,27,NA,1028.57142857143,13.22,NA,NA
+2015-08-28,"G","Littorina_sitkana","Nucella_canaliculata",0,0,5,NA,3142.85714285714,13.22,NA,NA
+2015-08-28,"G","Littorina_sitkana","Nucella_ostrina",0.04,1,27,24.9172422971812,3142.85714285714,13.22,5.10781754075271e-07,0.00160531408423656
+2015-08-28,"G","Modiolus_modiolus","Nucella_canaliculata",0,0,5,NA,0,13.22,NA,NA
+2015-08-28,"G","Modiolus_modiolus","Nucella_ostrina",0,0,27,NA,0,13.22,NA,NA
+2015-08-28,"G","Mytilus_californianus","Nucella_canaliculata",0,0,5,NA,68.5714285714286,13.22,NA,NA
+2015-08-28,"G","Mytilus_californianus","Nucella_ostrina",0,0,27,NA,68.5714285714286,13.22,NA,NA
+2015-08-28,"G","Mytilus_trossulus","Nucella_canaliculata",0,0,5,NA,434.285714285714,13.22,NA,NA
+2015-08-28,"G","Mytilus_trossulus","Nucella_ostrina",0,0,27,NA,434.285714285714,13.22,NA,NA
+2015-08-28,"G","Nucella_ostrina","Nucella_canaliculata",0,0,5,NA,22.8571428571429,13.22,NA,NA
+2015-08-28,"G","Nucella_ostrina","Nucella_ostrina",0,0,27,NA,22.8571428571429,13.22,NA,NA
+2015-08-28,"G","Pollicipes_polymerus","Nucella_canaliculata",0,0,5,NA,10845.7142857143,13.22,NA,NA
+2015-08-28,"G","Pollicipes_polymerus","Nucella_ostrina",0.04,1,27,5.56876598875647,10845.7142857143,13.22,6.62281865791272e-07,0.00718291989298192
+2015-08-28,"G","Semibalanus_cariosus","Nucella_canaliculata",0.25,1,5,45.6544323609294,80,13.22,6.84489947283705e-05,0.00547591957826964
+2015-08-28,"G","Semibalanus_cariosus","Nucella_ostrina",0,0,27,NA,80,13.22,NA,NA
+2015-09-29,"A","Adula_californiensis","Nucella_canaliculata",0,0,25,NA,0,13.22,NA,NA
+2015-09-29,"A","Adula_californiensis","Nucella_ostrina",0,0,2,NA,0,13.22,NA,NA
+2015-09-29,"A","Balanus_glandula","Nucella_canaliculata",0.19047619047619,4,25,20.7236788382459,12853.7142857143,13.22,7.15064472941428e-07,0.009191234431054
+2015-09-29,"A","Balanus_glandula","Nucella_ostrina",0,0,2,NA,12853.7142857143,13.22,NA,NA
+2015-09-29,"A","Chthamalus_dalli","Nucella_canaliculata",0,0,25,NA,600,13.22,NA,NA
+2015-09-29,"A","Chthamalus_dalli","Nucella_ostrina",0,0,2,NA,600,13.22,NA,NA
+2015-09-29,"A","Hiatella_arctica","Nucella_canaliculata",0,0,25,NA,0,13.22,NA,NA
+2015-09-29,"A","Hiatella_arctica","Nucella_ostrina",0,0,2,NA,0,13.22,NA,NA
+2015-09-29,"A","Limpets","Nucella_canaliculata",0,0,25,NA,1657.14285714286,13.22,NA,NA
+2015-09-29,"A","Limpets","Nucella_ostrina",0,0,2,NA,1657.14285714286,13.22,NA,NA
+2015-09-29,"A","Littorina_sitkana","Nucella_canaliculata",0,0,25,NA,2337.14285714286,13.22,NA,NA
+2015-09-29,"A","Littorina_sitkana","Nucella_ostrina",0,0,2,NA,2337.14285714286,13.22,NA,NA
+2015-09-29,"A","Modiolus_modiolus","Nucella_canaliculata",0,0,25,NA,0,13.22,NA,NA
+2015-09-29,"A","Modiolus_modiolus","Nucella_ostrina",0,0,2,NA,0,13.22,NA,NA
+2015-09-29,"A","Mytilus_californianus","Nucella_canaliculata",0,0,25,NA,22.8571428571429,13.22,NA,NA
+2015-09-29,"A","Mytilus_californianus","Nucella_ostrina",0,0,2,NA,22.8571428571429,13.22,NA,NA
+2015-09-29,"A","Mytilus_trossulus","Nucella_canaliculata",0,0,25,NA,1148.57142857143,13.22,NA,NA
+2015-09-29,"A","Mytilus_trossulus","Nucella_ostrina",0,0,2,NA,1148.57142857143,13.22,NA,NA
+2015-09-29,"A","Nucella_ostrina","Nucella_canaliculata",0,0,25,NA,11.4285714285714,13.22,NA,NA
+2015-09-29,"A","Nucella_ostrina","Nucella_ostrina",0,0,2,NA,11.4285714285714,13.22,NA,NA
+2015-09-29,"A","Pollicipes_polymerus","Nucella_canaliculata",0,0,25,NA,13080,13.22,NA,NA
+2015-09-29,"A","Pollicipes_polymerus","Nucella_ostrina",0,0,2,NA,13080,13.22,NA,NA
+2015-09-29,"A","Semibalanus_cariosus","Nucella_canaliculata",0,0,25,NA,17.1428571428571,13.22,NA,NA
+2015-09-29,"A","Semibalanus_cariosus","Nucella_ostrina",0,0,2,NA,17.1428571428571,13.22,NA,NA
+2015-09-29,"AB","Adula_californiensis","Nucella_canaliculata",0,0,19,NA,0,13.22,NA,NA
+2015-09-29,"AB","Adula_californiensis","Nucella_ostrina",0,0,4,NA,0,13.22,NA,NA
+2015-09-29,"AB","Balanus_glandula","Nucella_canaliculata",0,0,19,NA,1264.76190476191,13.22,NA,NA
+2015-09-29,"AB","Balanus_glandula","Nucella_ostrina",0,0,4,NA,1264.76190476191,13.22,NA,NA
+2015-09-29,"AB","Chthamalus_dalli","Nucella_canaliculata",0,0,19,NA,179.047619047619,13.22,NA,NA
+2015-09-29,"AB","Chthamalus_dalli","Nucella_ostrina",0,0,4,NA,179.047619047619,13.22,NA,NA
+2015-09-29,"AB","Hiatella_arctica","Nucella_canaliculata",0,0,19,NA,0,13.22,NA,NA
+2015-09-29,"AB","Hiatella_arctica","Nucella_ostrina",0,0,4,NA,0,13.22,NA,NA
+2015-09-29,"AB","Limpets","Nucella_canaliculata",0,0,19,NA,1756.19047619047,13.22,NA,NA
+2015-09-29,"AB","Limpets","Nucella_ostrina",0,0,4,NA,1756.19047619047,13.22,NA,NA
+2015-09-29,"AB","Littorina_sitkana","Nucella_canaliculata",0,0,19,NA,2986.66666666667,13.22,NA,NA
+2015-09-29,"AB","Littorina_sitkana","Nucella_ostrina",0,0,4,NA,2986.66666666667,13.22,NA,NA
+2015-09-29,"AB","Modiolus_modiolus","Nucella_canaliculata",0,0,19,NA,0,13.22,NA,NA
+2015-09-29,"AB","Modiolus_modiolus","Nucella_ostrina",0,0,4,NA,0,13.22,NA,NA
+2015-09-29,"AB","Mytilus_californianus","Nucella_canaliculata",0,0,19,NA,68.5714285714285,13.22,NA,NA
+2015-09-29,"AB","Mytilus_californianus","Nucella_ostrina",0,0,4,NA,68.5714285714285,13.22,NA,NA
+2015-09-29,"AB","Mytilus_trossulus","Nucella_canaliculata",0,0,19,NA,609.523809523808,13.22,NA,NA
+2015-09-29,"AB","Mytilus_trossulus","Nucella_ostrina",0,0,4,NA,609.523809523808,13.22,NA,NA
+2015-09-29,"AB","Nucella_ostrina","Nucella_canaliculata",0,0,19,NA,11.4285714285714,13.22,NA,NA
+2015-09-29,"AB","Nucella_ostrina","Nucella_ostrina",0,0,4,NA,11.4285714285714,13.22,NA,NA
+2015-09-29,"AB","Pollicipes_polymerus","Nucella_canaliculata",0,0,19,NA,10392.3809523809,13.22,NA,NA
+2015-09-29,"AB","Pollicipes_polymerus","Nucella_ostrina",0,0,4,NA,10392.3809523809,13.22,NA,NA
+2015-09-29,"AB","Semibalanus_cariosus","Nucella_canaliculata",0,0,19,NA,80,13.22,NA,NA
+2015-09-29,"AB","Semibalanus_cariosus","Nucella_ostrina",0,0,4,NA,80,13.22,NA,NA
+2015-09-29,"AC","Adula_californiensis","Nucella_canaliculata",0,0,1,NA,0,13.22,NA,NA
+2015-09-29,"AC","Adula_californiensis","Nucella_ostrina",0,0,10,NA,0,13.22,NA,NA
+2015-09-29,"AC","Balanus_glandula","Nucella_canaliculata",0,0,1,NA,841.904761904762,13.22,NA,NA
+2015-09-29,"AC","Balanus_glandula","Nucella_ostrina",0.285714285714286,2,10,15.0658204877518,841.904761904762,13.22,2.2525591361785e-05,0.0189644026322075
+2015-09-29,"AC","Chthamalus_dalli","Nucella_canaliculata",0,0,1,NA,792.380952380952,13.22,NA,NA
+2015-09-29,"AC","Chthamalus_dalli","Nucella_ostrina",0.142857142857143,1,10,10.1109742803511,792.380952380952,13.22,1.783096826671e-05,0.0141289196170502
+2015-09-29,"AC","Hiatella_arctica","Nucella_canaliculata",0,0,1,NA,0,13.22,NA,NA
+2015-09-29,"AC","Hiatella_arctica","Nucella_ostrina",0,0,10,NA,0,13.22,NA,NA
+2015-09-29,"AC","Limpets","Nucella_canaliculata",0,0,1,NA,2529.52380952381,13.22,NA,NA
+2015-09-29,"AC","Limpets","Nucella_ostrina",0,0,10,NA,2529.52380952381,13.22,NA,NA
+2015-09-29,"AC","Littorina_sitkana","Nucella_canaliculata",0,0,1,NA,2156.19047619047,13.22,NA,NA
+2015-09-29,"AC","Littorina_sitkana","Nucella_ostrina",0,0,10,NA,2156.19047619047,13.22,NA,NA
+2015-09-29,"AC","Modiolus_modiolus","Nucella_canaliculata",0,0,1,NA,0,13.22,NA,NA
+2015-09-29,"AC","Modiolus_modiolus","Nucella_ostrina",0,0,10,NA,0,13.22,NA,NA
+2015-09-29,"AC","Mytilus_californianus","Nucella_canaliculata",0,0,1,NA,11.4285714285714,13.22,NA,NA
+2015-09-29,"AC","Mytilus_californianus","Nucella_ostrina",0,0,10,NA,11.4285714285714,13.22,NA,NA
+2015-09-29,"AC","Mytilus_trossulus","Nucella_canaliculata",0,0,1,NA,2704.76190476191,13.22,NA,NA
+2015-09-29,"AC","Mytilus_trossulus","Nucella_ostrina",0,0,10,NA,2704.76190476191,13.22,NA,NA
+2015-09-29,"AC","Nucella_ostrina","Nucella_canaliculata",0,0,1,NA,7.61904761904763,13.22,NA,NA
+2015-09-29,"AC","Nucella_ostrina","Nucella_ostrina",0,0,10,NA,7.61904761904763,13.22,NA,NA
+2015-09-29,"AC","Pollicipes_polymerus","Nucella_canaliculata",0,0,1,NA,384.761904761905,13.22,NA,NA
+2015-09-29,"AC","Pollicipes_polymerus","Nucella_ostrina",0,0,10,NA,384.761904761905,13.22,NA,NA
+2015-09-29,"AC","Semibalanus_cariosus","Nucella_canaliculata",0,0,1,NA,22.8571428571428,13.22,NA,NA
+2015-09-29,"AC","Semibalanus_cariosus","Nucella_ostrina",0,0,10,NA,22.8571428571428,13.22,NA,NA
+2015-09-29,"AD","Adula_californiensis","Nucella_canaliculata",0,0,5,NA,0,13.22,NA,NA
+2015-09-29,"AD","Adula_californiensis","Nucella_ostrina",0,0,6,NA,0,13.22,NA,NA
+2015-09-29,"AD","Balanus_glandula","Nucella_canaliculata",0,0,5,NA,17446.0952380952,13.22,NA,NA
+2015-09-29,"AD","Balanus_glandula","Nucella_ostrina",0.2,1,6,16.4897175842405,17446.0952380952,13.22,6.95214047785883e-07,0.0121287704885342
+2015-09-29,"AD","Chthamalus_dalli","Nucella_canaliculata",0,0,5,NA,2112.7619047619,13.22,NA,NA
+2015-09-29,"AD","Chthamalus_dalli","Nucella_ostrina",0,0,6,NA,2112.7619047619,13.22,NA,NA
+2015-09-29,"AD","Hiatella_arctica","Nucella_canaliculata",0,0,5,NA,0,13.22,NA,NA
+2015-09-29,"AD","Hiatella_arctica","Nucella_ostrina",0,0,6,NA,0,13.22,NA,NA
+2015-09-29,"AD","Limpets","Nucella_canaliculata",0,0,5,NA,1588.57142857143,13.22,NA,NA
+2015-09-29,"AD","Limpets","Nucella_ostrina",0,0,6,NA,1588.57142857143,13.22,NA,NA
+2015-09-29,"AD","Littorina_sitkana","Nucella_canaliculata",0,0,5,NA,3051.42857142857,13.22,NA,NA
+2015-09-29,"AD","Littorina_sitkana","Nucella_ostrina",0,0,6,NA,3051.42857142857,13.22,NA,NA
+2015-09-29,"AD","Modiolus_modiolus","Nucella_canaliculata",0,0,5,NA,0,13.22,NA,NA
+2015-09-29,"AD","Modiolus_modiolus","Nucella_ostrina",0,0,6,NA,0,13.22,NA,NA
+2015-09-29,"AD","Mytilus_californianus","Nucella_canaliculata",0,0,5,NA,91.4285714285715,13.22,NA,NA
+2015-09-29,"AD","Mytilus_californianus","Nucella_ostrina",0,0,6,NA,91.4285714285715,13.22,NA,NA
+2015-09-29,"AD","Mytilus_trossulus","Nucella_canaliculata",0,0,5,NA,2495.2380952381,13.22,NA,NA
+2015-09-29,"AD","Mytilus_trossulus","Nucella_ostrina",0,0,6,NA,2495.2380952381,13.22,NA,NA
+2015-09-29,"AD","Nucella_ostrina","Nucella_canaliculata",0,0,5,NA,7.61904761904763,13.22,NA,NA
+2015-09-29,"AD","Nucella_ostrina","Nucella_ostrina",0,0,6,NA,7.61904761904763,13.22,NA,NA
+2015-09-29,"AD","Pollicipes_polymerus","Nucella_canaliculata",0,0,5,NA,10708.5714285714,13.22,NA,NA
+2015-09-29,"AD","Pollicipes_polymerus","Nucella_ostrina",0,0,6,NA,10708.5714285714,13.22,NA,NA
+2015-09-29,"AD","Semibalanus_cariosus","Nucella_canaliculata",0,0,5,NA,68.5714285714286,13.22,NA,NA
+2015-09-29,"AD","Semibalanus_cariosus","Nucella_ostrina",0,0,6,NA,68.5714285714286,13.22,NA,NA
+2015-09-29,"AE","Adula_californiensis","Nucella_canaliculata",0,0,4,NA,0,13.22,NA,NA
+2015-09-29,"AE","Adula_californiensis","Nucella_ostrina",0,0,2,NA,0,13.22,NA,NA
+2015-09-29,"AE","Balanus_glandula","Nucella_canaliculata",0,0,4,NA,1424.7619047619,13.22,NA,NA
+2015-09-29,"AE","Balanus_glandula","Nucella_ostrina",0,0,2,NA,1424.7619047619,13.22,NA,NA
+2015-09-29,"AE","Chthamalus_dalli","Nucella_canaliculata",0,0,4,NA,1904.76190476191,13.22,NA,NA
+2015-09-29,"AE","Chthamalus_dalli","Nucella_ostrina",0,0,2,NA,1904.76190476191,13.22,NA,NA
+2015-09-29,"AE","Hiatella_arctica","Nucella_canaliculata",0,0,4,NA,0,13.22,NA,NA
+2015-09-29,"AE","Hiatella_arctica","Nucella_ostrina",0,0,2,NA,0,13.22,NA,NA
+2015-09-29,"AE","Limpets","Nucella_canaliculata",0,0,4,NA,1352.38095238095,13.22,NA,NA
+2015-09-29,"AE","Limpets","Nucella_ostrina",0,0,2,NA,1352.38095238095,13.22,NA,NA
+2015-09-29,"AE","Littorina_sitkana","Nucella_canaliculata",0,0,4,NA,1177.14285714286,13.22,NA,NA
+2015-09-29,"AE","Littorina_sitkana","Nucella_ostrina",0,0,2,NA,1177.14285714286,13.22,NA,NA
+2015-09-29,"AE","Modiolus_modiolus","Nucella_canaliculata",0,0,4,NA,0,13.22,NA,NA
+2015-09-29,"AE","Modiolus_modiolus","Nucella_ostrina",0,0,2,NA,0,13.22,NA,NA
+2015-09-29,"AE","Mytilus_californianus","Nucella_canaliculata",0,0,4,NA,76.1904761904761,13.22,NA,NA
+2015-09-29,"AE","Mytilus_californianus","Nucella_ostrina",0,0,2,NA,76.1904761904761,13.22,NA,NA
+2015-09-29,"AE","Mytilus_trossulus","Nucella_canaliculata",0,0,4,NA,205.714285714286,13.22,NA,NA
+2015-09-29,"AE","Mytilus_trossulus","Nucella_ostrina",0,0,2,NA,205.714285714286,13.22,NA,NA
+2015-09-29,"AE","Nucella_ostrina","Nucella_canaliculata",0,0,4,NA,3.8095238095238,13.22,NA,NA
+2015-09-29,"AE","Nucella_ostrina","Nucella_ostrina",0,0,2,NA,3.8095238095238,13.22,NA,NA
+2015-09-29,"AE","Pollicipes_polymerus","Nucella_canaliculata",0,0,4,NA,811.428571428572,13.22,NA,NA
+2015-09-29,"AE","Pollicipes_polymerus","Nucella_ostrina",0,0,2,NA,811.428571428572,13.22,NA,NA
+2015-09-29,"AE","Semibalanus_cariosus","Nucella_canaliculata",0,0,4,NA,121.904761904762,13.22,NA,NA
+2015-09-29,"AE","Semibalanus_cariosus","Nucella_ostrina",0,0,2,NA,121.904761904762,13.22,NA,NA
+2015-09-29,"AF","Adula_californiensis","Nucella_canaliculata",0,0,13,NA,0,13.22,NA,NA
+2015-09-29,"AF","Adula_californiensis","Nucella_ostrina",0,0,28,NA,0,13.22,NA,NA
+2015-09-29,"AF","Balanus_glandula","Nucella_canaliculata",0.2,2,13,12.5278660326942,13626.6666666667,13.22,1.17155656676856e-06,0.0159644108164996
+2015-09-29,"AF","Balanus_glandula","Nucella_ostrina",0.136363636363636,3,28,17.5253585835786,13626.6666666667,13.22,5.71007784164627e-07,0.00778093273888332
+2015-09-29,"AF","Chthamalus_dalli","Nucella_canaliculata",0,0,13,NA,14905.1428571429,13.22,NA,NA
+2015-09-29,"AF","Chthamalus_dalli","Nucella_ostrina",0.0454545454545455,1,28,18.2281361180585,14905.1428571429,13.22,1.67301145024892e-07,0.00249364746675959
+2015-09-29,"AF","Hiatella_arctica","Nucella_canaliculata",0,0,13,NA,0,13.22,NA,NA
+2015-09-29,"AF","Hiatella_arctica","Nucella_ostrina",0,0,28,NA,0,13.22,NA,NA
+2015-09-29,"AF","Limpets","Nucella_canaliculata",0,0,13,NA,910.476190476192,13.22,NA,NA
+2015-09-29,"AF","Limpets","Nucella_ostrina",0,0,28,NA,910.476190476192,13.22,NA,NA
+2015-09-29,"AF","Littorina_sitkana","Nucella_canaliculata",0,0,13,NA,4643.80952380952,13.22,NA,NA
+2015-09-29,"AF","Littorina_sitkana","Nucella_ostrina",0,0,28,NA,4643.80952380952,13.22,NA,NA
+2015-09-29,"AF","Modiolus_modiolus","Nucella_canaliculata",0,0,13,NA,0,13.22,NA,NA
+2015-09-29,"AF","Modiolus_modiolus","Nucella_ostrina",0,0,28,NA,0,13.22,NA,NA
+2015-09-29,"AF","Mytilus_californianus","Nucella_canaliculata",0,0,13,NA,3.8095238095238,13.22,NA,NA
+2015-09-29,"AF","Mytilus_californianus","Nucella_ostrina",0,0,28,NA,3.8095238095238,13.22,NA,NA
+2015-09-29,"AF","Mytilus_trossulus","Nucella_canaliculata",0.1,1,13,30.0972073319331,232.380952380952,13.22,1.42979334961713e-05,0.00332256740291981
+2015-09-29,"AF","Mytilus_trossulus","Nucella_ostrina",0.0909090909090909,2,28,32.1521408355728,232.380952380952,13.22,1.21673749658812e-05,0.00282746618254763
+2015-09-29,"AF","Nucella_ostrina","Nucella_canaliculata",0,0,13,NA,7.6190476190476,13.22,NA,NA
+2015-09-29,"AF","Nucella_ostrina","Nucella_ostrina",0,0,28,NA,7.6190476190476,13.22,NA,NA
+2015-09-29,"AF","Pollicipes_polymerus","Nucella_canaliculata",0,0,13,NA,19.047619047619,13.22,NA,NA
+2015-09-29,"AF","Pollicipes_polymerus","Nucella_ostrina",0,0,28,NA,19.047619047619,13.22,NA,NA
+2015-09-29,"AF","Semibalanus_cariosus","Nucella_canaliculata",0,0,13,NA,0,13.22,NA,NA
+2015-09-29,"AF","Semibalanus_cariosus","Nucella_ostrina",0,0,28,NA,0,13.22,NA,NA
+2015-09-29,"AG","Adula_californiensis","Nucella_canaliculata",0,0,3,NA,0,13.22,NA,NA
+2015-09-29,"AG","Adula_californiensis","Nucella_ostrina",0,0,15,NA,0,13.22,NA,NA
+2015-09-29,"AG","Balanus_glandula","Nucella_canaliculata",0,0,3,NA,0,13.22,NA,NA
+2015-09-29,"AG","Balanus_glandula","Nucella_ostrina",0,0,15,NA,0,13.22,NA,NA
+2015-09-29,"AG","Chthamalus_dalli","Nucella_canaliculata",0,0,3,NA,0,13.22,NA,NA
+2015-09-29,"AG","Chthamalus_dalli","Nucella_ostrina",0,0,15,NA,0,13.22,NA,NA
+2015-09-29,"AG","Hiatella_arctica","Nucella_canaliculata",0,0,3,NA,0,13.22,NA,NA
+2015-09-29,"AG","Hiatella_arctica","Nucella_ostrina",0,0,15,NA,0,13.22,NA,NA
+2015-09-29,"AG","Limpets","Nucella_canaliculata",0,0,3,NA,0,13.22,NA,NA
+2015-09-29,"AG","Limpets","Nucella_ostrina",0,0,15,NA,0,13.22,NA,NA
+2015-09-29,"AG","Littorina_sitkana","Nucella_canaliculata",0,0,3,NA,0,13.22,NA,NA
+2015-09-29,"AG","Littorina_sitkana","Nucella_ostrina",0,0,15,NA,0,13.22,NA,NA
+2015-09-29,"AG","Modiolus_modiolus","Nucella_canaliculata",0,0,3,NA,0,13.22,NA,NA
+2015-09-29,"AG","Modiolus_modiolus","Nucella_ostrina",0,0,15,NA,0,13.22,NA,NA
+2015-09-29,"AG","Mytilus_californianus","Nucella_canaliculata",0,0,3,NA,0,13.22,NA,NA
+2015-09-29,"AG","Mytilus_californianus","Nucella_ostrina",0,0,15,NA,0,13.22,NA,NA
+2015-09-29,"AG","Mytilus_trossulus","Nucella_canaliculata",0,0,3,NA,0,13.22,NA,NA
+2015-09-29,"AG","Mytilus_trossulus","Nucella_ostrina",0,0,15,NA,0,13.22,NA,NA
+2015-09-29,"AG","Nucella_ostrina","Nucella_canaliculata",0,0,3,NA,0,13.22,NA,NA
+2015-09-29,"AG","Nucella_ostrina","Nucella_ostrina",0,0,15,NA,0,13.22,NA,NA
+2015-09-29,"AG","Pollicipes_polymerus","Nucella_canaliculata",0,0,3,NA,0,13.22,NA,NA
+2015-09-29,"AG","Pollicipes_polymerus","Nucella_ostrina",0,0,15,NA,0,13.22,NA,NA
+2015-09-29,"AG","Semibalanus_cariosus","Nucella_canaliculata",0,0,3,NA,0,13.22,NA,NA
+2015-09-29,"AG","Semibalanus_cariosus","Nucella_ostrina",0,0,15,NA,0,13.22,NA,NA
+2015-09-29,"B","Adula_californiensis","Nucella_canaliculata",0,0,101,NA,0,13.22,NA,NA
+2015-09-29,"B","Adula_californiensis","Nucella_ostrina",0,0,4,NA,0,13.22,NA,NA
+2015-09-29,"B","Balanus_glandula","Nucella_canaliculata",0.0645161290322581,6,101,15.8275127308513,1340.95238095238,13.22,3.03978084909042e-06,0.00407620136716126
+2015-09-29,"B","Balanus_glandula","Nucella_ostrina",0,0,4,NA,1340.95238095238,13.22,NA,NA
+2015-09-29,"B","Chthamalus_dalli","Nucella_canaliculata",0,0,101,NA,1611.42857142857,13.22,NA,NA
+2015-09-29,"B","Chthamalus_dalli","Nucella_ostrina",0,0,4,NA,1611.42857142857,13.22,NA,NA
+2015-09-29,"B","Hiatella_arctica","Nucella_canaliculata",0,0,101,NA,0,13.22,NA,NA
+2015-09-29,"B","Hiatella_arctica","Nucella_ostrina",0,0,4,NA,0,13.22,NA,NA
+2015-09-29,"B","Limpets","Nucella_canaliculata",0,0,101,NA,956.190476190479,13.22,NA,NA
+2015-09-29,"B","Limpets","Nucella_ostrina",0,0,4,NA,956.190476190479,13.22,NA,NA
+2015-09-29,"B","Littorina_sitkana","Nucella_canaliculata",0,0,101,NA,1851.42857142857,13.22,NA,NA
+2015-09-29,"B","Littorina_sitkana","Nucella_ostrina",0,0,4,NA,1851.42857142857,13.22,NA,NA
+2015-09-29,"B","Modiolus_modiolus","Nucella_canaliculata",0,0,101,NA,0,13.22,NA,NA
+2015-09-29,"B","Modiolus_modiolus","Nucella_ostrina",0,0,4,NA,0,13.22,NA,NA
+2015-09-29,"B","Mytilus_californianus","Nucella_canaliculata",0,0,101,NA,53.3333333333334,13.22,NA,NA
+2015-09-29,"B","Mytilus_californianus","Nucella_ostrina",0,0,4,NA,53.3333333333334,13.22,NA,NA
+2015-09-29,"B","Mytilus_trossulus","Nucella_canaliculata",0,0,101,NA,994.285714285715,13.22,NA,NA
+2015-09-29,"B","Mytilus_trossulus","Nucella_ostrina",0,0,4,NA,994.285714285715,13.22,NA,NA
+2015-09-29,"B","Nucella_ostrina","Nucella_canaliculata",0,0,101,NA,57.1428571428571,13.22,NA,NA
+2015-09-29,"B","Nucella_ostrina","Nucella_ostrina",0,0,4,NA,57.1428571428571,13.22,NA,NA
+2015-09-29,"B","Pollicipes_polymerus","Nucella_canaliculata",0.021505376344086,2,101,10.6910525654651,7828.57142857143,13.22,2.56947303123193e-07,0.00201153031587871
+2015-09-29,"B","Pollicipes_polymerus","Nucella_ostrina",0,0,4,NA,7828.57142857143,13.22,NA,NA
+2015-09-29,"B","Semibalanus_cariosus","Nucella_canaliculata",0,0,101,NA,22.8571428571429,13.22,NA,NA
+2015-09-29,"B","Semibalanus_cariosus","Nucella_ostrina",0,0,4,NA,22.8571428571429,13.22,NA,NA
+2015-09-29,"BB","Adula_californiensis","Nucella_canaliculata",0,0,0,NA,0,13.22,NA,NA
+2015-09-29,"BB","Adula_californiensis","Nucella_ostrina",0,0,2,NA,0,13.22,NA,NA
+2015-09-29,"BB","Balanus_glandula","Nucella_canaliculata",0,0,0,NA,22642.2857142857,13.22,NA,NA
+2015-09-29,"BB","Balanus_glandula","Nucella_ostrina",1,1,2,7.6321884029206,22642.2857142857,13.22,5.78669578124779e-06,0.131024019220664
+2015-09-29,"BB","Chthamalus_dalli","Nucella_canaliculata",0,0,0,NA,102.857142857143,13.22,NA,NA
+2015-09-29,"BB","Chthamalus_dalli","Nucella_ostrina",0,0,2,NA,102.857142857143,13.22,NA,NA
+2015-09-29,"BB","Hiatella_arctica","Nucella_canaliculata",0,0,0,NA,0,13.22,NA,NA
+2015-09-29,"BB","Hiatella_arctica","Nucella_ostrina",0,0,2,NA,0,13.22,NA,NA
+2015-09-29,"BB","Limpets","Nucella_canaliculata",0,0,0,NA,540.952380952381,13.22,NA,NA
+2015-09-29,"BB","Limpets","Nucella_ostrina",0,0,2,NA,540.952380952381,13.22,NA,NA
+2015-09-29,"BB","Littorina_sitkana","Nucella_canaliculata",0,0,0,NA,1603.80952380952,13.22,NA,NA
+2015-09-29,"BB","Littorina_sitkana","Nucella_ostrina",0,0,2,NA,1603.80952380952,13.22,NA,NA
+2015-09-29,"BB","Modiolus_modiolus","Nucella_canaliculata",0,0,0,NA,0,13.22,NA,NA
+2015-09-29,"BB","Modiolus_modiolus","Nucella_ostrina",0,0,2,NA,0,13.22,NA,NA
+2015-09-29,"BB","Mytilus_californianus","Nucella_canaliculata",0,0,0,NA,11.4285714285714,13.22,NA,NA
+2015-09-29,"BB","Mytilus_californianus","Nucella_ostrina",0,0,2,NA,11.4285714285714,13.22,NA,NA
+2015-09-29,"BB","Mytilus_trossulus","Nucella_canaliculata",0,0,0,NA,95.238095238095,13.22,NA,NA
+2015-09-29,"BB","Mytilus_trossulus","Nucella_ostrina",0,0,2,NA,95.238095238095,13.22,NA,NA
+2015-09-29,"BB","Nucella_ostrina","Nucella_canaliculata",0,0,0,NA,3.8095238095238,13.22,NA,NA
+2015-09-29,"BB","Nucella_ostrina","Nucella_ostrina",0,0,2,NA,3.8095238095238,13.22,NA,NA
+2015-09-29,"BB","Pollicipes_polymerus","Nucella_canaliculata",0,0,0,NA,76.1904761904763,13.22,NA,NA
+2015-09-29,"BB","Pollicipes_polymerus","Nucella_ostrina",0,0,2,NA,76.1904761904763,13.22,NA,NA
+2015-09-29,"BB","Semibalanus_cariosus","Nucella_canaliculata",0,0,0,NA,19.047619047619,13.22,NA,NA
+2015-09-29,"BB","Semibalanus_cariosus","Nucella_ostrina",0,0,2,NA,19.047619047619,13.22,NA,NA
+2015-09-29,"BC","Adula_californiensis","Nucella_canaliculata",0,0,0,NA,0,13.22,NA,NA
+2015-09-29,"BC","Adula_californiensis","Nucella_ostrina",0,0,3,NA,0,13.22,NA,NA
+2015-09-29,"BC","Balanus_glandula","Nucella_canaliculata",0,0,0,NA,12060.9523809524,13.22,NA,NA
+2015-09-29,"BC","Balanus_glandula","Nucella_ostrina",1,1,3,18.2733083198292,12060.9523809524,13.22,4.53733886547834e-06,0.0547246279927788
+2015-09-29,"BC","Chthamalus_dalli","Nucella_canaliculata",0,0,0,NA,1760,13.22,NA,NA
+2015-09-29,"BC","Chthamalus_dalli","Nucella_ostrina",0,0,3,NA,1760,13.22,NA,NA
+2015-09-29,"BC","Hiatella_arctica","Nucella_canaliculata",0,0,0,NA,0,13.22,NA,NA
+2015-09-29,"BC","Hiatella_arctica","Nucella_ostrina",0,0,3,NA,0,13.22,NA,NA
+2015-09-29,"BC","Limpets","Nucella_canaliculata",0,0,0,NA,1596.19047619048,13.22,NA,NA
+2015-09-29,"BC","Limpets","Nucella_ostrina",0,0,3,NA,1596.19047619048,13.22,NA,NA
+2015-09-29,"BC","Littorina_sitkana","Nucella_canaliculata",0,0,0,NA,3070.47619047619,13.22,NA,NA
+2015-09-29,"BC","Littorina_sitkana","Nucella_ostrina",1,1,3,20.7590111481711,3070.47619047619,13.22,1.56887233119814e-05,0.0481718513884078
+2015-09-29,"BC","Modiolus_modiolus","Nucella_canaliculata",0,0,0,NA,0,13.22,NA,NA
+2015-09-29,"BC","Modiolus_modiolus","Nucella_ostrina",0,0,3,NA,0,13.22,NA,NA
+2015-09-29,"BC","Mytilus_californianus","Nucella_canaliculata",0,0,0,NA,30.4761904761905,13.22,NA,NA
+2015-09-29,"BC","Mytilus_californianus","Nucella_ostrina",0,0,3,NA,30.4761904761905,13.22,NA,NA
+2015-09-29,"BC","Mytilus_trossulus","Nucella_canaliculata",0,0,0,NA,392.380952380952,13.22,NA,NA
+2015-09-29,"BC","Mytilus_trossulus","Nucella_ostrina",0,0,3,NA,392.380952380952,13.22,NA,NA
+2015-09-29,"BC","Nucella_ostrina","Nucella_canaliculata",0,0,0,NA,7.61904761904763,13.22,NA,NA
+2015-09-29,"BC","Nucella_ostrina","Nucella_ostrina",0,0,3,NA,7.61904761904763,13.22,NA,NA
+2015-09-29,"BC","Pollicipes_polymerus","Nucella_canaliculata",0,0,0,NA,643.809523809525,13.22,NA,NA
+2015-09-29,"BC","Pollicipes_polymerus","Nucella_ostrina",0,0,3,NA,643.809523809525,13.22,NA,NA
+2015-09-29,"BC","Semibalanus_cariosus","Nucella_canaliculata",0,0,0,NA,11.4285714285714,13.22,NA,NA
+2015-09-29,"BC","Semibalanus_cariosus","Nucella_ostrina",0,0,3,NA,11.4285714285714,13.22,NA,NA
+2015-09-29,"BD","Adula_californiensis","Nucella_canaliculata",0,0,18,NA,0,13.22,NA,NA
+2015-09-29,"BD","Adula_californiensis","Nucella_ostrina",0,0,5,NA,0,13.22,NA,NA
+2015-09-29,"BD","Balanus_glandula","Nucella_canaliculata",0,0,18,NA,35818.6666666667,13.22,NA,NA
+2015-09-29,"BD","Balanus_glandula","Nucella_ostrina",0,0,5,NA,35818.6666666667,13.22,NA,NA
+2015-09-29,"BD","Chthamalus_dalli","Nucella_canaliculata",0,0,18,NA,121.904761904762,13.22,NA,NA
+2015-09-29,"BD","Chthamalus_dalli","Nucella_ostrina",0,0,5,NA,121.904761904762,13.22,NA,NA
+2015-09-29,"BD","Hiatella_arctica","Nucella_canaliculata",0,0,18,NA,0,13.22,NA,NA
+2015-09-29,"BD","Hiatella_arctica","Nucella_ostrina",0,0,5,NA,0,13.22,NA,NA
+2015-09-29,"BD","Limpets","Nucella_canaliculata",0,0,18,NA,1836.19047619047,13.22,NA,NA
+2015-09-29,"BD","Limpets","Nucella_ostrina",0,0,5,NA,1836.19047619047,13.22,NA,NA
+2015-09-29,"BD","Littorina_sitkana","Nucella_canaliculata",0,0,18,NA,5104.76190476191,13.22,NA,NA
+2015-09-29,"BD","Littorina_sitkana","Nucella_ostrina",0,0,5,NA,5104.76190476191,13.22,NA,NA
+2015-09-29,"BD","Modiolus_modiolus","Nucella_canaliculata",0,0,18,NA,0,13.22,NA,NA
+2015-09-29,"BD","Modiolus_modiolus","Nucella_ostrina",0,0,5,NA,0,13.22,NA,NA
+2015-09-29,"BD","Mytilus_californianus","Nucella_canaliculata",0,0,18,NA,76.1904761904762,13.22,NA,NA
+2015-09-29,"BD","Mytilus_californianus","Nucella_ostrina",0,0,5,NA,76.1904761904762,13.22,NA,NA
+2015-09-29,"BD","Mytilus_trossulus","Nucella_canaliculata",0,0,18,NA,16373.3333333333,13.22,NA,NA
+2015-09-29,"BD","Mytilus_trossulus","Nucella_ostrina",0,0,5,NA,16373.3333333333,13.22,NA,NA
+2015-09-29,"BD","Nucella_ostrina","Nucella_canaliculata",0,0,18,NA,11.4285714285714,13.22,NA,NA
+2015-09-29,"BD","Nucella_ostrina","Nucella_ostrina",0,0,5,NA,11.4285714285714,13.22,NA,NA
+2015-09-29,"BD","Pollicipes_polymerus","Nucella_canaliculata",0,0,18,NA,17127.6190476191,13.22,NA,NA
+2015-09-29,"BD","Pollicipes_polymerus","Nucella_ostrina",0,0,5,NA,17127.6190476191,13.22,NA,NA
+2015-09-29,"BD","Semibalanus_cariosus","Nucella_canaliculata",0,0,18,NA,60.9523809523809,13.22,NA,NA
+2015-09-29,"BD","Semibalanus_cariosus","Nucella_ostrina",0,0,5,NA,60.9523809523809,13.22,NA,NA
+2015-09-29,"BE","Adula_californiensis","Nucella_canaliculata",0,0,1,NA,0,13.22,NA,NA
+2015-09-29,"BE","Adula_californiensis","Nucella_ostrina",0,0,3,NA,0,13.22,NA,NA
+2015-09-29,"BE","Balanus_glandula","Nucella_canaliculata",0,0,1,NA,674.285714285714,13.22,NA,NA
+2015-09-29,"BE","Balanus_glandula","Nucella_ostrina",0,0,3,NA,674.285714285714,13.22,NA,NA
+2015-09-29,"BE","Chthamalus_dalli","Nucella_canaliculata",0,0,1,NA,1177.14285714286,13.22,NA,NA
+2015-09-29,"BE","Chthamalus_dalli","Nucella_ostrina",0,0,3,NA,1177.14285714286,13.22,NA,NA
+2015-09-29,"BE","Hiatella_arctica","Nucella_canaliculata",0,0,1,NA,0,13.22,NA,NA
+2015-09-29,"BE","Hiatella_arctica","Nucella_ostrina",0,0,3,NA,0,13.22,NA,NA
+2015-09-29,"BE","Limpets","Nucella_canaliculata",0,0,1,NA,960,13.22,NA,NA
+2015-09-29,"BE","Limpets","Nucella_ostrina",0,0,3,NA,960,13.22,NA,NA
+2015-09-29,"BE","Littorina_sitkana","Nucella_canaliculata",0,0,1,NA,2022.85714285714,13.22,NA,NA
+2015-09-29,"BE","Littorina_sitkana","Nucella_ostrina",0,0,3,NA,2022.85714285714,13.22,NA,NA
+2015-09-29,"BE","Modiolus_modiolus","Nucella_canaliculata",0,0,1,NA,0,13.22,NA,NA
+2015-09-29,"BE","Modiolus_modiolus","Nucella_ostrina",0,0,3,NA,0,13.22,NA,NA
+2015-09-29,"BE","Mytilus_californianus","Nucella_canaliculata",0,0,1,NA,0,13.22,NA,NA
+2015-09-29,"BE","Mytilus_californianus","Nucella_ostrina",0,0,3,NA,0,13.22,NA,NA
+2015-09-29,"BE","Mytilus_trossulus","Nucella_canaliculata",0,0,1,NA,114.285714285714,13.22,NA,NA
+2015-09-29,"BE","Mytilus_trossulus","Nucella_ostrina",0,0,3,NA,114.285714285714,13.22,NA,NA
+2015-09-29,"BE","Nucella_ostrina","Nucella_canaliculata",0,0,1,NA,0,13.22,NA,NA
+2015-09-29,"BE","Nucella_ostrina","Nucella_ostrina",0,0,3,NA,0,13.22,NA,NA
+2015-09-29,"BE","Pollicipes_polymerus","Nucella_canaliculata",0,0,1,NA,125.714285714286,13.22,NA,NA
+2015-09-29,"BE","Pollicipes_polymerus","Nucella_ostrina",0,0,3,NA,125.714285714286,13.22,NA,NA
+2015-09-29,"BE","Semibalanus_cariosus","Nucella_canaliculata",0,0,1,NA,11.4285714285714,13.22,NA,NA
+2015-09-29,"BE","Semibalanus_cariosus","Nucella_ostrina",0,0,3,NA,11.4285714285714,13.22,NA,NA
+2015-09-29,"BF","Adula_californiensis","Nucella_canaliculata",0,0,1,NA,0,13.22,NA,NA
+2015-09-29,"BF","Adula_californiensis","Nucella_ostrina",0,0,16,NA,0,13.22,NA,NA
+2015-09-29,"BF","Balanus_glandula","Nucella_canaliculata",0,0,1,NA,0,13.22,NA,NA
+2015-09-29,"BF","Balanus_glandula","Nucella_ostrina",0,0,16,NA,0,13.22,NA,NA
+2015-09-29,"BF","Chthamalus_dalli","Nucella_canaliculata",0,0,1,NA,0,13.22,NA,NA
+2015-09-29,"BF","Chthamalus_dalli","Nucella_ostrina",0,0,16,NA,0,13.22,NA,NA
+2015-09-29,"BF","Hiatella_arctica","Nucella_canaliculata",0,0,1,NA,0,13.22,NA,NA
+2015-09-29,"BF","Hiatella_arctica","Nucella_ostrina",0,0,16,NA,0,13.22,NA,NA
+2015-09-29,"BF","Limpets","Nucella_canaliculata",0,0,1,NA,0,13.22,NA,NA
+2015-09-29,"BF","Limpets","Nucella_ostrina",0,0,16,NA,0,13.22,NA,NA
+2015-09-29,"BF","Littorina_sitkana","Nucella_canaliculata",0,0,1,NA,0,13.22,NA,NA
+2015-09-29,"BF","Littorina_sitkana","Nucella_ostrina",0,0,16,NA,0,13.22,NA,NA
+2015-09-29,"BF","Modiolus_modiolus","Nucella_canaliculata",0,0,1,NA,0,13.22,NA,NA
+2015-09-29,"BF","Modiolus_modiolus","Nucella_ostrina",0,0,16,NA,0,13.22,NA,NA
+2015-09-29,"BF","Mytilus_californianus","Nucella_canaliculata",0,0,1,NA,0,13.22,NA,NA
+2015-09-29,"BF","Mytilus_californianus","Nucella_ostrina",0,0,16,NA,0,13.22,NA,NA
+2015-09-29,"BF","Mytilus_trossulus","Nucella_canaliculata",0,0,1,NA,0,13.22,NA,NA
+2015-09-29,"BF","Mytilus_trossulus","Nucella_ostrina",0,0,16,NA,0,13.22,NA,NA
+2015-09-29,"BF","Nucella_ostrina","Nucella_canaliculata",0,0,1,NA,0,13.22,NA,NA
+2015-09-29,"BF","Nucella_ostrina","Nucella_ostrina",0,0,16,NA,0,13.22,NA,NA
+2015-09-29,"BF","Pollicipes_polymerus","Nucella_canaliculata",0,0,1,NA,0,13.22,NA,NA
+2015-09-29,"BF","Pollicipes_polymerus","Nucella_ostrina",0,0,16,NA,0,13.22,NA,NA
+2015-09-29,"BF","Semibalanus_cariosus","Nucella_canaliculata",0,0,1,NA,0,13.22,NA,NA
+2015-09-29,"BF","Semibalanus_cariosus","Nucella_ostrina",0,0,16,NA,0,13.22,NA,NA
+2015-09-29,"C","Adula_californiensis","Nucella_canaliculata",0,0,52,NA,0,13.22,NA,NA
+2015-09-29,"C","Adula_californiensis","Nucella_ostrina",0,0,5,NA,0,13.22,NA,NA
+2015-09-29,"C","Balanus_glandula","Nucella_canaliculata",0.0454545454545455,2,52,25.3577789256265,902.857142857142,13.22,1.9853956666914e-06,0.00179252865906995
+2015-09-29,"C","Balanus_glandula","Nucella_ostrina",0,0,5,NA,902.857142857142,13.22,NA,NA
+2015-09-29,"C","Chthamalus_dalli","Nucella_canaliculata",0.0227272727272727,1,52,10.8608186509512,2388.57142857143,13.22,8.76085572402277e-07,0.00209259296722373
+2015-09-29,"C","Chthamalus_dalli","Nucella_ostrina",0,0,5,NA,2388.57142857143,13.22,NA,NA
+2015-09-29,"C","Hiatella_arctica","Nucella_canaliculata",0,0,52,NA,0,13.22,NA,NA
+2015-09-29,"C","Hiatella_arctica","Nucella_ostrina",0,0,5,NA,0,13.22,NA,NA
+2015-09-29,"C","Limpets","Nucella_canaliculata",0,0,52,NA,1234.28571428571,13.22,NA,NA
+2015-09-29,"C","Limpets","Nucella_ostrina",0,0,5,NA,1234.28571428571,13.22,NA,NA
+2015-09-29,"C","Littorina_sitkana","Nucella_canaliculata",0,0,52,NA,1489.52380952381,13.22,NA,NA
+2015-09-29,"C","Littorina_sitkana","Nucella_ostrina",0,0,5,NA,1489.52380952381,13.22,NA,NA
+2015-09-29,"C","Modiolus_modiolus","Nucella_canaliculata",0,0,52,NA,0,13.22,NA,NA
+2015-09-29,"C","Modiolus_modiolus","Nucella_ostrina",0,0,5,NA,0,13.22,NA,NA
+2015-09-29,"C","Mytilus_californianus","Nucella_canaliculata",0,0,52,NA,34.2857142857143,13.22,NA,NA
+2015-09-29,"C","Mytilus_californianus","Nucella_ostrina",0,0,5,NA,34.2857142857143,13.22,NA,NA
+2015-09-29,"C","Mytilus_trossulus","Nucella_canaliculata",0.0454545454545455,2,52,25.9692905767579,868.571428571429,13.22,2.01517002285785e-06,0.00175031910556796
+2015-09-29,"C","Mytilus_trossulus","Nucella_ostrina",0,0,5,NA,868.571428571429,13.22,NA,NA
+2015-09-29,"C","Nucella_ostrina","Nucella_canaliculata",0,0,52,NA,30.4761904761905,13.22,NA,NA
+2015-09-29,"C","Nucella_ostrina","Nucella_ostrina",0,0,5,NA,30.4761904761905,13.22,NA,NA
+2015-09-29,"C","Pollicipes_polymerus","Nucella_canaliculata",0.0681818181818182,3,52,16.5547690640766,14419.0476190476,13.22,2.8563332493092e-07,0.00411856051376583
+2015-09-29,"C","Pollicipes_polymerus","Nucella_ostrina",0,0,5,NA,14419.0476190476,13.22,NA,NA
+2015-09-29,"C","Semibalanus_cariosus","Nucella_canaliculata",0,0,52,NA,0,13.22,NA,NA
+2015-09-29,"C","Semibalanus_cariosus","Nucella_ostrina",0,0,5,NA,0,13.22,NA,NA
+2015-09-29,"D","Adula_californiensis","Nucella_canaliculata",0,0,6,NA,0,13.22,NA,NA
+2015-09-29,"D","Adula_californiensis","Nucella_ostrina",0,0,0,NA,0,13.22,NA,NA
+2015-09-29,"D","Balanus_glandula","Nucella_canaliculata",0,0,6,NA,1142.85714285714,13.22,NA,NA
+2015-09-29,"D","Balanus_glandula","Nucella_ostrina",0,0,0,NA,1142.85714285714,13.22,NA,NA
+2015-09-29,"D","Chthamalus_dalli","Nucella_canaliculata",0,0,6,NA,4062.85714285714,13.22,NA,NA
+2015-09-29,"D","Chthamalus_dalli","Nucella_ostrina",0,0,0,NA,4062.85714285714,13.22,NA,NA
+2015-09-29,"D","Hiatella_arctica","Nucella_canaliculata",0,0,6,NA,0,13.22,NA,NA
+2015-09-29,"D","Hiatella_arctica","Nucella_ostrina",0,0,0,NA,0,13.22,NA,NA
+2015-09-29,"D","Limpets","Nucella_canaliculata",0,0,6,NA,1348.57142857143,13.22,NA,NA
+2015-09-29,"D","Limpets","Nucella_ostrina",0,0,0,NA,1348.57142857143,13.22,NA,NA
+2015-09-29,"D","Littorina_sitkana","Nucella_canaliculata",0,0,6,NA,1097.14285714286,13.22,NA,NA
+2015-09-29,"D","Littorina_sitkana","Nucella_ostrina",0,0,0,NA,1097.14285714286,13.22,NA,NA
+2015-09-29,"D","Modiolus_modiolus","Nucella_canaliculata",0,0,6,NA,0,13.22,NA,NA
+2015-09-29,"D","Modiolus_modiolus","Nucella_ostrina",0,0,0,NA,0,13.22,NA,NA
+2015-09-29,"D","Mytilus_californianus","Nucella_canaliculata",0,0,6,NA,45.7142857142857,13.22,NA,NA
+2015-09-29,"D","Mytilus_californianus","Nucella_ostrina",0,0,0,NA,45.7142857142857,13.22,NA,NA
+2015-09-29,"D","Mytilus_trossulus","Nucella_canaliculata",0,0,6,NA,22.8571428571429,13.22,NA,NA
+2015-09-29,"D","Mytilus_trossulus","Nucella_ostrina",0,0,0,NA,22.8571428571429,13.22,NA,NA
+2015-09-29,"D","Nucella_ostrina","Nucella_canaliculata",0,0,6,NA,11.4285714285714,13.22,NA,NA
+2015-09-29,"D","Nucella_ostrina","Nucella_ostrina",0,0,0,NA,11.4285714285714,13.22,NA,NA
+2015-09-29,"D","Pollicipes_polymerus","Nucella_canaliculata",0,0,6,NA,171.428571428571,13.22,NA,NA
+2015-09-29,"D","Pollicipes_polymerus","Nucella_ostrina",0,0,0,NA,171.428571428571,13.22,NA,NA
+2015-09-29,"D","Semibalanus_cariosus","Nucella_canaliculata",0,0,6,NA,57.1428571428572,13.22,NA,NA
+2015-09-29,"D","Semibalanus_cariosus","Nucella_ostrina",0,0,0,NA,57.1428571428572,13.22,NA,NA
+2015-09-29,"E","Adula_californiensis","Nucella_canaliculata",0,0,69,NA,0,13.22,NA,NA
+2015-09-29,"E","Adula_californiensis","Nucella_ostrina",0,0,11,NA,0,13.22,NA,NA
+2015-09-29,"E","Balanus_glandula","Nucella_canaliculata",0.0303030303030303,2,69,8.7413664497652,7215.2380952381,13.22,4.80458704990393e-07,0.00346662395143545
+2015-09-29,"E","Balanus_glandula","Nucella_ostrina",0,0,11,NA,7215.2380952381,13.22,NA,NA
+2015-09-29,"E","Chthamalus_dalli","Nucella_canaliculata",0,0,69,NA,34.2857142857143,13.22,NA,NA
+2015-09-29,"E","Chthamalus_dalli","Nucella_ostrina",0,0,11,NA,34.2857142857143,13.22,NA,NA
+2015-09-29,"E","Hiatella_arctica","Nucella_canaliculata",0,0,69,NA,0,13.22,NA,NA
+2015-09-29,"E","Hiatella_arctica","Nucella_ostrina",0,0,11,NA,0,13.22,NA,NA
+2015-09-29,"E","Limpets","Nucella_canaliculata",0,0,69,NA,689.52380952381,13.22,NA,NA
+2015-09-29,"E","Limpets","Nucella_ostrina",0,0,11,NA,689.52380952381,13.22,NA,NA
+2015-09-29,"E","Littorina_sitkana","Nucella_canaliculata",0,0,69,NA,2281.90476190476,13.22,NA,NA
+2015-09-29,"E","Littorina_sitkana","Nucella_ostrina",0,0,11,NA,2281.90476190476,13.22,NA,NA
+2015-09-29,"E","Modiolus_modiolus","Nucella_canaliculata",0,0,69,NA,0,13.22,NA,NA
+2015-09-29,"E","Modiolus_modiolus","Nucella_ostrina",0,0,11,NA,0,13.22,NA,NA
+2015-09-29,"E","Mytilus_californianus","Nucella_canaliculata",0,0,69,NA,99.047619047619,13.22,NA,NA
+2015-09-29,"E","Mytilus_californianus","Nucella_ostrina",0,0,11,NA,99.047619047619,13.22,NA,NA
+2015-09-29,"E","Mytilus_trossulus","Nucella_canaliculata",0,0,69,NA,156.190476190476,13.22,NA,NA
+2015-09-29,"E","Mytilus_trossulus","Nucella_ostrina",0,0,11,NA,156.190476190476,13.22,NA,NA
+2015-09-29,"E","Nucella_ostrina","Nucella_canaliculata",0,0,69,NA,11.4285714285714,13.22,NA,NA
+2015-09-29,"E","Nucella_ostrina","Nucella_ostrina",0,0,11,NA,11.4285714285714,13.22,NA,NA
+2015-09-29,"E","Pollicipes_polymerus","Nucella_canaliculata",0.0151515151515152,1,69,3.08139373545593,11325.7142857143,13.22,4.34153461196562e-07,0.0049170980576662
+2015-09-29,"E","Pollicipes_polymerus","Nucella_ostrina",0.1,1,11,5.85847822318366,11325.7142857143,13.22,1.5071260573675e-06,0.0170692791182993
+2015-09-29,"E","Semibalanus_cariosus","Nucella_canaliculata",0,0,69,NA,15.2380952380952,13.22,NA,NA
+2015-09-29,"E","Semibalanus_cariosus","Nucella_ostrina",0,0,11,NA,15.2380952380952,13.22,NA,NA
+2015-09-29,"F","Adula_californiensis","Nucella_canaliculata",0,0,1,NA,0,13.22,NA,NA
+2015-09-29,"F","Adula_californiensis","Nucella_ostrina",0,0,2,NA,0,13.22,NA,NA
+2015-09-29,"F","Balanus_glandula","Nucella_canaliculata",0,0,1,NA,8647.61904761905,13.22,NA,NA
+2015-09-29,"F","Balanus_glandula","Nucella_ostrina",1,1,2,36.8242720484234,8647.61904761905,13.22,3.14028655794636e-06,0.027156001853479
+2015-09-29,"F","Chthamalus_dalli","Nucella_canaliculata",0,0,1,NA,26294.8571428571,13.22,NA,NA
+2015-09-29,"F","Chthamalus_dalli","Nucella_ostrina",0,0,2,NA,26294.8571428571,13.22,NA,NA
+2015-09-29,"F","Hiatella_arctica","Nucella_canaliculata",0,0,1,NA,0,13.22,NA,NA
+2015-09-29,"F","Hiatella_arctica","Nucella_ostrina",0,0,2,NA,0,13.22,NA,NA
+2015-09-29,"F","Limpets","Nucella_canaliculata",0,0,1,NA,1824.76190476191,13.22,NA,NA
+2015-09-29,"F","Limpets","Nucella_ostrina",0,0,2,NA,1824.76190476191,13.22,NA,NA
+2015-09-29,"F","Littorina_sitkana","Nucella_canaliculata",0,0,1,NA,2441.90476190476,13.22,NA,NA
+2015-09-29,"F","Littorina_sitkana","Nucella_ostrina",0,0,2,NA,2441.90476190476,13.22,NA,NA
+2015-09-29,"F","Modiolus_modiolus","Nucella_canaliculata",0,0,1,NA,0,13.22,NA,NA
+2015-09-29,"F","Modiolus_modiolus","Nucella_ostrina",0,0,2,NA,0,13.22,NA,NA
+2015-09-29,"F","Mytilus_californianus","Nucella_canaliculata",0,0,1,NA,0,13.22,NA,NA
+2015-09-29,"F","Mytilus_californianus","Nucella_ostrina",0,0,2,NA,0,13.22,NA,NA
+2015-09-29,"F","Mytilus_trossulus","Nucella_canaliculata",0,0,1,NA,95.2380952380954,13.22,NA,NA
+2015-09-29,"F","Mytilus_trossulus","Nucella_ostrina",0,0,2,NA,95.2380952380954,13.22,NA,NA
+2015-09-29,"F","Nucella_ostrina","Nucella_canaliculata",0,0,1,NA,0,13.22,NA,NA
+2015-09-29,"F","Nucella_ostrina","Nucella_ostrina",0,0,2,NA,0,13.22,NA,NA
+2015-09-29,"F","Pollicipes_polymerus","Nucella_canaliculata",0,0,1,NA,0,13.22,NA,NA
+2015-09-29,"F","Pollicipes_polymerus","Nucella_ostrina",0,0,2,NA,0,13.22,NA,NA
+2015-09-29,"F","Semibalanus_cariosus","Nucella_canaliculata",0,0,1,NA,7.6190476190476,13.22,NA,NA
+2015-09-29,"F","Semibalanus_cariosus","Nucella_ostrina",0,0,2,NA,7.6190476190476,13.22,NA,NA
+2015-09-29,"G","Adula_californiensis","Nucella_canaliculata",0,0,6,NA,0,13.22,NA,NA
+2015-09-29,"G","Adula_californiensis","Nucella_ostrina",0,0,3,NA,0,13.22,NA,NA
+2015-09-29,"G","Balanus_glandula","Nucella_canaliculata",0,0,6,NA,548.571428571429,13.22,NA,NA
+2015-09-29,"G","Balanus_glandula","Nucella_ostrina",0,0,3,NA,548.571428571429,13.22,NA,NA
+2015-09-29,"G","Chthamalus_dalli","Nucella_canaliculata",0,0,6,NA,34.2857142857143,13.22,NA,NA
+2015-09-29,"G","Chthamalus_dalli","Nucella_ostrina",0,0,3,NA,34.2857142857143,13.22,NA,NA
+2015-09-29,"G","Hiatella_arctica","Nucella_canaliculata",0,0,6,NA,0,13.22,NA,NA
+2015-09-29,"G","Hiatella_arctica","Nucella_ostrina",0,0,3,NA,0,13.22,NA,NA
+2015-09-29,"G","Limpets","Nucella_canaliculata",0,0,6,NA,1851.42857142857,13.22,NA,NA
+2015-09-29,"G","Limpets","Nucella_ostrina",0,0,3,NA,1851.42857142857,13.22,NA,NA
+2015-09-29,"G","Littorina_sitkana","Nucella_canaliculata",0,0,6,NA,2148.57142857143,13.22,NA,NA
+2015-09-29,"G","Littorina_sitkana","Nucella_ostrina",0,0,3,NA,2148.57142857143,13.22,NA,NA
+2015-09-29,"G","Modiolus_modiolus","Nucella_canaliculata",0,0,6,NA,0,13.22,NA,NA
+2015-09-29,"G","Modiolus_modiolus","Nucella_ostrina",0,0,3,NA,0,13.22,NA,NA
+2015-09-29,"G","Mytilus_californianus","Nucella_canaliculata",0,0,6,NA,91.4285714285714,13.22,NA,NA
+2015-09-29,"G","Mytilus_californianus","Nucella_ostrina",0,0,3,NA,91.4285714285714,13.22,NA,NA
+2015-09-29,"G","Mytilus_trossulus","Nucella_canaliculata",0,0,6,NA,11.4285714285714,13.22,NA,NA
+2015-09-29,"G","Mytilus_trossulus","Nucella_ostrina",0,0,3,NA,11.4285714285714,13.22,NA,NA
+2015-09-29,"G","Nucella_ostrina","Nucella_canaliculata",0,0,6,NA,11.4285714285714,13.22,NA,NA
+2015-09-29,"G","Nucella_ostrina","Nucella_ostrina",0,0,3,NA,11.4285714285714,13.22,NA,NA
+2015-09-29,"G","Pollicipes_polymerus","Nucella_canaliculata",0,0,6,NA,19588.5714285714,13.22,NA,NA
+2015-09-29,"G","Pollicipes_polymerus","Nucella_ostrina",0.5,1,3,4.31175339779719,19588.5714285714,13.22,5.91988575404757e-06,0.115962104942143
+2015-09-29,"G","Semibalanus_cariosus","Nucella_canaliculata",0,0,6,NA,102.857142857143,13.22,NA,NA
+2015-09-29,"G","Semibalanus_cariosus","Nucella_ostrina",0,0,3,NA,102.857142857143,13.22,NA,NA
+2015-10-28,"A","Adula_californiensis","Nucella_canaliculata",0,0,20,NA,0,13.22,NA,NA
+2015-10-28,"A","Adula_californiensis","Nucella_ostrina",0,0,35,NA,0,13.22,NA,NA
+2015-10-28,"A","Balanus_glandula","Nucella_canaliculata",0.0588235294117647,1,20,15.094470345379,6982.85714285714,13.22,5.58084605495964e-07,0.0038970250738061
+2015-10-28,"A","Balanus_glandula","Nucella_ostrina",0.148148148148148,4,35,23.2877847167431,6982.85714285714,13.22,9.11034644164054e-07,0.00636162477239127
+2015-10-28,"A","Chthamalus_dalli","Nucella_canaliculata",0.0588235294117647,1,20,10.8608186509512,868.571428571429,13.22,6.2356678976868e-06,0.00541612297399082
+2015-10-28,"A","Chthamalus_dalli","Nucella_ostrina",0.0740740740740741,2,35,11.8509811223069,868.571428571429,13.22,7.19625237707946e-06,0.00625045920752045
+2015-10-28,"A","Hiatella_arctica","Nucella_canaliculata",0,0,20,NA,0,13.22,NA,NA
+2015-10-28,"A","Hiatella_arctica","Nucella_ostrina",0,0,35,NA,0,13.22,NA,NA
+2015-10-28,"A","Limpets","Nucella_canaliculata",0,0,20,NA,1142.85714285714,13.22,NA,NA
+2015-10-28,"A","Limpets","Nucella_ostrina",0,0,35,NA,1142.85714285714,13.22,NA,NA
+2015-10-28,"A","Littorina_sitkana","Nucella_canaliculata",0,0,20,NA,3782.85714285714,13.22,NA,NA
+2015-10-28,"A","Littorina_sitkana","Nucella_ostrina",0,0,35,NA,3782.85714285714,13.22,NA,NA
+2015-10-28,"A","Modiolus_modiolus","Nucella_canaliculata",0,0,20,NA,0,13.22,NA,NA
+2015-10-28,"A","Modiolus_modiolus","Nucella_ostrina",0,0,35,NA,0,13.22,NA,NA
+2015-10-28,"A","Mytilus_californianus","Nucella_canaliculata",0,0,20,NA,22.8571428571429,13.22,NA,NA
+2015-10-28,"A","Mytilus_californianus","Nucella_ostrina",0,0,35,NA,22.8571428571429,13.22,NA,NA
+2015-10-28,"A","Mytilus_trossulus","Nucella_canaliculata",0.0588235294117647,1,20,27.9270092259664,3725.71428571429,13.22,5.65349618027712e-07,0.00210633114830896
+2015-10-28,"A","Mytilus_trossulus","Nucella_ostrina",0.0740740740740741,2,35,34.763578519846,3725.71428571429,13.22,5.71915950018466e-07,0.00213079542521166
+2015-10-28,"A","Nucella_ostrina","Nucella_canaliculata",0,0,20,NA,34.2857142857143,13.22,NA,NA
+2015-10-28,"A","Nucella_ostrina","Nucella_ostrina",0,0,35,NA,34.2857142857143,13.22,NA,NA
+2015-10-28,"A","Pollicipes_polymerus","Nucella_canaliculata",0,0,20,NA,20365.7142857143,13.22,NA,NA
+2015-10-28,"A","Pollicipes_polymerus","Nucella_ostrina",0,0,35,NA,20365.7142857143,13.22,NA,NA
+2015-10-28,"A","Semibalanus_cariosus","Nucella_canaliculata",0,0,20,NA,0,13.22,NA,NA
+2015-10-28,"A","Semibalanus_cariosus","Nucella_ostrina",0,0,35,NA,0,13.22,NA,NA
+2015-10-28,"AB","Adula_californiensis","Nucella_canaliculata",0,0,7,NA,0,13.22,NA,NA
+2015-10-28,"AB","Adula_californiensis","Nucella_ostrina",0,0,11,NA,0,13.22,NA,NA
+2015-10-28,"AB","Balanus_glandula","Nucella_canaliculata",0.2,1,7,16.4897175842405,255.238095238095,13.22,4.75194366155258e-05,0.0121287704885342
+2015-10-28,"AB","Balanus_glandula","Nucella_ostrina",0,0,11,NA,255.238095238095,13.22,NA,NA
+2015-10-28,"AB","Chthamalus_dalli","Nucella_canaliculata",0,0,7,NA,289.52380952381,13.22,NA,NA
+2015-10-28,"AB","Chthamalus_dalli","Nucella_ostrina",0.222222222222222,2,11,15.013961038734,289.52380952381,13.22,5.11220095529063e-05,0.01480103895627
+2015-10-28,"AB","Hiatella_arctica","Nucella_canaliculata",0,0,7,NA,0,13.22,NA,NA
+2015-10-28,"AB","Hiatella_arctica","Nucella_ostrina",0,0,11,NA,0,13.22,NA,NA
+2015-10-28,"AB","Limpets","Nucella_canaliculata",0,0,7,NA,1520,13.22,NA,NA
+2015-10-28,"AB","Limpets","Nucella_ostrina",0,0,11,NA,1520,13.22,NA,NA
+2015-10-28,"AB","Littorina_sitkana","Nucella_canaliculata",0,0,7,NA,2201.90476190476,13.22,NA,NA
+2015-10-28,"AB","Littorina_sitkana","Nucella_ostrina",0,0,11,NA,2201.90476190476,13.22,NA,NA
+2015-10-28,"AB","Modiolus_modiolus","Nucella_canaliculata",0,0,7,NA,0,13.22,NA,NA
+2015-10-28,"AB","Modiolus_modiolus","Nucella_ostrina",0,0,11,NA,0,13.22,NA,NA
+2015-10-28,"AB","Mytilus_californianus","Nucella_canaliculata",0,0,7,NA,72.3809523809523,13.22,NA,NA
+2015-10-28,"AB","Mytilus_californianus","Nucella_ostrina",0,0,11,NA,72.3809523809523,13.22,NA,NA
+2015-10-28,"AB","Mytilus_trossulus","Nucella_canaliculata",0,0,7,NA,106.666666666666,13.22,NA,NA
+2015-10-28,"AB","Mytilus_trossulus","Nucella_ostrina",0,0,11,NA,106.666666666666,13.22,NA,NA
+2015-10-28,"AB","Nucella_ostrina","Nucella_canaliculata",0,0,7,NA,15.2380952380952,13.22,NA,NA
+2015-10-28,"AB","Nucella_ostrina","Nucella_ostrina",0,0,11,NA,15.2380952380952,13.22,NA,NA
+2015-10-28,"AB","Pollicipes_polymerus","Nucella_canaliculata",0.2,1,7,10.8497683484217,11299.0476190476,13.22,1.63142717056489e-06,0.0184335732872208
+2015-10-28,"AB","Pollicipes_polymerus","Nucella_ostrina",0,0,11,NA,11299.0476190476,13.22,NA,NA
+2015-10-28,"AB","Semibalanus_cariosus","Nucella_canaliculata",0,0,7,NA,72.3809523809525,13.22,NA,NA
+2015-10-28,"AB","Semibalanus_cariosus","Nucella_ostrina",0,0,11,NA,72.3809523809525,13.22,NA,NA
+2015-10-28,"AC","Adula_californiensis","Nucella_canaliculata",0,0,0,NA,0,13.22,NA,NA
+2015-10-28,"AC","Adula_californiensis","Nucella_ostrina",0,0,1,NA,0,13.22,NA,NA
+2015-10-28,"AC","Balanus_glandula","Nucella_canaliculata",0,0,0,NA,472.380952380952,13.22,NA,NA
+2015-10-28,"AC","Balanus_glandula","Nucella_ostrina",0,0,1,NA,472.380952380952,13.22,NA,NA
+2015-10-28,"AC","Chthamalus_dalli","Nucella_canaliculata",0,0,0,NA,552.380952380952,13.22,NA,NA
+2015-10-28,"AC","Chthamalus_dalli","Nucella_ostrina",0,0,1,NA,552.380952380952,13.22,NA,NA
+2015-10-28,"AC","Hiatella_arctica","Nucella_canaliculata",0,0,0,NA,0,13.22,NA,NA
+2015-10-28,"AC","Hiatella_arctica","Nucella_ostrina",0,0,1,NA,0,13.22,NA,NA
+2015-10-28,"AC","Limpets","Nucella_canaliculata",0,0,0,NA,2883.80952380953,13.22,NA,NA
+2015-10-28,"AC","Limpets","Nucella_ostrina",0,0,1,NA,2883.80952380953,13.22,NA,NA
+2015-10-28,"AC","Littorina_sitkana","Nucella_canaliculata",0,0,0,NA,2007.61904761905,13.22,NA,NA
+2015-10-28,"AC","Littorina_sitkana","Nucella_ostrina",0,0,1,NA,2007.61904761905,13.22,NA,NA
+2015-10-28,"AC","Modiolus_modiolus","Nucella_canaliculata",0,0,0,NA,0,13.22,NA,NA
+2015-10-28,"AC","Modiolus_modiolus","Nucella_ostrina",0,0,1,NA,0,13.22,NA,NA
+2015-10-28,"AC","Mytilus_californianus","Nucella_canaliculata",0,0,0,NA,19.047619047619,13.22,NA,NA
+2015-10-28,"AC","Mytilus_californianus","Nucella_ostrina",0,0,1,NA,19.047619047619,13.22,NA,NA
+2015-10-28,"AC","Mytilus_trossulus","Nucella_canaliculata",0,0,0,NA,1131.42857142857,13.22,NA,NA
+2015-10-28,"AC","Mytilus_trossulus","Nucella_ostrina",0,0,1,NA,1131.42857142857,13.22,NA,NA
+2015-10-28,"AC","Nucella_ostrina","Nucella_canaliculata",0,0,0,NA,7.6190476190476,13.22,NA,NA
+2015-10-28,"AC","Nucella_ostrina","Nucella_ostrina",0,0,1,NA,7.6190476190476,13.22,NA,NA
+2015-10-28,"AC","Pollicipes_polymerus","Nucella_canaliculata",0,0,0,NA,99.047619047619,13.22,NA,NA
+2015-10-28,"AC","Pollicipes_polymerus","Nucella_ostrina",0,0,1,NA,99.047619047619,13.22,NA,NA
+2015-10-28,"AC","Semibalanus_cariosus","Nucella_canaliculata",0,0,0,NA,7.6190476190476,13.22,NA,NA
+2015-10-28,"AC","Semibalanus_cariosus","Nucella_ostrina",0,0,1,NA,7.6190476190476,13.22,NA,NA
+2015-10-28,"AD","Adula_californiensis","Nucella_canaliculata",0,0,28,NA,0,13.22,NA,NA
+2015-10-28,"AD","Adula_californiensis","Nucella_ostrina",0,0,16,NA,0,13.22,NA,NA
+2015-10-28,"AD","Balanus_glandula","Nucella_canaliculata",0.0769230769230769,2,28,10.337011719391,13573.3333333333,13.22,5.48245561557324e-07,0.00744151975553808
+2015-10-28,"AD","Balanus_glandula","Nucella_ostrina",0.0769230769230769,1,16,32.1144383598914,13573.3333333333,13.22,1.76469559623378e-07,0.00239528015595466
+2015-10-28,"AD","Chthamalus_dalli","Nucella_canaliculata",0,0,28,NA,1740.95238095238,13.22,NA,NA
+2015-10-28,"AD","Chthamalus_dalli","Nucella_ostrina",0,0,16,NA,1740.95238095238,13.22,NA,NA
+2015-10-28,"AD","Hiatella_arctica","Nucella_canaliculata",0,0,28,NA,0,13.22,NA,NA
+2015-10-28,"AD","Hiatella_arctica","Nucella_ostrina",0,0,16,NA,0,13.22,NA,NA
+2015-10-28,"AD","Limpets","Nucella_canaliculata",0,0,28,NA,1897.14285714286,13.22,NA,NA
+2015-10-28,"AD","Limpets","Nucella_ostrina",0,0,16,NA,1897.14285714286,13.22,NA,NA
+2015-10-28,"AD","Littorina_sitkana","Nucella_canaliculata",0,0,28,NA,3379.04761904762,13.22,NA,NA
+2015-10-28,"AD","Littorina_sitkana","Nucella_ostrina",0,0,16,NA,3379.04761904762,13.22,NA,NA
+2015-10-28,"AD","Modiolus_modiolus","Nucella_canaliculata",0,0,28,NA,0,13.22,NA,NA
+2015-10-28,"AD","Modiolus_modiolus","Nucella_ostrina",0,0,16,NA,0,13.22,NA,NA
+2015-10-28,"AD","Mytilus_californianus","Nucella_canaliculata",0,0,28,NA,80,13.22,NA,NA
+2015-10-28,"AD","Mytilus_californianus","Nucella_ostrina",0,0,16,NA,80,13.22,NA,NA
+2015-10-28,"AD","Mytilus_trossulus","Nucella_canaliculata",0,0,28,NA,2788.57142857143,13.22,NA,NA
+2015-10-28,"AD","Mytilus_trossulus","Nucella_ostrina",0.153846153846154,2,16,25.4491220808314,2788.57142857143,13.22,2.16786415740541e-06,0.00604524405036481
+2015-10-28,"AD","Nucella_ostrina","Nucella_canaliculata",0,0,28,NA,11.4285714285714,13.22,NA,NA
+2015-10-28,"AD","Nucella_ostrina","Nucella_ostrina",0,0,16,NA,11.4285714285714,13.22,NA,NA
+2015-10-28,"AD","Pollicipes_polymerus","Nucella_canaliculata",0,0,28,NA,12948.5714285714,13.22,NA,NA
+2015-10-28,"AD","Pollicipes_polymerus","Nucella_ostrina",0,0,16,NA,12948.5714285714,13.22,NA,NA
+2015-10-28,"AD","Semibalanus_cariosus","Nucella_canaliculata",0,0,28,NA,34.2857142857143,13.22,NA,NA
+2015-10-28,"AD","Semibalanus_cariosus","Nucella_ostrina",0,0,16,NA,34.2857142857143,13.22,NA,NA
+2015-10-28,"AE","Adula_californiensis","Nucella_canaliculata",0,0,0,NA,0,13.22,NA,NA
+2015-10-28,"AE","Adula_californiensis","Nucella_ostrina",0,0,14,NA,0,13.22,NA,NA
+2015-10-28,"AE","Balanus_glandula","Nucella_canaliculata",0,0,0,NA,2636.19047619048,13.22,NA,NA
+2015-10-28,"AE","Balanus_glandula","Nucella_ostrina",0,0,14,NA,2636.19047619048,13.22,NA,NA
+2015-10-28,"AE","Chthamalus_dalli","Nucella_canaliculata",0,0,0,NA,3184.7619047619,13.22,NA,NA
+2015-10-28,"AE","Chthamalus_dalli","Nucella_ostrina",0.0833333333333333,1,14,18.2733083198292,3184.7619047619,13.22,1.43193927911727e-06,0.0045603856660649
+2015-10-28,"AE","Hiatella_arctica","Nucella_canaliculata",0,0,0,NA,0,13.22,NA,NA
+2015-10-28,"AE","Hiatella_arctica","Nucella_ostrina",0,0,14,NA,0,13.22,NA,NA
+2015-10-28,"AE","Limpets","Nucella_canaliculata",0,0,0,NA,1805.71428571429,13.22,NA,NA
+2015-10-28,"AE","Limpets","Nucella_ostrina",0,0,14,NA,1805.71428571429,13.22,NA,NA
+2015-10-28,"AE","Littorina_sitkana","Nucella_canaliculata",0,0,0,NA,982.857142857142,13.22,NA,NA
+2015-10-28,"AE","Littorina_sitkana","Nucella_ostrina",0,0,14,NA,982.857142857142,13.22,NA,NA
+2015-10-28,"AE","Modiolus_modiolus","Nucella_canaliculata",0,0,0,NA,0,13.22,NA,NA
+2015-10-28,"AE","Modiolus_modiolus","Nucella_ostrina",0,0,14,NA,0,13.22,NA,NA
+2015-10-28,"AE","Mytilus_californianus","Nucella_canaliculata",0,0,0,NA,57.1428571428571,13.22,NA,NA
+2015-10-28,"AE","Mytilus_californianus","Nucella_ostrina",0,0,14,NA,57.1428571428571,13.22,NA,NA
+2015-10-28,"AE","Mytilus_trossulus","Nucella_canaliculata",0,0,0,NA,87.6190476190476,13.22,NA,NA
+2015-10-28,"AE","Mytilus_trossulus","Nucella_ostrina",0.0833333333333333,1,14,20.6911175119793,87.6190476190476,13.22,4.59659540366101e-05,0.0040274931155887
+2015-10-28,"AE","Nucella_ostrina","Nucella_canaliculata",0,0,0,NA,3.8095238095238,13.22,NA,NA
+2015-10-28,"AE","Nucella_ostrina","Nucella_ostrina",0,0,14,NA,3.8095238095238,13.22,NA,NA
+2015-10-28,"AE","Pollicipes_polymerus","Nucella_canaliculata",0,0,0,NA,1017.14285714286,13.22,NA,NA
+2015-10-28,"AE","Pollicipes_polymerus","Nucella_ostrina",0,0,14,NA,1017.14285714286,13.22,NA,NA
+2015-10-28,"AE","Semibalanus_cariosus","Nucella_canaliculata",0,0,0,NA,137.142857142857,13.22,NA,NA
+2015-10-28,"AE","Semibalanus_cariosus","Nucella_ostrina",0,0,14,NA,137.142857142857,13.22,NA,NA
+2015-10-28,"AF","Adula_californiensis","Nucella_canaliculata",0,0,3,NA,0,13.22,NA,NA
+2015-10-28,"AF","Adula_californiensis","Nucella_ostrina",0,0,14,NA,0,13.22,NA,NA
+2015-10-28,"AF","Balanus_glandula","Nucella_canaliculata",0,0,3,NA,19392,13.22,NA,NA
+2015-10-28,"AF","Balanus_glandula","Nucella_ostrina",0.333333333333333,3,14,18.5756981868898,19392,13.22,9.25360583971152e-07,0.0179445924443686
+2015-10-28,"AF","Chthamalus_dalli","Nucella_canaliculata",0,0,3,NA,5440,13.22,NA,NA
+2015-10-28,"AF","Chthamalus_dalli","Nucella_ostrina",0.222222222222222,2,14,9.79134574242135,5440,13.22,4.1720182574732e-06,0.0226957793206542
+2015-10-28,"AF","Hiatella_arctica","Nucella_canaliculata",0,0,3,NA,0,13.22,NA,NA
+2015-10-28,"AF","Hiatella_arctica","Nucella_ostrina",0,0,14,NA,0,13.22,NA,NA
+2015-10-28,"AF","Limpets","Nucella_canaliculata",0,0,3,NA,640.000000000001,13.22,NA,NA
+2015-10-28,"AF","Limpets","Nucella_ostrina",0,0,14,NA,640.000000000001,13.22,NA,NA
+2015-10-28,"AF","Littorina_sitkana","Nucella_canaliculata",0,0,3,NA,2702.85714285714,13.22,NA,NA
+2015-10-28,"AF","Littorina_sitkana","Nucella_ostrina",0,0,14,NA,2702.85714285714,13.22,NA,NA
+2015-10-28,"AF","Modiolus_modiolus","Nucella_canaliculata",0,0,3,NA,0,13.22,NA,NA
+2015-10-28,"AF","Modiolus_modiolus","Nucella_ostrina",0,0,14,NA,0,13.22,NA,NA
+2015-10-28,"AF","Mytilus_californianus","Nucella_canaliculata",0,0,3,NA,0,13.22,NA,NA
+2015-10-28,"AF","Mytilus_californianus","Nucella_ostrina",0,0,14,NA,0,13.22,NA,NA
+2015-10-28,"AF","Mytilus_trossulus","Nucella_canaliculata",0,0,3,NA,148.571428571428,13.22,NA,NA
+2015-10-28,"AF","Mytilus_trossulus","Nucella_ostrina",0,0,14,NA,148.571428571428,13.22,NA,NA
+2015-10-28,"AF","Nucella_ostrina","Nucella_canaliculata",0,0,3,NA,0,13.22,NA,NA
+2015-10-28,"AF","Nucella_ostrina","Nucella_ostrina",0,0,14,NA,0,13.22,NA,NA
+2015-10-28,"AF","Pollicipes_polymerus","Nucella_canaliculata",0,0,3,NA,11.4285714285715,13.22,NA,NA
+2015-10-28,"AF","Pollicipes_polymerus","Nucella_ostrina",0,0,14,NA,11.4285714285715,13.22,NA,NA
+2015-10-28,"AF","Semibalanus_cariosus","Nucella_canaliculata",0,0,3,NA,11.4285714285715,13.22,NA,NA
+2015-10-28,"AF","Semibalanus_cariosus","Nucella_ostrina",0,0,14,NA,11.4285714285715,13.22,NA,NA
+2015-10-28,"AG","Adula_californiensis","Nucella_canaliculata",0,0,1,NA,0,13.22,NA,NA
+2015-10-28,"AG","Adula_californiensis","Nucella_ostrina",0,0,9,NA,0,13.22,NA,NA
+2015-10-28,"AG","Balanus_glandula","Nucella_canaliculata",0,0,1,NA,0,13.22,NA,NA
+2015-10-28,"AG","Balanus_glandula","Nucella_ostrina",0,0,9,NA,0,13.22,NA,NA
+2015-10-28,"AG","Chthamalus_dalli","Nucella_canaliculata",0,0,1,NA,0,13.22,NA,NA
+2015-10-28,"AG","Chthamalus_dalli","Nucella_ostrina",0.125,1,9,14.1949134144371,0,13.22,Inf,0.00880597129059394
+2015-10-28,"AG","Hiatella_arctica","Nucella_canaliculata",0,0,1,NA,0,13.22,NA,NA
+2015-10-28,"AG","Hiatella_arctica","Nucella_ostrina",0,0,9,NA,0,13.22,NA,NA
+2015-10-28,"AG","Limpets","Nucella_canaliculata",0,0,1,NA,0,13.22,NA,NA
+2015-10-28,"AG","Limpets","Nucella_ostrina",0,0,9,NA,0,13.22,NA,NA
+2015-10-28,"AG","Littorina_sitkana","Nucella_canaliculata",0,0,1,NA,0,13.22,NA,NA
+2015-10-28,"AG","Littorina_sitkana","Nucella_ostrina",0,0,9,NA,0,13.22,NA,NA
+2015-10-28,"AG","Modiolus_modiolus","Nucella_canaliculata",0,0,1,NA,0,13.22,NA,NA
+2015-10-28,"AG","Modiolus_modiolus","Nucella_ostrina",0,0,9,NA,0,13.22,NA,NA
+2015-10-28,"AG","Mytilus_californianus","Nucella_canaliculata",0,0,1,NA,0,13.22,NA,NA
+2015-10-28,"AG","Mytilus_californianus","Nucella_ostrina",0,0,9,NA,0,13.22,NA,NA
+2015-10-28,"AG","Mytilus_trossulus","Nucella_canaliculata",0,0,1,NA,0,13.22,NA,NA
+2015-10-28,"AG","Mytilus_trossulus","Nucella_ostrina",0,0,9,NA,0,13.22,NA,NA
+2015-10-28,"AG","Nucella_ostrina","Nucella_canaliculata",0,0,1,NA,0,13.22,NA,NA
+2015-10-28,"AG","Nucella_ostrina","Nucella_ostrina",0,0,9,NA,0,13.22,NA,NA
+2015-10-28,"AG","Pollicipes_polymerus","Nucella_canaliculata",0,0,1,NA,0,13.22,NA,NA
+2015-10-28,"AG","Pollicipes_polymerus","Nucella_ostrina",0,0,9,NA,0,13.22,NA,NA
+2015-10-28,"AG","Semibalanus_cariosus","Nucella_canaliculata",0,0,1,NA,0,13.22,NA,NA
+2015-10-28,"AG","Semibalanus_cariosus","Nucella_ostrina",0,0,9,NA,0,13.22,NA,NA
+2015-10-28,"B","Adula_californiensis","Nucella_canaliculata",0,0,34,NA,0,13.22,NA,NA
+2015-10-28,"B","Adula_californiensis","Nucella_ostrina",0,0,19,NA,0,13.22,NA,NA
+2015-10-28,"B","Balanus_glandula","Nucella_canaliculata",0,0,34,NA,2167.61904761905,13.22,NA,NA
+2015-10-28,"B","Balanus_glandula","Nucella_ostrina",0.0588235294117647,1,19,9.47171720449161,2167.61904761905,13.22,2.86509744292375e-06,0.00621043979056616
+2015-10-28,"B","Chthamalus_dalli","Nucella_canaliculata",0.03125,1,34,15.9361475739904,868.571428571428,13.22,2.25767352203577e-06,0.00196095071628249
+2015-10-28,"B","Chthamalus_dalli","Nucella_ostrina",0,0,19,NA,868.571428571428,13.22,NA,NA
+2015-10-28,"B","Hiatella_arctica","Nucella_canaliculata",0,0,34,NA,0,13.22,NA,NA
+2015-10-28,"B","Hiatella_arctica","Nucella_ostrina",0,0,19,NA,0,13.22,NA,NA
+2015-10-28,"B","Limpets","Nucella_canaliculata",0,0,34,NA,1196.19047619048,13.22,NA,NA
+2015-10-28,"B","Limpets","Nucella_ostrina",0,0,19,NA,1196.19047619048,13.22,NA,NA
+2015-10-28,"B","Littorina_sitkana","Nucella_canaliculata",0,0,34,NA,2133.33333333333,13.22,NA,NA
+2015-10-28,"B","Littorina_sitkana","Nucella_ostrina",0,0,19,NA,2133.33333333333,13.22,NA,NA
+2015-10-28,"B","Modiolus_modiolus","Nucella_canaliculata",0,0,34,NA,0,13.22,NA,NA
+2015-10-28,"B","Modiolus_modiolus","Nucella_ostrina",0,0,19,NA,0,13.22,NA,NA
+2015-10-28,"B","Mytilus_californianus","Nucella_canaliculata",0,0,34,NA,45.7142857142857,13.22,NA,NA
+2015-10-28,"B","Mytilus_californianus","Nucella_ostrina",0,0,19,NA,45.7142857142857,13.22,NA,NA
+2015-10-28,"B","Mytilus_trossulus","Nucella_canaliculata",0.03125,1,34,35.9292293723465,274.285714285714,13.22,3.17101963100707e-06,0.000869765384504796
+2015-10-28,"B","Mytilus_trossulus","Nucella_ostrina",0.0588235294117647,1,19,31.2556930136633,274.285714285714,13.22,6.8614950953087e-06,0.00188201008328467
+2015-10-28,"B","Nucella_ostrina","Nucella_canaliculata",0,0,34,NA,3.8095238095238,13.22,NA,NA
+2015-10-28,"B","Nucella_ostrina","Nucella_ostrina",0,0,19,NA,3.8095238095238,13.22,NA,NA
+2015-10-28,"B","Pollicipes_polymerus","Nucella_canaliculata",0,0,34,NA,7462.85714285715,13.22,NA,NA
+2015-10-28,"B","Pollicipes_polymerus","Nucella_ostrina",0,0,19,NA,7462.85714285715,13.22,NA,NA
+2015-10-28,"B","Semibalanus_cariosus","Nucella_canaliculata",0,0,34,NA,11.4285714285714,13.22,NA,NA
+2015-10-28,"B","Semibalanus_cariosus","Nucella_ostrina",0,0,19,NA,11.4285714285714,13.22,NA,NA
+2015-10-28,"BB","Adula_californiensis","Nucella_canaliculata",0,0,0,NA,0,13.22,NA,NA
+2015-10-28,"BB","Adula_californiensis","Nucella_ostrina",0,0,7,NA,0,13.22,NA,NA
+2015-10-28,"BB","Balanus_glandula","Nucella_canaliculata",0,0,0,NA,37904.7619047619,13.22,NA,NA
+2015-10-28,"BB","Balanus_glandula","Nucella_ostrina",0,0,7,NA,37904.7619047619,13.22,NA,NA
+2015-10-28,"BB","Chthamalus_dalli","Nucella_canaliculata",0,0,0,NA,1993.90476190476,13.22,NA,NA
+2015-10-28,"BB","Chthamalus_dalli","Nucella_ostrina",0.5,2,7,10.8608186509512,1993.90476190476,13.22,2.30888887766852e-05,0.046037045278922
+2015-10-28,"BB","Hiatella_arctica","Nucella_canaliculata",0,0,0,NA,0,13.22,NA,NA
+2015-10-28,"BB","Hiatella_arctica","Nucella_ostrina",0,0,7,NA,0,13.22,NA,NA
+2015-10-28,"BB","Limpets","Nucella_canaliculata",0,0,0,NA,998.095238095239,13.22,NA,NA
+2015-10-28,"BB","Limpets","Nucella_ostrina",0,0,7,NA,998.095238095239,13.22,NA,NA
+2015-10-28,"BB","Littorina_sitkana","Nucella_canaliculata",0,0,0,NA,1710.47619047619,13.22,NA,NA
+2015-10-28,"BB","Littorina_sitkana","Nucella_ostrina",0,0,7,NA,1710.47619047619,13.22,NA,NA
+2015-10-28,"BB","Modiolus_modiolus","Nucella_canaliculata",0,0,0,NA,0,13.22,NA,NA
+2015-10-28,"BB","Modiolus_modiolus","Nucella_ostrina",0,0,7,NA,0,13.22,NA,NA
+2015-10-28,"BB","Mytilus_californianus","Nucella_canaliculata",0,0,0,NA,7.61904761904763,13.22,NA,NA
+2015-10-28,"BB","Mytilus_californianus","Nucella_ostrina",0,0,7,NA,7.61904761904763,13.22,NA,NA
+2015-10-28,"BB","Mytilus_trossulus","Nucella_canaliculata",0,0,0,NA,582.857142857143,13.22,NA,NA
+2015-10-28,"BB","Mytilus_trossulus","Nucella_ostrina",0.25,1,7,34.4041968765351,582.857142857143,13.22,1.2467129233294e-05,0.00726655532454848
+2015-10-28,"BB","Nucella_ostrina","Nucella_canaliculata",0,0,0,NA,7.6190476190476,13.22,NA,NA
+2015-10-28,"BB","Nucella_ostrina","Nucella_ostrina",0,0,7,NA,7.6190476190476,13.22,NA,NA
+2015-10-28,"BB","Pollicipes_polymerus","Nucella_canaliculata",0,0,0,NA,68.5714285714287,13.22,NA,NA
+2015-10-28,"BB","Pollicipes_polymerus","Nucella_ostrina",0,0,7,NA,68.5714285714287,13.22,NA,NA
+2015-10-28,"BB","Semibalanus_cariosus","Nucella_canaliculata",0,0,0,NA,19.047619047619,13.22,NA,NA
+2015-10-28,"BB","Semibalanus_cariosus","Nucella_ostrina",0,0,7,NA,19.047619047619,13.22,NA,NA
+2015-10-28,"BC","Adula_californiensis","Nucella_canaliculata",0,0,0,NA,0,13.22,NA,NA
+2015-10-28,"BC","Adula_californiensis","Nucella_ostrina",0,0,5,NA,0,13.22,NA,NA
+2015-10-28,"BC","Balanus_glandula","Nucella_canaliculata",0,0,0,NA,16410.6666666667,13.22,NA,NA
+2015-10-28,"BC","Balanus_glandula","Nucella_ostrina",0.25,1,5,20.4641098325208,16410.6666666667,13.22,7.44424960324291e-07,0.0122165098822285
+2015-10-28,"BC","Chthamalus_dalli","Nucella_canaliculata",0,0,0,NA,2411.42857142857,13.22,NA,NA
+2015-10-28,"BC","Chthamalus_dalli","Nucella_ostrina",0,0,5,NA,2411.42857142857,13.22,NA,NA
+2015-10-28,"BC","Hiatella_arctica","Nucella_canaliculata",0,0,0,NA,0,13.22,NA,NA
+2015-10-28,"BC","Hiatella_arctica","Nucella_ostrina",0,0,5,NA,0,13.22,NA,NA
+2015-10-28,"BC","Limpets","Nucella_canaliculata",0,0,0,NA,1748.57142857143,13.22,NA,NA
+2015-10-28,"BC","Limpets","Nucella_ostrina",0,0,5,NA,1748.57142857143,13.22,NA,NA
+2015-10-28,"BC","Littorina_sitkana","Nucella_canaliculata",0,0,0,NA,3040,13.22,NA,NA
+2015-10-28,"BC","Littorina_sitkana","Nucella_ostrina",0,0,5,NA,3040,13.22,NA,NA
+2015-10-28,"BC","Modiolus_modiolus","Nucella_canaliculata",0,0,0,NA,0,13.22,NA,NA
+2015-10-28,"BC","Modiolus_modiolus","Nucella_ostrina",0,0,5,NA,0,13.22,NA,NA
+2015-10-28,"BC","Mytilus_californianus","Nucella_canaliculata",0,0,0,NA,34.2857142857143,13.22,NA,NA
+2015-10-28,"BC","Mytilus_californianus","Nucella_ostrina",0,0,5,NA,34.2857142857143,13.22,NA,NA
+2015-10-28,"BC","Mytilus_trossulus","Nucella_canaliculata",0,0,0,NA,700.952380952381,13.22,NA,NA
+2015-10-28,"BC","Mytilus_trossulus","Nucella_ostrina",0,0,5,NA,700.952380952381,13.22,NA,NA
+2015-10-28,"BC","Nucella_ostrina","Nucella_canaliculata",0,0,0,NA,3.8095238095238,13.22,NA,NA
+2015-10-28,"BC","Nucella_ostrina","Nucella_ostrina",0,0,5,NA,3.8095238095238,13.22,NA,NA
+2015-10-28,"BC","Pollicipes_polymerus","Nucella_canaliculata",0,0,0,NA,838.095238095237,13.22,NA,NA
+2015-10-28,"BC","Pollicipes_polymerus","Nucella_ostrina",0,0,5,NA,838.095238095237,13.22,NA,NA
+2015-10-28,"BC","Semibalanus_cariosus","Nucella_canaliculata",0,0,0,NA,11.4285714285714,13.22,NA,NA
+2015-10-28,"BC","Semibalanus_cariosus","Nucella_ostrina",0,0,5,NA,11.4285714285714,13.22,NA,NA
+2015-10-28,"BD","Adula_californiensis","Nucella_canaliculata",0,0,4,NA,0,13.22,NA,NA
+2015-10-28,"BD","Adula_californiensis","Nucella_ostrina",0,0,1,NA,0,13.22,NA,NA
+2015-10-28,"BD","Balanus_glandula","Nucella_canaliculata",0,0,4,NA,0,13.22,NA,NA
+2015-10-28,"BD","Balanus_glandula","Nucella_ostrina",0,0,1,NA,0,13.22,NA,NA
+2015-10-28,"BD","Chthamalus_dalli","Nucella_canaliculata",0,0,4,NA,0,13.22,NA,NA
+2015-10-28,"BD","Chthamalus_dalli","Nucella_ostrina",0,0,1,NA,0,13.22,NA,NA
+2015-10-28,"BD","Hiatella_arctica","Nucella_canaliculata",0,0,4,NA,0,13.22,NA,NA
+2015-10-28,"BD","Hiatella_arctica","Nucella_ostrina",0,0,1,NA,0,13.22,NA,NA
+2015-10-28,"BD","Limpets","Nucella_canaliculata",0,0,4,NA,0,13.22,NA,NA
+2015-10-28,"BD","Limpets","Nucella_ostrina",0,0,1,NA,0,13.22,NA,NA
+2015-10-28,"BD","Littorina_sitkana","Nucella_canaliculata",0,0,4,NA,0,13.22,NA,NA
+2015-10-28,"BD","Littorina_sitkana","Nucella_ostrina",0,0,1,NA,0,13.22,NA,NA
+2015-10-28,"BD","Modiolus_modiolus","Nucella_canaliculata",0,0,4,NA,0,13.22,NA,NA
+2015-10-28,"BD","Modiolus_modiolus","Nucella_ostrina",0,0,1,NA,0,13.22,NA,NA
+2015-10-28,"BD","Mytilus_californianus","Nucella_canaliculata",0,0,4,NA,0,13.22,NA,NA
+2015-10-28,"BD","Mytilus_californianus","Nucella_ostrina",0,0,1,NA,0,13.22,NA,NA
+2015-10-28,"BD","Mytilus_trossulus","Nucella_canaliculata",0,0,4,NA,0,13.22,NA,NA
+2015-10-28,"BD","Mytilus_trossulus","Nucella_ostrina",0,0,1,NA,0,13.22,NA,NA
+2015-10-28,"BD","Nucella_ostrina","Nucella_canaliculata",0,0,4,NA,0,13.22,NA,NA
+2015-10-28,"BD","Nucella_ostrina","Nucella_ostrina",0,0,1,NA,0,13.22,NA,NA
+2015-10-28,"BD","Pollicipes_polymerus","Nucella_canaliculata",0,0,4,NA,0,13.22,NA,NA
+2015-10-28,"BD","Pollicipes_polymerus","Nucella_ostrina",0,0,1,NA,0,13.22,NA,NA
+2015-10-28,"BD","Semibalanus_cariosus","Nucella_canaliculata",0,0,4,NA,0,13.22,NA,NA
+2015-10-28,"BD","Semibalanus_cariosus","Nucella_ostrina",0,0,1,NA,0,13.22,NA,NA
+2015-10-28,"BE","Adula_californiensis","Nucella_canaliculata",0,0,0,NA,0,13.22,NA,NA
+2015-10-28,"BE","Adula_californiensis","Nucella_ostrina",0,0,3,NA,0,13.22,NA,NA
+2015-10-28,"BE","Balanus_glandula","Nucella_canaliculata",0,0,0,NA,765.714285714286,13.22,NA,NA
+2015-10-28,"BE","Balanus_glandula","Nucella_ostrina",0,0,3,NA,765.714285714286,13.22,NA,NA
+2015-10-28,"BE","Chthamalus_dalli","Nucella_canaliculata",0,0,0,NA,1405.71428571429,13.22,NA,NA
+2015-10-28,"BE","Chthamalus_dalli","Nucella_ostrina",0,0,3,NA,1405.71428571429,13.22,NA,NA
+2015-10-28,"BE","Hiatella_arctica","Nucella_canaliculata",0,0,0,NA,0,13.22,NA,NA
+2015-10-28,"BE","Hiatella_arctica","Nucella_ostrina",0,0,3,NA,0,13.22,NA,NA
+2015-10-28,"BE","Limpets","Nucella_canaliculata",0,0,0,NA,2377.14285714286,13.22,NA,NA
+2015-10-28,"BE","Limpets","Nucella_ostrina",0,0,3,NA,2377.14285714286,13.22,NA,NA
+2015-10-28,"BE","Littorina_sitkana","Nucella_canaliculata",0,0,0,NA,2022.85714285714,13.22,NA,NA
+2015-10-28,"BE","Littorina_sitkana","Nucella_ostrina",0,0,3,NA,2022.85714285714,13.22,NA,NA
+2015-10-28,"BE","Modiolus_modiolus","Nucella_canaliculata",0,0,0,NA,0,13.22,NA,NA
+2015-10-28,"BE","Modiolus_modiolus","Nucella_ostrina",0,0,3,NA,0,13.22,NA,NA
+2015-10-28,"BE","Mytilus_californianus","Nucella_canaliculata",0,0,0,NA,0,13.22,NA,NA
+2015-10-28,"BE","Mytilus_californianus","Nucella_ostrina",0,0,3,NA,0,13.22,NA,NA
+2015-10-28,"BE","Mytilus_trossulus","Nucella_canaliculata",0,0,0,NA,445.714285714286,13.22,NA,NA
+2015-10-28,"BE","Mytilus_trossulus","Nucella_ostrina",0,0,3,NA,445.714285714286,13.22,NA,NA
+2015-10-28,"BE","Nucella_ostrina","Nucella_canaliculata",0,0,0,NA,11.4285714285714,13.22,NA,NA
+2015-10-28,"BE","Nucella_ostrina","Nucella_ostrina",0,0,3,NA,11.4285714285714,13.22,NA,NA
+2015-10-28,"BE","Pollicipes_polymerus","Nucella_canaliculata",0,0,0,NA,5931.42857142857,13.22,NA,NA
+2015-10-28,"BE","Pollicipes_polymerus","Nucella_ostrina",0,0,3,NA,5931.42857142857,13.22,NA,NA
+2015-10-28,"BE","Semibalanus_cariosus","Nucella_canaliculata",0,0,0,NA,0,13.22,NA,NA
+2015-10-28,"BE","Semibalanus_cariosus","Nucella_ostrina",0,0,3,NA,0,13.22,NA,NA
+2015-10-28,"BF","Adula_californiensis","Nucella_canaliculata",0,0,0,NA,0,13.22,NA,NA
+2015-10-28,"BF","Adula_californiensis","Nucella_ostrina",0,0,4,NA,0,13.22,NA,NA
+2015-10-28,"BF","Balanus_glandula","Nucella_canaliculata",0,0,0,NA,0,13.22,NA,NA
+2015-10-28,"BF","Balanus_glandula","Nucella_ostrina",0,0,4,NA,0,13.22,NA,NA
+2015-10-28,"BF","Chthamalus_dalli","Nucella_canaliculata",0,0,0,NA,0,13.22,NA,NA
+2015-10-28,"BF","Chthamalus_dalli","Nucella_ostrina",0,0,4,NA,0,13.22,NA,NA
+2015-10-28,"BF","Hiatella_arctica","Nucella_canaliculata",0,0,0,NA,0,13.22,NA,NA
+2015-10-28,"BF","Hiatella_arctica","Nucella_ostrina",0,0,4,NA,0,13.22,NA,NA
+2015-10-28,"BF","Limpets","Nucella_canaliculata",0,0,0,NA,0,13.22,NA,NA
+2015-10-28,"BF","Limpets","Nucella_ostrina",0,0,4,NA,0,13.22,NA,NA
+2015-10-28,"BF","Littorina_sitkana","Nucella_canaliculata",0,0,0,NA,0,13.22,NA,NA
+2015-10-28,"BF","Littorina_sitkana","Nucella_ostrina",0,0,4,NA,0,13.22,NA,NA
+2015-10-28,"BF","Modiolus_modiolus","Nucella_canaliculata",0,0,0,NA,0,13.22,NA,NA
+2015-10-28,"BF","Modiolus_modiolus","Nucella_ostrina",0,0,4,NA,0,13.22,NA,NA
+2015-10-28,"BF","Mytilus_californianus","Nucella_canaliculata",0,0,0,NA,0,13.22,NA,NA
+2015-10-28,"BF","Mytilus_californianus","Nucella_ostrina",0,0,4,NA,0,13.22,NA,NA
+2015-10-28,"BF","Mytilus_trossulus","Nucella_canaliculata",0,0,0,NA,0,13.22,NA,NA
+2015-10-28,"BF","Mytilus_trossulus","Nucella_ostrina",0,0,4,NA,0,13.22,NA,NA
+2015-10-28,"BF","Nucella_ostrina","Nucella_canaliculata",0,0,0,NA,0,13.22,NA,NA
+2015-10-28,"BF","Nucella_ostrina","Nucella_ostrina",0,0,4,NA,0,13.22,NA,NA
+2015-10-28,"BF","Pollicipes_polymerus","Nucella_canaliculata",0,0,0,NA,0,13.22,NA,NA
+2015-10-28,"BF","Pollicipes_polymerus","Nucella_ostrina",0,0,4,NA,0,13.22,NA,NA
+2015-10-28,"BF","Semibalanus_cariosus","Nucella_canaliculata",0,0,0,NA,0,13.22,NA,NA
+2015-10-28,"BF","Semibalanus_cariosus","Nucella_ostrina",0,0,4,NA,0,13.22,NA,NA
+2015-10-28,"C","Adula_californiensis","Nucella_canaliculata",0,0,15,NA,0,13.22,NA,NA
+2015-10-28,"C","Adula_californiensis","Nucella_ostrina",0,0,38,NA,0,13.22,NA,NA
+2015-10-28,"C","Balanus_glandula","Nucella_canaliculata",0,0,15,NA,434.285714285714,13.22,NA,NA
+2015-10-28,"C","Balanus_glandula","Nucella_ostrina",0.09375,3,38,27.8487310986956,434.285714285714,13.22,7.75158156259503e-06,0.00336640113575556
+2015-10-28,"C","Chthamalus_dalli","Nucella_canaliculata",0,0,15,NA,556.190476190477,13.22,NA,NA
+2015-10-28,"C","Chthamalus_dalli","Nucella_ostrina",0.0625,2,38,12.1864774187246,556.190476190477,13.22,9.22100550318226e-06,0.00512863544176995
+2015-10-28,"C","Hiatella_arctica","Nucella_canaliculata",0,0,15,NA,0,13.22,NA,NA
+2015-10-28,"C","Hiatella_arctica","Nucella_ostrina",0,0,38,NA,0,13.22,NA,NA
+2015-10-28,"C","Limpets","Nucella_canaliculata",0,0,15,NA,761.904761904762,13.22,NA,NA
+2015-10-28,"C","Limpets","Nucella_ostrina",0.03125,1,38,17.1448894970686,761.904761904762,13.22,2.39229450892715e-06,0.00182270057823021
+2015-10-28,"C","Littorina_sitkana","Nucella_canaliculata",0,0,15,NA,777.142857142857,13.22,NA,NA
+2015-10-28,"C","Littorina_sitkana","Nucella_ostrina",0,0,38,NA,777.142857142857,13.22,NA,NA
+2015-10-28,"C","Modiolus_modiolus","Nucella_canaliculata",0,0,15,NA,0,13.22,NA,NA
+2015-10-28,"C","Modiolus_modiolus","Nucella_ostrina",0,0,38,NA,0,13.22,NA,NA
+2015-10-28,"C","Mytilus_californianus","Nucella_canaliculata",0,0,15,NA,45.7142857142857,13.22,NA,NA
+2015-10-28,"C","Mytilus_californianus","Nucella_ostrina",0,0,38,NA,45.7142857142857,13.22,NA,NA
+2015-10-28,"C","Mytilus_trossulus","Nucella_canaliculata",0.0769230769230769,1,15,35.7453875486267,278.095238095238,13.22,7.73825586064386e-06,0.00215197210600763
+2015-10-28,"C","Mytilus_trossulus","Nucella_ostrina",0,0,38,NA,278.095238095238,13.22,NA,NA
+2015-10-28,"C","Nucella_ostrina","Nucella_canaliculata",0,0,15,NA,11.4285714285714,13.22,NA,NA
+2015-10-28,"C","Nucella_ostrina","Nucella_ostrina",0,0,38,NA,11.4285714285714,13.22,NA,NA
+2015-10-28,"C","Pollicipes_polymerus","Nucella_canaliculata",0.0769230769230769,1,15,7.18671806769325,11032.380952381,13.22,9.70189991074678e-07,0.0107035055777229
+2015-10-28,"C","Pollicipes_polymerus","Nucella_ostrina",0,0,38,NA,11032.380952381,13.22,NA,NA
+2015-10-28,"C","Semibalanus_cariosus","Nucella_canaliculata",0,0,15,NA,0,13.22,NA,NA
+2015-10-28,"C","Semibalanus_cariosus","Nucella_ostrina",0,0,38,NA,0,13.22,NA,NA
+2015-10-28,"D","Adula_californiensis","Nucella_canaliculata",0,0,0,NA,0,13.22,NA,NA
+2015-10-28,"D","Adula_californiensis","Nucella_ostrina",0,0,1,NA,0,13.22,NA,NA
+2015-10-28,"D","Balanus_glandula","Nucella_canaliculata",0,0,0,NA,874.285714285714,13.22,NA,NA
+2015-10-28,"D","Balanus_glandula","Nucella_ostrina",0,0,1,NA,874.285714285714,13.22,NA,NA
+2015-10-28,"D","Chthamalus_dalli","Nucella_canaliculata",0,0,0,NA,3760,13.22,NA,NA
+2015-10-28,"D","Chthamalus_dalli","Nucella_ostrina",0,0,1,NA,3760,13.22,NA,NA
+2015-10-28,"D","Hiatella_arctica","Nucella_canaliculata",0,0,0,NA,0,13.22,NA,NA
+2015-10-28,"D","Hiatella_arctica","Nucella_ostrina",0,0,1,NA,0,13.22,NA,NA
+2015-10-28,"D","Limpets","Nucella_canaliculata",0,0,0,NA,1062.85714285714,13.22,NA,NA
+2015-10-28,"D","Limpets","Nucella_ostrina",0,0,1,NA,1062.85714285714,13.22,NA,NA
+2015-10-28,"D","Littorina_sitkana","Nucella_canaliculata",0,0,0,NA,497.142857142858,13.22,NA,NA
+2015-10-28,"D","Littorina_sitkana","Nucella_ostrina",0,0,1,NA,497.142857142858,13.22,NA,NA
+2015-10-28,"D","Modiolus_modiolus","Nucella_canaliculata",0,0,0,NA,0,13.22,NA,NA
+2015-10-28,"D","Modiolus_modiolus","Nucella_ostrina",0,0,1,NA,0,13.22,NA,NA
+2015-10-28,"D","Mytilus_californianus","Nucella_canaliculata",0,0,0,NA,40,13.22,NA,NA
+2015-10-28,"D","Mytilus_californianus","Nucella_ostrina",0,0,1,NA,40,13.22,NA,NA
+2015-10-28,"D","Mytilus_trossulus","Nucella_canaliculata",0,0,0,NA,405.714285714286,13.22,NA,NA
+2015-10-28,"D","Mytilus_trossulus","Nucella_ostrina",0,0,1,NA,405.714285714286,13.22,NA,NA
+2015-10-28,"D","Nucella_ostrina","Nucella_canaliculata",0,0,0,NA,0,13.22,NA,NA
+2015-10-28,"D","Nucella_ostrina","Nucella_ostrina",0,0,1,NA,0,13.22,NA,NA
+2015-10-28,"D","Pollicipes_polymerus","Nucella_canaliculata",0,0,0,NA,114.285714285714,13.22,NA,NA
+2015-10-28,"D","Pollicipes_polymerus","Nucella_ostrina",0,0,1,NA,114.285714285714,13.22,NA,NA
+2015-10-28,"D","Semibalanus_cariosus","Nucella_canaliculata",0,0,0,NA,125.714285714286,13.22,NA,NA
+2015-10-28,"D","Semibalanus_cariosus","Nucella_ostrina",0,0,1,NA,125.714285714286,13.22,NA,NA
+2015-10-28,"E","Adula_californiensis","Nucella_canaliculata",0,0,6,NA,0,13.22,NA,NA
+2015-10-28,"E","Adula_californiensis","Nucella_ostrina",0,0,15,NA,0,13.22,NA,NA
+2015-10-28,"E","Balanus_glandula","Nucella_canaliculata",0,0,6,NA,2438.09523809524,13.22,NA,NA
+2015-10-28,"E","Balanus_glandula","Nucella_ostrina",0,0,15,NA,2438.09523809524,13.22,NA,NA
+2015-10-28,"E","Chthamalus_dalli","Nucella_canaliculata",0,0,6,NA,0,13.22,NA,NA
+2015-10-28,"E","Chthamalus_dalli","Nucella_ostrina",0.0714285714285714,1,15,14.1949134144371,0,13.22,Inf,0.00503198359462511
+2015-10-28,"E","Hiatella_arctica","Nucella_canaliculata",0,0,6,NA,0,13.22,NA,NA
+2015-10-28,"E","Hiatella_arctica","Nucella_ostrina",0,0,15,NA,0,13.22,NA,NA
+2015-10-28,"E","Limpets","Nucella_canaliculata",0,0,6,NA,510.476190476191,13.22,NA,NA
+2015-10-28,"E","Limpets","Nucella_ostrina",0,0,15,NA,510.476190476191,13.22,NA,NA
+2015-10-28,"E","Littorina_sitkana","Nucella_canaliculata",0,0,6,NA,4095.2380952381,13.22,NA,NA
+2015-10-28,"E","Littorina_sitkana","Nucella_ostrina",0,0,15,NA,4095.2380952381,13.22,NA,NA
+2015-10-28,"E","Modiolus_modiolus","Nucella_canaliculata",0,0,6,NA,0,13.22,NA,NA
+2015-10-28,"E","Modiolus_modiolus","Nucella_ostrina",0,0,15,NA,0,13.22,NA,NA
+2015-10-28,"E","Mytilus_californianus","Nucella_canaliculata",0,0,6,NA,80,13.22,NA,NA
+2015-10-28,"E","Mytilus_californianus","Nucella_ostrina",0,0,15,NA,80,13.22,NA,NA
+2015-10-28,"E","Mytilus_trossulus","Nucella_canaliculata",0,0,6,NA,194.285714285714,13.22,NA,NA
+2015-10-28,"E","Mytilus_trossulus","Nucella_ostrina",0,0,15,NA,194.285714285714,13.22,NA,NA
+2015-10-28,"E","Nucella_ostrina","Nucella_canaliculata",0,0,6,NA,0,13.22,NA,NA
+2015-10-28,"E","Nucella_ostrina","Nucella_ostrina",0,0,15,NA,0,13.22,NA,NA
+2015-10-28,"E","Pollicipes_polymerus","Nucella_canaliculata",0.2,1,6,1.92296450638558,12815.2380952381,13.22,8.1158133057803e-06,0.104006079850076
+2015-10-28,"E","Pollicipes_polymerus","Nucella_ostrina",0,0,15,NA,12815.2380952381,13.22,NA,NA
+2015-10-28,"E","Semibalanus_cariosus","Nucella_canaliculata",0,0,6,NA,11.4285714285714,13.22,NA,NA
+2015-10-28,"E","Semibalanus_cariosus","Nucella_ostrina",0,0,15,NA,11.4285714285714,13.22,NA,NA
+2015-10-28,"F","Adula_californiensis","Nucella_canaliculata",0,0,0,NA,0,13.22,NA,NA
+2015-10-28,"F","Adula_californiensis","Nucella_ostrina",0,0,4,NA,0,13.22,NA,NA
+2015-10-28,"F","Balanus_glandula","Nucella_canaliculata",0,0,0,NA,13638.8571428571,13.22,NA,NA
+2015-10-28,"F","Balanus_glandula","Nucella_ostrina",0,0,4,NA,13638.8571428571,13.22,NA,NA
+2015-10-28,"F","Chthamalus_dalli","Nucella_canaliculata",0,0,0,NA,34955.4285714286,13.22,NA,NA
+2015-10-28,"F","Chthamalus_dalli","Nucella_ostrina",0,0,4,NA,34955.4285714286,13.22,NA,NA
+2015-10-28,"F","Hiatella_arctica","Nucella_canaliculata",0,0,0,NA,0,13.22,NA,NA
+2015-10-28,"F","Hiatella_arctica","Nucella_ostrina",0,0,4,NA,0,13.22,NA,NA
+2015-10-28,"F","Limpets","Nucella_canaliculata",0,0,0,NA,1081.90476190476,13.22,NA,NA
+2015-10-28,"F","Limpets","Nucella_ostrina",0,0,4,NA,1081.90476190476,13.22,NA,NA
+2015-10-28,"F","Littorina_sitkana","Nucella_canaliculata",0,0,0,NA,1885.71428571428,13.22,NA,NA
+2015-10-28,"F","Littorina_sitkana","Nucella_ostrina",0,0,4,NA,1885.71428571428,13.22,NA,NA
+2015-10-28,"F","Modiolus_modiolus","Nucella_canaliculata",0,0,0,NA,0,13.22,NA,NA
+2015-10-28,"F","Modiolus_modiolus","Nucella_ostrina",0,0,4,NA,0,13.22,NA,NA
+2015-10-28,"F","Mytilus_californianus","Nucella_canaliculata",0,0,0,NA,0,13.22,NA,NA
+2015-10-28,"F","Mytilus_californianus","Nucella_ostrina",0,0,4,NA,0,13.22,NA,NA
+2015-10-28,"F","Mytilus_trossulus","Nucella_canaliculata",0,0,0,NA,99.047619047619,13.22,NA,NA
+2015-10-28,"F","Mytilus_trossulus","Nucella_ostrina",0.333333333333333,1,4,39.8155587568463,99.047619047619,13.22,8.45243598347326e-05,0.00837193659315446
+2015-10-28,"F","Nucella_ostrina","Nucella_canaliculata",0,0,0,NA,0,13.22,NA,NA
+2015-10-28,"F","Nucella_ostrina","Nucella_ostrina",0,0,4,NA,0,13.22,NA,NA
+2015-10-28,"F","Pollicipes_polymerus","Nucella_canaliculata",0,0,0,NA,0,13.22,NA,NA
+2015-10-28,"F","Pollicipes_polymerus","Nucella_ostrina",0,0,4,NA,0,13.22,NA,NA
+2015-10-28,"F","Semibalanus_cariosus","Nucella_canaliculata",0,0,0,NA,7.6190476190476,13.22,NA,NA
+2015-10-28,"F","Semibalanus_cariosus","Nucella_ostrina",0,0,4,NA,7.6190476190476,13.22,NA,NA
+2015-10-28,"G","Adula_californiensis","Nucella_canaliculata",0,0,3,NA,0,13.22,NA,NA
+2015-10-28,"G","Adula_californiensis","Nucella_ostrina",0,0,8,NA,0,13.22,NA,NA
+2015-10-28,"G","Balanus_glandula","Nucella_canaliculata",0,0,3,NA,57.1428571428571,13.22,NA,NA
+2015-10-28,"G","Balanus_glandula","Nucella_ostrina",0,0,8,NA,57.1428571428571,13.22,NA,NA
+2015-10-28,"G","Chthamalus_dalli","Nucella_canaliculata",0,0,3,NA,11.4285714285714,13.22,NA,NA
+2015-10-28,"G","Chthamalus_dalli","Nucella_ostrina",0,0,8,NA,11.4285714285714,13.22,NA,NA
+2015-10-28,"G","Hiatella_arctica","Nucella_canaliculata",0,0,3,NA,0,13.22,NA,NA
+2015-10-28,"G","Hiatella_arctica","Nucella_ostrina",0,0,8,NA,0,13.22,NA,NA
+2015-10-28,"G","Limpets","Nucella_canaliculata",0,0,3,NA,765.714285714286,13.22,NA,NA
+2015-10-28,"G","Limpets","Nucella_ostrina",0,0,8,NA,765.714285714286,13.22,NA,NA
+2015-10-28,"G","Littorina_sitkana","Nucella_canaliculata",0,0,3,NA,1828.57142857143,13.22,NA,NA
+2015-10-28,"G","Littorina_sitkana","Nucella_ostrina",0,0,8,NA,1828.57142857143,13.22,NA,NA
+2015-10-28,"G","Modiolus_modiolus","Nucella_canaliculata",0,0,3,NA,0,13.22,NA,NA
+2015-10-28,"G","Modiolus_modiolus","Nucella_ostrina",0,0,8,NA,0,13.22,NA,NA
+2015-10-28,"G","Mytilus_californianus","Nucella_canaliculata",0,0,3,NA,91.4285714285714,13.22,NA,NA
+2015-10-28,"G","Mytilus_californianus","Nucella_ostrina",0,0,8,NA,91.4285714285714,13.22,NA,NA
+2015-10-28,"G","Mytilus_trossulus","Nucella_canaliculata",0,0,3,NA,171.428571428571,13.22,NA,NA
+2015-10-28,"G","Mytilus_trossulus","Nucella_ostrina",0,0,8,NA,171.428571428571,13.22,NA,NA
+2015-10-28,"G","Nucella_ostrina","Nucella_canaliculata",0,0,3,NA,22.8571428571429,13.22,NA,NA
+2015-10-28,"G","Nucella_ostrina","Nucella_ostrina",0,0,8,NA,22.8571428571429,13.22,NA,NA
+2015-10-28,"G","Pollicipes_polymerus","Nucella_canaliculata",0,0,3,NA,17120,13.22,NA,NA
+2015-10-28,"G","Pollicipes_polymerus","Nucella_ostrina",0.142857142857143,1,8,1.92296450638558,17120,13.22,4.33937249040703e-06,0.0742900570357684
+2015-10-28,"G","Semibalanus_cariosus","Nucella_canaliculata",0,0,3,NA,80,13.22,NA,NA
+2015-10-28,"G","Semibalanus_cariosus","Nucella_ostrina",0,0,8,NA,80,13.22,NA,NA
+2015-11-24,"A","Adula_californiensis","Nucella_canaliculata",0,0,18,NA,0,13.22,NA,NA
+2015-11-24,"A","Adula_californiensis","Nucella_ostrina",0,0,3,NA,0,13.22,NA,NA
+2015-11-24,"A","Balanus_glandula","Nucella_canaliculata",0,0,18,NA,5542.85714285714,13.22,NA,NA
+2015-11-24,"A","Balanus_glandula","Nucella_ostrina",0,0,3,NA,5542.85714285714,13.22,NA,NA
+2015-11-24,"A","Chthamalus_dalli","Nucella_canaliculata",0,0,18,NA,937.142857142857,13.22,NA,NA
+2015-11-24,"A","Chthamalus_dalli","Nucella_ostrina",0,0,3,NA,937.142857142857,13.22,NA,NA
+2015-11-24,"A","Hiatella_arctica","Nucella_canaliculata",0,0,18,NA,0,13.22,NA,NA
+2015-11-24,"A","Hiatella_arctica","Nucella_ostrina",0,0,3,NA,0,13.22,NA,NA
+2015-11-24,"A","Limpets","Nucella_canaliculata",0,0,18,NA,3142.85714285714,13.22,NA,NA
+2015-11-24,"A","Limpets","Nucella_ostrina",0,0,3,NA,3142.85714285714,13.22,NA,NA
+2015-11-24,"A","Littorina_sitkana","Nucella_canaliculata",0,0,18,NA,594.285714285714,13.22,NA,NA
+2015-11-24,"A","Littorina_sitkana","Nucella_ostrina",0,0,3,NA,594.285714285714,13.22,NA,NA
+2015-11-24,"A","Modiolus_modiolus","Nucella_canaliculata",0,0,18,NA,0,13.22,NA,NA
+2015-11-24,"A","Modiolus_modiolus","Nucella_ostrina",0,0,3,NA,0,13.22,NA,NA
+2015-11-24,"A","Mytilus_californianus","Nucella_canaliculata",0,0,18,NA,45.7142857142857,13.22,NA,NA
+2015-11-24,"A","Mytilus_californianus","Nucella_ostrina",0,0,3,NA,45.7142857142857,13.22,NA,NA
+2015-11-24,"A","Mytilus_trossulus","Nucella_canaliculata",0,0,18,NA,6582.85714285714,13.22,NA,NA
+2015-11-24,"A","Mytilus_trossulus","Nucella_ostrina",0,0,3,NA,6582.85714285714,13.22,NA,NA
+2015-11-24,"A","Nucella_ostrina","Nucella_canaliculata",0,0,18,NA,0,13.22,NA,NA
+2015-11-24,"A","Nucella_ostrina","Nucella_ostrina",0,0,3,NA,0,13.22,NA,NA
+2015-11-24,"A","Pollicipes_polymerus","Nucella_canaliculata",0,0,18,NA,16868.5714285714,13.22,NA,NA
+2015-11-24,"A","Pollicipes_polymerus","Nucella_ostrina",0,0,3,NA,16868.5714285714,13.22,NA,NA
+2015-11-24,"A","Semibalanus_cariosus","Nucella_canaliculata",0,0,18,NA,11.4285714285714,13.22,NA,NA
+2015-11-24,"A","Semibalanus_cariosus","Nucella_ostrina",0,0,3,NA,11.4285714285714,13.22,NA,NA
+2015-11-24,"AB","Adula_californiensis","Nucella_canaliculata",0,0,6,NA,0,13.22,NA,NA
+2015-11-24,"AB","Adula_californiensis","Nucella_ostrina",0,0,15,NA,0,13.22,NA,NA
+2015-11-24,"AB","Balanus_glandula","Nucella_canaliculata",0,0,6,NA,457.142857142857,13.22,NA,NA
+2015-11-24,"AB","Balanus_glandula","Nucella_ostrina",0,0,15,NA,457.142857142857,13.22,NA,NA
+2015-11-24,"AB","Chthamalus_dalli","Nucella_canaliculata",0,0,6,NA,495.238095238095,13.22,NA,NA
+2015-11-24,"AB","Chthamalus_dalli","Nucella_ostrina",0,0,15,NA,495.238095238095,13.22,NA,NA
+2015-11-24,"AB","Hiatella_arctica","Nucella_canaliculata",0,0,6,NA,0,13.22,NA,NA
+2015-11-24,"AB","Hiatella_arctica","Nucella_ostrina",0,0,15,NA,0,13.22,NA,NA
+2015-11-24,"AB","Limpets","Nucella_canaliculata",0,0,6,NA,959.999999999999,13.22,NA,NA
+2015-11-24,"AB","Limpets","Nucella_ostrina",0,0,15,NA,959.999999999999,13.22,NA,NA
+2015-11-24,"AB","Littorina_sitkana","Nucella_canaliculata",0,0,6,NA,800.000000000001,13.22,NA,NA
+2015-11-24,"AB","Littorina_sitkana","Nucella_ostrina",0,0,15,NA,800.000000000001,13.22,NA,NA
+2015-11-24,"AB","Modiolus_modiolus","Nucella_canaliculata",0,0,6,NA,0,13.22,NA,NA
+2015-11-24,"AB","Modiolus_modiolus","Nucella_ostrina",0,0,15,NA,0,13.22,NA,NA
+2015-11-24,"AB","Mytilus_californianus","Nucella_canaliculata",0,0,6,NA,76.1904761904761,13.22,NA,NA
+2015-11-24,"AB","Mytilus_californianus","Nucella_ostrina",0,0,15,NA,76.1904761904761,13.22,NA,NA
+2015-11-24,"AB","Mytilus_trossulus","Nucella_canaliculata",0,0,6,NA,175.238095238095,13.22,NA,NA
+2015-11-24,"AB","Mytilus_trossulus","Nucella_ostrina",0,0,15,NA,175.238095238095,13.22,NA,NA
+2015-11-24,"AB","Nucella_ostrina","Nucella_canaliculata",0,0,6,NA,3.8095238095238,13.22,NA,NA
+2015-11-24,"AB","Nucella_ostrina","Nucella_ostrina",0,0,15,NA,3.8095238095238,13.22,NA,NA
+2015-11-24,"AB","Pollicipes_polymerus","Nucella_canaliculata",0,0,6,NA,11398.0952380952,13.22,NA,NA
+2015-11-24,"AB","Pollicipes_polymerus","Nucella_ostrina",0,0,15,NA,11398.0952380952,13.22,NA,NA
+2015-11-24,"AB","Semibalanus_cariosus","Nucella_canaliculata",0,0,6,NA,99.0476190476191,13.22,NA,NA
+2015-11-24,"AB","Semibalanus_cariosus","Nucella_ostrina",0,0,15,NA,99.0476190476191,13.22,NA,NA
+2015-11-24,"AC","Adula_californiensis","Nucella_canaliculata",0,0,0,NA,0,13.22,NA,NA
+2015-11-24,"AC","Adula_californiensis","Nucella_ostrina",0,0,0,NA,0,13.22,NA,NA
+2015-11-24,"AC","Balanus_glandula","Nucella_canaliculata",0,0,0,NA,1946.66666666667,13.22,NA,NA
+2015-11-24,"AC","Balanus_glandula","Nucella_ostrina",0,0,0,NA,1946.66666666667,13.22,NA,NA
+2015-11-24,"AC","Chthamalus_dalli","Nucella_canaliculata",0,0,0,NA,571.428571428571,13.22,NA,NA
+2015-11-24,"AC","Chthamalus_dalli","Nucella_ostrina",0,0,0,NA,571.428571428571,13.22,NA,NA
+2015-11-24,"AC","Hiatella_arctica","Nucella_canaliculata",0,0,0,NA,0,13.22,NA,NA
+2015-11-24,"AC","Hiatella_arctica","Nucella_ostrina",0,0,0,NA,0,13.22,NA,NA
+2015-11-24,"AC","Limpets","Nucella_canaliculata",0,0,0,NA,784.761904761904,13.22,NA,NA
+2015-11-24,"AC","Limpets","Nucella_ostrina",0,0,0,NA,784.761904761904,13.22,NA,NA
+2015-11-24,"AC","Littorina_sitkana","Nucella_canaliculata",0,0,0,NA,586.666666666667,13.22,NA,NA
+2015-11-24,"AC","Littorina_sitkana","Nucella_ostrina",0,0,0,NA,586.666666666667,13.22,NA,NA
+2015-11-24,"AC","Modiolus_modiolus","Nucella_canaliculata",0,0,0,NA,0,13.22,NA,NA
+2015-11-24,"AC","Modiolus_modiolus","Nucella_ostrina",0,0,0,NA,0,13.22,NA,NA
+2015-11-24,"AC","Mytilus_californianus","Nucella_canaliculata",0,0,0,NA,11.4285714285714,13.22,NA,NA
+2015-11-24,"AC","Mytilus_californianus","Nucella_ostrina",0,0,0,NA,11.4285714285714,13.22,NA,NA
+2015-11-24,"AC","Mytilus_trossulus","Nucella_canaliculata",0,0,0,NA,274.285714285714,13.22,NA,NA
+2015-11-24,"AC","Mytilus_trossulus","Nucella_ostrina",0,0,0,NA,274.285714285714,13.22,NA,NA
+2015-11-24,"AC","Nucella_ostrina","Nucella_canaliculata",0,0,0,NA,3.8095238095238,13.22,NA,NA
+2015-11-24,"AC","Nucella_ostrina","Nucella_ostrina",0,0,0,NA,3.8095238095238,13.22,NA,NA
+2015-11-24,"AC","Pollicipes_polymerus","Nucella_canaliculata",0,0,0,NA,68.5714285714287,13.22,NA,NA
+2015-11-24,"AC","Pollicipes_polymerus","Nucella_ostrina",0,0,0,NA,68.5714285714287,13.22,NA,NA
+2015-11-24,"AC","Semibalanus_cariosus","Nucella_canaliculata",0,0,0,NA,68.5714285714287,13.22,NA,NA
+2015-11-24,"AC","Semibalanus_cariosus","Nucella_ostrina",0,0,0,NA,68.5714285714287,13.22,NA,NA
+2015-11-24,"AD","Adula_californiensis","Nucella_canaliculata",0,0,13,NA,0,13.22,NA,NA
+2015-11-24,"AD","Adula_californiensis","Nucella_ostrina",0,0,4,NA,0,13.22,NA,NA
+2015-11-24,"AD","Balanus_glandula","Nucella_canaliculata",0.1,1,13,43.5386852780647,14028.1904761905,13.22,1.63728029557909e-07,0.0022968079849297
+2015-11-24,"AD","Balanus_glandula","Nucella_ostrina",0,0,4,NA,14028.1904761905,13.22,NA,NA
+2015-11-24,"AD","Chthamalus_dalli","Nucella_canaliculata",0,0,13,NA,1144.38095238095,13.22,NA,NA
+2015-11-24,"AD","Chthamalus_dalli","Nucella_ostrina",0,0,4,NA,1144.38095238095,13.22,NA,NA
+2015-11-24,"AD","Hiatella_arctica","Nucella_canaliculata",0,0,13,NA,0,13.22,NA,NA
+2015-11-24,"AD","Hiatella_arctica","Nucella_ostrina",0,0,4,NA,0,13.22,NA,NA
+2015-11-24,"AD","Limpets","Nucella_canaliculata",0,0,13,NA,1950.47619047619,13.22,NA,NA
+2015-11-24,"AD","Limpets","Nucella_ostrina",0,0,4,NA,1950.47619047619,13.22,NA,NA
+2015-11-24,"AD","Littorina_sitkana","Nucella_canaliculata",0,0,13,NA,1535.23809523809,13.22,NA,NA
+2015-11-24,"AD","Littorina_sitkana","Nucella_ostrina",0,0,4,NA,1535.23809523809,13.22,NA,NA
+2015-11-24,"AD","Modiolus_modiolus","Nucella_canaliculata",0,0,13,NA,0,13.22,NA,NA
+2015-11-24,"AD","Modiolus_modiolus","Nucella_ostrina",0,0,4,NA,0,13.22,NA,NA
+2015-11-24,"AD","Mytilus_californianus","Nucella_canaliculata",0,0,13,NA,140.952380952381,13.22,NA,NA
+2015-11-24,"AD","Mytilus_californianus","Nucella_ostrina",0,0,4,NA,140.952380952381,13.22,NA,NA
+2015-11-24,"AD","Mytilus_trossulus","Nucella_canaliculata",0.2,2,13,37.8319143312051,4891.42857142857,13.22,1.08077667202698e-06,0.00528654189288626
+2015-11-24,"AD","Mytilus_trossulus","Nucella_ostrina",0,0,4,NA,4891.42857142857,13.22,NA,NA
+2015-11-24,"AD","Nucella_ostrina","Nucella_canaliculata",0,0,13,NA,3.8095238095238,13.22,NA,NA
+2015-11-24,"AD","Nucella_ostrina","Nucella_ostrina",0,0,4,NA,3.8095238095238,13.22,NA,NA
+2015-11-24,"AD","Pollicipes_polymerus","Nucella_canaliculata",0,0,13,NA,13988.5714285714,13.22,NA,NA
+2015-11-24,"AD","Pollicipes_polymerus","Nucella_ostrina",0.333333333333333,1,4,1.92296450638558,13988.5714285714,13.22,1.23917919211351e-05,0.173343466416793
+2015-11-24,"AD","Semibalanus_cariosus","Nucella_canaliculata",0,0,13,NA,38.0952380952381,13.22,NA,NA
+2015-11-24,"AD","Semibalanus_cariosus","Nucella_ostrina",0,0,4,NA,38.0952380952381,13.22,NA,NA
+2015-11-24,"AE","Adula_californiensis","Nucella_canaliculata",0,0,0,NA,0,13.22,NA,NA
+2015-11-24,"AE","Adula_californiensis","Nucella_ostrina",0,0,3,NA,0,13.22,NA,NA
+2015-11-24,"AE","Balanus_glandula","Nucella_canaliculata",0,0,0,NA,1603.80952380952,13.22,NA,NA
+2015-11-24,"AE","Balanus_glandula","Nucella_ostrina",0,0,3,NA,1603.80952380952,13.22,NA,NA
+2015-11-24,"AE","Chthamalus_dalli","Nucella_canaliculata",0,0,0,NA,9017.14285714287,13.22,NA,NA
+2015-11-24,"AE","Chthamalus_dalli","Nucella_ostrina",0,0,3,NA,9017.14285714287,13.22,NA,NA
+2015-11-24,"AE","Hiatella_arctica","Nucella_canaliculata",0,0,0,NA,0,13.22,NA,NA
+2015-11-24,"AE","Hiatella_arctica","Nucella_ostrina",0,0,3,NA,0,13.22,NA,NA
+2015-11-24,"AE","Limpets","Nucella_canaliculata",0,0,0,NA,1809.52380952381,13.22,NA,NA
+2015-11-24,"AE","Limpets","Nucella_ostrina",0,0,3,NA,1809.52380952381,13.22,NA,NA
+2015-11-24,"AE","Littorina_sitkana","Nucella_canaliculata",0,0,0,NA,582.857142857143,13.22,NA,NA
+2015-11-24,"AE","Littorina_sitkana","Nucella_ostrina",0,0,3,NA,582.857142857143,13.22,NA,NA
+2015-11-24,"AE","Modiolus_modiolus","Nucella_canaliculata",0,0,0,NA,0,13.22,NA,NA
+2015-11-24,"AE","Modiolus_modiolus","Nucella_ostrina",0,0,3,NA,0,13.22,NA,NA
+2015-11-24,"AE","Mytilus_californianus","Nucella_canaliculata",0,0,0,NA,64.7619047619047,13.22,NA,NA
+2015-11-24,"AE","Mytilus_californianus","Nucella_ostrina",0,0,3,NA,64.7619047619047,13.22,NA,NA
+2015-11-24,"AE","Mytilus_trossulus","Nucella_canaliculata",0,0,0,NA,502.857142857143,13.22,NA,NA
+2015-11-24,"AE","Mytilus_trossulus","Nucella_ostrina",0,0,3,NA,502.857142857143,13.22,NA,NA
+2015-11-24,"AE","Nucella_ostrina","Nucella_canaliculata",0,0,0,NA,0,13.22,NA,NA
+2015-11-24,"AE","Nucella_ostrina","Nucella_ostrina",0,0,3,NA,0,13.22,NA,NA
+2015-11-24,"AE","Pollicipes_polymerus","Nucella_canaliculata",0,0,0,NA,1306.66666666667,13.22,NA,NA
+2015-11-24,"AE","Pollicipes_polymerus","Nucella_ostrina",0,0,3,NA,1306.66666666667,13.22,NA,NA
+2015-11-24,"AE","Semibalanus_cariosus","Nucella_canaliculata",0,0,0,NA,137.142857142857,13.22,NA,NA
+2015-11-24,"AE","Semibalanus_cariosus","Nucella_ostrina",0,0,3,NA,137.142857142857,13.22,NA,NA
+2015-11-24,"AF","Adula_californiensis","Nucella_canaliculata",0,0,0,NA,0,13.22,NA,NA
+2015-11-24,"AF","Adula_californiensis","Nucella_ostrina",0,0,6,NA,0,13.22,NA,NA
+2015-11-24,"AF","Balanus_glandula","Nucella_canaliculata",0,0,0,NA,25221.7142857143,13.22,NA,NA
+2015-11-24,"AF","Balanus_glandula","Nucella_ostrina",0,0,6,NA,25221.7142857143,13.22,NA,NA
+2015-11-24,"AF","Chthamalus_dalli","Nucella_canaliculata",0,0,0,NA,13411.4285714286,13.22,NA,NA
+2015-11-24,"AF","Chthamalus_dalli","Nucella_ostrina",0,0,6,NA,13411.4285714286,13.22,NA,NA
+2015-11-24,"AF","Hiatella_arctica","Nucella_canaliculata",0,0,0,NA,0,13.22,NA,NA
+2015-11-24,"AF","Hiatella_arctica","Nucella_ostrina",0,0,6,NA,0,13.22,NA,NA
+2015-11-24,"AF","Limpets","Nucella_canaliculata",0,0,0,NA,965.714285714287,13.22,NA,NA
+2015-11-24,"AF","Limpets","Nucella_ostrina",0,0,6,NA,965.714285714287,13.22,NA,NA
+2015-11-24,"AF","Littorina_sitkana","Nucella_canaliculata",0,0,0,NA,2234.28571428572,13.22,NA,NA
+2015-11-24,"AF","Littorina_sitkana","Nucella_ostrina",0,0,6,NA,2234.28571428572,13.22,NA,NA
+2015-11-24,"AF","Modiolus_modiolus","Nucella_canaliculata",0,0,0,NA,0,13.22,NA,NA
+2015-11-24,"AF","Modiolus_modiolus","Nucella_ostrina",0,0,6,NA,0,13.22,NA,NA
+2015-11-24,"AF","Mytilus_californianus","Nucella_canaliculata",0,0,0,NA,5.7142857142857,13.22,NA,NA
+2015-11-24,"AF","Mytilus_californianus","Nucella_ostrina",0,0,6,NA,5.7142857142857,13.22,NA,NA
+2015-11-24,"AF","Mytilus_trossulus","Nucella_canaliculata",0,0,0,NA,914.285714285714,13.22,NA,NA
+2015-11-24,"AF","Mytilus_trossulus","Nucella_ostrina",0,0,6,NA,914.285714285714,13.22,NA,NA
+2015-11-24,"AF","Nucella_ostrina","Nucella_canaliculata",0,0,0,NA,0,13.22,NA,NA
+2015-11-24,"AF","Nucella_ostrina","Nucella_ostrina",0,0,6,NA,0,13.22,NA,NA
+2015-11-24,"AF","Pollicipes_polymerus","Nucella_canaliculata",0,0,0,NA,120,13.22,NA,NA
+2015-11-24,"AF","Pollicipes_polymerus","Nucella_ostrina",0,0,6,NA,120,13.22,NA,NA
+2015-11-24,"AF","Semibalanus_cariosus","Nucella_canaliculata",0,0,0,NA,11.4285714285715,13.22,NA,NA
+2015-11-24,"AF","Semibalanus_cariosus","Nucella_ostrina",0,0,6,NA,11.4285714285715,13.22,NA,NA
+2015-11-24,"AG","Adula_californiensis","Nucella_canaliculata",0,0,0,NA,0,13.22,NA,NA
+2015-11-24,"AG","Adula_californiensis","Nucella_ostrina",0,0,3,NA,0,13.22,NA,NA
+2015-11-24,"AG","Balanus_glandula","Nucella_canaliculata",0,0,0,NA,0,13.22,NA,NA
+2015-11-24,"AG","Balanus_glandula","Nucella_ostrina",0,0,3,NA,0,13.22,NA,NA
+2015-11-24,"AG","Chthamalus_dalli","Nucella_canaliculata",0,0,0,NA,0,13.22,NA,NA
+2015-11-24,"AG","Chthamalus_dalli","Nucella_ostrina",0,0,3,NA,0,13.22,NA,NA
+2015-11-24,"AG","Hiatella_arctica","Nucella_canaliculata",0,0,0,NA,0,13.22,NA,NA
+2015-11-24,"AG","Hiatella_arctica","Nucella_ostrina",0,0,3,NA,0,13.22,NA,NA
+2015-11-24,"AG","Limpets","Nucella_canaliculata",0,0,0,NA,0,13.22,NA,NA
+2015-11-24,"AG","Limpets","Nucella_ostrina",0,0,3,NA,0,13.22,NA,NA
+2015-11-24,"AG","Littorina_sitkana","Nucella_canaliculata",0,0,0,NA,0,13.22,NA,NA
+2015-11-24,"AG","Littorina_sitkana","Nucella_ostrina",0,0,3,NA,0,13.22,NA,NA
+2015-11-24,"AG","Modiolus_modiolus","Nucella_canaliculata",0,0,0,NA,0,13.22,NA,NA
+2015-11-24,"AG","Modiolus_modiolus","Nucella_ostrina",0,0,3,NA,0,13.22,NA,NA
+2015-11-24,"AG","Mytilus_californianus","Nucella_canaliculata",0,0,0,NA,0,13.22,NA,NA
+2015-11-24,"AG","Mytilus_californianus","Nucella_ostrina",0,0,3,NA,0,13.22,NA,NA
+2015-11-24,"AG","Mytilus_trossulus","Nucella_canaliculata",0,0,0,NA,0,13.22,NA,NA
+2015-11-24,"AG","Mytilus_trossulus","Nucella_ostrina",0,0,3,NA,0,13.22,NA,NA
+2015-11-24,"AG","Nucella_ostrina","Nucella_canaliculata",0,0,0,NA,0,13.22,NA,NA
+2015-11-24,"AG","Nucella_ostrina","Nucella_ostrina",0,0,3,NA,0,13.22,NA,NA
+2015-11-24,"AG","Pollicipes_polymerus","Nucella_canaliculata",0,0,0,NA,0,13.22,NA,NA
+2015-11-24,"AG","Pollicipes_polymerus","Nucella_ostrina",0,0,3,NA,0,13.22,NA,NA
+2015-11-24,"AG","Semibalanus_cariosus","Nucella_canaliculata",0,0,0,NA,0,13.22,NA,NA
+2015-11-24,"AG","Semibalanus_cariosus","Nucella_ostrina",0,0,3,NA,0,13.22,NA,NA
+2015-11-24,"B","Adula_californiensis","Nucella_canaliculata",0,0,26,NA,0,13.22,NA,NA
+2015-11-24,"B","Adula_californiensis","Nucella_ostrina",0,0,4,NA,0,13.22,NA,NA
+2015-11-24,"B","Balanus_glandula","Nucella_canaliculata",0,0,26,NA,3074.28571428571,13.22,NA,NA
+2015-11-24,"B","Balanus_glandula","Nucella_ostrina",0,0,4,NA,3074.28571428571,13.22,NA,NA
+2015-11-24,"B","Chthamalus_dalli","Nucella_canaliculata",0,0,26,NA,2819.04761904762,13.22,NA,NA
+2015-11-24,"B","Chthamalus_dalli","Nucella_ostrina",0,0,4,NA,2819.04761904762,13.22,NA,NA
+2015-11-24,"B","Hiatella_arctica","Nucella_canaliculata",0,0,26,NA,0,13.22,NA,NA
+2015-11-24,"B","Hiatella_arctica","Nucella_ostrina",0,0,4,NA,0,13.22,NA,NA
+2015-11-24,"B","Limpets","Nucella_canaliculata",0,0,26,NA,2064.76190476191,13.22,NA,NA
+2015-11-24,"B","Limpets","Nucella_ostrina",0,0,4,NA,2064.76190476191,13.22,NA,NA
+2015-11-24,"B","Littorina_sitkana","Nucella_canaliculata",0,0,26,NA,940.952380952384,13.22,NA,NA
+2015-11-24,"B","Littorina_sitkana","Nucella_ostrina",0,0,4,NA,940.952380952384,13.22,NA,NA
+2015-11-24,"B","Modiolus_modiolus","Nucella_canaliculata",0,0,26,NA,0,13.22,NA,NA
+2015-11-24,"B","Modiolus_modiolus","Nucella_ostrina",0,0,4,NA,0,13.22,NA,NA
+2015-11-24,"B","Mytilus_californianus","Nucella_canaliculata",0,0,26,NA,68.5714285714285,13.22,NA,NA
+2015-11-24,"B","Mytilus_californianus","Nucella_ostrina",0,0,4,NA,68.5714285714285,13.22,NA,NA
+2015-11-24,"B","Mytilus_trossulus","Nucella_canaliculata",0.04,1,26,59.7413977390413,662.857142857143,13.22,1.01010069851063e-06,0.000669552463012759
+2015-11-24,"B","Mytilus_trossulus","Nucella_ostrina",0,0,4,NA,662.857142857143,13.22,NA,NA
+2015-11-24,"B","Nucella_ostrina","Nucella_canaliculata",0,0,26,NA,7.61904761904763,13.22,NA,NA
+2015-11-24,"B","Nucella_ostrina","Nucella_ostrina",0,0,4,NA,7.61904761904763,13.22,NA,NA
+2015-11-24,"B","Pollicipes_polymerus","Nucella_canaliculata",0,0,26,NA,10460.9523809524,13.22,NA,NA
+2015-11-24,"B","Pollicipes_polymerus","Nucella_ostrina",0,0,4,NA,10460.9523809524,13.22,NA,NA
+2015-11-24,"B","Semibalanus_cariosus","Nucella_canaliculata",0,0,26,NA,22.8571428571429,13.22,NA,NA
+2015-11-24,"B","Semibalanus_cariosus","Nucella_ostrina",0,0,4,NA,22.8571428571429,13.22,NA,NA
+2015-11-24,"BB","Adula_californiensis","Nucella_canaliculata",0,0,0,NA,0,13.22,NA,NA
+2015-11-24,"BB","Adula_californiensis","Nucella_ostrina",0,0,0,NA,0,13.22,NA,NA
+2015-11-24,"BB","Balanus_glandula","Nucella_canaliculata",0,0,0,NA,35931.4285714286,13.22,NA,NA
+2015-11-24,"BB","Balanus_glandula","Nucella_ostrina",0,0,0,NA,35931.4285714286,13.22,NA,NA
+2015-11-24,"BB","Chthamalus_dalli","Nucella_canaliculata",0,0,0,NA,293.333333333333,13.22,NA,NA
+2015-11-24,"BB","Chthamalus_dalli","Nucella_ostrina",0,0,0,NA,293.333333333333,13.22,NA,NA
+2015-11-24,"BB","Hiatella_arctica","Nucella_canaliculata",0,0,0,NA,0,13.22,NA,NA
+2015-11-24,"BB","Hiatella_arctica","Nucella_ostrina",0,0,0,NA,0,13.22,NA,NA
+2015-11-24,"BB","Limpets","Nucella_canaliculata",0,0,0,NA,1024.76190476191,13.22,NA,NA
+2015-11-24,"BB","Limpets","Nucella_ostrina",0,0,0,NA,1024.76190476191,13.22,NA,NA
+2015-11-24,"BB","Littorina_sitkana","Nucella_canaliculata",0,0,0,NA,1013.33333333333,13.22,NA,NA
+2015-11-24,"BB","Littorina_sitkana","Nucella_ostrina",0,0,0,NA,1013.33333333333,13.22,NA,NA
+2015-11-24,"BB","Modiolus_modiolus","Nucella_canaliculata",0,0,0,NA,0,13.22,NA,NA
+2015-11-24,"BB","Modiolus_modiolus","Nucella_ostrina",0,0,0,NA,0,13.22,NA,NA
+2015-11-24,"BB","Mytilus_californianus","Nucella_canaliculata",0,0,0,NA,22.8571428571429,13.22,NA,NA
+2015-11-24,"BB","Mytilus_californianus","Nucella_ostrina",0,0,0,NA,22.8571428571429,13.22,NA,NA
+2015-11-24,"BB","Mytilus_trossulus","Nucella_canaliculata",0,0,0,NA,662.857142857143,13.22,NA,NA
+2015-11-24,"BB","Mytilus_trossulus","Nucella_ostrina",0,0,0,NA,662.857142857143,13.22,NA,NA
+2015-11-24,"BB","Nucella_ostrina","Nucella_canaliculata",0,0,0,NA,0,13.22,NA,NA
+2015-11-24,"BB","Nucella_ostrina","Nucella_ostrina",0,0,0,NA,0,13.22,NA,NA
+2015-11-24,"BB","Pollicipes_polymerus","Nucella_canaliculata",0,0,0,NA,7.61904761904763,13.22,NA,NA
+2015-11-24,"BB","Pollicipes_polymerus","Nucella_ostrina",0,0,0,NA,7.61904761904763,13.22,NA,NA
+2015-11-24,"BB","Semibalanus_cariosus","Nucella_canaliculata",0,0,0,NA,19.047619047619,13.22,NA,NA
+2015-11-24,"BB","Semibalanus_cariosus","Nucella_ostrina",0,0,0,NA,19.047619047619,13.22,NA,NA
+2015-11-24,"BC","Adula_californiensis","Nucella_canaliculata",0,0,0,NA,0,13.22,NA,NA
+2015-11-24,"BC","Adula_californiensis","Nucella_ostrina",0,0,1,NA,0,13.22,NA,NA
+2015-11-24,"BC","Balanus_glandula","Nucella_canaliculata",0,0,0,NA,12845.7142857143,13.22,NA,NA
+2015-11-24,"BC","Balanus_glandula","Nucella_ostrina",0,0,1,NA,12845.7142857143,13.22,NA,NA
+2015-11-24,"BC","Chthamalus_dalli","Nucella_canaliculata",0,0,0,NA,2853.33333333334,13.22,NA,NA
+2015-11-24,"BC","Chthamalus_dalli","Nucella_ostrina",0,0,1,NA,2853.33333333334,13.22,NA,NA
+2015-11-24,"BC","Hiatella_arctica","Nucella_canaliculata",0,0,0,NA,0,13.22,NA,NA
+2015-11-24,"BC","Hiatella_arctica","Nucella_ostrina",0,0,1,NA,0,13.22,NA,NA
+2015-11-24,"BC","Limpets","Nucella_canaliculata",0,0,0,NA,1920,13.22,NA,NA
+2015-11-24,"BC","Limpets","Nucella_ostrina",0,0,1,NA,1920,13.22,NA,NA
+2015-11-24,"BC","Littorina_sitkana","Nucella_canaliculata",0,0,0,NA,2057.14285714286,13.22,NA,NA
+2015-11-24,"BC","Littorina_sitkana","Nucella_ostrina",0,0,1,NA,2057.14285714286,13.22,NA,NA
+2015-11-24,"BC","Modiolus_modiolus","Nucella_canaliculata",0,0,0,NA,0,13.22,NA,NA
+2015-11-24,"BC","Modiolus_modiolus","Nucella_ostrina",0,0,1,NA,0,13.22,NA,NA
+2015-11-24,"BC","Mytilus_californianus","Nucella_canaliculata",0,0,0,NA,30.4761904761905,13.22,NA,NA
+2015-11-24,"BC","Mytilus_californianus","Nucella_ostrina",0,0,1,NA,30.4761904761905,13.22,NA,NA
+2015-11-24,"BC","Mytilus_trossulus","Nucella_canaliculata",0,0,0,NA,670.476190476189,13.22,NA,NA
+2015-11-24,"BC","Mytilus_trossulus","Nucella_ostrina",0,0,1,NA,670.476190476189,13.22,NA,NA
+2015-11-24,"BC","Nucella_ostrina","Nucella_canaliculata",0,0,0,NA,0,13.22,NA,NA
+2015-11-24,"BC","Nucella_ostrina","Nucella_ostrina",0,0,1,NA,0,13.22,NA,NA
+2015-11-24,"BC","Pollicipes_polymerus","Nucella_canaliculata",0,0,0,NA,1702.85714285714,13.22,NA,NA
+2015-11-24,"BC","Pollicipes_polymerus","Nucella_ostrina",0,0,1,NA,1702.85714285714,13.22,NA,NA
+2015-11-24,"BC","Semibalanus_cariosus","Nucella_canaliculata",0,0,0,NA,38.0952380952381,13.22,NA,NA
+2015-11-24,"BC","Semibalanus_cariosus","Nucella_ostrina",0,0,1,NA,38.0952380952381,13.22,NA,NA
+2015-11-24,"BD","Adula_californiensis","Nucella_canaliculata",0,0,1,NA,0,13.22,NA,NA
+2015-11-24,"BD","Adula_californiensis","Nucella_ostrina",0,0,2,NA,0,13.22,NA,NA
+2015-11-24,"BD","Balanus_glandula","Nucella_canaliculata",0,0,1,NA,0,13.22,NA,NA
+2015-11-24,"BD","Balanus_glandula","Nucella_ostrina",0,0,2,NA,0,13.22,NA,NA
+2015-11-24,"BD","Chthamalus_dalli","Nucella_canaliculata",0,0,1,NA,0,13.22,NA,NA
+2015-11-24,"BD","Chthamalus_dalli","Nucella_ostrina",0,0,2,NA,0,13.22,NA,NA
+2015-11-24,"BD","Hiatella_arctica","Nucella_canaliculata",0,0,1,NA,0,13.22,NA,NA
+2015-11-24,"BD","Hiatella_arctica","Nucella_ostrina",0,0,2,NA,0,13.22,NA,NA
+2015-11-24,"BD","Limpets","Nucella_canaliculata",0,0,1,NA,0,13.22,NA,NA
+2015-11-24,"BD","Limpets","Nucella_ostrina",0,0,2,NA,0,13.22,NA,NA
+2015-11-24,"BD","Littorina_sitkana","Nucella_canaliculata",0,0,1,NA,0,13.22,NA,NA
+2015-11-24,"BD","Littorina_sitkana","Nucella_ostrina",0,0,2,NA,0,13.22,NA,NA
+2015-11-24,"BD","Modiolus_modiolus","Nucella_canaliculata",0,0,1,NA,0,13.22,NA,NA
+2015-11-24,"BD","Modiolus_modiolus","Nucella_ostrina",0,0,2,NA,0,13.22,NA,NA
+2015-11-24,"BD","Mytilus_californianus","Nucella_canaliculata",0,0,1,NA,0,13.22,NA,NA
+2015-11-24,"BD","Mytilus_californianus","Nucella_ostrina",0,0,2,NA,0,13.22,NA,NA
+2015-11-24,"BD","Mytilus_trossulus","Nucella_canaliculata",0,0,1,NA,0,13.22,NA,NA
+2015-11-24,"BD","Mytilus_trossulus","Nucella_ostrina",0,0,2,NA,0,13.22,NA,NA
+2015-11-24,"BD","Nucella_ostrina","Nucella_canaliculata",0,0,1,NA,0,13.22,NA,NA
+2015-11-24,"BD","Nucella_ostrina","Nucella_ostrina",0,0,2,NA,0,13.22,NA,NA
+2015-11-24,"BD","Pollicipes_polymerus","Nucella_canaliculata",0,0,1,NA,0,13.22,NA,NA
+2015-11-24,"BD","Pollicipes_polymerus","Nucella_ostrina",0,0,2,NA,0,13.22,NA,NA
+2015-11-24,"BD","Semibalanus_cariosus","Nucella_canaliculata",0,0,1,NA,0,13.22,NA,NA
+2015-11-24,"BD","Semibalanus_cariosus","Nucella_ostrina",0,0,2,NA,0,13.22,NA,NA
+2015-11-24,"BE","Adula_californiensis","Nucella_canaliculata",0,0,0,NA,0,13.22,NA,NA
+2015-11-24,"BE","Adula_californiensis","Nucella_ostrina",0,0,2,NA,0,13.22,NA,NA
+2015-11-24,"BE","Balanus_glandula","Nucella_canaliculata",0,0,0,NA,2476.19047619048,13.22,NA,NA
+2015-11-24,"BE","Balanus_glandula","Nucella_ostrina",0,0,2,NA,2476.19047619048,13.22,NA,NA
+2015-11-24,"BE","Chthamalus_dalli","Nucella_canaliculata",0,0,0,NA,3257.14285714286,13.22,NA,NA
+2015-11-24,"BE","Chthamalus_dalli","Nucella_ostrina",0,0,2,NA,3257.14285714286,13.22,NA,NA
+2015-11-24,"BE","Hiatella_arctica","Nucella_canaliculata",0,0,0,NA,0,13.22,NA,NA
+2015-11-24,"BE","Hiatella_arctica","Nucella_ostrina",0,0,2,NA,0,13.22,NA,NA
+2015-11-24,"BE","Limpets","Nucella_canaliculata",0,0,0,NA,1154.28571428572,13.22,NA,NA
+2015-11-24,"BE","Limpets","Nucella_ostrina",0,0,2,NA,1154.28571428572,13.22,NA,NA
+2015-11-24,"BE","Littorina_sitkana","Nucella_canaliculata",0,0,0,NA,617.142857142858,13.22,NA,NA
+2015-11-24,"BE","Littorina_sitkana","Nucella_ostrina",0,0,2,NA,617.142857142858,13.22,NA,NA
+2015-11-24,"BE","Modiolus_modiolus","Nucella_canaliculata",0,0,0,NA,0,13.22,NA,NA
+2015-11-24,"BE","Modiolus_modiolus","Nucella_ostrina",0,0,2,NA,0,13.22,NA,NA
+2015-11-24,"BE","Mytilus_californianus","Nucella_canaliculata",0,0,0,NA,3.8095238095238,13.22,NA,NA
+2015-11-24,"BE","Mytilus_californianus","Nucella_ostrina",0,0,2,NA,3.8095238095238,13.22,NA,NA
+2015-11-24,"BE","Mytilus_trossulus","Nucella_canaliculata",0,0,0,NA,251.428571428571,13.22,NA,NA
+2015-11-24,"BE","Mytilus_trossulus","Nucella_ostrina",0,0,2,NA,251.428571428571,13.22,NA,NA
+2015-11-24,"BE","Nucella_ostrina","Nucella_canaliculata",0,0,0,NA,7.6190476190476,13.22,NA,NA
+2015-11-24,"BE","Nucella_ostrina","Nucella_ostrina",0,0,2,NA,7.6190476190476,13.22,NA,NA
+2015-11-24,"BE","Pollicipes_polymerus","Nucella_canaliculata",0,0,0,NA,3820.95238095238,13.22,NA,NA
+2015-11-24,"BE","Pollicipes_polymerus","Nucella_ostrina",0,0,2,NA,3820.95238095238,13.22,NA,NA
+2015-11-24,"BE","Semibalanus_cariosus","Nucella_canaliculata",0,0,0,NA,7.6190476190476,13.22,NA,NA
+2015-11-24,"BE","Semibalanus_cariosus","Nucella_ostrina",0,0,2,NA,7.6190476190476,13.22,NA,NA
+2015-11-24,"BF","Adula_californiensis","Nucella_canaliculata",0,0,1,NA,0,13.22,NA,NA
+2015-11-24,"BF","Adula_californiensis","Nucella_ostrina",0,0,2,NA,0,13.22,NA,NA
+2015-11-24,"BF","Balanus_glandula","Nucella_canaliculata",0,0,1,NA,3634.28571428571,13.22,NA,NA
+2015-11-24,"BF","Balanus_glandula","Nucella_ostrina",0,0,2,NA,3634.28571428571,13.22,NA,NA
+2015-11-24,"BF","Chthamalus_dalli","Nucella_canaliculata",0,0,1,NA,4400,13.22,NA,NA
+2015-11-24,"BF","Chthamalus_dalli","Nucella_ostrina",0,0,2,NA,4400,13.22,NA,NA
+2015-11-24,"BF","Hiatella_arctica","Nucella_canaliculata",0,0,1,NA,0,13.22,NA,NA
+2015-11-24,"BF","Hiatella_arctica","Nucella_ostrina",0,0,2,NA,0,13.22,NA,NA
+2015-11-24,"BF","Limpets","Nucella_canaliculata",0,0,1,NA,1580.95238095238,13.22,NA,NA
+2015-11-24,"BF","Limpets","Nucella_ostrina",0,0,2,NA,1580.95238095238,13.22,NA,NA
+2015-11-24,"BF","Littorina_sitkana","Nucella_canaliculata",0,0,1,NA,1135.23809523809,13.22,NA,NA
+2015-11-24,"BF","Littorina_sitkana","Nucella_ostrina",0,0,2,NA,1135.23809523809,13.22,NA,NA
+2015-11-24,"BF","Modiolus_modiolus","Nucella_canaliculata",0,0,1,NA,0,13.22,NA,NA
+2015-11-24,"BF","Modiolus_modiolus","Nucella_ostrina",0,0,2,NA,0,13.22,NA,NA
+2015-11-24,"BF","Mytilus_californianus","Nucella_canaliculata",0,0,1,NA,11.4285714285714,13.22,NA,NA
+2015-11-24,"BF","Mytilus_californianus","Nucella_ostrina",0,0,2,NA,11.4285714285714,13.22,NA,NA
+2015-11-24,"BF","Mytilus_trossulus","Nucella_canaliculata",Inf,1,1,25.5526314472842,243.809523809524,13.22,0.000160514290219449,0.0391349126630276
+2015-11-24,"BF","Mytilus_trossulus","Nucella_ostrina",0,0,2,NA,243.809523809524,13.22,NA,NA
+2015-11-24,"BF","Nucella_ostrina","Nucella_canaliculata",0,0,1,NA,7.61904761904763,13.22,NA,NA
+2015-11-24,"BF","Nucella_ostrina","Nucella_ostrina",0,0,2,NA,7.61904761904763,13.22,NA,NA
+2015-11-24,"BF","Pollicipes_polymerus","Nucella_canaliculata",0,0,1,NA,4807.61904761905,13.22,NA,NA
+2015-11-24,"BF","Pollicipes_polymerus","Nucella_ostrina",0,0,2,NA,4807.61904761905,13.22,NA,NA
+2015-11-24,"BF","Semibalanus_cariosus","Nucella_canaliculata",0,0,1,NA,11.4285714285714,13.22,NA,NA
+2015-11-24,"BF","Semibalanus_cariosus","Nucella_ostrina",0,0,2,NA,11.4285714285714,13.22,NA,NA
+2015-11-24,"C","Adula_californiensis","Nucella_canaliculata",0,0,9,NA,0,13.22,NA,NA
+2015-11-24,"C","Adula_californiensis","Nucella_ostrina",0,0,2,NA,0,13.22,NA,NA
+2015-11-24,"C","Balanus_glandula","Nucella_canaliculata",0,0,9,NA,560,13.22,NA,NA
+2015-11-24,"C","Balanus_glandula","Nucella_ostrina",0,0,2,NA,560,13.22,NA,NA
+2015-11-24,"C","Chthamalus_dalli","Nucella_canaliculata",0,0,9,NA,1649.52380952381,13.22,NA,NA
+2015-11-24,"C","Chthamalus_dalli","Nucella_ostrina",0,0,2,NA,1649.52380952381,13.22,NA,NA
+2015-11-24,"C","Hiatella_arctica","Nucella_canaliculata",0,0,9,NA,0,13.22,NA,NA
+2015-11-24,"C","Hiatella_arctica","Nucella_ostrina",0,0,2,NA,0,13.22,NA,NA
+2015-11-24,"C","Limpets","Nucella_canaliculata",0,0,9,NA,1539.04761904762,13.22,NA,NA
+2015-11-24,"C","Limpets","Nucella_ostrina",0,0,2,NA,1539.04761904762,13.22,NA,NA
+2015-11-24,"C","Littorina_sitkana","Nucella_canaliculata",0,0,9,NA,742.857142857143,13.22,NA,NA
+2015-11-24,"C","Littorina_sitkana","Nucella_ostrina",0,0,2,NA,742.857142857143,13.22,NA,NA
+2015-11-24,"C","Modiolus_modiolus","Nucella_canaliculata",0,0,9,NA,0,13.22,NA,NA
+2015-11-24,"C","Modiolus_modiolus","Nucella_ostrina",0,0,2,NA,0,13.22,NA,NA
+2015-11-24,"C","Mytilus_californianus","Nucella_canaliculata",0,0,9,NA,53.3333333333333,13.22,NA,NA
+2015-11-24,"C","Mytilus_californianus","Nucella_ostrina",0,0,2,NA,53.3333333333333,13.22,NA,NA
+2015-11-24,"C","Mytilus_trossulus","Nucella_canaliculata",0,0,9,NA,563.809523809524,13.22,NA,NA
+2015-11-24,"C","Mytilus_trossulus","Nucella_ostrina",0,0,2,NA,563.809523809524,13.22,NA,NA
+2015-11-24,"C","Nucella_ostrina","Nucella_canaliculata",0,0,9,NA,0,13.22,NA,NA
+2015-11-24,"C","Nucella_ostrina","Nucella_ostrina",0,0,2,NA,0,13.22,NA,NA
+2015-11-24,"C","Pollicipes_polymerus","Nucella_canaliculata",0.285714285714286,2,9,10.889918654417,12464.7619047619,13.22,2.1048605704599e-06,0.026236585853504
+2015-11-24,"C","Pollicipes_polymerus","Nucella_ostrina",0,0,2,NA,12464.7619047619,13.22,NA,NA
+2015-11-24,"C","Semibalanus_cariosus","Nucella_canaliculata",0,0,9,NA,0,13.22,NA,NA
+2015-11-24,"C","Semibalanus_cariosus","Nucella_ostrina",0,0,2,NA,0,13.22,NA,NA
+2015-11-24,"D","Adula_californiensis","Nucella_canaliculata",0,0,0,NA,0,13.22,NA,NA
+2015-11-24,"D","Adula_californiensis","Nucella_ostrina",0,0,0,NA,0,13.22,NA,NA
+2015-11-24,"D","Balanus_glandula","Nucella_canaliculata",0,0,0,NA,1017.14285714286,13.22,NA,NA
+2015-11-24,"D","Balanus_glandula","Nucella_ostrina",0,0,0,NA,1017.14285714286,13.22,NA,NA
+2015-11-24,"D","Chthamalus_dalli","Nucella_canaliculata",0,0,0,NA,4297.14285714286,13.22,NA,NA
+2015-11-24,"D","Chthamalus_dalli","Nucella_ostrina",0,0,0,NA,4297.14285714286,13.22,NA,NA
+2015-11-24,"D","Hiatella_arctica","Nucella_canaliculata",0,0,0,NA,0,13.22,NA,NA
+2015-11-24,"D","Hiatella_arctica","Nucella_ostrina",0,0,0,NA,0,13.22,NA,NA
+2015-11-24,"D","Limpets","Nucella_canaliculata",0,0,0,NA,1097.14285714286,13.22,NA,NA
+2015-11-24,"D","Limpets","Nucella_ostrina",0,0,0,NA,1097.14285714286,13.22,NA,NA
+2015-11-24,"D","Littorina_sitkana","Nucella_canaliculata",0,0,0,NA,200,13.22,NA,NA
+2015-11-24,"D","Littorina_sitkana","Nucella_ostrina",0,0,0,NA,200,13.22,NA,NA
+2015-11-24,"D","Modiolus_modiolus","Nucella_canaliculata",0,0,0,NA,0,13.22,NA,NA
+2015-11-24,"D","Modiolus_modiolus","Nucella_ostrina",0,0,0,NA,0,13.22,NA,NA
+2015-11-24,"D","Mytilus_californianus","Nucella_canaliculata",0,0,0,NA,34.2857142857143,13.22,NA,NA
+2015-11-24,"D","Mytilus_californianus","Nucella_ostrina",0,0,0,NA,34.2857142857143,13.22,NA,NA
+2015-11-24,"D","Mytilus_trossulus","Nucella_canaliculata",0,0,0,NA,85.7142857142857,13.22,NA,NA
+2015-11-24,"D","Mytilus_trossulus","Nucella_ostrina",0,0,0,NA,85.7142857142857,13.22,NA,NA
+2015-11-24,"D","Nucella_ostrina","Nucella_canaliculata",0,0,0,NA,0,13.22,NA,NA
+2015-11-24,"D","Nucella_ostrina","Nucella_ostrina",0,0,0,NA,0,13.22,NA,NA
+2015-11-24,"D","Pollicipes_polymerus","Nucella_canaliculata",0,0,0,NA,297.142857142857,13.22,NA,NA
+2015-11-24,"D","Pollicipes_polymerus","Nucella_ostrina",0,0,0,NA,297.142857142857,13.22,NA,NA
+2015-11-24,"D","Semibalanus_cariosus","Nucella_canaliculata",0,0,0,NA,57.1428571428572,13.22,NA,NA
+2015-11-24,"D","Semibalanus_cariosus","Nucella_ostrina",0,0,0,NA,57.1428571428572,13.22,NA,NA
+2015-11-24,"E","Adula_californiensis","Nucella_canaliculata",0,0,5,NA,0,13.22,NA,NA
+2015-11-24,"E","Adula_californiensis","Nucella_ostrina",0,0,2,NA,0,13.22,NA,NA
+2015-11-24,"E","Balanus_glandula","Nucella_canaliculata",0,0,5,NA,2788.57142857143,13.22,NA,NA
+2015-11-24,"E","Balanus_glandula","Nucella_ostrina",0,0,2,NA,2788.57142857143,13.22,NA,NA
+2015-11-24,"E","Chthamalus_dalli","Nucella_canaliculata",0,0,5,NA,11.4285714285714,13.22,NA,NA
+2015-11-24,"E","Chthamalus_dalli","Nucella_ostrina",0,0,2,NA,11.4285714285714,13.22,NA,NA
+2015-11-24,"E","Hiatella_arctica","Nucella_canaliculata",0,0,5,NA,0,13.22,NA,NA
+2015-11-24,"E","Hiatella_arctica","Nucella_ostrina",0,0,2,NA,0,13.22,NA,NA
+2015-11-24,"E","Limpets","Nucella_canaliculata",0,0,5,NA,457.142857142857,13.22,NA,NA
+2015-11-24,"E","Limpets","Nucella_ostrina",0,0,2,NA,457.142857142857,13.22,NA,NA
+2015-11-24,"E","Littorina_sitkana","Nucella_canaliculata",0,0,5,NA,1706.66666666667,13.22,NA,NA
+2015-11-24,"E","Littorina_sitkana","Nucella_ostrina",0,0,2,NA,1706.66666666667,13.22,NA,NA
+2015-11-24,"E","Modiolus_modiolus","Nucella_canaliculata",0,0,5,NA,0,13.22,NA,NA
+2015-11-24,"E","Modiolus_modiolus","Nucella_ostrina",0,0,2,NA,0,13.22,NA,NA
+2015-11-24,"E","Mytilus_californianus","Nucella_canaliculata",0,0,5,NA,91.4285714285713,13.22,NA,NA
+2015-11-24,"E","Mytilus_californianus","Nucella_ostrina",0,0,2,NA,91.4285714285713,13.22,NA,NA
+2015-11-24,"E","Mytilus_trossulus","Nucella_canaliculata",0,0,5,NA,468.571428571428,13.22,NA,NA
+2015-11-24,"E","Mytilus_trossulus","Nucella_ostrina",0,0,2,NA,468.571428571428,13.22,NA,NA
+2015-11-24,"E","Nucella_ostrina","Nucella_canaliculata",0,0,5,NA,0,13.22,NA,NA
+2015-11-24,"E","Nucella_ostrina","Nucella_ostrina",0,0,2,NA,0,13.22,NA,NA
+2015-11-24,"E","Pollicipes_polymerus","Nucella_canaliculata",0,0,5,NA,13794.2857142857,13.22,NA,NA
+2015-11-24,"E","Pollicipes_polymerus","Nucella_ostrina",0,0,2,NA,13794.2857142857,13.22,NA,NA
+2015-11-24,"E","Semibalanus_cariosus","Nucella_canaliculata",0,0,5,NA,7.6190476190476,13.22,NA,NA
+2015-11-24,"E","Semibalanus_cariosus","Nucella_ostrina",0,0,2,NA,7.6190476190476,13.22,NA,NA
+2015-11-24,"F","Adula_californiensis","Nucella_canaliculata",0,0,0,NA,0,13.22,NA,NA
+2015-11-24,"F","Adula_californiensis","Nucella_ostrina",0,0,1,NA,0,13.22,NA,NA
+2015-11-24,"F","Balanus_glandula","Nucella_canaliculata",0,0,0,NA,13519.2380952381,13.22,NA,NA
+2015-11-24,"F","Balanus_glandula","Nucella_ostrina",0,0,1,NA,13519.2380952381,13.22,NA,NA
+2015-11-24,"F","Chthamalus_dalli","Nucella_canaliculata",0,0,0,NA,37372.9523809524,13.22,NA,NA
+2015-11-24,"F","Chthamalus_dalli","Nucella_ostrina",0,0,1,NA,37372.9523809524,13.22,NA,NA
+2015-11-24,"F","Hiatella_arctica","Nucella_canaliculata",0,0,0,NA,0,13.22,NA,NA
+2015-11-24,"F","Hiatella_arctica","Nucella_ostrina",0,0,1,NA,0,13.22,NA,NA
+2015-11-24,"F","Limpets","Nucella_canaliculata",0,0,0,NA,1478.09523809524,13.22,NA,NA
+2015-11-24,"F","Limpets","Nucella_ostrina",0,0,1,NA,1478.09523809524,13.22,NA,NA
+2015-11-24,"F","Littorina_sitkana","Nucella_canaliculata",0,0,0,NA,640,13.22,NA,NA
+2015-11-24,"F","Littorina_sitkana","Nucella_ostrina",0,0,1,NA,640,13.22,NA,NA
+2015-11-24,"F","Modiolus_modiolus","Nucella_canaliculata",0,0,0,NA,0,13.22,NA,NA
+2015-11-24,"F","Modiolus_modiolus","Nucella_ostrina",0,0,1,NA,0,13.22,NA,NA
+2015-11-24,"F","Mytilus_californianus","Nucella_canaliculata",0,0,0,NA,3.8095238095238,13.22,NA,NA
+2015-11-24,"F","Mytilus_californianus","Nucella_ostrina",0,0,1,NA,3.8095238095238,13.22,NA,NA
+2015-11-24,"F","Mytilus_trossulus","Nucella_canaliculata",0,0,0,NA,171.428571428571,13.22,NA,NA
+2015-11-24,"F","Mytilus_trossulus","Nucella_ostrina",0,0,1,NA,171.428571428571,13.22,NA,NA
+2015-11-24,"F","Nucella_ostrina","Nucella_canaliculata",0,0,0,NA,0,13.22,NA,NA
+2015-11-24,"F","Nucella_ostrina","Nucella_ostrina",0,0,1,NA,0,13.22,NA,NA
+2015-11-24,"F","Pollicipes_polymerus","Nucella_canaliculata",0,0,0,NA,60.952380952381,13.22,NA,NA
+2015-11-24,"F","Pollicipes_polymerus","Nucella_ostrina",0,0,1,NA,60.952380952381,13.22,NA,NA
+2015-11-24,"F","Semibalanus_cariosus","Nucella_canaliculata",0,0,0,NA,83.8095238095238,13.22,NA,NA
+2015-11-24,"F","Semibalanus_cariosus","Nucella_ostrina",0,0,1,NA,83.8095238095238,13.22,NA,NA
+2015-11-24,"G","Adula_californiensis","Nucella_canaliculata",0,0,4,NA,0,13.22,NA,NA
+2015-11-24,"G","Adula_californiensis","Nucella_ostrina",0,0,6,NA,0,13.22,NA,NA
+2015-11-24,"G","Balanus_glandula","Nucella_canaliculata",0,0,4,NA,148.571428571429,13.22,NA,NA
+2015-11-24,"G","Balanus_glandula","Nucella_ostrina",0,0,6,NA,148.571428571429,13.22,NA,NA
+2015-11-24,"G","Chthamalus_dalli","Nucella_canaliculata",0,0,4,NA,160,13.22,NA,NA
+2015-11-24,"G","Chthamalus_dalli","Nucella_ostrina",0,0,6,NA,160,13.22,NA,NA
+2015-11-24,"G","Hiatella_arctica","Nucella_canaliculata",0,0,4,NA,0,13.22,NA,NA
+2015-11-24,"G","Hiatella_arctica","Nucella_ostrina",0,0,6,NA,0,13.22,NA,NA
+2015-11-24,"G","Limpets","Nucella_canaliculata",0,0,4,NA,1360,13.22,NA,NA
+2015-11-24,"G","Limpets","Nucella_ostrina",0,0,6,NA,1360,13.22,NA,NA
+2015-11-24,"G","Littorina_sitkana","Nucella_canaliculata",0,0,4,NA,537.142857142857,13.22,NA,NA
+2015-11-24,"G","Littorina_sitkana","Nucella_ostrina",0,0,6,NA,537.142857142857,13.22,NA,NA
+2015-11-24,"G","Modiolus_modiolus","Nucella_canaliculata",0,0,4,NA,0,13.22,NA,NA
+2015-11-24,"G","Modiolus_modiolus","Nucella_ostrina",0,0,6,NA,0,13.22,NA,NA
+2015-11-24,"G","Mytilus_californianus","Nucella_canaliculata",0,0,4,NA,114.285714285714,13.22,NA,NA
+2015-11-24,"G","Mytilus_californianus","Nucella_ostrina",0,0,6,NA,114.285714285714,13.22,NA,NA
+2015-11-24,"G","Mytilus_trossulus","Nucella_canaliculata",0,0,4,NA,331.428571428571,13.22,NA,NA
+2015-11-24,"G","Mytilus_trossulus","Nucella_ostrina",0,0,6,NA,331.428571428571,13.22,NA,NA
+2015-11-24,"G","Nucella_ostrina","Nucella_canaliculata",0,0,4,NA,11.4285714285714,13.22,NA,NA
+2015-11-24,"G","Nucella_ostrina","Nucella_ostrina",0,0,6,NA,11.4285714285714,13.22,NA,NA
+2015-11-24,"G","Pollicipes_polymerus","Nucella_canaliculata",0,0,4,NA,25348.5714285714,13.22,NA,NA
+2015-11-24,"G","Pollicipes_polymerus","Nucella_ostrina",0,0,6,NA,25348.5714285714,13.22,NA,NA
+2015-11-24,"G","Semibalanus_cariosus","Nucella_canaliculata",0,0,4,NA,102.857142857143,13.22,NA,NA
+2015-11-24,"G","Semibalanus_cariosus","Nucella_ostrina",0,0,6,NA,102.857142857143,13.22,NA,NA
diff --git a/CodeFreeze2022/Project Archive/Documentation/Growth Rate Datasets/ExpPatch_PatchTidalHeights.csv b/CodeFreeze2022/Project Archive/Documentation/Growth Rate Datasets/ExpPatch_PatchTidalHeights.csv
new file mode 100644
index 0000000..fa8343e
--- /dev/null
+++ b/CodeFreeze2022/Project Archive/Documentation/Growth Rate Datasets/ExpPatch_PatchTidalHeights.csv
@@ -0,0 +1,19 @@
+"Patch","HeightMLLW"
+"A",523
+"B",496
+"C",523
+"D",569
+"E",553
+"F",603
+"G",492
+"AB",481
+"AC",550
+"AD",562
+"AE",512
+"AF",529
+"AG",204
+"BB",587
+"BC",574
+"BD",491
+"BE",561
+"BF",577
diff --git a/CodeFreeze2022/Project Archive/Documentation/Growth Rate Datasets/ExpPatch_PhotoCounts.csv b/CodeFreeze2022/Project Archive/Documentation/Growth Rate Datasets/ExpPatch_PhotoCounts.csv
new file mode 100644
index 0000000..ea71eb1
--- /dev/null
+++ b/CodeFreeze2022/Project Archive/Documentation/Growth Rate Datasets/ExpPatch_PhotoCounts.csv
@@ -0,0 +1,64062 @@
+"DPQ","Date","TrueDate","Site","Patch","Quad","Abb","Species","Type","Count","Area","Density","Cropped","Counter","InProg","CropM","CropB","Algae","Notes"
+"2013-07-20_YB-Aq1",2013-07-20,2013-07-20,"YB","A","1","Alg","Algae","Type 19",5,0.0875,57.1428571428571,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq2",2013-07-20,2013-07-20,"YB","A","2","Alg","Algae","Type 19",9,0.0875,102.857142857143,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq3",2013-07-20,2013-07-20,"YB","A","3","Alg","Algae","Type 19",4,0.0875,45.7142857142857,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq4",2013-07-20,2013-07-20,"YB","A","4","Alg","Algae","Type 19",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq5",2013-07-20,2013-07-20,"YB","A","5","Alg","Algae","Type 19",5,0.0875,57.1428571428571,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq6",2013-07-20,2013-07-20,"YB","A","6","Alg","Algae","Type 19",10,0.0875,114.285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq7",2013-07-20,2013-07-20,"YB","A","7","Alg","Algae","Type 19",10,0.0875,114.285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq8",2013-07-20,2013-07-20,"YB","A","8","Alg","Algae","Type 19",12,0.0875,137.142857142857,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq9",2013-07-20,2013-07-20,"YB","A","9","Alg","Algae","Type 19",19,0.0875,217.142857142857,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq1",2013-07-20,2013-07-20,"YB","A","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq2",2013-07-20,2013-07-20,"YB","A","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq3",2013-07-20,2013-07-20,"YB","A","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq4",2013-07-20,2013-07-20,"YB","A","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq5",2013-07-20,2013-07-20,"YB","A","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq6",2013-07-20,2013-07-20,"YB","A","6","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq7",2013-07-20,2013-07-20,"YB","A","7","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq8",2013-07-20,2013-07-20,"YB","A","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq9",2013-07-20,2013-07-20,"YB","A","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq1",2013-07-20,2013-07-20,"YB","A","1","Bg","Balanus_glandula","Type 1",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq2",2013-07-20,2013-07-20,"YB","A","2","Bg","Balanus_glandula","Type 1",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq3",2013-07-20,2013-07-20,"YB","A","3","Bg","Balanus_glandula","Type 1",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq4",2013-07-20,2013-07-20,"YB","A","4","Bg","Balanus_glandula","Type 1",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq5",2013-07-20,2013-07-20,"YB","A","5","Bg","Balanus_glandula","Type 1",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq6",2013-07-20,2013-07-20,"YB","A","6","Bg","Balanus_glandula","Type 1",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq7",2013-07-20,2013-07-20,"YB","A","7","Bg","Balanus_glandula","Type 1",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq8",2013-07-20,2013-07-20,"YB","A","8","Bg","Balanus_glandula","Type 1",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq9",2013-07-20,2013-07-20,"YB","A","9","Bg","Balanus_glandula","Type 1",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq1",2013-07-20,2013-07-20,"YB","A","1","BgD","Balanus_glandula_(dead)","Type 2",4,0.0875,45.7142857142857,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq2",2013-07-20,2013-07-20,"YB","A","2","BgD","Balanus_glandula_(dead)","Type 2",7,0.0875,80,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq3",2013-07-20,2013-07-20,"YB","A","3","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq4",2013-07-20,2013-07-20,"YB","A","4","BgD","Balanus_glandula_(dead)","Type 2",3,0.0875,34.2857142857143,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq5",2013-07-20,2013-07-20,"YB","A","5","BgD","Balanus_glandula_(dead)","Type 2",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq6",2013-07-20,2013-07-20,"YB","A","6","BgD","Balanus_glandula_(dead)","Type 2",3,0.0875,34.2857142857143,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq7",2013-07-20,2013-07-20,"YB","A","7","BgD","Balanus_glandula_(dead)","Type 2",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq8",2013-07-20,2013-07-20,"YB","A","8","BgD","Balanus_glandula_(dead)","Type 2",7,0.0875,80,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq9",2013-07-20,2013-07-20,"YB","A","9","BgD","Balanus_glandula_(dead)","Type 2",4,0.0875,45.7142857142857,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq1",2013-07-20,2013-07-20,"YB","A","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq2",2013-07-20,2013-07-20,"YB","A","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq3",2013-07-20,2013-07-20,"YB","A","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq4",2013-07-20,2013-07-20,"YB","A","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq5",2013-07-20,2013-07-20,"YB","A","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq6",2013-07-20,2013-07-20,"YB","A","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq7",2013-07-20,2013-07-20,"YB","A","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq8",2013-07-20,2013-07-20,"YB","A","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq9",2013-07-20,2013-07-20,"YB","A","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq1",2013-07-20,2013-07-20,"YB","A","1","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq2",2013-07-20,2013-07-20,"YB","A","2","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq3",2013-07-20,2013-07-20,"YB","A","3","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq4",2013-07-20,2013-07-20,"YB","A","4","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq5",2013-07-20,2013-07-20,"YB","A","5","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq6",2013-07-20,2013-07-20,"YB","A","6","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq7",2013-07-20,2013-07-20,"YB","A","7","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq8",2013-07-20,2013-07-20,"YB","A","8","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq9",2013-07-20,2013-07-20,"YB","A","9","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq1",2013-07-20,2013-07-20,"YB","A","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq2",2013-07-20,2013-07-20,"YB","A","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq3",2013-07-20,2013-07-20,"YB","A","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq4",2013-07-20,2013-07-20,"YB","A","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq5",2013-07-20,2013-07-20,"YB","A","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq6",2013-07-20,2013-07-20,"YB","A","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq7",2013-07-20,2013-07-20,"YB","A","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq8",2013-07-20,2013-07-20,"YB","A","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq9",2013-07-20,2013-07-20,"YB","A","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq1",2013-07-20,2013-07-20,"YB","A","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq2",2013-07-20,2013-07-20,"YB","A","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq3",2013-07-20,2013-07-20,"YB","A","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq4",2013-07-20,2013-07-20,"YB","A","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq5",2013-07-20,2013-07-20,"YB","A","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq6",2013-07-20,2013-07-20,"YB","A","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq7",2013-07-20,2013-07-20,"YB","A","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq8",2013-07-20,2013-07-20,"YB","A","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq9",2013-07-20,2013-07-20,"YB","A","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq1",2013-07-20,2013-07-20,"YB","A","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq2",2013-07-20,2013-07-20,"YB","A","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq3",2013-07-20,2013-07-20,"YB","A","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq4",2013-07-20,2013-07-20,"YB","A","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq5",2013-07-20,2013-07-20,"YB","A","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq6",2013-07-20,2013-07-20,"YB","A","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq7",2013-07-20,2013-07-20,"YB","A","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq8",2013-07-20,2013-07-20,"YB","A","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq9",2013-07-20,2013-07-20,"YB","A","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq1",2013-07-20,2013-07-20,"YB","A","1","Lim","Limpets","Type 12",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq2",2013-07-20,2013-07-20,"YB","A","2","Lim","Limpets","Type 12",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq3",2013-07-20,2013-07-20,"YB","A","3","Lim","Limpets","Type 12",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq4",2013-07-20,2013-07-20,"YB","A","4","Lim","Limpets","Type 12",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq5",2013-07-20,2013-07-20,"YB","A","5","Lim","Limpets","Type 12",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq6",2013-07-20,2013-07-20,"YB","A","6","Lim","Limpets","Type 12",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq7",2013-07-20,2013-07-20,"YB","A","7","Lim","Limpets","Type 12",3,0.0875,34.2857142857143,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq8",2013-07-20,2013-07-20,"YB","A","8","Lim","Limpets","Type 12",3,0.0875,34.2857142857143,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq9",2013-07-20,2013-07-20,"YB","A","9","Lim","Limpets","Type 12",6,0.0875,68.5714285714286,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq1",2013-07-20,2013-07-20,"YB","A","1","Ls","Littorina_sitkana","Type 13",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq2",2013-07-20,2013-07-20,"YB","A","2","Ls","Littorina_sitkana","Type 13",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq3",2013-07-20,2013-07-20,"YB","A","3","Ls","Littorina_sitkana","Type 13",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq4",2013-07-20,2013-07-20,"YB","A","4","Ls","Littorina_sitkana","Type 13",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq5",2013-07-20,2013-07-20,"YB","A","5","Ls","Littorina_sitkana","Type 13",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq6",2013-07-20,2013-07-20,"YB","A","6","Ls","Littorina_sitkana","Type 13",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq7",2013-07-20,2013-07-20,"YB","A","7","Ls","Littorina_sitkana","Type 13",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq8",2013-07-20,2013-07-20,"YB","A","8","Ls","Littorina_sitkana","Type 13",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq9",2013-07-20,2013-07-20,"YB","A","9","Ls","Littorina_sitkana","Type 13",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq1",2013-07-20,2013-07-20,"YB","A","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq2",2013-07-20,2013-07-20,"YB","A","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq3",2013-07-20,2013-07-20,"YB","A","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq4",2013-07-20,2013-07-20,"YB","A","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq5",2013-07-20,2013-07-20,"YB","A","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq6",2013-07-20,2013-07-20,"YB","A","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq7",2013-07-20,2013-07-20,"YB","A","7","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq8",2013-07-20,2013-07-20,"YB","A","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq9",2013-07-20,2013-07-20,"YB","A","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq1",2013-07-20,2013-07-20,"YB","A","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq2",2013-07-20,2013-07-20,"YB","A","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq3",2013-07-20,2013-07-20,"YB","A","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq4",2013-07-20,2013-07-20,"YB","A","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq5",2013-07-20,2013-07-20,"YB","A","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq6",2013-07-20,2013-07-20,"YB","A","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq7",2013-07-20,2013-07-20,"YB","A","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq8",2013-07-20,2013-07-20,"YB","A","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq9",2013-07-20,2013-07-20,"YB","A","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq1",2013-07-20,2013-07-20,"YB","A","1","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq2",2013-07-20,2013-07-20,"YB","A","2","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq3",2013-07-20,2013-07-20,"YB","A","3","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq4",2013-07-20,2013-07-20,"YB","A","4","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq5",2013-07-20,2013-07-20,"YB","A","5","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq6",2013-07-20,2013-07-20,"YB","A","6","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq7",2013-07-20,2013-07-20,"YB","A","7","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq8",2013-07-20,2013-07-20,"YB","A","8","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq9",2013-07-20,2013-07-20,"YB","A","9","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq1",2013-07-20,2013-07-20,"YB","A","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq2",2013-07-20,2013-07-20,"YB","A","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq3",2013-07-20,2013-07-20,"YB","A","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq4",2013-07-20,2013-07-20,"YB","A","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq5",2013-07-20,2013-07-20,"YB","A","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq6",2013-07-20,2013-07-20,"YB","A","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq7",2013-07-20,2013-07-20,"YB","A","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq8",2013-07-20,2013-07-20,"YB","A","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq9",2013-07-20,2013-07-20,"YB","A","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq1",2013-07-20,2013-07-20,"YB","A","1","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq2",2013-07-20,2013-07-20,"YB","A","2","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq3",2013-07-20,2013-07-20,"YB","A","3","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq4",2013-07-20,2013-07-20,"YB","A","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq5",2013-07-20,2013-07-20,"YB","A","5","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq6",2013-07-20,2013-07-20,"YB","A","6","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq7",2013-07-20,2013-07-20,"YB","A","7","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq8",2013-07-20,2013-07-20,"YB","A","8","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq9",2013-07-20,2013-07-20,"YB","A","9","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq1",2013-07-20,2013-07-20,"YB","A","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq2",2013-07-20,2013-07-20,"YB","A","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq3",2013-07-20,2013-07-20,"YB","A","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq4",2013-07-20,2013-07-20,"YB","A","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq5",2013-07-20,2013-07-20,"YB","A","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq6",2013-07-20,2013-07-20,"YB","A","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq7",2013-07-20,2013-07-20,"YB","A","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq8",2013-07-20,2013-07-20,"YB","A","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq9",2013-07-20,2013-07-20,"YB","A","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq1",2013-07-20,2013-07-20,"YB","A","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq2",2013-07-20,2013-07-20,"YB","A","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq3",2013-07-20,2013-07-20,"YB","A","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq4",2013-07-20,2013-07-20,"YB","A","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq5",2013-07-20,2013-07-20,"YB","A","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq6",2013-07-20,2013-07-20,"YB","A","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq7",2013-07-20,2013-07-20,"YB","A","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq8",2013-07-20,2013-07-20,"YB","A","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq9",2013-07-20,2013-07-20,"YB","A","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq1",2013-07-20,2013-07-20,"YB","A","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq2",2013-07-20,2013-07-20,"YB","A","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq3",2013-07-20,2013-07-20,"YB","A","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq4",2013-07-20,2013-07-20,"YB","A","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq5",2013-07-20,2013-07-20,"YB","A","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq6",2013-07-20,2013-07-20,"YB","A","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq7",2013-07-20,2013-07-20,"YB","A","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq8",2013-07-20,2013-07-20,"YB","A","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq9",2013-07-20,2013-07-20,"YB","A","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq1",2013-07-20,2013-07-20,"YB","A","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq2",2013-07-20,2013-07-20,"YB","A","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq3",2013-07-20,2013-07-20,"YB","A","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq4",2013-07-20,2013-07-20,"YB","A","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq5",2013-07-20,2013-07-20,"YB","A","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq6",2013-07-20,2013-07-20,"YB","A","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq7",2013-07-20,2013-07-20,"YB","A","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq8",2013-07-20,2013-07-20,"YB","A","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq9",2013-07-20,2013-07-20,"YB","A","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq1",2013-07-20,2013-07-20,"YB","A","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq2",2013-07-20,2013-07-20,"YB","A","2","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq3",2013-07-20,2013-07-20,"YB","A","3","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq4",2013-07-20,2013-07-20,"YB","A","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq5",2013-07-20,2013-07-20,"YB","A","5","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq6",2013-07-20,2013-07-20,"YB","A","6","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq7",2013-07-20,2013-07-20,"YB","A","7","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq8",2013-07-20,2013-07-20,"YB","A","8","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq9",2013-07-20,2013-07-20,"YB","A","9","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq1",2013-07-20,2013-07-20,"YB","A","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq2",2013-07-20,2013-07-20,"YB","A","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq3",2013-07-20,2013-07-20,"YB","A","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq4",2013-07-20,2013-07-20,"YB","A","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq5",2013-07-20,2013-07-20,"YB","A","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq6",2013-07-20,2013-07-20,"YB","A","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq7",2013-07-20,2013-07-20,"YB","A","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq8",2013-07-20,2013-07-20,"YB","A","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq9",2013-07-20,2013-07-20,"YB","A","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq1",2013-07-20,2013-07-20,"YB","A","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq2",2013-07-20,2013-07-20,"YB","A","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq3",2013-07-20,2013-07-20,"YB","A","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq4",2013-07-20,2013-07-20,"YB","A","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq5",2013-07-20,2013-07-20,"YB","A","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq6",2013-07-20,2013-07-20,"YB","A","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq7",2013-07-20,2013-07-20,"YB","A","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq8",2013-07-20,2013-07-20,"YB","A","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq9",2013-07-20,2013-07-20,"YB","A","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq1",2013-07-20,2013-07-20,"YB","A","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq2",2013-07-20,2013-07-20,"YB","A","2","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq3",2013-07-20,2013-07-20,"YB","A","3","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq4",2013-07-20,2013-07-20,"YB","A","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq5",2013-07-20,2013-07-20,"YB","A","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq6",2013-07-20,2013-07-20,"YB","A","6","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq7",2013-07-20,2013-07-20,"YB","A","7","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq8",2013-07-20,2013-07-20,"YB","A","8","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq9",2013-07-20,2013-07-20,"YB","A","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq1",2013-07-20,2013-07-20,"YB","A","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq2",2013-07-20,2013-07-20,"YB","A","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq3",2013-07-20,2013-07-20,"YB","A","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq4",2013-07-20,2013-07-20,"YB","A","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq5",2013-07-20,2013-07-20,"YB","A","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq6",2013-07-20,2013-07-20,"YB","A","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq7",2013-07-20,2013-07-20,"YB","A","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq8",2013-07-20,2013-07-20,"YB","A","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq9",2013-07-20,2013-07-20,"YB","A","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq1",2013-07-20,2013-07-20,"YB","A","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq2",2013-07-20,2013-07-20,"YB","A","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq3",2013-07-20,2013-07-20,"YB","A","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq4",2013-07-20,2013-07-20,"YB","A","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq5",2013-07-20,2013-07-20,"YB","A","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq6",2013-07-20,2013-07-20,"YB","A","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq7",2013-07-20,2013-07-20,"YB","A","7","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq8",2013-07-20,2013-07-20,"YB","A","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq9",2013-07-20,2013-07-20,"YB","A","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq1",2013-07-20,2013-07-20,"YB","A","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq2",2013-07-20,2013-07-20,"YB","A","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq3",2013-07-20,2013-07-20,"YB","A","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq4",2013-07-20,2013-07-20,"YB","A","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq5",2013-07-20,2013-07-20,"YB","A","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq6",2013-07-20,2013-07-20,"YB","A","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq7",2013-07-20,2013-07-20,"YB","A","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq8",2013-07-20,2013-07-20,"YB","A","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Aq9",2013-07-20,2013-07-20,"YB","A","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq1",2013-07-20,2013-07-20,"YB","AB","1","Alg","Algae","Type 19",122,0.0875,1394.28571428571,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq2",2013-07-20,2013-07-20,"YB","AB","2","Alg","Algae","Type 19",66,0.0875,754.285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq3",2013-07-20,2013-07-20,"YB","AB","3","Alg","Algae","Type 19",52,0.0875,594.285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq4",2013-07-20,2013-07-20,"YB","AB","4","Alg","Algae","Type 19",49,0.0875,560,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq5",2013-07-20,2013-07-20,"YB","AB","5","Alg","Algae","Type 19",49,0.0875,560,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq6",2013-07-20,2013-07-20,"YB","AB","6","Alg","Algae","Type 19",60,0.0875,685.714285714286,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq7",2013-07-20,2013-07-20,"YB","AB","7","Alg","Algae","Type 19",47,0.0875,537.142857142857,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq8",2013-07-20,2013-07-20,"YB","AB","8","Alg","Algae","Type 19",23,0.0875,262.857142857143,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq9",2013-07-20,2013-07-20,"YB","AB","9","Alg","Algae","Type 19",24,0.0875,274.285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq1",2013-07-20,2013-07-20,"YB","AB","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq2",2013-07-20,2013-07-20,"YB","AB","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq3",2013-07-20,2013-07-20,"YB","AB","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq4",2013-07-20,2013-07-20,"YB","AB","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq5",2013-07-20,2013-07-20,"YB","AB","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq6",2013-07-20,2013-07-20,"YB","AB","6","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq7",2013-07-20,2013-07-20,"YB","AB","7","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq8",2013-07-20,2013-07-20,"YB","AB","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq9",2013-07-20,2013-07-20,"YB","AB","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq1",2013-07-20,2013-07-20,"YB","AB","1","Bg","Balanus_glandula","Type 1",4,0.0875,45.7142857142857,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq2",2013-07-20,2013-07-20,"YB","AB","2","Bg","Balanus_glandula","Type 1",5,0.0875,57.1428571428571,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq3",2013-07-20,2013-07-20,"YB","AB","3","Bg","Balanus_glandula","Type 1",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq4",2013-07-20,2013-07-20,"YB","AB","4","Bg","Balanus_glandula","Type 1",3,0.0875,34.2857142857143,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq5",2013-07-20,2013-07-20,"YB","AB","5","Bg","Balanus_glandula","Type 1",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq6",2013-07-20,2013-07-20,"YB","AB","6","Bg","Balanus_glandula","Type 1",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq7",2013-07-20,2013-07-20,"YB","AB","7","Bg","Balanus_glandula","Type 1",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq8",2013-07-20,2013-07-20,"YB","AB","8","Bg","Balanus_glandula","Type 1",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq9",2013-07-20,2013-07-20,"YB","AB","9","Bg","Balanus_glandula","Type 1",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq1",2013-07-20,2013-07-20,"YB","AB","1","BgD","Balanus_glandula_(dead)","Type 2",23,0.0875,262.857142857143,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq2",2013-07-20,2013-07-20,"YB","AB","2","BgD","Balanus_glandula_(dead)","Type 2",12,0.0875,137.142857142857,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq3",2013-07-20,2013-07-20,"YB","AB","3","BgD","Balanus_glandula_(dead)","Type 2",4,0.0875,45.7142857142857,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq4",2013-07-20,2013-07-20,"YB","AB","4","BgD","Balanus_glandula_(dead)","Type 2",29,0.0875,331.428571428571,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq5",2013-07-20,2013-07-20,"YB","AB","5","BgD","Balanus_glandula_(dead)","Type 2",7,0.0875,80,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq6",2013-07-20,2013-07-20,"YB","AB","6","BgD","Balanus_glandula_(dead)","Type 2",9,0.0875,102.857142857143,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq7",2013-07-20,2013-07-20,"YB","AB","7","BgD","Balanus_glandula_(dead)","Type 2",4,0.0875,45.7142857142857,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq8",2013-07-20,2013-07-20,"YB","AB","8","BgD","Balanus_glandula_(dead)","Type 2",8,0.0875,91.4285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq9",2013-07-20,2013-07-20,"YB","AB","9","BgD","Balanus_glandula_(dead)","Type 2",5,0.0875,57.1428571428571,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq1",2013-07-20,2013-07-20,"YB","AB","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq2",2013-07-20,2013-07-20,"YB","AB","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq3",2013-07-20,2013-07-20,"YB","AB","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq4",2013-07-20,2013-07-20,"YB","AB","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq5",2013-07-20,2013-07-20,"YB","AB","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq6",2013-07-20,2013-07-20,"YB","AB","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq7",2013-07-20,2013-07-20,"YB","AB","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq8",2013-07-20,2013-07-20,"YB","AB","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq9",2013-07-20,2013-07-20,"YB","AB","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq1",2013-07-20,2013-07-20,"YB","AB","1","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq2",2013-07-20,2013-07-20,"YB","AB","2","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq3",2013-07-20,2013-07-20,"YB","AB","3","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq4",2013-07-20,2013-07-20,"YB","AB","4","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq5",2013-07-20,2013-07-20,"YB","AB","5","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq6",2013-07-20,2013-07-20,"YB","AB","6","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq7",2013-07-20,2013-07-20,"YB","AB","7","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq8",2013-07-20,2013-07-20,"YB","AB","8","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq9",2013-07-20,2013-07-20,"YB","AB","9","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq1",2013-07-20,2013-07-20,"YB","AB","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq2",2013-07-20,2013-07-20,"YB","AB","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq3",2013-07-20,2013-07-20,"YB","AB","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq4",2013-07-20,2013-07-20,"YB","AB","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq5",2013-07-20,2013-07-20,"YB","AB","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq6",2013-07-20,2013-07-20,"YB","AB","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq7",2013-07-20,2013-07-20,"YB","AB","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq8",2013-07-20,2013-07-20,"YB","AB","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq9",2013-07-20,2013-07-20,"YB","AB","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq1",2013-07-20,2013-07-20,"YB","AB","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq2",2013-07-20,2013-07-20,"YB","AB","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq3",2013-07-20,2013-07-20,"YB","AB","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq4",2013-07-20,2013-07-20,"YB","AB","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq5",2013-07-20,2013-07-20,"YB","AB","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq6",2013-07-20,2013-07-20,"YB","AB","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq7",2013-07-20,2013-07-20,"YB","AB","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq8",2013-07-20,2013-07-20,"YB","AB","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq9",2013-07-20,2013-07-20,"YB","AB","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq1",2013-07-20,2013-07-20,"YB","AB","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq2",2013-07-20,2013-07-20,"YB","AB","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq3",2013-07-20,2013-07-20,"YB","AB","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq4",2013-07-20,2013-07-20,"YB","AB","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq5",2013-07-20,2013-07-20,"YB","AB","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq6",2013-07-20,2013-07-20,"YB","AB","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq7",2013-07-20,2013-07-20,"YB","AB","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq8",2013-07-20,2013-07-20,"YB","AB","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq9",2013-07-20,2013-07-20,"YB","AB","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq1",2013-07-20,2013-07-20,"YB","AB","1","Lim","Limpets","Type 12",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq2",2013-07-20,2013-07-20,"YB","AB","2","Lim","Limpets","Type 12",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq3",2013-07-20,2013-07-20,"YB","AB","3","Lim","Limpets","Type 12",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq4",2013-07-20,2013-07-20,"YB","AB","4","Lim","Limpets","Type 12",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq5",2013-07-20,2013-07-20,"YB","AB","5","Lim","Limpets","Type 12",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq6",2013-07-20,2013-07-20,"YB","AB","6","Lim","Limpets","Type 12",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq7",2013-07-20,2013-07-20,"YB","AB","7","Lim","Limpets","Type 12",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq8",2013-07-20,2013-07-20,"YB","AB","8","Lim","Limpets","Type 12",3,0.0875,34.2857142857143,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq9",2013-07-20,2013-07-20,"YB","AB","9","Lim","Limpets","Type 12",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq1",2013-07-20,2013-07-20,"YB","AB","1","Ls","Littorina_sitkana","Type 13",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq2",2013-07-20,2013-07-20,"YB","AB","2","Ls","Littorina_sitkana","Type 13",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq3",2013-07-20,2013-07-20,"YB","AB","3","Ls","Littorina_sitkana","Type 13",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq4",2013-07-20,2013-07-20,"YB","AB","4","Ls","Littorina_sitkana","Type 13",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq5",2013-07-20,2013-07-20,"YB","AB","5","Ls","Littorina_sitkana","Type 13",4,0.0875,45.7142857142857,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq6",2013-07-20,2013-07-20,"YB","AB","6","Ls","Littorina_sitkana","Type 13",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq7",2013-07-20,2013-07-20,"YB","AB","7","Ls","Littorina_sitkana","Type 13",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq8",2013-07-20,2013-07-20,"YB","AB","8","Ls","Littorina_sitkana","Type 13",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq9",2013-07-20,2013-07-20,"YB","AB","9","Ls","Littorina_sitkana","Type 13",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq1",2013-07-20,2013-07-20,"YB","AB","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq2",2013-07-20,2013-07-20,"YB","AB","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq3",2013-07-20,2013-07-20,"YB","AB","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq4",2013-07-20,2013-07-20,"YB","AB","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq5",2013-07-20,2013-07-20,"YB","AB","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq6",2013-07-20,2013-07-20,"YB","AB","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq7",2013-07-20,2013-07-20,"YB","AB","7","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq8",2013-07-20,2013-07-20,"YB","AB","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq9",2013-07-20,2013-07-20,"YB","AB","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq1",2013-07-20,2013-07-20,"YB","AB","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq2",2013-07-20,2013-07-20,"YB","AB","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq3",2013-07-20,2013-07-20,"YB","AB","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq4",2013-07-20,2013-07-20,"YB","AB","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq5",2013-07-20,2013-07-20,"YB","AB","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq6",2013-07-20,2013-07-20,"YB","AB","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq7",2013-07-20,2013-07-20,"YB","AB","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq8",2013-07-20,2013-07-20,"YB","AB","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq9",2013-07-20,2013-07-20,"YB","AB","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq1",2013-07-20,2013-07-20,"YB","AB","1","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq2",2013-07-20,2013-07-20,"YB","AB","2","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq3",2013-07-20,2013-07-20,"YB","AB","3","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq4",2013-07-20,2013-07-20,"YB","AB","4","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq5",2013-07-20,2013-07-20,"YB","AB","5","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq6",2013-07-20,2013-07-20,"YB","AB","6","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq7",2013-07-20,2013-07-20,"YB","AB","7","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq8",2013-07-20,2013-07-20,"YB","AB","8","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq9",2013-07-20,2013-07-20,"YB","AB","9","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq1",2013-07-20,2013-07-20,"YB","AB","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq2",2013-07-20,2013-07-20,"YB","AB","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq3",2013-07-20,2013-07-20,"YB","AB","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq4",2013-07-20,2013-07-20,"YB","AB","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq5",2013-07-20,2013-07-20,"YB","AB","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq6",2013-07-20,2013-07-20,"YB","AB","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq7",2013-07-20,2013-07-20,"YB","AB","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq8",2013-07-20,2013-07-20,"YB","AB","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq9",2013-07-20,2013-07-20,"YB","AB","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq1",2013-07-20,2013-07-20,"YB","AB","1","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq2",2013-07-20,2013-07-20,"YB","AB","2","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq3",2013-07-20,2013-07-20,"YB","AB","3","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq4",2013-07-20,2013-07-20,"YB","AB","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq5",2013-07-20,2013-07-20,"YB","AB","5","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq6",2013-07-20,2013-07-20,"YB","AB","6","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq7",2013-07-20,2013-07-20,"YB","AB","7","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq8",2013-07-20,2013-07-20,"YB","AB","8","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq9",2013-07-20,2013-07-20,"YB","AB","9","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq1",2013-07-20,2013-07-20,"YB","AB","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq2",2013-07-20,2013-07-20,"YB","AB","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq3",2013-07-20,2013-07-20,"YB","AB","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq4",2013-07-20,2013-07-20,"YB","AB","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq5",2013-07-20,2013-07-20,"YB","AB","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq6",2013-07-20,2013-07-20,"YB","AB","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq7",2013-07-20,2013-07-20,"YB","AB","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq8",2013-07-20,2013-07-20,"YB","AB","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq9",2013-07-20,2013-07-20,"YB","AB","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq1",2013-07-20,2013-07-20,"YB","AB","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq2",2013-07-20,2013-07-20,"YB","AB","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq3",2013-07-20,2013-07-20,"YB","AB","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq4",2013-07-20,2013-07-20,"YB","AB","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq5",2013-07-20,2013-07-20,"YB","AB","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq6",2013-07-20,2013-07-20,"YB","AB","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq7",2013-07-20,2013-07-20,"YB","AB","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq8",2013-07-20,2013-07-20,"YB","AB","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq9",2013-07-20,2013-07-20,"YB","AB","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq1",2013-07-20,2013-07-20,"YB","AB","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq2",2013-07-20,2013-07-20,"YB","AB","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq3",2013-07-20,2013-07-20,"YB","AB","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq4",2013-07-20,2013-07-20,"YB","AB","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq5",2013-07-20,2013-07-20,"YB","AB","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq6",2013-07-20,2013-07-20,"YB","AB","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq7",2013-07-20,2013-07-20,"YB","AB","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq8",2013-07-20,2013-07-20,"YB","AB","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq9",2013-07-20,2013-07-20,"YB","AB","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq1",2013-07-20,2013-07-20,"YB","AB","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq2",2013-07-20,2013-07-20,"YB","AB","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq3",2013-07-20,2013-07-20,"YB","AB","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq4",2013-07-20,2013-07-20,"YB","AB","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq5",2013-07-20,2013-07-20,"YB","AB","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq6",2013-07-20,2013-07-20,"YB","AB","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq7",2013-07-20,2013-07-20,"YB","AB","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq8",2013-07-20,2013-07-20,"YB","AB","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq9",2013-07-20,2013-07-20,"YB","AB","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq1",2013-07-20,2013-07-20,"YB","AB","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq2",2013-07-20,2013-07-20,"YB","AB","2","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq3",2013-07-20,2013-07-20,"YB","AB","3","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq4",2013-07-20,2013-07-20,"YB","AB","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq5",2013-07-20,2013-07-20,"YB","AB","5","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq6",2013-07-20,2013-07-20,"YB","AB","6","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq7",2013-07-20,2013-07-20,"YB","AB","7","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq8",2013-07-20,2013-07-20,"YB","AB","8","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq9",2013-07-20,2013-07-20,"YB","AB","9","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq1",2013-07-20,2013-07-20,"YB","AB","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq2",2013-07-20,2013-07-20,"YB","AB","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq3",2013-07-20,2013-07-20,"YB","AB","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq4",2013-07-20,2013-07-20,"YB","AB","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq5",2013-07-20,2013-07-20,"YB","AB","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq6",2013-07-20,2013-07-20,"YB","AB","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq7",2013-07-20,2013-07-20,"YB","AB","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq8",2013-07-20,2013-07-20,"YB","AB","8","Wor","Other_worm spp.","Type 25",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq9",2013-07-20,2013-07-20,"YB","AB","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq1",2013-07-20,2013-07-20,"YB","AB","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq2",2013-07-20,2013-07-20,"YB","AB","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq3",2013-07-20,2013-07-20,"YB","AB","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq4",2013-07-20,2013-07-20,"YB","AB","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq5",2013-07-20,2013-07-20,"YB","AB","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq6",2013-07-20,2013-07-20,"YB","AB","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq7",2013-07-20,2013-07-20,"YB","AB","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq8",2013-07-20,2013-07-20,"YB","AB","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq9",2013-07-20,2013-07-20,"YB","AB","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq1",2013-07-20,2013-07-20,"YB","AB","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq2",2013-07-20,2013-07-20,"YB","AB","2","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq3",2013-07-20,2013-07-20,"YB","AB","3","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq4",2013-07-20,2013-07-20,"YB","AB","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq5",2013-07-20,2013-07-20,"YB","AB","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq6",2013-07-20,2013-07-20,"YB","AB","6","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq7",2013-07-20,2013-07-20,"YB","AB","7","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq8",2013-07-20,2013-07-20,"YB","AB","8","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq9",2013-07-20,2013-07-20,"YB","AB","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq1",2013-07-20,2013-07-20,"YB","AB","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq2",2013-07-20,2013-07-20,"YB","AB","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq3",2013-07-20,2013-07-20,"YB","AB","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq4",2013-07-20,2013-07-20,"YB","AB","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq5",2013-07-20,2013-07-20,"YB","AB","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq6",2013-07-20,2013-07-20,"YB","AB","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq7",2013-07-20,2013-07-20,"YB","AB","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq8",2013-07-20,2013-07-20,"YB","AB","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq9",2013-07-20,2013-07-20,"YB","AB","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq1",2013-07-20,2013-07-20,"YB","AB","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq2",2013-07-20,2013-07-20,"YB","AB","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq3",2013-07-20,2013-07-20,"YB","AB","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq4",2013-07-20,2013-07-20,"YB","AB","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq5",2013-07-20,2013-07-20,"YB","AB","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq6",2013-07-20,2013-07-20,"YB","AB","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq7",2013-07-20,2013-07-20,"YB","AB","7","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq8",2013-07-20,2013-07-20,"YB","AB","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq9",2013-07-20,2013-07-20,"YB","AB","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq1",2013-07-20,2013-07-20,"YB","AB","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq2",2013-07-20,2013-07-20,"YB","AB","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq3",2013-07-20,2013-07-20,"YB","AB","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq4",2013-07-20,2013-07-20,"YB","AB","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq5",2013-07-20,2013-07-20,"YB","AB","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq6",2013-07-20,2013-07-20,"YB","AB","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq7",2013-07-20,2013-07-20,"YB","AB","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq8",2013-07-20,2013-07-20,"YB","AB","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ABq9",2013-07-20,2013-07-20,"YB","AB","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq1",2013-07-20,2013-07-20,"YB","AC","1","Alg","Algae","Type 19",35,0.0875,400,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq2",2013-07-20,2013-07-20,"YB","AC","2","Alg","Algae","Type 19",27,0.0875,308.571428571429,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq3",2013-07-20,2013-07-20,"YB","AC","3","Alg","Algae","Type 19",28,0.0875,320,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq4",2013-07-20,2013-07-20,"YB","AC","4","Alg","Algae","Type 19",13,0.0875,148.571428571429,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq5",2013-07-20,2013-07-20,"YB","AC","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq6",2013-07-20,2013-07-20,"YB","AC","6","Alg","Algae","Type 19",27,0.0875,308.571428571429,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq7",2013-07-20,2013-07-20,"YB","AC","7","Alg","Algae","Type 19",21,0.0875,240,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq8",2013-07-20,2013-07-20,"YB","AC","8","Alg","Algae","Type 19",18,0.0875,205.714285714286,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq9",2013-07-20,2013-07-20,"YB","AC","9","Alg","Algae","Type 19",18,0.0875,205.714285714286,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq1",2013-07-20,2013-07-20,"YB","AC","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq2",2013-07-20,2013-07-20,"YB","AC","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq3",2013-07-20,2013-07-20,"YB","AC","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq4",2013-07-20,2013-07-20,"YB","AC","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq5",2013-07-20,2013-07-20,"YB","AC","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq6",2013-07-20,2013-07-20,"YB","AC","6","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq7",2013-07-20,2013-07-20,"YB","AC","7","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq8",2013-07-20,2013-07-20,"YB","AC","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq9",2013-07-20,2013-07-20,"YB","AC","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq1",2013-07-20,2013-07-20,"YB","AC","1","Bg","Balanus_glandula","Type 1",30,0.0875,342.857142857143,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq2",2013-07-20,2013-07-20,"YB","AC","2","Bg","Balanus_glandula","Type 1",10,0.0875,114.285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq3",2013-07-20,2013-07-20,"YB","AC","3","Bg","Balanus_glandula","Type 1",24,0.0875,274.285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq4",2013-07-20,2013-07-20,"YB","AC","4","Bg","Balanus_glandula","Type 1",7,0.0875,80,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq5",2013-07-20,2013-07-20,"YB","AC","5","Bg","Balanus_glandula","Type 1",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq6",2013-07-20,2013-07-20,"YB","AC","6","Bg","Balanus_glandula","Type 1",7,0.0875,80,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq7",2013-07-20,2013-07-20,"YB","AC","7","Bg","Balanus_glandula","Type 1",19,0.0875,217.142857142857,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq8",2013-07-20,2013-07-20,"YB","AC","8","Bg","Balanus_glandula","Type 1",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq9",2013-07-20,2013-07-20,"YB","AC","9","Bg","Balanus_glandula","Type 1",52,0.0875,594.285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq1",2013-07-20,2013-07-20,"YB","AC","1","BgD","Balanus_glandula_(dead)","Type 2",3,0.0875,34.2857142857143,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq2",2013-07-20,2013-07-20,"YB","AC","2","BgD","Balanus_glandula_(dead)","Type 2",13,0.0875,148.571428571429,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq3",2013-07-20,2013-07-20,"YB","AC","3","BgD","Balanus_glandula_(dead)","Type 2",5,0.0875,57.1428571428571,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq4",2013-07-20,2013-07-20,"YB","AC","4","BgD","Balanus_glandula_(dead)","Type 2",5,0.0875,57.1428571428571,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq5",2013-07-20,2013-07-20,"YB","AC","5","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq6",2013-07-20,2013-07-20,"YB","AC","6","BgD","Balanus_glandula_(dead)","Type 2",13,0.0875,148.571428571429,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq7",2013-07-20,2013-07-20,"YB","AC","7","BgD","Balanus_glandula_(dead)","Type 2",14,0.0875,160,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq8",2013-07-20,2013-07-20,"YB","AC","8","BgD","Balanus_glandula_(dead)","Type 2",6,0.0875,68.5714285714286,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq9",2013-07-20,2013-07-20,"YB","AC","9","BgD","Balanus_glandula_(dead)","Type 2",21,0.0875,240,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq1",2013-07-20,2013-07-20,"YB","AC","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq2",2013-07-20,2013-07-20,"YB","AC","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq3",2013-07-20,2013-07-20,"YB","AC","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq4",2013-07-20,2013-07-20,"YB","AC","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq5",2013-07-20,2013-07-20,"YB","AC","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq6",2013-07-20,2013-07-20,"YB","AC","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq7",2013-07-20,2013-07-20,"YB","AC","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq8",2013-07-20,2013-07-20,"YB","AC","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq9",2013-07-20,2013-07-20,"YB","AC","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq1",2013-07-20,2013-07-20,"YB","AC","1","Cth","Chthamalus_dalli","Type 3",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq2",2013-07-20,2013-07-20,"YB","AC","2","Cth","Chthamalus_dalli","Type 3",3,0.0875,34.2857142857143,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq3",2013-07-20,2013-07-20,"YB","AC","3","Cth","Chthamalus_dalli","Type 3",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq4",2013-07-20,2013-07-20,"YB","AC","4","Cth","Chthamalus_dalli","Type 3",3,0.0875,34.2857142857143,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq5",2013-07-20,2013-07-20,"YB","AC","5","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq6",2013-07-20,2013-07-20,"YB","AC","6","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq7",2013-07-20,2013-07-20,"YB","AC","7","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq8",2013-07-20,2013-07-20,"YB","AC","8","Cth","Chthamalus_dalli","Type 3",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq9",2013-07-20,2013-07-20,"YB","AC","9","Cth","Chthamalus_dalli","Type 3",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq1",2013-07-20,2013-07-20,"YB","AC","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq2",2013-07-20,2013-07-20,"YB","AC","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq3",2013-07-20,2013-07-20,"YB","AC","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq4",2013-07-20,2013-07-20,"YB","AC","4","CthD","Chthamalus_dalli (dead)","Type 4",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq5",2013-07-20,2013-07-20,"YB","AC","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq6",2013-07-20,2013-07-20,"YB","AC","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq7",2013-07-20,2013-07-20,"YB","AC","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq8",2013-07-20,2013-07-20,"YB","AC","8","CthD","Chthamalus_dalli (dead)","Type 4",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq9",2013-07-20,2013-07-20,"YB","AC","9","CthD","Chthamalus_dalli (dead)","Type 4",4,0.0875,45.7142857142857,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq1",2013-07-20,2013-07-20,"YB","AC","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq2",2013-07-20,2013-07-20,"YB","AC","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq3",2013-07-20,2013-07-20,"YB","AC","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq4",2013-07-20,2013-07-20,"YB","AC","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq5",2013-07-20,2013-07-20,"YB","AC","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq6",2013-07-20,2013-07-20,"YB","AC","6","Emp","Emplectonema worm","Type 23",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq7",2013-07-20,2013-07-20,"YB","AC","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq8",2013-07-20,2013-07-20,"YB","AC","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq9",2013-07-20,2013-07-20,"YB","AC","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq1",2013-07-20,2013-07-20,"YB","AC","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq2",2013-07-20,2013-07-20,"YB","AC","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq3",2013-07-20,2013-07-20,"YB","AC","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq4",2013-07-20,2013-07-20,"YB","AC","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq5",2013-07-20,2013-07-20,"YB","AC","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq6",2013-07-20,2013-07-20,"YB","AC","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq7",2013-07-20,2013-07-20,"YB","AC","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq8",2013-07-20,2013-07-20,"YB","AC","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq9",2013-07-20,2013-07-20,"YB","AC","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq1",2013-07-20,2013-07-20,"YB","AC","1","Lim","Limpets","Type 12",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq2",2013-07-20,2013-07-20,"YB","AC","2","Lim","Limpets","Type 12",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq3",2013-07-20,2013-07-20,"YB","AC","3","Lim","Limpets","Type 12",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq4",2013-07-20,2013-07-20,"YB","AC","4","Lim","Limpets","Type 12",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq5",2013-07-20,2013-07-20,"YB","AC","5","Lim","Limpets","Type 12",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq6",2013-07-20,2013-07-20,"YB","AC","6","Lim","Limpets","Type 12",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq7",2013-07-20,2013-07-20,"YB","AC","7","Lim","Limpets","Type 12",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq8",2013-07-20,2013-07-20,"YB","AC","8","Lim","Limpets","Type 12",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq9",2013-07-20,2013-07-20,"YB","AC","9","Lim","Limpets","Type 12",8,0.0875,91.4285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq1",2013-07-20,2013-07-20,"YB","AC","1","Ls","Littorina_sitkana","Type 13",27,0.0875,308.571428571429,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq2",2013-07-20,2013-07-20,"YB","AC","2","Ls","Littorina_sitkana","Type 13",39,0.0875,445.714285714286,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq3",2013-07-20,2013-07-20,"YB","AC","3","Ls","Littorina_sitkana","Type 13",8,0.0875,91.4285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq4",2013-07-20,2013-07-20,"YB","AC","4","Ls","Littorina_sitkana","Type 13",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq5",2013-07-20,2013-07-20,"YB","AC","5","Ls","Littorina_sitkana","Type 13",5,0.0875,57.1428571428571,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq6",2013-07-20,2013-07-20,"YB","AC","6","Ls","Littorina_sitkana","Type 13",5,0.0875,57.1428571428571,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq7",2013-07-20,2013-07-20,"YB","AC","7","Ls","Littorina_sitkana","Type 13",4,0.0875,45.7142857142857,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq8",2013-07-20,2013-07-20,"YB","AC","8","Ls","Littorina_sitkana","Type 13",30,0.0875,342.857142857143,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq9",2013-07-20,2013-07-20,"YB","AC","9","Ls","Littorina_sitkana","Type 13",50,0.0875,571.428571428571,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq1",2013-07-20,2013-07-20,"YB","AC","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq2",2013-07-20,2013-07-20,"YB","AC","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq3",2013-07-20,2013-07-20,"YB","AC","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq4",2013-07-20,2013-07-20,"YB","AC","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq5",2013-07-20,2013-07-20,"YB","AC","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq6",2013-07-20,2013-07-20,"YB","AC","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq7",2013-07-20,2013-07-20,"YB","AC","7","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq8",2013-07-20,2013-07-20,"YB","AC","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq9",2013-07-20,2013-07-20,"YB","AC","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq1",2013-07-20,2013-07-20,"YB","AC","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq2",2013-07-20,2013-07-20,"YB","AC","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq3",2013-07-20,2013-07-20,"YB","AC","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq4",2013-07-20,2013-07-20,"YB","AC","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq5",2013-07-20,2013-07-20,"YB","AC","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq6",2013-07-20,2013-07-20,"YB","AC","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq7",2013-07-20,2013-07-20,"YB","AC","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq8",2013-07-20,2013-07-20,"YB","AC","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq9",2013-07-20,2013-07-20,"YB","AC","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq1",2013-07-20,2013-07-20,"YB","AC","1","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq2",2013-07-20,2013-07-20,"YB","AC","2","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq3",2013-07-20,2013-07-20,"YB","AC","3","Myt","Mytilus_spp","Type 7",5,0.0875,57.1428571428571,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq4",2013-07-20,2013-07-20,"YB","AC","4","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq5",2013-07-20,2013-07-20,"YB","AC","5","Myt","Mytilus_spp","Type 7",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq6",2013-07-20,2013-07-20,"YB","AC","6","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq7",2013-07-20,2013-07-20,"YB","AC","7","Myt","Mytilus_spp","Type 7",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq8",2013-07-20,2013-07-20,"YB","AC","8","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq9",2013-07-20,2013-07-20,"YB","AC","9","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq1",2013-07-20,2013-07-20,"YB","AC","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq2",2013-07-20,2013-07-20,"YB","AC","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq3",2013-07-20,2013-07-20,"YB","AC","3","MytD","Mytilus_spp_(dead)","Type 8",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq4",2013-07-20,2013-07-20,"YB","AC","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq5",2013-07-20,2013-07-20,"YB","AC","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq6",2013-07-20,2013-07-20,"YB","AC","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq7",2013-07-20,2013-07-20,"YB","AC","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq8",2013-07-20,2013-07-20,"YB","AC","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq9",2013-07-20,2013-07-20,"YB","AC","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq1",2013-07-20,2013-07-20,"YB","AC","1","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq2",2013-07-20,2013-07-20,"YB","AC","2","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq3",2013-07-20,2013-07-20,"YB","AC","3","Mt","Mytilus_trossulus","Type 15",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq4",2013-07-20,2013-07-20,"YB","AC","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq5",2013-07-20,2013-07-20,"YB","AC","5","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq6",2013-07-20,2013-07-20,"YB","AC","6","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq7",2013-07-20,2013-07-20,"YB","AC","7","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq8",2013-07-20,2013-07-20,"YB","AC","8","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq9",2013-07-20,2013-07-20,"YB","AC","9","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq1",2013-07-20,2013-07-20,"YB","AC","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq2",2013-07-20,2013-07-20,"YB","AC","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq3",2013-07-20,2013-07-20,"YB","AC","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq4",2013-07-20,2013-07-20,"YB","AC","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq5",2013-07-20,2013-07-20,"YB","AC","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq6",2013-07-20,2013-07-20,"YB","AC","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq7",2013-07-20,2013-07-20,"YB","AC","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq8",2013-07-20,2013-07-20,"YB","AC","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq9",2013-07-20,2013-07-20,"YB","AC","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq1",2013-07-20,2013-07-20,"YB","AC","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq2",2013-07-20,2013-07-20,"YB","AC","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq3",2013-07-20,2013-07-20,"YB","AC","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq4",2013-07-20,2013-07-20,"YB","AC","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq5",2013-07-20,2013-07-20,"YB","AC","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq6",2013-07-20,2013-07-20,"YB","AC","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq7",2013-07-20,2013-07-20,"YB","AC","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq8",2013-07-20,2013-07-20,"YB","AC","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq9",2013-07-20,2013-07-20,"YB","AC","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq1",2013-07-20,2013-07-20,"YB","AC","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq2",2013-07-20,2013-07-20,"YB","AC","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq3",2013-07-20,2013-07-20,"YB","AC","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq4",2013-07-20,2013-07-20,"YB","AC","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq5",2013-07-20,2013-07-20,"YB","AC","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq6",2013-07-20,2013-07-20,"YB","AC","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq7",2013-07-20,2013-07-20,"YB","AC","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq8",2013-07-20,2013-07-20,"YB","AC","8","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq9",2013-07-20,2013-07-20,"YB","AC","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq1",2013-07-20,2013-07-20,"YB","AC","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq2",2013-07-20,2013-07-20,"YB","AC","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq3",2013-07-20,2013-07-20,"YB","AC","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq4",2013-07-20,2013-07-20,"YB","AC","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq5",2013-07-20,2013-07-20,"YB","AC","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq6",2013-07-20,2013-07-20,"YB","AC","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq7",2013-07-20,2013-07-20,"YB","AC","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq8",2013-07-20,2013-07-20,"YB","AC","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq9",2013-07-20,2013-07-20,"YB","AC","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq1",2013-07-20,2013-07-20,"YB","AC","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq2",2013-07-20,2013-07-20,"YB","AC","2","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq3",2013-07-20,2013-07-20,"YB","AC","3","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq4",2013-07-20,2013-07-20,"YB","AC","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq5",2013-07-20,2013-07-20,"YB","AC","5","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq6",2013-07-20,2013-07-20,"YB","AC","6","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq7",2013-07-20,2013-07-20,"YB","AC","7","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq8",2013-07-20,2013-07-20,"YB","AC","8","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq9",2013-07-20,2013-07-20,"YB","AC","9","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq1",2013-07-20,2013-07-20,"YB","AC","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq2",2013-07-20,2013-07-20,"YB","AC","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq3",2013-07-20,2013-07-20,"YB","AC","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq4",2013-07-20,2013-07-20,"YB","AC","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq5",2013-07-20,2013-07-20,"YB","AC","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq6",2013-07-20,2013-07-20,"YB","AC","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq7",2013-07-20,2013-07-20,"YB","AC","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq8",2013-07-20,2013-07-20,"YB","AC","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq9",2013-07-20,2013-07-20,"YB","AC","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq1",2013-07-20,2013-07-20,"YB","AC","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq2",2013-07-20,2013-07-20,"YB","AC","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq3",2013-07-20,2013-07-20,"YB","AC","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq4",2013-07-20,2013-07-20,"YB","AC","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq5",2013-07-20,2013-07-20,"YB","AC","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq6",2013-07-20,2013-07-20,"YB","AC","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq7",2013-07-20,2013-07-20,"YB","AC","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq8",2013-07-20,2013-07-20,"YB","AC","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq9",2013-07-20,2013-07-20,"YB","AC","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq1",2013-07-20,2013-07-20,"YB","AC","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq2",2013-07-20,2013-07-20,"YB","AC","2","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq3",2013-07-20,2013-07-20,"YB","AC","3","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq4",2013-07-20,2013-07-20,"YB","AC","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq5",2013-07-20,2013-07-20,"YB","AC","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq6",2013-07-20,2013-07-20,"YB","AC","6","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq7",2013-07-20,2013-07-20,"YB","AC","7","Pp","Pollicipes_polymerus","Type 11",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq8",2013-07-20,2013-07-20,"YB","AC","8","Pp","Pollicipes_polymerus","Type 11",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq9",2013-07-20,2013-07-20,"YB","AC","9","Pp","Pollicipes_polymerus","Type 11",3,0.0875,34.2857142857143,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq1",2013-07-20,2013-07-20,"YB","AC","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq2",2013-07-20,2013-07-20,"YB","AC","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq3",2013-07-20,2013-07-20,"YB","AC","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq4",2013-07-20,2013-07-20,"YB","AC","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq5",2013-07-20,2013-07-20,"YB","AC","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq6",2013-07-20,2013-07-20,"YB","AC","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq7",2013-07-20,2013-07-20,"YB","AC","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq8",2013-07-20,2013-07-20,"YB","AC","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq9",2013-07-20,2013-07-20,"YB","AC","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq1",2013-07-20,2013-07-20,"YB","AC","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq2",2013-07-20,2013-07-20,"YB","AC","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq3",2013-07-20,2013-07-20,"YB","AC","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq4",2013-07-20,2013-07-20,"YB","AC","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq5",2013-07-20,2013-07-20,"YB","AC","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq6",2013-07-20,2013-07-20,"YB","AC","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq7",2013-07-20,2013-07-20,"YB","AC","7","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq8",2013-07-20,2013-07-20,"YB","AC","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq9",2013-07-20,2013-07-20,"YB","AC","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq1",2013-07-20,2013-07-20,"YB","AC","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq2",2013-07-20,2013-07-20,"YB","AC","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq3",2013-07-20,2013-07-20,"YB","AC","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq4",2013-07-20,2013-07-20,"YB","AC","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq5",2013-07-20,2013-07-20,"YB","AC","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq6",2013-07-20,2013-07-20,"YB","AC","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq7",2013-07-20,2013-07-20,"YB","AC","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq8",2013-07-20,2013-07-20,"YB","AC","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ACq9",2013-07-20,2013-07-20,"YB","AC","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq1",2013-07-20,2013-07-20,"YB","AD","1","Alg","Algae","Type 19",10,0.0875,114.285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq2",2013-07-20,2013-07-20,"YB","AD","2","Alg","Algae","Type 19",9,0.0875,102.857142857143,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq3",2013-07-20,2013-07-20,"YB","AD","3","Alg","Algae","Type 19",8,0.0875,91.4285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq4",2013-07-20,2013-07-20,"YB","AD","4","Alg","Algae","Type 19",9,0.0875,102.857142857143,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq5",2013-07-20,2013-07-20,"YB","AD","5","Alg","Algae","Type 19",6,0.0875,68.5714285714286,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq6",2013-07-20,2013-07-20,"YB","AD","6","Alg","Algae","Type 19",8,0.0875,91.4285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq7",2013-07-20,2013-07-20,"YB","AD","7","Alg","Algae","Type 19",7,0.0875,80,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq8",2013-07-20,2013-07-20,"YB","AD","8","Alg","Algae","Type 19",9,0.0875,102.857142857143,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq9",2013-07-20,2013-07-20,"YB","AD","9","Alg","Algae","Type 19",6,0.0875,68.5714285714286,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq1",2013-07-20,2013-07-20,"YB","AD","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq2",2013-07-20,2013-07-20,"YB","AD","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq3",2013-07-20,2013-07-20,"YB","AD","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq4",2013-07-20,2013-07-20,"YB","AD","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq5",2013-07-20,2013-07-20,"YB","AD","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq6",2013-07-20,2013-07-20,"YB","AD","6","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq7",2013-07-20,2013-07-20,"YB","AD","7","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq8",2013-07-20,2013-07-20,"YB","AD","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq9",2013-07-20,2013-07-20,"YB","AD","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq1",2013-07-20,2013-07-20,"YB","AD","1","Bg","Balanus_glandula","Type 1",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq2",2013-07-20,2013-07-20,"YB","AD","2","Bg","Balanus_glandula","Type 1",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq3",2013-07-20,2013-07-20,"YB","AD","3","Bg","Balanus_glandula","Type 1",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq4",2013-07-20,2013-07-20,"YB","AD","4","Bg","Balanus_glandula","Type 1",4,0.0875,45.7142857142857,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq5",2013-07-20,2013-07-20,"YB","AD","5","Bg","Balanus_glandula","Type 1",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq6",2013-07-20,2013-07-20,"YB","AD","6","Bg","Balanus_glandula","Type 1",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq7",2013-07-20,2013-07-20,"YB","AD","7","Bg","Balanus_glandula","Type 1",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq8",2013-07-20,2013-07-20,"YB","AD","8","Bg","Balanus_glandula","Type 1",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq9",2013-07-20,2013-07-20,"YB","AD","9","Bg","Balanus_glandula","Type 1",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq1",2013-07-20,2013-07-20,"YB","AD","1","BgD","Balanus_glandula_(dead)","Type 2",10,0.0875,114.285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq2",2013-07-20,2013-07-20,"YB","AD","2","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq3",2013-07-20,2013-07-20,"YB","AD","3","BgD","Balanus_glandula_(dead)","Type 2",5,0.0875,57.1428571428571,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq4",2013-07-20,2013-07-20,"YB","AD","4","BgD","Balanus_glandula_(dead)","Type 2",5,0.0875,57.1428571428571,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq5",2013-07-20,2013-07-20,"YB","AD","5","BgD","Balanus_glandula_(dead)","Type 2",3,0.0875,34.2857142857143,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq6",2013-07-20,2013-07-20,"YB","AD","6","BgD","Balanus_glandula_(dead)","Type 2",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq7",2013-07-20,2013-07-20,"YB","AD","7","BgD","Balanus_glandula_(dead)","Type 2",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq8",2013-07-20,2013-07-20,"YB","AD","8","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq9",2013-07-20,2013-07-20,"YB","AD","9","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq1",2013-07-20,2013-07-20,"YB","AD","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq2",2013-07-20,2013-07-20,"YB","AD","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq3",2013-07-20,2013-07-20,"YB","AD","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq4",2013-07-20,2013-07-20,"YB","AD","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq5",2013-07-20,2013-07-20,"YB","AD","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq6",2013-07-20,2013-07-20,"YB","AD","6","Chi","Chiton_spp","Type 22",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq7",2013-07-20,2013-07-20,"YB","AD","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq8",2013-07-20,2013-07-20,"YB","AD","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq9",2013-07-20,2013-07-20,"YB","AD","9","Chi","Chiton_spp","Type 22",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq1",2013-07-20,2013-07-20,"YB","AD","1","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq2",2013-07-20,2013-07-20,"YB","AD","2","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq3",2013-07-20,2013-07-20,"YB","AD","3","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq4",2013-07-20,2013-07-20,"YB","AD","4","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq5",2013-07-20,2013-07-20,"YB","AD","5","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq6",2013-07-20,2013-07-20,"YB","AD","6","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq7",2013-07-20,2013-07-20,"YB","AD","7","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq8",2013-07-20,2013-07-20,"YB","AD","8","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq9",2013-07-20,2013-07-20,"YB","AD","9","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq1",2013-07-20,2013-07-20,"YB","AD","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq2",2013-07-20,2013-07-20,"YB","AD","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq3",2013-07-20,2013-07-20,"YB","AD","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq4",2013-07-20,2013-07-20,"YB","AD","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq5",2013-07-20,2013-07-20,"YB","AD","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq6",2013-07-20,2013-07-20,"YB","AD","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq7",2013-07-20,2013-07-20,"YB","AD","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq8",2013-07-20,2013-07-20,"YB","AD","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq9",2013-07-20,2013-07-20,"YB","AD","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq1",2013-07-20,2013-07-20,"YB","AD","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq2",2013-07-20,2013-07-20,"YB","AD","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq3",2013-07-20,2013-07-20,"YB","AD","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq4",2013-07-20,2013-07-20,"YB","AD","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq5",2013-07-20,2013-07-20,"YB","AD","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq6",2013-07-20,2013-07-20,"YB","AD","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq7",2013-07-20,2013-07-20,"YB","AD","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq8",2013-07-20,2013-07-20,"YB","AD","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq9",2013-07-20,2013-07-20,"YB","AD","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq1",2013-07-20,2013-07-20,"YB","AD","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq2",2013-07-20,2013-07-20,"YB","AD","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq3",2013-07-20,2013-07-20,"YB","AD","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq4",2013-07-20,2013-07-20,"YB","AD","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq5",2013-07-20,2013-07-20,"YB","AD","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq6",2013-07-20,2013-07-20,"YB","AD","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq7",2013-07-20,2013-07-20,"YB","AD","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq8",2013-07-20,2013-07-20,"YB","AD","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq9",2013-07-20,2013-07-20,"YB","AD","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq1",2013-07-20,2013-07-20,"YB","AD","1","Lim","Limpets","Type 12",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq2",2013-07-20,2013-07-20,"YB","AD","2","Lim","Limpets","Type 12",4,0.0875,45.7142857142857,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq3",2013-07-20,2013-07-20,"YB","AD","3","Lim","Limpets","Type 12",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq4",2013-07-20,2013-07-20,"YB","AD","4","Lim","Limpets","Type 12",3,0.0875,34.2857142857143,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq5",2013-07-20,2013-07-20,"YB","AD","5","Lim","Limpets","Type 12",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq6",2013-07-20,2013-07-20,"YB","AD","6","Lim","Limpets","Type 12",5,0.0875,57.1428571428571,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq7",2013-07-20,2013-07-20,"YB","AD","7","Lim","Limpets","Type 12",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq8",2013-07-20,2013-07-20,"YB","AD","8","Lim","Limpets","Type 12",5,0.0875,57.1428571428571,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq9",2013-07-20,2013-07-20,"YB","AD","9","Lim","Limpets","Type 12",14,0.0875,160,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq1",2013-07-20,2013-07-20,"YB","AD","1","Ls","Littorina_sitkana","Type 13",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq2",2013-07-20,2013-07-20,"YB","AD","2","Ls","Littorina_sitkana","Type 13",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq3",2013-07-20,2013-07-20,"YB","AD","3","Ls","Littorina_sitkana","Type 13",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq4",2013-07-20,2013-07-20,"YB","AD","4","Ls","Littorina_sitkana","Type 13",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq5",2013-07-20,2013-07-20,"YB","AD","5","Ls","Littorina_sitkana","Type 13",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq6",2013-07-20,2013-07-20,"YB","AD","6","Ls","Littorina_sitkana","Type 13",3,0.0875,34.2857142857143,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq7",2013-07-20,2013-07-20,"YB","AD","7","Ls","Littorina_sitkana","Type 13",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq8",2013-07-20,2013-07-20,"YB","AD","8","Ls","Littorina_sitkana","Type 13",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq9",2013-07-20,2013-07-20,"YB","AD","9","Ls","Littorina_sitkana","Type 13",10,0.0875,114.285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq1",2013-07-20,2013-07-20,"YB","AD","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq2",2013-07-20,2013-07-20,"YB","AD","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq3",2013-07-20,2013-07-20,"YB","AD","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq4",2013-07-20,2013-07-20,"YB","AD","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq5",2013-07-20,2013-07-20,"YB","AD","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq6",2013-07-20,2013-07-20,"YB","AD","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq7",2013-07-20,2013-07-20,"YB","AD","7","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq8",2013-07-20,2013-07-20,"YB","AD","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq9",2013-07-20,2013-07-20,"YB","AD","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq1",2013-07-20,2013-07-20,"YB","AD","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq2",2013-07-20,2013-07-20,"YB","AD","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq3",2013-07-20,2013-07-20,"YB","AD","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq4",2013-07-20,2013-07-20,"YB","AD","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq5",2013-07-20,2013-07-20,"YB","AD","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq6",2013-07-20,2013-07-20,"YB","AD","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq7",2013-07-20,2013-07-20,"YB","AD","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq8",2013-07-20,2013-07-20,"YB","AD","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq9",2013-07-20,2013-07-20,"YB","AD","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq1",2013-07-20,2013-07-20,"YB","AD","1","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq2",2013-07-20,2013-07-20,"YB","AD","2","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq3",2013-07-20,2013-07-20,"YB","AD","3","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq4",2013-07-20,2013-07-20,"YB","AD","4","Myt","Mytilus_spp","Type 7",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq5",2013-07-20,2013-07-20,"YB","AD","5","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq6",2013-07-20,2013-07-20,"YB","AD","6","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq7",2013-07-20,2013-07-20,"YB","AD","7","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq8",2013-07-20,2013-07-20,"YB","AD","8","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq9",2013-07-20,2013-07-20,"YB","AD","9","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq1",2013-07-20,2013-07-20,"YB","AD","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq2",2013-07-20,2013-07-20,"YB","AD","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq3",2013-07-20,2013-07-20,"YB","AD","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq4",2013-07-20,2013-07-20,"YB","AD","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq5",2013-07-20,2013-07-20,"YB","AD","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq6",2013-07-20,2013-07-20,"YB","AD","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq7",2013-07-20,2013-07-20,"YB","AD","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq8",2013-07-20,2013-07-20,"YB","AD","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq9",2013-07-20,2013-07-20,"YB","AD","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq1",2013-07-20,2013-07-20,"YB","AD","1","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq2",2013-07-20,2013-07-20,"YB","AD","2","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq3",2013-07-20,2013-07-20,"YB","AD","3","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq4",2013-07-20,2013-07-20,"YB","AD","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq5",2013-07-20,2013-07-20,"YB","AD","5","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq6",2013-07-20,2013-07-20,"YB","AD","6","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq7",2013-07-20,2013-07-20,"YB","AD","7","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq8",2013-07-20,2013-07-20,"YB","AD","8","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq9",2013-07-20,2013-07-20,"YB","AD","9","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq1",2013-07-20,2013-07-20,"YB","AD","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq2",2013-07-20,2013-07-20,"YB","AD","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq3",2013-07-20,2013-07-20,"YB","AD","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq4",2013-07-20,2013-07-20,"YB","AD","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq5",2013-07-20,2013-07-20,"YB","AD","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq6",2013-07-20,2013-07-20,"YB","AD","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq7",2013-07-20,2013-07-20,"YB","AD","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq8",2013-07-20,2013-07-20,"YB","AD","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq9",2013-07-20,2013-07-20,"YB","AD","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq1",2013-07-20,2013-07-20,"YB","AD","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq2",2013-07-20,2013-07-20,"YB","AD","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq3",2013-07-20,2013-07-20,"YB","AD","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq4",2013-07-20,2013-07-20,"YB","AD","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq5",2013-07-20,2013-07-20,"YB","AD","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq6",2013-07-20,2013-07-20,"YB","AD","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq7",2013-07-20,2013-07-20,"YB","AD","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq8",2013-07-20,2013-07-20,"YB","AD","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq9",2013-07-20,2013-07-20,"YB","AD","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq1",2013-07-20,2013-07-20,"YB","AD","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq2",2013-07-20,2013-07-20,"YB","AD","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq3",2013-07-20,2013-07-20,"YB","AD","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq4",2013-07-20,2013-07-20,"YB","AD","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq5",2013-07-20,2013-07-20,"YB","AD","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq6",2013-07-20,2013-07-20,"YB","AD","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq7",2013-07-20,2013-07-20,"YB","AD","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq8",2013-07-20,2013-07-20,"YB","AD","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq9",2013-07-20,2013-07-20,"YB","AD","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq1",2013-07-20,2013-07-20,"YB","AD","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq2",2013-07-20,2013-07-20,"YB","AD","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq3",2013-07-20,2013-07-20,"YB","AD","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq4",2013-07-20,2013-07-20,"YB","AD","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq5",2013-07-20,2013-07-20,"YB","AD","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq6",2013-07-20,2013-07-20,"YB","AD","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq7",2013-07-20,2013-07-20,"YB","AD","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq8",2013-07-20,2013-07-20,"YB","AD","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq9",2013-07-20,2013-07-20,"YB","AD","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq1",2013-07-20,2013-07-20,"YB","AD","1","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq2",2013-07-20,2013-07-20,"YB","AD","2","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq3",2013-07-20,2013-07-20,"YB","AD","3","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq4",2013-07-20,2013-07-20,"YB","AD","4","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq5",2013-07-20,2013-07-20,"YB","AD","5","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq6",2013-07-20,2013-07-20,"YB","AD","6","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq7",2013-07-20,2013-07-20,"YB","AD","7","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq8",2013-07-20,2013-07-20,"YB","AD","8","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq9",2013-07-20,2013-07-20,"YB","AD","9","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq1",2013-07-20,2013-07-20,"YB","AD","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq2",2013-07-20,2013-07-20,"YB","AD","2","Wor","Other_worm spp.","Type 25",3,0.0875,34.2857142857143,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq3",2013-07-20,2013-07-20,"YB","AD","3","Wor","Other_worm spp.","Type 25",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq4",2013-07-20,2013-07-20,"YB","AD","4","Wor","Other_worm spp.","Type 25",3,0.0875,34.2857142857143,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq5",2013-07-20,2013-07-20,"YB","AD","5","Wor","Other_worm spp.","Type 25",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq6",2013-07-20,2013-07-20,"YB","AD","6","Wor","Other_worm spp.","Type 25",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq7",2013-07-20,2013-07-20,"YB","AD","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq8",2013-07-20,2013-07-20,"YB","AD","8","Wor","Other_worm spp.","Type 25",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq9",2013-07-20,2013-07-20,"YB","AD","9","Wor","Other_worm spp.","Type 25",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq1",2013-07-20,2013-07-20,"YB","AD","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq2",2013-07-20,2013-07-20,"YB","AD","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq3",2013-07-20,2013-07-20,"YB","AD","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq4",2013-07-20,2013-07-20,"YB","AD","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq5",2013-07-20,2013-07-20,"YB","AD","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq6",2013-07-20,2013-07-20,"YB","AD","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq7",2013-07-20,2013-07-20,"YB","AD","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq8",2013-07-20,2013-07-20,"YB","AD","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq9",2013-07-20,2013-07-20,"YB","AD","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq1",2013-07-20,2013-07-20,"YB","AD","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq2",2013-07-20,2013-07-20,"YB","AD","2","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq3",2013-07-20,2013-07-20,"YB","AD","3","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq4",2013-07-20,2013-07-20,"YB","AD","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq5",2013-07-20,2013-07-20,"YB","AD","5","Pp","Pollicipes_polymerus","Type 11",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq6",2013-07-20,2013-07-20,"YB","AD","6","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq7",2013-07-20,2013-07-20,"YB","AD","7","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq8",2013-07-20,2013-07-20,"YB","AD","8","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq9",2013-07-20,2013-07-20,"YB","AD","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq1",2013-07-20,2013-07-20,"YB","AD","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq2",2013-07-20,2013-07-20,"YB","AD","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq3",2013-07-20,2013-07-20,"YB","AD","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq4",2013-07-20,2013-07-20,"YB","AD","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq5",2013-07-20,2013-07-20,"YB","AD","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq6",2013-07-20,2013-07-20,"YB","AD","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq7",2013-07-20,2013-07-20,"YB","AD","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq8",2013-07-20,2013-07-20,"YB","AD","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq9",2013-07-20,2013-07-20,"YB","AD","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq1",2013-07-20,2013-07-20,"YB","AD","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq2",2013-07-20,2013-07-20,"YB","AD","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq3",2013-07-20,2013-07-20,"YB","AD","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq4",2013-07-20,2013-07-20,"YB","AD","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq5",2013-07-20,2013-07-20,"YB","AD","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq6",2013-07-20,2013-07-20,"YB","AD","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq7",2013-07-20,2013-07-20,"YB","AD","7","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq8",2013-07-20,2013-07-20,"YB","AD","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq9",2013-07-20,2013-07-20,"YB","AD","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq1",2013-07-20,2013-07-20,"YB","AD","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq2",2013-07-20,2013-07-20,"YB","AD","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq3",2013-07-20,2013-07-20,"YB","AD","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq4",2013-07-20,2013-07-20,"YB","AD","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq5",2013-07-20,2013-07-20,"YB","AD","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq6",2013-07-20,2013-07-20,"YB","AD","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq7",2013-07-20,2013-07-20,"YB","AD","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq8",2013-07-20,2013-07-20,"YB","AD","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-ADq9",2013-07-20,2013-07-20,"YB","AD","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq1",2013-07-20,2013-07-20,"YB","AE","1","Alg","Algae","Type 19",7,0.0875,80,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq2",2013-07-20,2013-07-20,"YB","AE","2","Alg","Algae","Type 19",5,0.0875,57.1428571428571,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq3",2013-07-20,2013-07-20,"YB","AE","3","Alg","Algae","Type 19",5,0.0875,57.1428571428571,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq4",2013-07-20,2013-07-20,"YB","AE","4","Alg","Algae","Type 19",9,0.0875,102.857142857143,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq5",2013-07-20,2013-07-20,"YB","AE","5","Alg","Algae","Type 19",5,0.0875,57.1428571428571,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq6",2013-07-20,2013-07-20,"YB","AE","6","Alg","Algae","Type 19",6,0.0875,68.5714285714286,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq7",2013-07-20,2013-07-20,"YB","AE","7","Alg","Algae","Type 19",5,0.0875,57.1428571428571,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq8",2013-07-20,2013-07-20,"YB","AE","8","Alg","Algae","Type 19",4,0.0875,45.7142857142857,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq9",2013-07-20,2013-07-20,"YB","AE","9","Alg","Algae","Type 19",7,0.0875,80,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq1",2013-07-20,2013-07-20,"YB","AE","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq2",2013-07-20,2013-07-20,"YB","AE","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq3",2013-07-20,2013-07-20,"YB","AE","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq4",2013-07-20,2013-07-20,"YB","AE","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq5",2013-07-20,2013-07-20,"YB","AE","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq6",2013-07-20,2013-07-20,"YB","AE","6","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq7",2013-07-20,2013-07-20,"YB","AE","7","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq8",2013-07-20,2013-07-20,"YB","AE","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq9",2013-07-20,2013-07-20,"YB","AE","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq1",2013-07-20,2013-07-20,"YB","AE","1","Bg","Balanus_glandula","Type 1",22,0.0875,251.428571428571,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq2",2013-07-20,2013-07-20,"YB","AE","2","Bg","Balanus_glandula","Type 1",13,0.0875,148.571428571429,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq3",2013-07-20,2013-07-20,"YB","AE","3","Bg","Balanus_glandula","Type 1",73,0.0875,834.285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq4",2013-07-20,2013-07-20,"YB","AE","4","Bg","Balanus_glandula","Type 1",12,0.0875,137.142857142857,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq5",2013-07-20,2013-07-20,"YB","AE","5","Bg","Balanus_glandula","Type 1",33,0.0875,377.142857142857,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq6",2013-07-20,2013-07-20,"YB","AE","6","Bg","Balanus_glandula","Type 1",35,0.0875,400,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq7",2013-07-20,2013-07-20,"YB","AE","7","Bg","Balanus_glandula","Type 1",15,0.0875,171.428571428571,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq8",2013-07-20,2013-07-20,"YB","AE","8","Bg","Balanus_glandula","Type 1",13,0.0875,148.571428571429,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq9",2013-07-20,2013-07-20,"YB","AE","9","Bg","Balanus_glandula","Type 1",33,0.0875,377.142857142857,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq1",2013-07-20,2013-07-20,"YB","AE","1","BgD","Balanus_glandula_(dead)","Type 2",23,0.0875,262.857142857143,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq2",2013-07-20,2013-07-20,"YB","AE","2","BgD","Balanus_glandula_(dead)","Type 2",9,0.0875,102.857142857143,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq3",2013-07-20,2013-07-20,"YB","AE","3","BgD","Balanus_glandula_(dead)","Type 2",53,0.0875,605.714285714286,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq4",2013-07-20,2013-07-20,"YB","AE","4","BgD","Balanus_glandula_(dead)","Type 2",10,0.0875,114.285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq5",2013-07-20,2013-07-20,"YB","AE","5","BgD","Balanus_glandula_(dead)","Type 2",24,0.0875,274.285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq6",2013-07-20,2013-07-20,"YB","AE","6","BgD","Balanus_glandula_(dead)","Type 2",14,0.0875,160,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq7",2013-07-20,2013-07-20,"YB","AE","7","BgD","Balanus_glandula_(dead)","Type 2",10,0.0875,114.285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq8",2013-07-20,2013-07-20,"YB","AE","8","BgD","Balanus_glandula_(dead)","Type 2",27,0.0875,308.571428571429,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq9",2013-07-20,2013-07-20,"YB","AE","9","BgD","Balanus_glandula_(dead)","Type 2",43,0.0875,491.428571428571,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq1",2013-07-20,2013-07-20,"YB","AE","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq2",2013-07-20,2013-07-20,"YB","AE","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq3",2013-07-20,2013-07-20,"YB","AE","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq4",2013-07-20,2013-07-20,"YB","AE","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq5",2013-07-20,2013-07-20,"YB","AE","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq6",2013-07-20,2013-07-20,"YB","AE","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq7",2013-07-20,2013-07-20,"YB","AE","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq8",2013-07-20,2013-07-20,"YB","AE","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq9",2013-07-20,2013-07-20,"YB","AE","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq1",2013-07-20,2013-07-20,"YB","AE","1","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq2",2013-07-20,2013-07-20,"YB","AE","2","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq3",2013-07-20,2013-07-20,"YB","AE","3","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq4",2013-07-20,2013-07-20,"YB","AE","4","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq5",2013-07-20,2013-07-20,"YB","AE","5","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq6",2013-07-20,2013-07-20,"YB","AE","6","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq7",2013-07-20,2013-07-20,"YB","AE","7","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq8",2013-07-20,2013-07-20,"YB","AE","8","Cth","Chthamalus_dalli","Type 3",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq9",2013-07-20,2013-07-20,"YB","AE","9","Cth","Chthamalus_dalli","Type 3",18,0.0875,205.714285714286,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq1",2013-07-20,2013-07-20,"YB","AE","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq2",2013-07-20,2013-07-20,"YB","AE","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq3",2013-07-20,2013-07-20,"YB","AE","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq4",2013-07-20,2013-07-20,"YB","AE","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq5",2013-07-20,2013-07-20,"YB","AE","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq6",2013-07-20,2013-07-20,"YB","AE","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq7",2013-07-20,2013-07-20,"YB","AE","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq8",2013-07-20,2013-07-20,"YB","AE","8","CthD","Chthamalus_dalli (dead)","Type 4",4,0.0875,45.7142857142857,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq9",2013-07-20,2013-07-20,"YB","AE","9","CthD","Chthamalus_dalli (dead)","Type 4",5,0.0875,57.1428571428571,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq1",2013-07-20,2013-07-20,"YB","AE","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq2",2013-07-20,2013-07-20,"YB","AE","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq3",2013-07-20,2013-07-20,"YB","AE","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq4",2013-07-20,2013-07-20,"YB","AE","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq5",2013-07-20,2013-07-20,"YB","AE","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq6",2013-07-20,2013-07-20,"YB","AE","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq7",2013-07-20,2013-07-20,"YB","AE","7","Emp","Emplectonema worm","Type 23",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq8",2013-07-20,2013-07-20,"YB","AE","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq9",2013-07-20,2013-07-20,"YB","AE","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq1",2013-07-20,2013-07-20,"YB","AE","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq2",2013-07-20,2013-07-20,"YB","AE","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq3",2013-07-20,2013-07-20,"YB","AE","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq4",2013-07-20,2013-07-20,"YB","AE","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq5",2013-07-20,2013-07-20,"YB","AE","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq6",2013-07-20,2013-07-20,"YB","AE","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq7",2013-07-20,2013-07-20,"YB","AE","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq8",2013-07-20,2013-07-20,"YB","AE","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq9",2013-07-20,2013-07-20,"YB","AE","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq1",2013-07-20,2013-07-20,"YB","AE","1","Lim","Limpets","Type 12",23,0.0875,262.857142857143,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq2",2013-07-20,2013-07-20,"YB","AE","2","Lim","Limpets","Type 12",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq3",2013-07-20,2013-07-20,"YB","AE","3","Lim","Limpets","Type 12",17,0.0875,194.285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq4",2013-07-20,2013-07-20,"YB","AE","4","Lim","Limpets","Type 12",16,0.0875,182.857142857143,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq5",2013-07-20,2013-07-20,"YB","AE","5","Lim","Limpets","Type 12",21,0.0875,240,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq6",2013-07-20,2013-07-20,"YB","AE","6","Lim","Limpets","Type 12",23,0.0875,262.857142857143,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq7",2013-07-20,2013-07-20,"YB","AE","7","Lim","Limpets","Type 12",13,0.0875,148.571428571429,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq8",2013-07-20,2013-07-20,"YB","AE","8","Lim","Limpets","Type 12",11,0.0875,125.714285714286,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq9",2013-07-20,2013-07-20,"YB","AE","9","Lim","Limpets","Type 12",31,0.0875,354.285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq1",2013-07-20,2013-07-20,"YB","AE","1","Ls","Littorina_sitkana","Type 13",8,0.0875,91.4285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq2",2013-07-20,2013-07-20,"YB","AE","2","Ls","Littorina_sitkana","Type 13",3,0.0875,34.2857142857143,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq3",2013-07-20,2013-07-20,"YB","AE","3","Ls","Littorina_sitkana","Type 13",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq4",2013-07-20,2013-07-20,"YB","AE","4","Ls","Littorina_sitkana","Type 13",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq5",2013-07-20,2013-07-20,"YB","AE","5","Ls","Littorina_sitkana","Type 13",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq6",2013-07-20,2013-07-20,"YB","AE","6","Ls","Littorina_sitkana","Type 13",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq7",2013-07-20,2013-07-20,"YB","AE","7","Ls","Littorina_sitkana","Type 13",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq8",2013-07-20,2013-07-20,"YB","AE","8","Ls","Littorina_sitkana","Type 13",3,0.0875,34.2857142857143,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq9",2013-07-20,2013-07-20,"YB","AE","9","Ls","Littorina_sitkana","Type 13",4,0.0875,45.7142857142857,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq1",2013-07-20,2013-07-20,"YB","AE","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq2",2013-07-20,2013-07-20,"YB","AE","2","Mc","Mytilus_californianus","Type 17",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq3",2013-07-20,2013-07-20,"YB","AE","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq4",2013-07-20,2013-07-20,"YB","AE","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq5",2013-07-20,2013-07-20,"YB","AE","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq6",2013-07-20,2013-07-20,"YB","AE","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq7",2013-07-20,2013-07-20,"YB","AE","7","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq8",2013-07-20,2013-07-20,"YB","AE","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq9",2013-07-20,2013-07-20,"YB","AE","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq1",2013-07-20,2013-07-20,"YB","AE","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq2",2013-07-20,2013-07-20,"YB","AE","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq3",2013-07-20,2013-07-20,"YB","AE","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq4",2013-07-20,2013-07-20,"YB","AE","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq5",2013-07-20,2013-07-20,"YB","AE","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq6",2013-07-20,2013-07-20,"YB","AE","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq7",2013-07-20,2013-07-20,"YB","AE","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq8",2013-07-20,2013-07-20,"YB","AE","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq9",2013-07-20,2013-07-20,"YB","AE","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq1",2013-07-20,2013-07-20,"YB","AE","1","Myt","Mytilus_spp","Type 7",11,0.0875,125.714285714286,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq2",2013-07-20,2013-07-20,"YB","AE","2","Myt","Mytilus_spp","Type 7",10,0.0875,114.285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq3",2013-07-20,2013-07-20,"YB","AE","3","Myt","Mytilus_spp","Type 7",17,0.0875,194.285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq4",2013-07-20,2013-07-20,"YB","AE","4","Myt","Mytilus_spp","Type 7",14,0.0875,160,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq5",2013-07-20,2013-07-20,"YB","AE","5","Myt","Mytilus_spp","Type 7",15,0.0875,171.428571428571,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq6",2013-07-20,2013-07-20,"YB","AE","6","Myt","Mytilus_spp","Type 7",3,0.0875,34.2857142857143,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq7",2013-07-20,2013-07-20,"YB","AE","7","Myt","Mytilus_spp","Type 7",6,0.0875,68.5714285714286,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq8",2013-07-20,2013-07-20,"YB","AE","8","Myt","Mytilus_spp","Type 7",5,0.0875,57.1428571428571,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq9",2013-07-20,2013-07-20,"YB","AE","9","Myt","Mytilus_spp","Type 7",13,0.0875,148.571428571429,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq1",2013-07-20,2013-07-20,"YB","AE","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq2",2013-07-20,2013-07-20,"YB","AE","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq3",2013-07-20,2013-07-20,"YB","AE","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq4",2013-07-20,2013-07-20,"YB","AE","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq5",2013-07-20,2013-07-20,"YB","AE","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq6",2013-07-20,2013-07-20,"YB","AE","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq7",2013-07-20,2013-07-20,"YB","AE","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq8",2013-07-20,2013-07-20,"YB","AE","8","MytD","Mytilus_spp_(dead)","Type 8",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq9",2013-07-20,2013-07-20,"YB","AE","9","MytD","Mytilus_spp_(dead)","Type 8",4,0.0875,45.7142857142857,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq1",2013-07-20,2013-07-20,"YB","AE","1","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq2",2013-07-20,2013-07-20,"YB","AE","2","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq3",2013-07-20,2013-07-20,"YB","AE","3","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq4",2013-07-20,2013-07-20,"YB","AE","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq5",2013-07-20,2013-07-20,"YB","AE","5","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq6",2013-07-20,2013-07-20,"YB","AE","6","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq7",2013-07-20,2013-07-20,"YB","AE","7","Mt","Mytilus_trossulus","Type 15",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq8",2013-07-20,2013-07-20,"YB","AE","8","Mt","Mytilus_trossulus","Type 15",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq9",2013-07-20,2013-07-20,"YB","AE","9","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq1",2013-07-20,2013-07-20,"YB","AE","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq2",2013-07-20,2013-07-20,"YB","AE","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq3",2013-07-20,2013-07-20,"YB","AE","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq4",2013-07-20,2013-07-20,"YB","AE","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq5",2013-07-20,2013-07-20,"YB","AE","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq6",2013-07-20,2013-07-20,"YB","AE","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq7",2013-07-20,2013-07-20,"YB","AE","7","MtD","Mytilus_trossulus_(dead)","Type 16",4,0.0875,45.7142857142857,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq8",2013-07-20,2013-07-20,"YB","AE","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq9",2013-07-20,2013-07-20,"YB","AE","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq1",2013-07-20,2013-07-20,"YB","AE","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq2",2013-07-20,2013-07-20,"YB","AE","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq3",2013-07-20,2013-07-20,"YB","AE","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq4",2013-07-20,2013-07-20,"YB","AE","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq5",2013-07-20,2013-07-20,"YB","AE","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq6",2013-07-20,2013-07-20,"YB","AE","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq7",2013-07-20,2013-07-20,"YB","AE","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq8",2013-07-20,2013-07-20,"YB","AE","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq9",2013-07-20,2013-07-20,"YB","AE","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq1",2013-07-20,2013-07-20,"YB","AE","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq2",2013-07-20,2013-07-20,"YB","AE","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq3",2013-07-20,2013-07-20,"YB","AE","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq4",2013-07-20,2013-07-20,"YB","AE","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq5",2013-07-20,2013-07-20,"YB","AE","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq6",2013-07-20,2013-07-20,"YB","AE","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq7",2013-07-20,2013-07-20,"YB","AE","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq8",2013-07-20,2013-07-20,"YB","AE","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq9",2013-07-20,2013-07-20,"YB","AE","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq1",2013-07-20,2013-07-20,"YB","AE","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq2",2013-07-20,2013-07-20,"YB","AE","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq3",2013-07-20,2013-07-20,"YB","AE","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq4",2013-07-20,2013-07-20,"YB","AE","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq5",2013-07-20,2013-07-20,"YB","AE","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq6",2013-07-20,2013-07-20,"YB","AE","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq7",2013-07-20,2013-07-20,"YB","AE","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq8",2013-07-20,2013-07-20,"YB","AE","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq9",2013-07-20,2013-07-20,"YB","AE","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq1",2013-07-20,2013-07-20,"YB","AE","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq2",2013-07-20,2013-07-20,"YB","AE","2","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq3",2013-07-20,2013-07-20,"YB","AE","3","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq4",2013-07-20,2013-07-20,"YB","AE","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq5",2013-07-20,2013-07-20,"YB","AE","5","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq6",2013-07-20,2013-07-20,"YB","AE","6","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq7",2013-07-20,2013-07-20,"YB","AE","7","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq8",2013-07-20,2013-07-20,"YB","AE","8","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq9",2013-07-20,2013-07-20,"YB","AE","9","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq1",2013-07-20,2013-07-20,"YB","AE","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq2",2013-07-20,2013-07-20,"YB","AE","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq3",2013-07-20,2013-07-20,"YB","AE","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq4",2013-07-20,2013-07-20,"YB","AE","4","Wor","Other_worm spp.","Type 25",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq5",2013-07-20,2013-07-20,"YB","AE","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq6",2013-07-20,2013-07-20,"YB","AE","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq7",2013-07-20,2013-07-20,"YB","AE","7","Wor","Other_worm spp.","Type 25",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq8",2013-07-20,2013-07-20,"YB","AE","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq9",2013-07-20,2013-07-20,"YB","AE","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq1",2013-07-20,2013-07-20,"YB","AE","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq2",2013-07-20,2013-07-20,"YB","AE","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq3",2013-07-20,2013-07-20,"YB","AE","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq4",2013-07-20,2013-07-20,"YB","AE","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq5",2013-07-20,2013-07-20,"YB","AE","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq6",2013-07-20,2013-07-20,"YB","AE","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq7",2013-07-20,2013-07-20,"YB","AE","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq8",2013-07-20,2013-07-20,"YB","AE","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq9",2013-07-20,2013-07-20,"YB","AE","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq1",2013-07-20,2013-07-20,"YB","AE","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq2",2013-07-20,2013-07-20,"YB","AE","2","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq3",2013-07-20,2013-07-20,"YB","AE","3","Pp","Pollicipes_polymerus","Type 11",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq4",2013-07-20,2013-07-20,"YB","AE","4","Pp","Pollicipes_polymerus","Type 11",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq5",2013-07-20,2013-07-20,"YB","AE","5","Pp","Pollicipes_polymerus","Type 11",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq6",2013-07-20,2013-07-20,"YB","AE","6","Pp","Pollicipes_polymerus","Type 11",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq7",2013-07-20,2013-07-20,"YB","AE","7","Pp","Pollicipes_polymerus","Type 11",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq8",2013-07-20,2013-07-20,"YB","AE","8","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq9",2013-07-20,2013-07-20,"YB","AE","9","Pp","Pollicipes_polymerus","Type 11",6,0.0875,68.5714285714286,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq1",2013-07-20,2013-07-20,"YB","AE","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq2",2013-07-20,2013-07-20,"YB","AE","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq3",2013-07-20,2013-07-20,"YB","AE","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq4",2013-07-20,2013-07-20,"YB","AE","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq5",2013-07-20,2013-07-20,"YB","AE","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq6",2013-07-20,2013-07-20,"YB","AE","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq7",2013-07-20,2013-07-20,"YB","AE","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq8",2013-07-20,2013-07-20,"YB","AE","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq9",2013-07-20,2013-07-20,"YB","AE","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq1",2013-07-20,2013-07-20,"YB","AE","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq2",2013-07-20,2013-07-20,"YB","AE","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq3",2013-07-20,2013-07-20,"YB","AE","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq4",2013-07-20,2013-07-20,"YB","AE","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq5",2013-07-20,2013-07-20,"YB","AE","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq6",2013-07-20,2013-07-20,"YB","AE","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq7",2013-07-20,2013-07-20,"YB","AE","7","Sc","Semibalanus_cariosus","Type 5",5,0.0875,57.1428571428571,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq8",2013-07-20,2013-07-20,"YB","AE","8","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq9",2013-07-20,2013-07-20,"YB","AE","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq1",2013-07-20,2013-07-20,"YB","AE","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq2",2013-07-20,2013-07-20,"YB","AE","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq3",2013-07-20,2013-07-20,"YB","AE","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq4",2013-07-20,2013-07-20,"YB","AE","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq5",2013-07-20,2013-07-20,"YB","AE","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq6",2013-07-20,2013-07-20,"YB","AE","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq7",2013-07-20,2013-07-20,"YB","AE","7","ScD","Semibalanus_cariosus_(dead)","Type 6",3,0.0875,34.2857142857143,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq8",2013-07-20,2013-07-20,"YB","AE","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AEq9",2013-07-20,2013-07-20,"YB","AE","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq1",2013-07-20,2013-07-20,"YB","AF","1","Alg","Algae","Type 19",6,0.0875,68.5714285714286,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq2",2013-07-20,2013-07-20,"YB","AF","2","Alg","Algae","Type 19",6,0.0875,68.5714285714286,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq3",2013-07-20,2013-07-20,"YB","AF","3","Alg","Algae","Type 19",4,0.0875,45.7142857142857,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq4",2013-07-20,2013-07-20,"YB","AF","4","Alg","Algae","Type 19",20,0.0875,228.571428571429,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq5",2013-07-20,2013-07-20,"YB","AF","5","Alg","Algae","Type 19",8,0.0875,91.4285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq6",2013-07-20,2013-07-20,"YB","AF","6","Alg","Algae","Type 19",10,0.0875,114.285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq7",2013-07-20,2013-07-20,"YB","AF","7","Alg","Algae","Type 19",9,0.0875,102.857142857143,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq8",2013-07-20,2013-07-20,"YB","AF","8","Alg","Algae","Type 19",10,0.0875,114.285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq9",2013-07-20,2013-07-20,"YB","AF","9","Alg","Algae","Type 19",13,0.0875,148.571428571429,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq1",2013-07-20,2013-07-20,"YB","AF","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq2",2013-07-20,2013-07-20,"YB","AF","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq3",2013-07-20,2013-07-20,"YB","AF","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq4",2013-07-20,2013-07-20,"YB","AF","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq5",2013-07-20,2013-07-20,"YB","AF","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq6",2013-07-20,2013-07-20,"YB","AF","6","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq7",2013-07-20,2013-07-20,"YB","AF","7","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq8",2013-07-20,2013-07-20,"YB","AF","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq9",2013-07-20,2013-07-20,"YB","AF","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq1",2013-07-20,2013-07-20,"YB","AF","1","Bg","Balanus_glandula","Type 1",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq2",2013-07-20,2013-07-20,"YB","AF","2","Bg","Balanus_glandula","Type 1",28,0.0875,320,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq3",2013-07-20,2013-07-20,"YB","AF","3","Bg","Balanus_glandula","Type 1",21,0.0875,240,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq4",2013-07-20,2013-07-20,"YB","AF","4","Bg","Balanus_glandula","Type 1",4,0.0875,45.7142857142857,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq5",2013-07-20,2013-07-20,"YB","AF","5","Bg","Balanus_glandula","Type 1",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq6",2013-07-20,2013-07-20,"YB","AF","6","Bg","Balanus_glandula","Type 1",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq7",2013-07-20,2013-07-20,"YB","AF","7","Bg","Balanus_glandula","Type 1",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq8",2013-07-20,2013-07-20,"YB","AF","8","Bg","Balanus_glandula","Type 1",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq9",2013-07-20,2013-07-20,"YB","AF","9","Bg","Balanus_glandula","Type 1",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq1",2013-07-20,2013-07-20,"YB","AF","1","BgD","Balanus_glandula_(dead)","Type 2",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq2",2013-07-20,2013-07-20,"YB","AF","2","BgD","Balanus_glandula_(dead)","Type 2",44,0.0875,502.857142857143,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq3",2013-07-20,2013-07-20,"YB","AF","3","BgD","Balanus_glandula_(dead)","Type 2",53,0.0875,605.714285714286,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq4",2013-07-20,2013-07-20,"YB","AF","4","BgD","Balanus_glandula_(dead)","Type 2",4,0.0875,45.7142857142857,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq5",2013-07-20,2013-07-20,"YB","AF","5","BgD","Balanus_glandula_(dead)","Type 2",11,0.0875,125.714285714286,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq6",2013-07-20,2013-07-20,"YB","AF","6","BgD","Balanus_glandula_(dead)","Type 2",6,0.0875,68.5714285714286,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq7",2013-07-20,2013-07-20,"YB","AF","7","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq8",2013-07-20,2013-07-20,"YB","AF","8","BgD","Balanus_glandula_(dead)","Type 2",7,0.0875,80,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq9",2013-07-20,2013-07-20,"YB","AF","9","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq1",2013-07-20,2013-07-20,"YB","AF","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq2",2013-07-20,2013-07-20,"YB","AF","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq3",2013-07-20,2013-07-20,"YB","AF","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq4",2013-07-20,2013-07-20,"YB","AF","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq5",2013-07-20,2013-07-20,"YB","AF","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq6",2013-07-20,2013-07-20,"YB","AF","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq7",2013-07-20,2013-07-20,"YB","AF","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq8",2013-07-20,2013-07-20,"YB","AF","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq9",2013-07-20,2013-07-20,"YB","AF","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq1",2013-07-20,2013-07-20,"YB","AF","1","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq2",2013-07-20,2013-07-20,"YB","AF","2","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq3",2013-07-20,2013-07-20,"YB","AF","3","Cth","Chthamalus_dalli","Type 3",4,0.0875,45.7142857142857,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq4",2013-07-20,2013-07-20,"YB","AF","4","Cth","Chthamalus_dalli","Type 3",7,0.0875,80,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq5",2013-07-20,2013-07-20,"YB","AF","5","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq6",2013-07-20,2013-07-20,"YB","AF","6","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq7",2013-07-20,2013-07-20,"YB","AF","7","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq8",2013-07-20,2013-07-20,"YB","AF","8","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq9",2013-07-20,2013-07-20,"YB","AF","9","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq1",2013-07-20,2013-07-20,"YB","AF","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq2",2013-07-20,2013-07-20,"YB","AF","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq3",2013-07-20,2013-07-20,"YB","AF","3","CthD","Chthamalus_dalli (dead)","Type 4",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq4",2013-07-20,2013-07-20,"YB","AF","4","CthD","Chthamalus_dalli (dead)","Type 4",3,0.0875,34.2857142857143,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq5",2013-07-20,2013-07-20,"YB","AF","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq6",2013-07-20,2013-07-20,"YB","AF","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq7",2013-07-20,2013-07-20,"YB","AF","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq8",2013-07-20,2013-07-20,"YB","AF","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq9",2013-07-20,2013-07-20,"YB","AF","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq1",2013-07-20,2013-07-20,"YB","AF","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq2",2013-07-20,2013-07-20,"YB","AF","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq3",2013-07-20,2013-07-20,"YB","AF","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq4",2013-07-20,2013-07-20,"YB","AF","4","Emp","Emplectonema worm","Type 23",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq5",2013-07-20,2013-07-20,"YB","AF","5","Emp","Emplectonema worm","Type 23",5,0.0875,57.1428571428571,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq6",2013-07-20,2013-07-20,"YB","AF","6","Emp","Emplectonema worm","Type 23",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq7",2013-07-20,2013-07-20,"YB","AF","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq8",2013-07-20,2013-07-20,"YB","AF","8","Emp","Emplectonema worm","Type 23",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq9",2013-07-20,2013-07-20,"YB","AF","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq1",2013-07-20,2013-07-20,"YB","AF","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq2",2013-07-20,2013-07-20,"YB","AF","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq3",2013-07-20,2013-07-20,"YB","AF","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq4",2013-07-20,2013-07-20,"YB","AF","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq5",2013-07-20,2013-07-20,"YB","AF","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq6",2013-07-20,2013-07-20,"YB","AF","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq7",2013-07-20,2013-07-20,"YB","AF","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq8",2013-07-20,2013-07-20,"YB","AF","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq9",2013-07-20,2013-07-20,"YB","AF","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq1",2013-07-20,2013-07-20,"YB","AF","1","Lim","Limpets","Type 12",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq2",2013-07-20,2013-07-20,"YB","AF","2","Lim","Limpets","Type 12",5,0.0875,57.1428571428571,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq3",2013-07-20,2013-07-20,"YB","AF","3","Lim","Limpets","Type 12",6,0.0875,68.5714285714286,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq4",2013-07-20,2013-07-20,"YB","AF","4","Lim","Limpets","Type 12",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq5",2013-07-20,2013-07-20,"YB","AF","5","Lim","Limpets","Type 12",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq6",2013-07-20,2013-07-20,"YB","AF","6","Lim","Limpets","Type 12",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq7",2013-07-20,2013-07-20,"YB","AF","7","Lim","Limpets","Type 12",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq8",2013-07-20,2013-07-20,"YB","AF","8","Lim","Limpets","Type 12",4,0.0875,45.7142857142857,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq9",2013-07-20,2013-07-20,"YB","AF","9","Lim","Limpets","Type 12",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq1",2013-07-20,2013-07-20,"YB","AF","1","Ls","Littorina_sitkana","Type 13",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq2",2013-07-20,2013-07-20,"YB","AF","2","Ls","Littorina_sitkana","Type 13",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq3",2013-07-20,2013-07-20,"YB","AF","3","Ls","Littorina_sitkana","Type 13",4,0.0875,45.7142857142857,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq4",2013-07-20,2013-07-20,"YB","AF","4","Ls","Littorina_sitkana","Type 13",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq5",2013-07-20,2013-07-20,"YB","AF","5","Ls","Littorina_sitkana","Type 13",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq6",2013-07-20,2013-07-20,"YB","AF","6","Ls","Littorina_sitkana","Type 13",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq7",2013-07-20,2013-07-20,"YB","AF","7","Ls","Littorina_sitkana","Type 13",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq8",2013-07-20,2013-07-20,"YB","AF","8","Ls","Littorina_sitkana","Type 13",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq9",2013-07-20,2013-07-20,"YB","AF","9","Ls","Littorina_sitkana","Type 13",3,0.0875,34.2857142857143,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq1",2013-07-20,2013-07-20,"YB","AF","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq2",2013-07-20,2013-07-20,"YB","AF","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq3",2013-07-20,2013-07-20,"YB","AF","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq4",2013-07-20,2013-07-20,"YB","AF","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq5",2013-07-20,2013-07-20,"YB","AF","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq6",2013-07-20,2013-07-20,"YB","AF","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq7",2013-07-20,2013-07-20,"YB","AF","7","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq8",2013-07-20,2013-07-20,"YB","AF","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq9",2013-07-20,2013-07-20,"YB","AF","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq1",2013-07-20,2013-07-20,"YB","AF","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq2",2013-07-20,2013-07-20,"YB","AF","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq3",2013-07-20,2013-07-20,"YB","AF","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq4",2013-07-20,2013-07-20,"YB","AF","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq5",2013-07-20,2013-07-20,"YB","AF","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq6",2013-07-20,2013-07-20,"YB","AF","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq7",2013-07-20,2013-07-20,"YB","AF","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq8",2013-07-20,2013-07-20,"YB","AF","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq9",2013-07-20,2013-07-20,"YB","AF","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq1",2013-07-20,2013-07-20,"YB","AF","1","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq2",2013-07-20,2013-07-20,"YB","AF","2","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq3",2013-07-20,2013-07-20,"YB","AF","3","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq4",2013-07-20,2013-07-20,"YB","AF","4","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq5",2013-07-20,2013-07-20,"YB","AF","5","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq6",2013-07-20,2013-07-20,"YB","AF","6","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq7",2013-07-20,2013-07-20,"YB","AF","7","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq8",2013-07-20,2013-07-20,"YB","AF","8","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq9",2013-07-20,2013-07-20,"YB","AF","9","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq1",2013-07-20,2013-07-20,"YB","AF","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq2",2013-07-20,2013-07-20,"YB","AF","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq3",2013-07-20,2013-07-20,"YB","AF","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq4",2013-07-20,2013-07-20,"YB","AF","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq5",2013-07-20,2013-07-20,"YB","AF","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq6",2013-07-20,2013-07-20,"YB","AF","6","MytD","Mytilus_spp_(dead)","Type 8",3,0.0875,34.2857142857143,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq7",2013-07-20,2013-07-20,"YB","AF","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq8",2013-07-20,2013-07-20,"YB","AF","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq9",2013-07-20,2013-07-20,"YB","AF","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq1",2013-07-20,2013-07-20,"YB","AF","1","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq2",2013-07-20,2013-07-20,"YB","AF","2","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq3",2013-07-20,2013-07-20,"YB","AF","3","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq4",2013-07-20,2013-07-20,"YB","AF","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq5",2013-07-20,2013-07-20,"YB","AF","5","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq6",2013-07-20,2013-07-20,"YB","AF","6","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq7",2013-07-20,2013-07-20,"YB","AF","7","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq8",2013-07-20,2013-07-20,"YB","AF","8","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq9",2013-07-20,2013-07-20,"YB","AF","9","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq1",2013-07-20,2013-07-20,"YB","AF","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq2",2013-07-20,2013-07-20,"YB","AF","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq3",2013-07-20,2013-07-20,"YB","AF","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq4",2013-07-20,2013-07-20,"YB","AF","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq5",2013-07-20,2013-07-20,"YB","AF","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq6",2013-07-20,2013-07-20,"YB","AF","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq7",2013-07-20,2013-07-20,"YB","AF","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq8",2013-07-20,2013-07-20,"YB","AF","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq9",2013-07-20,2013-07-20,"YB","AF","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq1",2013-07-20,2013-07-20,"YB","AF","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq2",2013-07-20,2013-07-20,"YB","AF","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq3",2013-07-20,2013-07-20,"YB","AF","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq4",2013-07-20,2013-07-20,"YB","AF","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq5",2013-07-20,2013-07-20,"YB","AF","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq6",2013-07-20,2013-07-20,"YB","AF","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq7",2013-07-20,2013-07-20,"YB","AF","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq8",2013-07-20,2013-07-20,"YB","AF","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq9",2013-07-20,2013-07-20,"YB","AF","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq1",2013-07-20,2013-07-20,"YB","AF","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq2",2013-07-20,2013-07-20,"YB","AF","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq3",2013-07-20,2013-07-20,"YB","AF","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq4",2013-07-20,2013-07-20,"YB","AF","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq5",2013-07-20,2013-07-20,"YB","AF","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq6",2013-07-20,2013-07-20,"YB","AF","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq7",2013-07-20,2013-07-20,"YB","AF","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq8",2013-07-20,2013-07-20,"YB","AF","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq9",2013-07-20,2013-07-20,"YB","AF","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq1",2013-07-20,2013-07-20,"YB","AF","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq2",2013-07-20,2013-07-20,"YB","AF","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq3",2013-07-20,2013-07-20,"YB","AF","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq4",2013-07-20,2013-07-20,"YB","AF","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq5",2013-07-20,2013-07-20,"YB","AF","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq6",2013-07-20,2013-07-20,"YB","AF","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq7",2013-07-20,2013-07-20,"YB","AF","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq8",2013-07-20,2013-07-20,"YB","AF","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq9",2013-07-20,2013-07-20,"YB","AF","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq1",2013-07-20,2013-07-20,"YB","AF","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq2",2013-07-20,2013-07-20,"YB","AF","2","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq3",2013-07-20,2013-07-20,"YB","AF","3","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq4",2013-07-20,2013-07-20,"YB","AF","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq5",2013-07-20,2013-07-20,"YB","AF","5","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq6",2013-07-20,2013-07-20,"YB","AF","6","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq7",2013-07-20,2013-07-20,"YB","AF","7","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq8",2013-07-20,2013-07-20,"YB","AF","8","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq9",2013-07-20,2013-07-20,"YB","AF","9","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq1",2013-07-20,2013-07-20,"YB","AF","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq2",2013-07-20,2013-07-20,"YB","AF","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq3",2013-07-20,2013-07-20,"YB","AF","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq4",2013-07-20,2013-07-20,"YB","AF","4","Wor","Other_worm spp.","Type 25",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq5",2013-07-20,2013-07-20,"YB","AF","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq6",2013-07-20,2013-07-20,"YB","AF","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq7",2013-07-20,2013-07-20,"YB","AF","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq8",2013-07-20,2013-07-20,"YB","AF","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq9",2013-07-20,2013-07-20,"YB","AF","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq1",2013-07-20,2013-07-20,"YB","AF","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq2",2013-07-20,2013-07-20,"YB","AF","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq3",2013-07-20,2013-07-20,"YB","AF","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq4",2013-07-20,2013-07-20,"YB","AF","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq5",2013-07-20,2013-07-20,"YB","AF","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq6",2013-07-20,2013-07-20,"YB","AF","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq7",2013-07-20,2013-07-20,"YB","AF","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq8",2013-07-20,2013-07-20,"YB","AF","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq9",2013-07-20,2013-07-20,"YB","AF","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq1",2013-07-20,2013-07-20,"YB","AF","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq2",2013-07-20,2013-07-20,"YB","AF","2","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq3",2013-07-20,2013-07-20,"YB","AF","3","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq4",2013-07-20,2013-07-20,"YB","AF","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq5",2013-07-20,2013-07-20,"YB","AF","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq6",2013-07-20,2013-07-20,"YB","AF","6","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq7",2013-07-20,2013-07-20,"YB","AF","7","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq8",2013-07-20,2013-07-20,"YB","AF","8","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq9",2013-07-20,2013-07-20,"YB","AF","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq1",2013-07-20,2013-07-20,"YB","AF","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq2",2013-07-20,2013-07-20,"YB","AF","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq3",2013-07-20,2013-07-20,"YB","AF","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq4",2013-07-20,2013-07-20,"YB","AF","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq5",2013-07-20,2013-07-20,"YB","AF","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq6",2013-07-20,2013-07-20,"YB","AF","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq7",2013-07-20,2013-07-20,"YB","AF","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq8",2013-07-20,2013-07-20,"YB","AF","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq9",2013-07-20,2013-07-20,"YB","AF","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq1",2013-07-20,2013-07-20,"YB","AF","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq2",2013-07-20,2013-07-20,"YB","AF","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq3",2013-07-20,2013-07-20,"YB","AF","3","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq4",2013-07-20,2013-07-20,"YB","AF","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq5",2013-07-20,2013-07-20,"YB","AF","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq6",2013-07-20,2013-07-20,"YB","AF","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq7",2013-07-20,2013-07-20,"YB","AF","7","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq8",2013-07-20,2013-07-20,"YB","AF","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq9",2013-07-20,2013-07-20,"YB","AF","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq1",2013-07-20,2013-07-20,"YB","AF","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq2",2013-07-20,2013-07-20,"YB","AF","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq3",2013-07-20,2013-07-20,"YB","AF","3","ScD","Semibalanus_cariosus_(dead)","Type 6",15,0.0875,171.428571428571,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq4",2013-07-20,2013-07-20,"YB","AF","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq5",2013-07-20,2013-07-20,"YB","AF","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq6",2013-07-20,2013-07-20,"YB","AF","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq7",2013-07-20,2013-07-20,"YB","AF","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq8",2013-07-20,2013-07-20,"YB","AF","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AFq9",2013-07-20,2013-07-20,"YB","AF","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq1",2013-07-20,2013-07-20,"YB","AG","1","Alg","Algae","Type 19",14,0.0875,160,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq2",2013-07-20,2013-07-20,"YB","AG","2","Alg","Algae","Type 19",10,0.0875,114.285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq3",2013-07-20,2013-07-20,"YB","AG","3","Alg","Algae","Type 19",12,0.0875,137.142857142857,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq4",2013-07-20,2013-07-20,"YB","AG","4","Alg","Algae","Type 19",12,0.0875,137.142857142857,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq5",2013-07-20,2013-07-20,"YB","AG","5","Alg","Algae","Type 19",10,0.0875,114.285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq6",2013-07-20,2013-07-20,"YB","AG","6","Alg","Algae","Type 19",7,0.0875,80,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq7",2013-07-20,2013-07-20,"YB","AG","7","Alg","Algae","Type 19",7,0.0875,80,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq8",2013-07-20,2013-07-20,"YB","AG","8","Alg","Algae","Type 19",6,0.0875,68.5714285714286,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq9",2013-07-20,2013-07-20,"YB","AG","9","Alg","Algae","Type 19",10,0.0875,114.285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq1",2013-07-20,2013-07-20,"YB","AG","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq2",2013-07-20,2013-07-20,"YB","AG","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq3",2013-07-20,2013-07-20,"YB","AG","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq4",2013-07-20,2013-07-20,"YB","AG","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq5",2013-07-20,2013-07-20,"YB","AG","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq6",2013-07-20,2013-07-20,"YB","AG","6","Ae","Anemones","Type 14",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq7",2013-07-20,2013-07-20,"YB","AG","7","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq8",2013-07-20,2013-07-20,"YB","AG","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq9",2013-07-20,2013-07-20,"YB","AG","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq1",2013-07-20,2013-07-20,"YB","AG","1","Bg","Balanus_glandula","Type 1",10,0.0875,114.285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq2",2013-07-20,2013-07-20,"YB","AG","2","Bg","Balanus_glandula","Type 1",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq3",2013-07-20,2013-07-20,"YB","AG","3","Bg","Balanus_glandula","Type 1",7,0.0875,80,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq4",2013-07-20,2013-07-20,"YB","AG","4","Bg","Balanus_glandula","Type 1",24,0.0875,274.285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq5",2013-07-20,2013-07-20,"YB","AG","5","Bg","Balanus_glandula","Type 1",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq6",2013-07-20,2013-07-20,"YB","AG","6","Bg","Balanus_glandula","Type 1",18,0.0875,205.714285714286,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq7",2013-07-20,2013-07-20,"YB","AG","7","Bg","Balanus_glandula","Type 1",9,0.0875,102.857142857143,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq8",2013-07-20,2013-07-20,"YB","AG","8","Bg","Balanus_glandula","Type 1",12,0.0875,137.142857142857,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq9",2013-07-20,2013-07-20,"YB","AG","9","Bg","Balanus_glandula","Type 1",9,0.0875,102.857142857143,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq1",2013-07-20,2013-07-20,"YB","AG","1","BgD","Balanus_glandula_(dead)","Type 2",13,0.0875,148.571428571429,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq2",2013-07-20,2013-07-20,"YB","AG","2","BgD","Balanus_glandula_(dead)","Type 2",3,0.0875,34.2857142857143,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq3",2013-07-20,2013-07-20,"YB","AG","3","BgD","Balanus_glandula_(dead)","Type 2",7,0.0875,80,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq4",2013-07-20,2013-07-20,"YB","AG","4","BgD","Balanus_glandula_(dead)","Type 2",62,0.0875,708.571428571429,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq5",2013-07-20,2013-07-20,"YB","AG","5","BgD","Balanus_glandula_(dead)","Type 2",9,0.0875,102.857142857143,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq6",2013-07-20,2013-07-20,"YB","AG","6","BgD","Balanus_glandula_(dead)","Type 2",22,0.0875,251.428571428571,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq7",2013-07-20,2013-07-20,"YB","AG","7","BgD","Balanus_glandula_(dead)","Type 2",6,0.0875,68.5714285714286,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq8",2013-07-20,2013-07-20,"YB","AG","8","BgD","Balanus_glandula_(dead)","Type 2",47,0.0875,537.142857142857,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq9",2013-07-20,2013-07-20,"YB","AG","9","BgD","Balanus_glandula_(dead)","Type 2",20,0.0875,228.571428571429,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq1",2013-07-20,2013-07-20,"YB","AG","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq2",2013-07-20,2013-07-20,"YB","AG","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq3",2013-07-20,2013-07-20,"YB","AG","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq4",2013-07-20,2013-07-20,"YB","AG","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq5",2013-07-20,2013-07-20,"YB","AG","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq6",2013-07-20,2013-07-20,"YB","AG","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq7",2013-07-20,2013-07-20,"YB","AG","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq8",2013-07-20,2013-07-20,"YB","AG","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq9",2013-07-20,2013-07-20,"YB","AG","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq1",2013-07-20,2013-07-20,"YB","AG","1","Cth","Chthamalus_dalli","Type 3",4,0.0875,45.7142857142857,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq2",2013-07-20,2013-07-20,"YB","AG","2","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq3",2013-07-20,2013-07-20,"YB","AG","3","Cth","Chthamalus_dalli","Type 3",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq4",2013-07-20,2013-07-20,"YB","AG","4","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq5",2013-07-20,2013-07-20,"YB","AG","5","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq6",2013-07-20,2013-07-20,"YB","AG","6","Cth","Chthamalus_dalli","Type 3",5,0.0875,57.1428571428571,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq7",2013-07-20,2013-07-20,"YB","AG","7","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq8",2013-07-20,2013-07-20,"YB","AG","8","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq9",2013-07-20,2013-07-20,"YB","AG","9","Cth","Chthamalus_dalli","Type 3",5,0.0875,57.1428571428571,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq1",2013-07-20,2013-07-20,"YB","AG","1","CthD","Chthamalus_dalli (dead)","Type 4",5,0.0875,57.1428571428571,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq2",2013-07-20,2013-07-20,"YB","AG","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq3",2013-07-20,2013-07-20,"YB","AG","3","CthD","Chthamalus_dalli (dead)","Type 4",4,0.0875,45.7142857142857,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq4",2013-07-20,2013-07-20,"YB","AG","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq5",2013-07-20,2013-07-20,"YB","AG","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq6",2013-07-20,2013-07-20,"YB","AG","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq7",2013-07-20,2013-07-20,"YB","AG","7","CthD","Chthamalus_dalli (dead)","Type 4",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq8",2013-07-20,2013-07-20,"YB","AG","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq9",2013-07-20,2013-07-20,"YB","AG","9","CthD","Chthamalus_dalli (dead)","Type 4",18,0.0875,205.714285714286,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq1",2013-07-20,2013-07-20,"YB","AG","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq2",2013-07-20,2013-07-20,"YB","AG","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq3",2013-07-20,2013-07-20,"YB","AG","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq4",2013-07-20,2013-07-20,"YB","AG","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq5",2013-07-20,2013-07-20,"YB","AG","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq6",2013-07-20,2013-07-20,"YB","AG","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq7",2013-07-20,2013-07-20,"YB","AG","7","Emp","Emplectonema worm","Type 23",4,0.0875,45.7142857142857,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq8",2013-07-20,2013-07-20,"YB","AG","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq9",2013-07-20,2013-07-20,"YB","AG","9","Emp","Emplectonema worm","Type 23",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq1",2013-07-20,2013-07-20,"YB","AG","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq2",2013-07-20,2013-07-20,"YB","AG","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq3",2013-07-20,2013-07-20,"YB","AG","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq4",2013-07-20,2013-07-20,"YB","AG","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq5",2013-07-20,2013-07-20,"YB","AG","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq6",2013-07-20,2013-07-20,"YB","AG","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq7",2013-07-20,2013-07-20,"YB","AG","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq8",2013-07-20,2013-07-20,"YB","AG","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq9",2013-07-20,2013-07-20,"YB","AG","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq1",2013-07-20,2013-07-20,"YB","AG","1","Lim","Limpets","Type 12",7,0.0875,80,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq2",2013-07-20,2013-07-20,"YB","AG","2","Lim","Limpets","Type 12",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq3",2013-07-20,2013-07-20,"YB","AG","3","Lim","Limpets","Type 12",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq4",2013-07-20,2013-07-20,"YB","AG","4","Lim","Limpets","Type 12",4,0.0875,45.7142857142857,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq5",2013-07-20,2013-07-20,"YB","AG","5","Lim","Limpets","Type 12",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq6",2013-07-20,2013-07-20,"YB","AG","6","Lim","Limpets","Type 12",5,0.0875,57.1428571428571,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq7",2013-07-20,2013-07-20,"YB","AG","7","Lim","Limpets","Type 12",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq8",2013-07-20,2013-07-20,"YB","AG","8","Lim","Limpets","Type 12",3,0.0875,34.2857142857143,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq9",2013-07-20,2013-07-20,"YB","AG","9","Lim","Limpets","Type 12",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq1",2013-07-20,2013-07-20,"YB","AG","1","Ls","Littorina_sitkana","Type 13",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq2",2013-07-20,2013-07-20,"YB","AG","2","Ls","Littorina_sitkana","Type 13",8,0.0875,91.4285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq3",2013-07-20,2013-07-20,"YB","AG","3","Ls","Littorina_sitkana","Type 13",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq4",2013-07-20,2013-07-20,"YB","AG","4","Ls","Littorina_sitkana","Type 13",4,0.0875,45.7142857142857,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq5",2013-07-20,2013-07-20,"YB","AG","5","Ls","Littorina_sitkana","Type 13",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq6",2013-07-20,2013-07-20,"YB","AG","6","Ls","Littorina_sitkana","Type 13",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq7",2013-07-20,2013-07-20,"YB","AG","7","Ls","Littorina_sitkana","Type 13",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq8",2013-07-20,2013-07-20,"YB","AG","8","Ls","Littorina_sitkana","Type 13",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq9",2013-07-20,2013-07-20,"YB","AG","9","Ls","Littorina_sitkana","Type 13",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq1",2013-07-20,2013-07-20,"YB","AG","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq2",2013-07-20,2013-07-20,"YB","AG","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq3",2013-07-20,2013-07-20,"YB","AG","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq4",2013-07-20,2013-07-20,"YB","AG","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq5",2013-07-20,2013-07-20,"YB","AG","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq6",2013-07-20,2013-07-20,"YB","AG","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq7",2013-07-20,2013-07-20,"YB","AG","7","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq8",2013-07-20,2013-07-20,"YB","AG","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq9",2013-07-20,2013-07-20,"YB","AG","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq1",2013-07-20,2013-07-20,"YB","AG","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq2",2013-07-20,2013-07-20,"YB","AG","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq3",2013-07-20,2013-07-20,"YB","AG","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq4",2013-07-20,2013-07-20,"YB","AG","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq5",2013-07-20,2013-07-20,"YB","AG","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq6",2013-07-20,2013-07-20,"YB","AG","6","McD","Mytilus_californianus_(dead)","Type 18",3,0.0875,34.2857142857143,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq7",2013-07-20,2013-07-20,"YB","AG","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq8",2013-07-20,2013-07-20,"YB","AG","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq9",2013-07-20,2013-07-20,"YB","AG","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq1",2013-07-20,2013-07-20,"YB","AG","1","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq2",2013-07-20,2013-07-20,"YB","AG","2","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq3",2013-07-20,2013-07-20,"YB","AG","3","Myt","Mytilus_spp","Type 7",6,0.0875,68.5714285714286,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq4",2013-07-20,2013-07-20,"YB","AG","4","Myt","Mytilus_spp","Type 7",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq5",2013-07-20,2013-07-20,"YB","AG","5","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq6",2013-07-20,2013-07-20,"YB","AG","6","Myt","Mytilus_spp","Type 7",8,0.0875,91.4285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq7",2013-07-20,2013-07-20,"YB","AG","7","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq8",2013-07-20,2013-07-20,"YB","AG","8","Myt","Mytilus_spp","Type 7",3,0.0875,34.2857142857143,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq9",2013-07-20,2013-07-20,"YB","AG","9","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq1",2013-07-20,2013-07-20,"YB","AG","1","MytD","Mytilus_spp_(dead)","Type 8",6,0.0875,68.5714285714286,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq2",2013-07-20,2013-07-20,"YB","AG","2","MytD","Mytilus_spp_(dead)","Type 8",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq3",2013-07-20,2013-07-20,"YB","AG","3","MytD","Mytilus_spp_(dead)","Type 8",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq4",2013-07-20,2013-07-20,"YB","AG","4","MytD","Mytilus_spp_(dead)","Type 8",6,0.0875,68.5714285714286,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq5",2013-07-20,2013-07-20,"YB","AG","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq6",2013-07-20,2013-07-20,"YB","AG","6","MytD","Mytilus_spp_(dead)","Type 8",3,0.0875,34.2857142857143,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq7",2013-07-20,2013-07-20,"YB","AG","7","MytD","Mytilus_spp_(dead)","Type 8",7,0.0875,80,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq8",2013-07-20,2013-07-20,"YB","AG","8","MytD","Mytilus_spp_(dead)","Type 8",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq9",2013-07-20,2013-07-20,"YB","AG","9","MytD","Mytilus_spp_(dead)","Type 8",4,0.0875,45.7142857142857,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq1",2013-07-20,2013-07-20,"YB","AG","1","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq2",2013-07-20,2013-07-20,"YB","AG","2","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq3",2013-07-20,2013-07-20,"YB","AG","3","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq4",2013-07-20,2013-07-20,"YB","AG","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq5",2013-07-20,2013-07-20,"YB","AG","5","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq6",2013-07-20,2013-07-20,"YB","AG","6","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq7",2013-07-20,2013-07-20,"YB","AG","7","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq8",2013-07-20,2013-07-20,"YB","AG","8","Mt","Mytilus_trossulus","Type 15",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq9",2013-07-20,2013-07-20,"YB","AG","9","Mt","Mytilus_trossulus","Type 15",4,0.0875,45.7142857142857,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq1",2013-07-20,2013-07-20,"YB","AG","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq2",2013-07-20,2013-07-20,"YB","AG","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq3",2013-07-20,2013-07-20,"YB","AG","3","MtD","Mytilus_trossulus_(dead)","Type 16",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq4",2013-07-20,2013-07-20,"YB","AG","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq5",2013-07-20,2013-07-20,"YB","AG","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq6",2013-07-20,2013-07-20,"YB","AG","6","MtD","Mytilus_trossulus_(dead)","Type 16",4,0.0875,45.7142857142857,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq7",2013-07-20,2013-07-20,"YB","AG","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq8",2013-07-20,2013-07-20,"YB","AG","8","MtD","Mytilus_trossulus_(dead)","Type 16",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq9",2013-07-20,2013-07-20,"YB","AG","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq1",2013-07-20,2013-07-20,"YB","AG","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq2",2013-07-20,2013-07-20,"YB","AG","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq3",2013-07-20,2013-07-20,"YB","AG","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq4",2013-07-20,2013-07-20,"YB","AG","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq5",2013-07-20,2013-07-20,"YB","AG","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq6",2013-07-20,2013-07-20,"YB","AG","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq7",2013-07-20,2013-07-20,"YB","AG","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq8",2013-07-20,2013-07-20,"YB","AG","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq9",2013-07-20,2013-07-20,"YB","AG","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq1",2013-07-20,2013-07-20,"YB","AG","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq2",2013-07-20,2013-07-20,"YB","AG","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq3",2013-07-20,2013-07-20,"YB","AG","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq4",2013-07-20,2013-07-20,"YB","AG","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq5",2013-07-20,2013-07-20,"YB","AG","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq6",2013-07-20,2013-07-20,"YB","AG","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq7",2013-07-20,2013-07-20,"YB","AG","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq8",2013-07-20,2013-07-20,"YB","AG","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq9",2013-07-20,2013-07-20,"YB","AG","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq1",2013-07-20,2013-07-20,"YB","AG","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq2",2013-07-20,2013-07-20,"YB","AG","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq3",2013-07-20,2013-07-20,"YB","AG","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq4",2013-07-20,2013-07-20,"YB","AG","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq5",2013-07-20,2013-07-20,"YB","AG","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq6",2013-07-20,2013-07-20,"YB","AG","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq7",2013-07-20,2013-07-20,"YB","AG","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq8",2013-07-20,2013-07-20,"YB","AG","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq9",2013-07-20,2013-07-20,"YB","AG","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq1",2013-07-20,2013-07-20,"YB","AG","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq2",2013-07-20,2013-07-20,"YB","AG","2","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq3",2013-07-20,2013-07-20,"YB","AG","3","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq4",2013-07-20,2013-07-20,"YB","AG","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq5",2013-07-20,2013-07-20,"YB","AG","5","No","Nucella_ostrina","Type 9",3,0.0875,34.2857142857143,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq6",2013-07-20,2013-07-20,"YB","AG","6","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq7",2013-07-20,2013-07-20,"YB","AG","7","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq8",2013-07-20,2013-07-20,"YB","AG","8","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq9",2013-07-20,2013-07-20,"YB","AG","9","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq1",2013-07-20,2013-07-20,"YB","AG","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq2",2013-07-20,2013-07-20,"YB","AG","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq3",2013-07-20,2013-07-20,"YB","AG","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq4",2013-07-20,2013-07-20,"YB","AG","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq5",2013-07-20,2013-07-20,"YB","AG","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq6",2013-07-20,2013-07-20,"YB","AG","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq7",2013-07-20,2013-07-20,"YB","AG","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq8",2013-07-20,2013-07-20,"YB","AG","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq9",2013-07-20,2013-07-20,"YB","AG","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq1",2013-07-20,2013-07-20,"YB","AG","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq2",2013-07-20,2013-07-20,"YB","AG","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq3",2013-07-20,2013-07-20,"YB","AG","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq4",2013-07-20,2013-07-20,"YB","AG","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq5",2013-07-20,2013-07-20,"YB","AG","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq6",2013-07-20,2013-07-20,"YB","AG","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq7",2013-07-20,2013-07-20,"YB","AG","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq8",2013-07-20,2013-07-20,"YB","AG","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq9",2013-07-20,2013-07-20,"YB","AG","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq1",2013-07-20,2013-07-20,"YB","AG","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq2",2013-07-20,2013-07-20,"YB","AG","2","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq3",2013-07-20,2013-07-20,"YB","AG","3","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq4",2013-07-20,2013-07-20,"YB","AG","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq5",2013-07-20,2013-07-20,"YB","AG","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq6",2013-07-20,2013-07-20,"YB","AG","6","Pp","Pollicipes_polymerus","Type 11",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq7",2013-07-20,2013-07-20,"YB","AG","7","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq8",2013-07-20,2013-07-20,"YB","AG","8","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq9",2013-07-20,2013-07-20,"YB","AG","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq1",2013-07-20,2013-07-20,"YB","AG","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq2",2013-07-20,2013-07-20,"YB","AG","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq3",2013-07-20,2013-07-20,"YB","AG","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq4",2013-07-20,2013-07-20,"YB","AG","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq5",2013-07-20,2013-07-20,"YB","AG","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq6",2013-07-20,2013-07-20,"YB","AG","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq7",2013-07-20,2013-07-20,"YB","AG","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq8",2013-07-20,2013-07-20,"YB","AG","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq9",2013-07-20,2013-07-20,"YB","AG","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq1",2013-07-20,2013-07-20,"YB","AG","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq2",2013-07-20,2013-07-20,"YB","AG","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq3",2013-07-20,2013-07-20,"YB","AG","3","Sc","Semibalanus_cariosus","Type 5",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq4",2013-07-20,2013-07-20,"YB","AG","4","Sc","Semibalanus_cariosus","Type 5",7,0.0875,80,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq5",2013-07-20,2013-07-20,"YB","AG","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq6",2013-07-20,2013-07-20,"YB","AG","6","Sc","Semibalanus_cariosus","Type 5",3,0.0875,34.2857142857143,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq7",2013-07-20,2013-07-20,"YB","AG","7","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq8",2013-07-20,2013-07-20,"YB","AG","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq9",2013-07-20,2013-07-20,"YB","AG","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq1",2013-07-20,2013-07-20,"YB","AG","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq2",2013-07-20,2013-07-20,"YB","AG","2","ScD","Semibalanus_cariosus_(dead)","Type 6",4,0.0875,45.7142857142857,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq3",2013-07-20,2013-07-20,"YB","AG","3","ScD","Semibalanus_cariosus_(dead)","Type 6",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq4",2013-07-20,2013-07-20,"YB","AG","4","ScD","Semibalanus_cariosus_(dead)","Type 6",10,0.0875,114.285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq5",2013-07-20,2013-07-20,"YB","AG","5","ScD","Semibalanus_cariosus_(dead)","Type 6",5,0.0875,57.1428571428571,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq6",2013-07-20,2013-07-20,"YB","AG","6","ScD","Semibalanus_cariosus_(dead)","Type 6",3,0.0875,34.2857142857143,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq7",2013-07-20,2013-07-20,"YB","AG","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq8",2013-07-20,2013-07-20,"YB","AG","8","ScD","Semibalanus_cariosus_(dead)","Type 6",7,0.0875,80,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-AGq9",2013-07-20,2013-07-20,"YB","AG","9","ScD","Semibalanus_cariosus_(dead)","Type 6",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Bq1",2013-07-20,2013-07-20,"YB","B","1","Alg","Algae","Type 19",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey); severe blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq2",2013-07-20,2013-07-20,"YB","B","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","20%","used uncropped picture for barnacles due to low density (preliminary survey); severe blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq3",2013-07-20,2013-07-20,"YB","B","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq4",2013-07-20,2013-07-20,"YB","B","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","10%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq5",2013-07-20,2013-07-20,"YB","B","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","40%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq6",2013-07-20,2013-07-20,"YB","B","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","10%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq7",2013-07-20,2013-07-20,"YB","B","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq8",2013-07-20,2013-07-20,"YB","B","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey); blur; >30% coverage by mytilus byssal threads"
+"2013-07-20_YB-Bq9",2013-07-20,2013-07-20,"YB","B","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%","used uncropped picture for barnacles due to low density (preliminary survey); blur"
+"2013-07-20_YB-Bq1",2013-07-20,2013-07-20,"YB","B","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey); severe blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq2",2013-07-20,2013-07-20,"YB","B","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","20%","used uncropped picture for barnacles due to low density (preliminary survey); severe blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq3",2013-07-20,2013-07-20,"YB","B","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq4",2013-07-20,2013-07-20,"YB","B","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","10%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq5",2013-07-20,2013-07-20,"YB","B","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","40%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq6",2013-07-20,2013-07-20,"YB","B","6","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","10%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq7",2013-07-20,2013-07-20,"YB","B","7","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq8",2013-07-20,2013-07-20,"YB","B","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey); blur; >30% coverage by mytilus byssal threads"
+"2013-07-20_YB-Bq9",2013-07-20,2013-07-20,"YB","B","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%","used uncropped picture for barnacles due to low density (preliminary survey); blur"
+"2013-07-20_YB-Bq1",2013-07-20,2013-07-20,"YB","B","1","Bg","Balanus_glandula","Type 1",4,0.0875,45.7142857142857,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey); severe blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq2",2013-07-20,2013-07-20,"YB","B","2","Bg","Balanus_glandula","Type 1",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","20%","used uncropped picture for barnacles due to low density (preliminary survey); severe blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq3",2013-07-20,2013-07-20,"YB","B","3","Bg","Balanus_glandula","Type 1",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","15%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq4",2013-07-20,2013-07-20,"YB","B","4","Bg","Balanus_glandula","Type 1",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","10%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq5",2013-07-20,2013-07-20,"YB","B","5","Bg","Balanus_glandula","Type 1",11,0.0875,125.714285714286,NA,"Julia Bingham","Finished","Full","Full","40%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq6",2013-07-20,2013-07-20,"YB","B","6","Bg","Balanus_glandula","Type 1",8,0.0875,91.4285714285714,NA,"Julia Bingham","Finished","Full","Full","10%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq7",2013-07-20,2013-07-20,"YB","B","7","Bg","Balanus_glandula","Type 1",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","12%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq8",2013-07-20,2013-07-20,"YB","B","8","Bg","Balanus_glandula","Type 1",23,0.0875,262.857142857143,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey); blur; >30% coverage by mytilus byssal threads"
+"2013-07-20_YB-Bq9",2013-07-20,2013-07-20,"YB","B","9","Bg","Balanus_glandula","Type 1",33,0.0875,377.142857142857,NA,"Julia Bingham","Finished","Full","Full","5%","used uncropped picture for barnacles due to low density (preliminary survey); blur"
+"2013-07-20_YB-Bq1",2013-07-20,2013-07-20,"YB","B","1","BgD","Balanus_glandula_(dead)","Type 2",8,0.0875,91.4285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey); severe blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq2",2013-07-20,2013-07-20,"YB","B","2","BgD","Balanus_glandula_(dead)","Type 2",4,0.0875,45.7142857142857,NA,"Julia Bingham","Finished","Full","Full","20%","used uncropped picture for barnacles due to low density (preliminary survey); severe blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq3",2013-07-20,2013-07-20,"YB","B","3","BgD","Balanus_glandula_(dead)","Type 2",6,0.0875,68.5714285714286,NA,"Julia Bingham","Finished","Full","Full","15%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq4",2013-07-20,2013-07-20,"YB","B","4","BgD","Balanus_glandula_(dead)","Type 2",3,0.0875,34.2857142857143,NA,"Julia Bingham","Finished","Full","Full","10%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq5",2013-07-20,2013-07-20,"YB","B","5","BgD","Balanus_glandula_(dead)","Type 2",15,0.0875,171.428571428571,NA,"Julia Bingham","Finished","Full","Full","40%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq6",2013-07-20,2013-07-20,"YB","B","6","BgD","Balanus_glandula_(dead)","Type 2",19,0.0875,217.142857142857,NA,"Julia Bingham","Finished","Full","Full","10%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq7",2013-07-20,2013-07-20,"YB","B","7","BgD","Balanus_glandula_(dead)","Type 2",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","12%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq8",2013-07-20,2013-07-20,"YB","B","8","BgD","Balanus_glandula_(dead)","Type 2",17,0.0875,194.285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey); blur; >30% coverage by mytilus byssal threads"
+"2013-07-20_YB-Bq9",2013-07-20,2013-07-20,"YB","B","9","BgD","Balanus_glandula_(dead)","Type 2",20,0.0875,228.571428571429,NA,"Julia Bingham","Finished","Full","Full","5%","used uncropped picture for barnacles due to low density (preliminary survey); blur"
+"2013-07-20_YB-Bq1",2013-07-20,2013-07-20,"YB","B","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey); severe blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq2",2013-07-20,2013-07-20,"YB","B","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","20%","used uncropped picture for barnacles due to low density (preliminary survey); severe blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq3",2013-07-20,2013-07-20,"YB","B","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq4",2013-07-20,2013-07-20,"YB","B","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","10%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq5",2013-07-20,2013-07-20,"YB","B","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","40%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq6",2013-07-20,2013-07-20,"YB","B","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","10%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq7",2013-07-20,2013-07-20,"YB","B","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq8",2013-07-20,2013-07-20,"YB","B","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey); blur; >30% coverage by mytilus byssal threads"
+"2013-07-20_YB-Bq9",2013-07-20,2013-07-20,"YB","B","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%","used uncropped picture for barnacles due to low density (preliminary survey); blur"
+"2013-07-20_YB-Bq1",2013-07-20,2013-07-20,"YB","B","1","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey); severe blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq2",2013-07-20,2013-07-20,"YB","B","2","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","20%","used uncropped picture for barnacles due to low density (preliminary survey); severe blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq3",2013-07-20,2013-07-20,"YB","B","3","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq4",2013-07-20,2013-07-20,"YB","B","4","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","10%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq5",2013-07-20,2013-07-20,"YB","B","5","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","40%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq6",2013-07-20,2013-07-20,"YB","B","6","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","10%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq7",2013-07-20,2013-07-20,"YB","B","7","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq8",2013-07-20,2013-07-20,"YB","B","8","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey); blur; >30% coverage by mytilus byssal threads"
+"2013-07-20_YB-Bq9",2013-07-20,2013-07-20,"YB","B","9","Cth","Chthamalus_dalli","Type 3",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","5%","used uncropped picture for barnacles due to low density (preliminary survey); blur"
+"2013-07-20_YB-Bq1",2013-07-20,2013-07-20,"YB","B","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey); severe blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq2",2013-07-20,2013-07-20,"YB","B","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","20%","used uncropped picture for barnacles due to low density (preliminary survey); severe blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq3",2013-07-20,2013-07-20,"YB","B","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq4",2013-07-20,2013-07-20,"YB","B","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","10%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq5",2013-07-20,2013-07-20,"YB","B","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","40%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq6",2013-07-20,2013-07-20,"YB","B","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","10%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq7",2013-07-20,2013-07-20,"YB","B","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq8",2013-07-20,2013-07-20,"YB","B","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey); blur; >30% coverage by mytilus byssal threads"
+"2013-07-20_YB-Bq9",2013-07-20,2013-07-20,"YB","B","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%","used uncropped picture for barnacles due to low density (preliminary survey); blur"
+"2013-07-20_YB-Bq1",2013-07-20,2013-07-20,"YB","B","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey); severe blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq2",2013-07-20,2013-07-20,"YB","B","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","20%","used uncropped picture for barnacles due to low density (preliminary survey); severe blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq3",2013-07-20,2013-07-20,"YB","B","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq4",2013-07-20,2013-07-20,"YB","B","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","10%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq5",2013-07-20,2013-07-20,"YB","B","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","40%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq6",2013-07-20,2013-07-20,"YB","B","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","10%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq7",2013-07-20,2013-07-20,"YB","B","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq8",2013-07-20,2013-07-20,"YB","B","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey); blur; >30% coverage by mytilus byssal threads"
+"2013-07-20_YB-Bq9",2013-07-20,2013-07-20,"YB","B","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%","used uncropped picture for barnacles due to low density (preliminary survey); blur"
+"2013-07-20_YB-Bq1",2013-07-20,2013-07-20,"YB","B","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey); severe blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq2",2013-07-20,2013-07-20,"YB","B","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","20%","used uncropped picture for barnacles due to low density (preliminary survey); severe blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq3",2013-07-20,2013-07-20,"YB","B","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq4",2013-07-20,2013-07-20,"YB","B","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","10%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq5",2013-07-20,2013-07-20,"YB","B","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","40%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq6",2013-07-20,2013-07-20,"YB","B","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","10%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq7",2013-07-20,2013-07-20,"YB","B","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq8",2013-07-20,2013-07-20,"YB","B","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey); blur; >30% coverage by mytilus byssal threads"
+"2013-07-20_YB-Bq9",2013-07-20,2013-07-20,"YB","B","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%","used uncropped picture for barnacles due to low density (preliminary survey); blur"
+"2013-07-20_YB-Bq1",2013-07-20,2013-07-20,"YB","B","1","Lim","Limpets","Type 12",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey); severe blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq2",2013-07-20,2013-07-20,"YB","B","2","Lim","Limpets","Type 12",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Full","20%","used uncropped picture for barnacles due to low density (preliminary survey); severe blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq3",2013-07-20,2013-07-20,"YB","B","3","Lim","Limpets","Type 12",3,0.0875,34.2857142857143,NA,"Julia Bingham","Finished","Full","Full","15%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq4",2013-07-20,2013-07-20,"YB","B","4","Lim","Limpets","Type 12",4,0.0875,45.7142857142857,NA,"Julia Bingham","Finished","Full","Full","10%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq5",2013-07-20,2013-07-20,"YB","B","5","Lim","Limpets","Type 12",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Full","40%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq6",2013-07-20,2013-07-20,"YB","B","6","Lim","Limpets","Type 12",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","10%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq7",2013-07-20,2013-07-20,"YB","B","7","Lim","Limpets","Type 12",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Full","12%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq8",2013-07-20,2013-07-20,"YB","B","8","Lim","Limpets","Type 12",18,0.0875,205.714285714286,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey); blur; >30% coverage by mytilus byssal threads"
+"2013-07-20_YB-Bq9",2013-07-20,2013-07-20,"YB","B","9","Lim","Limpets","Type 12",105,0.0875,1200,NA,"Julia Bingham","Finished","Full","Full","5%","used uncropped picture for barnacles due to low density (preliminary survey); blur"
+"2013-07-20_YB-Bq1",2013-07-20,2013-07-20,"YB","B","1","Ls","Littorina_sitkana","Type 13",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey); severe blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq2",2013-07-20,2013-07-20,"YB","B","2","Ls","Littorina_sitkana","Type 13",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","20%","used uncropped picture for barnacles due to low density (preliminary survey); severe blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq3",2013-07-20,2013-07-20,"YB","B","3","Ls","Littorina_sitkana","Type 13",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Full","15%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq4",2013-07-20,2013-07-20,"YB","B","4","Ls","Littorina_sitkana","Type 13",3,0.0875,34.2857142857143,NA,"Julia Bingham","Finished","Full","Full","10%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq5",2013-07-20,2013-07-20,"YB","B","5","Ls","Littorina_sitkana","Type 13",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","40%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq6",2013-07-20,2013-07-20,"YB","B","6","Ls","Littorina_sitkana","Type 13",3,0.0875,34.2857142857143,NA,"Julia Bingham","Finished","Full","Full","10%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq7",2013-07-20,2013-07-20,"YB","B","7","Ls","Littorina_sitkana","Type 13",8,0.0875,91.4285714285714,NA,"Julia Bingham","Finished","Full","Full","12%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq8",2013-07-20,2013-07-20,"YB","B","8","Ls","Littorina_sitkana","Type 13",27,0.0875,308.571428571429,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey); blur; >30% coverage by mytilus byssal threads"
+"2013-07-20_YB-Bq9",2013-07-20,2013-07-20,"YB","B","9","Ls","Littorina_sitkana","Type 13",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%","used uncropped picture for barnacles due to low density (preliminary survey); blur"
+"2013-07-20_YB-Bq1",2013-07-20,2013-07-20,"YB","B","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey); severe blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq2",2013-07-20,2013-07-20,"YB","B","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","20%","used uncropped picture for barnacles due to low density (preliminary survey); severe blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq3",2013-07-20,2013-07-20,"YB","B","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq4",2013-07-20,2013-07-20,"YB","B","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","10%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq5",2013-07-20,2013-07-20,"YB","B","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","40%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq6",2013-07-20,2013-07-20,"YB","B","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","10%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq7",2013-07-20,2013-07-20,"YB","B","7","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq8",2013-07-20,2013-07-20,"YB","B","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey); blur; >30% coverage by mytilus byssal threads"
+"2013-07-20_YB-Bq9",2013-07-20,2013-07-20,"YB","B","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%","used uncropped picture for barnacles due to low density (preliminary survey); blur"
+"2013-07-20_YB-Bq1",2013-07-20,2013-07-20,"YB","B","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey); severe blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq2",2013-07-20,2013-07-20,"YB","B","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","20%","used uncropped picture for barnacles due to low density (preliminary survey); severe blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq3",2013-07-20,2013-07-20,"YB","B","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq4",2013-07-20,2013-07-20,"YB","B","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","10%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq5",2013-07-20,2013-07-20,"YB","B","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","40%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq6",2013-07-20,2013-07-20,"YB","B","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","10%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq7",2013-07-20,2013-07-20,"YB","B","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq8",2013-07-20,2013-07-20,"YB","B","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey); blur; >30% coverage by mytilus byssal threads"
+"2013-07-20_YB-Bq9",2013-07-20,2013-07-20,"YB","B","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%","used uncropped picture for barnacles due to low density (preliminary survey); blur"
+"2013-07-20_YB-Bq1",2013-07-20,2013-07-20,"YB","B","1","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey); severe blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq2",2013-07-20,2013-07-20,"YB","B","2","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","20%","used uncropped picture for barnacles due to low density (preliminary survey); severe blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq3",2013-07-20,2013-07-20,"YB","B","3","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq4",2013-07-20,2013-07-20,"YB","B","4","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","10%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq5",2013-07-20,2013-07-20,"YB","B","5","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","40%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq6",2013-07-20,2013-07-20,"YB","B","6","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","10%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq7",2013-07-20,2013-07-20,"YB","B","7","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq8",2013-07-20,2013-07-20,"YB","B","8","Myt","Mytilus_spp","Type 7",13,0.0875,148.571428571429,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey); blur; >30% coverage by mytilus byssal threads"
+"2013-07-20_YB-Bq9",2013-07-20,2013-07-20,"YB","B","9","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%","used uncropped picture for barnacles due to low density (preliminary survey); blur"
+"2013-07-20_YB-Bq1",2013-07-20,2013-07-20,"YB","B","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey); severe blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq2",2013-07-20,2013-07-20,"YB","B","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","20%","used uncropped picture for barnacles due to low density (preliminary survey); severe blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq3",2013-07-20,2013-07-20,"YB","B","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq4",2013-07-20,2013-07-20,"YB","B","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","10%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq5",2013-07-20,2013-07-20,"YB","B","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","40%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq6",2013-07-20,2013-07-20,"YB","B","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","10%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq7",2013-07-20,2013-07-20,"YB","B","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq8",2013-07-20,2013-07-20,"YB","B","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey); blur; >30% coverage by mytilus byssal threads"
+"2013-07-20_YB-Bq9",2013-07-20,2013-07-20,"YB","B","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%","used uncropped picture for barnacles due to low density (preliminary survey); blur"
+"2013-07-20_YB-Bq1",2013-07-20,2013-07-20,"YB","B","1","Mt","Mytilus_trossulus","Type 15",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey); severe blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq2",2013-07-20,2013-07-20,"YB","B","2","Mt","Mytilus_trossulus","Type 15",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","20%","used uncropped picture for barnacles due to low density (preliminary survey); severe blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq3",2013-07-20,2013-07-20,"YB","B","3","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq4",2013-07-20,2013-07-20,"YB","B","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","10%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq5",2013-07-20,2013-07-20,"YB","B","5","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","40%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq6",2013-07-20,2013-07-20,"YB","B","6","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","10%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq7",2013-07-20,2013-07-20,"YB","B","7","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq8",2013-07-20,2013-07-20,"YB","B","8","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey); blur; >30% coverage by mytilus byssal threads"
+"2013-07-20_YB-Bq9",2013-07-20,2013-07-20,"YB","B","9","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%","used uncropped picture for barnacles due to low density (preliminary survey); blur"
+"2013-07-20_YB-Bq1",2013-07-20,2013-07-20,"YB","B","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey); severe blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq2",2013-07-20,2013-07-20,"YB","B","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","20%","used uncropped picture for barnacles due to low density (preliminary survey); severe blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq3",2013-07-20,2013-07-20,"YB","B","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq4",2013-07-20,2013-07-20,"YB","B","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","10%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq5",2013-07-20,2013-07-20,"YB","B","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","40%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq6",2013-07-20,2013-07-20,"YB","B","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","10%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq7",2013-07-20,2013-07-20,"YB","B","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq8",2013-07-20,2013-07-20,"YB","B","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey); blur; >30% coverage by mytilus byssal threads"
+"2013-07-20_YB-Bq9",2013-07-20,2013-07-20,"YB","B","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%","used uncropped picture for barnacles due to low density (preliminary survey); blur"
+"2013-07-20_YB-Bq1",2013-07-20,2013-07-20,"YB","B","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey); severe blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq2",2013-07-20,2013-07-20,"YB","B","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","20%","used uncropped picture for barnacles due to low density (preliminary survey); severe blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq3",2013-07-20,2013-07-20,"YB","B","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq4",2013-07-20,2013-07-20,"YB","B","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","10%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq5",2013-07-20,2013-07-20,"YB","B","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","40%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq6",2013-07-20,2013-07-20,"YB","B","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","10%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq7",2013-07-20,2013-07-20,"YB","B","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq8",2013-07-20,2013-07-20,"YB","B","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey); blur; >30% coverage by mytilus byssal threads"
+"2013-07-20_YB-Bq9",2013-07-20,2013-07-20,"YB","B","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%","used uncropped picture for barnacles due to low density (preliminary survey); blur"
+"2013-07-20_YB-Bq1",2013-07-20,2013-07-20,"YB","B","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey); severe blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq2",2013-07-20,2013-07-20,"YB","B","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","20%","used uncropped picture for barnacles due to low density (preliminary survey); severe blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq3",2013-07-20,2013-07-20,"YB","B","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq4",2013-07-20,2013-07-20,"YB","B","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","10%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq5",2013-07-20,2013-07-20,"YB","B","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","40%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq6",2013-07-20,2013-07-20,"YB","B","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","10%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq7",2013-07-20,2013-07-20,"YB","B","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq8",2013-07-20,2013-07-20,"YB","B","8","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey); blur; >30% coverage by mytilus byssal threads"
+"2013-07-20_YB-Bq9",2013-07-20,2013-07-20,"YB","B","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%","used uncropped picture for barnacles due to low density (preliminary survey); blur"
+"2013-07-20_YB-Bq1",2013-07-20,2013-07-20,"YB","B","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey); severe blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq2",2013-07-20,2013-07-20,"YB","B","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","20%","used uncropped picture for barnacles due to low density (preliminary survey); severe blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq3",2013-07-20,2013-07-20,"YB","B","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq4",2013-07-20,2013-07-20,"YB","B","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","10%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq5",2013-07-20,2013-07-20,"YB","B","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","40%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq6",2013-07-20,2013-07-20,"YB","B","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","10%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq7",2013-07-20,2013-07-20,"YB","B","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq8",2013-07-20,2013-07-20,"YB","B","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey); blur; >30% coverage by mytilus byssal threads"
+"2013-07-20_YB-Bq9",2013-07-20,2013-07-20,"YB","B","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%","used uncropped picture for barnacles due to low density (preliminary survey); blur"
+"2013-07-20_YB-Bq1",2013-07-20,2013-07-20,"YB","B","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey); severe blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq2",2013-07-20,2013-07-20,"YB","B","2","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","20%","used uncropped picture for barnacles due to low density (preliminary survey); severe blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq3",2013-07-20,2013-07-20,"YB","B","3","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq4",2013-07-20,2013-07-20,"YB","B","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","10%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq5",2013-07-20,2013-07-20,"YB","B","5","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","40%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq6",2013-07-20,2013-07-20,"YB","B","6","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","10%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq7",2013-07-20,2013-07-20,"YB","B","7","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Full","12%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq8",2013-07-20,2013-07-20,"YB","B","8","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey); blur; >30% coverage by mytilus byssal threads"
+"2013-07-20_YB-Bq9",2013-07-20,2013-07-20,"YB","B","9","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%","used uncropped picture for barnacles due to low density (preliminary survey); blur"
+"2013-07-20_YB-Bq1",2013-07-20,2013-07-20,"YB","B","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey); severe blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq2",2013-07-20,2013-07-20,"YB","B","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","20%","used uncropped picture for barnacles due to low density (preliminary survey); severe blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq3",2013-07-20,2013-07-20,"YB","B","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq4",2013-07-20,2013-07-20,"YB","B","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","10%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq5",2013-07-20,2013-07-20,"YB","B","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","40%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq6",2013-07-20,2013-07-20,"YB","B","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","10%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq7",2013-07-20,2013-07-20,"YB","B","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq8",2013-07-20,2013-07-20,"YB","B","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey); blur; >30% coverage by mytilus byssal threads"
+"2013-07-20_YB-Bq9",2013-07-20,2013-07-20,"YB","B","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%","used uncropped picture for barnacles due to low density (preliminary survey); blur"
+"2013-07-20_YB-Bq1",2013-07-20,2013-07-20,"YB","B","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey); severe blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq2",2013-07-20,2013-07-20,"YB","B","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","20%","used uncropped picture for barnacles due to low density (preliminary survey); severe blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq3",2013-07-20,2013-07-20,"YB","B","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq4",2013-07-20,2013-07-20,"YB","B","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","10%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq5",2013-07-20,2013-07-20,"YB","B","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","40%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq6",2013-07-20,2013-07-20,"YB","B","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","10%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq7",2013-07-20,2013-07-20,"YB","B","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq8",2013-07-20,2013-07-20,"YB","B","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey); blur; >30% coverage by mytilus byssal threads"
+"2013-07-20_YB-Bq9",2013-07-20,2013-07-20,"YB","B","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%","used uncropped picture for barnacles due to low density (preliminary survey); blur"
+"2013-07-20_YB-Bq1",2013-07-20,2013-07-20,"YB","B","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey); severe blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq2",2013-07-20,2013-07-20,"YB","B","2","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","20%","used uncropped picture for barnacles due to low density (preliminary survey); severe blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq3",2013-07-20,2013-07-20,"YB","B","3","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq4",2013-07-20,2013-07-20,"YB","B","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","10%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq5",2013-07-20,2013-07-20,"YB","B","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","40%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq6",2013-07-20,2013-07-20,"YB","B","6","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","10%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq7",2013-07-20,2013-07-20,"YB","B","7","Pp","Pollicipes_polymerus","Type 11",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","12%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq8",2013-07-20,2013-07-20,"YB","B","8","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey); blur; >30% coverage by mytilus byssal threads"
+"2013-07-20_YB-Bq9",2013-07-20,2013-07-20,"YB","B","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%","used uncropped picture for barnacles due to low density (preliminary survey); blur"
+"2013-07-20_YB-Bq1",2013-07-20,2013-07-20,"YB","B","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey); severe blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq2",2013-07-20,2013-07-20,"YB","B","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","20%","used uncropped picture for barnacles due to low density (preliminary survey); severe blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq3",2013-07-20,2013-07-20,"YB","B","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq4",2013-07-20,2013-07-20,"YB","B","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","10%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq5",2013-07-20,2013-07-20,"YB","B","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","40%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq6",2013-07-20,2013-07-20,"YB","B","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","10%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq7",2013-07-20,2013-07-20,"YB","B","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq8",2013-07-20,2013-07-20,"YB","B","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey); blur; >30% coverage by mytilus byssal threads"
+"2013-07-20_YB-Bq9",2013-07-20,2013-07-20,"YB","B","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%","used uncropped picture for barnacles due to low density (preliminary survey); blur"
+"2013-07-20_YB-Bq1",2013-07-20,2013-07-20,"YB","B","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey); severe blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq2",2013-07-20,2013-07-20,"YB","B","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","20%","used uncropped picture for barnacles due to low density (preliminary survey); severe blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq3",2013-07-20,2013-07-20,"YB","B","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq4",2013-07-20,2013-07-20,"YB","B","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","10%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq5",2013-07-20,2013-07-20,"YB","B","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","40%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq6",2013-07-20,2013-07-20,"YB","B","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","10%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq7",2013-07-20,2013-07-20,"YB","B","7","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq8",2013-07-20,2013-07-20,"YB","B","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey); blur; >30% coverage by mytilus byssal threads"
+"2013-07-20_YB-Bq9",2013-07-20,2013-07-20,"YB","B","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%","used uncropped picture for barnacles due to low density (preliminary survey); blur"
+"2013-07-20_YB-Bq1",2013-07-20,2013-07-20,"YB","B","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey); severe blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq2",2013-07-20,2013-07-20,"YB","B","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","20%","used uncropped picture for barnacles due to low density (preliminary survey); severe blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq3",2013-07-20,2013-07-20,"YB","B","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq4",2013-07-20,2013-07-20,"YB","B","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","10%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq5",2013-07-20,2013-07-20,"YB","B","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","40%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq6",2013-07-20,2013-07-20,"YB","B","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","10%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq7",2013-07-20,2013-07-20,"YB","B","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%","used uncropped picture for barnacles due to low density (preliminary survey); blur and water glare made species identification difficult"
+"2013-07-20_YB-Bq8",2013-07-20,2013-07-20,"YB","B","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey); blur; >30% coverage by mytilus byssal threads"
+"2013-07-20_YB-Bq9",2013-07-20,2013-07-20,"YB","B","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%","used uncropped picture for barnacles due to low density (preliminary survey); blur"
+"2013-07-20_YB-BBq1",2013-07-20,2013-07-20,"YB","BB","1","Alg","Algae","Type 19",48,0.0875,548.571428571429,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq2",2013-07-20,2013-07-20,"YB","BB","2","Alg","Algae","Type 19",43,0.0875,491.428571428571,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq3",2013-07-20,2013-07-20,"YB","BB","3","Alg","Algae","Type 19",36,0.0875,411.428571428571,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq4",2013-07-20,2013-07-20,"YB","BB","4","Alg","Algae","Type 19",22,0.0875,251.428571428571,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq5",2013-07-20,2013-07-20,"YB","BB","5","Alg","Algae","Type 19",16,0.0875,182.857142857143,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq6",2013-07-20,2013-07-20,"YB","BB","6","Alg","Algae","Type 19",20,0.0875,228.571428571429,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq7",2013-07-20,2013-07-20,"YB","BB","7","Alg","Algae","Type 19",16,0.0875,182.857142857143,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq8",2013-07-20,2013-07-20,"YB","BB","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq9",2013-07-20,2013-07-20,"YB","BB","9","Alg","Algae","Type 19",14,0.0875,160,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq1",2013-07-20,2013-07-20,"YB","BB","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq2",2013-07-20,2013-07-20,"YB","BB","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq3",2013-07-20,2013-07-20,"YB","BB","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq4",2013-07-20,2013-07-20,"YB","BB","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq5",2013-07-20,2013-07-20,"YB","BB","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq6",2013-07-20,2013-07-20,"YB","BB","6","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq7",2013-07-20,2013-07-20,"YB","BB","7","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq8",2013-07-20,2013-07-20,"YB","BB","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq9",2013-07-20,2013-07-20,"YB","BB","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq1",2013-07-20,2013-07-20,"YB","BB","1","Bg","Balanus_glandula","Type 1",14,0.0875,160,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq2",2013-07-20,2013-07-20,"YB","BB","2","Bg","Balanus_glandula","Type 1",9,0.0875,102.857142857143,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq3",2013-07-20,2013-07-20,"YB","BB","3","Bg","Balanus_glandula","Type 1",7,0.0875,80,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq4",2013-07-20,2013-07-20,"YB","BB","4","Bg","Balanus_glandula","Type 1",17,0.0875,194.285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq5",2013-07-20,2013-07-20,"YB","BB","5","Bg","Balanus_glandula","Type 1",24,0.0875,274.285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq6",2013-07-20,2013-07-20,"YB","BB","6","Bg","Balanus_glandula","Type 1",14,0.0875,160,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq7",2013-07-20,2013-07-20,"YB","BB","7","Bg","Balanus_glandula","Type 1",24,0.0875,274.285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq8",2013-07-20,2013-07-20,"YB","BB","8","Bg","Balanus_glandula","Type 1",41,0.0875,468.571428571429,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq9",2013-07-20,2013-07-20,"YB","BB","9","Bg","Balanus_glandula","Type 1",18,0.0875,205.714285714286,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq1",2013-07-20,2013-07-20,"YB","BB","1","BgD","Balanus_glandula_(dead)","Type 2",16,0.0875,182.857142857143,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq2",2013-07-20,2013-07-20,"YB","BB","2","BgD","Balanus_glandula_(dead)","Type 2",43,0.0875,491.428571428571,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq3",2013-07-20,2013-07-20,"YB","BB","3","BgD","Balanus_glandula_(dead)","Type 2",17,0.0875,194.285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq4",2013-07-20,2013-07-20,"YB","BB","4","BgD","Balanus_glandula_(dead)","Type 2",27,0.0875,308.571428571429,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq5",2013-07-20,2013-07-20,"YB","BB","5","BgD","Balanus_glandula_(dead)","Type 2",22,0.0875,251.428571428571,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq6",2013-07-20,2013-07-20,"YB","BB","6","BgD","Balanus_glandula_(dead)","Type 2",35,0.0875,400,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq7",2013-07-20,2013-07-20,"YB","BB","7","BgD","Balanus_glandula_(dead)","Type 2",19,0.0875,217.142857142857,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq8",2013-07-20,2013-07-20,"YB","BB","8","BgD","Balanus_glandula_(dead)","Type 2",24,0.0875,274.285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq9",2013-07-20,2013-07-20,"YB","BB","9","BgD","Balanus_glandula_(dead)","Type 2",20,0.0875,228.571428571429,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq1",2013-07-20,2013-07-20,"YB","BB","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq2",2013-07-20,2013-07-20,"YB","BB","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq3",2013-07-20,2013-07-20,"YB","BB","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq4",2013-07-20,2013-07-20,"YB","BB","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq5",2013-07-20,2013-07-20,"YB","BB","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq6",2013-07-20,2013-07-20,"YB","BB","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq7",2013-07-20,2013-07-20,"YB","BB","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq8",2013-07-20,2013-07-20,"YB","BB","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq9",2013-07-20,2013-07-20,"YB","BB","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq1",2013-07-20,2013-07-20,"YB","BB","1","Cth","Chthamalus_dalli","Type 3",4,0.0875,45.7142857142857,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq2",2013-07-20,2013-07-20,"YB","BB","2","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq3",2013-07-20,2013-07-20,"YB","BB","3","Cth","Chthamalus_dalli","Type 3",4,0.0875,45.7142857142857,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq4",2013-07-20,2013-07-20,"YB","BB","4","Cth","Chthamalus_dalli","Type 3",8,0.0875,91.4285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq5",2013-07-20,2013-07-20,"YB","BB","5","Cth","Chthamalus_dalli","Type 3",3,0.0875,34.2857142857143,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq6",2013-07-20,2013-07-20,"YB","BB","6","Cth","Chthamalus_dalli","Type 3",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq7",2013-07-20,2013-07-20,"YB","BB","7","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq8",2013-07-20,2013-07-20,"YB","BB","8","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq9",2013-07-20,2013-07-20,"YB","BB","9","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq1",2013-07-20,2013-07-20,"YB","BB","1","CthD","Chthamalus_dalli (dead)","Type 4",6,0.0875,68.5714285714286,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq2",2013-07-20,2013-07-20,"YB","BB","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq3",2013-07-20,2013-07-20,"YB","BB","3","CthD","Chthamalus_dalli (dead)","Type 4",3,0.0875,34.2857142857143,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq4",2013-07-20,2013-07-20,"YB","BB","4","CthD","Chthamalus_dalli (dead)","Type 4",6,0.0875,68.5714285714286,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq5",2013-07-20,2013-07-20,"YB","BB","5","CthD","Chthamalus_dalli (dead)","Type 4",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq6",2013-07-20,2013-07-20,"YB","BB","6","CthD","Chthamalus_dalli (dead)","Type 4",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq7",2013-07-20,2013-07-20,"YB","BB","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq8",2013-07-20,2013-07-20,"YB","BB","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq9",2013-07-20,2013-07-20,"YB","BB","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq1",2013-07-20,2013-07-20,"YB","BB","1","Emp","Emplectonema worm","Type 23",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq2",2013-07-20,2013-07-20,"YB","BB","2","Emp","Emplectonema worm","Type 23",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq3",2013-07-20,2013-07-20,"YB","BB","3","Emp","Emplectonema worm","Type 23",4,0.0875,45.7142857142857,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq4",2013-07-20,2013-07-20,"YB","BB","4","Emp","Emplectonema worm","Type 23",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq5",2013-07-20,2013-07-20,"YB","BB","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq6",2013-07-20,2013-07-20,"YB","BB","6","Emp","Emplectonema worm","Type 23",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq7",2013-07-20,2013-07-20,"YB","BB","7","Emp","Emplectonema worm","Type 23",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq8",2013-07-20,2013-07-20,"YB","BB","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq9",2013-07-20,2013-07-20,"YB","BB","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq1",2013-07-20,2013-07-20,"YB","BB","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq2",2013-07-20,2013-07-20,"YB","BB","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq3",2013-07-20,2013-07-20,"YB","BB","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq4",2013-07-20,2013-07-20,"YB","BB","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq5",2013-07-20,2013-07-20,"YB","BB","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq6",2013-07-20,2013-07-20,"YB","BB","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq7",2013-07-20,2013-07-20,"YB","BB","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq8",2013-07-20,2013-07-20,"YB","BB","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq9",2013-07-20,2013-07-20,"YB","BB","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq1",2013-07-20,2013-07-20,"YB","BB","1","Lim","Limpets","Type 12",15,0.0875,171.428571428571,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq2",2013-07-20,2013-07-20,"YB","BB","2","Lim","Limpets","Type 12",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq3",2013-07-20,2013-07-20,"YB","BB","3","Lim","Limpets","Type 12",3,0.0875,34.2857142857143,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq4",2013-07-20,2013-07-20,"YB","BB","4","Lim","Limpets","Type 12",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq5",2013-07-20,2013-07-20,"YB","BB","5","Lim","Limpets","Type 12",3,0.0875,34.2857142857143,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq6",2013-07-20,2013-07-20,"YB","BB","6","Lim","Limpets","Type 12",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq7",2013-07-20,2013-07-20,"YB","BB","7","Lim","Limpets","Type 12",5,0.0875,57.1428571428571,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq8",2013-07-20,2013-07-20,"YB","BB","8","Lim","Limpets","Type 12",6,0.0875,68.5714285714286,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq9",2013-07-20,2013-07-20,"YB","BB","9","Lim","Limpets","Type 12",5,0.0875,57.1428571428571,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq1",2013-07-20,2013-07-20,"YB","BB","1","Ls","Littorina_sitkana","Type 13",14,0.0875,160,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq2",2013-07-20,2013-07-20,"YB","BB","2","Ls","Littorina_sitkana","Type 13",6,0.0875,68.5714285714286,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq3",2013-07-20,2013-07-20,"YB","BB","3","Ls","Littorina_sitkana","Type 13",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq4",2013-07-20,2013-07-20,"YB","BB","4","Ls","Littorina_sitkana","Type 13",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq5",2013-07-20,2013-07-20,"YB","BB","5","Ls","Littorina_sitkana","Type 13",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq6",2013-07-20,2013-07-20,"YB","BB","6","Ls","Littorina_sitkana","Type 13",3,0.0875,34.2857142857143,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq7",2013-07-20,2013-07-20,"YB","BB","7","Ls","Littorina_sitkana","Type 13",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq8",2013-07-20,2013-07-20,"YB","BB","8","Ls","Littorina_sitkana","Type 13",15,0.0875,171.428571428571,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq9",2013-07-20,2013-07-20,"YB","BB","9","Ls","Littorina_sitkana","Type 13",7,0.0875,80,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq1",2013-07-20,2013-07-20,"YB","BB","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq2",2013-07-20,2013-07-20,"YB","BB","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq3",2013-07-20,2013-07-20,"YB","BB","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq4",2013-07-20,2013-07-20,"YB","BB","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq5",2013-07-20,2013-07-20,"YB","BB","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq6",2013-07-20,2013-07-20,"YB","BB","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq7",2013-07-20,2013-07-20,"YB","BB","7","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq8",2013-07-20,2013-07-20,"YB","BB","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq9",2013-07-20,2013-07-20,"YB","BB","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq1",2013-07-20,2013-07-20,"YB","BB","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq2",2013-07-20,2013-07-20,"YB","BB","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq3",2013-07-20,2013-07-20,"YB","BB","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq4",2013-07-20,2013-07-20,"YB","BB","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq5",2013-07-20,2013-07-20,"YB","BB","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq6",2013-07-20,2013-07-20,"YB","BB","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq7",2013-07-20,2013-07-20,"YB","BB","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq8",2013-07-20,2013-07-20,"YB","BB","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq9",2013-07-20,2013-07-20,"YB","BB","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq1",2013-07-20,2013-07-20,"YB","BB","1","Myt","Mytilus_spp","Type 7",12,0.0875,137.142857142857,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq2",2013-07-20,2013-07-20,"YB","BB","2","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq3",2013-07-20,2013-07-20,"YB","BB","3","Myt","Mytilus_spp","Type 7",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq4",2013-07-20,2013-07-20,"YB","BB","4","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq5",2013-07-20,2013-07-20,"YB","BB","5","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq6",2013-07-20,2013-07-20,"YB","BB","6","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq7",2013-07-20,2013-07-20,"YB","BB","7","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq8",2013-07-20,2013-07-20,"YB","BB","8","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq9",2013-07-20,2013-07-20,"YB","BB","9","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq1",2013-07-20,2013-07-20,"YB","BB","1","MytD","Mytilus_spp_(dead)","Type 8",7,0.0875,80,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq2",2013-07-20,2013-07-20,"YB","BB","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq3",2013-07-20,2013-07-20,"YB","BB","3","MytD","Mytilus_spp_(dead)","Type 8",9,0.0875,102.857142857143,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq4",2013-07-20,2013-07-20,"YB","BB","4","MytD","Mytilus_spp_(dead)","Type 8",5,0.0875,57.1428571428571,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq5",2013-07-20,2013-07-20,"YB","BB","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq6",2013-07-20,2013-07-20,"YB","BB","6","MytD","Mytilus_spp_(dead)","Type 8",8,0.0875,91.4285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq7",2013-07-20,2013-07-20,"YB","BB","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq8",2013-07-20,2013-07-20,"YB","BB","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq9",2013-07-20,2013-07-20,"YB","BB","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq1",2013-07-20,2013-07-20,"YB","BB","1","Mt","Mytilus_trossulus","Type 15",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq2",2013-07-20,2013-07-20,"YB","BB","2","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq3",2013-07-20,2013-07-20,"YB","BB","3","Mt","Mytilus_trossulus","Type 15",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq4",2013-07-20,2013-07-20,"YB","BB","4","Mt","Mytilus_trossulus","Type 15",4,0.0875,45.7142857142857,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq5",2013-07-20,2013-07-20,"YB","BB","5","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq6",2013-07-20,2013-07-20,"YB","BB","6","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq7",2013-07-20,2013-07-20,"YB","BB","7","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq8",2013-07-20,2013-07-20,"YB","BB","8","Mt","Mytilus_trossulus","Type 15",5,0.0875,57.1428571428571,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq9",2013-07-20,2013-07-20,"YB","BB","9","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq1",2013-07-20,2013-07-20,"YB","BB","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq2",2013-07-20,2013-07-20,"YB","BB","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq3",2013-07-20,2013-07-20,"YB","BB","3","MtD","Mytilus_trossulus_(dead)","Type 16",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq4",2013-07-20,2013-07-20,"YB","BB","4","MtD","Mytilus_trossulus_(dead)","Type 16",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq5",2013-07-20,2013-07-20,"YB","BB","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq6",2013-07-20,2013-07-20,"YB","BB","6","MtD","Mytilus_trossulus_(dead)","Type 16",3,0.0875,34.2857142857143,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq7",2013-07-20,2013-07-20,"YB","BB","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq8",2013-07-20,2013-07-20,"YB","BB","8","MtD","Mytilus_trossulus_(dead)","Type 16",7,0.0875,80,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq9",2013-07-20,2013-07-20,"YB","BB","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq1",2013-07-20,2013-07-20,"YB","BB","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq2",2013-07-20,2013-07-20,"YB","BB","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq3",2013-07-20,2013-07-20,"YB","BB","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq4",2013-07-20,2013-07-20,"YB","BB","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq5",2013-07-20,2013-07-20,"YB","BB","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq6",2013-07-20,2013-07-20,"YB","BB","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq7",2013-07-20,2013-07-20,"YB","BB","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq8",2013-07-20,2013-07-20,"YB","BB","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq9",2013-07-20,2013-07-20,"YB","BB","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq1",2013-07-20,2013-07-20,"YB","BB","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq2",2013-07-20,2013-07-20,"YB","BB","2","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq3",2013-07-20,2013-07-20,"YB","BB","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq4",2013-07-20,2013-07-20,"YB","BB","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq5",2013-07-20,2013-07-20,"YB","BB","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq6",2013-07-20,2013-07-20,"YB","BB","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq7",2013-07-20,2013-07-20,"YB","BB","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq8",2013-07-20,2013-07-20,"YB","BB","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq9",2013-07-20,2013-07-20,"YB","BB","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq1",2013-07-20,2013-07-20,"YB","BB","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq2",2013-07-20,2013-07-20,"YB","BB","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq3",2013-07-20,2013-07-20,"YB","BB","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq4",2013-07-20,2013-07-20,"YB","BB","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq5",2013-07-20,2013-07-20,"YB","BB","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq6",2013-07-20,2013-07-20,"YB","BB","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq7",2013-07-20,2013-07-20,"YB","BB","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq8",2013-07-20,2013-07-20,"YB","BB","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq9",2013-07-20,2013-07-20,"YB","BB","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq1",2013-07-20,2013-07-20,"YB","BB","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq2",2013-07-20,2013-07-20,"YB","BB","2","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq3",2013-07-20,2013-07-20,"YB","BB","3","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq4",2013-07-20,2013-07-20,"YB","BB","4","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq5",2013-07-20,2013-07-20,"YB","BB","5","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq6",2013-07-20,2013-07-20,"YB","BB","6","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq7",2013-07-20,2013-07-20,"YB","BB","7","No","Nucella_ostrina","Type 9",3,0.0875,34.2857142857143,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq8",2013-07-20,2013-07-20,"YB","BB","8","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq9",2013-07-20,2013-07-20,"YB","BB","9","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq1",2013-07-20,2013-07-20,"YB","BB","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq2",2013-07-20,2013-07-20,"YB","BB","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq3",2013-07-20,2013-07-20,"YB","BB","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq4",2013-07-20,2013-07-20,"YB","BB","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq5",2013-07-20,2013-07-20,"YB","BB","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq6",2013-07-20,2013-07-20,"YB","BB","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq7",2013-07-20,2013-07-20,"YB","BB","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq8",2013-07-20,2013-07-20,"YB","BB","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq9",2013-07-20,2013-07-20,"YB","BB","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq1",2013-07-20,2013-07-20,"YB","BB","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq2",2013-07-20,2013-07-20,"YB","BB","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq3",2013-07-20,2013-07-20,"YB","BB","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq4",2013-07-20,2013-07-20,"YB","BB","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq5",2013-07-20,2013-07-20,"YB","BB","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq6",2013-07-20,2013-07-20,"YB","BB","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq7",2013-07-20,2013-07-20,"YB","BB","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq8",2013-07-20,2013-07-20,"YB","BB","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq9",2013-07-20,2013-07-20,"YB","BB","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq1",2013-07-20,2013-07-20,"YB","BB","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq2",2013-07-20,2013-07-20,"YB","BB","2","Pp","Pollicipes_polymerus","Type 11",8,0.0875,91.4285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq3",2013-07-20,2013-07-20,"YB","BB","3","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq4",2013-07-20,2013-07-20,"YB","BB","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq5",2013-07-20,2013-07-20,"YB","BB","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq6",2013-07-20,2013-07-20,"YB","BB","6","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq7",2013-07-20,2013-07-20,"YB","BB","7","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq8",2013-07-20,2013-07-20,"YB","BB","8","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq9",2013-07-20,2013-07-20,"YB","BB","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq1",2013-07-20,2013-07-20,"YB","BB","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq2",2013-07-20,2013-07-20,"YB","BB","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq3",2013-07-20,2013-07-20,"YB","BB","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq4",2013-07-20,2013-07-20,"YB","BB","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq5",2013-07-20,2013-07-20,"YB","BB","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq6",2013-07-20,2013-07-20,"YB","BB","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq7",2013-07-20,2013-07-20,"YB","BB","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq8",2013-07-20,2013-07-20,"YB","BB","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq9",2013-07-20,2013-07-20,"YB","BB","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq1",2013-07-20,2013-07-20,"YB","BB","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq2",2013-07-20,2013-07-20,"YB","BB","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq3",2013-07-20,2013-07-20,"YB","BB","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq4",2013-07-20,2013-07-20,"YB","BB","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq5",2013-07-20,2013-07-20,"YB","BB","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq6",2013-07-20,2013-07-20,"YB","BB","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq7",2013-07-20,2013-07-20,"YB","BB","7","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq8",2013-07-20,2013-07-20,"YB","BB","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq9",2013-07-20,2013-07-20,"YB","BB","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq1",2013-07-20,2013-07-20,"YB","BB","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq2",2013-07-20,2013-07-20,"YB","BB","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq3",2013-07-20,2013-07-20,"YB","BB","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq4",2013-07-20,2013-07-20,"YB","BB","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq5",2013-07-20,2013-07-20,"YB","BB","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq6",2013-07-20,2013-07-20,"YB","BB","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq7",2013-07-20,2013-07-20,"YB","BB","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq8",2013-07-20,2013-07-20,"YB","BB","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-BBq9",2013-07-20,2013-07-20,"YB","BB","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-21_YB-BCq3",2013-07-20,2013-07-21,"YB","BC","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2013-07-21_YB-BCq5",2013-07-20,2013-07-21,"YB","BC","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2013-07-21_YB-BCq9",2013-07-20,2013-07-21,"YB","BC","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~1% byssal threads"
+"2013-07-21_YB-BCq3",2013-07-20,2013-07-21,"YB","BC","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2013-07-21_YB-BCq5",2013-07-20,2013-07-21,"YB","BC","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2013-07-21_YB-BCq9",2013-07-20,2013-07-21,"YB","BC","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~1% byssal threads"
+"2013-07-21_YB-BCq3",2013-07-20,2013-07-21,"YB","BC","3","Bg","Balanus_glandula","Type 1",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2013-07-21_YB-BCq5",2013-07-20,2013-07-21,"YB","BC","5","Bg","Balanus_glandula","Type 1",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2013-07-21_YB-BCq9",2013-07-20,2013-07-21,"YB","BC","9","Bg","Balanus_glandula","Type 1",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","1%","~1% byssal threads"
+"2013-07-21_YB-BCq3",2013-07-20,2013-07-21,"YB","BC","3","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2013-07-21_YB-BCq5",2013-07-20,2013-07-21,"YB","BC","5","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2013-07-21_YB-BCq9",2013-07-20,2013-07-21,"YB","BC","9","BgD","Balanus_glandula_(dead)","Type 2",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","1%","~1% byssal threads"
+"2013-07-21_YB-BCq3",2013-07-20,2013-07-21,"YB","BC","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2013-07-21_YB-BCq5",2013-07-20,2013-07-21,"YB","BC","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2013-07-21_YB-BCq9",2013-07-20,2013-07-21,"YB","BC","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~1% byssal threads"
+"2013-07-21_YB-BCq3",2013-07-20,2013-07-21,"YB","BC","3","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2013-07-21_YB-BCq5",2013-07-20,2013-07-21,"YB","BC","5","Cth","Chthamalus_dalli","Type 3",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2013-07-21_YB-BCq9",2013-07-20,2013-07-21,"YB","BC","9","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~1% byssal threads"
+"2013-07-21_YB-BCq3",2013-07-20,2013-07-21,"YB","BC","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2013-07-21_YB-BCq5",2013-07-20,2013-07-21,"YB","BC","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2013-07-21_YB-BCq9",2013-07-20,2013-07-21,"YB","BC","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~1% byssal threads"
+"2013-07-21_YB-BCq3",2013-07-20,2013-07-21,"YB","BC","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2013-07-21_YB-BCq5",2013-07-20,2013-07-21,"YB","BC","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2013-07-21_YB-BCq9",2013-07-20,2013-07-21,"YB","BC","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~1% byssal threads"
+"2013-07-21_YB-BCq3",2013-07-20,2013-07-21,"YB","BC","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2013-07-21_YB-BCq5",2013-07-20,2013-07-21,"YB","BC","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2013-07-21_YB-BCq9",2013-07-20,2013-07-21,"YB","BC","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~1% byssal threads"
+"2013-07-21_YB-BCq3",2013-07-20,2013-07-21,"YB","BC","3","Lim","Limpets","Type 12",27,0.0875,308.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2013-07-21_YB-BCq5",2013-07-20,2013-07-21,"YB","BC","5","Lim","Limpets","Type 12",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2013-07-21_YB-BCq9",2013-07-20,2013-07-21,"YB","BC","9","Lim","Limpets","Type 12",14,0.0875,160,NA,"Beatriz Vaca","Finished","Full","Full","1%","~1% byssal threads"
+"2013-07-21_YB-BCq3",2013-07-20,2013-07-21,"YB","BC","3","Ls","Littorina_sitkana","Type 13",11,0.0875,125.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2013-07-21_YB-BCq5",2013-07-20,2013-07-21,"YB","BC","5","Ls","Littorina_sitkana","Type 13",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2013-07-21_YB-BCq9",2013-07-20,2013-07-21,"YB","BC","9","Ls","Littorina_sitkana","Type 13",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","1%","~1% byssal threads"
+"2013-07-21_YB-BCq3",2013-07-20,2013-07-21,"YB","BC","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2013-07-21_YB-BCq5",2013-07-20,2013-07-21,"YB","BC","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2013-07-21_YB-BCq9",2013-07-20,2013-07-21,"YB","BC","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~1% byssal threads"
+"2013-07-21_YB-BCq3",2013-07-20,2013-07-21,"YB","BC","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2013-07-21_YB-BCq5",2013-07-20,2013-07-21,"YB","BC","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2013-07-21_YB-BCq9",2013-07-20,2013-07-21,"YB","BC","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~1% byssal threads"
+"2013-07-21_YB-BCq3",2013-07-20,2013-07-21,"YB","BC","3","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2013-07-21_YB-BCq5",2013-07-20,2013-07-21,"YB","BC","5","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2013-07-21_YB-BCq9",2013-07-20,2013-07-21,"YB","BC","9","Myt","Mytilus_spp","Type 7",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","1%","~1% byssal threads"
+"2013-07-21_YB-BCq3",2013-07-20,2013-07-21,"YB","BC","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2013-07-21_YB-BCq5",2013-07-20,2013-07-21,"YB","BC","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2013-07-21_YB-BCq9",2013-07-20,2013-07-21,"YB","BC","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~1% byssal threads"
+"2013-07-21_YB-BCq3",2013-07-20,2013-07-21,"YB","BC","3","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2013-07-21_YB-BCq5",2013-07-20,2013-07-21,"YB","BC","5","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2013-07-21_YB-BCq9",2013-07-20,2013-07-21,"YB","BC","9","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~1% byssal threads"
+"2013-07-21_YB-BCq3",2013-07-20,2013-07-21,"YB","BC","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2013-07-21_YB-BCq5",2013-07-20,2013-07-21,"YB","BC","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2013-07-21_YB-BCq9",2013-07-20,2013-07-21,"YB","BC","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~1% byssal threads"
+"2013-07-21_YB-BCq3",2013-07-20,2013-07-21,"YB","BC","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2013-07-21_YB-BCq5",2013-07-20,2013-07-21,"YB","BC","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2013-07-21_YB-BCq9",2013-07-20,2013-07-21,"YB","BC","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~1% byssal threads"
+"2013-07-21_YB-BCq3",2013-07-20,2013-07-21,"YB","BC","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2013-07-21_YB-BCq5",2013-07-20,2013-07-21,"YB","BC","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2013-07-21_YB-BCq9",2013-07-20,2013-07-21,"YB","BC","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~1% byssal threads"
+"2013-07-21_YB-BCq3",2013-07-20,2013-07-21,"YB","BC","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2013-07-21_YB-BCq5",2013-07-20,2013-07-21,"YB","BC","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2013-07-21_YB-BCq9",2013-07-20,2013-07-21,"YB","BC","9","Negg","Nucella_eggs","Type 26",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","1%","~1% byssal threads"
+"2013-07-21_YB-BCq3",2013-07-20,2013-07-21,"YB","BC","3","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2013-07-21_YB-BCq5",2013-07-20,2013-07-21,"YB","BC","5","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2013-07-21_YB-BCq9",2013-07-20,2013-07-21,"YB","BC","9","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~1% byssal threads"
+"2013-07-21_YB-BCq3",2013-07-20,2013-07-21,"YB","BC","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2013-07-21_YB-BCq5",2013-07-20,2013-07-21,"YB","BC","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2013-07-21_YB-BCq9",2013-07-20,2013-07-21,"YB","BC","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~1% byssal threads"
+"2013-07-21_YB-BCq3",2013-07-20,2013-07-21,"YB","BC","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2013-07-21_YB-BCq5",2013-07-20,2013-07-21,"YB","BC","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2013-07-21_YB-BCq9",2013-07-20,2013-07-21,"YB","BC","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~1% byssal threads"
+"2013-07-21_YB-BCq3",2013-07-20,2013-07-21,"YB","BC","3","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2013-07-21_YB-BCq5",2013-07-20,2013-07-21,"YB","BC","5","Pp","Pollicipes_polymerus","Type 11",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2013-07-21_YB-BCq9",2013-07-20,2013-07-21,"YB","BC","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~1% byssal threads"
+"2013-07-21_YB-BCq3",2013-07-20,2013-07-21,"YB","BC","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2013-07-21_YB-BCq5",2013-07-20,2013-07-21,"YB","BC","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2013-07-21_YB-BCq9",2013-07-20,2013-07-21,"YB","BC","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~1% byssal threads"
+"2013-07-21_YB-BCq3",2013-07-20,2013-07-21,"YB","BC","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2013-07-21_YB-BCq5",2013-07-20,2013-07-21,"YB","BC","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2013-07-21_YB-BCq9",2013-07-20,2013-07-21,"YB","BC","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~1% byssal threads"
+"2013-07-21_YB-BCq3",2013-07-20,2013-07-21,"YB","BC","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2013-07-21_YB-BCq5",2013-07-20,2013-07-21,"YB","BC","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2013-07-21_YB-BCq9",2013-07-20,2013-07-21,"YB","BC","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~1% byssal threads"
+"2013-07-21_YB-BDq2",2013-07-20,2013-07-21,"YB","BD","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Unknown","Finished","Full","Full","10%",""
+"2013-07-21_YB-BDq3",2013-07-20,2013-07-21,"YB","BD","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Unknown","Finished","Full","Full","10%",""
+"2013-07-21_YB-BDq5",2013-07-20,2013-07-21,"YB","BD","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","4%","Counts low due to blur"
+"2013-07-21_YB-BDq7",2013-07-20,2013-07-21,"YB","BD","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","7%","Counts low due to blur. Most of the algae is a thin film."
+"2013-07-21_YB-BDq2",2013-07-20,2013-07-21,"YB","BD","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Unknown","Finished","Full","Full","10%",""
+"2013-07-21_YB-BDq3",2013-07-20,2013-07-21,"YB","BD","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Unknown","Finished","Full","Full","10%",""
+"2013-07-21_YB-BDq5",2013-07-20,2013-07-21,"YB","BD","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","4%","Counts low due to blur"
+"2013-07-21_YB-BDq7",2013-07-20,2013-07-21,"YB","BD","7","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","7%","Counts low due to blur. Most of the algae is a thin film."
+"2013-07-21_YB-BDq2",2013-07-20,2013-07-21,"YB","BD","2","Bg","Balanus_glandula","Type 1",26,0.0875,297.142857142857,NA,"Unknown","Finished","Full","Full","10%",""
+"2013-07-21_YB-BDq3",2013-07-20,2013-07-21,"YB","BD","3","Bg","Balanus_glandula","Type 1",35,0.0875,400,NA,"Unknown","Finished","Full","Full","10%",""
+"2013-07-21_YB-BDq5",2013-07-20,2013-07-21,"YB","BD","5","Bg","Balanus_glandula","Type 1",43,0.0875,491.428571428571,NA,"Julia Bingham","Finished","Full","Full","4%","Counts low due to blur"
+"2013-07-21_YB-BDq7",2013-07-20,2013-07-21,"YB","BD","7","Bg","Balanus_glandula","Type 1",132,0.0875,1508.57142857143,NA,"Julia Bingham","Finished","Full","Full","7%","Counts low due to blur. Most of the algae is a thin film."
+"2013-07-21_YB-BDq2",2013-07-20,2013-07-21,"YB","BD","2","BgD","Balanus_glandula_(dead)","Type 2",32,0.0875,365.714285714286,NA,"Unknown","Finished","Full","Full","10%",""
+"2013-07-21_YB-BDq3",2013-07-20,2013-07-21,"YB","BD","3","BgD","Balanus_glandula_(dead)","Type 2",27,0.0875,308.571428571429,NA,"Unknown","Finished","Full","Full","10%",""
+"2013-07-21_YB-BDq5",2013-07-20,2013-07-21,"YB","BD","5","BgD","Balanus_glandula_(dead)","Type 2",75,0.0875,857.142857142857,NA,"Julia Bingham","Finished","Full","Full","4%","Counts low due to blur"
+"2013-07-21_YB-BDq7",2013-07-20,2013-07-21,"YB","BD","7","BgD","Balanus_glandula_(dead)","Type 2",63,0.0875,720,NA,"Julia Bingham","Finished","Full","Full","7%","Counts low due to blur. Most of the algae is a thin film."
+"2013-07-21_YB-BDq2",2013-07-20,2013-07-21,"YB","BD","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Unknown","Finished","Full","Full","10%",""
+"2013-07-21_YB-BDq3",2013-07-20,2013-07-21,"YB","BD","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Unknown","Finished","Full","Full","10%",""
+"2013-07-21_YB-BDq5",2013-07-20,2013-07-21,"YB","BD","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","4%","Counts low due to blur"
+"2013-07-21_YB-BDq7",2013-07-20,2013-07-21,"YB","BD","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","7%","Counts low due to blur. Most of the algae is a thin film."
+"2013-07-21_YB-BDq2",2013-07-20,2013-07-21,"YB","BD","2","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Unknown","Finished","Full","Full","10%",""
+"2013-07-21_YB-BDq3",2013-07-20,2013-07-21,"YB","BD","3","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Unknown","Finished","Full","Full","10%",""
+"2013-07-21_YB-BDq5",2013-07-20,2013-07-21,"YB","BD","5","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","4%","Counts low due to blur"
+"2013-07-21_YB-BDq7",2013-07-20,2013-07-21,"YB","BD","7","Cth","Chthamalus_dalli","Type 3",47,0.0875,537.142857142857,NA,"Julia Bingham","Finished","Full","Full","7%","Counts low due to blur. Most of the algae is a thin film."
+"2013-07-21_YB-BDq2",2013-07-20,2013-07-21,"YB","BD","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Unknown","Finished","Full","Full","10%",""
+"2013-07-21_YB-BDq3",2013-07-20,2013-07-21,"YB","BD","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Unknown","Finished","Full","Full","10%",""
+"2013-07-21_YB-BDq5",2013-07-20,2013-07-21,"YB","BD","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","4%","Counts low due to blur"
+"2013-07-21_YB-BDq7",2013-07-20,2013-07-21,"YB","BD","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","7%","Counts low due to blur. Most of the algae is a thin film."
+"2013-07-21_YB-BDq2",2013-07-20,2013-07-21,"YB","BD","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Unknown","Finished","Full","Full","10%",""
+"2013-07-21_YB-BDq3",2013-07-20,2013-07-21,"YB","BD","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Unknown","Finished","Full","Full","10%",""
+"2013-07-21_YB-BDq5",2013-07-20,2013-07-21,"YB","BD","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","4%","Counts low due to blur"
+"2013-07-21_YB-BDq7",2013-07-20,2013-07-21,"YB","BD","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","7%","Counts low due to blur. Most of the algae is a thin film."
+"2013-07-21_YB-BDq2",2013-07-20,2013-07-21,"YB","BD","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Unknown","Finished","Full","Full","10%",""
+"2013-07-21_YB-BDq3",2013-07-20,2013-07-21,"YB","BD","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Unknown","Finished","Full","Full","10%",""
+"2013-07-21_YB-BDq5",2013-07-20,2013-07-21,"YB","BD","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","4%","Counts low due to blur"
+"2013-07-21_YB-BDq7",2013-07-20,2013-07-21,"YB","BD","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","7%","Counts low due to blur. Most of the algae is a thin film."
+"2013-07-21_YB-BDq2",2013-07-20,2013-07-21,"YB","BD","2","Lim","Limpets","Type 12",38,0.0875,434.285714285714,NA,"Unknown","Finished","Full","Full","10%",""
+"2013-07-21_YB-BDq3",2013-07-20,2013-07-21,"YB","BD","3","Lim","Limpets","Type 12",18,0.0875,205.714285714286,NA,"Unknown","Finished","Full","Full","10%",""
+"2013-07-21_YB-BDq5",2013-07-20,2013-07-21,"YB","BD","5","Lim","Limpets","Type 12",102,0.0875,1165.71428571429,NA,"Julia Bingham","Finished","Full","Full","4%","Counts low due to blur"
+"2013-07-21_YB-BDq7",2013-07-20,2013-07-21,"YB","BD","7","Lim","Limpets","Type 12",119,0.0875,1360,NA,"Julia Bingham","Finished","Full","Full","7%","Counts low due to blur. Most of the algae is a thin film."
+"2013-07-21_YB-BDq2",2013-07-20,2013-07-21,"YB","BD","2","Ls","Littorina_sitkana","Type 13",14,0.0875,160,NA,"Unknown","Finished","Full","Full","10%",""
+"2013-07-21_YB-BDq3",2013-07-20,2013-07-21,"YB","BD","3","Ls","Littorina_sitkana","Type 13",3,0.0875,34.2857142857143,NA,"Unknown","Finished","Full","Full","10%",""
+"2013-07-21_YB-BDq5",2013-07-20,2013-07-21,"YB","BD","5","Ls","Littorina_sitkana","Type 13",69,0.0875,788.571428571429,NA,"Julia Bingham","Finished","Full","Full","4%","Counts low due to blur"
+"2013-07-21_YB-BDq7",2013-07-20,2013-07-21,"YB","BD","7","Ls","Littorina_sitkana","Type 13",98,0.0875,1120,NA,"Julia Bingham","Finished","Full","Full","7%","Counts low due to blur. Most of the algae is a thin film."
+"2013-07-21_YB-BDq2",2013-07-20,2013-07-21,"YB","BD","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Unknown","Finished","Full","Full","10%",""
+"2013-07-21_YB-BDq3",2013-07-20,2013-07-21,"YB","BD","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Unknown","Finished","Full","Full","10%",""
+"2013-07-21_YB-BDq5",2013-07-20,2013-07-21,"YB","BD","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","4%","Counts low due to blur"
+"2013-07-21_YB-BDq7",2013-07-20,2013-07-21,"YB","BD","7","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","7%","Counts low due to blur. Most of the algae is a thin film."
+"2013-07-21_YB-BDq2",2013-07-20,2013-07-21,"YB","BD","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Unknown","Finished","Full","Full","10%",""
+"2013-07-21_YB-BDq3",2013-07-20,2013-07-21,"YB","BD","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Unknown","Finished","Full","Full","10%",""
+"2013-07-21_YB-BDq5",2013-07-20,2013-07-21,"YB","BD","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","4%","Counts low due to blur"
+"2013-07-21_YB-BDq7",2013-07-20,2013-07-21,"YB","BD","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","7%","Counts low due to blur. Most of the algae is a thin film."
+"2013-07-21_YB-BDq2",2013-07-20,2013-07-21,"YB","BD","2","Myt","Mytilus_spp","Type 7",7,0.0875,80,NA,"Unknown","Finished","Full","Full","10%",""
+"2013-07-21_YB-BDq3",2013-07-20,2013-07-21,"YB","BD","3","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Unknown","Finished","Full","Full","10%",""
+"2013-07-21_YB-BDq5",2013-07-20,2013-07-21,"YB","BD","5","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","4%","Counts low due to blur"
+"2013-07-21_YB-BDq7",2013-07-20,2013-07-21,"YB","BD","7","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","7%","Counts low due to blur. Most of the algae is a thin film."
+"2013-07-21_YB-BDq2",2013-07-20,2013-07-21,"YB","BD","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Unknown","Finished","Full","Full","10%",""
+"2013-07-21_YB-BDq3",2013-07-20,2013-07-21,"YB","BD","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Unknown","Finished","Full","Full","10%",""
+"2013-07-21_YB-BDq5",2013-07-20,2013-07-21,"YB","BD","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","4%","Counts low due to blur"
+"2013-07-21_YB-BDq7",2013-07-20,2013-07-21,"YB","BD","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","7%","Counts low due to blur. Most of the algae is a thin film."
+"2013-07-21_YB-BDq2",2013-07-20,2013-07-21,"YB","BD","2","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Unknown","Finished","Full","Full","10%",""
+"2013-07-21_YB-BDq3",2013-07-20,2013-07-21,"YB","BD","3","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Unknown","Finished","Full","Full","10%",""
+"2013-07-21_YB-BDq5",2013-07-20,2013-07-21,"YB","BD","5","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","4%","Counts low due to blur"
+"2013-07-21_YB-BDq7",2013-07-20,2013-07-21,"YB","BD","7","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","7%","Counts low due to blur. Most of the algae is a thin film."
+"2013-07-21_YB-BDq2",2013-07-20,2013-07-21,"YB","BD","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Unknown","Finished","Full","Full","10%",""
+"2013-07-21_YB-BDq3",2013-07-20,2013-07-21,"YB","BD","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Unknown","Finished","Full","Full","10%",""
+"2013-07-21_YB-BDq5",2013-07-20,2013-07-21,"YB","BD","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","4%","Counts low due to blur"
+"2013-07-21_YB-BDq7",2013-07-20,2013-07-21,"YB","BD","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","7%","Counts low due to blur. Most of the algae is a thin film."
+"2013-07-21_YB-BDq2",2013-07-20,2013-07-21,"YB","BD","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Unknown","Finished","Full","Full","10%",""
+"2013-07-21_YB-BDq3",2013-07-20,2013-07-21,"YB","BD","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Unknown","Finished","Full","Full","10%",""
+"2013-07-21_YB-BDq5",2013-07-20,2013-07-21,"YB","BD","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","4%","Counts low due to blur"
+"2013-07-21_YB-BDq7",2013-07-20,2013-07-21,"YB","BD","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","7%","Counts low due to blur. Most of the algae is a thin film."
+"2013-07-21_YB-BDq2",2013-07-20,2013-07-21,"YB","BD","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Unknown","Finished","Full","Full","10%",""
+"2013-07-21_YB-BDq3",2013-07-20,2013-07-21,"YB","BD","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Unknown","Finished","Full","Full","10%",""
+"2013-07-21_YB-BDq5",2013-07-20,2013-07-21,"YB","BD","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","4%","Counts low due to blur"
+"2013-07-21_YB-BDq7",2013-07-20,2013-07-21,"YB","BD","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","7%","Counts low due to blur. Most of the algae is a thin film."
+"2013-07-21_YB-BDq2",2013-07-20,2013-07-21,"YB","BD","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Unknown","Finished","Full","Full","10%",""
+"2013-07-21_YB-BDq3",2013-07-20,2013-07-21,"YB","BD","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Unknown","Finished","Full","Full","10%",""
+"2013-07-21_YB-BDq5",2013-07-20,2013-07-21,"YB","BD","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","4%","Counts low due to blur"
+"2013-07-21_YB-BDq7",2013-07-20,2013-07-21,"YB","BD","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","7%","Counts low due to blur. Most of the algae is a thin film."
+"2013-07-21_YB-BDq2",2013-07-20,2013-07-21,"YB","BD","2","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Unknown","Finished","Full","Full","10%",""
+"2013-07-21_YB-BDq3",2013-07-20,2013-07-21,"YB","BD","3","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Unknown","Finished","Full","Full","10%",""
+"2013-07-21_YB-BDq5",2013-07-20,2013-07-21,"YB","BD","5","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","4%","Counts low due to blur"
+"2013-07-21_YB-BDq7",2013-07-20,2013-07-21,"YB","BD","7","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","7%","Counts low due to blur. Most of the algae is a thin film."
+"2013-07-21_YB-BDq2",2013-07-20,2013-07-21,"YB","BD","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Unknown","Finished","Full","Full","10%",""
+"2013-07-21_YB-BDq3",2013-07-20,2013-07-21,"YB","BD","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Unknown","Finished","Full","Full","10%",""
+"2013-07-21_YB-BDq5",2013-07-20,2013-07-21,"YB","BD","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","4%","Counts low due to blur"
+"2013-07-21_YB-BDq7",2013-07-20,2013-07-21,"YB","BD","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","7%","Counts low due to blur. Most of the algae is a thin film."
+"2013-07-21_YB-BDq2",2013-07-20,2013-07-21,"YB","BD","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Unknown","Finished","Full","Full","10%",""
+"2013-07-21_YB-BDq3",2013-07-20,2013-07-21,"YB","BD","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Unknown","Finished","Full","Full","10%",""
+"2013-07-21_YB-BDq5",2013-07-20,2013-07-21,"YB","BD","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","4%","Counts low due to blur"
+"2013-07-21_YB-BDq7",2013-07-20,2013-07-21,"YB","BD","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","7%","Counts low due to blur. Most of the algae is a thin film."
+"2013-07-21_YB-BDq2",2013-07-20,2013-07-21,"YB","BD","2","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Unknown","Finished","Full","Full","10%",""
+"2013-07-21_YB-BDq3",2013-07-20,2013-07-21,"YB","BD","3","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Unknown","Finished","Full","Full","10%",""
+"2013-07-21_YB-BDq5",2013-07-20,2013-07-21,"YB","BD","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","4%","Counts low due to blur"
+"2013-07-21_YB-BDq7",2013-07-20,2013-07-21,"YB","BD","7","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","7%","Counts low due to blur. Most of the algae is a thin film."
+"2013-07-21_YB-BDq2",2013-07-20,2013-07-21,"YB","BD","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Unknown","Finished","Full","Full","10%",""
+"2013-07-21_YB-BDq3",2013-07-20,2013-07-21,"YB","BD","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Unknown","Finished","Full","Full","10%",""
+"2013-07-21_YB-BDq5",2013-07-20,2013-07-21,"YB","BD","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","4%","Counts low due to blur"
+"2013-07-21_YB-BDq7",2013-07-20,2013-07-21,"YB","BD","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","7%","Counts low due to blur. Most of the algae is a thin film."
+"2013-07-21_YB-BDq2",2013-07-20,2013-07-21,"YB","BD","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Unknown","Finished","Full","Full","10%",""
+"2013-07-21_YB-BDq3",2013-07-20,2013-07-21,"YB","BD","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Unknown","Finished","Full","Full","10%",""
+"2013-07-21_YB-BDq5",2013-07-20,2013-07-21,"YB","BD","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","4%","Counts low due to blur"
+"2013-07-21_YB-BDq7",2013-07-20,2013-07-21,"YB","BD","7","Sc","Semibalanus_cariosus","Type 5",3,0.0875,34.2857142857143,NA,"Julia Bingham","Finished","Full","Full","7%","Counts low due to blur. Most of the algae is a thin film."
+"2013-07-21_YB-BDq2",2013-07-20,2013-07-21,"YB","BD","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Unknown","Finished","Full","Full","10%",""
+"2013-07-21_YB-BDq3",2013-07-20,2013-07-21,"YB","BD","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Unknown","Finished","Full","Full","10%",""
+"2013-07-21_YB-BDq5",2013-07-20,2013-07-21,"YB","BD","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","4%","Counts low due to blur"
+"2013-07-21_YB-BDq7",2013-07-20,2013-07-21,"YB","BD","7","ScD","Semibalanus_cariosus_(dead)","Type 6",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","7%","Counts low due to blur. Most of the algae is a thin film."
+"2013-07-21_YB-BEq2",2013-07-20,2013-07-21,"YB","BE","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","~15% byssal threads"
+"2013-07-21_YB-BEq3",2013-07-20,2013-07-21,"YB","BE","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~5% byssal threads"
+"2013-07-21_YB-BEq6",2013-07-20,2013-07-21,"YB","BE","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","~5% byssal threads"
+"2013-07-21_YB-BEq2",2013-07-20,2013-07-21,"YB","BE","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","~15% byssal threads"
+"2013-07-21_YB-BEq3",2013-07-20,2013-07-21,"YB","BE","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~5% byssal threads"
+"2013-07-21_YB-BEq6",2013-07-20,2013-07-21,"YB","BE","6","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","~5% byssal threads"
+"2013-07-21_YB-BEq2",2013-07-20,2013-07-21,"YB","BE","2","Bg","Balanus_glandula","Type 1",37,0.0875,422.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","2%","~15% byssal threads"
+"2013-07-21_YB-BEq3",2013-07-20,2013-07-21,"YB","BE","3","Bg","Balanus_glandula","Type 1",63,0.0875,720,NA,"Beatriz Vaca","Finished","Full","Full","1%","~5% byssal threads"
+"2013-07-21_YB-BEq6",2013-07-20,2013-07-21,"YB","BE","6","Bg","Balanus_glandula","Type 1",116,0.0875,1325.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","2%","~5% byssal threads"
+"2013-07-21_YB-BEq2",2013-07-20,2013-07-21,"YB","BE","2","BgD","Balanus_glandula_(dead)","Type 2",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","2%","~15% byssal threads"
+"2013-07-21_YB-BEq3",2013-07-20,2013-07-21,"YB","BE","3","BgD","Balanus_glandula_(dead)","Type 2",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","1%","~5% byssal threads"
+"2013-07-21_YB-BEq6",2013-07-20,2013-07-21,"YB","BE","6","BgD","Balanus_glandula_(dead)","Type 2",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","2%","~5% byssal threads"
+"2013-07-21_YB-BEq2",2013-07-20,2013-07-21,"YB","BE","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","~15% byssal threads"
+"2013-07-21_YB-BEq3",2013-07-20,2013-07-21,"YB","BE","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~5% byssal threads"
+"2013-07-21_YB-BEq6",2013-07-20,2013-07-21,"YB","BE","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","~5% byssal threads"
+"2013-07-21_YB-BEq2",2013-07-20,2013-07-21,"YB","BE","2","Cth","Chthamalus_dalli","Type 3",67,0.0875,765.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","2%","~15% byssal threads"
+"2013-07-21_YB-BEq3",2013-07-20,2013-07-21,"YB","BE","3","Cth","Chthamalus_dalli","Type 3",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","1%","~5% byssal threads"
+"2013-07-21_YB-BEq6",2013-07-20,2013-07-21,"YB","BE","6","Cth","Chthamalus_dalli","Type 3",13,0.0875,148.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","2%","~5% byssal threads"
+"2013-07-21_YB-BEq2",2013-07-20,2013-07-21,"YB","BE","2","CthD","Chthamalus_dalli (dead)","Type 4",21,0.0875,240,NA,"Beatriz Vaca","Finished","Full","Full","2%","~15% byssal threads"
+"2013-07-21_YB-BEq3",2013-07-20,2013-07-21,"YB","BE","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~5% byssal threads"
+"2013-07-21_YB-BEq6",2013-07-20,2013-07-21,"YB","BE","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","~5% byssal threads"
+"2013-07-21_YB-BEq2",2013-07-20,2013-07-21,"YB","BE","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","~15% byssal threads"
+"2013-07-21_YB-BEq3",2013-07-20,2013-07-21,"YB","BE","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~5% byssal threads"
+"2013-07-21_YB-BEq6",2013-07-20,2013-07-21,"YB","BE","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","~5% byssal threads"
+"2013-07-21_YB-BEq2",2013-07-20,2013-07-21,"YB","BE","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","~15% byssal threads"
+"2013-07-21_YB-BEq3",2013-07-20,2013-07-21,"YB","BE","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~5% byssal threads"
+"2013-07-21_YB-BEq6",2013-07-20,2013-07-21,"YB","BE","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","~5% byssal threads"
+"2013-07-21_YB-BEq2",2013-07-20,2013-07-21,"YB","BE","2","Lim","Limpets","Type 12",12,0.0875,137.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","2%","~15% byssal threads"
+"2013-07-21_YB-BEq3",2013-07-20,2013-07-21,"YB","BE","3","Lim","Limpets","Type 12",30,0.0875,342.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","1%","~5% byssal threads"
+"2013-07-21_YB-BEq6",2013-07-20,2013-07-21,"YB","BE","6","Lim","Limpets","Type 12",27,0.0875,308.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","2%","~5% byssal threads"
+"2013-07-21_YB-BEq2",2013-07-20,2013-07-21,"YB","BE","2","Ls","Littorina_sitkana","Type 13",30,0.0875,342.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","2%","~15% byssal threads"
+"2013-07-21_YB-BEq3",2013-07-20,2013-07-21,"YB","BE","3","Ls","Littorina_sitkana","Type 13",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","1%","~5% byssal threads"
+"2013-07-21_YB-BEq6",2013-07-20,2013-07-21,"YB","BE","6","Ls","Littorina_sitkana","Type 13",23,0.0875,262.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","2%","~5% byssal threads"
+"2013-07-21_YB-BEq2",2013-07-20,2013-07-21,"YB","BE","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","~15% byssal threads"
+"2013-07-21_YB-BEq3",2013-07-20,2013-07-21,"YB","BE","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~5% byssal threads"
+"2013-07-21_YB-BEq6",2013-07-20,2013-07-21,"YB","BE","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","~5% byssal threads"
+"2013-07-21_YB-BEq2",2013-07-20,2013-07-21,"YB","BE","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","~15% byssal threads"
+"2013-07-21_YB-BEq3",2013-07-20,2013-07-21,"YB","BE","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~5% byssal threads"
+"2013-07-21_YB-BEq6",2013-07-20,2013-07-21,"YB","BE","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","~5% byssal threads"
+"2013-07-21_YB-BEq2",2013-07-20,2013-07-21,"YB","BE","2","Myt","Mytilus_spp","Type 7",18,0.0875,205.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","2%","~15% byssal threads"
+"2013-07-21_YB-BEq3",2013-07-20,2013-07-21,"YB","BE","3","Myt","Mytilus_spp","Type 7",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Full","1%","~5% byssal threads"
+"2013-07-21_YB-BEq6",2013-07-20,2013-07-21,"YB","BE","6","Myt","Mytilus_spp","Type 7",23,0.0875,262.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","2%","~5% byssal threads"
+"2013-07-21_YB-BEq2",2013-07-20,2013-07-21,"YB","BE","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","~15% byssal threads"
+"2013-07-21_YB-BEq3",2013-07-20,2013-07-21,"YB","BE","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~5% byssal threads"
+"2013-07-21_YB-BEq6",2013-07-20,2013-07-21,"YB","BE","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","~5% byssal threads"
+"2013-07-21_YB-BEq2",2013-07-20,2013-07-21,"YB","BE","2","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","~15% byssal threads"
+"2013-07-21_YB-BEq3",2013-07-20,2013-07-21,"YB","BE","3","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~5% byssal threads"
+"2013-07-21_YB-BEq6",2013-07-20,2013-07-21,"YB","BE","6","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","~5% byssal threads"
+"2013-07-21_YB-BEq2",2013-07-20,2013-07-21,"YB","BE","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","~15% byssal threads"
+"2013-07-21_YB-BEq3",2013-07-20,2013-07-21,"YB","BE","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~5% byssal threads"
+"2013-07-21_YB-BEq6",2013-07-20,2013-07-21,"YB","BE","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","~5% byssal threads"
+"2013-07-21_YB-BEq2",2013-07-20,2013-07-21,"YB","BE","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","~15% byssal threads"
+"2013-07-21_YB-BEq3",2013-07-20,2013-07-21,"YB","BE","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~5% byssal threads"
+"2013-07-21_YB-BEq6",2013-07-20,2013-07-21,"YB","BE","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","~5% byssal threads"
+"2013-07-21_YB-BEq2",2013-07-20,2013-07-21,"YB","BE","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","~15% byssal threads"
+"2013-07-21_YB-BEq3",2013-07-20,2013-07-21,"YB","BE","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~5% byssal threads"
+"2013-07-21_YB-BEq6",2013-07-20,2013-07-21,"YB","BE","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","~5% byssal threads"
+"2013-07-21_YB-BEq2",2013-07-20,2013-07-21,"YB","BE","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","~15% byssal threads"
+"2013-07-21_YB-BEq3",2013-07-20,2013-07-21,"YB","BE","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~5% byssal threads"
+"2013-07-21_YB-BEq6",2013-07-20,2013-07-21,"YB","BE","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","~5% byssal threads"
+"2013-07-21_YB-BEq2",2013-07-20,2013-07-21,"YB","BE","2","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","~15% byssal threads"
+"2013-07-21_YB-BEq3",2013-07-20,2013-07-21,"YB","BE","3","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~5% byssal threads"
+"2013-07-21_YB-BEq6",2013-07-20,2013-07-21,"YB","BE","6","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","~5% byssal threads"
+"2013-07-21_YB-BEq2",2013-07-20,2013-07-21,"YB","BE","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","~15% byssal threads"
+"2013-07-21_YB-BEq3",2013-07-20,2013-07-21,"YB","BE","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~5% byssal threads"
+"2013-07-21_YB-BEq6",2013-07-20,2013-07-21,"YB","BE","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","~5% byssal threads"
+"2013-07-21_YB-BEq2",2013-07-20,2013-07-21,"YB","BE","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","~15% byssal threads"
+"2013-07-21_YB-BEq3",2013-07-20,2013-07-21,"YB","BE","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~5% byssal threads"
+"2013-07-21_YB-BEq6",2013-07-20,2013-07-21,"YB","BE","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","~5% byssal threads"
+"2013-07-21_YB-BEq2",2013-07-20,2013-07-21,"YB","BE","2","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","~15% byssal threads"
+"2013-07-21_YB-BEq3",2013-07-20,2013-07-21,"YB","BE","3","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~5% byssal threads"
+"2013-07-21_YB-BEq6",2013-07-20,2013-07-21,"YB","BE","6","Pp","Pollicipes_polymerus","Type 11",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","2%","~5% byssal threads"
+"2013-07-21_YB-BEq2",2013-07-20,2013-07-21,"YB","BE","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","~15% byssal threads"
+"2013-07-21_YB-BEq3",2013-07-20,2013-07-21,"YB","BE","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~5% byssal threads"
+"2013-07-21_YB-BEq6",2013-07-20,2013-07-21,"YB","BE","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","~5% byssal threads"
+"2013-07-21_YB-BEq2",2013-07-20,2013-07-21,"YB","BE","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","~15% byssal threads"
+"2013-07-21_YB-BEq3",2013-07-20,2013-07-21,"YB","BE","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~5% byssal threads"
+"2013-07-21_YB-BEq6",2013-07-20,2013-07-21,"YB","BE","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","~5% byssal threads"
+"2013-07-21_YB-BEq2",2013-07-20,2013-07-21,"YB","BE","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","~15% byssal threads"
+"2013-07-21_YB-BEq3",2013-07-20,2013-07-21,"YB","BE","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~5% byssal threads"
+"2013-07-21_YB-BEq6",2013-07-20,2013-07-21,"YB","BE","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","~5% byssal threads"
+"2013-07-21_YB-BFq1",2013-07-20,2013-07-21,"YB","BF","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to byssal threads. ~15% byssal threads."
+"2013-07-21_YB-BFq4",2013-07-20,2013-07-21,"YB","BF","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%","~10% byssal threads"
+"2013-07-21_YB-BFq9",2013-07-20,2013-07-21,"YB","BF","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~10% byssal threads"
+"2013-07-21_YB-BFq1",2013-07-20,2013-07-21,"YB","BF","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to byssal threads. ~15% byssal threads."
+"2013-07-21_YB-BFq4",2013-07-20,2013-07-21,"YB","BF","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%","~10% byssal threads"
+"2013-07-21_YB-BFq9",2013-07-20,2013-07-21,"YB","BF","9","Ae","Anemones","Type 14",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","1%","~10% byssal threads"
+"2013-07-21_YB-BFq1",2013-07-20,2013-07-21,"YB","BF","1","Bg","Balanus_glandula","Type 1",148,0.0875,1691.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to byssal threads. ~15% byssal threads."
+"2013-07-21_YB-BFq4",2013-07-20,2013-07-21,"YB","BF","4","Bg","Balanus_glandula","Type 1",41,0.0875,468.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","0%","~10% byssal threads"
+"2013-07-21_YB-BFq9",2013-07-20,2013-07-21,"YB","BF","9","Bg","Balanus_glandula","Type 1",250,0.0875,2857.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","1%","~10% byssal threads"
+"2013-07-21_YB-BFq1",2013-07-20,2013-07-21,"YB","BF","1","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to byssal threads. ~15% byssal threads."
+"2013-07-21_YB-BFq4",2013-07-20,2013-07-21,"YB","BF","4","BgD","Balanus_glandula_(dead)","Type 2",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","0%","~10% byssal threads"
+"2013-07-21_YB-BFq9",2013-07-20,2013-07-21,"YB","BF","9","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~10% byssal threads"
+"2013-07-21_YB-BFq1",2013-07-20,2013-07-21,"YB","BF","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to byssal threads. ~15% byssal threads."
+"2013-07-21_YB-BFq4",2013-07-20,2013-07-21,"YB","BF","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%","~10% byssal threads"
+"2013-07-21_YB-BFq9",2013-07-20,2013-07-21,"YB","BF","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~10% byssal threads"
+"2013-07-21_YB-BFq1",2013-07-20,2013-07-21,"YB","BF","1","Cth","Chthamalus_dalli","Type 3",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to byssal threads. ~15% byssal threads."
+"2013-07-21_YB-BFq4",2013-07-20,2013-07-21,"YB","BF","4","Cth","Chthamalus_dalli","Type 3",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","0%","~10% byssal threads"
+"2013-07-21_YB-BFq9",2013-07-20,2013-07-21,"YB","BF","9","Cth","Chthamalus_dalli","Type 3",11,0.0875,125.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","1%","~10% byssal threads"
+"2013-07-21_YB-BFq1",2013-07-20,2013-07-21,"YB","BF","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to byssal threads. ~15% byssal threads."
+"2013-07-21_YB-BFq4",2013-07-20,2013-07-21,"YB","BF","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%","~10% byssal threads"
+"2013-07-21_YB-BFq9",2013-07-20,2013-07-21,"YB","BF","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~10% byssal threads"
+"2013-07-21_YB-BFq1",2013-07-20,2013-07-21,"YB","BF","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to byssal threads. ~15% byssal threads."
+"2013-07-21_YB-BFq4",2013-07-20,2013-07-21,"YB","BF","4","Emp","Emplectonema worm","Type 23",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","0%","~10% byssal threads"
+"2013-07-21_YB-BFq9",2013-07-20,2013-07-21,"YB","BF","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~10% byssal threads"
+"2013-07-21_YB-BFq1",2013-07-20,2013-07-21,"YB","BF","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to byssal threads. ~15% byssal threads."
+"2013-07-21_YB-BFq4",2013-07-20,2013-07-21,"YB","BF","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%","~10% byssal threads"
+"2013-07-21_YB-BFq9",2013-07-20,2013-07-21,"YB","BF","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~10% byssal threads"
+"2013-07-21_YB-BFq1",2013-07-20,2013-07-21,"YB","BF","1","Lim","Limpets","Type 12",38,0.0875,434.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to byssal threads. ~15% byssal threads."
+"2013-07-21_YB-BFq4",2013-07-20,2013-07-21,"YB","BF","4","Lim","Limpets","Type 12",23,0.0875,262.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","0%","~10% byssal threads"
+"2013-07-21_YB-BFq9",2013-07-20,2013-07-21,"YB","BF","9","Lim","Limpets","Type 12",45,0.0875,514.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","1%","~10% byssal threads"
+"2013-07-21_YB-BFq1",2013-07-20,2013-07-21,"YB","BF","1","Ls","Littorina_sitkana","Type 13",18,0.0875,205.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to byssal threads. ~15% byssal threads."
+"2013-07-21_YB-BFq4",2013-07-20,2013-07-21,"YB","BF","4","Ls","Littorina_sitkana","Type 13",11,0.0875,125.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","0%","~10% byssal threads"
+"2013-07-21_YB-BFq9",2013-07-20,2013-07-21,"YB","BF","9","Ls","Littorina_sitkana","Type 13",63,0.0875,720,NA,"Beatriz Vaca","Finished","Full","Full","1%","~10% byssal threads"
+"2013-07-21_YB-BFq1",2013-07-20,2013-07-21,"YB","BF","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to byssal threads. ~15% byssal threads."
+"2013-07-21_YB-BFq4",2013-07-20,2013-07-21,"YB","BF","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%","~10% byssal threads"
+"2013-07-21_YB-BFq9",2013-07-20,2013-07-21,"YB","BF","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~10% byssal threads"
+"2013-07-21_YB-BFq1",2013-07-20,2013-07-21,"YB","BF","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to byssal threads. ~15% byssal threads."
+"2013-07-21_YB-BFq4",2013-07-20,2013-07-21,"YB","BF","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%","~10% byssal threads"
+"2013-07-21_YB-BFq9",2013-07-20,2013-07-21,"YB","BF","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~10% byssal threads"
+"2013-07-21_YB-BFq1",2013-07-20,2013-07-21,"YB","BF","1","Myt","Mytilus_spp","Type 7",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to byssal threads. ~15% byssal threads."
+"2013-07-21_YB-BFq4",2013-07-20,2013-07-21,"YB","BF","4","Myt","Mytilus_spp","Type 7",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","0%","~10% byssal threads"
+"2013-07-21_YB-BFq9",2013-07-20,2013-07-21,"YB","BF","9","Myt","Mytilus_spp","Type 7",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","1%","~10% byssal threads"
+"2013-07-21_YB-BFq1",2013-07-20,2013-07-21,"YB","BF","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to byssal threads. ~15% byssal threads."
+"2013-07-21_YB-BFq4",2013-07-20,2013-07-21,"YB","BF","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%","~10% byssal threads"
+"2013-07-21_YB-BFq9",2013-07-20,2013-07-21,"YB","BF","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~10% byssal threads"
+"2013-07-21_YB-BFq1",2013-07-20,2013-07-21,"YB","BF","1","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to byssal threads. ~15% byssal threads."
+"2013-07-21_YB-BFq4",2013-07-20,2013-07-21,"YB","BF","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%","~10% byssal threads"
+"2013-07-21_YB-BFq9",2013-07-20,2013-07-21,"YB","BF","9","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~10% byssal threads"
+"2013-07-21_YB-BFq1",2013-07-20,2013-07-21,"YB","BF","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to byssal threads. ~15% byssal threads."
+"2013-07-21_YB-BFq4",2013-07-20,2013-07-21,"YB","BF","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%","~10% byssal threads"
+"2013-07-21_YB-BFq9",2013-07-20,2013-07-21,"YB","BF","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~10% byssal threads"
+"2013-07-21_YB-BFq1",2013-07-20,2013-07-21,"YB","BF","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to byssal threads. ~15% byssal threads."
+"2013-07-21_YB-BFq4",2013-07-20,2013-07-21,"YB","BF","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%","~10% byssal threads"
+"2013-07-21_YB-BFq9",2013-07-20,2013-07-21,"YB","BF","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~10% byssal threads"
+"2013-07-21_YB-BFq1",2013-07-20,2013-07-21,"YB","BF","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to byssal threads. ~15% byssal threads."
+"2013-07-21_YB-BFq4",2013-07-20,2013-07-21,"YB","BF","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%","~10% byssal threads"
+"2013-07-21_YB-BFq9",2013-07-20,2013-07-21,"YB","BF","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~10% byssal threads"
+"2013-07-21_YB-BFq1",2013-07-20,2013-07-21,"YB","BF","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to byssal threads. ~15% byssal threads."
+"2013-07-21_YB-BFq4",2013-07-20,2013-07-21,"YB","BF","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%","~10% byssal threads"
+"2013-07-21_YB-BFq9",2013-07-20,2013-07-21,"YB","BF","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~10% byssal threads"
+"2013-07-21_YB-BFq1",2013-07-20,2013-07-21,"YB","BF","1","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to byssal threads. ~15% byssal threads."
+"2013-07-21_YB-BFq4",2013-07-20,2013-07-21,"YB","BF","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%","~10% byssal threads"
+"2013-07-21_YB-BFq9",2013-07-20,2013-07-21,"YB","BF","9","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","1%","~10% byssal threads"
+"2013-07-21_YB-BFq1",2013-07-20,2013-07-21,"YB","BF","1","Wor","Other_worm spp.","Type 25",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to byssal threads. ~15% byssal threads."
+"2013-07-21_YB-BFq4",2013-07-20,2013-07-21,"YB","BF","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%","~10% byssal threads"
+"2013-07-21_YB-BFq9",2013-07-20,2013-07-21,"YB","BF","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~10% byssal threads"
+"2013-07-21_YB-BFq1",2013-07-20,2013-07-21,"YB","BF","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to byssal threads. ~15% byssal threads."
+"2013-07-21_YB-BFq4",2013-07-20,2013-07-21,"YB","BF","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%","~10% byssal threads"
+"2013-07-21_YB-BFq9",2013-07-20,2013-07-21,"YB","BF","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~10% byssal threads"
+"2013-07-21_YB-BFq1",2013-07-20,2013-07-21,"YB","BF","1","Pp","Pollicipes_polymerus","Type 11",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to byssal threads. ~15% byssal threads."
+"2013-07-21_YB-BFq4",2013-07-20,2013-07-21,"YB","BF","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%","~10% byssal threads"
+"2013-07-21_YB-BFq9",2013-07-20,2013-07-21,"YB","BF","9","Pp","Pollicipes_polymerus","Type 11",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","1%","~10% byssal threads"
+"2013-07-21_YB-BFq1",2013-07-20,2013-07-21,"YB","BF","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to byssal threads. ~15% byssal threads."
+"2013-07-21_YB-BFq4",2013-07-20,2013-07-21,"YB","BF","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%","~10% byssal threads"
+"2013-07-21_YB-BFq9",2013-07-20,2013-07-21,"YB","BF","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~10% byssal threads"
+"2013-07-21_YB-BFq1",2013-07-20,2013-07-21,"YB","BF","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to byssal threads. ~15% byssal threads."
+"2013-07-21_YB-BFq4",2013-07-20,2013-07-21,"YB","BF","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%","~10% byssal threads"
+"2013-07-21_YB-BFq9",2013-07-20,2013-07-21,"YB","BF","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~10% byssal threads"
+"2013-07-21_YB-BFq1",2013-07-20,2013-07-21,"YB","BF","1","ScD","Semibalanus_cariosus_(dead)","Type 6",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to byssal threads. ~15% byssal threads."
+"2013-07-21_YB-BFq4",2013-07-20,2013-07-21,"YB","BF","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%","~10% byssal threads"
+"2013-07-21_YB-BFq9",2013-07-20,2013-07-21,"YB","BF","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~10% byssal threads"
+"2013-07-20_YB-Cq1",2013-07-20,2013-07-20,"YB","C","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey);"
+"2013-07-20_YB-Cq2",2013-07-20,2013-07-20,"YB","C","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey);"
+"2013-07-20_YB-Cq3",2013-07-20,2013-07-20,"YB","C","3","Alg","Algae","Type 19",28,0.0875,320,NA,"Julia Bingham","Finished","Full","Full","10%","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Cq4",2013-07-20,2013-07-20,"YB","C","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey);"
+"2013-07-20_YB-Cq5",2013-07-20,2013-07-20,"YB","C","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%","used uncropped picture for barnacles due to low density (preliminary survey); blur; ~30% mytilus byssal threads coverage"
+"2013-07-20_YB-Cq6",2013-07-20,2013-07-20,"YB","C","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density"
+"2013-07-20_YB-Cq7",2013-07-20,2013-07-20,"YB","C","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%","used uncropped picture for barnacles due to low density; ~30% coverage by mytilus byssal threads; 15% covered in water, couldn't see species below"
+"2013-07-20_YB-Cq8",2013-07-20,2013-07-20,"YB","C","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density; high density of limpets; 3 Nucella egg sacs"
+"2013-07-20_YB-Cq9",2013-07-20,2013-07-20,"YB","C","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%","used uncropped picture for barnacles due to low density; nucella egg sacs counted as #26; ~40% covered by mytilus byssal threads"
+"2013-07-20_YB-Cq1",2013-07-20,2013-07-20,"YB","C","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey);"
+"2013-07-20_YB-Cq2",2013-07-20,2013-07-20,"YB","C","2","Ae","Anemones","Type 14",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey);"
+"2013-07-20_YB-Cq3",2013-07-20,2013-07-20,"YB","C","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","10%","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Cq4",2013-07-20,2013-07-20,"YB","C","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey);"
+"2013-07-20_YB-Cq5",2013-07-20,2013-07-20,"YB","C","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%","used uncropped picture for barnacles due to low density (preliminary survey); blur; ~30% mytilus byssal threads coverage"
+"2013-07-20_YB-Cq6",2013-07-20,2013-07-20,"YB","C","6","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density"
+"2013-07-20_YB-Cq7",2013-07-20,2013-07-20,"YB","C","7","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%","used uncropped picture for barnacles due to low density; ~30% coverage by mytilus byssal threads; 15% covered in water, couldn't see species below"
+"2013-07-20_YB-Cq8",2013-07-20,2013-07-20,"YB","C","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density; high density of limpets; 3 Nucella egg sacs"
+"2013-07-20_YB-Cq9",2013-07-20,2013-07-20,"YB","C","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%","used uncropped picture for barnacles due to low density; nucella egg sacs counted as #26; ~40% covered by mytilus byssal threads"
+"2013-07-20_YB-Cq1",2013-07-20,2013-07-20,"YB","C","1","Bg","Balanus_glandula","Type 1",13,0.0875,148.571428571429,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey);"
+"2013-07-20_YB-Cq2",2013-07-20,2013-07-20,"YB","C","2","Bg","Balanus_glandula","Type 1",151,0.0875,1725.71428571429,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey);"
+"2013-07-20_YB-Cq3",2013-07-20,2013-07-20,"YB","C","3","Bg","Balanus_glandula","Type 1",25,0.0875,285.714285714286,NA,"Julia Bingham","Finished","Full","Full","10%","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Cq4",2013-07-20,2013-07-20,"YB","C","4","Bg","Balanus_glandula","Type 1",27,0.0875,308.571428571429,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey);"
+"2013-07-20_YB-Cq5",2013-07-20,2013-07-20,"YB","C","5","Bg","Balanus_glandula","Type 1",67,0.0875,765.714285714286,NA,"Julia Bingham","Finished","Full","Full","15%","used uncropped picture for barnacles due to low density (preliminary survey); blur; ~30% mytilus byssal threads coverage"
+"2013-07-20_YB-Cq6",2013-07-20,2013-07-20,"YB","C","6","Bg","Balanus_glandula","Type 1",70,0.0875,800,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density"
+"2013-07-20_YB-Cq7",2013-07-20,2013-07-20,"YB","C","7","Bg","Balanus_glandula","Type 1",75,0.0875,857.142857142857,NA,"Julia Bingham","Finished","Full","Full","5%","used uncropped picture for barnacles due to low density; ~30% coverage by mytilus byssal threads; 15% covered in water, couldn't see species below"
+"2013-07-20_YB-Cq8",2013-07-20,2013-07-20,"YB","C","8","Bg","Balanus_glandula","Type 1",148,0.0875,1691.42857142857,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density; high density of limpets; 3 Nucella egg sacs"
+"2013-07-20_YB-Cq9",2013-07-20,2013-07-20,"YB","C","9","Bg","Balanus_glandula","Type 1",17,0.0875,194.285714285714,NA,"Julia Bingham","Finished","Full","Full","5%","used uncropped picture for barnacles due to low density; nucella egg sacs counted as #26; ~40% covered by mytilus byssal threads"
+"2013-07-20_YB-Cq1",2013-07-20,2013-07-20,"YB","C","1","BgD","Balanus_glandula_(dead)","Type 2",8,0.0875,91.4285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey);"
+"2013-07-20_YB-Cq2",2013-07-20,2013-07-20,"YB","C","2","BgD","Balanus_glandula_(dead)","Type 2",101,0.0875,1154.28571428571,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey);"
+"2013-07-20_YB-Cq3",2013-07-20,2013-07-20,"YB","C","3","BgD","Balanus_glandula_(dead)","Type 2",37,0.0875,422.857142857143,NA,"Julia Bingham","Finished","Full","Full","10%","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Cq4",2013-07-20,2013-07-20,"YB","C","4","BgD","Balanus_glandula_(dead)","Type 2",27,0.0875,308.571428571429,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey);"
+"2013-07-20_YB-Cq5",2013-07-20,2013-07-20,"YB","C","5","BgD","Balanus_glandula_(dead)","Type 2",73,0.0875,834.285714285714,NA,"Julia Bingham","Finished","Full","Full","15%","used uncropped picture for barnacles due to low density (preliminary survey); blur; ~30% mytilus byssal threads coverage"
+"2013-07-20_YB-Cq6",2013-07-20,2013-07-20,"YB","C","6","BgD","Balanus_glandula_(dead)","Type 2",65,0.0875,742.857142857143,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density"
+"2013-07-20_YB-Cq7",2013-07-20,2013-07-20,"YB","C","7","BgD","Balanus_glandula_(dead)","Type 2",82,0.0875,937.142857142857,NA,"Julia Bingham","Finished","Full","Full","5%","used uncropped picture for barnacles due to low density; ~30% coverage by mytilus byssal threads; 15% covered in water, couldn't see species below"
+"2013-07-20_YB-Cq8",2013-07-20,2013-07-20,"YB","C","8","BgD","Balanus_glandula_(dead)","Type 2",63,0.0875,720,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density; high density of limpets; 3 Nucella egg sacs"
+"2013-07-20_YB-Cq9",2013-07-20,2013-07-20,"YB","C","9","BgD","Balanus_glandula_(dead)","Type 2",20,0.0875,228.571428571429,NA,"Julia Bingham","Finished","Full","Full","5%","used uncropped picture for barnacles due to low density; nucella egg sacs counted as #26; ~40% covered by mytilus byssal threads"
+"2013-07-20_YB-Cq1",2013-07-20,2013-07-20,"YB","C","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey);"
+"2013-07-20_YB-Cq2",2013-07-20,2013-07-20,"YB","C","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey);"
+"2013-07-20_YB-Cq3",2013-07-20,2013-07-20,"YB","C","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","10%","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Cq4",2013-07-20,2013-07-20,"YB","C","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey);"
+"2013-07-20_YB-Cq5",2013-07-20,2013-07-20,"YB","C","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%","used uncropped picture for barnacles due to low density (preliminary survey); blur; ~30% mytilus byssal threads coverage"
+"2013-07-20_YB-Cq6",2013-07-20,2013-07-20,"YB","C","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density"
+"2013-07-20_YB-Cq7",2013-07-20,2013-07-20,"YB","C","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%","used uncropped picture for barnacles due to low density; ~30% coverage by mytilus byssal threads; 15% covered in water, couldn't see species below"
+"2013-07-20_YB-Cq8",2013-07-20,2013-07-20,"YB","C","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density; high density of limpets; 3 Nucella egg sacs"
+"2013-07-20_YB-Cq9",2013-07-20,2013-07-20,"YB","C","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%","used uncropped picture for barnacles due to low density; nucella egg sacs counted as #26; ~40% covered by mytilus byssal threads"
+"2013-07-20_YB-Cq1",2013-07-20,2013-07-20,"YB","C","1","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey);"
+"2013-07-20_YB-Cq2",2013-07-20,2013-07-20,"YB","C","2","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey);"
+"2013-07-20_YB-Cq3",2013-07-20,2013-07-20,"YB","C","3","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","10%","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Cq4",2013-07-20,2013-07-20,"YB","C","4","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey);"
+"2013-07-20_YB-Cq5",2013-07-20,2013-07-20,"YB","C","5","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%","used uncropped picture for barnacles due to low density (preliminary survey); blur; ~30% mytilus byssal threads coverage"
+"2013-07-20_YB-Cq6",2013-07-20,2013-07-20,"YB","C","6","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density"
+"2013-07-20_YB-Cq7",2013-07-20,2013-07-20,"YB","C","7","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%","used uncropped picture for barnacles due to low density; ~30% coverage by mytilus byssal threads; 15% covered in water, couldn't see species below"
+"2013-07-20_YB-Cq8",2013-07-20,2013-07-20,"YB","C","8","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density; high density of limpets; 3 Nucella egg sacs"
+"2013-07-20_YB-Cq9",2013-07-20,2013-07-20,"YB","C","9","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%","used uncropped picture for barnacles due to low density; nucella egg sacs counted as #26; ~40% covered by mytilus byssal threads"
+"2013-07-20_YB-Cq1",2013-07-20,2013-07-20,"YB","C","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey);"
+"2013-07-20_YB-Cq2",2013-07-20,2013-07-20,"YB","C","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey);"
+"2013-07-20_YB-Cq3",2013-07-20,2013-07-20,"YB","C","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","10%","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Cq4",2013-07-20,2013-07-20,"YB","C","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey);"
+"2013-07-20_YB-Cq5",2013-07-20,2013-07-20,"YB","C","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%","used uncropped picture for barnacles due to low density (preliminary survey); blur; ~30% mytilus byssal threads coverage"
+"2013-07-20_YB-Cq6",2013-07-20,2013-07-20,"YB","C","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density"
+"2013-07-20_YB-Cq7",2013-07-20,2013-07-20,"YB","C","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%","used uncropped picture for barnacles due to low density; ~30% coverage by mytilus byssal threads; 15% covered in water, couldn't see species below"
+"2013-07-20_YB-Cq8",2013-07-20,2013-07-20,"YB","C","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density; high density of limpets; 3 Nucella egg sacs"
+"2013-07-20_YB-Cq9",2013-07-20,2013-07-20,"YB","C","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%","used uncropped picture for barnacles due to low density; nucella egg sacs counted as #26; ~40% covered by mytilus byssal threads"
+"2013-07-20_YB-Cq1",2013-07-20,2013-07-20,"YB","C","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey);"
+"2013-07-20_YB-Cq2",2013-07-20,2013-07-20,"YB","C","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey);"
+"2013-07-20_YB-Cq3",2013-07-20,2013-07-20,"YB","C","3","Emp","Emplectonema worm","Type 23",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","10%","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Cq4",2013-07-20,2013-07-20,"YB","C","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey);"
+"2013-07-20_YB-Cq5",2013-07-20,2013-07-20,"YB","C","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%","used uncropped picture for barnacles due to low density (preliminary survey); blur; ~30% mytilus byssal threads coverage"
+"2013-07-20_YB-Cq6",2013-07-20,2013-07-20,"YB","C","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density"
+"2013-07-20_YB-Cq7",2013-07-20,2013-07-20,"YB","C","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%","used uncropped picture for barnacles due to low density; ~30% coverage by mytilus byssal threads; 15% covered in water, couldn't see species below"
+"2013-07-20_YB-Cq8",2013-07-20,2013-07-20,"YB","C","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density; high density of limpets; 3 Nucella egg sacs"
+"2013-07-20_YB-Cq9",2013-07-20,2013-07-20,"YB","C","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%","used uncropped picture for barnacles due to low density; nucella egg sacs counted as #26; ~40% covered by mytilus byssal threads"
+"2013-07-20_YB-Cq1",2013-07-20,2013-07-20,"YB","C","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey);"
+"2013-07-20_YB-Cq2",2013-07-20,2013-07-20,"YB","C","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey);"
+"2013-07-20_YB-Cq3",2013-07-20,2013-07-20,"YB","C","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","10%","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Cq4",2013-07-20,2013-07-20,"YB","C","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey);"
+"2013-07-20_YB-Cq5",2013-07-20,2013-07-20,"YB","C","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%","used uncropped picture for barnacles due to low density (preliminary survey); blur; ~30% mytilus byssal threads coverage"
+"2013-07-20_YB-Cq6",2013-07-20,2013-07-20,"YB","C","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density"
+"2013-07-20_YB-Cq7",2013-07-20,2013-07-20,"YB","C","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%","used uncropped picture for barnacles due to low density; ~30% coverage by mytilus byssal threads; 15% covered in water, couldn't see species below"
+"2013-07-20_YB-Cq8",2013-07-20,2013-07-20,"YB","C","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density; high density of limpets; 3 Nucella egg sacs"
+"2013-07-20_YB-Cq9",2013-07-20,2013-07-20,"YB","C","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%","used uncropped picture for barnacles due to low density; nucella egg sacs counted as #26; ~40% covered by mytilus byssal threads"
+"2013-07-20_YB-Cq1",2013-07-20,2013-07-20,"YB","C","1","Lim","Limpets","Type 12",5,0.0875,57.1428571428571,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey);"
+"2013-07-20_YB-Cq2",2013-07-20,2013-07-20,"YB","C","2","Lim","Limpets","Type 12",24,0.0875,274.285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey);"
+"2013-07-20_YB-Cq3",2013-07-20,2013-07-20,"YB","C","3","Lim","Limpets","Type 12",13,0.0875,148.571428571429,NA,"Julia Bingham","Finished","Full","Full","10%","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Cq4",2013-07-20,2013-07-20,"YB","C","4","Lim","Limpets","Type 12",3,0.0875,34.2857142857143,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey);"
+"2013-07-20_YB-Cq5",2013-07-20,2013-07-20,"YB","C","5","Lim","Limpets","Type 12",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Full","15%","used uncropped picture for barnacles due to low density (preliminary survey); blur; ~30% mytilus byssal threads coverage"
+"2013-07-20_YB-Cq6",2013-07-20,2013-07-20,"YB","C","6","Lim","Limpets","Type 12",9,0.0875,102.857142857143,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density"
+"2013-07-20_YB-Cq7",2013-07-20,2013-07-20,"YB","C","7","Lim","Limpets","Type 12",4,0.0875,45.7142857142857,NA,"Julia Bingham","Finished","Full","Full","5%","used uncropped picture for barnacles due to low density; ~30% coverage by mytilus byssal threads; 15% covered in water, couldn't see species below"
+"2013-07-20_YB-Cq8",2013-07-20,2013-07-20,"YB","C","8","Lim","Limpets","Type 12",57,0.0875,651.428571428571,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density; high density of limpets; 3 Nucella egg sacs"
+"2013-07-20_YB-Cq9",2013-07-20,2013-07-20,"YB","C","9","Lim","Limpets","Type 12",4,0.0875,45.7142857142857,NA,"Julia Bingham","Finished","Full","Full","5%","used uncropped picture for barnacles due to low density; nucella egg sacs counted as #26; ~40% covered by mytilus byssal threads"
+"2013-07-20_YB-Cq1",2013-07-20,2013-07-20,"YB","C","1","Ls","Littorina_sitkana","Type 13",3,0.0875,34.2857142857143,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey);"
+"2013-07-20_YB-Cq2",2013-07-20,2013-07-20,"YB","C","2","Ls","Littorina_sitkana","Type 13",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey);"
+"2013-07-20_YB-Cq3",2013-07-20,2013-07-20,"YB","C","3","Ls","Littorina_sitkana","Type 13",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","10%","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Cq4",2013-07-20,2013-07-20,"YB","C","4","Ls","Littorina_sitkana","Type 13",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey);"
+"2013-07-20_YB-Cq5",2013-07-20,2013-07-20,"YB","C","5","Ls","Littorina_sitkana","Type 13",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%","used uncropped picture for barnacles due to low density (preliminary survey); blur; ~30% mytilus byssal threads coverage"
+"2013-07-20_YB-Cq6",2013-07-20,2013-07-20,"YB","C","6","Ls","Littorina_sitkana","Type 13",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density"
+"2013-07-20_YB-Cq7",2013-07-20,2013-07-20,"YB","C","7","Ls","Littorina_sitkana","Type 13",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","5%","used uncropped picture for barnacles due to low density; ~30% coverage by mytilus byssal threads; 15% covered in water, couldn't see species below"
+"2013-07-20_YB-Cq8",2013-07-20,2013-07-20,"YB","C","8","Ls","Littorina_sitkana","Type 13",13,0.0875,148.571428571429,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density; high density of limpets; 3 Nucella egg sacs"
+"2013-07-20_YB-Cq9",2013-07-20,2013-07-20,"YB","C","9","Ls","Littorina_sitkana","Type 13",4,0.0875,45.7142857142857,NA,"Julia Bingham","Finished","Full","Full","5%","used uncropped picture for barnacles due to low density; nucella egg sacs counted as #26; ~40% covered by mytilus byssal threads"
+"2013-07-20_YB-Cq1",2013-07-20,2013-07-20,"YB","C","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey);"
+"2013-07-20_YB-Cq2",2013-07-20,2013-07-20,"YB","C","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey);"
+"2013-07-20_YB-Cq3",2013-07-20,2013-07-20,"YB","C","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","10%","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Cq4",2013-07-20,2013-07-20,"YB","C","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey);"
+"2013-07-20_YB-Cq5",2013-07-20,2013-07-20,"YB","C","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%","used uncropped picture for barnacles due to low density (preliminary survey); blur; ~30% mytilus byssal threads coverage"
+"2013-07-20_YB-Cq6",2013-07-20,2013-07-20,"YB","C","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density"
+"2013-07-20_YB-Cq7",2013-07-20,2013-07-20,"YB","C","7","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%","used uncropped picture for barnacles due to low density; ~30% coverage by mytilus byssal threads; 15% covered in water, couldn't see species below"
+"2013-07-20_YB-Cq8",2013-07-20,2013-07-20,"YB","C","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density; high density of limpets; 3 Nucella egg sacs"
+"2013-07-20_YB-Cq9",2013-07-20,2013-07-20,"YB","C","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%","used uncropped picture for barnacles due to low density; nucella egg sacs counted as #26; ~40% covered by mytilus byssal threads"
+"2013-07-20_YB-Cq1",2013-07-20,2013-07-20,"YB","C","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey);"
+"2013-07-20_YB-Cq2",2013-07-20,2013-07-20,"YB","C","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey);"
+"2013-07-20_YB-Cq3",2013-07-20,2013-07-20,"YB","C","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","10%","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Cq4",2013-07-20,2013-07-20,"YB","C","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey);"
+"2013-07-20_YB-Cq5",2013-07-20,2013-07-20,"YB","C","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%","used uncropped picture for barnacles due to low density (preliminary survey); blur; ~30% mytilus byssal threads coverage"
+"2013-07-20_YB-Cq6",2013-07-20,2013-07-20,"YB","C","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density"
+"2013-07-20_YB-Cq7",2013-07-20,2013-07-20,"YB","C","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%","used uncropped picture for barnacles due to low density; ~30% coverage by mytilus byssal threads; 15% covered in water, couldn't see species below"
+"2013-07-20_YB-Cq8",2013-07-20,2013-07-20,"YB","C","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density; high density of limpets; 3 Nucella egg sacs"
+"2013-07-20_YB-Cq9",2013-07-20,2013-07-20,"YB","C","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%","used uncropped picture for barnacles due to low density; nucella egg sacs counted as #26; ~40% covered by mytilus byssal threads"
+"2013-07-20_YB-Cq1",2013-07-20,2013-07-20,"YB","C","1","Myt","Mytilus_spp","Type 7",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey);"
+"2013-07-20_YB-Cq2",2013-07-20,2013-07-20,"YB","C","2","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey);"
+"2013-07-20_YB-Cq3",2013-07-20,2013-07-20,"YB","C","3","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","10%","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Cq4",2013-07-20,2013-07-20,"YB","C","4","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey);"
+"2013-07-20_YB-Cq5",2013-07-20,2013-07-20,"YB","C","5","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%","used uncropped picture for barnacles due to low density (preliminary survey); blur; ~30% mytilus byssal threads coverage"
+"2013-07-20_YB-Cq6",2013-07-20,2013-07-20,"YB","C","6","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density"
+"2013-07-20_YB-Cq7",2013-07-20,2013-07-20,"YB","C","7","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%","used uncropped picture for barnacles due to low density; ~30% coverage by mytilus byssal threads; 15% covered in water, couldn't see species below"
+"2013-07-20_YB-Cq8",2013-07-20,2013-07-20,"YB","C","8","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density; high density of limpets; 3 Nucella egg sacs"
+"2013-07-20_YB-Cq9",2013-07-20,2013-07-20,"YB","C","9","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%","used uncropped picture for barnacles due to low density; nucella egg sacs counted as #26; ~40% covered by mytilus byssal threads"
+"2013-07-20_YB-Cq1",2013-07-20,2013-07-20,"YB","C","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey);"
+"2013-07-20_YB-Cq2",2013-07-20,2013-07-20,"YB","C","2","MytD","Mytilus_spp_(dead)","Type 8",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey);"
+"2013-07-20_YB-Cq3",2013-07-20,2013-07-20,"YB","C","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","10%","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Cq4",2013-07-20,2013-07-20,"YB","C","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey);"
+"2013-07-20_YB-Cq5",2013-07-20,2013-07-20,"YB","C","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%","used uncropped picture for barnacles due to low density (preliminary survey); blur; ~30% mytilus byssal threads coverage"
+"2013-07-20_YB-Cq6",2013-07-20,2013-07-20,"YB","C","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density"
+"2013-07-20_YB-Cq7",2013-07-20,2013-07-20,"YB","C","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%","used uncropped picture for barnacles due to low density; ~30% coverage by mytilus byssal threads; 15% covered in water, couldn't see species below"
+"2013-07-20_YB-Cq8",2013-07-20,2013-07-20,"YB","C","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density; high density of limpets; 3 Nucella egg sacs"
+"2013-07-20_YB-Cq9",2013-07-20,2013-07-20,"YB","C","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%","used uncropped picture for barnacles due to low density; nucella egg sacs counted as #26; ~40% covered by mytilus byssal threads"
+"2013-07-20_YB-Cq1",2013-07-20,2013-07-20,"YB","C","1","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey);"
+"2013-07-20_YB-Cq2",2013-07-20,2013-07-20,"YB","C","2","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey);"
+"2013-07-20_YB-Cq3",2013-07-20,2013-07-20,"YB","C","3","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","10%","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Cq4",2013-07-20,2013-07-20,"YB","C","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey);"
+"2013-07-20_YB-Cq5",2013-07-20,2013-07-20,"YB","C","5","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%","used uncropped picture for barnacles due to low density (preliminary survey); blur; ~30% mytilus byssal threads coverage"
+"2013-07-20_YB-Cq6",2013-07-20,2013-07-20,"YB","C","6","Mt","Mytilus_trossulus","Type 15",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density"
+"2013-07-20_YB-Cq7",2013-07-20,2013-07-20,"YB","C","7","Mt","Mytilus_trossulus","Type 15",4,0.0875,45.7142857142857,NA,"Julia Bingham","Finished","Full","Full","5%","used uncropped picture for barnacles due to low density; ~30% coverage by mytilus byssal threads; 15% covered in water, couldn't see species below"
+"2013-07-20_YB-Cq8",2013-07-20,2013-07-20,"YB","C","8","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density; high density of limpets; 3 Nucella egg sacs"
+"2013-07-20_YB-Cq9",2013-07-20,2013-07-20,"YB","C","9","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%","used uncropped picture for barnacles due to low density; nucella egg sacs counted as #26; ~40% covered by mytilus byssal threads"
+"2013-07-20_YB-Cq1",2013-07-20,2013-07-20,"YB","C","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey);"
+"2013-07-20_YB-Cq2",2013-07-20,2013-07-20,"YB","C","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey);"
+"2013-07-20_YB-Cq3",2013-07-20,2013-07-20,"YB","C","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","10%","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Cq4",2013-07-20,2013-07-20,"YB","C","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey);"
+"2013-07-20_YB-Cq5",2013-07-20,2013-07-20,"YB","C","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%","used uncropped picture for barnacles due to low density (preliminary survey); blur; ~30% mytilus byssal threads coverage"
+"2013-07-20_YB-Cq6",2013-07-20,2013-07-20,"YB","C","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density"
+"2013-07-20_YB-Cq7",2013-07-20,2013-07-20,"YB","C","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%","used uncropped picture for barnacles due to low density; ~30% coverage by mytilus byssal threads; 15% covered in water, couldn't see species below"
+"2013-07-20_YB-Cq8",2013-07-20,2013-07-20,"YB","C","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density; high density of limpets; 3 Nucella egg sacs"
+"2013-07-20_YB-Cq9",2013-07-20,2013-07-20,"YB","C","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%","used uncropped picture for barnacles due to low density; nucella egg sacs counted as #26; ~40% covered by mytilus byssal threads"
+"2013-07-20_YB-Cq1",2013-07-20,2013-07-20,"YB","C","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey);"
+"2013-07-20_YB-Cq2",2013-07-20,2013-07-20,"YB","C","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey);"
+"2013-07-20_YB-Cq3",2013-07-20,2013-07-20,"YB","C","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","10%","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Cq4",2013-07-20,2013-07-20,"YB","C","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey);"
+"2013-07-20_YB-Cq5",2013-07-20,2013-07-20,"YB","C","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%","used uncropped picture for barnacles due to low density (preliminary survey); blur; ~30% mytilus byssal threads coverage"
+"2013-07-20_YB-Cq6",2013-07-20,2013-07-20,"YB","C","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density"
+"2013-07-20_YB-Cq7",2013-07-20,2013-07-20,"YB","C","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%","used uncropped picture for barnacles due to low density; ~30% coverage by mytilus byssal threads; 15% covered in water, couldn't see species below"
+"2013-07-20_YB-Cq8",2013-07-20,2013-07-20,"YB","C","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density; high density of limpets; 3 Nucella egg sacs"
+"2013-07-20_YB-Cq9",2013-07-20,2013-07-20,"YB","C","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%","used uncropped picture for barnacles due to low density; nucella egg sacs counted as #26; ~40% covered by mytilus byssal threads"
+"2013-07-20_YB-Cq1",2013-07-20,2013-07-20,"YB","C","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey);"
+"2013-07-20_YB-Cq2",2013-07-20,2013-07-20,"YB","C","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey);"
+"2013-07-20_YB-Cq3",2013-07-20,2013-07-20,"YB","C","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","10%","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Cq4",2013-07-20,2013-07-20,"YB","C","4","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey);"
+"2013-07-20_YB-Cq5",2013-07-20,2013-07-20,"YB","C","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%","used uncropped picture for barnacles due to low density (preliminary survey); blur; ~30% mytilus byssal threads coverage"
+"2013-07-20_YB-Cq6",2013-07-20,2013-07-20,"YB","C","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density"
+"2013-07-20_YB-Cq7",2013-07-20,2013-07-20,"YB","C","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%","used uncropped picture for barnacles due to low density; ~30% coverage by mytilus byssal threads; 15% covered in water, couldn't see species below"
+"2013-07-20_YB-Cq8",2013-07-20,2013-07-20,"YB","C","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density; high density of limpets; 3 Nucella egg sacs"
+"2013-07-20_YB-Cq9",2013-07-20,2013-07-20,"YB","C","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%","used uncropped picture for barnacles due to low density; nucella egg sacs counted as #26; ~40% covered by mytilus byssal threads"
+"2013-07-20_YB-Cq1",2013-07-20,2013-07-20,"YB","C","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey);"
+"2013-07-20_YB-Cq2",2013-07-20,2013-07-20,"YB","C","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey);"
+"2013-07-20_YB-Cq3",2013-07-20,2013-07-20,"YB","C","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","10%","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Cq4",2013-07-20,2013-07-20,"YB","C","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey);"
+"2013-07-20_YB-Cq5",2013-07-20,2013-07-20,"YB","C","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%","used uncropped picture for barnacles due to low density (preliminary survey); blur; ~30% mytilus byssal threads coverage"
+"2013-07-20_YB-Cq6",2013-07-20,2013-07-20,"YB","C","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density"
+"2013-07-20_YB-Cq7",2013-07-20,2013-07-20,"YB","C","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%","used uncropped picture for barnacles due to low density; ~30% coverage by mytilus byssal threads; 15% covered in water, couldn't see species below"
+"2013-07-20_YB-Cq8",2013-07-20,2013-07-20,"YB","C","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density; high density of limpets; 3 Nucella egg sacs"
+"2013-07-20_YB-Cq9",2013-07-20,2013-07-20,"YB","C","9","Negg","Nucella_eggs","Type 26",28,0.0875,320,NA,"Julia Bingham","Finished","Full","Full","5%","used uncropped picture for barnacles due to low density; nucella egg sacs counted as #26; ~40% covered by mytilus byssal threads"
+"2013-07-20_YB-Cq1",2013-07-20,2013-07-20,"YB","C","1","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey);"
+"2013-07-20_YB-Cq2",2013-07-20,2013-07-20,"YB","C","2","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey);"
+"2013-07-20_YB-Cq3",2013-07-20,2013-07-20,"YB","C","3","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","10%","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Cq4",2013-07-20,2013-07-20,"YB","C","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey);"
+"2013-07-20_YB-Cq5",2013-07-20,2013-07-20,"YB","C","5","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%","used uncropped picture for barnacles due to low density (preliminary survey); blur; ~30% mytilus byssal threads coverage"
+"2013-07-20_YB-Cq6",2013-07-20,2013-07-20,"YB","C","6","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density"
+"2013-07-20_YB-Cq7",2013-07-20,2013-07-20,"YB","C","7","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","5%","used uncropped picture for barnacles due to low density; ~30% coverage by mytilus byssal threads; 15% covered in water, couldn't see species below"
+"2013-07-20_YB-Cq8",2013-07-20,2013-07-20,"YB","C","8","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density; high density of limpets; 3 Nucella egg sacs"
+"2013-07-20_YB-Cq9",2013-07-20,2013-07-20,"YB","C","9","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%","used uncropped picture for barnacles due to low density; nucella egg sacs counted as #26; ~40% covered by mytilus byssal threads"
+"2013-07-20_YB-Cq1",2013-07-20,2013-07-20,"YB","C","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey);"
+"2013-07-20_YB-Cq2",2013-07-20,2013-07-20,"YB","C","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey);"
+"2013-07-20_YB-Cq3",2013-07-20,2013-07-20,"YB","C","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","10%","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Cq4",2013-07-20,2013-07-20,"YB","C","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey);"
+"2013-07-20_YB-Cq5",2013-07-20,2013-07-20,"YB","C","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%","used uncropped picture for barnacles due to low density (preliminary survey); blur; ~30% mytilus byssal threads coverage"
+"2013-07-20_YB-Cq6",2013-07-20,2013-07-20,"YB","C","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density"
+"2013-07-20_YB-Cq7",2013-07-20,2013-07-20,"YB","C","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%","used uncropped picture for barnacles due to low density; ~30% coverage by mytilus byssal threads; 15% covered in water, couldn't see species below"
+"2013-07-20_YB-Cq8",2013-07-20,2013-07-20,"YB","C","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density; high density of limpets; 3 Nucella egg sacs"
+"2013-07-20_YB-Cq9",2013-07-20,2013-07-20,"YB","C","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%","used uncropped picture for barnacles due to low density; nucella egg sacs counted as #26; ~40% covered by mytilus byssal threads"
+"2013-07-20_YB-Cq1",2013-07-20,2013-07-20,"YB","C","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey);"
+"2013-07-20_YB-Cq2",2013-07-20,2013-07-20,"YB","C","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey);"
+"2013-07-20_YB-Cq3",2013-07-20,2013-07-20,"YB","C","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","10%","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Cq4",2013-07-20,2013-07-20,"YB","C","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey);"
+"2013-07-20_YB-Cq5",2013-07-20,2013-07-20,"YB","C","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%","used uncropped picture for barnacles due to low density (preliminary survey); blur; ~30% mytilus byssal threads coverage"
+"2013-07-20_YB-Cq6",2013-07-20,2013-07-20,"YB","C","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density"
+"2013-07-20_YB-Cq7",2013-07-20,2013-07-20,"YB","C","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%","used uncropped picture for barnacles due to low density; ~30% coverage by mytilus byssal threads; 15% covered in water, couldn't see species below"
+"2013-07-20_YB-Cq8",2013-07-20,2013-07-20,"YB","C","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density; high density of limpets; 3 Nucella egg sacs"
+"2013-07-20_YB-Cq9",2013-07-20,2013-07-20,"YB","C","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%","used uncropped picture for barnacles due to low density; nucella egg sacs counted as #26; ~40% covered by mytilus byssal threads"
+"2013-07-20_YB-Cq1",2013-07-20,2013-07-20,"YB","C","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey);"
+"2013-07-20_YB-Cq2",2013-07-20,2013-07-20,"YB","C","2","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey);"
+"2013-07-20_YB-Cq3",2013-07-20,2013-07-20,"YB","C","3","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","10%","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Cq4",2013-07-20,2013-07-20,"YB","C","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey);"
+"2013-07-20_YB-Cq5",2013-07-20,2013-07-20,"YB","C","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%","used uncropped picture for barnacles due to low density (preliminary survey); blur; ~30% mytilus byssal threads coverage"
+"2013-07-20_YB-Cq6",2013-07-20,2013-07-20,"YB","C","6","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density"
+"2013-07-20_YB-Cq7",2013-07-20,2013-07-20,"YB","C","7","Pp","Pollicipes_polymerus","Type 11",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","5%","used uncropped picture for barnacles due to low density; ~30% coverage by mytilus byssal threads; 15% covered in water, couldn't see species below"
+"2013-07-20_YB-Cq8",2013-07-20,2013-07-20,"YB","C","8","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density; high density of limpets; 3 Nucella egg sacs"
+"2013-07-20_YB-Cq9",2013-07-20,2013-07-20,"YB","C","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%","used uncropped picture for barnacles due to low density; nucella egg sacs counted as #26; ~40% covered by mytilus byssal threads"
+"2013-07-20_YB-Cq1",2013-07-20,2013-07-20,"YB","C","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey);"
+"2013-07-20_YB-Cq2",2013-07-20,2013-07-20,"YB","C","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey);"
+"2013-07-20_YB-Cq3",2013-07-20,2013-07-20,"YB","C","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","10%","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Cq4",2013-07-20,2013-07-20,"YB","C","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey);"
+"2013-07-20_YB-Cq5",2013-07-20,2013-07-20,"YB","C","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%","used uncropped picture for barnacles due to low density (preliminary survey); blur; ~30% mytilus byssal threads coverage"
+"2013-07-20_YB-Cq6",2013-07-20,2013-07-20,"YB","C","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density"
+"2013-07-20_YB-Cq7",2013-07-20,2013-07-20,"YB","C","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%","used uncropped picture for barnacles due to low density; ~30% coverage by mytilus byssal threads; 15% covered in water, couldn't see species below"
+"2013-07-20_YB-Cq8",2013-07-20,2013-07-20,"YB","C","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density; high density of limpets; 3 Nucella egg sacs"
+"2013-07-20_YB-Cq9",2013-07-20,2013-07-20,"YB","C","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%","used uncropped picture for barnacles due to low density; nucella egg sacs counted as #26; ~40% covered by mytilus byssal threads"
+"2013-07-20_YB-Cq1",2013-07-20,2013-07-20,"YB","C","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey);"
+"2013-07-20_YB-Cq2",2013-07-20,2013-07-20,"YB","C","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey);"
+"2013-07-20_YB-Cq3",2013-07-20,2013-07-20,"YB","C","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","10%","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Cq4",2013-07-20,2013-07-20,"YB","C","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey);"
+"2013-07-20_YB-Cq5",2013-07-20,2013-07-20,"YB","C","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%","used uncropped picture for barnacles due to low density (preliminary survey); blur; ~30% mytilus byssal threads coverage"
+"2013-07-20_YB-Cq6",2013-07-20,2013-07-20,"YB","C","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density"
+"2013-07-20_YB-Cq7",2013-07-20,2013-07-20,"YB","C","7","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%","used uncropped picture for barnacles due to low density; ~30% coverage by mytilus byssal threads; 15% covered in water, couldn't see species below"
+"2013-07-20_YB-Cq8",2013-07-20,2013-07-20,"YB","C","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density; high density of limpets; 3 Nucella egg sacs"
+"2013-07-20_YB-Cq9",2013-07-20,2013-07-20,"YB","C","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%","used uncropped picture for barnacles due to low density; nucella egg sacs counted as #26; ~40% covered by mytilus byssal threads"
+"2013-07-20_YB-Cq1",2013-07-20,2013-07-20,"YB","C","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey);"
+"2013-07-20_YB-Cq2",2013-07-20,2013-07-20,"YB","C","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey);"
+"2013-07-20_YB-Cq3",2013-07-20,2013-07-20,"YB","C","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","10%","used uncropped picture for barnacles due to low density (preliminary survey)"
+"2013-07-20_YB-Cq4",2013-07-20,2013-07-20,"YB","C","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density (preliminary survey);"
+"2013-07-20_YB-Cq5",2013-07-20,2013-07-20,"YB","C","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%","used uncropped picture for barnacles due to low density (preliminary survey); blur; ~30% mytilus byssal threads coverage"
+"2013-07-20_YB-Cq6",2013-07-20,2013-07-20,"YB","C","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density"
+"2013-07-20_YB-Cq7",2013-07-20,2013-07-20,"YB","C","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%","used uncropped picture for barnacles due to low density; ~30% coverage by mytilus byssal threads; 15% covered in water, couldn't see species below"
+"2013-07-20_YB-Cq8",2013-07-20,2013-07-20,"YB","C","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","","used uncropped picture for barnacles due to low density; high density of limpets; 3 Nucella egg sacs"
+"2013-07-20_YB-Cq9",2013-07-20,2013-07-20,"YB","C","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%","used uncropped picture for barnacles due to low density; nucella egg sacs counted as #26; ~40% covered by mytilus byssal threads"
+"2013-07-20_YB-Dq1",2013-07-20,2013-07-20,"YB","D","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","1%",""
+"2013-07-20_YB-Dq4",2013-07-20,2013-07-20,"YB","D","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","1%","patch almost entirely bare"
+"2013-07-20_YB-Dq5",2013-07-20,2013-07-20,"YB","D","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq6",2013-07-20,2013-07-20,"YB","D","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq7",2013-07-20,2013-07-20,"YB","D","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq8",2013-07-20,2013-07-20,"YB","D","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq9",2013-07-20,2013-07-20,"YB","D","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq1",2013-07-20,2013-07-20,"YB","D","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","1%",""
+"2013-07-20_YB-Dq4",2013-07-20,2013-07-20,"YB","D","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","1%","patch almost entirely bare"
+"2013-07-20_YB-Dq5",2013-07-20,2013-07-20,"YB","D","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq6",2013-07-20,2013-07-20,"YB","D","6","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq7",2013-07-20,2013-07-20,"YB","D","7","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq8",2013-07-20,2013-07-20,"YB","D","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq9",2013-07-20,2013-07-20,"YB","D","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq1",2013-07-20,2013-07-20,"YB","D","1","Bg","Balanus_glandula","Type 1",61,0.0875,697.142857142857,NA,"Julia Bingham","Finished","Full","Full","1%",""
+"2013-07-20_YB-Dq4",2013-07-20,2013-07-20,"YB","D","4","Bg","Balanus_glandula","Type 1",32,0.0875,365.714285714286,NA,"Julia Bingham","Finished","Full","Full","1%","patch almost entirely bare"
+"2013-07-20_YB-Dq5",2013-07-20,2013-07-20,"YB","D","5","Bg","Balanus_glandula","Type 1",46,0.0875,525.714285714286,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq6",2013-07-20,2013-07-20,"YB","D","6","Bg","Balanus_glandula","Type 1",12,0.0875,137.142857142857,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq7",2013-07-20,2013-07-20,"YB","D","7","Bg","Balanus_glandula","Type 1",25,0.0875,285.714285714286,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq8",2013-07-20,2013-07-20,"YB","D","8","Bg","Balanus_glandula","Type 1",21,0.0875,240,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq9",2013-07-20,2013-07-20,"YB","D","9","Bg","Balanus_glandula","Type 1",67,0.0875,765.714285714286,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq1",2013-07-20,2013-07-20,"YB","D","1","BgD","Balanus_glandula_(dead)","Type 2",30,0.0875,342.857142857143,NA,"Julia Bingham","Finished","Full","Full","1%",""
+"2013-07-20_YB-Dq4",2013-07-20,2013-07-20,"YB","D","4","BgD","Balanus_glandula_(dead)","Type 2",33,0.0875,377.142857142857,NA,"Julia Bingham","Finished","Full","Full","1%","patch almost entirely bare"
+"2013-07-20_YB-Dq5",2013-07-20,2013-07-20,"YB","D","5","BgD","Balanus_glandula_(dead)","Type 2",33,0.0875,377.142857142857,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq6",2013-07-20,2013-07-20,"YB","D","6","BgD","Balanus_glandula_(dead)","Type 2",6,0.0875,68.5714285714286,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq7",2013-07-20,2013-07-20,"YB","D","7","BgD","Balanus_glandula_(dead)","Type 2",28,0.0875,320,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq8",2013-07-20,2013-07-20,"YB","D","8","BgD","Balanus_glandula_(dead)","Type 2",35,0.0875,400,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq9",2013-07-20,2013-07-20,"YB","D","9","BgD","Balanus_glandula_(dead)","Type 2",24,0.0875,274.285714285714,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq1",2013-07-20,2013-07-20,"YB","D","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","1%",""
+"2013-07-20_YB-Dq4",2013-07-20,2013-07-20,"YB","D","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","1%","patch almost entirely bare"
+"2013-07-20_YB-Dq5",2013-07-20,2013-07-20,"YB","D","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq6",2013-07-20,2013-07-20,"YB","D","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq7",2013-07-20,2013-07-20,"YB","D","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq8",2013-07-20,2013-07-20,"YB","D","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq9",2013-07-20,2013-07-20,"YB","D","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq1",2013-07-20,2013-07-20,"YB","D","1","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","1%",""
+"2013-07-20_YB-Dq4",2013-07-20,2013-07-20,"YB","D","4","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","1%","patch almost entirely bare"
+"2013-07-20_YB-Dq5",2013-07-20,2013-07-20,"YB","D","5","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq6",2013-07-20,2013-07-20,"YB","D","6","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq7",2013-07-20,2013-07-20,"YB","D","7","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq8",2013-07-20,2013-07-20,"YB","D","8","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq9",2013-07-20,2013-07-20,"YB","D","9","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq1",2013-07-20,2013-07-20,"YB","D","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","1%",""
+"2013-07-20_YB-Dq4",2013-07-20,2013-07-20,"YB","D","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","1%","patch almost entirely bare"
+"2013-07-20_YB-Dq5",2013-07-20,2013-07-20,"YB","D","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq6",2013-07-20,2013-07-20,"YB","D","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq7",2013-07-20,2013-07-20,"YB","D","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq8",2013-07-20,2013-07-20,"YB","D","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq9",2013-07-20,2013-07-20,"YB","D","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq1",2013-07-20,2013-07-20,"YB","D","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","1%",""
+"2013-07-20_YB-Dq4",2013-07-20,2013-07-20,"YB","D","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","1%","patch almost entirely bare"
+"2013-07-20_YB-Dq5",2013-07-20,2013-07-20,"YB","D","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq6",2013-07-20,2013-07-20,"YB","D","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq7",2013-07-20,2013-07-20,"YB","D","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq8",2013-07-20,2013-07-20,"YB","D","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq9",2013-07-20,2013-07-20,"YB","D","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq1",2013-07-20,2013-07-20,"YB","D","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","1%",""
+"2013-07-20_YB-Dq4",2013-07-20,2013-07-20,"YB","D","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","1%","patch almost entirely bare"
+"2013-07-20_YB-Dq5",2013-07-20,2013-07-20,"YB","D","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq6",2013-07-20,2013-07-20,"YB","D","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq7",2013-07-20,2013-07-20,"YB","D","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq8",2013-07-20,2013-07-20,"YB","D","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq9",2013-07-20,2013-07-20,"YB","D","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq1",2013-07-20,2013-07-20,"YB","D","1","Lim","Limpets","Type 12",8,0.0875,91.4285714285714,NA,"Julia Bingham","Finished","Full","Full","1%",""
+"2013-07-20_YB-Dq4",2013-07-20,2013-07-20,"YB","D","4","Lim","Limpets","Type 12",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","1%","patch almost entirely bare"
+"2013-07-20_YB-Dq5",2013-07-20,2013-07-20,"YB","D","5","Lim","Limpets","Type 12",5,0.0875,57.1428571428571,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq6",2013-07-20,2013-07-20,"YB","D","6","Lim","Limpets","Type 12",8,0.0875,91.4285714285714,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq7",2013-07-20,2013-07-20,"YB","D","7","Lim","Limpets","Type 12",24,0.0875,274.285714285714,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq8",2013-07-20,2013-07-20,"YB","D","8","Lim","Limpets","Type 12",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq9",2013-07-20,2013-07-20,"YB","D","9","Lim","Limpets","Type 12",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq1",2013-07-20,2013-07-20,"YB","D","1","Ls","Littorina_sitkana","Type 13",12,0.0875,137.142857142857,NA,"Julia Bingham","Finished","Full","Full","1%",""
+"2013-07-20_YB-Dq4",2013-07-20,2013-07-20,"YB","D","4","Ls","Littorina_sitkana","Type 13",8,0.0875,91.4285714285714,NA,"Julia Bingham","Finished","Full","Full","1%","patch almost entirely bare"
+"2013-07-20_YB-Dq5",2013-07-20,2013-07-20,"YB","D","5","Ls","Littorina_sitkana","Type 13",10,0.0875,114.285714285714,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq6",2013-07-20,2013-07-20,"YB","D","6","Ls","Littorina_sitkana","Type 13",17,0.0875,194.285714285714,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq7",2013-07-20,2013-07-20,"YB","D","7","Ls","Littorina_sitkana","Type 13",12,0.0875,137.142857142857,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq8",2013-07-20,2013-07-20,"YB","D","8","Ls","Littorina_sitkana","Type 13",13,0.0875,148.571428571429,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq9",2013-07-20,2013-07-20,"YB","D","9","Ls","Littorina_sitkana","Type 13",9,0.0875,102.857142857143,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq1",2013-07-20,2013-07-20,"YB","D","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","1%",""
+"2013-07-20_YB-Dq4",2013-07-20,2013-07-20,"YB","D","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","1%","patch almost entirely bare"
+"2013-07-20_YB-Dq5",2013-07-20,2013-07-20,"YB","D","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq6",2013-07-20,2013-07-20,"YB","D","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq7",2013-07-20,2013-07-20,"YB","D","7","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq8",2013-07-20,2013-07-20,"YB","D","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq9",2013-07-20,2013-07-20,"YB","D","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq1",2013-07-20,2013-07-20,"YB","D","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","1%",""
+"2013-07-20_YB-Dq4",2013-07-20,2013-07-20,"YB","D","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","1%","patch almost entirely bare"
+"2013-07-20_YB-Dq5",2013-07-20,2013-07-20,"YB","D","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq6",2013-07-20,2013-07-20,"YB","D","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq7",2013-07-20,2013-07-20,"YB","D","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq8",2013-07-20,2013-07-20,"YB","D","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq9",2013-07-20,2013-07-20,"YB","D","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq1",2013-07-20,2013-07-20,"YB","D","1","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","1%",""
+"2013-07-20_YB-Dq4",2013-07-20,2013-07-20,"YB","D","4","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","1%","patch almost entirely bare"
+"2013-07-20_YB-Dq5",2013-07-20,2013-07-20,"YB","D","5","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq6",2013-07-20,2013-07-20,"YB","D","6","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq7",2013-07-20,2013-07-20,"YB","D","7","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq8",2013-07-20,2013-07-20,"YB","D","8","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq9",2013-07-20,2013-07-20,"YB","D","9","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq1",2013-07-20,2013-07-20,"YB","D","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","1%",""
+"2013-07-20_YB-Dq4",2013-07-20,2013-07-20,"YB","D","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","1%","patch almost entirely bare"
+"2013-07-20_YB-Dq5",2013-07-20,2013-07-20,"YB","D","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq6",2013-07-20,2013-07-20,"YB","D","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq7",2013-07-20,2013-07-20,"YB","D","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq8",2013-07-20,2013-07-20,"YB","D","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq9",2013-07-20,2013-07-20,"YB","D","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq1",2013-07-20,2013-07-20,"YB","D","1","Mt","Mytilus_trossulus","Type 15",8,0.0875,91.4285714285714,NA,"Julia Bingham","Finished","Full","Full","1%",""
+"2013-07-20_YB-Dq4",2013-07-20,2013-07-20,"YB","D","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","1%","patch almost entirely bare"
+"2013-07-20_YB-Dq5",2013-07-20,2013-07-20,"YB","D","5","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq6",2013-07-20,2013-07-20,"YB","D","6","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq7",2013-07-20,2013-07-20,"YB","D","7","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq8",2013-07-20,2013-07-20,"YB","D","8","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq9",2013-07-20,2013-07-20,"YB","D","9","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq1",2013-07-20,2013-07-20,"YB","D","1","MtD","Mytilus_trossulus_(dead)","Type 16",6,0.0875,68.5714285714286,NA,"Julia Bingham","Finished","Full","Full","1%",""
+"2013-07-20_YB-Dq4",2013-07-20,2013-07-20,"YB","D","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","1%","patch almost entirely bare"
+"2013-07-20_YB-Dq5",2013-07-20,2013-07-20,"YB","D","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq6",2013-07-20,2013-07-20,"YB","D","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq7",2013-07-20,2013-07-20,"YB","D","7","MtD","Mytilus_trossulus_(dead)","Type 16",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq8",2013-07-20,2013-07-20,"YB","D","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq9",2013-07-20,2013-07-20,"YB","D","9","MtD","Mytilus_trossulus_(dead)","Type 16",4,0.0875,45.7142857142857,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq1",2013-07-20,2013-07-20,"YB","D","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","1%",""
+"2013-07-20_YB-Dq4",2013-07-20,2013-07-20,"YB","D","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","1%","patch almost entirely bare"
+"2013-07-20_YB-Dq5",2013-07-20,2013-07-20,"YB","D","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq6",2013-07-20,2013-07-20,"YB","D","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq7",2013-07-20,2013-07-20,"YB","D","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq8",2013-07-20,2013-07-20,"YB","D","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq9",2013-07-20,2013-07-20,"YB","D","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq1",2013-07-20,2013-07-20,"YB","D","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","1%",""
+"2013-07-20_YB-Dq4",2013-07-20,2013-07-20,"YB","D","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","1%","patch almost entirely bare"
+"2013-07-20_YB-Dq5",2013-07-20,2013-07-20,"YB","D","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq6",2013-07-20,2013-07-20,"YB","D","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq7",2013-07-20,2013-07-20,"YB","D","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq8",2013-07-20,2013-07-20,"YB","D","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq9",2013-07-20,2013-07-20,"YB","D","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq1",2013-07-20,2013-07-20,"YB","D","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","1%",""
+"2013-07-20_YB-Dq4",2013-07-20,2013-07-20,"YB","D","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","1%","patch almost entirely bare"
+"2013-07-20_YB-Dq5",2013-07-20,2013-07-20,"YB","D","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq6",2013-07-20,2013-07-20,"YB","D","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq7",2013-07-20,2013-07-20,"YB","D","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq8",2013-07-20,2013-07-20,"YB","D","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq9",2013-07-20,2013-07-20,"YB","D","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq1",2013-07-20,2013-07-20,"YB","D","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","1%",""
+"2013-07-20_YB-Dq4",2013-07-20,2013-07-20,"YB","D","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","1%","patch almost entirely bare"
+"2013-07-20_YB-Dq5",2013-07-20,2013-07-20,"YB","D","5","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq6",2013-07-20,2013-07-20,"YB","D","6","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq7",2013-07-20,2013-07-20,"YB","D","7","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq8",2013-07-20,2013-07-20,"YB","D","8","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq9",2013-07-20,2013-07-20,"YB","D","9","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq1",2013-07-20,2013-07-20,"YB","D","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","1%",""
+"2013-07-20_YB-Dq4",2013-07-20,2013-07-20,"YB","D","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","1%","patch almost entirely bare"
+"2013-07-20_YB-Dq5",2013-07-20,2013-07-20,"YB","D","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq6",2013-07-20,2013-07-20,"YB","D","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq7",2013-07-20,2013-07-20,"YB","D","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq8",2013-07-20,2013-07-20,"YB","D","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq9",2013-07-20,2013-07-20,"YB","D","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq1",2013-07-20,2013-07-20,"YB","D","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","1%",""
+"2013-07-20_YB-Dq4",2013-07-20,2013-07-20,"YB","D","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","1%","patch almost entirely bare"
+"2013-07-20_YB-Dq5",2013-07-20,2013-07-20,"YB","D","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq6",2013-07-20,2013-07-20,"YB","D","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq7",2013-07-20,2013-07-20,"YB","D","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq8",2013-07-20,2013-07-20,"YB","D","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq9",2013-07-20,2013-07-20,"YB","D","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq1",2013-07-20,2013-07-20,"YB","D","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","1%",""
+"2013-07-20_YB-Dq4",2013-07-20,2013-07-20,"YB","D","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","1%","patch almost entirely bare"
+"2013-07-20_YB-Dq5",2013-07-20,2013-07-20,"YB","D","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq6",2013-07-20,2013-07-20,"YB","D","6","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq7",2013-07-20,2013-07-20,"YB","D","7","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq8",2013-07-20,2013-07-20,"YB","D","8","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq9",2013-07-20,2013-07-20,"YB","D","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq1",2013-07-20,2013-07-20,"YB","D","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","1%",""
+"2013-07-20_YB-Dq4",2013-07-20,2013-07-20,"YB","D","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","1%","patch almost entirely bare"
+"2013-07-20_YB-Dq5",2013-07-20,2013-07-20,"YB","D","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq6",2013-07-20,2013-07-20,"YB","D","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq7",2013-07-20,2013-07-20,"YB","D","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq8",2013-07-20,2013-07-20,"YB","D","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq9",2013-07-20,2013-07-20,"YB","D","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq1",2013-07-20,2013-07-20,"YB","D","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","1%",""
+"2013-07-20_YB-Dq4",2013-07-20,2013-07-20,"YB","D","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","1%","patch almost entirely bare"
+"2013-07-20_YB-Dq5",2013-07-20,2013-07-20,"YB","D","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq6",2013-07-20,2013-07-20,"YB","D","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq7",2013-07-20,2013-07-20,"YB","D","7","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq8",2013-07-20,2013-07-20,"YB","D","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq9",2013-07-20,2013-07-20,"YB","D","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq1",2013-07-20,2013-07-20,"YB","D","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","1%",""
+"2013-07-20_YB-Dq4",2013-07-20,2013-07-20,"YB","D","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","1%","patch almost entirely bare"
+"2013-07-20_YB-Dq5",2013-07-20,2013-07-20,"YB","D","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq6",2013-07-20,2013-07-20,"YB","D","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq7",2013-07-20,2013-07-20,"YB","D","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq8",2013-07-20,2013-07-20,"YB","D","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Dq9",2013-07-20,2013-07-20,"YB","D","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2013-07-20_YB-Eq1",2013-07-20,2013-07-20,"YB","E","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","all counts may be low due to high water and glare"
+"2013-07-20_YB-Eq3",2013-07-20,2013-07-20,"YB","E","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","all counts may be low due to high water and algae"
+"2013-07-20_YB-Eq8",2013-07-20,2013-07-20,"YB","E","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%","Counts may be low due to blur and algae"
+"2013-07-20_YB-Eq1",2013-07-20,2013-07-20,"YB","E","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","all counts may be low due to high water and glare"
+"2013-07-20_YB-Eq3",2013-07-20,2013-07-20,"YB","E","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","all counts may be low due to high water and algae"
+"2013-07-20_YB-Eq8",2013-07-20,2013-07-20,"YB","E","8","Ae","Anemones","Type 14",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","70%","Counts may be low due to blur and algae"
+"2013-07-20_YB-Eq1",2013-07-20,2013-07-20,"YB","E","1","Bg","Balanus_glandula","Type 1",17,0.0875,194.285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","15%","all counts may be low due to high water and glare"
+"2013-07-20_YB-Eq3",2013-07-20,2013-07-20,"YB","E","3","Bg","Balanus_glandula","Type 1",184,0.0875,2102.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","50%","all counts may be low due to high water and algae"
+"2013-07-20_YB-Eq8",2013-07-20,2013-07-20,"YB","E","8","Bg","Balanus_glandula","Type 1",43,0.0875,491.428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","70%","Counts may be low due to blur and algae"
+"2013-07-20_YB-Eq1",2013-07-20,2013-07-20,"YB","E","1","BgD","Balanus_glandula_(dead)","Type 2",11,0.0875,125.714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","15%","all counts may be low due to high water and glare"
+"2013-07-20_YB-Eq3",2013-07-20,2013-07-20,"YB","E","3","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","all counts may be low due to high water and algae"
+"2013-07-20_YB-Eq8",2013-07-20,2013-07-20,"YB","E","8","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%","Counts may be low due to blur and algae"
+"2013-07-20_YB-Eq1",2013-07-20,2013-07-20,"YB","E","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","all counts may be low due to high water and glare"
+"2013-07-20_YB-Eq3",2013-07-20,2013-07-20,"YB","E","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","all counts may be low due to high water and algae"
+"2013-07-20_YB-Eq8",2013-07-20,2013-07-20,"YB","E","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%","Counts may be low due to blur and algae"
+"2013-07-20_YB-Eq1",2013-07-20,2013-07-20,"YB","E","1","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","all counts may be low due to high water and glare"
+"2013-07-20_YB-Eq3",2013-07-20,2013-07-20,"YB","E","3","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","all counts may be low due to high water and algae"
+"2013-07-20_YB-Eq8",2013-07-20,2013-07-20,"YB","E","8","Cth","Chthamalus_dalli","Type 3",4,0.0875,45.7142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","70%","Counts may be low due to blur and algae"
+"2013-07-20_YB-Eq1",2013-07-20,2013-07-20,"YB","E","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","all counts may be low due to high water and glare"
+"2013-07-20_YB-Eq3",2013-07-20,2013-07-20,"YB","E","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","all counts may be low due to high water and algae"
+"2013-07-20_YB-Eq8",2013-07-20,2013-07-20,"YB","E","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%","Counts may be low due to blur and algae"
+"2013-07-20_YB-Eq1",2013-07-20,2013-07-20,"YB","E","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","all counts may be low due to high water and glare"
+"2013-07-20_YB-Eq3",2013-07-20,2013-07-20,"YB","E","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","all counts may be low due to high water and algae"
+"2013-07-20_YB-Eq8",2013-07-20,2013-07-20,"YB","E","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%","Counts may be low due to blur and algae"
+"2013-07-20_YB-Eq1",2013-07-20,2013-07-20,"YB","E","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","all counts may be low due to high water and glare"
+"2013-07-20_YB-Eq3",2013-07-20,2013-07-20,"YB","E","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","all counts may be low due to high water and algae"
+"2013-07-20_YB-Eq8",2013-07-20,2013-07-20,"YB","E","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%","Counts may be low due to blur and algae"
+"2013-07-20_YB-Eq1",2013-07-20,2013-07-20,"YB","E","1","Lim","Limpets","Type 12",12,0.0875,137.142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","15%","all counts may be low due to high water and glare"
+"2013-07-20_YB-Eq3",2013-07-20,2013-07-20,"YB","E","3","Lim","Limpets","Type 12",13,0.0875,148.571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","50%","all counts may be low due to high water and algae"
+"2013-07-20_YB-Eq8",2013-07-20,2013-07-20,"YB","E","8","Lim","Limpets","Type 12",12,0.0875,137.142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","70%","Counts may be low due to blur and algae"
+"2013-07-20_YB-Eq1",2013-07-20,2013-07-20,"YB","E","1","Ls","Littorina_sitkana","Type 13",20,0.0875,228.571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","15%","all counts may be low due to high water and glare"
+"2013-07-20_YB-Eq3",2013-07-20,2013-07-20,"YB","E","3","Ls","Littorina_sitkana","Type 13",14,0.0875,160,NA,"Stephanie Merhoff","Finished","Full","Full","50%","all counts may be low due to high water and algae"
+"2013-07-20_YB-Eq8",2013-07-20,2013-07-20,"YB","E","8","Ls","Littorina_sitkana","Type 13",6,0.0875,68.5714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","70%","Counts may be low due to blur and algae"
+"2013-07-20_YB-Eq1",2013-07-20,2013-07-20,"YB","E","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","all counts may be low due to high water and glare"
+"2013-07-20_YB-Eq3",2013-07-20,2013-07-20,"YB","E","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","all counts may be low due to high water and algae"
+"2013-07-20_YB-Eq8",2013-07-20,2013-07-20,"YB","E","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%","Counts may be low due to blur and algae"
+"2013-07-20_YB-Eq1",2013-07-20,2013-07-20,"YB","E","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","all counts may be low due to high water and glare"
+"2013-07-20_YB-Eq3",2013-07-20,2013-07-20,"YB","E","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","all counts may be low due to high water and algae"
+"2013-07-20_YB-Eq8",2013-07-20,2013-07-20,"YB","E","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%","Counts may be low due to blur and algae"
+"2013-07-20_YB-Eq1",2013-07-20,2013-07-20,"YB","E","1","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","all counts may be low due to high water and glare"
+"2013-07-20_YB-Eq3",2013-07-20,2013-07-20,"YB","E","3","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","all counts may be low due to high water and algae"
+"2013-07-20_YB-Eq8",2013-07-20,2013-07-20,"YB","E","8","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%","Counts may be low due to blur and algae"
+"2013-07-20_YB-Eq1",2013-07-20,2013-07-20,"YB","E","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","all counts may be low due to high water and glare"
+"2013-07-20_YB-Eq3",2013-07-20,2013-07-20,"YB","E","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","all counts may be low due to high water and algae"
+"2013-07-20_YB-Eq8",2013-07-20,2013-07-20,"YB","E","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%","Counts may be low due to blur and algae"
+"2013-07-20_YB-Eq1",2013-07-20,2013-07-20,"YB","E","1","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","all counts may be low due to high water and glare"
+"2013-07-20_YB-Eq3",2013-07-20,2013-07-20,"YB","E","3","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","all counts may be low due to high water and algae"
+"2013-07-20_YB-Eq8",2013-07-20,2013-07-20,"YB","E","8","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%","Counts may be low due to blur and algae"
+"2013-07-20_YB-Eq1",2013-07-20,2013-07-20,"YB","E","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","all counts may be low due to high water and glare"
+"2013-07-20_YB-Eq3",2013-07-20,2013-07-20,"YB","E","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","all counts may be low due to high water and algae"
+"2013-07-20_YB-Eq8",2013-07-20,2013-07-20,"YB","E","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%","Counts may be low due to blur and algae"
+"2013-07-20_YB-Eq1",2013-07-20,2013-07-20,"YB","E","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","all counts may be low due to high water and glare"
+"2013-07-20_YB-Eq3",2013-07-20,2013-07-20,"YB","E","3","Ner","Nereis_worm","Type 24",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","50%","all counts may be low due to high water and algae"
+"2013-07-20_YB-Eq8",2013-07-20,2013-07-20,"YB","E","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%","Counts may be low due to blur and algae"
+"2013-07-20_YB-Eq1",2013-07-20,2013-07-20,"YB","E","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","all counts may be low due to high water and glare"
+"2013-07-20_YB-Eq3",2013-07-20,2013-07-20,"YB","E","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","all counts may be low due to high water and algae"
+"2013-07-20_YB-Eq8",2013-07-20,2013-07-20,"YB","E","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%","Counts may be low due to blur and algae"
+"2013-07-20_YB-Eq1",2013-07-20,2013-07-20,"YB","E","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","all counts may be low due to high water and glare"
+"2013-07-20_YB-Eq3",2013-07-20,2013-07-20,"YB","E","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","all counts may be low due to high water and algae"
+"2013-07-20_YB-Eq8",2013-07-20,2013-07-20,"YB","E","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%","Counts may be low due to blur and algae"
+"2013-07-20_YB-Eq1",2013-07-20,2013-07-20,"YB","E","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","all counts may be low due to high water and glare"
+"2013-07-20_YB-Eq3",2013-07-20,2013-07-20,"YB","E","3","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","all counts may be low due to high water and algae"
+"2013-07-20_YB-Eq8",2013-07-20,2013-07-20,"YB","E","8","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%","Counts may be low due to blur and algae"
+"2013-07-20_YB-Eq1",2013-07-20,2013-07-20,"YB","E","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","all counts may be low due to high water and glare"
+"2013-07-20_YB-Eq3",2013-07-20,2013-07-20,"YB","E","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","all counts may be low due to high water and algae"
+"2013-07-20_YB-Eq8",2013-07-20,2013-07-20,"YB","E","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%","Counts may be low due to blur and algae"
+"2013-07-20_YB-Eq1",2013-07-20,2013-07-20,"YB","E","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","all counts may be low due to high water and glare"
+"2013-07-20_YB-Eq3",2013-07-20,2013-07-20,"YB","E","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","all counts may be low due to high water and algae"
+"2013-07-20_YB-Eq8",2013-07-20,2013-07-20,"YB","E","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%","Counts may be low due to blur and algae"
+"2013-07-20_YB-Eq1",2013-07-20,2013-07-20,"YB","E","1","Pp","Pollicipes_polymerus","Type 11",4,0.0875,45.7142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","15%","all counts may be low due to high water and glare"
+"2013-07-20_YB-Eq3",2013-07-20,2013-07-20,"YB","E","3","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","all counts may be low due to high water and algae"
+"2013-07-20_YB-Eq8",2013-07-20,2013-07-20,"YB","E","8","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%","Counts may be low due to blur and algae"
+"2013-07-20_YB-Eq1",2013-07-20,2013-07-20,"YB","E","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","all counts may be low due to high water and glare"
+"2013-07-20_YB-Eq3",2013-07-20,2013-07-20,"YB","E","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","all counts may be low due to high water and algae"
+"2013-07-20_YB-Eq8",2013-07-20,2013-07-20,"YB","E","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%","Counts may be low due to blur and algae"
+"2013-07-20_YB-Eq1",2013-07-20,2013-07-20,"YB","E","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","all counts may be low due to high water and glare"
+"2013-07-20_YB-Eq3",2013-07-20,2013-07-20,"YB","E","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","all counts may be low due to high water and algae"
+"2013-07-20_YB-Eq8",2013-07-20,2013-07-20,"YB","E","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%","Counts may be low due to blur and algae"
+"2013-07-20_YB-Eq1",2013-07-20,2013-07-20,"YB","E","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","all counts may be low due to high water and glare"
+"2013-07-20_YB-Eq3",2013-07-20,2013-07-20,"YB","E","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","all counts may be low due to high water and algae"
+"2013-07-20_YB-Eq8",2013-07-20,2013-07-20,"YB","E","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%","Counts may be low due to blur and algae"
+"2013-07-20_YB-Fq4",2013-07-20,2013-07-20,"YB","F","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~5% byssal thread coverage."
+"2013-07-20_YB-Fq5",2013-07-20,2013-07-20,"YB","F","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","~5% byssal thread coverage."
+"2013-07-20_YB-Fq6",2013-07-20,2013-07-20,"YB","F","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~2% byssal thread coverage."
+"2013-07-20_YB-Fq7",2013-07-20,2013-07-20,"YB","F","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","90%","Counts may be low due to high algae coverage"
+"2013-07-20_YB-Fq4",2013-07-20,2013-07-20,"YB","F","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~5% byssal thread coverage."
+"2013-07-20_YB-Fq5",2013-07-20,2013-07-20,"YB","F","5","Ae","Anemones","Type 14",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","2%","~5% byssal thread coverage."
+"2013-07-20_YB-Fq6",2013-07-20,2013-07-20,"YB","F","6","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~2% byssal thread coverage."
+"2013-07-20_YB-Fq7",2013-07-20,2013-07-20,"YB","F","7","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","90%","Counts may be low due to high algae coverage"
+"2013-07-20_YB-Fq4",2013-07-20,2013-07-20,"YB","F","4","Bg","Balanus_glandula","Type 1",275,0.0875,3142.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","1%","~5% byssal thread coverage."
+"2013-07-20_YB-Fq5",2013-07-20,2013-07-20,"YB","F","5","Bg","Balanus_glandula","Type 1",93,0.0875,1062.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","2%","~5% byssal thread coverage."
+"2013-07-20_YB-Fq6",2013-07-20,2013-07-20,"YB","F","6","Bg","Balanus_glandula","Type 1",21,0.0875,240,NA,"Beatriz Vaca","Finished","Full","Full","1%","~2% byssal thread coverage."
+"2013-07-20_YB-Fq7",2013-07-20,2013-07-20,"YB","F","7","Bg","Balanus_glandula","Type 1",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","90%","Counts may be low due to high algae coverage"
+"2013-07-20_YB-Fq4",2013-07-20,2013-07-20,"YB","F","4","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~5% byssal thread coverage."
+"2013-07-20_YB-Fq5",2013-07-20,2013-07-20,"YB","F","5","BgD","Balanus_glandula_(dead)","Type 2",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","2%","~5% byssal thread coverage."
+"2013-07-20_YB-Fq6",2013-07-20,2013-07-20,"YB","F","6","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~2% byssal thread coverage."
+"2013-07-20_YB-Fq7",2013-07-20,2013-07-20,"YB","F","7","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","90%","Counts may be low due to high algae coverage"
+"2013-07-20_YB-Fq4",2013-07-20,2013-07-20,"YB","F","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~5% byssal thread coverage."
+"2013-07-20_YB-Fq5",2013-07-20,2013-07-20,"YB","F","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","~5% byssal thread coverage."
+"2013-07-20_YB-Fq6",2013-07-20,2013-07-20,"YB","F","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~2% byssal thread coverage."
+"2013-07-20_YB-Fq7",2013-07-20,2013-07-20,"YB","F","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","90%","Counts may be low due to high algae coverage"
+"2013-07-20_YB-Fq4",2013-07-20,2013-07-20,"YB","F","4","Cth","Chthamalus_dalli","Type 3",19,0.0875,217.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","1%","~5% byssal thread coverage."
+"2013-07-20_YB-Fq5",2013-07-20,2013-07-20,"YB","F","5","Cth","Chthamalus_dalli","Type 3",11,0.0875,125.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","2%","~5% byssal thread coverage."
+"2013-07-20_YB-Fq6",2013-07-20,2013-07-20,"YB","F","6","Cth","Chthamalus_dalli","Type 3",20,0.0875,228.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","1%","~2% byssal thread coverage."
+"2013-07-20_YB-Fq7",2013-07-20,2013-07-20,"YB","F","7","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","90%","Counts may be low due to high algae coverage"
+"2013-07-20_YB-Fq4",2013-07-20,2013-07-20,"YB","F","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~5% byssal thread coverage."
+"2013-07-20_YB-Fq5",2013-07-20,2013-07-20,"YB","F","5","CthD","Chthamalus_dalli (dead)","Type 4",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","2%","~5% byssal thread coverage."
+"2013-07-20_YB-Fq6",2013-07-20,2013-07-20,"YB","F","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~2% byssal thread coverage."
+"2013-07-20_YB-Fq7",2013-07-20,2013-07-20,"YB","F","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","90%","Counts may be low due to high algae coverage"
+"2013-07-20_YB-Fq4",2013-07-20,2013-07-20,"YB","F","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~5% byssal thread coverage."
+"2013-07-20_YB-Fq5",2013-07-20,2013-07-20,"YB","F","5","Emp","Emplectonema worm","Type 23",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","2%","~5% byssal thread coverage."
+"2013-07-20_YB-Fq6",2013-07-20,2013-07-20,"YB","F","6","Emp","Emplectonema worm","Type 23",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","1%","~2% byssal thread coverage."
+"2013-07-20_YB-Fq7",2013-07-20,2013-07-20,"YB","F","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","90%","Counts may be low due to high algae coverage"
+"2013-07-20_YB-Fq4",2013-07-20,2013-07-20,"YB","F","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~5% byssal thread coverage."
+"2013-07-20_YB-Fq5",2013-07-20,2013-07-20,"YB","F","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","~5% byssal thread coverage."
+"2013-07-20_YB-Fq6",2013-07-20,2013-07-20,"YB","F","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~2% byssal thread coverage."
+"2013-07-20_YB-Fq7",2013-07-20,2013-07-20,"YB","F","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","90%","Counts may be low due to high algae coverage"
+"2013-07-20_YB-Fq4",2013-07-20,2013-07-20,"YB","F","4","Lim","Limpets","Type 12",13,0.0875,148.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","1%","~5% byssal thread coverage."
+"2013-07-20_YB-Fq5",2013-07-20,2013-07-20,"YB","F","5","Lim","Limpets","Type 12",12,0.0875,137.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","2%","~5% byssal thread coverage."
+"2013-07-20_YB-Fq6",2013-07-20,2013-07-20,"YB","F","6","Lim","Limpets","Type 12",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","1%","~2% byssal thread coverage."
+"2013-07-20_YB-Fq7",2013-07-20,2013-07-20,"YB","F","7","Lim","Limpets","Type 12",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","90%","Counts may be low due to high algae coverage"
+"2013-07-20_YB-Fq4",2013-07-20,2013-07-20,"YB","F","4","Ls","Littorina_sitkana","Type 13",29,0.0875,331.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","1%","~5% byssal thread coverage."
+"2013-07-20_YB-Fq5",2013-07-20,2013-07-20,"YB","F","5","Ls","Littorina_sitkana","Type 13",29,0.0875,331.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","2%","~5% byssal thread coverage."
+"2013-07-20_YB-Fq6",2013-07-20,2013-07-20,"YB","F","6","Ls","Littorina_sitkana","Type 13",13,0.0875,148.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","1%","~2% byssal thread coverage."
+"2013-07-20_YB-Fq7",2013-07-20,2013-07-20,"YB","F","7","Ls","Littorina_sitkana","Type 13",7,0.0875,80,NA,"Stephanie Merhoff","Finished","Full","Full","90%","Counts may be low due to high algae coverage"
+"2013-07-20_YB-Fq4",2013-07-20,2013-07-20,"YB","F","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~5% byssal thread coverage."
+"2013-07-20_YB-Fq5",2013-07-20,2013-07-20,"YB","F","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","~5% byssal thread coverage."
+"2013-07-20_YB-Fq6",2013-07-20,2013-07-20,"YB","F","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~2% byssal thread coverage."
+"2013-07-20_YB-Fq7",2013-07-20,2013-07-20,"YB","F","7","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","90%","Counts may be low due to high algae coverage"
+"2013-07-20_YB-Fq4",2013-07-20,2013-07-20,"YB","F","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~5% byssal thread coverage."
+"2013-07-20_YB-Fq5",2013-07-20,2013-07-20,"YB","F","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","~5% byssal thread coverage."
+"2013-07-20_YB-Fq6",2013-07-20,2013-07-20,"YB","F","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~2% byssal thread coverage."
+"2013-07-20_YB-Fq7",2013-07-20,2013-07-20,"YB","F","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","90%","Counts may be low due to high algae coverage"
+"2013-07-20_YB-Fq4",2013-07-20,2013-07-20,"YB","F","4","Myt","Mytilus_spp","Type 7",10,0.0875,114.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","1%","~5% byssal thread coverage."
+"2013-07-20_YB-Fq5",2013-07-20,2013-07-20,"YB","F","5","Myt","Mytilus_spp","Type 7",29,0.0875,331.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","2%","~5% byssal thread coverage."
+"2013-07-20_YB-Fq6",2013-07-20,2013-07-20,"YB","F","6","Myt","Mytilus_spp","Type 7",12,0.0875,137.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","1%","~2% byssal thread coverage."
+"2013-07-20_YB-Fq7",2013-07-20,2013-07-20,"YB","F","7","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","90%","Counts may be low due to high algae coverage"
+"2013-07-20_YB-Fq4",2013-07-20,2013-07-20,"YB","F","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~5% byssal thread coverage."
+"2013-07-20_YB-Fq5",2013-07-20,2013-07-20,"YB","F","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","~5% byssal thread coverage."
+"2013-07-20_YB-Fq6",2013-07-20,2013-07-20,"YB","F","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~2% byssal thread coverage."
+"2013-07-20_YB-Fq7",2013-07-20,2013-07-20,"YB","F","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","90%","Counts may be low due to high algae coverage"
+"2013-07-20_YB-Fq4",2013-07-20,2013-07-20,"YB","F","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~5% byssal thread coverage."
+"2013-07-20_YB-Fq5",2013-07-20,2013-07-20,"YB","F","5","Mt","Mytilus_trossulus","Type 15",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","2%","~5% byssal thread coverage."
+"2013-07-20_YB-Fq6",2013-07-20,2013-07-20,"YB","F","6","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~2% byssal thread coverage."
+"2013-07-20_YB-Fq7",2013-07-20,2013-07-20,"YB","F","7","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","90%","Counts may be low due to high algae coverage"
+"2013-07-20_YB-Fq4",2013-07-20,2013-07-20,"YB","F","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~5% byssal thread coverage."
+"2013-07-20_YB-Fq5",2013-07-20,2013-07-20,"YB","F","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","~5% byssal thread coverage."
+"2013-07-20_YB-Fq6",2013-07-20,2013-07-20,"YB","F","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~2% byssal thread coverage."
+"2013-07-20_YB-Fq7",2013-07-20,2013-07-20,"YB","F","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","90%","Counts may be low due to high algae coverage"
+"2013-07-20_YB-Fq4",2013-07-20,2013-07-20,"YB","F","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~5% byssal thread coverage."
+"2013-07-20_YB-Fq5",2013-07-20,2013-07-20,"YB","F","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","~5% byssal thread coverage."
+"2013-07-20_YB-Fq6",2013-07-20,2013-07-20,"YB","F","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~2% byssal thread coverage."
+"2013-07-20_YB-Fq7",2013-07-20,2013-07-20,"YB","F","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","90%","Counts may be low due to high algae coverage"
+"2013-07-20_YB-Fq4",2013-07-20,2013-07-20,"YB","F","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~5% byssal thread coverage."
+"2013-07-20_YB-Fq5",2013-07-20,2013-07-20,"YB","F","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","~5% byssal thread coverage."
+"2013-07-20_YB-Fq6",2013-07-20,2013-07-20,"YB","F","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~2% byssal thread coverage."
+"2013-07-20_YB-Fq7",2013-07-20,2013-07-20,"YB","F","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","90%","Counts may be low due to high algae coverage"
+"2013-07-20_YB-Fq4",2013-07-20,2013-07-20,"YB","F","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~5% byssal thread coverage."
+"2013-07-20_YB-Fq5",2013-07-20,2013-07-20,"YB","F","5","Negg","Nucella_eggs","Type 26",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","2%","~5% byssal thread coverage."
+"2013-07-20_YB-Fq6",2013-07-20,2013-07-20,"YB","F","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~2% byssal thread coverage."
+"2013-07-20_YB-Fq7",2013-07-20,2013-07-20,"YB","F","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","90%","Counts may be low due to high algae coverage"
+"2013-07-20_YB-Fq4",2013-07-20,2013-07-20,"YB","F","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~5% byssal thread coverage."
+"2013-07-20_YB-Fq5",2013-07-20,2013-07-20,"YB","F","5","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","2%","~5% byssal thread coverage."
+"2013-07-20_YB-Fq6",2013-07-20,2013-07-20,"YB","F","6","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~2% byssal thread coverage."
+"2013-07-20_YB-Fq7",2013-07-20,2013-07-20,"YB","F","7","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","90%","Counts may be low due to high algae coverage"
+"2013-07-20_YB-Fq4",2013-07-20,2013-07-20,"YB","F","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~5% byssal thread coverage."
+"2013-07-20_YB-Fq5",2013-07-20,2013-07-20,"YB","F","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","~5% byssal thread coverage."
+"2013-07-20_YB-Fq6",2013-07-20,2013-07-20,"YB","F","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~2% byssal thread coverage."
+"2013-07-20_YB-Fq7",2013-07-20,2013-07-20,"YB","F","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","90%","Counts may be low due to high algae coverage"
+"2013-07-20_YB-Fq4",2013-07-20,2013-07-20,"YB","F","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~5% byssal thread coverage."
+"2013-07-20_YB-Fq5",2013-07-20,2013-07-20,"YB","F","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","~5% byssal thread coverage."
+"2013-07-20_YB-Fq6",2013-07-20,2013-07-20,"YB","F","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~2% byssal thread coverage."
+"2013-07-20_YB-Fq7",2013-07-20,2013-07-20,"YB","F","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","90%","Counts may be low due to high algae coverage"
+"2013-07-20_YB-Fq4",2013-07-20,2013-07-20,"YB","F","4","Pp","Pollicipes_polymerus","Type 11",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","1%","~5% byssal thread coverage."
+"2013-07-20_YB-Fq5",2013-07-20,2013-07-20,"YB","F","5","Pp","Pollicipes_polymerus","Type 11",12,0.0875,137.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","2%","~5% byssal thread coverage."
+"2013-07-20_YB-Fq6",2013-07-20,2013-07-20,"YB","F","6","Pp","Pollicipes_polymerus","Type 11",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","1%","~2% byssal thread coverage."
+"2013-07-20_YB-Fq7",2013-07-20,2013-07-20,"YB","F","7","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","90%","Counts may be low due to high algae coverage"
+"2013-07-20_YB-Fq4",2013-07-20,2013-07-20,"YB","F","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~5% byssal thread coverage."
+"2013-07-20_YB-Fq5",2013-07-20,2013-07-20,"YB","F","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","~5% byssal thread coverage."
+"2013-07-20_YB-Fq6",2013-07-20,2013-07-20,"YB","F","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~2% byssal thread coverage."
+"2013-07-20_YB-Fq7",2013-07-20,2013-07-20,"YB","F","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","90%","Counts may be low due to high algae coverage"
+"2013-07-20_YB-Fq4",2013-07-20,2013-07-20,"YB","F","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~5% byssal thread coverage."
+"2013-07-20_YB-Fq5",2013-07-20,2013-07-20,"YB","F","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","~5% byssal thread coverage."
+"2013-07-20_YB-Fq6",2013-07-20,2013-07-20,"YB","F","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~2% byssal thread coverage."
+"2013-07-20_YB-Fq7",2013-07-20,2013-07-20,"YB","F","7","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","90%","Counts may be low due to high algae coverage"
+"2013-07-20_YB-Fq4",2013-07-20,2013-07-20,"YB","F","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~5% byssal thread coverage."
+"2013-07-20_YB-Fq5",2013-07-20,2013-07-20,"YB","F","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","~5% byssal thread coverage."
+"2013-07-20_YB-Fq6",2013-07-20,2013-07-20,"YB","F","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~2% byssal thread coverage."
+"2013-07-20_YB-Fq7",2013-07-20,2013-07-20,"YB","F","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","90%","Counts may be low due to high algae coverage"
+"2013-07-20_YB-Gq3",2013-07-20,2013-07-20,"YB","G","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to high water and algae film"
+"2013-07-20_YB-Gq5",2013-07-20,2013-07-20,"YB","G","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%","Counts likely low because patch is mostly underwater. ~75% underwater, ~30% byssal threads."
+"2013-07-20_YB-Gq8",2013-07-20,2013-07-20,"YB","G","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts likely low due to byssal threads. ~30% byssal threads."
+"2013-07-20_YB-Gq3",2013-07-20,2013-07-20,"YB","G","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to high water and algae film"
+"2013-07-20_YB-Gq5",2013-07-20,2013-07-20,"YB","G","5","Ae","Anemones","Type 14",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","0%","Counts likely low because patch is mostly underwater. ~75% underwater, ~30% byssal threads."
+"2013-07-20_YB-Gq8",2013-07-20,2013-07-20,"YB","G","8","Ae","Anemones","Type 14",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts likely low due to byssal threads. ~30% byssal threads."
+"2013-07-20_YB-Gq3",2013-07-20,2013-07-20,"YB","G","3","Bg","Balanus_glandula","Type 1",10,0.0875,114.285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to high water and algae film"
+"2013-07-20_YB-Gq5",2013-07-20,2013-07-20,"YB","G","5","Bg","Balanus_glandula","Type 1",351,0.0875,4011.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","0%","Counts likely low because patch is mostly underwater. ~75% underwater, ~30% byssal threads."
+"2013-07-20_YB-Gq8",2013-07-20,2013-07-20,"YB","G","8","Bg","Balanus_glandula","Type 1",303,0.0875,3462.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts likely low due to byssal threads. ~30% byssal threads."
+"2013-07-20_YB-Gq3",2013-07-20,2013-07-20,"YB","G","3","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to high water and algae film"
+"2013-07-20_YB-Gq5",2013-07-20,2013-07-20,"YB","G","5","BgD","Balanus_glandula_(dead)","Type 2",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","0%","Counts likely low because patch is mostly underwater. ~75% underwater, ~30% byssal threads."
+"2013-07-20_YB-Gq8",2013-07-20,2013-07-20,"YB","G","8","BgD","Balanus_glandula_(dead)","Type 2",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts likely low due to byssal threads. ~30% byssal threads."
+"2013-07-20_YB-Gq3",2013-07-20,2013-07-20,"YB","G","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to high water and algae film"
+"2013-07-20_YB-Gq5",2013-07-20,2013-07-20,"YB","G","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%","Counts likely low because patch is mostly underwater. ~75% underwater, ~30% byssal threads."
+"2013-07-20_YB-Gq8",2013-07-20,2013-07-20,"YB","G","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts likely low due to byssal threads. ~30% byssal threads."
+"2013-07-20_YB-Gq3",2013-07-20,2013-07-20,"YB","G","3","Cth","Chthamalus_dalli","Type 3",89,0.0875,1017.14285714286,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to high water and algae film"
+"2013-07-20_YB-Gq5",2013-07-20,2013-07-20,"YB","G","5","Cth","Chthamalus_dalli","Type 3",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Full","0%","Counts likely low because patch is mostly underwater. ~75% underwater, ~30% byssal threads."
+"2013-07-20_YB-Gq8",2013-07-20,2013-07-20,"YB","G","8","Cth","Chthamalus_dalli","Type 3",12,0.0875,137.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts likely low due to byssal threads. ~30% byssal threads."
+"2013-07-20_YB-Gq3",2013-07-20,2013-07-20,"YB","G","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to high water and algae film"
+"2013-07-20_YB-Gq5",2013-07-20,2013-07-20,"YB","G","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%","Counts likely low because patch is mostly underwater. ~75% underwater, ~30% byssal threads."
+"2013-07-20_YB-Gq8",2013-07-20,2013-07-20,"YB","G","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts likely low due to byssal threads. ~30% byssal threads."
+"2013-07-20_YB-Gq3",2013-07-20,2013-07-20,"YB","G","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to high water and algae film"
+"2013-07-20_YB-Gq5",2013-07-20,2013-07-20,"YB","G","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%","Counts likely low because patch is mostly underwater. ~75% underwater, ~30% byssal threads."
+"2013-07-20_YB-Gq8",2013-07-20,2013-07-20,"YB","G","8","Emp","Emplectonema worm","Type 23",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts likely low due to byssal threads. ~30% byssal threads."
+"2013-07-20_YB-Gq3",2013-07-20,2013-07-20,"YB","G","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to high water and algae film"
+"2013-07-20_YB-Gq5",2013-07-20,2013-07-20,"YB","G","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%","Counts likely low because patch is mostly underwater. ~75% underwater, ~30% byssal threads."
+"2013-07-20_YB-Gq8",2013-07-20,2013-07-20,"YB","G","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts likely low due to byssal threads. ~30% byssal threads."
+"2013-07-20_YB-Gq3",2013-07-20,2013-07-20,"YB","G","3","Lim","Limpets","Type 12",18,0.0875,205.714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to high water and algae film"
+"2013-07-20_YB-Gq5",2013-07-20,2013-07-20,"YB","G","5","Lim","Limpets","Type 12",14,0.0875,160,NA,"Beatriz Vaca","Finished","Full","Full","0%","Counts likely low because patch is mostly underwater. ~75% underwater, ~30% byssal threads."
+"2013-07-20_YB-Gq8",2013-07-20,2013-07-20,"YB","G","8","Lim","Limpets","Type 12",10,0.0875,114.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts likely low due to byssal threads. ~30% byssal threads."
+"2013-07-20_YB-Gq3",2013-07-20,2013-07-20,"YB","G","3","Ls","Littorina_sitkana","Type 13",64,0.0875,731.428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to high water and algae film"
+"2013-07-20_YB-Gq5",2013-07-20,2013-07-20,"YB","G","5","Ls","Littorina_sitkana","Type 13",27,0.0875,308.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","0%","Counts likely low because patch is mostly underwater. ~75% underwater, ~30% byssal threads."
+"2013-07-20_YB-Gq8",2013-07-20,2013-07-20,"YB","G","8","Ls","Littorina_sitkana","Type 13",31,0.0875,354.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts likely low due to byssal threads. ~30% byssal threads."
+"2013-07-20_YB-Gq3",2013-07-20,2013-07-20,"YB","G","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to high water and algae film"
+"2013-07-20_YB-Gq5",2013-07-20,2013-07-20,"YB","G","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%","Counts likely low because patch is mostly underwater. ~75% underwater, ~30% byssal threads."
+"2013-07-20_YB-Gq8",2013-07-20,2013-07-20,"YB","G","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts likely low due to byssal threads. ~30% byssal threads."
+"2013-07-20_YB-Gq3",2013-07-20,2013-07-20,"YB","G","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to high water and algae film"
+"2013-07-20_YB-Gq5",2013-07-20,2013-07-20,"YB","G","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%","Counts likely low because patch is mostly underwater. ~75% underwater, ~30% byssal threads."
+"2013-07-20_YB-Gq8",2013-07-20,2013-07-20,"YB","G","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts likely low due to byssal threads. ~30% byssal threads."
+"2013-07-20_YB-Gq3",2013-07-20,2013-07-20,"YB","G","3","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to high water and algae film"
+"2013-07-20_YB-Gq5",2013-07-20,2013-07-20,"YB","G","5","Myt","Mytilus_spp","Type 7",16,0.0875,182.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","0%","Counts likely low because patch is mostly underwater. ~75% underwater, ~30% byssal threads."
+"2013-07-20_YB-Gq8",2013-07-20,2013-07-20,"YB","G","8","Myt","Mytilus_spp","Type 7",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts likely low due to byssal threads. ~30% byssal threads."
+"2013-07-20_YB-Gq3",2013-07-20,2013-07-20,"YB","G","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to high water and algae film"
+"2013-07-20_YB-Gq5",2013-07-20,2013-07-20,"YB","G","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%","Counts likely low because patch is mostly underwater. ~75% underwater, ~30% byssal threads."
+"2013-07-20_YB-Gq8",2013-07-20,2013-07-20,"YB","G","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts likely low due to byssal threads. ~30% byssal threads."
+"2013-07-20_YB-Gq3",2013-07-20,2013-07-20,"YB","G","3","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to high water and algae film"
+"2013-07-20_YB-Gq5",2013-07-20,2013-07-20,"YB","G","5","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%","Counts likely low because patch is mostly underwater. ~75% underwater, ~30% byssal threads."
+"2013-07-20_YB-Gq8",2013-07-20,2013-07-20,"YB","G","8","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts likely low due to byssal threads. ~30% byssal threads."
+"2013-07-20_YB-Gq3",2013-07-20,2013-07-20,"YB","G","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to high water and algae film"
+"2013-07-20_YB-Gq5",2013-07-20,2013-07-20,"YB","G","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%","Counts likely low because patch is mostly underwater. ~75% underwater, ~30% byssal threads."
+"2013-07-20_YB-Gq8",2013-07-20,2013-07-20,"YB","G","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts likely low due to byssal threads. ~30% byssal threads."
+"2013-07-20_YB-Gq3",2013-07-20,2013-07-20,"YB","G","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to high water and algae film"
+"2013-07-20_YB-Gq5",2013-07-20,2013-07-20,"YB","G","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%","Counts likely low because patch is mostly underwater. ~75% underwater, ~30% byssal threads."
+"2013-07-20_YB-Gq8",2013-07-20,2013-07-20,"YB","G","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts likely low due to byssal threads. ~30% byssal threads."
+"2013-07-20_YB-Gq3",2013-07-20,2013-07-20,"YB","G","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to high water and algae film"
+"2013-07-20_YB-Gq5",2013-07-20,2013-07-20,"YB","G","5","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","0%","Counts likely low because patch is mostly underwater. ~75% underwater, ~30% byssal threads."
+"2013-07-20_YB-Gq8",2013-07-20,2013-07-20,"YB","G","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts likely low due to byssal threads. ~30% byssal threads."
+"2013-07-20_YB-Gq3",2013-07-20,2013-07-20,"YB","G","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to high water and algae film"
+"2013-07-20_YB-Gq5",2013-07-20,2013-07-20,"YB","G","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%","Counts likely low because patch is mostly underwater. ~75% underwater, ~30% byssal threads."
+"2013-07-20_YB-Gq8",2013-07-20,2013-07-20,"YB","G","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts likely low due to byssal threads. ~30% byssal threads."
+"2013-07-20_YB-Gq3",2013-07-20,2013-07-20,"YB","G","3","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to high water and algae film"
+"2013-07-20_YB-Gq5",2013-07-20,2013-07-20,"YB","G","5","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","0%","Counts likely low because patch is mostly underwater. ~75% underwater, ~30% byssal threads."
+"2013-07-20_YB-Gq8",2013-07-20,2013-07-20,"YB","G","8","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts likely low due to byssal threads. ~30% byssal threads."
+"2013-07-20_YB-Gq3",2013-07-20,2013-07-20,"YB","G","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to high water and algae film"
+"2013-07-20_YB-Gq5",2013-07-20,2013-07-20,"YB","G","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%","Counts likely low because patch is mostly underwater. ~75% underwater, ~30% byssal threads."
+"2013-07-20_YB-Gq8",2013-07-20,2013-07-20,"YB","G","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts likely low due to byssal threads. ~30% byssal threads."
+"2013-07-20_YB-Gq3",2013-07-20,2013-07-20,"YB","G","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to high water and algae film"
+"2013-07-20_YB-Gq5",2013-07-20,2013-07-20,"YB","G","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%","Counts likely low because patch is mostly underwater. ~75% underwater, ~30% byssal threads."
+"2013-07-20_YB-Gq8",2013-07-20,2013-07-20,"YB","G","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts likely low due to byssal threads. ~30% byssal threads."
+"2013-07-20_YB-Gq3",2013-07-20,2013-07-20,"YB","G","3","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to high water and algae film"
+"2013-07-20_YB-Gq5",2013-07-20,2013-07-20,"YB","G","5","Pp","Pollicipes_polymerus","Type 11",11,0.0875,125.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","0%","Counts likely low because patch is mostly underwater. ~75% underwater, ~30% byssal threads."
+"2013-07-20_YB-Gq8",2013-07-20,2013-07-20,"YB","G","8","Pp","Pollicipes_polymerus","Type 11",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts likely low due to byssal threads. ~30% byssal threads."
+"2013-07-20_YB-Gq3",2013-07-20,2013-07-20,"YB","G","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to high water and algae film"
+"2013-07-20_YB-Gq5",2013-07-20,2013-07-20,"YB","G","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%","Counts likely low because patch is mostly underwater. ~75% underwater, ~30% byssal threads."
+"2013-07-20_YB-Gq8",2013-07-20,2013-07-20,"YB","G","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts likely low due to byssal threads. ~30% byssal threads."
+"2013-07-20_YB-Gq3",2013-07-20,2013-07-20,"YB","G","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to high water and algae film"
+"2013-07-20_YB-Gq5",2013-07-20,2013-07-20,"YB","G","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%","Counts likely low because patch is mostly underwater. ~75% underwater, ~30% byssal threads."
+"2013-07-20_YB-Gq8",2013-07-20,2013-07-20,"YB","G","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts likely low due to byssal threads. ~30% byssal threads."
+"2013-07-20_YB-Gq3",2013-07-20,2013-07-20,"YB","G","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to high water and algae film"
+"2013-07-20_YB-Gq5",2013-07-20,2013-07-20,"YB","G","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%","Counts likely low because patch is mostly underwater. ~75% underwater, ~30% byssal threads."
+"2013-07-20_YB-Gq8",2013-07-20,2013-07-20,"YB","G","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts likely low due to byssal threads. ~30% byssal threads."
+"2013-08-19_YB-Aq1",2013-08-19,2013-08-19,"YB","A","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","45%","All counts may be low due to glare and darkness of photo"
+"2013-08-19_YB-Aq2",2013-08-19,2013-08-19,"YB","A","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-Aq6",2013-08-19,2013-08-19,"YB","A","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water patches"
+"2013-08-19_YB-Aq7",2013-08-19,2013-08-19,"YB","A","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water"
+"2013-08-19_YB-Aq9",2013-08-19,2013-08-19,"YB","A","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water"
+"2013-08-19_YB-Aq1",2013-08-19,2013-08-19,"YB","A","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","45%","All counts may be low due to glare and darkness of photo"
+"2013-08-19_YB-Aq2",2013-08-19,2013-08-19,"YB","A","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-Aq6",2013-08-19,2013-08-19,"YB","A","6","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water patches"
+"2013-08-19_YB-Aq7",2013-08-19,2013-08-19,"YB","A","7","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water"
+"2013-08-19_YB-Aq9",2013-08-19,2013-08-19,"YB","A","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water"
+"2013-08-19_YB-Aq1",2013-08-19,2013-08-19,"YB","A","1","Bg","Balanus_glandula","Type 1",1200,0.015625,76800,"c","Stephanie Merhoff","Finished","Full","Cropped","45%","All counts may be low due to glare and darkness of photo"
+"2013-08-19_YB-Aq2",2013-08-19,2013-08-19,"YB","A","2","Bg","Balanus_glandula","Type 1",2061,0.015625,131904,"c","Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-Aq6",2013-08-19,2013-08-19,"YB","A","6","Bg","Balanus_glandula","Type 1",1569,0.015625,100416,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water patches"
+"2013-08-19_YB-Aq7",2013-08-19,2013-08-19,"YB","A","7","Bg","Balanus_glandula","Type 1",1664,0.015625,106496,"c","Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water"
+"2013-08-19_YB-Aq9",2013-08-19,2013-08-19,"YB","A","9","Bg","Balanus_glandula","Type 1",1450,0.015625,92800,"c","Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water"
+"2013-08-19_YB-Aq1",2013-08-19,2013-08-19,"YB","A","1","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","45%","All counts may be low due to glare and darkness of photo"
+"2013-08-19_YB-Aq2",2013-08-19,2013-08-19,"YB","A","2","BgD","Balanus_glandula_(dead)","Type 2",2,0.015625,128,"c","Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-Aq6",2013-08-19,2013-08-19,"YB","A","6","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water patches"
+"2013-08-19_YB-Aq7",2013-08-19,2013-08-19,"YB","A","7","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water"
+"2013-08-19_YB-Aq9",2013-08-19,2013-08-19,"YB","A","9","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water"
+"2013-08-19_YB-Aq1",2013-08-19,2013-08-19,"YB","A","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","45%","All counts may be low due to glare and darkness of photo"
+"2013-08-19_YB-Aq2",2013-08-19,2013-08-19,"YB","A","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-Aq6",2013-08-19,2013-08-19,"YB","A","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water patches"
+"2013-08-19_YB-Aq7",2013-08-19,2013-08-19,"YB","A","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water"
+"2013-08-19_YB-Aq9",2013-08-19,2013-08-19,"YB","A","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water"
+"2013-08-19_YB-Aq1",2013-08-19,2013-08-19,"YB","A","1","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","45%","All counts may be low due to glare and darkness of photo"
+"2013-08-19_YB-Aq2",2013-08-19,2013-08-19,"YB","A","2","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-Aq6",2013-08-19,2013-08-19,"YB","A","6","Cth","Chthamalus_dalli","Type 3",9,0.015625,576,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water patches"
+"2013-08-19_YB-Aq7",2013-08-19,2013-08-19,"YB","A","7","Cth","Chthamalus_dalli","Type 3",38,0.015625,2432,"c","Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water"
+"2013-08-19_YB-Aq9",2013-08-19,2013-08-19,"YB","A","9","Cth","Chthamalus_dalli","Type 3",17,0.015625,1088,"c","Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water"
+"2013-08-19_YB-Aq1",2013-08-19,2013-08-19,"YB","A","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","45%","All counts may be low due to glare and darkness of photo"
+"2013-08-19_YB-Aq2",2013-08-19,2013-08-19,"YB","A","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-Aq6",2013-08-19,2013-08-19,"YB","A","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water patches"
+"2013-08-19_YB-Aq7",2013-08-19,2013-08-19,"YB","A","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water"
+"2013-08-19_YB-Aq9",2013-08-19,2013-08-19,"YB","A","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water"
+"2013-08-19_YB-Aq1",2013-08-19,2013-08-19,"YB","A","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","45%","All counts may be low due to glare and darkness of photo"
+"2013-08-19_YB-Aq2",2013-08-19,2013-08-19,"YB","A","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-Aq6",2013-08-19,2013-08-19,"YB","A","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water patches"
+"2013-08-19_YB-Aq7",2013-08-19,2013-08-19,"YB","A","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water"
+"2013-08-19_YB-Aq9",2013-08-19,2013-08-19,"YB","A","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water"
+"2013-08-19_YB-Aq1",2013-08-19,2013-08-19,"YB","A","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","45%","All counts may be low due to glare and darkness of photo"
+"2013-08-19_YB-Aq2",2013-08-19,2013-08-19,"YB","A","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-Aq6",2013-08-19,2013-08-19,"YB","A","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water patches"
+"2013-08-19_YB-Aq7",2013-08-19,2013-08-19,"YB","A","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water"
+"2013-08-19_YB-Aq9",2013-08-19,2013-08-19,"YB","A","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water"
+"2013-08-19_YB-Aq1",2013-08-19,2013-08-19,"YB","A","1","Lim","Limpets","Type 12",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","45%","All counts may be low due to glare and darkness of photo"
+"2013-08-19_YB-Aq2",2013-08-19,2013-08-19,"YB","A","2","Lim","Limpets","Type 12",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-Aq6",2013-08-19,2013-08-19,"YB","A","6","Lim","Limpets","Type 12",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water patches"
+"2013-08-19_YB-Aq7",2013-08-19,2013-08-19,"YB","A","7","Lim","Limpets","Type 12",4,0.0875,45.7142857142857,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water"
+"2013-08-19_YB-Aq9",2013-08-19,2013-08-19,"YB","A","9","Lim","Limpets","Type 12",8,0.0875,91.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water"
+"2013-08-19_YB-Aq1",2013-08-19,2013-08-19,"YB","A","1","Ls","Littorina_sitkana","Type 13",10,0.0875,114.285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","45%","All counts may be low due to glare and darkness of photo"
+"2013-08-19_YB-Aq2",2013-08-19,2013-08-19,"YB","A","2","Ls","Littorina_sitkana","Type 13",11,0.0875,125.714285714286,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-Aq6",2013-08-19,2013-08-19,"YB","A","6","Ls","Littorina_sitkana","Type 13",6,0.0875,68.5714285714286,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water patches"
+"2013-08-19_YB-Aq7",2013-08-19,2013-08-19,"YB","A","7","Ls","Littorina_sitkana","Type 13",27,0.0875,308.571428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water"
+"2013-08-19_YB-Aq9",2013-08-19,2013-08-19,"YB","A","9","Ls","Littorina_sitkana","Type 13",9,0.0875,102.857142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water"
+"2013-08-19_YB-Aq1",2013-08-19,2013-08-19,"YB","A","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","45%","All counts may be low due to glare and darkness of photo"
+"2013-08-19_YB-Aq2",2013-08-19,2013-08-19,"YB","A","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-Aq6",2013-08-19,2013-08-19,"YB","A","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water patches"
+"2013-08-19_YB-Aq7",2013-08-19,2013-08-19,"YB","A","7","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water"
+"2013-08-19_YB-Aq9",2013-08-19,2013-08-19,"YB","A","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water"
+"2013-08-19_YB-Aq1",2013-08-19,2013-08-19,"YB","A","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","45%","All counts may be low due to glare and darkness of photo"
+"2013-08-19_YB-Aq2",2013-08-19,2013-08-19,"YB","A","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-Aq6",2013-08-19,2013-08-19,"YB","A","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water patches"
+"2013-08-19_YB-Aq7",2013-08-19,2013-08-19,"YB","A","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water"
+"2013-08-19_YB-Aq9",2013-08-19,2013-08-19,"YB","A","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water"
+"2013-08-19_YB-Aq1",2013-08-19,2013-08-19,"YB","A","1","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","45%","All counts may be low due to glare and darkness of photo"
+"2013-08-19_YB-Aq2",2013-08-19,2013-08-19,"YB","A","2","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-Aq6",2013-08-19,2013-08-19,"YB","A","6","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water patches"
+"2013-08-19_YB-Aq7",2013-08-19,2013-08-19,"YB","A","7","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water"
+"2013-08-19_YB-Aq9",2013-08-19,2013-08-19,"YB","A","9","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water"
+"2013-08-19_YB-Aq1",2013-08-19,2013-08-19,"YB","A","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","45%","All counts may be low due to glare and darkness of photo"
+"2013-08-19_YB-Aq2",2013-08-19,2013-08-19,"YB","A","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-Aq6",2013-08-19,2013-08-19,"YB","A","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water patches"
+"2013-08-19_YB-Aq7",2013-08-19,2013-08-19,"YB","A","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water"
+"2013-08-19_YB-Aq9",2013-08-19,2013-08-19,"YB","A","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water"
+"2013-08-19_YB-Aq1",2013-08-19,2013-08-19,"YB","A","1","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","45%","All counts may be low due to glare and darkness of photo"
+"2013-08-19_YB-Aq2",2013-08-19,2013-08-19,"YB","A","2","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-Aq6",2013-08-19,2013-08-19,"YB","A","6","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water patches"
+"2013-08-19_YB-Aq7",2013-08-19,2013-08-19,"YB","A","7","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water"
+"2013-08-19_YB-Aq9",2013-08-19,2013-08-19,"YB","A","9","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water"
+"2013-08-19_YB-Aq1",2013-08-19,2013-08-19,"YB","A","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","45%","All counts may be low due to glare and darkness of photo"
+"2013-08-19_YB-Aq2",2013-08-19,2013-08-19,"YB","A","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-Aq6",2013-08-19,2013-08-19,"YB","A","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water patches"
+"2013-08-19_YB-Aq7",2013-08-19,2013-08-19,"YB","A","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water"
+"2013-08-19_YB-Aq9",2013-08-19,2013-08-19,"YB","A","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water"
+"2013-08-19_YB-Aq1",2013-08-19,2013-08-19,"YB","A","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","45%","All counts may be low due to glare and darkness of photo"
+"2013-08-19_YB-Aq2",2013-08-19,2013-08-19,"YB","A","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-Aq6",2013-08-19,2013-08-19,"YB","A","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water patches"
+"2013-08-19_YB-Aq7",2013-08-19,2013-08-19,"YB","A","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water"
+"2013-08-19_YB-Aq9",2013-08-19,2013-08-19,"YB","A","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water"
+"2013-08-19_YB-Aq1",2013-08-19,2013-08-19,"YB","A","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","45%","All counts may be low due to glare and darkness of photo"
+"2013-08-19_YB-Aq2",2013-08-19,2013-08-19,"YB","A","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-Aq6",2013-08-19,2013-08-19,"YB","A","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water patches"
+"2013-08-19_YB-Aq7",2013-08-19,2013-08-19,"YB","A","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water"
+"2013-08-19_YB-Aq9",2013-08-19,2013-08-19,"YB","A","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water"
+"2013-08-19_YB-Aq1",2013-08-19,2013-08-19,"YB","A","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","45%","All counts may be low due to glare and darkness of photo"
+"2013-08-19_YB-Aq2",2013-08-19,2013-08-19,"YB","A","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-Aq6",2013-08-19,2013-08-19,"YB","A","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water patches"
+"2013-08-19_YB-Aq7",2013-08-19,2013-08-19,"YB","A","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water"
+"2013-08-19_YB-Aq9",2013-08-19,2013-08-19,"YB","A","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water"
+"2013-08-19_YB-Aq1",2013-08-19,2013-08-19,"YB","A","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","45%","All counts may be low due to glare and darkness of photo"
+"2013-08-19_YB-Aq2",2013-08-19,2013-08-19,"YB","A","2","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-Aq6",2013-08-19,2013-08-19,"YB","A","6","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water patches"
+"2013-08-19_YB-Aq7",2013-08-19,2013-08-19,"YB","A","7","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water"
+"2013-08-19_YB-Aq9",2013-08-19,2013-08-19,"YB","A","9","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water"
+"2013-08-19_YB-Aq1",2013-08-19,2013-08-19,"YB","A","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","45%","All counts may be low due to glare and darkness of photo"
+"2013-08-19_YB-Aq2",2013-08-19,2013-08-19,"YB","A","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-Aq6",2013-08-19,2013-08-19,"YB","A","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water patches"
+"2013-08-19_YB-Aq7",2013-08-19,2013-08-19,"YB","A","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water"
+"2013-08-19_YB-Aq9",2013-08-19,2013-08-19,"YB","A","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water"
+"2013-08-19_YB-Aq1",2013-08-19,2013-08-19,"YB","A","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","45%","All counts may be low due to glare and darkness of photo"
+"2013-08-19_YB-Aq2",2013-08-19,2013-08-19,"YB","A","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-Aq6",2013-08-19,2013-08-19,"YB","A","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water patches"
+"2013-08-19_YB-Aq7",2013-08-19,2013-08-19,"YB","A","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water"
+"2013-08-19_YB-Aq9",2013-08-19,2013-08-19,"YB","A","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water"
+"2013-08-19_YB-Aq1",2013-08-19,2013-08-19,"YB","A","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","45%","All counts may be low due to glare and darkness of photo"
+"2013-08-19_YB-Aq2",2013-08-19,2013-08-19,"YB","A","2","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-Aq6",2013-08-19,2013-08-19,"YB","A","6","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water patches"
+"2013-08-19_YB-Aq7",2013-08-19,2013-08-19,"YB","A","7","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water"
+"2013-08-19_YB-Aq9",2013-08-19,2013-08-19,"YB","A","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water"
+"2013-08-19_YB-Aq1",2013-08-19,2013-08-19,"YB","A","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","45%","All counts may be low due to glare and darkness of photo"
+"2013-08-19_YB-Aq2",2013-08-19,2013-08-19,"YB","A","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-Aq6",2013-08-19,2013-08-19,"YB","A","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water patches"
+"2013-08-19_YB-Aq7",2013-08-19,2013-08-19,"YB","A","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water"
+"2013-08-19_YB-Aq9",2013-08-19,2013-08-19,"YB","A","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water"
+"2013-08-19_YB-Aq1",2013-08-19,2013-08-19,"YB","A","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","45%","All counts may be low due to glare and darkness of photo"
+"2013-08-19_YB-Aq2",2013-08-19,2013-08-19,"YB","A","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-Aq6",2013-08-19,2013-08-19,"YB","A","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water patches"
+"2013-08-19_YB-Aq7",2013-08-19,2013-08-19,"YB","A","7","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water"
+"2013-08-19_YB-Aq9",2013-08-19,2013-08-19,"YB","A","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water"
+"2013-08-19_YB-Aq1",2013-08-19,2013-08-19,"YB","A","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","45%","All counts may be low due to glare and darkness of photo"
+"2013-08-19_YB-Aq2",2013-08-19,2013-08-19,"YB","A","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-Aq6",2013-08-19,2013-08-19,"YB","A","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water patches"
+"2013-08-19_YB-Aq7",2013-08-19,2013-08-19,"YB","A","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water"
+"2013-08-19_YB-Aq9",2013-08-19,2013-08-19,"YB","A","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water"
+"2013-08-19_YB-ABq1",2013-08-19,2013-08-19,"YB","AB","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2013-08-19_YB-ABq2",2013-08-19,2013-08-19,"YB","AB","2","Alg","Algae","Type 19",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-08-19_YB-ABq3",2013-08-19,2013-08-19,"YB","AB","3","Alg","Algae","Type 19",4,0.0875,45.7142857142857,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-ABq4",2013-08-19,2013-08-19,"YB","AB","4","Alg","Algae","Type 19",9,0.0875,102.857142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle densities likely higher because high water and byssus may hide them. Other organisms may also be hidden"
+"2013-08-19_YB-ABq5",2013-08-19,2013-08-19,"YB","AB","5","Alg","Algae","Type 19",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Barnacle densities likely higher because high water and byssus may hide them. Other organisms may also be hidden"
+"2013-08-19_YB-ABq6",2013-08-19,2013-08-19,"YB","AB","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-08-19_YB-ABq7",2013-08-19,2013-08-19,"YB","AB","7","Alg","Algae","Type 19",6,0.0875,68.5714285714286,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle densities likely higher because high water and byssus may hide them. Other organisms may also be hidden"
+"2013-08-19_YB-ABq8",2013-08-19,2013-08-19,"YB","AB","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","High water, whelk, and byssus count makes barnacle count difficult. Count may be higher for barnacles and other organisms"
+"2013-08-19_YB-ABq9",2013-08-19,2013-08-19,"YB","AB","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","High water, whelk, and byssus count makes barnacle count difficult. Count may be higher for barnacles and other organisms"
+"2013-08-19_YB-ABq1",2013-08-19,2013-08-19,"YB","AB","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2013-08-19_YB-ABq2",2013-08-19,2013-08-19,"YB","AB","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-08-19_YB-ABq3",2013-08-19,2013-08-19,"YB","AB","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-ABq4",2013-08-19,2013-08-19,"YB","AB","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle densities likely higher because high water and byssus may hide them. Other organisms may also be hidden"
+"2013-08-19_YB-ABq5",2013-08-19,2013-08-19,"YB","AB","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Barnacle densities likely higher because high water and byssus may hide them. Other organisms may also be hidden"
+"2013-08-19_YB-ABq6",2013-08-19,2013-08-19,"YB","AB","6","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-08-19_YB-ABq7",2013-08-19,2013-08-19,"YB","AB","7","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle densities likely higher because high water and byssus may hide them. Other organisms may also be hidden"
+"2013-08-19_YB-ABq8",2013-08-19,2013-08-19,"YB","AB","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","High water, whelk, and byssus count makes barnacle count difficult. Count may be higher for barnacles and other organisms"
+"2013-08-19_YB-ABq9",2013-08-19,2013-08-19,"YB","AB","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","High water, whelk, and byssus count makes barnacle count difficult. Count may be higher for barnacles and other organisms"
+"2013-08-19_YB-ABq1",2013-08-19,2013-08-19,"YB","AB","1","Bg","Balanus_glandula","Type 1",2321,0.015625,148544,"c","Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2013-08-19_YB-ABq2",2013-08-19,2013-08-19,"YB","AB","2","Bg","Balanus_glandula","Type 1",1346,0.015625,86144,"c","Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-08-19_YB-ABq3",2013-08-19,2013-08-19,"YB","AB","3","Bg","Balanus_glandula","Type 1",1621,0.015625,103744,"c","Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-ABq4",2013-08-19,2013-08-19,"YB","AB","4","Bg","Balanus_glandula","Type 1",1764,0.015625,112896,"c","Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle densities likely higher because high water and byssus may hide them. Other organisms may also be hidden"
+"2013-08-19_YB-ABq5",2013-08-19,2013-08-19,"YB","AB","5","Bg","Balanus_glandula","Type 1",1206,0.015625,77184,"c","Stephanie Merhoff","Finished","Full","Cropped","3%","Barnacle densities likely higher because high water and byssus may hide them. Other organisms may also be hidden"
+"2013-08-19_YB-ABq6",2013-08-19,2013-08-19,"YB","AB","6","Bg","Balanus_glandula","Type 1",1922,0.015625,123008,"c","Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-08-19_YB-ABq7",2013-08-19,2013-08-19,"YB","AB","7","Bg","Balanus_glandula","Type 1",1219,0.015625,78016,"c","Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle densities likely higher because high water and byssus may hide them. Other organisms may also be hidden"
+"2013-08-19_YB-ABq8",2013-08-19,2013-08-19,"YB","AB","8","Bg","Balanus_glandula","Type 1",1943,0.015625,124352,"c","Stephanie Merhoff","Finished","Full","Cropped","0%","High water, whelk, and byssus count makes barnacle count difficult. Count may be higher for barnacles and other organisms"
+"2013-08-19_YB-ABq9",2013-08-19,2013-08-19,"YB","AB","9","Bg","Balanus_glandula","Type 1",1194,0.015625,76416,"c","Stephanie Merhoff","Finished","Full","Cropped","0%","High water, whelk, and byssus count makes barnacle count difficult. Count may be higher for barnacles and other organisms"
+"2013-08-19_YB-ABq1",2013-08-19,2013-08-19,"YB","AB","1","BgD","Balanus_glandula_(dead)","Type 2",10,0.015625,640,"c","Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2013-08-19_YB-ABq2",2013-08-19,2013-08-19,"YB","AB","2","BgD","Balanus_glandula_(dead)","Type 2",106,0.015625,6784,"c","Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-08-19_YB-ABq3",2013-08-19,2013-08-19,"YB","AB","3","BgD","Balanus_glandula_(dead)","Type 2",46,0.015625,2944,"c","Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-ABq4",2013-08-19,2013-08-19,"YB","AB","4","BgD","Balanus_glandula_(dead)","Type 2",11,0.015625,704,"c","Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle densities likely higher because high water and byssus may hide them. Other organisms may also be hidden"
+"2013-08-19_YB-ABq5",2013-08-19,2013-08-19,"YB","AB","5","BgD","Balanus_glandula_(dead)","Type 2",13,0.015625,832,"c","Stephanie Merhoff","Finished","Full","Cropped","3%","Barnacle densities likely higher because high water and byssus may hide them. Other organisms may also be hidden"
+"2013-08-19_YB-ABq6",2013-08-19,2013-08-19,"YB","AB","6","BgD","Balanus_glandula_(dead)","Type 2",121,0.015625,7744,"c","Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-08-19_YB-ABq7",2013-08-19,2013-08-19,"YB","AB","7","BgD","Balanus_glandula_(dead)","Type 2",5,0.015625,320,"c","Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle densities likely higher because high water and byssus may hide them. Other organisms may also be hidden"
+"2013-08-19_YB-ABq8",2013-08-19,2013-08-19,"YB","AB","8","BgD","Balanus_glandula_(dead)","Type 2",3,0.015625,192,"c","Stephanie Merhoff","Finished","Full","Cropped","0%","High water, whelk, and byssus count makes barnacle count difficult. Count may be higher for barnacles and other organisms"
+"2013-08-19_YB-ABq9",2013-08-19,2013-08-19,"YB","AB","9","BgD","Balanus_glandula_(dead)","Type 2",4,0.015625,256,"c","Stephanie Merhoff","Finished","Full","Cropped","0%","High water, whelk, and byssus count makes barnacle count difficult. Count may be higher for barnacles and other organisms"
+"2013-08-19_YB-ABq1",2013-08-19,2013-08-19,"YB","AB","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2013-08-19_YB-ABq2",2013-08-19,2013-08-19,"YB","AB","2","Chi","Chiton_spp","Type 22",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-08-19_YB-ABq3",2013-08-19,2013-08-19,"YB","AB","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-ABq4",2013-08-19,2013-08-19,"YB","AB","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle densities likely higher because high water and byssus may hide them. Other organisms may also be hidden"
+"2013-08-19_YB-ABq5",2013-08-19,2013-08-19,"YB","AB","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Barnacle densities likely higher because high water and byssus may hide them. Other organisms may also be hidden"
+"2013-08-19_YB-ABq6",2013-08-19,2013-08-19,"YB","AB","6","Chi","Chiton_spp","Type 22",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-08-19_YB-ABq7",2013-08-19,2013-08-19,"YB","AB","7","Chi","Chiton_spp","Type 22",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle densities likely higher because high water and byssus may hide them. Other organisms may also be hidden"
+"2013-08-19_YB-ABq8",2013-08-19,2013-08-19,"YB","AB","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","High water, whelk, and byssus count makes barnacle count difficult. Count may be higher for barnacles and other organisms"
+"2013-08-19_YB-ABq9",2013-08-19,2013-08-19,"YB","AB","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","High water, whelk, and byssus count makes barnacle count difficult. Count may be higher for barnacles and other organisms"
+"2013-08-19_YB-ABq1",2013-08-19,2013-08-19,"YB","AB","1","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2013-08-19_YB-ABq2",2013-08-19,2013-08-19,"YB","AB","2","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-08-19_YB-ABq3",2013-08-19,2013-08-19,"YB","AB","3","Cth","Chthamalus_dalli","Type 3",1,0.015625,64,"c","Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-ABq4",2013-08-19,2013-08-19,"YB","AB","4","Cth","Chthamalus_dalli","Type 3",3,0.015625,192,"c","Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle densities likely higher because high water and byssus may hide them. Other organisms may also be hidden"
+"2013-08-19_YB-ABq5",2013-08-19,2013-08-19,"YB","AB","5","Cth","Chthamalus_dalli","Type 3",4,0.015625,256,"c","Stephanie Merhoff","Finished","Full","Cropped","3%","Barnacle densities likely higher because high water and byssus may hide them. Other organisms may also be hidden"
+"2013-08-19_YB-ABq6",2013-08-19,2013-08-19,"YB","AB","6","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-08-19_YB-ABq7",2013-08-19,2013-08-19,"YB","AB","7","Cth","Chthamalus_dalli","Type 3",3,0.015625,192,"c","Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle densities likely higher because high water and byssus may hide them. Other organisms may also be hidden"
+"2013-08-19_YB-ABq8",2013-08-19,2013-08-19,"YB","AB","8","Cth","Chthamalus_dalli","Type 3",4,0.015625,256,"c","Stephanie Merhoff","Finished","Full","Cropped","0%","High water, whelk, and byssus count makes barnacle count difficult. Count may be higher for barnacles and other organisms"
+"2013-08-19_YB-ABq9",2013-08-19,2013-08-19,"YB","AB","9","Cth","Chthamalus_dalli","Type 3",1,0.015625,64,"c","Stephanie Merhoff","Finished","Full","Cropped","0%","High water, whelk, and byssus count makes barnacle count difficult. Count may be higher for barnacles and other organisms"
+"2013-08-19_YB-ABq1",2013-08-19,2013-08-19,"YB","AB","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2013-08-19_YB-ABq2",2013-08-19,2013-08-19,"YB","AB","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-08-19_YB-ABq3",2013-08-19,2013-08-19,"YB","AB","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-ABq4",2013-08-19,2013-08-19,"YB","AB","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle densities likely higher because high water and byssus may hide them. Other organisms may also be hidden"
+"2013-08-19_YB-ABq5",2013-08-19,2013-08-19,"YB","AB","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","3%","Barnacle densities likely higher because high water and byssus may hide them. Other organisms may also be hidden"
+"2013-08-19_YB-ABq6",2013-08-19,2013-08-19,"YB","AB","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-08-19_YB-ABq7",2013-08-19,2013-08-19,"YB","AB","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle densities likely higher because high water and byssus may hide them. Other organisms may also be hidden"
+"2013-08-19_YB-ABq8",2013-08-19,2013-08-19,"YB","AB","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","0%","High water, whelk, and byssus count makes barnacle count difficult. Count may be higher for barnacles and other organisms"
+"2013-08-19_YB-ABq9",2013-08-19,2013-08-19,"YB","AB","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","0%","High water, whelk, and byssus count makes barnacle count difficult. Count may be higher for barnacles and other organisms"
+"2013-08-19_YB-ABq1",2013-08-19,2013-08-19,"YB","AB","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2013-08-19_YB-ABq2",2013-08-19,2013-08-19,"YB","AB","2","Emp","Emplectonema worm","Type 23",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-08-19_YB-ABq3",2013-08-19,2013-08-19,"YB","AB","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-ABq4",2013-08-19,2013-08-19,"YB","AB","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle densities likely higher because high water and byssus may hide them. Other organisms may also be hidden"
+"2013-08-19_YB-ABq5",2013-08-19,2013-08-19,"YB","AB","5","Emp","Emplectonema worm","Type 23",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Barnacle densities likely higher because high water and byssus may hide them. Other organisms may also be hidden"
+"2013-08-19_YB-ABq6",2013-08-19,2013-08-19,"YB","AB","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-08-19_YB-ABq7",2013-08-19,2013-08-19,"YB","AB","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle densities likely higher because high water and byssus may hide them. Other organisms may also be hidden"
+"2013-08-19_YB-ABq8",2013-08-19,2013-08-19,"YB","AB","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","High water, whelk, and byssus count makes barnacle count difficult. Count may be higher for barnacles and other organisms"
+"2013-08-19_YB-ABq9",2013-08-19,2013-08-19,"YB","AB","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","High water, whelk, and byssus count makes barnacle count difficult. Count may be higher for barnacles and other organisms"
+"2013-08-19_YB-ABq1",2013-08-19,2013-08-19,"YB","AB","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2013-08-19_YB-ABq2",2013-08-19,2013-08-19,"YB","AB","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-08-19_YB-ABq3",2013-08-19,2013-08-19,"YB","AB","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-ABq4",2013-08-19,2013-08-19,"YB","AB","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle densities likely higher because high water and byssus may hide them. Other organisms may also be hidden"
+"2013-08-19_YB-ABq5",2013-08-19,2013-08-19,"YB","AB","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Barnacle densities likely higher because high water and byssus may hide them. Other organisms may also be hidden"
+"2013-08-19_YB-ABq6",2013-08-19,2013-08-19,"YB","AB","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-08-19_YB-ABq7",2013-08-19,2013-08-19,"YB","AB","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle densities likely higher because high water and byssus may hide them. Other organisms may also be hidden"
+"2013-08-19_YB-ABq8",2013-08-19,2013-08-19,"YB","AB","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","High water, whelk, and byssus count makes barnacle count difficult. Count may be higher for barnacles and other organisms"
+"2013-08-19_YB-ABq9",2013-08-19,2013-08-19,"YB","AB","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","High water, whelk, and byssus count makes barnacle count difficult. Count may be higher for barnacles and other organisms"
+"2013-08-19_YB-ABq1",2013-08-19,2013-08-19,"YB","AB","1","Lim","Limpets","Type 12",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2013-08-19_YB-ABq2",2013-08-19,2013-08-19,"YB","AB","2","Lim","Limpets","Type 12",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-08-19_YB-ABq3",2013-08-19,2013-08-19,"YB","AB","3","Lim","Limpets","Type 12",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-ABq4",2013-08-19,2013-08-19,"YB","AB","4","Lim","Limpets","Type 12",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle densities likely higher because high water and byssus may hide them. Other organisms may also be hidden"
+"2013-08-19_YB-ABq5",2013-08-19,2013-08-19,"YB","AB","5","Lim","Limpets","Type 12",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Barnacle densities likely higher because high water and byssus may hide them. Other organisms may also be hidden"
+"2013-08-19_YB-ABq6",2013-08-19,2013-08-19,"YB","AB","6","Lim","Limpets","Type 12",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-08-19_YB-ABq7",2013-08-19,2013-08-19,"YB","AB","7","Lim","Limpets","Type 12",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle densities likely higher because high water and byssus may hide them. Other organisms may also be hidden"
+"2013-08-19_YB-ABq8",2013-08-19,2013-08-19,"YB","AB","8","Lim","Limpets","Type 12",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","High water, whelk, and byssus count makes barnacle count difficult. Count may be higher for barnacles and other organisms"
+"2013-08-19_YB-ABq9",2013-08-19,2013-08-19,"YB","AB","9","Lim","Limpets","Type 12",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","High water, whelk, and byssus count makes barnacle count difficult. Count may be higher for barnacles and other organisms"
+"2013-08-19_YB-ABq1",2013-08-19,2013-08-19,"YB","AB","1","Ls","Littorina_sitkana","Type 13",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2013-08-19_YB-ABq2",2013-08-19,2013-08-19,"YB","AB","2","Ls","Littorina_sitkana","Type 13",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-08-19_YB-ABq3",2013-08-19,2013-08-19,"YB","AB","3","Ls","Littorina_sitkana","Type 13",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-ABq4",2013-08-19,2013-08-19,"YB","AB","4","Ls","Littorina_sitkana","Type 13",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle densities likely higher because high water and byssus may hide them. Other organisms may also be hidden"
+"2013-08-19_YB-ABq5",2013-08-19,2013-08-19,"YB","AB","5","Ls","Littorina_sitkana","Type 13",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Barnacle densities likely higher because high water and byssus may hide them. Other organisms may also be hidden"
+"2013-08-19_YB-ABq6",2013-08-19,2013-08-19,"YB","AB","6","Ls","Littorina_sitkana","Type 13",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-08-19_YB-ABq7",2013-08-19,2013-08-19,"YB","AB","7","Ls","Littorina_sitkana","Type 13",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle densities likely higher because high water and byssus may hide them. Other organisms may also be hidden"
+"2013-08-19_YB-ABq8",2013-08-19,2013-08-19,"YB","AB","8","Ls","Littorina_sitkana","Type 13",5,0.0875,57.1428571428571,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","High water, whelk, and byssus count makes barnacle count difficult. Count may be higher for barnacles and other organisms"
+"2013-08-19_YB-ABq9",2013-08-19,2013-08-19,"YB","AB","9","Ls","Littorina_sitkana","Type 13",9,0.0875,102.857142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","High water, whelk, and byssus count makes barnacle count difficult. Count may be higher for barnacles and other organisms"
+"2013-08-19_YB-ABq1",2013-08-19,2013-08-19,"YB","AB","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2013-08-19_YB-ABq2",2013-08-19,2013-08-19,"YB","AB","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-08-19_YB-ABq3",2013-08-19,2013-08-19,"YB","AB","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-ABq4",2013-08-19,2013-08-19,"YB","AB","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle densities likely higher because high water and byssus may hide them. Other organisms may also be hidden"
+"2013-08-19_YB-ABq5",2013-08-19,2013-08-19,"YB","AB","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Barnacle densities likely higher because high water and byssus may hide them. Other organisms may also be hidden"
+"2013-08-19_YB-ABq6",2013-08-19,2013-08-19,"YB","AB","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-08-19_YB-ABq7",2013-08-19,2013-08-19,"YB","AB","7","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle densities likely higher because high water and byssus may hide them. Other organisms may also be hidden"
+"2013-08-19_YB-ABq8",2013-08-19,2013-08-19,"YB","AB","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","High water, whelk, and byssus count makes barnacle count difficult. Count may be higher for barnacles and other organisms"
+"2013-08-19_YB-ABq9",2013-08-19,2013-08-19,"YB","AB","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","High water, whelk, and byssus count makes barnacle count difficult. Count may be higher for barnacles and other organisms"
+"2013-08-19_YB-ABq1",2013-08-19,2013-08-19,"YB","AB","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2013-08-19_YB-ABq2",2013-08-19,2013-08-19,"YB","AB","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-08-19_YB-ABq3",2013-08-19,2013-08-19,"YB","AB","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-ABq4",2013-08-19,2013-08-19,"YB","AB","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle densities likely higher because high water and byssus may hide them. Other organisms may also be hidden"
+"2013-08-19_YB-ABq5",2013-08-19,2013-08-19,"YB","AB","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Barnacle densities likely higher because high water and byssus may hide them. Other organisms may also be hidden"
+"2013-08-19_YB-ABq6",2013-08-19,2013-08-19,"YB","AB","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-08-19_YB-ABq7",2013-08-19,2013-08-19,"YB","AB","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle densities likely higher because high water and byssus may hide them. Other organisms may also be hidden"
+"2013-08-19_YB-ABq8",2013-08-19,2013-08-19,"YB","AB","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","High water, whelk, and byssus count makes barnacle count difficult. Count may be higher for barnacles and other organisms"
+"2013-08-19_YB-ABq9",2013-08-19,2013-08-19,"YB","AB","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","High water, whelk, and byssus count makes barnacle count difficult. Count may be higher for barnacles and other organisms"
+"2013-08-19_YB-ABq1",2013-08-19,2013-08-19,"YB","AB","1","Myt","Mytilus_spp","Type 7",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2013-08-19_YB-ABq2",2013-08-19,2013-08-19,"YB","AB","2","Myt","Mytilus_spp","Type 7",4,0.0875,45.7142857142857,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-08-19_YB-ABq3",2013-08-19,2013-08-19,"YB","AB","3","Myt","Mytilus_spp","Type 7",10,0.0875,114.285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-ABq4",2013-08-19,2013-08-19,"YB","AB","4","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle densities likely higher because high water and byssus may hide them. Other organisms may also be hidden"
+"2013-08-19_YB-ABq5",2013-08-19,2013-08-19,"YB","AB","5","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Barnacle densities likely higher because high water and byssus may hide them. Other organisms may also be hidden"
+"2013-08-19_YB-ABq6",2013-08-19,2013-08-19,"YB","AB","6","Myt","Mytilus_spp","Type 7",8,0.0875,91.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-08-19_YB-ABq7",2013-08-19,2013-08-19,"YB","AB","7","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle densities likely higher because high water and byssus may hide them. Other organisms may also be hidden"
+"2013-08-19_YB-ABq8",2013-08-19,2013-08-19,"YB","AB","8","Myt","Mytilus_spp","Type 7",8,0.0875,91.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","High water, whelk, and byssus count makes barnacle count difficult. Count may be higher for barnacles and other organisms"
+"2013-08-19_YB-ABq9",2013-08-19,2013-08-19,"YB","AB","9","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","High water, whelk, and byssus count makes barnacle count difficult. Count may be higher for barnacles and other organisms"
+"2013-08-19_YB-ABq1",2013-08-19,2013-08-19,"YB","AB","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2013-08-19_YB-ABq2",2013-08-19,2013-08-19,"YB","AB","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-08-19_YB-ABq3",2013-08-19,2013-08-19,"YB","AB","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-ABq4",2013-08-19,2013-08-19,"YB","AB","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle densities likely higher because high water and byssus may hide them. Other organisms may also be hidden"
+"2013-08-19_YB-ABq5",2013-08-19,2013-08-19,"YB","AB","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Barnacle densities likely higher because high water and byssus may hide them. Other organisms may also be hidden"
+"2013-08-19_YB-ABq6",2013-08-19,2013-08-19,"YB","AB","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-08-19_YB-ABq7",2013-08-19,2013-08-19,"YB","AB","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle densities likely higher because high water and byssus may hide them. Other organisms may also be hidden"
+"2013-08-19_YB-ABq8",2013-08-19,2013-08-19,"YB","AB","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","High water, whelk, and byssus count makes barnacle count difficult. Count may be higher for barnacles and other organisms"
+"2013-08-19_YB-ABq9",2013-08-19,2013-08-19,"YB","AB","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","High water, whelk, and byssus count makes barnacle count difficult. Count may be higher for barnacles and other organisms"
+"2013-08-19_YB-ABq1",2013-08-19,2013-08-19,"YB","AB","1","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2013-08-19_YB-ABq2",2013-08-19,2013-08-19,"YB","AB","2","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-08-19_YB-ABq3",2013-08-19,2013-08-19,"YB","AB","3","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-ABq4",2013-08-19,2013-08-19,"YB","AB","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle densities likely higher because high water and byssus may hide them. Other organisms may also be hidden"
+"2013-08-19_YB-ABq5",2013-08-19,2013-08-19,"YB","AB","5","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Barnacle densities likely higher because high water and byssus may hide them. Other organisms may also be hidden"
+"2013-08-19_YB-ABq6",2013-08-19,2013-08-19,"YB","AB","6","Mt","Mytilus_trossulus","Type 15",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-08-19_YB-ABq7",2013-08-19,2013-08-19,"YB","AB","7","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle densities likely higher because high water and byssus may hide them. Other organisms may also be hidden"
+"2013-08-19_YB-ABq8",2013-08-19,2013-08-19,"YB","AB","8","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","High water, whelk, and byssus count makes barnacle count difficult. Count may be higher for barnacles and other organisms"
+"2013-08-19_YB-ABq9",2013-08-19,2013-08-19,"YB","AB","9","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","High water, whelk, and byssus count makes barnacle count difficult. Count may be higher for barnacles and other organisms"
+"2013-08-19_YB-ABq1",2013-08-19,2013-08-19,"YB","AB","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2013-08-19_YB-ABq2",2013-08-19,2013-08-19,"YB","AB","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-08-19_YB-ABq3",2013-08-19,2013-08-19,"YB","AB","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-ABq4",2013-08-19,2013-08-19,"YB","AB","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle densities likely higher because high water and byssus may hide them. Other organisms may also be hidden"
+"2013-08-19_YB-ABq5",2013-08-19,2013-08-19,"YB","AB","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Barnacle densities likely higher because high water and byssus may hide them. Other organisms may also be hidden"
+"2013-08-19_YB-ABq6",2013-08-19,2013-08-19,"YB","AB","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-08-19_YB-ABq7",2013-08-19,2013-08-19,"YB","AB","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle densities likely higher because high water and byssus may hide them. Other organisms may also be hidden"
+"2013-08-19_YB-ABq8",2013-08-19,2013-08-19,"YB","AB","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","High water, whelk, and byssus count makes barnacle count difficult. Count may be higher for barnacles and other organisms"
+"2013-08-19_YB-ABq9",2013-08-19,2013-08-19,"YB","AB","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","High water, whelk, and byssus count makes barnacle count difficult. Count may be higher for barnacles and other organisms"
+"2013-08-19_YB-ABq1",2013-08-19,2013-08-19,"YB","AB","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2013-08-19_YB-ABq2",2013-08-19,2013-08-19,"YB","AB","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-08-19_YB-ABq3",2013-08-19,2013-08-19,"YB","AB","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-ABq4",2013-08-19,2013-08-19,"YB","AB","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle densities likely higher because high water and byssus may hide them. Other organisms may also be hidden"
+"2013-08-19_YB-ABq5",2013-08-19,2013-08-19,"YB","AB","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Barnacle densities likely higher because high water and byssus may hide them. Other organisms may also be hidden"
+"2013-08-19_YB-ABq6",2013-08-19,2013-08-19,"YB","AB","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-08-19_YB-ABq7",2013-08-19,2013-08-19,"YB","AB","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle densities likely higher because high water and byssus may hide them. Other organisms may also be hidden"
+"2013-08-19_YB-ABq8",2013-08-19,2013-08-19,"YB","AB","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","High water, whelk, and byssus count makes barnacle count difficult. Count may be higher for barnacles and other organisms"
+"2013-08-19_YB-ABq9",2013-08-19,2013-08-19,"YB","AB","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","High water, whelk, and byssus count makes barnacle count difficult. Count may be higher for barnacles and other organisms"
+"2013-08-19_YB-ABq1",2013-08-19,2013-08-19,"YB","AB","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2013-08-19_YB-ABq2",2013-08-19,2013-08-19,"YB","AB","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-08-19_YB-ABq3",2013-08-19,2013-08-19,"YB","AB","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-ABq4",2013-08-19,2013-08-19,"YB","AB","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle densities likely higher because high water and byssus may hide them. Other organisms may also be hidden"
+"2013-08-19_YB-ABq5",2013-08-19,2013-08-19,"YB","AB","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Barnacle densities likely higher because high water and byssus may hide them. Other organisms may also be hidden"
+"2013-08-19_YB-ABq6",2013-08-19,2013-08-19,"YB","AB","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-08-19_YB-ABq7",2013-08-19,2013-08-19,"YB","AB","7","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle densities likely higher because high water and byssus may hide them. Other organisms may also be hidden"
+"2013-08-19_YB-ABq8",2013-08-19,2013-08-19,"YB","AB","8","Nc","Nucella_canaliculata","Type 10",8,0.0875,91.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","High water, whelk, and byssus count makes barnacle count difficult. Count may be higher for barnacles and other organisms"
+"2013-08-19_YB-ABq9",2013-08-19,2013-08-19,"YB","AB","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","High water, whelk, and byssus count makes barnacle count difficult. Count may be higher for barnacles and other organisms"
+"2013-08-19_YB-ABq1",2013-08-19,2013-08-19,"YB","AB","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2013-08-19_YB-ABq2",2013-08-19,2013-08-19,"YB","AB","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-08-19_YB-ABq3",2013-08-19,2013-08-19,"YB","AB","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-ABq4",2013-08-19,2013-08-19,"YB","AB","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle densities likely higher because high water and byssus may hide them. Other organisms may also be hidden"
+"2013-08-19_YB-ABq5",2013-08-19,2013-08-19,"YB","AB","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Barnacle densities likely higher because high water and byssus may hide them. Other organisms may also be hidden"
+"2013-08-19_YB-ABq6",2013-08-19,2013-08-19,"YB","AB","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-08-19_YB-ABq7",2013-08-19,2013-08-19,"YB","AB","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle densities likely higher because high water and byssus may hide them. Other organisms may also be hidden"
+"2013-08-19_YB-ABq8",2013-08-19,2013-08-19,"YB","AB","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","High water, whelk, and byssus count makes barnacle count difficult. Count may be higher for barnacles and other organisms"
+"2013-08-19_YB-ABq9",2013-08-19,2013-08-19,"YB","AB","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","High water, whelk, and byssus count makes barnacle count difficult. Count may be higher for barnacles and other organisms"
+"2013-08-19_YB-ABq1",2013-08-19,2013-08-19,"YB","AB","1","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2013-08-19_YB-ABq2",2013-08-19,2013-08-19,"YB","AB","2","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-08-19_YB-ABq3",2013-08-19,2013-08-19,"YB","AB","3","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-ABq4",2013-08-19,2013-08-19,"YB","AB","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle densities likely higher because high water and byssus may hide them. Other organisms may also be hidden"
+"2013-08-19_YB-ABq5",2013-08-19,2013-08-19,"YB","AB","5","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Barnacle densities likely higher because high water and byssus may hide them. Other organisms may also be hidden"
+"2013-08-19_YB-ABq6",2013-08-19,2013-08-19,"YB","AB","6","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-08-19_YB-ABq7",2013-08-19,2013-08-19,"YB","AB","7","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle densities likely higher because high water and byssus may hide them. Other organisms may also be hidden"
+"2013-08-19_YB-ABq8",2013-08-19,2013-08-19,"YB","AB","8","No","Nucella_ostrina","Type 9",31,0.0875,354.285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","High water, whelk, and byssus count makes barnacle count difficult. Count may be higher for barnacles and other organisms"
+"2013-08-19_YB-ABq9",2013-08-19,2013-08-19,"YB","AB","9","No","Nucella_ostrina","Type 9",12,0.0875,137.142857142857,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","High water, whelk, and byssus count makes barnacle count difficult. Count may be higher for barnacles and other organisms"
+"2013-08-19_YB-ABq1",2013-08-19,2013-08-19,"YB","AB","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2013-08-19_YB-ABq2",2013-08-19,2013-08-19,"YB","AB","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-08-19_YB-ABq3",2013-08-19,2013-08-19,"YB","AB","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-ABq4",2013-08-19,2013-08-19,"YB","AB","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle densities likely higher because high water and byssus may hide them. Other organisms may also be hidden"
+"2013-08-19_YB-ABq5",2013-08-19,2013-08-19,"YB","AB","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Barnacle densities likely higher because high water and byssus may hide them. Other organisms may also be hidden"
+"2013-08-19_YB-ABq6",2013-08-19,2013-08-19,"YB","AB","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-08-19_YB-ABq7",2013-08-19,2013-08-19,"YB","AB","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle densities likely higher because high water and byssus may hide them. Other organisms may also be hidden"
+"2013-08-19_YB-ABq8",2013-08-19,2013-08-19,"YB","AB","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","High water, whelk, and byssus count makes barnacle count difficult. Count may be higher for barnacles and other organisms"
+"2013-08-19_YB-ABq9",2013-08-19,2013-08-19,"YB","AB","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","High water, whelk, and byssus count makes barnacle count difficult. Count may be higher for barnacles and other organisms"
+"2013-08-19_YB-ABq1",2013-08-19,2013-08-19,"YB","AB","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2013-08-19_YB-ABq2",2013-08-19,2013-08-19,"YB","AB","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-08-19_YB-ABq3",2013-08-19,2013-08-19,"YB","AB","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-ABq4",2013-08-19,2013-08-19,"YB","AB","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle densities likely higher because high water and byssus may hide them. Other organisms may also be hidden"
+"2013-08-19_YB-ABq5",2013-08-19,2013-08-19,"YB","AB","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Barnacle densities likely higher because high water and byssus may hide them. Other organisms may also be hidden"
+"2013-08-19_YB-ABq6",2013-08-19,2013-08-19,"YB","AB","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-08-19_YB-ABq7",2013-08-19,2013-08-19,"YB","AB","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle densities likely higher because high water and byssus may hide them. Other organisms may also be hidden"
+"2013-08-19_YB-ABq8",2013-08-19,2013-08-19,"YB","AB","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","High water, whelk, and byssus count makes barnacle count difficult. Count may be higher for barnacles and other organisms"
+"2013-08-19_YB-ABq9",2013-08-19,2013-08-19,"YB","AB","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","High water, whelk, and byssus count makes barnacle count difficult. Count may be higher for barnacles and other organisms"
+"2013-08-19_YB-ABq1",2013-08-19,2013-08-19,"YB","AB","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2013-08-19_YB-ABq2",2013-08-19,2013-08-19,"YB","AB","2","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-08-19_YB-ABq3",2013-08-19,2013-08-19,"YB","AB","3","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-ABq4",2013-08-19,2013-08-19,"YB","AB","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle densities likely higher because high water and byssus may hide them. Other organisms may also be hidden"
+"2013-08-19_YB-ABq5",2013-08-19,2013-08-19,"YB","AB","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Barnacle densities likely higher because high water and byssus may hide them. Other organisms may also be hidden"
+"2013-08-19_YB-ABq6",2013-08-19,2013-08-19,"YB","AB","6","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-08-19_YB-ABq7",2013-08-19,2013-08-19,"YB","AB","7","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle densities likely higher because high water and byssus may hide them. Other organisms may also be hidden"
+"2013-08-19_YB-ABq8",2013-08-19,2013-08-19,"YB","AB","8","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","High water, whelk, and byssus count makes barnacle count difficult. Count may be higher for barnacles and other organisms"
+"2013-08-19_YB-ABq9",2013-08-19,2013-08-19,"YB","AB","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","High water, whelk, and byssus count makes barnacle count difficult. Count may be higher for barnacles and other organisms"
+"2013-08-19_YB-ABq1",2013-08-19,2013-08-19,"YB","AB","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2013-08-19_YB-ABq2",2013-08-19,2013-08-19,"YB","AB","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-08-19_YB-ABq3",2013-08-19,2013-08-19,"YB","AB","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-ABq4",2013-08-19,2013-08-19,"YB","AB","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle densities likely higher because high water and byssus may hide them. Other organisms may also be hidden"
+"2013-08-19_YB-ABq5",2013-08-19,2013-08-19,"YB","AB","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Barnacle densities likely higher because high water and byssus may hide them. Other organisms may also be hidden"
+"2013-08-19_YB-ABq6",2013-08-19,2013-08-19,"YB","AB","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-08-19_YB-ABq7",2013-08-19,2013-08-19,"YB","AB","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle densities likely higher because high water and byssus may hide them. Other organisms may also be hidden"
+"2013-08-19_YB-ABq8",2013-08-19,2013-08-19,"YB","AB","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","High water, whelk, and byssus count makes barnacle count difficult. Count may be higher for barnacles and other organisms"
+"2013-08-19_YB-ABq9",2013-08-19,2013-08-19,"YB","AB","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","High water, whelk, and byssus count makes barnacle count difficult. Count may be higher for barnacles and other organisms"
+"2013-08-19_YB-ABq1",2013-08-19,2013-08-19,"YB","AB","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2013-08-19_YB-ABq2",2013-08-19,2013-08-19,"YB","AB","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-08-19_YB-ABq3",2013-08-19,2013-08-19,"YB","AB","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-ABq4",2013-08-19,2013-08-19,"YB","AB","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle densities likely higher because high water and byssus may hide them. Other organisms may also be hidden"
+"2013-08-19_YB-ABq5",2013-08-19,2013-08-19,"YB","AB","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Barnacle densities likely higher because high water and byssus may hide them. Other organisms may also be hidden"
+"2013-08-19_YB-ABq6",2013-08-19,2013-08-19,"YB","AB","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-08-19_YB-ABq7",2013-08-19,2013-08-19,"YB","AB","7","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle densities likely higher because high water and byssus may hide them. Other organisms may also be hidden"
+"2013-08-19_YB-ABq8",2013-08-19,2013-08-19,"YB","AB","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","High water, whelk, and byssus count makes barnacle count difficult. Count may be higher for barnacles and other organisms"
+"2013-08-19_YB-ABq9",2013-08-19,2013-08-19,"YB","AB","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","High water, whelk, and byssus count makes barnacle count difficult. Count may be higher for barnacles and other organisms"
+"2013-08-19_YB-ABq1",2013-08-19,2013-08-19,"YB","AB","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2013-08-19_YB-ABq2",2013-08-19,2013-08-19,"YB","AB","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-08-19_YB-ABq3",2013-08-19,2013-08-19,"YB","AB","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-ABq4",2013-08-19,2013-08-19,"YB","AB","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle densities likely higher because high water and byssus may hide them. Other organisms may also be hidden"
+"2013-08-19_YB-ABq5",2013-08-19,2013-08-19,"YB","AB","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Barnacle densities likely higher because high water and byssus may hide them. Other organisms may also be hidden"
+"2013-08-19_YB-ABq6",2013-08-19,2013-08-19,"YB","AB","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-08-19_YB-ABq7",2013-08-19,2013-08-19,"YB","AB","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle densities likely higher because high water and byssus may hide them. Other organisms may also be hidden"
+"2013-08-19_YB-ABq8",2013-08-19,2013-08-19,"YB","AB","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","High water, whelk, and byssus count makes barnacle count difficult. Count may be higher for barnacles and other organisms"
+"2013-08-19_YB-ABq9",2013-08-19,2013-08-19,"YB","AB","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","High water, whelk, and byssus count makes barnacle count difficult. Count may be higher for barnacles and other organisms"
+"2013-08-19_YB-ACq1",2013-08-19,2013-08-19,"YB","AC","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","33%",""
+"2013-08-19_YB-ACq2",2013-08-19,2013-08-19,"YB","AC","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq3",2013-08-19,2013-08-19,"YB","AC","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","40%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq4",2013-08-19,2013-08-19,"YB","AC","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","65%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq5",2013-08-19,2013-08-19,"YB","AC","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq6",2013-08-19,2013-08-19,"YB","AC","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq7",2013-08-19,2013-08-19,"YB","AC","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","60%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq8",2013-08-19,2013-08-19,"YB","AC","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","35%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq9",2013-08-19,2013-08-19,"YB","AC","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq1",2013-08-19,2013-08-19,"YB","AC","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","33%",""
+"2013-08-19_YB-ACq2",2013-08-19,2013-08-19,"YB","AC","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq3",2013-08-19,2013-08-19,"YB","AC","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","40%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq4",2013-08-19,2013-08-19,"YB","AC","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","65%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq5",2013-08-19,2013-08-19,"YB","AC","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq6",2013-08-19,2013-08-19,"YB","AC","6","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq7",2013-08-19,2013-08-19,"YB","AC","7","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","60%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq8",2013-08-19,2013-08-19,"YB","AC","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","35%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq9",2013-08-19,2013-08-19,"YB","AC","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq1",2013-08-19,2013-08-19,"YB","AC","1","Bg","Balanus_glandula","Type 1",3081,0.015625,197184,"c","Beatriz Vaca","Finished","Full","Cropped","33%",""
+"2013-08-19_YB-ACq2",2013-08-19,2013-08-19,"YB","AC","2","Bg","Balanus_glandula","Type 1",989,0.015625,63296,"c","Stephanie Merhoff","Finished","Full","Cropped","20%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq3",2013-08-19,2013-08-19,"YB","AC","3","Bg","Balanus_glandula","Type 1",1127,0.015625,72128,"c","Stephanie Merhoff","Finished","Full","Cropped","40%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq4",2013-08-19,2013-08-19,"YB","AC","4","Bg","Balanus_glandula","Type 1",480,0.015625,30720,"c","Stephanie Merhoff","Finished","Full","Cropped","65%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq5",2013-08-19,2013-08-19,"YB","AC","5","Bg","Balanus_glandula","Type 1",1414,0.015625,90496,"c","Stephanie Merhoff","Finished","Full","Cropped","25%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq6",2013-08-19,2013-08-19,"YB","AC","6","Bg","Balanus_glandula","Type 1",710,0.015625,45440,"c","Stephanie Merhoff","Finished","Full","Cropped","50%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq7",2013-08-19,2013-08-19,"YB","AC","7","Bg","Balanus_glandula","Type 1",512,0.015625,32768,"c","Stephanie Merhoff","Finished","Full","Cropped","60%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq8",2013-08-19,2013-08-19,"YB","AC","8","Bg","Balanus_glandula","Type 1",2275,0.015625,145600,"c","Stephanie Merhoff","Finished","Full","Cropped","35%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq9",2013-08-19,2013-08-19,"YB","AC","9","Bg","Balanus_glandula","Type 1",672,0.015625,43008,"c","Stephanie Merhoff","Finished","Full","Cropped","25%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq1",2013-08-19,2013-08-19,"YB","AC","1","BgD","Balanus_glandula_(dead)","Type 2",49,0.015625,3136,"c","Beatriz Vaca","Finished","Full","Cropped","33%",""
+"2013-08-19_YB-ACq2",2013-08-19,2013-08-19,"YB","AC","2","BgD","Balanus_glandula_(dead)","Type 2",1,0.015625,64,"c","Stephanie Merhoff","Finished","Full","Cropped","20%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq3",2013-08-19,2013-08-19,"YB","AC","3","BgD","Balanus_glandula_(dead)","Type 2",1,0.015625,64,"c","Stephanie Merhoff","Finished","Full","Cropped","40%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq4",2013-08-19,2013-08-19,"YB","AC","4","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","65%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq5",2013-08-19,2013-08-19,"YB","AC","5","BgD","Balanus_glandula_(dead)","Type 2",5,0.015625,320,"c","Stephanie Merhoff","Finished","Full","Cropped","25%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq6",2013-08-19,2013-08-19,"YB","AC","6","BgD","Balanus_glandula_(dead)","Type 2",1,0.015625,64,"c","Stephanie Merhoff","Finished","Full","Cropped","50%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq7",2013-08-19,2013-08-19,"YB","AC","7","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","60%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq8",2013-08-19,2013-08-19,"YB","AC","8","BgD","Balanus_glandula_(dead)","Type 2",3,0.015625,192,"c","Stephanie Merhoff","Finished","Full","Cropped","35%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq9",2013-08-19,2013-08-19,"YB","AC","9","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","25%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq1",2013-08-19,2013-08-19,"YB","AC","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","33%",""
+"2013-08-19_YB-ACq2",2013-08-19,2013-08-19,"YB","AC","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq3",2013-08-19,2013-08-19,"YB","AC","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","40%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq4",2013-08-19,2013-08-19,"YB","AC","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","65%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq5",2013-08-19,2013-08-19,"YB","AC","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq6",2013-08-19,2013-08-19,"YB","AC","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq7",2013-08-19,2013-08-19,"YB","AC","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","60%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq8",2013-08-19,2013-08-19,"YB","AC","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","35%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq9",2013-08-19,2013-08-19,"YB","AC","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq1",2013-08-19,2013-08-19,"YB","AC","1","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","33%",""
+"2013-08-19_YB-ACq2",2013-08-19,2013-08-19,"YB","AC","2","Cth","Chthamalus_dalli","Type 3",1,0.015625,64,"c","Stephanie Merhoff","Finished","Full","Cropped","20%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq3",2013-08-19,2013-08-19,"YB","AC","3","Cth","Chthamalus_dalli","Type 3",3,0.015625,192,"c","Stephanie Merhoff","Finished","Full","Cropped","40%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq4",2013-08-19,2013-08-19,"YB","AC","4","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","65%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq5",2013-08-19,2013-08-19,"YB","AC","5","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","25%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq6",2013-08-19,2013-08-19,"YB","AC","6","Cth","Chthamalus_dalli","Type 3",1,0.015625,64,"c","Stephanie Merhoff","Finished","Full","Cropped","50%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq7",2013-08-19,2013-08-19,"YB","AC","7","Cth","Chthamalus_dalli","Type 3",1,0.015625,64,"c","Stephanie Merhoff","Finished","Full","Cropped","60%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq8",2013-08-19,2013-08-19,"YB","AC","8","Cth","Chthamalus_dalli","Type 3",2,0.015625,128,"c","Stephanie Merhoff","Finished","Full","Cropped","35%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq9",2013-08-19,2013-08-19,"YB","AC","9","Cth","Chthamalus_dalli","Type 3",1,0.015625,64,"c","Stephanie Merhoff","Finished","Full","Cropped","25%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq1",2013-08-19,2013-08-19,"YB","AC","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","33%",""
+"2013-08-19_YB-ACq2",2013-08-19,2013-08-19,"YB","AC","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","20%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq3",2013-08-19,2013-08-19,"YB","AC","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","40%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq4",2013-08-19,2013-08-19,"YB","AC","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","65%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq5",2013-08-19,2013-08-19,"YB","AC","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","25%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq6",2013-08-19,2013-08-19,"YB","AC","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","50%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq7",2013-08-19,2013-08-19,"YB","AC","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","60%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq8",2013-08-19,2013-08-19,"YB","AC","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","35%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq9",2013-08-19,2013-08-19,"YB","AC","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","25%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq1",2013-08-19,2013-08-19,"YB","AC","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","33%",""
+"2013-08-19_YB-ACq2",2013-08-19,2013-08-19,"YB","AC","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq3",2013-08-19,2013-08-19,"YB","AC","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","40%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq4",2013-08-19,2013-08-19,"YB","AC","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","65%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq5",2013-08-19,2013-08-19,"YB","AC","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq6",2013-08-19,2013-08-19,"YB","AC","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq7",2013-08-19,2013-08-19,"YB","AC","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","60%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq8",2013-08-19,2013-08-19,"YB","AC","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","35%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq9",2013-08-19,2013-08-19,"YB","AC","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq1",2013-08-19,2013-08-19,"YB","AC","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","33%",""
+"2013-08-19_YB-ACq2",2013-08-19,2013-08-19,"YB","AC","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq3",2013-08-19,2013-08-19,"YB","AC","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","40%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq4",2013-08-19,2013-08-19,"YB","AC","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","65%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq5",2013-08-19,2013-08-19,"YB","AC","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq6",2013-08-19,2013-08-19,"YB","AC","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq7",2013-08-19,2013-08-19,"YB","AC","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","60%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq8",2013-08-19,2013-08-19,"YB","AC","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","35%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq9",2013-08-19,2013-08-19,"YB","AC","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq1",2013-08-19,2013-08-19,"YB","AC","1","Lim","Limpets","Type 12",23,0.0875,262.857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","33%",""
+"2013-08-19_YB-ACq2",2013-08-19,2013-08-19,"YB","AC","2","Lim","Limpets","Type 12",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq3",2013-08-19,2013-08-19,"YB","AC","3","Lim","Limpets","Type 12",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","40%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq4",2013-08-19,2013-08-19,"YB","AC","4","Lim","Limpets","Type 12",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","65%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq5",2013-08-19,2013-08-19,"YB","AC","5","Lim","Limpets","Type 12",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq6",2013-08-19,2013-08-19,"YB","AC","6","Lim","Limpets","Type 12",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq7",2013-08-19,2013-08-19,"YB","AC","7","Lim","Limpets","Type 12",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","60%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq8",2013-08-19,2013-08-19,"YB","AC","8","Lim","Limpets","Type 12",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","35%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq9",2013-08-19,2013-08-19,"YB","AC","9","Lim","Limpets","Type 12",6,0.0875,68.5714285714286,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq1",2013-08-19,2013-08-19,"YB","AC","1","Ls","Littorina_sitkana","Type 13",111,0.0875,1268.57142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","33%",""
+"2013-08-19_YB-ACq2",2013-08-19,2013-08-19,"YB","AC","2","Ls","Littorina_sitkana","Type 13",47,0.0875,537.142857142857,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq3",2013-08-19,2013-08-19,"YB","AC","3","Ls","Littorina_sitkana","Type 13",9,0.0875,102.857142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","40%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq4",2013-08-19,2013-08-19,"YB","AC","4","Ls","Littorina_sitkana","Type 13",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","65%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq5",2013-08-19,2013-08-19,"YB","AC","5","Ls","Littorina_sitkana","Type 13",5,0.0875,57.1428571428571,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq6",2013-08-19,2013-08-19,"YB","AC","6","Ls","Littorina_sitkana","Type 13",9,0.0875,102.857142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq7",2013-08-19,2013-08-19,"YB","AC","7","Ls","Littorina_sitkana","Type 13",6,0.0875,68.5714285714286,NA,"Stephanie Merhoff","Finished","Full","Cropped","60%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq8",2013-08-19,2013-08-19,"YB","AC","8","Ls","Littorina_sitkana","Type 13",58,0.0875,662.857142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","35%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq9",2013-08-19,2013-08-19,"YB","AC","9","Ls","Littorina_sitkana","Type 13",19,0.0875,217.142857142857,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq1",2013-08-19,2013-08-19,"YB","AC","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","33%",""
+"2013-08-19_YB-ACq2",2013-08-19,2013-08-19,"YB","AC","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq3",2013-08-19,2013-08-19,"YB","AC","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","40%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq4",2013-08-19,2013-08-19,"YB","AC","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","65%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq5",2013-08-19,2013-08-19,"YB","AC","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq6",2013-08-19,2013-08-19,"YB","AC","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq7",2013-08-19,2013-08-19,"YB","AC","7","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","60%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq8",2013-08-19,2013-08-19,"YB","AC","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","35%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq9",2013-08-19,2013-08-19,"YB","AC","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq1",2013-08-19,2013-08-19,"YB","AC","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","33%",""
+"2013-08-19_YB-ACq2",2013-08-19,2013-08-19,"YB","AC","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq3",2013-08-19,2013-08-19,"YB","AC","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","40%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq4",2013-08-19,2013-08-19,"YB","AC","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","65%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq5",2013-08-19,2013-08-19,"YB","AC","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq6",2013-08-19,2013-08-19,"YB","AC","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq7",2013-08-19,2013-08-19,"YB","AC","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","60%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq8",2013-08-19,2013-08-19,"YB","AC","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","35%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq9",2013-08-19,2013-08-19,"YB","AC","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq1",2013-08-19,2013-08-19,"YB","AC","1","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","33%",""
+"2013-08-19_YB-ACq2",2013-08-19,2013-08-19,"YB","AC","2","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq3",2013-08-19,2013-08-19,"YB","AC","3","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","40%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq4",2013-08-19,2013-08-19,"YB","AC","4","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","65%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq5",2013-08-19,2013-08-19,"YB","AC","5","Myt","Mytilus_spp","Type 7",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq6",2013-08-19,2013-08-19,"YB","AC","6","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq7",2013-08-19,2013-08-19,"YB","AC","7","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","60%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq8",2013-08-19,2013-08-19,"YB","AC","8","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","35%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq9",2013-08-19,2013-08-19,"YB","AC","9","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq1",2013-08-19,2013-08-19,"YB","AC","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","33%",""
+"2013-08-19_YB-ACq2",2013-08-19,2013-08-19,"YB","AC","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq3",2013-08-19,2013-08-19,"YB","AC","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","40%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq4",2013-08-19,2013-08-19,"YB","AC","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","65%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq5",2013-08-19,2013-08-19,"YB","AC","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq6",2013-08-19,2013-08-19,"YB","AC","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq7",2013-08-19,2013-08-19,"YB","AC","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","60%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq8",2013-08-19,2013-08-19,"YB","AC","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","35%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq9",2013-08-19,2013-08-19,"YB","AC","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq1",2013-08-19,2013-08-19,"YB","AC","1","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","33%",""
+"2013-08-19_YB-ACq2",2013-08-19,2013-08-19,"YB","AC","2","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq3",2013-08-19,2013-08-19,"YB","AC","3","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","40%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq4",2013-08-19,2013-08-19,"YB","AC","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","65%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq5",2013-08-19,2013-08-19,"YB","AC","5","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq6",2013-08-19,2013-08-19,"YB","AC","6","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq7",2013-08-19,2013-08-19,"YB","AC","7","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","60%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq8",2013-08-19,2013-08-19,"YB","AC","8","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","35%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq9",2013-08-19,2013-08-19,"YB","AC","9","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq1",2013-08-19,2013-08-19,"YB","AC","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","33%",""
+"2013-08-19_YB-ACq2",2013-08-19,2013-08-19,"YB","AC","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq3",2013-08-19,2013-08-19,"YB","AC","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","40%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq4",2013-08-19,2013-08-19,"YB","AC","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","65%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq5",2013-08-19,2013-08-19,"YB","AC","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq6",2013-08-19,2013-08-19,"YB","AC","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq7",2013-08-19,2013-08-19,"YB","AC","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","60%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq8",2013-08-19,2013-08-19,"YB","AC","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","35%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq9",2013-08-19,2013-08-19,"YB","AC","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq1",2013-08-19,2013-08-19,"YB","AC","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","33%",""
+"2013-08-19_YB-ACq2",2013-08-19,2013-08-19,"YB","AC","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq3",2013-08-19,2013-08-19,"YB","AC","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","40%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq4",2013-08-19,2013-08-19,"YB","AC","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","65%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq5",2013-08-19,2013-08-19,"YB","AC","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq6",2013-08-19,2013-08-19,"YB","AC","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq7",2013-08-19,2013-08-19,"YB","AC","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","60%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq8",2013-08-19,2013-08-19,"YB","AC","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","35%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq9",2013-08-19,2013-08-19,"YB","AC","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq1",2013-08-19,2013-08-19,"YB","AC","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","33%",""
+"2013-08-19_YB-ACq2",2013-08-19,2013-08-19,"YB","AC","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq3",2013-08-19,2013-08-19,"YB","AC","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","40%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq4",2013-08-19,2013-08-19,"YB","AC","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","65%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq5",2013-08-19,2013-08-19,"YB","AC","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq6",2013-08-19,2013-08-19,"YB","AC","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq7",2013-08-19,2013-08-19,"YB","AC","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","60%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq8",2013-08-19,2013-08-19,"YB","AC","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","35%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq9",2013-08-19,2013-08-19,"YB","AC","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq1",2013-08-19,2013-08-19,"YB","AC","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","33%",""
+"2013-08-19_YB-ACq2",2013-08-19,2013-08-19,"YB","AC","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq3",2013-08-19,2013-08-19,"YB","AC","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","40%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq4",2013-08-19,2013-08-19,"YB","AC","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","65%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq5",2013-08-19,2013-08-19,"YB","AC","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq6",2013-08-19,2013-08-19,"YB","AC","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq7",2013-08-19,2013-08-19,"YB","AC","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","60%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq8",2013-08-19,2013-08-19,"YB","AC","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","35%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq9",2013-08-19,2013-08-19,"YB","AC","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq1",2013-08-19,2013-08-19,"YB","AC","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","33%",""
+"2013-08-19_YB-ACq2",2013-08-19,2013-08-19,"YB","AC","2","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq3",2013-08-19,2013-08-19,"YB","AC","3","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","40%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq4",2013-08-19,2013-08-19,"YB","AC","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","65%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq5",2013-08-19,2013-08-19,"YB","AC","5","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq6",2013-08-19,2013-08-19,"YB","AC","6","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq7",2013-08-19,2013-08-19,"YB","AC","7","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","60%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq8",2013-08-19,2013-08-19,"YB","AC","8","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","35%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq9",2013-08-19,2013-08-19,"YB","AC","9","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq1",2013-08-19,2013-08-19,"YB","AC","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","33%",""
+"2013-08-19_YB-ACq2",2013-08-19,2013-08-19,"YB","AC","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq3",2013-08-19,2013-08-19,"YB","AC","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","40%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq4",2013-08-19,2013-08-19,"YB","AC","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","65%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq5",2013-08-19,2013-08-19,"YB","AC","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq6",2013-08-19,2013-08-19,"YB","AC","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq7",2013-08-19,2013-08-19,"YB","AC","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","60%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq8",2013-08-19,2013-08-19,"YB","AC","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","35%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq9",2013-08-19,2013-08-19,"YB","AC","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq1",2013-08-19,2013-08-19,"YB","AC","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","33%",""
+"2013-08-19_YB-ACq2",2013-08-19,2013-08-19,"YB","AC","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq3",2013-08-19,2013-08-19,"YB","AC","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","40%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq4",2013-08-19,2013-08-19,"YB","AC","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","65%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq5",2013-08-19,2013-08-19,"YB","AC","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq6",2013-08-19,2013-08-19,"YB","AC","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq7",2013-08-19,2013-08-19,"YB","AC","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","60%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq8",2013-08-19,2013-08-19,"YB","AC","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","35%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq9",2013-08-19,2013-08-19,"YB","AC","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq1",2013-08-19,2013-08-19,"YB","AC","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","33%",""
+"2013-08-19_YB-ACq2",2013-08-19,2013-08-19,"YB","AC","2","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq3",2013-08-19,2013-08-19,"YB","AC","3","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","40%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq4",2013-08-19,2013-08-19,"YB","AC","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","65%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq5",2013-08-19,2013-08-19,"YB","AC","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq6",2013-08-19,2013-08-19,"YB","AC","6","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq7",2013-08-19,2013-08-19,"YB","AC","7","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","60%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq8",2013-08-19,2013-08-19,"YB","AC","8","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","35%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq9",2013-08-19,2013-08-19,"YB","AC","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq1",2013-08-19,2013-08-19,"YB","AC","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","33%",""
+"2013-08-19_YB-ACq2",2013-08-19,2013-08-19,"YB","AC","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq3",2013-08-19,2013-08-19,"YB","AC","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","40%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq4",2013-08-19,2013-08-19,"YB","AC","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","65%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq5",2013-08-19,2013-08-19,"YB","AC","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq6",2013-08-19,2013-08-19,"YB","AC","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq7",2013-08-19,2013-08-19,"YB","AC","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","60%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq8",2013-08-19,2013-08-19,"YB","AC","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","35%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq9",2013-08-19,2013-08-19,"YB","AC","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq1",2013-08-19,2013-08-19,"YB","AC","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","33%",""
+"2013-08-19_YB-ACq2",2013-08-19,2013-08-19,"YB","AC","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq3",2013-08-19,2013-08-19,"YB","AC","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","40%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq4",2013-08-19,2013-08-19,"YB","AC","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","65%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq5",2013-08-19,2013-08-19,"YB","AC","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq6",2013-08-19,2013-08-19,"YB","AC","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq7",2013-08-19,2013-08-19,"YB","AC","7","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","60%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq8",2013-08-19,2013-08-19,"YB","AC","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","35%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq9",2013-08-19,2013-08-19,"YB","AC","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq1",2013-08-19,2013-08-19,"YB","AC","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","33%",""
+"2013-08-19_YB-ACq2",2013-08-19,2013-08-19,"YB","AC","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq3",2013-08-19,2013-08-19,"YB","AC","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","40%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq4",2013-08-19,2013-08-19,"YB","AC","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","65%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq5",2013-08-19,2013-08-19,"YB","AC","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq6",2013-08-19,2013-08-19,"YB","AC","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq7",2013-08-19,2013-08-19,"YB","AC","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","60%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq8",2013-08-19,2013-08-19,"YB","AC","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","35%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ACq9",2013-08-19,2013-08-19,"YB","AC","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","High algae and water. Barnacle and other organisms counts may be higher"
+"2013-08-19_YB-ADq1",2013-08-19,2013-08-19,"YB","AD","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq2",2013-08-19,2013-08-19,"YB","AD","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq3",2013-08-19,2013-08-19,"YB","AD","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq4",2013-08-19,2013-08-19,"YB","AD","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq5",2013-08-19,2013-08-19,"YB","AD","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq6",2013-08-19,2013-08-19,"YB","AD","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq7",2013-08-19,2013-08-19,"YB","AD","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq8",2013-08-19,2013-08-19,"YB","AD","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq9",2013-08-19,2013-08-19,"YB","AD","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq1",2013-08-19,2013-08-19,"YB","AD","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq2",2013-08-19,2013-08-19,"YB","AD","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq3",2013-08-19,2013-08-19,"YB","AD","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq4",2013-08-19,2013-08-19,"YB","AD","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq5",2013-08-19,2013-08-19,"YB","AD","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq6",2013-08-19,2013-08-19,"YB","AD","6","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq7",2013-08-19,2013-08-19,"YB","AD","7","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq8",2013-08-19,2013-08-19,"YB","AD","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq9",2013-08-19,2013-08-19,"YB","AD","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq1",2013-08-19,2013-08-19,"YB","AD","1","Bg","Balanus_glandula","Type 1",1712,0.015625,109568,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq2",2013-08-19,2013-08-19,"YB","AD","2","Bg","Balanus_glandula","Type 1",1362,0.015625,87168,"c","Stephanie Merhoff","Finished","Full","Cropped","10%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq3",2013-08-19,2013-08-19,"YB","AD","3","Bg","Balanus_glandula","Type 1",1280,0.015625,81920,"c","Stephanie Merhoff","Finished","Full","Cropped","10%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq4",2013-08-19,2013-08-19,"YB","AD","4","Bg","Balanus_glandula","Type 1",1545,0.015625,98880,"c","Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq5",2013-08-19,2013-08-19,"YB","AD","5","Bg","Balanus_glandula","Type 1",1345,0.015625,86080,"c","Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq6",2013-08-19,2013-08-19,"YB","AD","6","Bg","Balanus_glandula","Type 1",1333,0.015625,85312,"c","Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq7",2013-08-19,2013-08-19,"YB","AD","7","Bg","Balanus_glandula","Type 1",1473,0.015625,94272,"c","Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq8",2013-08-19,2013-08-19,"YB","AD","8","Bg","Balanus_glandula","Type 1",1236,0.015625,79104,"c","Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq9",2013-08-19,2013-08-19,"YB","AD","9","Bg","Balanus_glandula","Type 1",1222,0.015625,78208,"c","Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq1",2013-08-19,2013-08-19,"YB","AD","1","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq2",2013-08-19,2013-08-19,"YB","AD","2","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","10%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq3",2013-08-19,2013-08-19,"YB","AD","3","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","10%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq4",2013-08-19,2013-08-19,"YB","AD","4","BgD","Balanus_glandula_(dead)","Type 2",1,0.015625,64,"c","Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq5",2013-08-19,2013-08-19,"YB","AD","5","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq6",2013-08-19,2013-08-19,"YB","AD","6","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq7",2013-08-19,2013-08-19,"YB","AD","7","BgD","Balanus_glandula_(dead)","Type 2",4,0.015625,256,"c","Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq8",2013-08-19,2013-08-19,"YB","AD","8","BgD","Balanus_glandula_(dead)","Type 2",1,0.015625,64,"c","Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq9",2013-08-19,2013-08-19,"YB","AD","9","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq1",2013-08-19,2013-08-19,"YB","AD","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq2",2013-08-19,2013-08-19,"YB","AD","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq3",2013-08-19,2013-08-19,"YB","AD","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq4",2013-08-19,2013-08-19,"YB","AD","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq5",2013-08-19,2013-08-19,"YB","AD","5","Chi","Chiton_spp","Type 22",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq6",2013-08-19,2013-08-19,"YB","AD","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq7",2013-08-19,2013-08-19,"YB","AD","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq8",2013-08-19,2013-08-19,"YB","AD","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq9",2013-08-19,2013-08-19,"YB","AD","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq1",2013-08-19,2013-08-19,"YB","AD","1","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq2",2013-08-19,2013-08-19,"YB","AD","2","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","10%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq3",2013-08-19,2013-08-19,"YB","AD","3","Cth","Chthamalus_dalli","Type 3",7,0.015625,448,"c","Stephanie Merhoff","Finished","Full","Cropped","10%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq4",2013-08-19,2013-08-19,"YB","AD","4","Cth","Chthamalus_dalli","Type 3",5,0.015625,320,"c","Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq5",2013-08-19,2013-08-19,"YB","AD","5","Cth","Chthamalus_dalli","Type 3",8,0.015625,512,"c","Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq6",2013-08-19,2013-08-19,"YB","AD","6","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq7",2013-08-19,2013-08-19,"YB","AD","7","Cth","Chthamalus_dalli","Type 3",4,0.015625,256,"c","Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq8",2013-08-19,2013-08-19,"YB","AD","8","Cth","Chthamalus_dalli","Type 3",3,0.015625,192,"c","Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq9",2013-08-19,2013-08-19,"YB","AD","9","Cth","Chthamalus_dalli","Type 3",2,0.015625,128,"c","Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq1",2013-08-19,2013-08-19,"YB","AD","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq2",2013-08-19,2013-08-19,"YB","AD","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","10%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq3",2013-08-19,2013-08-19,"YB","AD","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","10%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq4",2013-08-19,2013-08-19,"YB","AD","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq5",2013-08-19,2013-08-19,"YB","AD","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq6",2013-08-19,2013-08-19,"YB","AD","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq7",2013-08-19,2013-08-19,"YB","AD","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq8",2013-08-19,2013-08-19,"YB","AD","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq9",2013-08-19,2013-08-19,"YB","AD","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq1",2013-08-19,2013-08-19,"YB","AD","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq2",2013-08-19,2013-08-19,"YB","AD","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq3",2013-08-19,2013-08-19,"YB","AD","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq4",2013-08-19,2013-08-19,"YB","AD","4","Emp","Emplectonema worm","Type 23",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq5",2013-08-19,2013-08-19,"YB","AD","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq6",2013-08-19,2013-08-19,"YB","AD","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq7",2013-08-19,2013-08-19,"YB","AD","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq8",2013-08-19,2013-08-19,"YB","AD","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq9",2013-08-19,2013-08-19,"YB","AD","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq1",2013-08-19,2013-08-19,"YB","AD","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq2",2013-08-19,2013-08-19,"YB","AD","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq3",2013-08-19,2013-08-19,"YB","AD","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq4",2013-08-19,2013-08-19,"YB","AD","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq5",2013-08-19,2013-08-19,"YB","AD","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq6",2013-08-19,2013-08-19,"YB","AD","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq7",2013-08-19,2013-08-19,"YB","AD","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq8",2013-08-19,2013-08-19,"YB","AD","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq9",2013-08-19,2013-08-19,"YB","AD","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq1",2013-08-19,2013-08-19,"YB","AD","1","Lim","Limpets","Type 12",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq2",2013-08-19,2013-08-19,"YB","AD","2","Lim","Limpets","Type 12",4,0.0875,45.7142857142857,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq3",2013-08-19,2013-08-19,"YB","AD","3","Lim","Limpets","Type 12",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq4",2013-08-19,2013-08-19,"YB","AD","4","Lim","Limpets","Type 12",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq5",2013-08-19,2013-08-19,"YB","AD","5","Lim","Limpets","Type 12",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq6",2013-08-19,2013-08-19,"YB","AD","6","Lim","Limpets","Type 12",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq7",2013-08-19,2013-08-19,"YB","AD","7","Lim","Limpets","Type 12",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq8",2013-08-19,2013-08-19,"YB","AD","8","Lim","Limpets","Type 12",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq9",2013-08-19,2013-08-19,"YB","AD","9","Lim","Limpets","Type 12",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq1",2013-08-19,2013-08-19,"YB","AD","1","Ls","Littorina_sitkana","Type 13",6,0.0875,68.5714285714286,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq2",2013-08-19,2013-08-19,"YB","AD","2","Ls","Littorina_sitkana","Type 13",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq3",2013-08-19,2013-08-19,"YB","AD","3","Ls","Littorina_sitkana","Type 13",14,0.0875,160,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq4",2013-08-19,2013-08-19,"YB","AD","4","Ls","Littorina_sitkana","Type 13",14,0.0875,160,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq5",2013-08-19,2013-08-19,"YB","AD","5","Ls","Littorina_sitkana","Type 13",4,0.0875,45.7142857142857,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq6",2013-08-19,2013-08-19,"YB","AD","6","Ls","Littorina_sitkana","Type 13",14,0.0875,160,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq7",2013-08-19,2013-08-19,"YB","AD","7","Ls","Littorina_sitkana","Type 13",8,0.0875,91.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq8",2013-08-19,2013-08-19,"YB","AD","8","Ls","Littorina_sitkana","Type 13",22,0.0875,251.428571428571,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq9",2013-08-19,2013-08-19,"YB","AD","9","Ls","Littorina_sitkana","Type 13",8,0.0875,91.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq1",2013-08-19,2013-08-19,"YB","AD","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq2",2013-08-19,2013-08-19,"YB","AD","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq3",2013-08-19,2013-08-19,"YB","AD","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq4",2013-08-19,2013-08-19,"YB","AD","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq5",2013-08-19,2013-08-19,"YB","AD","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq6",2013-08-19,2013-08-19,"YB","AD","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq7",2013-08-19,2013-08-19,"YB","AD","7","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq8",2013-08-19,2013-08-19,"YB","AD","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq9",2013-08-19,2013-08-19,"YB","AD","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq1",2013-08-19,2013-08-19,"YB","AD","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq2",2013-08-19,2013-08-19,"YB","AD","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq3",2013-08-19,2013-08-19,"YB","AD","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq4",2013-08-19,2013-08-19,"YB","AD","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq5",2013-08-19,2013-08-19,"YB","AD","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq6",2013-08-19,2013-08-19,"YB","AD","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq7",2013-08-19,2013-08-19,"YB","AD","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq8",2013-08-19,2013-08-19,"YB","AD","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq9",2013-08-19,2013-08-19,"YB","AD","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq1",2013-08-19,2013-08-19,"YB","AD","1","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq2",2013-08-19,2013-08-19,"YB","AD","2","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq3",2013-08-19,2013-08-19,"YB","AD","3","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq4",2013-08-19,2013-08-19,"YB","AD","4","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq5",2013-08-19,2013-08-19,"YB","AD","5","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq6",2013-08-19,2013-08-19,"YB","AD","6","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq7",2013-08-19,2013-08-19,"YB","AD","7","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq8",2013-08-19,2013-08-19,"YB","AD","8","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq9",2013-08-19,2013-08-19,"YB","AD","9","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq1",2013-08-19,2013-08-19,"YB","AD","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq2",2013-08-19,2013-08-19,"YB","AD","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq3",2013-08-19,2013-08-19,"YB","AD","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq4",2013-08-19,2013-08-19,"YB","AD","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq5",2013-08-19,2013-08-19,"YB","AD","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq6",2013-08-19,2013-08-19,"YB","AD","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq7",2013-08-19,2013-08-19,"YB","AD","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq8",2013-08-19,2013-08-19,"YB","AD","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq9",2013-08-19,2013-08-19,"YB","AD","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq1",2013-08-19,2013-08-19,"YB","AD","1","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq2",2013-08-19,2013-08-19,"YB","AD","2","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq3",2013-08-19,2013-08-19,"YB","AD","3","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq4",2013-08-19,2013-08-19,"YB","AD","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq5",2013-08-19,2013-08-19,"YB","AD","5","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq6",2013-08-19,2013-08-19,"YB","AD","6","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq7",2013-08-19,2013-08-19,"YB","AD","7","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq8",2013-08-19,2013-08-19,"YB","AD","8","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq9",2013-08-19,2013-08-19,"YB","AD","9","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq1",2013-08-19,2013-08-19,"YB","AD","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq2",2013-08-19,2013-08-19,"YB","AD","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq3",2013-08-19,2013-08-19,"YB","AD","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq4",2013-08-19,2013-08-19,"YB","AD","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq5",2013-08-19,2013-08-19,"YB","AD","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq6",2013-08-19,2013-08-19,"YB","AD","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq7",2013-08-19,2013-08-19,"YB","AD","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq8",2013-08-19,2013-08-19,"YB","AD","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq9",2013-08-19,2013-08-19,"YB","AD","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq1",2013-08-19,2013-08-19,"YB","AD","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq2",2013-08-19,2013-08-19,"YB","AD","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq3",2013-08-19,2013-08-19,"YB","AD","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq4",2013-08-19,2013-08-19,"YB","AD","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq5",2013-08-19,2013-08-19,"YB","AD","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq6",2013-08-19,2013-08-19,"YB","AD","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq7",2013-08-19,2013-08-19,"YB","AD","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq8",2013-08-19,2013-08-19,"YB","AD","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq9",2013-08-19,2013-08-19,"YB","AD","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq1",2013-08-19,2013-08-19,"YB","AD","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq2",2013-08-19,2013-08-19,"YB","AD","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq3",2013-08-19,2013-08-19,"YB","AD","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq4",2013-08-19,2013-08-19,"YB","AD","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq5",2013-08-19,2013-08-19,"YB","AD","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq6",2013-08-19,2013-08-19,"YB","AD","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq7",2013-08-19,2013-08-19,"YB","AD","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq8",2013-08-19,2013-08-19,"YB","AD","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq9",2013-08-19,2013-08-19,"YB","AD","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq1",2013-08-19,2013-08-19,"YB","AD","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq2",2013-08-19,2013-08-19,"YB","AD","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq3",2013-08-19,2013-08-19,"YB","AD","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq4",2013-08-19,2013-08-19,"YB","AD","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq5",2013-08-19,2013-08-19,"YB","AD","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq6",2013-08-19,2013-08-19,"YB","AD","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq7",2013-08-19,2013-08-19,"YB","AD","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq8",2013-08-19,2013-08-19,"YB","AD","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq9",2013-08-19,2013-08-19,"YB","AD","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq1",2013-08-19,2013-08-19,"YB","AD","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq2",2013-08-19,2013-08-19,"YB","AD","2","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq3",2013-08-19,2013-08-19,"YB","AD","3","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq4",2013-08-19,2013-08-19,"YB","AD","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq5",2013-08-19,2013-08-19,"YB","AD","5","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq6",2013-08-19,2013-08-19,"YB","AD","6","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq7",2013-08-19,2013-08-19,"YB","AD","7","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq8",2013-08-19,2013-08-19,"YB","AD","8","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq9",2013-08-19,2013-08-19,"YB","AD","9","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq1",2013-08-19,2013-08-19,"YB","AD","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq2",2013-08-19,2013-08-19,"YB","AD","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq3",2013-08-19,2013-08-19,"YB","AD","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq4",2013-08-19,2013-08-19,"YB","AD","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq5",2013-08-19,2013-08-19,"YB","AD","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq6",2013-08-19,2013-08-19,"YB","AD","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq7",2013-08-19,2013-08-19,"YB","AD","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq8",2013-08-19,2013-08-19,"YB","AD","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq9",2013-08-19,2013-08-19,"YB","AD","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq1",2013-08-19,2013-08-19,"YB","AD","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq2",2013-08-19,2013-08-19,"YB","AD","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq3",2013-08-19,2013-08-19,"YB","AD","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq4",2013-08-19,2013-08-19,"YB","AD","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq5",2013-08-19,2013-08-19,"YB","AD","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq6",2013-08-19,2013-08-19,"YB","AD","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq7",2013-08-19,2013-08-19,"YB","AD","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq8",2013-08-19,2013-08-19,"YB","AD","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq9",2013-08-19,2013-08-19,"YB","AD","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq1",2013-08-19,2013-08-19,"YB","AD","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq2",2013-08-19,2013-08-19,"YB","AD","2","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq3",2013-08-19,2013-08-19,"YB","AD","3","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq4",2013-08-19,2013-08-19,"YB","AD","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq5",2013-08-19,2013-08-19,"YB","AD","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq6",2013-08-19,2013-08-19,"YB","AD","6","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq7",2013-08-19,2013-08-19,"YB","AD","7","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq8",2013-08-19,2013-08-19,"YB","AD","8","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq9",2013-08-19,2013-08-19,"YB","AD","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq1",2013-08-19,2013-08-19,"YB","AD","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq2",2013-08-19,2013-08-19,"YB","AD","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq3",2013-08-19,2013-08-19,"YB","AD","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq4",2013-08-19,2013-08-19,"YB","AD","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq5",2013-08-19,2013-08-19,"YB","AD","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq6",2013-08-19,2013-08-19,"YB","AD","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq7",2013-08-19,2013-08-19,"YB","AD","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq8",2013-08-19,2013-08-19,"YB","AD","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq9",2013-08-19,2013-08-19,"YB","AD","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq1",2013-08-19,2013-08-19,"YB","AD","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq2",2013-08-19,2013-08-19,"YB","AD","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq3",2013-08-19,2013-08-19,"YB","AD","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq4",2013-08-19,2013-08-19,"YB","AD","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq5",2013-08-19,2013-08-19,"YB","AD","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq6",2013-08-19,2013-08-19,"YB","AD","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq7",2013-08-19,2013-08-19,"YB","AD","7","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq8",2013-08-19,2013-08-19,"YB","AD","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq9",2013-08-19,2013-08-19,"YB","AD","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq1",2013-08-19,2013-08-19,"YB","AD","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq2",2013-08-19,2013-08-19,"YB","AD","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq3",2013-08-19,2013-08-19,"YB","AD","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq4",2013-08-19,2013-08-19,"YB","AD","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq5",2013-08-19,2013-08-19,"YB","AD","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq6",2013-08-19,2013-08-19,"YB","AD","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq7",2013-08-19,2013-08-19,"YB","AD","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq8",2013-08-19,2013-08-19,"YB","AD","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-ADq9",2013-08-19,2013-08-19,"YB","AD","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel and barnacle counts likely low because of glare and high water"
+"2013-08-19_YB-AEq1",2013-08-19,2013-08-19,"YB","AE","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Barnacle and organism counts may be low due to algal cover, water and glare"
+"2013-08-19_YB-AEq2",2013-08-19,2013-08-19,"YB","AE","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Barnacle and organism counts may be low due to algal cover and glare"
+"2013-08-19_YB-AEq3",2013-08-19,2013-08-19,"YB","AE","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle and organism counts may be low due to high water"
+"2013-08-19_YB-AEq4",2013-08-19,2013-08-19,"YB","AE","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","40%","Barnacle and organismcounts may be low due to glare, algal cover and blur"
+"2013-08-19_YB-AEq5",2013-08-19,2013-08-19,"YB","AE","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","Barnacle and organism counts may be low due to glare and algal cover"
+"2013-08-19_YB-AEq6",2013-08-19,2013-08-19,"YB","AE","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Barnacle and organism counts may be low due to algal cover and glare"
+"2013-08-19_YB-AEq7",2013-08-19,2013-08-19,"YB","AE","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Barnacle and organism counts may be low due to algal cover and glare"
+"2013-08-19_YB-AEq8",2013-08-19,2013-08-19,"YB","AE","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare"
+"2013-08-19_YB-AEq9",2013-08-19,2013-08-19,"YB","AE","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare"
+"2013-08-19_YB-AEq1",2013-08-19,2013-08-19,"YB","AE","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Barnacle and organism counts may be low due to algal cover, water and glare"
+"2013-08-19_YB-AEq2",2013-08-19,2013-08-19,"YB","AE","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Barnacle and organism counts may be low due to algal cover and glare"
+"2013-08-19_YB-AEq3",2013-08-19,2013-08-19,"YB","AE","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle and organism counts may be low due to high water"
+"2013-08-19_YB-AEq4",2013-08-19,2013-08-19,"YB","AE","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","40%","Barnacle and organismcounts may be low due to glare, algal cover and blur"
+"2013-08-19_YB-AEq5",2013-08-19,2013-08-19,"YB","AE","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","Barnacle and organism counts may be low due to glare and algal cover"
+"2013-08-19_YB-AEq6",2013-08-19,2013-08-19,"YB","AE","6","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Barnacle and organism counts may be low due to algal cover and glare"
+"2013-08-19_YB-AEq7",2013-08-19,2013-08-19,"YB","AE","7","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Barnacle and organism counts may be low due to algal cover and glare"
+"2013-08-19_YB-AEq8",2013-08-19,2013-08-19,"YB","AE","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare"
+"2013-08-19_YB-AEq9",2013-08-19,2013-08-19,"YB","AE","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare"
+"2013-08-19_YB-AEq1",2013-08-19,2013-08-19,"YB","AE","1","Bg","Balanus_glandula","Type 1",1003,0.015625,64192,"c","Stephanie Merhoff","Finished","Full","Cropped","20%","Barnacle and organism counts may be low due to algal cover, water and glare"
+"2013-08-19_YB-AEq2",2013-08-19,2013-08-19,"YB","AE","2","Bg","Balanus_glandula","Type 1",837,0.015625,53568,"c","Stephanie Merhoff","Finished","Full","Cropped","50%","Barnacle and organism counts may be low due to algal cover and glare"
+"2013-08-19_YB-AEq3",2013-08-19,2013-08-19,"YB","AE","3","Bg","Balanus_glandula","Type 1",1372,0.015625,87808,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle and organism counts may be low due to high water"
+"2013-08-19_YB-AEq4",2013-08-19,2013-08-19,"YB","AE","4","Bg","Balanus_glandula","Type 1",548,0.015625,35072,"c","Stephanie Merhoff","Finished","Full","Cropped","40%","Barnacle and organismcounts may be low due to glare, algal cover and blur"
+"2013-08-19_YB-AEq5",2013-08-19,2013-08-19,"YB","AE","5","Bg","Balanus_glandula","Type 1",1002,0.015625,64128,"c","Stephanie Merhoff","Finished","Full","Cropped","30%","Barnacle and organism counts may be low due to glare and algal cover"
+"2013-08-19_YB-AEq6",2013-08-19,2013-08-19,"YB","AE","6","Bg","Balanus_glandula","Type 1",1130,0.015625,72320,"c","Stephanie Merhoff","Finished","Full","Cropped","20%","Barnacle and organism counts may be low due to algal cover and glare"
+"2013-08-19_YB-AEq7",2013-08-19,2013-08-19,"YB","AE","7","Bg","Balanus_glandula","Type 1",653,0.015625,41792,"c","Stephanie Merhoff","Finished","Full","Cropped","50%","Barnacle and organism counts may be low due to algal cover and glare"
+"2013-08-19_YB-AEq8",2013-08-19,2013-08-19,"YB","AE","8","Bg","Balanus_glandula","Type 1",1374,0.015625,87936,"c","Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare"
+"2013-08-19_YB-AEq9",2013-08-19,2013-08-19,"YB","AE","9","Bg","Balanus_glandula","Type 1",1257,0.015625,80448,"c","Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare"
+"2013-08-19_YB-AEq1",2013-08-19,2013-08-19,"YB","AE","1","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","20%","Barnacle and organism counts may be low due to algal cover, water and glare"
+"2013-08-19_YB-AEq2",2013-08-19,2013-08-19,"YB","AE","2","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","50%","Barnacle and organism counts may be low due to algal cover and glare"
+"2013-08-19_YB-AEq3",2013-08-19,2013-08-19,"YB","AE","3","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle and organism counts may be low due to high water"
+"2013-08-19_YB-AEq4",2013-08-19,2013-08-19,"YB","AE","4","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","40%","Barnacle and organismcounts may be low due to glare, algal cover and blur"
+"2013-08-19_YB-AEq5",2013-08-19,2013-08-19,"YB","AE","5","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","30%","Barnacle and organism counts may be low due to glare and algal cover"
+"2013-08-19_YB-AEq6",2013-08-19,2013-08-19,"YB","AE","6","BgD","Balanus_glandula_(dead)","Type 2",3,0.015625,192,"c","Stephanie Merhoff","Finished","Full","Cropped","20%","Barnacle and organism counts may be low due to algal cover and glare"
+"2013-08-19_YB-AEq7",2013-08-19,2013-08-19,"YB","AE","7","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","50%","Barnacle and organism counts may be low due to algal cover and glare"
+"2013-08-19_YB-AEq8",2013-08-19,2013-08-19,"YB","AE","8","BgD","Balanus_glandula_(dead)","Type 2",2,0.015625,128,"c","Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare"
+"2013-08-19_YB-AEq9",2013-08-19,2013-08-19,"YB","AE","9","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare"
+"2013-08-19_YB-AEq1",2013-08-19,2013-08-19,"YB","AE","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Barnacle and organism counts may be low due to algal cover, water and glare"
+"2013-08-19_YB-AEq2",2013-08-19,2013-08-19,"YB","AE","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Barnacle and organism counts may be low due to algal cover and glare"
+"2013-08-19_YB-AEq3",2013-08-19,2013-08-19,"YB","AE","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle and organism counts may be low due to high water"
+"2013-08-19_YB-AEq4",2013-08-19,2013-08-19,"YB","AE","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","40%","Barnacle and organismcounts may be low due to glare, algal cover and blur"
+"2013-08-19_YB-AEq5",2013-08-19,2013-08-19,"YB","AE","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","Barnacle and organism counts may be low due to glare and algal cover"
+"2013-08-19_YB-AEq6",2013-08-19,2013-08-19,"YB","AE","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Barnacle and organism counts may be low due to algal cover and glare"
+"2013-08-19_YB-AEq7",2013-08-19,2013-08-19,"YB","AE","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Barnacle and organism counts may be low due to algal cover and glare"
+"2013-08-19_YB-AEq8",2013-08-19,2013-08-19,"YB","AE","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare"
+"2013-08-19_YB-AEq9",2013-08-19,2013-08-19,"YB","AE","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare"
+"2013-08-19_YB-AEq1",2013-08-19,2013-08-19,"YB","AE","1","Cth","Chthamalus_dalli","Type 3",18,0.015625,1152,"c","Stephanie Merhoff","Finished","Full","Cropped","20%","Barnacle and organism counts may be low due to algal cover, water and glare"
+"2013-08-19_YB-AEq2",2013-08-19,2013-08-19,"YB","AE","2","Cth","Chthamalus_dalli","Type 3",8,0.015625,512,"c","Stephanie Merhoff","Finished","Full","Cropped","50%","Barnacle and organism counts may be low due to algal cover and glare"
+"2013-08-19_YB-AEq3",2013-08-19,2013-08-19,"YB","AE","3","Cth","Chthamalus_dalli","Type 3",5,0.015625,320,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle and organism counts may be low due to high water"
+"2013-08-19_YB-AEq4",2013-08-19,2013-08-19,"YB","AE","4","Cth","Chthamalus_dalli","Type 3",4,0.015625,256,"c","Stephanie Merhoff","Finished","Full","Cropped","40%","Barnacle and organismcounts may be low due to glare, algal cover and blur"
+"2013-08-19_YB-AEq5",2013-08-19,2013-08-19,"YB","AE","5","Cth","Chthamalus_dalli","Type 3",11,0.015625,704,"c","Stephanie Merhoff","Finished","Full","Cropped","30%","Barnacle and organism counts may be low due to glare and algal cover"
+"2013-08-19_YB-AEq6",2013-08-19,2013-08-19,"YB","AE","6","Cth","Chthamalus_dalli","Type 3",10,0.015625,640,"c","Stephanie Merhoff","Finished","Full","Cropped","20%","Barnacle and organism counts may be low due to algal cover and glare"
+"2013-08-19_YB-AEq7",2013-08-19,2013-08-19,"YB","AE","7","Cth","Chthamalus_dalli","Type 3",2,0.015625,128,"c","Stephanie Merhoff","Finished","Full","Cropped","50%","Barnacle and organism counts may be low due to algal cover and glare"
+"2013-08-19_YB-AEq8",2013-08-19,2013-08-19,"YB","AE","8","Cth","Chthamalus_dalli","Type 3",15,0.015625,960,"c","Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare"
+"2013-08-19_YB-AEq9",2013-08-19,2013-08-19,"YB","AE","9","Cth","Chthamalus_dalli","Type 3",8,0.015625,512,"c","Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare"
+"2013-08-19_YB-AEq1",2013-08-19,2013-08-19,"YB","AE","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","20%","Barnacle and organism counts may be low due to algal cover, water and glare"
+"2013-08-19_YB-AEq2",2013-08-19,2013-08-19,"YB","AE","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","50%","Barnacle and organism counts may be low due to algal cover and glare"
+"2013-08-19_YB-AEq3",2013-08-19,2013-08-19,"YB","AE","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle and organism counts may be low due to high water"
+"2013-08-19_YB-AEq4",2013-08-19,2013-08-19,"YB","AE","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","40%","Barnacle and organismcounts may be low due to glare, algal cover and blur"
+"2013-08-19_YB-AEq5",2013-08-19,2013-08-19,"YB","AE","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","30%","Barnacle and organism counts may be low due to glare and algal cover"
+"2013-08-19_YB-AEq6",2013-08-19,2013-08-19,"YB","AE","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","20%","Barnacle and organism counts may be low due to algal cover and glare"
+"2013-08-19_YB-AEq7",2013-08-19,2013-08-19,"YB","AE","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","50%","Barnacle and organism counts may be low due to algal cover and glare"
+"2013-08-19_YB-AEq8",2013-08-19,2013-08-19,"YB","AE","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare"
+"2013-08-19_YB-AEq9",2013-08-19,2013-08-19,"YB","AE","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare"
+"2013-08-19_YB-AEq1",2013-08-19,2013-08-19,"YB","AE","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Barnacle and organism counts may be low due to algal cover, water and glare"
+"2013-08-19_YB-AEq2",2013-08-19,2013-08-19,"YB","AE","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Barnacle and organism counts may be low due to algal cover and glare"
+"2013-08-19_YB-AEq3",2013-08-19,2013-08-19,"YB","AE","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle and organism counts may be low due to high water"
+"2013-08-19_YB-AEq4",2013-08-19,2013-08-19,"YB","AE","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","40%","Barnacle and organismcounts may be low due to glare, algal cover and blur"
+"2013-08-19_YB-AEq5",2013-08-19,2013-08-19,"YB","AE","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","Barnacle and organism counts may be low due to glare and algal cover"
+"2013-08-19_YB-AEq6",2013-08-19,2013-08-19,"YB","AE","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Barnacle and organism counts may be low due to algal cover and glare"
+"2013-08-19_YB-AEq7",2013-08-19,2013-08-19,"YB","AE","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Barnacle and organism counts may be low due to algal cover and glare"
+"2013-08-19_YB-AEq8",2013-08-19,2013-08-19,"YB","AE","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare"
+"2013-08-19_YB-AEq9",2013-08-19,2013-08-19,"YB","AE","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare"
+"2013-08-19_YB-AEq1",2013-08-19,2013-08-19,"YB","AE","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Barnacle and organism counts may be low due to algal cover, water and glare"
+"2013-08-19_YB-AEq2",2013-08-19,2013-08-19,"YB","AE","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Barnacle and organism counts may be low due to algal cover and glare"
+"2013-08-19_YB-AEq3",2013-08-19,2013-08-19,"YB","AE","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle and organism counts may be low due to high water"
+"2013-08-19_YB-AEq4",2013-08-19,2013-08-19,"YB","AE","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","40%","Barnacle and organismcounts may be low due to glare, algal cover and blur"
+"2013-08-19_YB-AEq5",2013-08-19,2013-08-19,"YB","AE","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","Barnacle and organism counts may be low due to glare and algal cover"
+"2013-08-19_YB-AEq6",2013-08-19,2013-08-19,"YB","AE","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Barnacle and organism counts may be low due to algal cover and glare"
+"2013-08-19_YB-AEq7",2013-08-19,2013-08-19,"YB","AE","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Barnacle and organism counts may be low due to algal cover and glare"
+"2013-08-19_YB-AEq8",2013-08-19,2013-08-19,"YB","AE","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare"
+"2013-08-19_YB-AEq9",2013-08-19,2013-08-19,"YB","AE","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare"
+"2013-08-19_YB-AEq1",2013-08-19,2013-08-19,"YB","AE","1","Lim","Limpets","Type 12",12,0.0875,137.142857142857,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Barnacle and organism counts may be low due to algal cover, water and glare"
+"2013-08-19_YB-AEq2",2013-08-19,2013-08-19,"YB","AE","2","Lim","Limpets","Type 12",12,0.0875,137.142857142857,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Barnacle and organism counts may be low due to algal cover and glare"
+"2013-08-19_YB-AEq3",2013-08-19,2013-08-19,"YB","AE","3","Lim","Limpets","Type 12",27,0.0875,308.571428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle and organism counts may be low due to high water"
+"2013-08-19_YB-AEq4",2013-08-19,2013-08-19,"YB","AE","4","Lim","Limpets","Type 12",7,0.0875,80,NA,"Stephanie Merhoff","Finished","Full","Cropped","40%","Barnacle and organismcounts may be low due to glare, algal cover and blur"
+"2013-08-19_YB-AEq5",2013-08-19,2013-08-19,"YB","AE","5","Lim","Limpets","Type 12",4,0.0875,45.7142857142857,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","Barnacle and organism counts may be low due to glare and algal cover"
+"2013-08-19_YB-AEq6",2013-08-19,2013-08-19,"YB","AE","6","Lim","Limpets","Type 12",7,0.0875,80,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Barnacle and organism counts may be low due to algal cover and glare"
+"2013-08-19_YB-AEq7",2013-08-19,2013-08-19,"YB","AE","7","Lim","Limpets","Type 12",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Barnacle and organism counts may be low due to algal cover and glare"
+"2013-08-19_YB-AEq8",2013-08-19,2013-08-19,"YB","AE","8","Lim","Limpets","Type 12",5,0.0875,57.1428571428571,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare"
+"2013-08-19_YB-AEq9",2013-08-19,2013-08-19,"YB","AE","9","Lim","Limpets","Type 12",12,0.0875,137.142857142857,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare"
+"2013-08-19_YB-AEq1",2013-08-19,2013-08-19,"YB","AE","1","Ls","Littorina_sitkana","Type 13",11,0.0875,125.714285714286,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Barnacle and organism counts may be low due to algal cover, water and glare"
+"2013-08-19_YB-AEq2",2013-08-19,2013-08-19,"YB","AE","2","Ls","Littorina_sitkana","Type 13",11,0.0875,125.714285714286,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Barnacle and organism counts may be low due to algal cover and glare"
+"2013-08-19_YB-AEq3",2013-08-19,2013-08-19,"YB","AE","3","Ls","Littorina_sitkana","Type 13",19,0.0875,217.142857142857,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle and organism counts may be low due to high water"
+"2013-08-19_YB-AEq4",2013-08-19,2013-08-19,"YB","AE","4","Ls","Littorina_sitkana","Type 13",12,0.0875,137.142857142857,NA,"Stephanie Merhoff","Finished","Full","Cropped","40%","Barnacle and organismcounts may be low due to glare, algal cover and blur"
+"2013-08-19_YB-AEq5",2013-08-19,2013-08-19,"YB","AE","5","Ls","Littorina_sitkana","Type 13",19,0.0875,217.142857142857,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","Barnacle and organism counts may be low due to glare and algal cover"
+"2013-08-19_YB-AEq6",2013-08-19,2013-08-19,"YB","AE","6","Ls","Littorina_sitkana","Type 13",20,0.0875,228.571428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Barnacle and organism counts may be low due to algal cover and glare"
+"2013-08-19_YB-AEq7",2013-08-19,2013-08-19,"YB","AE","7","Ls","Littorina_sitkana","Type 13",8,0.0875,91.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Barnacle and organism counts may be low due to algal cover and glare"
+"2013-08-19_YB-AEq8",2013-08-19,2013-08-19,"YB","AE","8","Ls","Littorina_sitkana","Type 13",12,0.0875,137.142857142857,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare"
+"2013-08-19_YB-AEq9",2013-08-19,2013-08-19,"YB","AE","9","Ls","Littorina_sitkana","Type 13",8,0.0875,91.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare"
+"2013-08-19_YB-AEq1",2013-08-19,2013-08-19,"YB","AE","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Barnacle and organism counts may be low due to algal cover, water and glare"
+"2013-08-19_YB-AEq2",2013-08-19,2013-08-19,"YB","AE","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Barnacle and organism counts may be low due to algal cover and glare"
+"2013-08-19_YB-AEq3",2013-08-19,2013-08-19,"YB","AE","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle and organism counts may be low due to high water"
+"2013-08-19_YB-AEq4",2013-08-19,2013-08-19,"YB","AE","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","40%","Barnacle and organismcounts may be low due to glare, algal cover and blur"
+"2013-08-19_YB-AEq5",2013-08-19,2013-08-19,"YB","AE","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","Barnacle and organism counts may be low due to glare and algal cover"
+"2013-08-19_YB-AEq6",2013-08-19,2013-08-19,"YB","AE","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Barnacle and organism counts may be low due to algal cover and glare"
+"2013-08-19_YB-AEq7",2013-08-19,2013-08-19,"YB","AE","7","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Barnacle and organism counts may be low due to algal cover and glare"
+"2013-08-19_YB-AEq8",2013-08-19,2013-08-19,"YB","AE","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare"
+"2013-08-19_YB-AEq9",2013-08-19,2013-08-19,"YB","AE","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare"
+"2013-08-19_YB-AEq1",2013-08-19,2013-08-19,"YB","AE","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Barnacle and organism counts may be low due to algal cover, water and glare"
+"2013-08-19_YB-AEq2",2013-08-19,2013-08-19,"YB","AE","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Barnacle and organism counts may be low due to algal cover and glare"
+"2013-08-19_YB-AEq3",2013-08-19,2013-08-19,"YB","AE","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle and organism counts may be low due to high water"
+"2013-08-19_YB-AEq4",2013-08-19,2013-08-19,"YB","AE","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","40%","Barnacle and organismcounts may be low due to glare, algal cover and blur"
+"2013-08-19_YB-AEq5",2013-08-19,2013-08-19,"YB","AE","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","Barnacle and organism counts may be low due to glare and algal cover"
+"2013-08-19_YB-AEq6",2013-08-19,2013-08-19,"YB","AE","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Barnacle and organism counts may be low due to algal cover and glare"
+"2013-08-19_YB-AEq7",2013-08-19,2013-08-19,"YB","AE","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Barnacle and organism counts may be low due to algal cover and glare"
+"2013-08-19_YB-AEq8",2013-08-19,2013-08-19,"YB","AE","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare"
+"2013-08-19_YB-AEq9",2013-08-19,2013-08-19,"YB","AE","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare"
+"2013-08-19_YB-AEq1",2013-08-19,2013-08-19,"YB","AE","1","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Barnacle and organism counts may be low due to algal cover, water and glare"
+"2013-08-19_YB-AEq2",2013-08-19,2013-08-19,"YB","AE","2","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Barnacle and organism counts may be low due to algal cover and glare"
+"2013-08-19_YB-AEq3",2013-08-19,2013-08-19,"YB","AE","3","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle and organism counts may be low due to high water"
+"2013-08-19_YB-AEq4",2013-08-19,2013-08-19,"YB","AE","4","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","40%","Barnacle and organismcounts may be low due to glare, algal cover and blur"
+"2013-08-19_YB-AEq5",2013-08-19,2013-08-19,"YB","AE","5","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","Barnacle and organism counts may be low due to glare and algal cover"
+"2013-08-19_YB-AEq6",2013-08-19,2013-08-19,"YB","AE","6","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Barnacle and organism counts may be low due to algal cover and glare"
+"2013-08-19_YB-AEq7",2013-08-19,2013-08-19,"YB","AE","7","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Barnacle and organism counts may be low due to algal cover and glare"
+"2013-08-19_YB-AEq8",2013-08-19,2013-08-19,"YB","AE","8","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare"
+"2013-08-19_YB-AEq9",2013-08-19,2013-08-19,"YB","AE","9","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare"
+"2013-08-19_YB-AEq1",2013-08-19,2013-08-19,"YB","AE","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Barnacle and organism counts may be low due to algal cover, water and glare"
+"2013-08-19_YB-AEq2",2013-08-19,2013-08-19,"YB","AE","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Barnacle and organism counts may be low due to algal cover and glare"
+"2013-08-19_YB-AEq3",2013-08-19,2013-08-19,"YB","AE","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle and organism counts may be low due to high water"
+"2013-08-19_YB-AEq4",2013-08-19,2013-08-19,"YB","AE","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","40%","Barnacle and organismcounts may be low due to glare, algal cover and blur"
+"2013-08-19_YB-AEq5",2013-08-19,2013-08-19,"YB","AE","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","Barnacle and organism counts may be low due to glare and algal cover"
+"2013-08-19_YB-AEq6",2013-08-19,2013-08-19,"YB","AE","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Barnacle and organism counts may be low due to algal cover and glare"
+"2013-08-19_YB-AEq7",2013-08-19,2013-08-19,"YB","AE","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Barnacle and organism counts may be low due to algal cover and glare"
+"2013-08-19_YB-AEq8",2013-08-19,2013-08-19,"YB","AE","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare"
+"2013-08-19_YB-AEq9",2013-08-19,2013-08-19,"YB","AE","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare"
+"2013-08-19_YB-AEq1",2013-08-19,2013-08-19,"YB","AE","1","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Barnacle and organism counts may be low due to algal cover, water and glare"
+"2013-08-19_YB-AEq2",2013-08-19,2013-08-19,"YB","AE","2","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Barnacle and organism counts may be low due to algal cover and glare"
+"2013-08-19_YB-AEq3",2013-08-19,2013-08-19,"YB","AE","3","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle and organism counts may be low due to high water"
+"2013-08-19_YB-AEq4",2013-08-19,2013-08-19,"YB","AE","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","40%","Barnacle and organismcounts may be low due to glare, algal cover and blur"
+"2013-08-19_YB-AEq5",2013-08-19,2013-08-19,"YB","AE","5","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","Barnacle and organism counts may be low due to glare and algal cover"
+"2013-08-19_YB-AEq6",2013-08-19,2013-08-19,"YB","AE","6","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Barnacle and organism counts may be low due to algal cover and glare"
+"2013-08-19_YB-AEq7",2013-08-19,2013-08-19,"YB","AE","7","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Barnacle and organism counts may be low due to algal cover and glare"
+"2013-08-19_YB-AEq8",2013-08-19,2013-08-19,"YB","AE","8","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare"
+"2013-08-19_YB-AEq9",2013-08-19,2013-08-19,"YB","AE","9","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare"
+"2013-08-19_YB-AEq1",2013-08-19,2013-08-19,"YB","AE","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Barnacle and organism counts may be low due to algal cover, water and glare"
+"2013-08-19_YB-AEq2",2013-08-19,2013-08-19,"YB","AE","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Barnacle and organism counts may be low due to algal cover and glare"
+"2013-08-19_YB-AEq3",2013-08-19,2013-08-19,"YB","AE","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle and organism counts may be low due to high water"
+"2013-08-19_YB-AEq4",2013-08-19,2013-08-19,"YB","AE","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","40%","Barnacle and organismcounts may be low due to glare, algal cover and blur"
+"2013-08-19_YB-AEq5",2013-08-19,2013-08-19,"YB","AE","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","Barnacle and organism counts may be low due to glare and algal cover"
+"2013-08-19_YB-AEq6",2013-08-19,2013-08-19,"YB","AE","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Barnacle and organism counts may be low due to algal cover and glare"
+"2013-08-19_YB-AEq7",2013-08-19,2013-08-19,"YB","AE","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Barnacle and organism counts may be low due to algal cover and glare"
+"2013-08-19_YB-AEq8",2013-08-19,2013-08-19,"YB","AE","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare"
+"2013-08-19_YB-AEq9",2013-08-19,2013-08-19,"YB","AE","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare"
+"2013-08-19_YB-AEq1",2013-08-19,2013-08-19,"YB","AE","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Barnacle and organism counts may be low due to algal cover, water and glare"
+"2013-08-19_YB-AEq2",2013-08-19,2013-08-19,"YB","AE","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Barnacle and organism counts may be low due to algal cover and glare"
+"2013-08-19_YB-AEq3",2013-08-19,2013-08-19,"YB","AE","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle and organism counts may be low due to high water"
+"2013-08-19_YB-AEq4",2013-08-19,2013-08-19,"YB","AE","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","40%","Barnacle and organismcounts may be low due to glare, algal cover and blur"
+"2013-08-19_YB-AEq5",2013-08-19,2013-08-19,"YB","AE","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","Barnacle and organism counts may be low due to glare and algal cover"
+"2013-08-19_YB-AEq6",2013-08-19,2013-08-19,"YB","AE","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Barnacle and organism counts may be low due to algal cover and glare"
+"2013-08-19_YB-AEq7",2013-08-19,2013-08-19,"YB","AE","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Barnacle and organism counts may be low due to algal cover and glare"
+"2013-08-19_YB-AEq8",2013-08-19,2013-08-19,"YB","AE","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare"
+"2013-08-19_YB-AEq9",2013-08-19,2013-08-19,"YB","AE","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare"
+"2013-08-19_YB-AEq1",2013-08-19,2013-08-19,"YB","AE","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Barnacle and organism counts may be low due to algal cover, water and glare"
+"2013-08-19_YB-AEq2",2013-08-19,2013-08-19,"YB","AE","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Barnacle and organism counts may be low due to algal cover and glare"
+"2013-08-19_YB-AEq3",2013-08-19,2013-08-19,"YB","AE","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle and organism counts may be low due to high water"
+"2013-08-19_YB-AEq4",2013-08-19,2013-08-19,"YB","AE","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","40%","Barnacle and organismcounts may be low due to glare, algal cover and blur"
+"2013-08-19_YB-AEq5",2013-08-19,2013-08-19,"YB","AE","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","Barnacle and organism counts may be low due to glare and algal cover"
+"2013-08-19_YB-AEq6",2013-08-19,2013-08-19,"YB","AE","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Barnacle and organism counts may be low due to algal cover and glare"
+"2013-08-19_YB-AEq7",2013-08-19,2013-08-19,"YB","AE","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Barnacle and organism counts may be low due to algal cover and glare"
+"2013-08-19_YB-AEq8",2013-08-19,2013-08-19,"YB","AE","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare"
+"2013-08-19_YB-AEq9",2013-08-19,2013-08-19,"YB","AE","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare"
+"2013-08-19_YB-AEq1",2013-08-19,2013-08-19,"YB","AE","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Barnacle and organism counts may be low due to algal cover, water and glare"
+"2013-08-19_YB-AEq2",2013-08-19,2013-08-19,"YB","AE","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Barnacle and organism counts may be low due to algal cover and glare"
+"2013-08-19_YB-AEq3",2013-08-19,2013-08-19,"YB","AE","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle and organism counts may be low due to high water"
+"2013-08-19_YB-AEq4",2013-08-19,2013-08-19,"YB","AE","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","40%","Barnacle and organismcounts may be low due to glare, algal cover and blur"
+"2013-08-19_YB-AEq5",2013-08-19,2013-08-19,"YB","AE","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","Barnacle and organism counts may be low due to glare and algal cover"
+"2013-08-19_YB-AEq6",2013-08-19,2013-08-19,"YB","AE","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Barnacle and organism counts may be low due to algal cover and glare"
+"2013-08-19_YB-AEq7",2013-08-19,2013-08-19,"YB","AE","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Barnacle and organism counts may be low due to algal cover and glare"
+"2013-08-19_YB-AEq8",2013-08-19,2013-08-19,"YB","AE","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare"
+"2013-08-19_YB-AEq9",2013-08-19,2013-08-19,"YB","AE","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare"
+"2013-08-19_YB-AEq1",2013-08-19,2013-08-19,"YB","AE","1","No","Nucella_ostrina","Type 9",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Barnacle and organism counts may be low due to algal cover, water and glare"
+"2013-08-19_YB-AEq2",2013-08-19,2013-08-19,"YB","AE","2","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Barnacle and organism counts may be low due to algal cover and glare"
+"2013-08-19_YB-AEq3",2013-08-19,2013-08-19,"YB","AE","3","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle and organism counts may be low due to high water"
+"2013-08-19_YB-AEq4",2013-08-19,2013-08-19,"YB","AE","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","40%","Barnacle and organismcounts may be low due to glare, algal cover and blur"
+"2013-08-19_YB-AEq5",2013-08-19,2013-08-19,"YB","AE","5","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","Barnacle and organism counts may be low due to glare and algal cover"
+"2013-08-19_YB-AEq6",2013-08-19,2013-08-19,"YB","AE","6","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Barnacle and organism counts may be low due to algal cover and glare"
+"2013-08-19_YB-AEq7",2013-08-19,2013-08-19,"YB","AE","7","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Barnacle and organism counts may be low due to algal cover and glare"
+"2013-08-19_YB-AEq8",2013-08-19,2013-08-19,"YB","AE","8","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare"
+"2013-08-19_YB-AEq9",2013-08-19,2013-08-19,"YB","AE","9","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare"
+"2013-08-19_YB-AEq1",2013-08-19,2013-08-19,"YB","AE","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Barnacle and organism counts may be low due to algal cover, water and glare"
+"2013-08-19_YB-AEq2",2013-08-19,2013-08-19,"YB","AE","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Barnacle and organism counts may be low due to algal cover and glare"
+"2013-08-19_YB-AEq3",2013-08-19,2013-08-19,"YB","AE","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle and organism counts may be low due to high water"
+"2013-08-19_YB-AEq4",2013-08-19,2013-08-19,"YB","AE","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","40%","Barnacle and organismcounts may be low due to glare, algal cover and blur"
+"2013-08-19_YB-AEq5",2013-08-19,2013-08-19,"YB","AE","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","Barnacle and organism counts may be low due to glare and algal cover"
+"2013-08-19_YB-AEq6",2013-08-19,2013-08-19,"YB","AE","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Barnacle and organism counts may be low due to algal cover and glare"
+"2013-08-19_YB-AEq7",2013-08-19,2013-08-19,"YB","AE","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Barnacle and organism counts may be low due to algal cover and glare"
+"2013-08-19_YB-AEq8",2013-08-19,2013-08-19,"YB","AE","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare"
+"2013-08-19_YB-AEq9",2013-08-19,2013-08-19,"YB","AE","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare"
+"2013-08-19_YB-AEq1",2013-08-19,2013-08-19,"YB","AE","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Barnacle and organism counts may be low due to algal cover, water and glare"
+"2013-08-19_YB-AEq2",2013-08-19,2013-08-19,"YB","AE","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Barnacle and organism counts may be low due to algal cover and glare"
+"2013-08-19_YB-AEq3",2013-08-19,2013-08-19,"YB","AE","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle and organism counts may be low due to high water"
+"2013-08-19_YB-AEq4",2013-08-19,2013-08-19,"YB","AE","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","40%","Barnacle and organismcounts may be low due to glare, algal cover and blur"
+"2013-08-19_YB-AEq5",2013-08-19,2013-08-19,"YB","AE","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","Barnacle and organism counts may be low due to glare and algal cover"
+"2013-08-19_YB-AEq6",2013-08-19,2013-08-19,"YB","AE","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Barnacle and organism counts may be low due to algal cover and glare"
+"2013-08-19_YB-AEq7",2013-08-19,2013-08-19,"YB","AE","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Barnacle and organism counts may be low due to algal cover and glare"
+"2013-08-19_YB-AEq8",2013-08-19,2013-08-19,"YB","AE","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare"
+"2013-08-19_YB-AEq9",2013-08-19,2013-08-19,"YB","AE","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare"
+"2013-08-19_YB-AEq1",2013-08-19,2013-08-19,"YB","AE","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Barnacle and organism counts may be low due to algal cover, water and glare"
+"2013-08-19_YB-AEq2",2013-08-19,2013-08-19,"YB","AE","2","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Barnacle and organism counts may be low due to algal cover and glare"
+"2013-08-19_YB-AEq3",2013-08-19,2013-08-19,"YB","AE","3","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle and organism counts may be low due to high water"
+"2013-08-19_YB-AEq4",2013-08-19,2013-08-19,"YB","AE","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","40%","Barnacle and organismcounts may be low due to glare, algal cover and blur"
+"2013-08-19_YB-AEq5",2013-08-19,2013-08-19,"YB","AE","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","Barnacle and organism counts may be low due to glare and algal cover"
+"2013-08-19_YB-AEq6",2013-08-19,2013-08-19,"YB","AE","6","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Barnacle and organism counts may be low due to algal cover and glare"
+"2013-08-19_YB-AEq7",2013-08-19,2013-08-19,"YB","AE","7","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Barnacle and organism counts may be low due to algal cover and glare"
+"2013-08-19_YB-AEq8",2013-08-19,2013-08-19,"YB","AE","8","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare"
+"2013-08-19_YB-AEq9",2013-08-19,2013-08-19,"YB","AE","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare"
+"2013-08-19_YB-AEq1",2013-08-19,2013-08-19,"YB","AE","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Barnacle and organism counts may be low due to algal cover, water and glare"
+"2013-08-19_YB-AEq2",2013-08-19,2013-08-19,"YB","AE","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Barnacle and organism counts may be low due to algal cover and glare"
+"2013-08-19_YB-AEq3",2013-08-19,2013-08-19,"YB","AE","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle and organism counts may be low due to high water"
+"2013-08-19_YB-AEq4",2013-08-19,2013-08-19,"YB","AE","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","40%","Barnacle and organismcounts may be low due to glare, algal cover and blur"
+"2013-08-19_YB-AEq5",2013-08-19,2013-08-19,"YB","AE","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","Barnacle and organism counts may be low due to glare and algal cover"
+"2013-08-19_YB-AEq6",2013-08-19,2013-08-19,"YB","AE","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Barnacle and organism counts may be low due to algal cover and glare"
+"2013-08-19_YB-AEq7",2013-08-19,2013-08-19,"YB","AE","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Barnacle and organism counts may be low due to algal cover and glare"
+"2013-08-19_YB-AEq8",2013-08-19,2013-08-19,"YB","AE","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare"
+"2013-08-19_YB-AEq9",2013-08-19,2013-08-19,"YB","AE","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare"
+"2013-08-19_YB-AEq1",2013-08-19,2013-08-19,"YB","AE","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Barnacle and organism counts may be low due to algal cover, water and glare"
+"2013-08-19_YB-AEq2",2013-08-19,2013-08-19,"YB","AE","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Barnacle and organism counts may be low due to algal cover and glare"
+"2013-08-19_YB-AEq3",2013-08-19,2013-08-19,"YB","AE","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle and organism counts may be low due to high water"
+"2013-08-19_YB-AEq4",2013-08-19,2013-08-19,"YB","AE","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","40%","Barnacle and organismcounts may be low due to glare, algal cover and blur"
+"2013-08-19_YB-AEq5",2013-08-19,2013-08-19,"YB","AE","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","Barnacle and organism counts may be low due to glare and algal cover"
+"2013-08-19_YB-AEq6",2013-08-19,2013-08-19,"YB","AE","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Barnacle and organism counts may be low due to algal cover and glare"
+"2013-08-19_YB-AEq7",2013-08-19,2013-08-19,"YB","AE","7","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Barnacle and organism counts may be low due to algal cover and glare"
+"2013-08-19_YB-AEq8",2013-08-19,2013-08-19,"YB","AE","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare"
+"2013-08-19_YB-AEq9",2013-08-19,2013-08-19,"YB","AE","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare"
+"2013-08-19_YB-AEq1",2013-08-19,2013-08-19,"YB","AE","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Barnacle and organism counts may be low due to algal cover, water and glare"
+"2013-08-19_YB-AEq2",2013-08-19,2013-08-19,"YB","AE","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Barnacle and organism counts may be low due to algal cover and glare"
+"2013-08-19_YB-AEq3",2013-08-19,2013-08-19,"YB","AE","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle and organism counts may be low due to high water"
+"2013-08-19_YB-AEq4",2013-08-19,2013-08-19,"YB","AE","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","40%","Barnacle and organismcounts may be low due to glare, algal cover and blur"
+"2013-08-19_YB-AEq5",2013-08-19,2013-08-19,"YB","AE","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","Barnacle and organism counts may be low due to glare and algal cover"
+"2013-08-19_YB-AEq6",2013-08-19,2013-08-19,"YB","AE","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Barnacle and organism counts may be low due to algal cover and glare"
+"2013-08-19_YB-AEq7",2013-08-19,2013-08-19,"YB","AE","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Barnacle and organism counts may be low due to algal cover and glare"
+"2013-08-19_YB-AEq8",2013-08-19,2013-08-19,"YB","AE","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare"
+"2013-08-19_YB-AEq9",2013-08-19,2013-08-19,"YB","AE","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare"
+"2013-08-19_YB-AFq1",2013-08-19,2013-08-19,"YB","AF","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle and organism counts may be low due to high water, byssus and glare"
+"2013-08-19_YB-AFq2",2013-08-19,2013-08-19,"YB","AF","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare and algae"
+"2013-08-19_YB-AFq3",2013-08-19,2013-08-19,"YB","AF","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare and high water"
+"2013-08-19_YB-AFq4",2013-08-19,2013-08-19,"YB","AF","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water and byssus coverage"
+"2013-08-19_YB-AFq5",2013-08-19,2013-08-19,"YB","AF","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to glare and byssus coverage"
+"2013-08-19_YB-AFq6",2013-08-19,2013-08-19,"YB","AF","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to high water, glare and byssus coverage"
+"2013-08-19_YB-AFq7",2013-08-19,2013-08-19,"YB","AF","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to high water and byssus coverage"
+"2013-08-19_YB-AFq8",2013-08-19,2013-08-19,"YB","AF","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to glare and byssus"
+"2013-08-19_YB-AFq9",2013-08-19,2013-08-19,"YB","AF","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to high water and glare"
+"2013-08-19_YB-AFq1",2013-08-19,2013-08-19,"YB","AF","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle and organism counts may be low due to high water, byssus and glare"
+"2013-08-19_YB-AFq2",2013-08-19,2013-08-19,"YB","AF","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare and algae"
+"2013-08-19_YB-AFq3",2013-08-19,2013-08-19,"YB","AF","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare and high water"
+"2013-08-19_YB-AFq4",2013-08-19,2013-08-19,"YB","AF","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water and byssus coverage"
+"2013-08-19_YB-AFq5",2013-08-19,2013-08-19,"YB","AF","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to glare and byssus coverage"
+"2013-08-19_YB-AFq6",2013-08-19,2013-08-19,"YB","AF","6","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to high water, glare and byssus coverage"
+"2013-08-19_YB-AFq7",2013-08-19,2013-08-19,"YB","AF","7","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to high water and byssus coverage"
+"2013-08-19_YB-AFq8",2013-08-19,2013-08-19,"YB","AF","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to glare and byssus"
+"2013-08-19_YB-AFq9",2013-08-19,2013-08-19,"YB","AF","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to high water and glare"
+"2013-08-19_YB-AFq1",2013-08-19,2013-08-19,"YB","AF","1","Bg","Balanus_glandula","Type 1",1360,0.015625,87040,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle and organism counts may be low due to high water, byssus and glare"
+"2013-08-19_YB-AFq2",2013-08-19,2013-08-19,"YB","AF","2","Bg","Balanus_glandula","Type 1",1848,0.015625,118272,"c","Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare and algae"
+"2013-08-19_YB-AFq3",2013-08-19,2013-08-19,"YB","AF","3","Bg","Balanus_glandula","Type 1",1800,0.015625,115200,"c","Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare and high water"
+"2013-08-19_YB-AFq4",2013-08-19,2013-08-19,"YB","AF","4","Bg","Balanus_glandula","Type 1",1433,0.015625,91712,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water and byssus coverage"
+"2013-08-19_YB-AFq5",2013-08-19,2013-08-19,"YB","AF","5","Bg","Balanus_glandula","Type 1",1209,0.015625,77376,"c","Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to glare and byssus coverage"
+"2013-08-19_YB-AFq6",2013-08-19,2013-08-19,"YB","AF","6","Bg","Balanus_glandula","Type 1",1248,0.015625,79872,"c","Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to high water, glare and byssus coverage"
+"2013-08-19_YB-AFq7",2013-08-19,2013-08-19,"YB","AF","7","Bg","Balanus_glandula","Type 1",1016,0.015625,65024,"c","Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to high water and byssus coverage"
+"2013-08-19_YB-AFq8",2013-08-19,2013-08-19,"YB","AF","8","Bg","Balanus_glandula","Type 1",1232,0.015625,78848,"c","Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to glare and byssus"
+"2013-08-19_YB-AFq9",2013-08-19,2013-08-19,"YB","AF","9","Bg","Balanus_glandula","Type 1",1200,0.015625,76800,"c","Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to high water and glare"
+"2013-08-19_YB-AFq1",2013-08-19,2013-08-19,"YB","AF","1","BgD","Balanus_glandula_(dead)","Type 2",3,0.015625,192,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle and organism counts may be low due to high water, byssus and glare"
+"2013-08-19_YB-AFq2",2013-08-19,2013-08-19,"YB","AF","2","BgD","Balanus_glandula_(dead)","Type 2",1,0.015625,64,"c","Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare and algae"
+"2013-08-19_YB-AFq3",2013-08-19,2013-08-19,"YB","AF","3","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare and high water"
+"2013-08-19_YB-AFq4",2013-08-19,2013-08-19,"YB","AF","4","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water and byssus coverage"
+"2013-08-19_YB-AFq5",2013-08-19,2013-08-19,"YB","AF","5","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to glare and byssus coverage"
+"2013-08-19_YB-AFq6",2013-08-19,2013-08-19,"YB","AF","6","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to high water, glare and byssus coverage"
+"2013-08-19_YB-AFq7",2013-08-19,2013-08-19,"YB","AF","7","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to high water and byssus coverage"
+"2013-08-19_YB-AFq8",2013-08-19,2013-08-19,"YB","AF","8","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to glare and byssus"
+"2013-08-19_YB-AFq9",2013-08-19,2013-08-19,"YB","AF","9","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to high water and glare"
+"2013-08-19_YB-AFq1",2013-08-19,2013-08-19,"YB","AF","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle and organism counts may be low due to high water, byssus and glare"
+"2013-08-19_YB-AFq2",2013-08-19,2013-08-19,"YB","AF","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare and algae"
+"2013-08-19_YB-AFq3",2013-08-19,2013-08-19,"YB","AF","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare and high water"
+"2013-08-19_YB-AFq4",2013-08-19,2013-08-19,"YB","AF","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water and byssus coverage"
+"2013-08-19_YB-AFq5",2013-08-19,2013-08-19,"YB","AF","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to glare and byssus coverage"
+"2013-08-19_YB-AFq6",2013-08-19,2013-08-19,"YB","AF","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to high water, glare and byssus coverage"
+"2013-08-19_YB-AFq7",2013-08-19,2013-08-19,"YB","AF","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to high water and byssus coverage"
+"2013-08-19_YB-AFq8",2013-08-19,2013-08-19,"YB","AF","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to glare and byssus"
+"2013-08-19_YB-AFq9",2013-08-19,2013-08-19,"YB","AF","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to high water and glare"
+"2013-08-19_YB-AFq1",2013-08-19,2013-08-19,"YB","AF","1","Cth","Chthamalus_dalli","Type 3",5,0.015625,320,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle and organism counts may be low due to high water, byssus and glare"
+"2013-08-19_YB-AFq2",2013-08-19,2013-08-19,"YB","AF","2","Cth","Chthamalus_dalli","Type 3",13,0.015625,832,"c","Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare and algae"
+"2013-08-19_YB-AFq3",2013-08-19,2013-08-19,"YB","AF","3","Cth","Chthamalus_dalli","Type 3",14,0.015625,896,"c","Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare and high water"
+"2013-08-19_YB-AFq4",2013-08-19,2013-08-19,"YB","AF","4","Cth","Chthamalus_dalli","Type 3",4,0.015625,256,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water and byssus coverage"
+"2013-08-19_YB-AFq5",2013-08-19,2013-08-19,"YB","AF","5","Cth","Chthamalus_dalli","Type 3",12,0.015625,768,"c","Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to glare and byssus coverage"
+"2013-08-19_YB-AFq6",2013-08-19,2013-08-19,"YB","AF","6","Cth","Chthamalus_dalli","Type 3",7,0.015625,448,"c","Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to high water, glare and byssus coverage"
+"2013-08-19_YB-AFq7",2013-08-19,2013-08-19,"YB","AF","7","Cth","Chthamalus_dalli","Type 3",4,0.015625,256,"c","Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to high water and byssus coverage"
+"2013-08-19_YB-AFq8",2013-08-19,2013-08-19,"YB","AF","8","Cth","Chthamalus_dalli","Type 3",13,0.015625,832,"c","Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to glare and byssus"
+"2013-08-19_YB-AFq9",2013-08-19,2013-08-19,"YB","AF","9","Cth","Chthamalus_dalli","Type 3",2,0.015625,128,"c","Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to high water and glare"
+"2013-08-19_YB-AFq1",2013-08-19,2013-08-19,"YB","AF","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle and organism counts may be low due to high water, byssus and glare"
+"2013-08-19_YB-AFq2",2013-08-19,2013-08-19,"YB","AF","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare and algae"
+"2013-08-19_YB-AFq3",2013-08-19,2013-08-19,"YB","AF","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare and high water"
+"2013-08-19_YB-AFq4",2013-08-19,2013-08-19,"YB","AF","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water and byssus coverage"
+"2013-08-19_YB-AFq5",2013-08-19,2013-08-19,"YB","AF","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to glare and byssus coverage"
+"2013-08-19_YB-AFq6",2013-08-19,2013-08-19,"YB","AF","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to high water, glare and byssus coverage"
+"2013-08-19_YB-AFq7",2013-08-19,2013-08-19,"YB","AF","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to high water and byssus coverage"
+"2013-08-19_YB-AFq8",2013-08-19,2013-08-19,"YB","AF","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to glare and byssus"
+"2013-08-19_YB-AFq9",2013-08-19,2013-08-19,"YB","AF","9","CthD","Chthamalus_dalli (dead)","Type 4",1,0.015625,64,"c","Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to high water and glare"
+"2013-08-19_YB-AFq1",2013-08-19,2013-08-19,"YB","AF","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle and organism counts may be low due to high water, byssus and glare"
+"2013-08-19_YB-AFq2",2013-08-19,2013-08-19,"YB","AF","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare and algae"
+"2013-08-19_YB-AFq3",2013-08-19,2013-08-19,"YB","AF","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare and high water"
+"2013-08-19_YB-AFq4",2013-08-19,2013-08-19,"YB","AF","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water and byssus coverage"
+"2013-08-19_YB-AFq5",2013-08-19,2013-08-19,"YB","AF","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to glare and byssus coverage"
+"2013-08-19_YB-AFq6",2013-08-19,2013-08-19,"YB","AF","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to high water, glare and byssus coverage"
+"2013-08-19_YB-AFq7",2013-08-19,2013-08-19,"YB","AF","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to high water and byssus coverage"
+"2013-08-19_YB-AFq8",2013-08-19,2013-08-19,"YB","AF","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to glare and byssus"
+"2013-08-19_YB-AFq9",2013-08-19,2013-08-19,"YB","AF","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to high water and glare"
+"2013-08-19_YB-AFq1",2013-08-19,2013-08-19,"YB","AF","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle and organism counts may be low due to high water, byssus and glare"
+"2013-08-19_YB-AFq2",2013-08-19,2013-08-19,"YB","AF","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare and algae"
+"2013-08-19_YB-AFq3",2013-08-19,2013-08-19,"YB","AF","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare and high water"
+"2013-08-19_YB-AFq4",2013-08-19,2013-08-19,"YB","AF","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water and byssus coverage"
+"2013-08-19_YB-AFq5",2013-08-19,2013-08-19,"YB","AF","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to glare and byssus coverage"
+"2013-08-19_YB-AFq6",2013-08-19,2013-08-19,"YB","AF","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to high water, glare and byssus coverage"
+"2013-08-19_YB-AFq7",2013-08-19,2013-08-19,"YB","AF","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to high water and byssus coverage"
+"2013-08-19_YB-AFq8",2013-08-19,2013-08-19,"YB","AF","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to glare and byssus"
+"2013-08-19_YB-AFq9",2013-08-19,2013-08-19,"YB","AF","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to high water and glare"
+"2013-08-19_YB-AFq1",2013-08-19,2013-08-19,"YB","AF","1","Lim","Limpets","Type 12",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle and organism counts may be low due to high water, byssus and glare"
+"2013-08-19_YB-AFq2",2013-08-19,2013-08-19,"YB","AF","2","Lim","Limpets","Type 12",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare and algae"
+"2013-08-19_YB-AFq3",2013-08-19,2013-08-19,"YB","AF","3","Lim","Limpets","Type 12",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare and high water"
+"2013-08-19_YB-AFq4",2013-08-19,2013-08-19,"YB","AF","4","Lim","Limpets","Type 12",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water and byssus coverage"
+"2013-08-19_YB-AFq5",2013-08-19,2013-08-19,"YB","AF","5","Lim","Limpets","Type 12",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to glare and byssus coverage"
+"2013-08-19_YB-AFq6",2013-08-19,2013-08-19,"YB","AF","6","Lim","Limpets","Type 12",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to high water, glare and byssus coverage"
+"2013-08-19_YB-AFq7",2013-08-19,2013-08-19,"YB","AF","7","Lim","Limpets","Type 12",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to high water and byssus coverage"
+"2013-08-19_YB-AFq8",2013-08-19,2013-08-19,"YB","AF","8","Lim","Limpets","Type 12",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to glare and byssus"
+"2013-08-19_YB-AFq9",2013-08-19,2013-08-19,"YB","AF","9","Lim","Limpets","Type 12",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to high water and glare"
+"2013-08-19_YB-AFq1",2013-08-19,2013-08-19,"YB","AF","1","Ls","Littorina_sitkana","Type 13",38,0.0875,434.285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle and organism counts may be low due to high water, byssus and glare"
+"2013-08-19_YB-AFq2",2013-08-19,2013-08-19,"YB","AF","2","Ls","Littorina_sitkana","Type 13",25,0.0875,285.714285714286,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare and algae"
+"2013-08-19_YB-AFq3",2013-08-19,2013-08-19,"YB","AF","3","Ls","Littorina_sitkana","Type 13",40,0.0875,457.142857142857,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare and high water"
+"2013-08-19_YB-AFq4",2013-08-19,2013-08-19,"YB","AF","4","Ls","Littorina_sitkana","Type 13",18,0.0875,205.714285714286,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water and byssus coverage"
+"2013-08-19_YB-AFq5",2013-08-19,2013-08-19,"YB","AF","5","Ls","Littorina_sitkana","Type 13",10,0.0875,114.285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to glare and byssus coverage"
+"2013-08-19_YB-AFq6",2013-08-19,2013-08-19,"YB","AF","6","Ls","Littorina_sitkana","Type 13",17,0.0875,194.285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to high water, glare and byssus coverage"
+"2013-08-19_YB-AFq7",2013-08-19,2013-08-19,"YB","AF","7","Ls","Littorina_sitkana","Type 13",7,0.0875,80,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to high water and byssus coverage"
+"2013-08-19_YB-AFq8",2013-08-19,2013-08-19,"YB","AF","8","Ls","Littorina_sitkana","Type 13",17,0.0875,194.285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to glare and byssus"
+"2013-08-19_YB-AFq9",2013-08-19,2013-08-19,"YB","AF","9","Ls","Littorina_sitkana","Type 13",4,0.0875,45.7142857142857,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to high water and glare"
+"2013-08-19_YB-AFq1",2013-08-19,2013-08-19,"YB","AF","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle and organism counts may be low due to high water, byssus and glare"
+"2013-08-19_YB-AFq2",2013-08-19,2013-08-19,"YB","AF","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare and algae"
+"2013-08-19_YB-AFq3",2013-08-19,2013-08-19,"YB","AF","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare and high water"
+"2013-08-19_YB-AFq4",2013-08-19,2013-08-19,"YB","AF","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water and byssus coverage"
+"2013-08-19_YB-AFq5",2013-08-19,2013-08-19,"YB","AF","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to glare and byssus coverage"
+"2013-08-19_YB-AFq6",2013-08-19,2013-08-19,"YB","AF","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to high water, glare and byssus coverage"
+"2013-08-19_YB-AFq7",2013-08-19,2013-08-19,"YB","AF","7","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to high water and byssus coverage"
+"2013-08-19_YB-AFq8",2013-08-19,2013-08-19,"YB","AF","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to glare and byssus"
+"2013-08-19_YB-AFq9",2013-08-19,2013-08-19,"YB","AF","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to high water and glare"
+"2013-08-19_YB-AFq1",2013-08-19,2013-08-19,"YB","AF","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle and organism counts may be low due to high water, byssus and glare"
+"2013-08-19_YB-AFq2",2013-08-19,2013-08-19,"YB","AF","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare and algae"
+"2013-08-19_YB-AFq3",2013-08-19,2013-08-19,"YB","AF","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare and high water"
+"2013-08-19_YB-AFq4",2013-08-19,2013-08-19,"YB","AF","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water and byssus coverage"
+"2013-08-19_YB-AFq5",2013-08-19,2013-08-19,"YB","AF","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to glare and byssus coverage"
+"2013-08-19_YB-AFq6",2013-08-19,2013-08-19,"YB","AF","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to high water, glare and byssus coverage"
+"2013-08-19_YB-AFq7",2013-08-19,2013-08-19,"YB","AF","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to high water and byssus coverage"
+"2013-08-19_YB-AFq8",2013-08-19,2013-08-19,"YB","AF","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to glare and byssus"
+"2013-08-19_YB-AFq9",2013-08-19,2013-08-19,"YB","AF","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to high water and glare"
+"2013-08-19_YB-AFq1",2013-08-19,2013-08-19,"YB","AF","1","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle and organism counts may be low due to high water, byssus and glare"
+"2013-08-19_YB-AFq2",2013-08-19,2013-08-19,"YB","AF","2","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare and algae"
+"2013-08-19_YB-AFq3",2013-08-19,2013-08-19,"YB","AF","3","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare and high water"
+"2013-08-19_YB-AFq4",2013-08-19,2013-08-19,"YB","AF","4","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water and byssus coverage"
+"2013-08-19_YB-AFq5",2013-08-19,2013-08-19,"YB","AF","5","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to glare and byssus coverage"
+"2013-08-19_YB-AFq6",2013-08-19,2013-08-19,"YB","AF","6","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to high water, glare and byssus coverage"
+"2013-08-19_YB-AFq7",2013-08-19,2013-08-19,"YB","AF","7","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to high water and byssus coverage"
+"2013-08-19_YB-AFq8",2013-08-19,2013-08-19,"YB","AF","8","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to glare and byssus"
+"2013-08-19_YB-AFq9",2013-08-19,2013-08-19,"YB","AF","9","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to high water and glare"
+"2013-08-19_YB-AFq1",2013-08-19,2013-08-19,"YB","AF","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle and organism counts may be low due to high water, byssus and glare"
+"2013-08-19_YB-AFq2",2013-08-19,2013-08-19,"YB","AF","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare and algae"
+"2013-08-19_YB-AFq3",2013-08-19,2013-08-19,"YB","AF","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare and high water"
+"2013-08-19_YB-AFq4",2013-08-19,2013-08-19,"YB","AF","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water and byssus coverage"
+"2013-08-19_YB-AFq5",2013-08-19,2013-08-19,"YB","AF","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to glare and byssus coverage"
+"2013-08-19_YB-AFq6",2013-08-19,2013-08-19,"YB","AF","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to high water, glare and byssus coverage"
+"2013-08-19_YB-AFq7",2013-08-19,2013-08-19,"YB","AF","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to high water and byssus coverage"
+"2013-08-19_YB-AFq8",2013-08-19,2013-08-19,"YB","AF","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to glare and byssus"
+"2013-08-19_YB-AFq9",2013-08-19,2013-08-19,"YB","AF","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to high water and glare"
+"2013-08-19_YB-AFq1",2013-08-19,2013-08-19,"YB","AF","1","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle and organism counts may be low due to high water, byssus and glare"
+"2013-08-19_YB-AFq2",2013-08-19,2013-08-19,"YB","AF","2","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare and algae"
+"2013-08-19_YB-AFq3",2013-08-19,2013-08-19,"YB","AF","3","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare and high water"
+"2013-08-19_YB-AFq4",2013-08-19,2013-08-19,"YB","AF","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water and byssus coverage"
+"2013-08-19_YB-AFq5",2013-08-19,2013-08-19,"YB","AF","5","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to glare and byssus coverage"
+"2013-08-19_YB-AFq6",2013-08-19,2013-08-19,"YB","AF","6","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to high water, glare and byssus coverage"
+"2013-08-19_YB-AFq7",2013-08-19,2013-08-19,"YB","AF","7","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to high water and byssus coverage"
+"2013-08-19_YB-AFq8",2013-08-19,2013-08-19,"YB","AF","8","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to glare and byssus"
+"2013-08-19_YB-AFq9",2013-08-19,2013-08-19,"YB","AF","9","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to high water and glare"
+"2013-08-19_YB-AFq1",2013-08-19,2013-08-19,"YB","AF","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle and organism counts may be low due to high water, byssus and glare"
+"2013-08-19_YB-AFq2",2013-08-19,2013-08-19,"YB","AF","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare and algae"
+"2013-08-19_YB-AFq3",2013-08-19,2013-08-19,"YB","AF","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare and high water"
+"2013-08-19_YB-AFq4",2013-08-19,2013-08-19,"YB","AF","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water and byssus coverage"
+"2013-08-19_YB-AFq5",2013-08-19,2013-08-19,"YB","AF","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to glare and byssus coverage"
+"2013-08-19_YB-AFq6",2013-08-19,2013-08-19,"YB","AF","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to high water, glare and byssus coverage"
+"2013-08-19_YB-AFq7",2013-08-19,2013-08-19,"YB","AF","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to high water and byssus coverage"
+"2013-08-19_YB-AFq8",2013-08-19,2013-08-19,"YB","AF","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to glare and byssus"
+"2013-08-19_YB-AFq9",2013-08-19,2013-08-19,"YB","AF","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to high water and glare"
+"2013-08-19_YB-AFq1",2013-08-19,2013-08-19,"YB","AF","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle and organism counts may be low due to high water, byssus and glare"
+"2013-08-19_YB-AFq2",2013-08-19,2013-08-19,"YB","AF","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare and algae"
+"2013-08-19_YB-AFq3",2013-08-19,2013-08-19,"YB","AF","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare and high water"
+"2013-08-19_YB-AFq4",2013-08-19,2013-08-19,"YB","AF","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water and byssus coverage"
+"2013-08-19_YB-AFq5",2013-08-19,2013-08-19,"YB","AF","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to glare and byssus coverage"
+"2013-08-19_YB-AFq6",2013-08-19,2013-08-19,"YB","AF","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to high water, glare and byssus coverage"
+"2013-08-19_YB-AFq7",2013-08-19,2013-08-19,"YB","AF","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to high water and byssus coverage"
+"2013-08-19_YB-AFq8",2013-08-19,2013-08-19,"YB","AF","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to glare and byssus"
+"2013-08-19_YB-AFq9",2013-08-19,2013-08-19,"YB","AF","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to high water and glare"
+"2013-08-19_YB-AFq1",2013-08-19,2013-08-19,"YB","AF","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle and organism counts may be low due to high water, byssus and glare"
+"2013-08-19_YB-AFq2",2013-08-19,2013-08-19,"YB","AF","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare and algae"
+"2013-08-19_YB-AFq3",2013-08-19,2013-08-19,"YB","AF","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare and high water"
+"2013-08-19_YB-AFq4",2013-08-19,2013-08-19,"YB","AF","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water and byssus coverage"
+"2013-08-19_YB-AFq5",2013-08-19,2013-08-19,"YB","AF","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to glare and byssus coverage"
+"2013-08-19_YB-AFq6",2013-08-19,2013-08-19,"YB","AF","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to high water, glare and byssus coverage"
+"2013-08-19_YB-AFq7",2013-08-19,2013-08-19,"YB","AF","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to high water and byssus coverage"
+"2013-08-19_YB-AFq8",2013-08-19,2013-08-19,"YB","AF","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to glare and byssus"
+"2013-08-19_YB-AFq9",2013-08-19,2013-08-19,"YB","AF","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to high water and glare"
+"2013-08-19_YB-AFq1",2013-08-19,2013-08-19,"YB","AF","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle and organism counts may be low due to high water, byssus and glare"
+"2013-08-19_YB-AFq2",2013-08-19,2013-08-19,"YB","AF","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare and algae"
+"2013-08-19_YB-AFq3",2013-08-19,2013-08-19,"YB","AF","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare and high water"
+"2013-08-19_YB-AFq4",2013-08-19,2013-08-19,"YB","AF","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water and byssus coverage"
+"2013-08-19_YB-AFq5",2013-08-19,2013-08-19,"YB","AF","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to glare and byssus coverage"
+"2013-08-19_YB-AFq6",2013-08-19,2013-08-19,"YB","AF","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to high water, glare and byssus coverage"
+"2013-08-19_YB-AFq7",2013-08-19,2013-08-19,"YB","AF","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to high water and byssus coverage"
+"2013-08-19_YB-AFq8",2013-08-19,2013-08-19,"YB","AF","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to glare and byssus"
+"2013-08-19_YB-AFq9",2013-08-19,2013-08-19,"YB","AF","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to high water and glare"
+"2013-08-19_YB-AFq1",2013-08-19,2013-08-19,"YB","AF","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle and organism counts may be low due to high water, byssus and glare"
+"2013-08-19_YB-AFq2",2013-08-19,2013-08-19,"YB","AF","2","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare and algae"
+"2013-08-19_YB-AFq3",2013-08-19,2013-08-19,"YB","AF","3","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare and high water"
+"2013-08-19_YB-AFq4",2013-08-19,2013-08-19,"YB","AF","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water and byssus coverage"
+"2013-08-19_YB-AFq5",2013-08-19,2013-08-19,"YB","AF","5","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to glare and byssus coverage"
+"2013-08-19_YB-AFq6",2013-08-19,2013-08-19,"YB","AF","6","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to high water, glare and byssus coverage"
+"2013-08-19_YB-AFq7",2013-08-19,2013-08-19,"YB","AF","7","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to high water and byssus coverage"
+"2013-08-19_YB-AFq8",2013-08-19,2013-08-19,"YB","AF","8","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to glare and byssus"
+"2013-08-19_YB-AFq9",2013-08-19,2013-08-19,"YB","AF","9","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to high water and glare"
+"2013-08-19_YB-AFq1",2013-08-19,2013-08-19,"YB","AF","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle and organism counts may be low due to high water, byssus and glare"
+"2013-08-19_YB-AFq2",2013-08-19,2013-08-19,"YB","AF","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare and algae"
+"2013-08-19_YB-AFq3",2013-08-19,2013-08-19,"YB","AF","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare and high water"
+"2013-08-19_YB-AFq4",2013-08-19,2013-08-19,"YB","AF","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water and byssus coverage"
+"2013-08-19_YB-AFq5",2013-08-19,2013-08-19,"YB","AF","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to glare and byssus coverage"
+"2013-08-19_YB-AFq6",2013-08-19,2013-08-19,"YB","AF","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to high water, glare and byssus coverage"
+"2013-08-19_YB-AFq7",2013-08-19,2013-08-19,"YB","AF","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to high water and byssus coverage"
+"2013-08-19_YB-AFq8",2013-08-19,2013-08-19,"YB","AF","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to glare and byssus"
+"2013-08-19_YB-AFq9",2013-08-19,2013-08-19,"YB","AF","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to high water and glare"
+"2013-08-19_YB-AFq1",2013-08-19,2013-08-19,"YB","AF","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle and organism counts may be low due to high water, byssus and glare"
+"2013-08-19_YB-AFq2",2013-08-19,2013-08-19,"YB","AF","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare and algae"
+"2013-08-19_YB-AFq3",2013-08-19,2013-08-19,"YB","AF","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare and high water"
+"2013-08-19_YB-AFq4",2013-08-19,2013-08-19,"YB","AF","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water and byssus coverage"
+"2013-08-19_YB-AFq5",2013-08-19,2013-08-19,"YB","AF","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to glare and byssus coverage"
+"2013-08-19_YB-AFq6",2013-08-19,2013-08-19,"YB","AF","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to high water, glare and byssus coverage"
+"2013-08-19_YB-AFq7",2013-08-19,2013-08-19,"YB","AF","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to high water and byssus coverage"
+"2013-08-19_YB-AFq8",2013-08-19,2013-08-19,"YB","AF","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to glare and byssus"
+"2013-08-19_YB-AFq9",2013-08-19,2013-08-19,"YB","AF","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to high water and glare"
+"2013-08-19_YB-AFq1",2013-08-19,2013-08-19,"YB","AF","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle and organism counts may be low due to high water, byssus and glare"
+"2013-08-19_YB-AFq2",2013-08-19,2013-08-19,"YB","AF","2","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare and algae"
+"2013-08-19_YB-AFq3",2013-08-19,2013-08-19,"YB","AF","3","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare and high water"
+"2013-08-19_YB-AFq4",2013-08-19,2013-08-19,"YB","AF","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water and byssus coverage"
+"2013-08-19_YB-AFq5",2013-08-19,2013-08-19,"YB","AF","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to glare and byssus coverage"
+"2013-08-19_YB-AFq6",2013-08-19,2013-08-19,"YB","AF","6","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to high water, glare and byssus coverage"
+"2013-08-19_YB-AFq7",2013-08-19,2013-08-19,"YB","AF","7","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to high water and byssus coverage"
+"2013-08-19_YB-AFq8",2013-08-19,2013-08-19,"YB","AF","8","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to glare and byssus"
+"2013-08-19_YB-AFq9",2013-08-19,2013-08-19,"YB","AF","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to high water and glare"
+"2013-08-19_YB-AFq1",2013-08-19,2013-08-19,"YB","AF","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle and organism counts may be low due to high water, byssus and glare"
+"2013-08-19_YB-AFq2",2013-08-19,2013-08-19,"YB","AF","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare and algae"
+"2013-08-19_YB-AFq3",2013-08-19,2013-08-19,"YB","AF","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare and high water"
+"2013-08-19_YB-AFq4",2013-08-19,2013-08-19,"YB","AF","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water and byssus coverage"
+"2013-08-19_YB-AFq5",2013-08-19,2013-08-19,"YB","AF","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to glare and byssus coverage"
+"2013-08-19_YB-AFq6",2013-08-19,2013-08-19,"YB","AF","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to high water, glare and byssus coverage"
+"2013-08-19_YB-AFq7",2013-08-19,2013-08-19,"YB","AF","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to high water and byssus coverage"
+"2013-08-19_YB-AFq8",2013-08-19,2013-08-19,"YB","AF","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to glare and byssus"
+"2013-08-19_YB-AFq9",2013-08-19,2013-08-19,"YB","AF","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to high water and glare"
+"2013-08-19_YB-AFq1",2013-08-19,2013-08-19,"YB","AF","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle and organism counts may be low due to high water, byssus and glare"
+"2013-08-19_YB-AFq2",2013-08-19,2013-08-19,"YB","AF","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare and algae"
+"2013-08-19_YB-AFq3",2013-08-19,2013-08-19,"YB","AF","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare and high water"
+"2013-08-19_YB-AFq4",2013-08-19,2013-08-19,"YB","AF","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water and byssus coverage"
+"2013-08-19_YB-AFq5",2013-08-19,2013-08-19,"YB","AF","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to glare and byssus coverage"
+"2013-08-19_YB-AFq6",2013-08-19,2013-08-19,"YB","AF","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to high water, glare and byssus coverage"
+"2013-08-19_YB-AFq7",2013-08-19,2013-08-19,"YB","AF","7","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to high water and byssus coverage"
+"2013-08-19_YB-AFq8",2013-08-19,2013-08-19,"YB","AF","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to glare and byssus"
+"2013-08-19_YB-AFq9",2013-08-19,2013-08-19,"YB","AF","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to high water and glare"
+"2013-08-19_YB-AFq1",2013-08-19,2013-08-19,"YB","AF","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle and organism counts may be low due to high water, byssus and glare"
+"2013-08-19_YB-AFq2",2013-08-19,2013-08-19,"YB","AF","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare and algae"
+"2013-08-19_YB-AFq3",2013-08-19,2013-08-19,"YB","AF","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Barnacle and organism counts may be low due to glare and high water"
+"2013-08-19_YB-AFq4",2013-08-19,2013-08-19,"YB","AF","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water and byssus coverage"
+"2013-08-19_YB-AFq5",2013-08-19,2013-08-19,"YB","AF","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to glare and byssus coverage"
+"2013-08-19_YB-AFq6",2013-08-19,2013-08-19,"YB","AF","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to high water, glare and byssus coverage"
+"2013-08-19_YB-AFq7",2013-08-19,2013-08-19,"YB","AF","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to high water and byssus coverage"
+"2013-08-19_YB-AFq8",2013-08-19,2013-08-19,"YB","AF","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to glare and byssus"
+"2013-08-19_YB-AFq9",2013-08-19,2013-08-19,"YB","AF","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","All counts may be low due to high water and glare"
+"2013-08-19_YB-AGq1",2013-08-19,2013-08-19,"YB","AG","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-AGq2",2013-08-19,2013-08-19,"YB","AG","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","20%","Barnacles all very small (~1mm)"
+"2013-08-19_YB-AGq3",2013-08-19,2013-08-19,"YB","AG","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","20%",""
+"2013-08-19_YB-AGq4",2013-08-19,2013-08-19,"YB","AG","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts may be low due to high water, glare and algae"
+"2013-08-19_YB-AGq5",2013-08-19,2013-08-19,"YB","AG","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts may be low due to high water, glare and algae"
+"2013-08-19_YB-AGq6",2013-08-19,2013-08-19,"YB","AG","6","Alg","Algae","Type 19",17,0.0875,194.285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-AGq7",2013-08-19,2013-08-19,"YB","AG","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water, glare, and algal coverage"
+"2013-08-19_YB-AGq8",2013-08-19,2013-08-19,"YB","AG","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","35%","All counts may be low due to high water, glare, and algal coverage"
+"2013-08-19_YB-AGq9",2013-08-19,2013-08-19,"YB","AG","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","All counts may be low due to high water, glare, and algal coverage"
+"2013-08-19_YB-AGq1",2013-08-19,2013-08-19,"YB","AG","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-AGq2",2013-08-19,2013-08-19,"YB","AG","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","20%","Barnacles all very small (~1mm)"
+"2013-08-19_YB-AGq3",2013-08-19,2013-08-19,"YB","AG","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","20%",""
+"2013-08-19_YB-AGq4",2013-08-19,2013-08-19,"YB","AG","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts may be low due to high water, glare and algae"
+"2013-08-19_YB-AGq5",2013-08-19,2013-08-19,"YB","AG","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts may be low due to high water, glare and algae"
+"2013-08-19_YB-AGq6",2013-08-19,2013-08-19,"YB","AG","6","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-AGq7",2013-08-19,2013-08-19,"YB","AG","7","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water, glare, and algal coverage"
+"2013-08-19_YB-AGq8",2013-08-19,2013-08-19,"YB","AG","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","35%","All counts may be low due to high water, glare, and algal coverage"
+"2013-08-19_YB-AGq9",2013-08-19,2013-08-19,"YB","AG","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","All counts may be low due to high water, glare, and algal coverage"
+"2013-08-19_YB-AGq1",2013-08-19,2013-08-19,"YB","AG","1","Bg","Balanus_glandula","Type 1",1199,0.015625,76736,"c","Isaac Shepard","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-AGq2",2013-08-19,2013-08-19,"YB","AG","2","Bg","Balanus_glandula","Type 1",901,0.015625,57664,"c","Isaac Shepard","Finished","Full","Cropped","20%","Barnacles all very small (~1mm)"
+"2013-08-19_YB-AGq3",2013-08-19,2013-08-19,"YB","AG","3","Bg","Balanus_glandula","Type 1",1292,0.015625,82688,"c","Isaac Shepard","Finished","Full","Cropped","20%",""
+"2013-08-19_YB-AGq4",2013-08-19,2013-08-19,"YB","AG","4","Bg","Balanus_glandula","Type 1",1349,0.015625,86336,"c","Stephanie Merhoff","Finished","Full","Cropped","50%","Counts may be low due to high water, glare and algae"
+"2013-08-19_YB-AGq5",2013-08-19,2013-08-19,"YB","AG","5","Bg","Balanus_glandula","Type 1",1178,0.015625,75392,"c","Stephanie Merhoff","Finished","Full","Cropped","50%","Counts may be low due to high water, glare and algae"
+"2013-08-19_YB-AGq6",2013-08-19,2013-08-19,"YB","AG","6","Bg","Balanus_glandula","Type 1",1711,0.015625,109504,"c","Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-AGq7",2013-08-19,2013-08-19,"YB","AG","7","Bg","Balanus_glandula","Type 1",1456,0.015625,93184,"c","Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water, glare, and algal coverage"
+"2013-08-19_YB-AGq8",2013-08-19,2013-08-19,"YB","AG","8","Bg","Balanus_glandula","Type 1",1432,0.015625,91648,"c","Stephanie Merhoff","Finished","Full","Cropped","35%","All counts may be low due to high water, glare, and algal coverage"
+"2013-08-19_YB-AGq9",2013-08-19,2013-08-19,"YB","AG","9","Bg","Balanus_glandula","Type 1",1668,0.015625,106752,"c","Stephanie Merhoff","Finished","Full","Cropped","30%","All counts may be low due to high water, glare, and algal coverage"
+"2013-08-19_YB-AGq1",2013-08-19,2013-08-19,"YB","AG","1","BgD","Balanus_glandula_(dead)","Type 2",29,0.015625,1856,"c","Isaac Shepard","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-AGq2",2013-08-19,2013-08-19,"YB","AG","2","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","20%","Barnacles all very small (~1mm)"
+"2013-08-19_YB-AGq3",2013-08-19,2013-08-19,"YB","AG","3","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","20%",""
+"2013-08-19_YB-AGq4",2013-08-19,2013-08-19,"YB","AG","4","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","50%","Counts may be low due to high water, glare and algae"
+"2013-08-19_YB-AGq5",2013-08-19,2013-08-19,"YB","AG","5","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","50%","Counts may be low due to high water, glare and algae"
+"2013-08-19_YB-AGq6",2013-08-19,2013-08-19,"YB","AG","6","BgD","Balanus_glandula_(dead)","Type 2",103,0.015625,6592,"c","Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-AGq7",2013-08-19,2013-08-19,"YB","AG","7","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water, glare, and algal coverage"
+"2013-08-19_YB-AGq8",2013-08-19,2013-08-19,"YB","AG","8","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","35%","All counts may be low due to high water, glare, and algal coverage"
+"2013-08-19_YB-AGq9",2013-08-19,2013-08-19,"YB","AG","9","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","30%","All counts may be low due to high water, glare, and algal coverage"
+"2013-08-19_YB-AGq1",2013-08-19,2013-08-19,"YB","AG","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-AGq2",2013-08-19,2013-08-19,"YB","AG","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","20%","Barnacles all very small (~1mm)"
+"2013-08-19_YB-AGq3",2013-08-19,2013-08-19,"YB","AG","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","20%",""
+"2013-08-19_YB-AGq4",2013-08-19,2013-08-19,"YB","AG","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts may be low due to high water, glare and algae"
+"2013-08-19_YB-AGq5",2013-08-19,2013-08-19,"YB","AG","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts may be low due to high water, glare and algae"
+"2013-08-19_YB-AGq6",2013-08-19,2013-08-19,"YB","AG","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-AGq7",2013-08-19,2013-08-19,"YB","AG","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water, glare, and algal coverage"
+"2013-08-19_YB-AGq8",2013-08-19,2013-08-19,"YB","AG","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","35%","All counts may be low due to high water, glare, and algal coverage"
+"2013-08-19_YB-AGq9",2013-08-19,2013-08-19,"YB","AG","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","All counts may be low due to high water, glare, and algal coverage"
+"2013-08-19_YB-AGq1",2013-08-19,2013-08-19,"YB","AG","1","Cth","Chthamalus_dalli","Type 3",27,0.015625,1728,"c","Isaac Shepard","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-AGq2",2013-08-19,2013-08-19,"YB","AG","2","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","20%","Barnacles all very small (~1mm)"
+"2013-08-19_YB-AGq3",2013-08-19,2013-08-19,"YB","AG","3","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","20%",""
+"2013-08-19_YB-AGq4",2013-08-19,2013-08-19,"YB","AG","4","Cth","Chthamalus_dalli","Type 3",20,0.015625,1280,"c","Stephanie Merhoff","Finished","Full","Cropped","50%","Counts may be low due to high water, glare and algae"
+"2013-08-19_YB-AGq5",2013-08-19,2013-08-19,"YB","AG","5","Cth","Chthamalus_dalli","Type 3",88,0.015625,5632,"c","Stephanie Merhoff","Finished","Full","Cropped","50%","Counts may be low due to high water, glare and algae"
+"2013-08-19_YB-AGq6",2013-08-19,2013-08-19,"YB","AG","6","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-AGq7",2013-08-19,2013-08-19,"YB","AG","7","Cth","Chthamalus_dalli","Type 3",35,0.015625,2240,"c","Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water, glare, and algal coverage"
+"2013-08-19_YB-AGq8",2013-08-19,2013-08-19,"YB","AG","8","Cth","Chthamalus_dalli","Type 3",10,0.015625,640,"c","Stephanie Merhoff","Finished","Full","Cropped","35%","All counts may be low due to high water, glare, and algal coverage"
+"2013-08-19_YB-AGq9",2013-08-19,2013-08-19,"YB","AG","9","Cth","Chthamalus_dalli","Type 3",5,0.015625,320,"c","Stephanie Merhoff","Finished","Full","Cropped","30%","All counts may be low due to high water, glare, and algal coverage"
+"2013-08-19_YB-AGq1",2013-08-19,2013-08-19,"YB","AG","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-AGq2",2013-08-19,2013-08-19,"YB","AG","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","20%","Barnacles all very small (~1mm)"
+"2013-08-19_YB-AGq3",2013-08-19,2013-08-19,"YB","AG","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","20%",""
+"2013-08-19_YB-AGq4",2013-08-19,2013-08-19,"YB","AG","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","50%","Counts may be low due to high water, glare and algae"
+"2013-08-19_YB-AGq5",2013-08-19,2013-08-19,"YB","AG","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","50%","Counts may be low due to high water, glare and algae"
+"2013-08-19_YB-AGq6",2013-08-19,2013-08-19,"YB","AG","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-AGq7",2013-08-19,2013-08-19,"YB","AG","7","CthD","Chthamalus_dalli (dead)","Type 4",4,0.015625,256,"c","Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water, glare, and algal coverage"
+"2013-08-19_YB-AGq8",2013-08-19,2013-08-19,"YB","AG","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","35%","All counts may be low due to high water, glare, and algal coverage"
+"2013-08-19_YB-AGq9",2013-08-19,2013-08-19,"YB","AG","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","30%","All counts may be low due to high water, glare, and algal coverage"
+"2013-08-19_YB-AGq1",2013-08-19,2013-08-19,"YB","AG","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-AGq2",2013-08-19,2013-08-19,"YB","AG","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","20%","Barnacles all very small (~1mm)"
+"2013-08-19_YB-AGq3",2013-08-19,2013-08-19,"YB","AG","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","20%",""
+"2013-08-19_YB-AGq4",2013-08-19,2013-08-19,"YB","AG","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts may be low due to high water, glare and algae"
+"2013-08-19_YB-AGq5",2013-08-19,2013-08-19,"YB","AG","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts may be low due to high water, glare and algae"
+"2013-08-19_YB-AGq6",2013-08-19,2013-08-19,"YB","AG","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-AGq7",2013-08-19,2013-08-19,"YB","AG","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water, glare, and algal coverage"
+"2013-08-19_YB-AGq8",2013-08-19,2013-08-19,"YB","AG","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","35%","All counts may be low due to high water, glare, and algal coverage"
+"2013-08-19_YB-AGq9",2013-08-19,2013-08-19,"YB","AG","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","All counts may be low due to high water, glare, and algal coverage"
+"2013-08-19_YB-AGq1",2013-08-19,2013-08-19,"YB","AG","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-AGq2",2013-08-19,2013-08-19,"YB","AG","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","20%","Barnacles all very small (~1mm)"
+"2013-08-19_YB-AGq3",2013-08-19,2013-08-19,"YB","AG","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","20%",""
+"2013-08-19_YB-AGq4",2013-08-19,2013-08-19,"YB","AG","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts may be low due to high water, glare and algae"
+"2013-08-19_YB-AGq5",2013-08-19,2013-08-19,"YB","AG","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts may be low due to high water, glare and algae"
+"2013-08-19_YB-AGq6",2013-08-19,2013-08-19,"YB","AG","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-AGq7",2013-08-19,2013-08-19,"YB","AG","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water, glare, and algal coverage"
+"2013-08-19_YB-AGq8",2013-08-19,2013-08-19,"YB","AG","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","35%","All counts may be low due to high water, glare, and algal coverage"
+"2013-08-19_YB-AGq9",2013-08-19,2013-08-19,"YB","AG","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","All counts may be low due to high water, glare, and algal coverage"
+"2013-08-19_YB-AGq1",2013-08-19,2013-08-19,"YB","AG","1","Lim","Limpets","Type 12",13,0.0875,148.571428571429,NA,"Isaac Shepard","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-AGq2",2013-08-19,2013-08-19,"YB","AG","2","Lim","Limpets","Type 12",10,0.0875,114.285714285714,NA,"Isaac Shepard","Finished","Full","Cropped","20%","Barnacles all very small (~1mm)"
+"2013-08-19_YB-AGq3",2013-08-19,2013-08-19,"YB","AG","3","Lim","Limpets","Type 12",7,0.0875,80,NA,"Isaac Shepard","Finished","Full","Cropped","20%",""
+"2013-08-19_YB-AGq4",2013-08-19,2013-08-19,"YB","AG","4","Lim","Limpets","Type 12",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts may be low due to high water, glare and algae"
+"2013-08-19_YB-AGq5",2013-08-19,2013-08-19,"YB","AG","5","Lim","Limpets","Type 12",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts may be low due to high water, glare and algae"
+"2013-08-19_YB-AGq6",2013-08-19,2013-08-19,"YB","AG","6","Lim","Limpets","Type 12",11,0.0875,125.714285714286,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-AGq7",2013-08-19,2013-08-19,"YB","AG","7","Lim","Limpets","Type 12",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water, glare, and algal coverage"
+"2013-08-19_YB-AGq8",2013-08-19,2013-08-19,"YB","AG","8","Lim","Limpets","Type 12",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","35%","All counts may be low due to high water, glare, and algal coverage"
+"2013-08-19_YB-AGq9",2013-08-19,2013-08-19,"YB","AG","9","Lim","Limpets","Type 12",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","All counts may be low due to high water, glare, and algal coverage"
+"2013-08-19_YB-AGq1",2013-08-19,2013-08-19,"YB","AG","1","Ls","Littorina_sitkana","Type 13",35,0.0875,400,NA,"Isaac Shepard","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-AGq2",2013-08-19,2013-08-19,"YB","AG","2","Ls","Littorina_sitkana","Type 13",25,0.0875,285.714285714286,NA,"Isaac Shepard","Finished","Full","Cropped","20%","Barnacles all very small (~1mm)"
+"2013-08-19_YB-AGq3",2013-08-19,2013-08-19,"YB","AG","3","Ls","Littorina_sitkana","Type 13",10,0.0875,114.285714285714,NA,"Isaac Shepard","Finished","Full","Cropped","20%",""
+"2013-08-19_YB-AGq4",2013-08-19,2013-08-19,"YB","AG","4","Ls","Littorina_sitkana","Type 13",48,0.0875,548.571428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts may be low due to high water, glare and algae"
+"2013-08-19_YB-AGq5",2013-08-19,2013-08-19,"YB","AG","5","Ls","Littorina_sitkana","Type 13",88,0.0875,1005.71428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts may be low due to high water, glare and algae"
+"2013-08-19_YB-AGq6",2013-08-19,2013-08-19,"YB","AG","6","Ls","Littorina_sitkana","Type 13",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-AGq7",2013-08-19,2013-08-19,"YB","AG","7","Ls","Littorina_sitkana","Type 13",4,0.0875,45.7142857142857,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water, glare, and algal coverage"
+"2013-08-19_YB-AGq8",2013-08-19,2013-08-19,"YB","AG","8","Ls","Littorina_sitkana","Type 13",10,0.0875,114.285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","35%","All counts may be low due to high water, glare, and algal coverage"
+"2013-08-19_YB-AGq9",2013-08-19,2013-08-19,"YB","AG","9","Ls","Littorina_sitkana","Type 13",20,0.0875,228.571428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","All counts may be low due to high water, glare, and algal coverage"
+"2013-08-19_YB-AGq1",2013-08-19,2013-08-19,"YB","AG","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-AGq2",2013-08-19,2013-08-19,"YB","AG","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","20%","Barnacles all very small (~1mm)"
+"2013-08-19_YB-AGq3",2013-08-19,2013-08-19,"YB","AG","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","20%",""
+"2013-08-19_YB-AGq4",2013-08-19,2013-08-19,"YB","AG","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts may be low due to high water, glare and algae"
+"2013-08-19_YB-AGq5",2013-08-19,2013-08-19,"YB","AG","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts may be low due to high water, glare and algae"
+"2013-08-19_YB-AGq6",2013-08-19,2013-08-19,"YB","AG","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-AGq7",2013-08-19,2013-08-19,"YB","AG","7","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water, glare, and algal coverage"
+"2013-08-19_YB-AGq8",2013-08-19,2013-08-19,"YB","AG","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","35%","All counts may be low due to high water, glare, and algal coverage"
+"2013-08-19_YB-AGq9",2013-08-19,2013-08-19,"YB","AG","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","All counts may be low due to high water, glare, and algal coverage"
+"2013-08-19_YB-AGq1",2013-08-19,2013-08-19,"YB","AG","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-AGq2",2013-08-19,2013-08-19,"YB","AG","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","20%","Barnacles all very small (~1mm)"
+"2013-08-19_YB-AGq3",2013-08-19,2013-08-19,"YB","AG","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","20%",""
+"2013-08-19_YB-AGq4",2013-08-19,2013-08-19,"YB","AG","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts may be low due to high water, glare and algae"
+"2013-08-19_YB-AGq5",2013-08-19,2013-08-19,"YB","AG","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts may be low due to high water, glare and algae"
+"2013-08-19_YB-AGq6",2013-08-19,2013-08-19,"YB","AG","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-AGq7",2013-08-19,2013-08-19,"YB","AG","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water, glare, and algal coverage"
+"2013-08-19_YB-AGq8",2013-08-19,2013-08-19,"YB","AG","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","35%","All counts may be low due to high water, glare, and algal coverage"
+"2013-08-19_YB-AGq9",2013-08-19,2013-08-19,"YB","AG","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","All counts may be low due to high water, glare, and algal coverage"
+"2013-08-19_YB-AGq1",2013-08-19,2013-08-19,"YB","AG","1","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-AGq2",2013-08-19,2013-08-19,"YB","AG","2","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","20%","Barnacles all very small (~1mm)"
+"2013-08-19_YB-AGq3",2013-08-19,2013-08-19,"YB","AG","3","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","20%",""
+"2013-08-19_YB-AGq4",2013-08-19,2013-08-19,"YB","AG","4","Myt","Mytilus_spp","Type 7",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts may be low due to high water, glare and algae"
+"2013-08-19_YB-AGq5",2013-08-19,2013-08-19,"YB","AG","5","Myt","Mytilus_spp","Type 7",9,0.0875,102.857142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts may be low due to high water, glare and algae"
+"2013-08-19_YB-AGq6",2013-08-19,2013-08-19,"YB","AG","6","Myt","Mytilus_spp","Type 7",4,0.0875,45.7142857142857,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-AGq7",2013-08-19,2013-08-19,"YB","AG","7","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water, glare, and algal coverage"
+"2013-08-19_YB-AGq8",2013-08-19,2013-08-19,"YB","AG","8","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","35%","All counts may be low due to high water, glare, and algal coverage"
+"2013-08-19_YB-AGq9",2013-08-19,2013-08-19,"YB","AG","9","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","All counts may be low due to high water, glare, and algal coverage"
+"2013-08-19_YB-AGq1",2013-08-19,2013-08-19,"YB","AG","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-AGq2",2013-08-19,2013-08-19,"YB","AG","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","20%","Barnacles all very small (~1mm)"
+"2013-08-19_YB-AGq3",2013-08-19,2013-08-19,"YB","AG","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","20%",""
+"2013-08-19_YB-AGq4",2013-08-19,2013-08-19,"YB","AG","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts may be low due to high water, glare and algae"
+"2013-08-19_YB-AGq5",2013-08-19,2013-08-19,"YB","AG","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts may be low due to high water, glare and algae"
+"2013-08-19_YB-AGq6",2013-08-19,2013-08-19,"YB","AG","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-AGq7",2013-08-19,2013-08-19,"YB","AG","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water, glare, and algal coverage"
+"2013-08-19_YB-AGq8",2013-08-19,2013-08-19,"YB","AG","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","35%","All counts may be low due to high water, glare, and algal coverage"
+"2013-08-19_YB-AGq9",2013-08-19,2013-08-19,"YB","AG","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","All counts may be low due to high water, glare, and algal coverage"
+"2013-08-19_YB-AGq1",2013-08-19,2013-08-19,"YB","AG","1","Mt","Mytilus_trossulus","Type 15",3,0.0875,34.2857142857143,NA,"Isaac Shepard","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-AGq2",2013-08-19,2013-08-19,"YB","AG","2","Mt","Mytilus_trossulus","Type 15",1,0.0875,11.4285714285714,NA,"Isaac Shepard","Finished","Full","Cropped","20%","Barnacles all very small (~1mm)"
+"2013-08-19_YB-AGq3",2013-08-19,2013-08-19,"YB","AG","3","Mt","Mytilus_trossulus","Type 15",26,0.0875,297.142857142857,NA,"Isaac Shepard","Finished","Full","Cropped","20%",""
+"2013-08-19_YB-AGq4",2013-08-19,2013-08-19,"YB","AG","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts may be low due to high water, glare and algae"
+"2013-08-19_YB-AGq5",2013-08-19,2013-08-19,"YB","AG","5","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts may be low due to high water, glare and algae"
+"2013-08-19_YB-AGq6",2013-08-19,2013-08-19,"YB","AG","6","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-AGq7",2013-08-19,2013-08-19,"YB","AG","7","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water, glare, and algal coverage"
+"2013-08-19_YB-AGq8",2013-08-19,2013-08-19,"YB","AG","8","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","35%","All counts may be low due to high water, glare, and algal coverage"
+"2013-08-19_YB-AGq9",2013-08-19,2013-08-19,"YB","AG","9","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","All counts may be low due to high water, glare, and algal coverage"
+"2013-08-19_YB-AGq1",2013-08-19,2013-08-19,"YB","AG","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-AGq2",2013-08-19,2013-08-19,"YB","AG","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","20%","Barnacles all very small (~1mm)"
+"2013-08-19_YB-AGq3",2013-08-19,2013-08-19,"YB","AG","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","20%",""
+"2013-08-19_YB-AGq4",2013-08-19,2013-08-19,"YB","AG","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts may be low due to high water, glare and algae"
+"2013-08-19_YB-AGq5",2013-08-19,2013-08-19,"YB","AG","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts may be low due to high water, glare and algae"
+"2013-08-19_YB-AGq6",2013-08-19,2013-08-19,"YB","AG","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-AGq7",2013-08-19,2013-08-19,"YB","AG","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water, glare, and algal coverage"
+"2013-08-19_YB-AGq8",2013-08-19,2013-08-19,"YB","AG","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","35%","All counts may be low due to high water, glare, and algal coverage"
+"2013-08-19_YB-AGq9",2013-08-19,2013-08-19,"YB","AG","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","All counts may be low due to high water, glare, and algal coverage"
+"2013-08-19_YB-AGq1",2013-08-19,2013-08-19,"YB","AG","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-AGq2",2013-08-19,2013-08-19,"YB","AG","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","20%","Barnacles all very small (~1mm)"
+"2013-08-19_YB-AGq3",2013-08-19,2013-08-19,"YB","AG","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","20%",""
+"2013-08-19_YB-AGq4",2013-08-19,2013-08-19,"YB","AG","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts may be low due to high water, glare and algae"
+"2013-08-19_YB-AGq5",2013-08-19,2013-08-19,"YB","AG","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts may be low due to high water, glare and algae"
+"2013-08-19_YB-AGq6",2013-08-19,2013-08-19,"YB","AG","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-AGq7",2013-08-19,2013-08-19,"YB","AG","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water, glare, and algal coverage"
+"2013-08-19_YB-AGq8",2013-08-19,2013-08-19,"YB","AG","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","35%","All counts may be low due to high water, glare, and algal coverage"
+"2013-08-19_YB-AGq9",2013-08-19,2013-08-19,"YB","AG","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","All counts may be low due to high water, glare, and algal coverage"
+"2013-08-19_YB-AGq1",2013-08-19,2013-08-19,"YB","AG","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-AGq2",2013-08-19,2013-08-19,"YB","AG","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","20%","Barnacles all very small (~1mm)"
+"2013-08-19_YB-AGq3",2013-08-19,2013-08-19,"YB","AG","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","20%",""
+"2013-08-19_YB-AGq4",2013-08-19,2013-08-19,"YB","AG","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts may be low due to high water, glare and algae"
+"2013-08-19_YB-AGq5",2013-08-19,2013-08-19,"YB","AG","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts may be low due to high water, glare and algae"
+"2013-08-19_YB-AGq6",2013-08-19,2013-08-19,"YB","AG","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-AGq7",2013-08-19,2013-08-19,"YB","AG","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water, glare, and algal coverage"
+"2013-08-19_YB-AGq8",2013-08-19,2013-08-19,"YB","AG","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","35%","All counts may be low due to high water, glare, and algal coverage"
+"2013-08-19_YB-AGq9",2013-08-19,2013-08-19,"YB","AG","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","All counts may be low due to high water, glare, and algal coverage"
+"2013-08-19_YB-AGq1",2013-08-19,2013-08-19,"YB","AG","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-AGq2",2013-08-19,2013-08-19,"YB","AG","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","20%","Barnacles all very small (~1mm)"
+"2013-08-19_YB-AGq3",2013-08-19,2013-08-19,"YB","AG","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","20%",""
+"2013-08-19_YB-AGq4",2013-08-19,2013-08-19,"YB","AG","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts may be low due to high water, glare and algae"
+"2013-08-19_YB-AGq5",2013-08-19,2013-08-19,"YB","AG","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts may be low due to high water, glare and algae"
+"2013-08-19_YB-AGq6",2013-08-19,2013-08-19,"YB","AG","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-AGq7",2013-08-19,2013-08-19,"YB","AG","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water, glare, and algal coverage"
+"2013-08-19_YB-AGq8",2013-08-19,2013-08-19,"YB","AG","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","35%","All counts may be low due to high water, glare, and algal coverage"
+"2013-08-19_YB-AGq9",2013-08-19,2013-08-19,"YB","AG","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","All counts may be low due to high water, glare, and algal coverage"
+"2013-08-19_YB-AGq1",2013-08-19,2013-08-19,"YB","AG","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-AGq2",2013-08-19,2013-08-19,"YB","AG","2","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","20%","Barnacles all very small (~1mm)"
+"2013-08-19_YB-AGq3",2013-08-19,2013-08-19,"YB","AG","3","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Isaac Shepard","Finished","Full","Cropped","20%",""
+"2013-08-19_YB-AGq4",2013-08-19,2013-08-19,"YB","AG","4","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts may be low due to high water, glare and algae"
+"2013-08-19_YB-AGq5",2013-08-19,2013-08-19,"YB","AG","5","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts may be low due to high water, glare and algae"
+"2013-08-19_YB-AGq6",2013-08-19,2013-08-19,"YB","AG","6","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-AGq7",2013-08-19,2013-08-19,"YB","AG","7","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water, glare, and algal coverage"
+"2013-08-19_YB-AGq8",2013-08-19,2013-08-19,"YB","AG","8","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","35%","All counts may be low due to high water, glare, and algal coverage"
+"2013-08-19_YB-AGq9",2013-08-19,2013-08-19,"YB","AG","9","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","All counts may be low due to high water, glare, and algal coverage"
+"2013-08-19_YB-AGq1",2013-08-19,2013-08-19,"YB","AG","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-AGq2",2013-08-19,2013-08-19,"YB","AG","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","20%","Barnacles all very small (~1mm)"
+"2013-08-19_YB-AGq3",2013-08-19,2013-08-19,"YB","AG","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","20%",""
+"2013-08-19_YB-AGq4",2013-08-19,2013-08-19,"YB","AG","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts may be low due to high water, glare and algae"
+"2013-08-19_YB-AGq5",2013-08-19,2013-08-19,"YB","AG","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts may be low due to high water, glare and algae"
+"2013-08-19_YB-AGq6",2013-08-19,2013-08-19,"YB","AG","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-AGq7",2013-08-19,2013-08-19,"YB","AG","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water, glare, and algal coverage"
+"2013-08-19_YB-AGq8",2013-08-19,2013-08-19,"YB","AG","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","35%","All counts may be low due to high water, glare, and algal coverage"
+"2013-08-19_YB-AGq9",2013-08-19,2013-08-19,"YB","AG","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","All counts may be low due to high water, glare, and algal coverage"
+"2013-08-19_YB-AGq1",2013-08-19,2013-08-19,"YB","AG","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-AGq2",2013-08-19,2013-08-19,"YB","AG","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","20%","Barnacles all very small (~1mm)"
+"2013-08-19_YB-AGq3",2013-08-19,2013-08-19,"YB","AG","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","20%",""
+"2013-08-19_YB-AGq4",2013-08-19,2013-08-19,"YB","AG","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts may be low due to high water, glare and algae"
+"2013-08-19_YB-AGq5",2013-08-19,2013-08-19,"YB","AG","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts may be low due to high water, glare and algae"
+"2013-08-19_YB-AGq6",2013-08-19,2013-08-19,"YB","AG","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-AGq7",2013-08-19,2013-08-19,"YB","AG","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water, glare, and algal coverage"
+"2013-08-19_YB-AGq8",2013-08-19,2013-08-19,"YB","AG","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","35%","All counts may be low due to high water, glare, and algal coverage"
+"2013-08-19_YB-AGq9",2013-08-19,2013-08-19,"YB","AG","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","All counts may be low due to high water, glare, and algal coverage"
+"2013-08-19_YB-AGq1",2013-08-19,2013-08-19,"YB","AG","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-AGq2",2013-08-19,2013-08-19,"YB","AG","2","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","20%","Barnacles all very small (~1mm)"
+"2013-08-19_YB-AGq3",2013-08-19,2013-08-19,"YB","AG","3","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","20%",""
+"2013-08-19_YB-AGq4",2013-08-19,2013-08-19,"YB","AG","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts may be low due to high water, glare and algae"
+"2013-08-19_YB-AGq5",2013-08-19,2013-08-19,"YB","AG","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts may be low due to high water, glare and algae"
+"2013-08-19_YB-AGq6",2013-08-19,2013-08-19,"YB","AG","6","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-AGq7",2013-08-19,2013-08-19,"YB","AG","7","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water, glare, and algal coverage"
+"2013-08-19_YB-AGq8",2013-08-19,2013-08-19,"YB","AG","8","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","35%","All counts may be low due to high water, glare, and algal coverage"
+"2013-08-19_YB-AGq9",2013-08-19,2013-08-19,"YB","AG","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","All counts may be low due to high water, glare, and algal coverage"
+"2013-08-19_YB-AGq1",2013-08-19,2013-08-19,"YB","AG","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-AGq2",2013-08-19,2013-08-19,"YB","AG","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","20%","Barnacles all very small (~1mm)"
+"2013-08-19_YB-AGq3",2013-08-19,2013-08-19,"YB","AG","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","20%",""
+"2013-08-19_YB-AGq4",2013-08-19,2013-08-19,"YB","AG","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts may be low due to high water, glare and algae"
+"2013-08-19_YB-AGq5",2013-08-19,2013-08-19,"YB","AG","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts may be low due to high water, glare and algae"
+"2013-08-19_YB-AGq6",2013-08-19,2013-08-19,"YB","AG","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-AGq7",2013-08-19,2013-08-19,"YB","AG","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water, glare, and algal coverage"
+"2013-08-19_YB-AGq8",2013-08-19,2013-08-19,"YB","AG","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","35%","All counts may be low due to high water, glare, and algal coverage"
+"2013-08-19_YB-AGq9",2013-08-19,2013-08-19,"YB","AG","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","All counts may be low due to high water, glare, and algal coverage"
+"2013-08-19_YB-AGq1",2013-08-19,2013-08-19,"YB","AG","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-AGq2",2013-08-19,2013-08-19,"YB","AG","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","20%","Barnacles all very small (~1mm)"
+"2013-08-19_YB-AGq3",2013-08-19,2013-08-19,"YB","AG","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","20%",""
+"2013-08-19_YB-AGq4",2013-08-19,2013-08-19,"YB","AG","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts may be low due to high water, glare and algae"
+"2013-08-19_YB-AGq5",2013-08-19,2013-08-19,"YB","AG","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts may be low due to high water, glare and algae"
+"2013-08-19_YB-AGq6",2013-08-19,2013-08-19,"YB","AG","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-AGq7",2013-08-19,2013-08-19,"YB","AG","7","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water, glare, and algal coverage"
+"2013-08-19_YB-AGq8",2013-08-19,2013-08-19,"YB","AG","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","35%","All counts may be low due to high water, glare, and algal coverage"
+"2013-08-19_YB-AGq9",2013-08-19,2013-08-19,"YB","AG","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","All counts may be low due to high water, glare, and algal coverage"
+"2013-08-19_YB-AGq1",2013-08-19,2013-08-19,"YB","AG","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-AGq2",2013-08-19,2013-08-19,"YB","AG","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","20%","Barnacles all very small (~1mm)"
+"2013-08-19_YB-AGq3",2013-08-19,2013-08-19,"YB","AG","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","20%",""
+"2013-08-19_YB-AGq4",2013-08-19,2013-08-19,"YB","AG","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts may be low due to high water, glare and algae"
+"2013-08-19_YB-AGq5",2013-08-19,2013-08-19,"YB","AG","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts may be low due to high water, glare and algae"
+"2013-08-19_YB-AGq6",2013-08-19,2013-08-19,"YB","AG","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-AGq7",2013-08-19,2013-08-19,"YB","AG","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water, glare, and algal coverage"
+"2013-08-19_YB-AGq8",2013-08-19,2013-08-19,"YB","AG","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","35%","All counts may be low due to high water, glare, and algal coverage"
+"2013-08-19_YB-AGq9",2013-08-19,2013-08-19,"YB","AG","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","All counts may be low due to high water, glare, and algal coverage"
+"2013-08-19_YB-Bq1",2013-08-19,2013-08-19,"YB","B","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","About 1/8 of full photo, 1/4 of cropped is underwater and difficult to count; 3% mytilus byssal cover"
+"2013-08-19_YB-Bq2",2013-08-19,2013-08-19,"YB","B","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Counts likely low because of 13.1% mytilus byssal coverage and 8% underwater made counting difficult"
+"2013-08-19_YB-Bq3",2013-08-19,2013-08-19,"YB","B","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low because of 2.1% mytilus byssal coverage and 10% underwater made counting difficult"
+"2013-08-19_YB-Bq4",2013-08-19,2013-08-19,"YB","B","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low because of 5.4% mytilus byssal coverage made counting difficult"
+"2013-08-19_YB-Bq5",2013-08-19,2013-08-19,"YB","B","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","14%","Counts likely low because of 14.2% mytilus byssal coverage and 9.2% underwater made counting difficult"
+"2013-08-19_YB-Bq6",2013-08-19,2013-08-19,"YB","B","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low because of 2.9% mytilus byssal coverage and 5.6% underwater made counting difficult"
+"2013-08-19_YB-Bq7",2013-08-19,2013-08-19,"YB","B","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Counts likely low because of 2.9% mytilus byssal coverage made counting difficult"
+"2013-08-19_YB-Bq8",2013-08-19,2013-08-19,"YB","B","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low because of 1.7% mytilus byssal coverage made counting difficult"
+"2013-08-19_YB-Bq9",2013-08-19,2013-08-19,"YB","B","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2013-08-19_YB-Bq1",2013-08-19,2013-08-19,"YB","B","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","About 1/8 of full photo, 1/4 of cropped is underwater and difficult to count; 3% mytilus byssal cover"
+"2013-08-19_YB-Bq2",2013-08-19,2013-08-19,"YB","B","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Counts likely low because of 13.1% mytilus byssal coverage and 8% underwater made counting difficult"
+"2013-08-19_YB-Bq3",2013-08-19,2013-08-19,"YB","B","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low because of 2.1% mytilus byssal coverage and 10% underwater made counting difficult"
+"2013-08-19_YB-Bq4",2013-08-19,2013-08-19,"YB","B","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low because of 5.4% mytilus byssal coverage made counting difficult"
+"2013-08-19_YB-Bq5",2013-08-19,2013-08-19,"YB","B","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","14%","Counts likely low because of 14.2% mytilus byssal coverage and 9.2% underwater made counting difficult"
+"2013-08-19_YB-Bq6",2013-08-19,2013-08-19,"YB","B","6","Ae","Anemones","Type 14",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low because of 2.9% mytilus byssal coverage and 5.6% underwater made counting difficult"
+"2013-08-19_YB-Bq7",2013-08-19,2013-08-19,"YB","B","7","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Counts likely low because of 2.9% mytilus byssal coverage made counting difficult"
+"2013-08-19_YB-Bq8",2013-08-19,2013-08-19,"YB","B","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low because of 1.7% mytilus byssal coverage made counting difficult"
+"2013-08-19_YB-Bq9",2013-08-19,2013-08-19,"YB","B","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2013-08-19_YB-Bq1",2013-08-19,2013-08-19,"YB","B","1","Bg","Balanus_glandula","Type 1",1490,0.015625,95360,"c","Beatriz Vaca","Finished","Full","Cropped","0%","About 1/8 of full photo, 1/4 of cropped is underwater and difficult to count; 3% mytilus byssal cover"
+"2013-08-19_YB-Bq2",2013-08-19,2013-08-19,"YB","B","2","Bg","Balanus_glandula","Type 1",1797,0.015625,115008,"c","Beatriz Vaca","Finished","Full","Cropped","0%","Counts likely low because of 13.1% mytilus byssal coverage and 8% underwater made counting difficult"
+"2013-08-19_YB-Bq3",2013-08-19,2013-08-19,"YB","B","3","Bg","Balanus_glandula","Type 1",2491,0.015625,159424,"c","Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low because of 2.1% mytilus byssal coverage and 10% underwater made counting difficult"
+"2013-08-19_YB-Bq4",2013-08-19,2013-08-19,"YB","B","4","Bg","Balanus_glandula","Type 1",2502,0.015625,160128,"c","Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low because of 5.4% mytilus byssal coverage made counting difficult"
+"2013-08-19_YB-Bq5",2013-08-19,2013-08-19,"YB","B","5","Bg","Balanus_glandula","Type 1",1926,0.015625,123264,"c","Beatriz Vaca","Finished","Full","Cropped","14%","Counts likely low because of 14.2% mytilus byssal coverage and 9.2% underwater made counting difficult"
+"2013-08-19_YB-Bq6",2013-08-19,2013-08-19,"YB","B","6","Bg","Balanus_glandula","Type 1",2657,0.015625,170048,"c","Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low because of 2.9% mytilus byssal coverage and 5.6% underwater made counting difficult"
+"2013-08-19_YB-Bq7",2013-08-19,2013-08-19,"YB","B","7","Bg","Balanus_glandula","Type 1",2866,0.015625,183424,"c","Beatriz Vaca","Finished","Full","Cropped","0%","Counts likely low because of 2.9% mytilus byssal coverage made counting difficult"
+"2013-08-19_YB-Bq8",2013-08-19,2013-08-19,"YB","B","8","Bg","Balanus_glandula","Type 1",2778,0.015625,177792,"c","Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low because of 1.7% mytilus byssal coverage made counting difficult"
+"2013-08-19_YB-Bq9",2013-08-19,2013-08-19,"YB","B","9","Bg","Balanus_glandula","Type 1",3126,0.015625,200064,"c","Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2013-08-19_YB-Bq1",2013-08-19,2013-08-19,"YB","B","1","BgD","Balanus_glandula_(dead)","Type 2",21,0.015625,1344,"c","Beatriz Vaca","Finished","Full","Cropped","0%","About 1/8 of full photo, 1/4 of cropped is underwater and difficult to count; 3% mytilus byssal cover"
+"2013-08-19_YB-Bq2",2013-08-19,2013-08-19,"YB","B","2","BgD","Balanus_glandula_(dead)","Type 2",7,0.015625,448,"c","Beatriz Vaca","Finished","Full","Cropped","0%","Counts likely low because of 13.1% mytilus byssal coverage and 8% underwater made counting difficult"
+"2013-08-19_YB-Bq3",2013-08-19,2013-08-19,"YB","B","3","BgD","Balanus_glandula_(dead)","Type 2",6,0.015625,384,"c","Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low because of 2.1% mytilus byssal coverage and 10% underwater made counting difficult"
+"2013-08-19_YB-Bq4",2013-08-19,2013-08-19,"YB","B","4","BgD","Balanus_glandula_(dead)","Type 2",1,0.015625,64,"c","Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low because of 5.4% mytilus byssal coverage made counting difficult"
+"2013-08-19_YB-Bq5",2013-08-19,2013-08-19,"YB","B","5","BgD","Balanus_glandula_(dead)","Type 2",19,0.015625,1216,"c","Beatriz Vaca","Finished","Full","Cropped","14%","Counts likely low because of 14.2% mytilus byssal coverage and 9.2% underwater made counting difficult"
+"2013-08-19_YB-Bq6",2013-08-19,2013-08-19,"YB","B","6","BgD","Balanus_glandula_(dead)","Type 2",17,0.015625,1088,"c","Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low because of 2.9% mytilus byssal coverage and 5.6% underwater made counting difficult"
+"2013-08-19_YB-Bq7",2013-08-19,2013-08-19,"YB","B","7","BgD","Balanus_glandula_(dead)","Type 2",14,0.015625,896,"c","Beatriz Vaca","Finished","Full","Cropped","0%","Counts likely low because of 2.9% mytilus byssal coverage made counting difficult"
+"2013-08-19_YB-Bq8",2013-08-19,2013-08-19,"YB","B","8","BgD","Balanus_glandula_(dead)","Type 2",61,0.015625,3904,"c","Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low because of 1.7% mytilus byssal coverage made counting difficult"
+"2013-08-19_YB-Bq9",2013-08-19,2013-08-19,"YB","B","9","BgD","Balanus_glandula_(dead)","Type 2",27,0.015625,1728,"c","Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2013-08-19_YB-Bq1",2013-08-19,2013-08-19,"YB","B","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","About 1/8 of full photo, 1/4 of cropped is underwater and difficult to count; 3% mytilus byssal cover"
+"2013-08-19_YB-Bq2",2013-08-19,2013-08-19,"YB","B","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Counts likely low because of 13.1% mytilus byssal coverage and 8% underwater made counting difficult"
+"2013-08-19_YB-Bq3",2013-08-19,2013-08-19,"YB","B","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low because of 2.1% mytilus byssal coverage and 10% underwater made counting difficult"
+"2013-08-19_YB-Bq4",2013-08-19,2013-08-19,"YB","B","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low because of 5.4% mytilus byssal coverage made counting difficult"
+"2013-08-19_YB-Bq5",2013-08-19,2013-08-19,"YB","B","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","14%","Counts likely low because of 14.2% mytilus byssal coverage and 9.2% underwater made counting difficult"
+"2013-08-19_YB-Bq6",2013-08-19,2013-08-19,"YB","B","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low because of 2.9% mytilus byssal coverage and 5.6% underwater made counting difficult"
+"2013-08-19_YB-Bq7",2013-08-19,2013-08-19,"YB","B","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Counts likely low because of 2.9% mytilus byssal coverage made counting difficult"
+"2013-08-19_YB-Bq8",2013-08-19,2013-08-19,"YB","B","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low because of 1.7% mytilus byssal coverage made counting difficult"
+"2013-08-19_YB-Bq9",2013-08-19,2013-08-19,"YB","B","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2013-08-19_YB-Bq1",2013-08-19,2013-08-19,"YB","B","1","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","0%","About 1/8 of full photo, 1/4 of cropped is underwater and difficult to count; 3% mytilus byssal cover"
+"2013-08-19_YB-Bq2",2013-08-19,2013-08-19,"YB","B","2","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","0%","Counts likely low because of 13.1% mytilus byssal coverage and 8% underwater made counting difficult"
+"2013-08-19_YB-Bq3",2013-08-19,2013-08-19,"YB","B","3","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low because of 2.1% mytilus byssal coverage and 10% underwater made counting difficult"
+"2013-08-19_YB-Bq4",2013-08-19,2013-08-19,"YB","B","4","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low because of 5.4% mytilus byssal coverage made counting difficult"
+"2013-08-19_YB-Bq5",2013-08-19,2013-08-19,"YB","B","5","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","14%","Counts likely low because of 14.2% mytilus byssal coverage and 9.2% underwater made counting difficult"
+"2013-08-19_YB-Bq6",2013-08-19,2013-08-19,"YB","B","6","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low because of 2.9% mytilus byssal coverage and 5.6% underwater made counting difficult"
+"2013-08-19_YB-Bq7",2013-08-19,2013-08-19,"YB","B","7","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","0%","Counts likely low because of 2.9% mytilus byssal coverage made counting difficult"
+"2013-08-19_YB-Bq8",2013-08-19,2013-08-19,"YB","B","8","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low because of 1.7% mytilus byssal coverage made counting difficult"
+"2013-08-19_YB-Bq9",2013-08-19,2013-08-19,"YB","B","9","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2013-08-19_YB-Bq1",2013-08-19,2013-08-19,"YB","B","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","0%","About 1/8 of full photo, 1/4 of cropped is underwater and difficult to count; 3% mytilus byssal cover"
+"2013-08-19_YB-Bq2",2013-08-19,2013-08-19,"YB","B","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","0%","Counts likely low because of 13.1% mytilus byssal coverage and 8% underwater made counting difficult"
+"2013-08-19_YB-Bq3",2013-08-19,2013-08-19,"YB","B","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low because of 2.1% mytilus byssal coverage and 10% underwater made counting difficult"
+"2013-08-19_YB-Bq4",2013-08-19,2013-08-19,"YB","B","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low because of 5.4% mytilus byssal coverage made counting difficult"
+"2013-08-19_YB-Bq5",2013-08-19,2013-08-19,"YB","B","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","14%","Counts likely low because of 14.2% mytilus byssal coverage and 9.2% underwater made counting difficult"
+"2013-08-19_YB-Bq6",2013-08-19,2013-08-19,"YB","B","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low because of 2.9% mytilus byssal coverage and 5.6% underwater made counting difficult"
+"2013-08-19_YB-Bq7",2013-08-19,2013-08-19,"YB","B","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","0%","Counts likely low because of 2.9% mytilus byssal coverage made counting difficult"
+"2013-08-19_YB-Bq8",2013-08-19,2013-08-19,"YB","B","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low because of 1.7% mytilus byssal coverage made counting difficult"
+"2013-08-19_YB-Bq9",2013-08-19,2013-08-19,"YB","B","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2013-08-19_YB-Bq1",2013-08-19,2013-08-19,"YB","B","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","About 1/8 of full photo, 1/4 of cropped is underwater and difficult to count; 3% mytilus byssal cover"
+"2013-08-19_YB-Bq2",2013-08-19,2013-08-19,"YB","B","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Counts likely low because of 13.1% mytilus byssal coverage and 8% underwater made counting difficult"
+"2013-08-19_YB-Bq3",2013-08-19,2013-08-19,"YB","B","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low because of 2.1% mytilus byssal coverage and 10% underwater made counting difficult"
+"2013-08-19_YB-Bq4",2013-08-19,2013-08-19,"YB","B","4","Emp","Emplectonema worm","Type 23",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low because of 5.4% mytilus byssal coverage made counting difficult"
+"2013-08-19_YB-Bq5",2013-08-19,2013-08-19,"YB","B","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","14%","Counts likely low because of 14.2% mytilus byssal coverage and 9.2% underwater made counting difficult"
+"2013-08-19_YB-Bq6",2013-08-19,2013-08-19,"YB","B","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low because of 2.9% mytilus byssal coverage and 5.6% underwater made counting difficult"
+"2013-08-19_YB-Bq7",2013-08-19,2013-08-19,"YB","B","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Counts likely low because of 2.9% mytilus byssal coverage made counting difficult"
+"2013-08-19_YB-Bq8",2013-08-19,2013-08-19,"YB","B","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low because of 1.7% mytilus byssal coverage made counting difficult"
+"2013-08-19_YB-Bq9",2013-08-19,2013-08-19,"YB","B","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2013-08-19_YB-Bq1",2013-08-19,2013-08-19,"YB","B","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","About 1/8 of full photo, 1/4 of cropped is underwater and difficult to count; 3% mytilus byssal cover"
+"2013-08-19_YB-Bq2",2013-08-19,2013-08-19,"YB","B","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Counts likely low because of 13.1% mytilus byssal coverage and 8% underwater made counting difficult"
+"2013-08-19_YB-Bq3",2013-08-19,2013-08-19,"YB","B","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low because of 2.1% mytilus byssal coverage and 10% underwater made counting difficult"
+"2013-08-19_YB-Bq4",2013-08-19,2013-08-19,"YB","B","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low because of 5.4% mytilus byssal coverage made counting difficult"
+"2013-08-19_YB-Bq5",2013-08-19,2013-08-19,"YB","B","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","14%","Counts likely low because of 14.2% mytilus byssal coverage and 9.2% underwater made counting difficult"
+"2013-08-19_YB-Bq6",2013-08-19,2013-08-19,"YB","B","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low because of 2.9% mytilus byssal coverage and 5.6% underwater made counting difficult"
+"2013-08-19_YB-Bq7",2013-08-19,2013-08-19,"YB","B","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Counts likely low because of 2.9% mytilus byssal coverage made counting difficult"
+"2013-08-19_YB-Bq8",2013-08-19,2013-08-19,"YB","B","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low because of 1.7% mytilus byssal coverage made counting difficult"
+"2013-08-19_YB-Bq9",2013-08-19,2013-08-19,"YB","B","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2013-08-19_YB-Bq1",2013-08-19,2013-08-19,"YB","B","1","Lim","Limpets","Type 12",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","About 1/8 of full photo, 1/4 of cropped is underwater and difficult to count; 3% mytilus byssal cover"
+"2013-08-19_YB-Bq2",2013-08-19,2013-08-19,"YB","B","2","Lim","Limpets","Type 12",15,0.0875,171.428571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Counts likely low because of 13.1% mytilus byssal coverage and 8% underwater made counting difficult"
+"2013-08-19_YB-Bq3",2013-08-19,2013-08-19,"YB","B","3","Lim","Limpets","Type 12",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low because of 2.1% mytilus byssal coverage and 10% underwater made counting difficult"
+"2013-08-19_YB-Bq4",2013-08-19,2013-08-19,"YB","B","4","Lim","Limpets","Type 12",15,0.0875,171.428571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low because of 5.4% mytilus byssal coverage made counting difficult"
+"2013-08-19_YB-Bq5",2013-08-19,2013-08-19,"YB","B","5","Lim","Limpets","Type 12",13,0.0875,148.571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","14%","Counts likely low because of 14.2% mytilus byssal coverage and 9.2% underwater made counting difficult"
+"2013-08-19_YB-Bq6",2013-08-19,2013-08-19,"YB","B","6","Lim","Limpets","Type 12",16,0.0875,182.857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low because of 2.9% mytilus byssal coverage and 5.6% underwater made counting difficult"
+"2013-08-19_YB-Bq7",2013-08-19,2013-08-19,"YB","B","7","Lim","Limpets","Type 12",35,0.0875,400,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Counts likely low because of 2.9% mytilus byssal coverage made counting difficult"
+"2013-08-19_YB-Bq8",2013-08-19,2013-08-19,"YB","B","8","Lim","Limpets","Type 12",50,0.0875,571.428571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low because of 1.7% mytilus byssal coverage made counting difficult"
+"2013-08-19_YB-Bq9",2013-08-19,2013-08-19,"YB","B","9","Lim","Limpets","Type 12",64,0.0875,731.428571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2013-08-19_YB-Bq1",2013-08-19,2013-08-19,"YB","B","1","Ls","Littorina_sitkana","Type 13",10,0.0875,114.285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","About 1/8 of full photo, 1/4 of cropped is underwater and difficult to count; 3% mytilus byssal cover"
+"2013-08-19_YB-Bq2",2013-08-19,2013-08-19,"YB","B","2","Ls","Littorina_sitkana","Type 13",19,0.0875,217.142857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Counts likely low because of 13.1% mytilus byssal coverage and 8% underwater made counting difficult"
+"2013-08-19_YB-Bq3",2013-08-19,2013-08-19,"YB","B","3","Ls","Littorina_sitkana","Type 13",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low because of 2.1% mytilus byssal coverage and 10% underwater made counting difficult"
+"2013-08-19_YB-Bq4",2013-08-19,2013-08-19,"YB","B","4","Ls","Littorina_sitkana","Type 13",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low because of 5.4% mytilus byssal coverage made counting difficult"
+"2013-08-19_YB-Bq5",2013-08-19,2013-08-19,"YB","B","5","Ls","Littorina_sitkana","Type 13",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","14%","Counts likely low because of 14.2% mytilus byssal coverage and 9.2% underwater made counting difficult"
+"2013-08-19_YB-Bq6",2013-08-19,2013-08-19,"YB","B","6","Ls","Littorina_sitkana","Type 13",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low because of 2.9% mytilus byssal coverage and 5.6% underwater made counting difficult"
+"2013-08-19_YB-Bq7",2013-08-19,2013-08-19,"YB","B","7","Ls","Littorina_sitkana","Type 13",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Counts likely low because of 2.9% mytilus byssal coverage made counting difficult"
+"2013-08-19_YB-Bq8",2013-08-19,2013-08-19,"YB","B","8","Ls","Littorina_sitkana","Type 13",13,0.0875,148.571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low because of 1.7% mytilus byssal coverage made counting difficult"
+"2013-08-19_YB-Bq9",2013-08-19,2013-08-19,"YB","B","9","Ls","Littorina_sitkana","Type 13",11,0.0875,125.714285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2013-08-19_YB-Bq1",2013-08-19,2013-08-19,"YB","B","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","About 1/8 of full photo, 1/4 of cropped is underwater and difficult to count; 3% mytilus byssal cover"
+"2013-08-19_YB-Bq2",2013-08-19,2013-08-19,"YB","B","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Counts likely low because of 13.1% mytilus byssal coverage and 8% underwater made counting difficult"
+"2013-08-19_YB-Bq3",2013-08-19,2013-08-19,"YB","B","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low because of 2.1% mytilus byssal coverage and 10% underwater made counting difficult"
+"2013-08-19_YB-Bq4",2013-08-19,2013-08-19,"YB","B","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low because of 5.4% mytilus byssal coverage made counting difficult"
+"2013-08-19_YB-Bq5",2013-08-19,2013-08-19,"YB","B","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","14%","Counts likely low because of 14.2% mytilus byssal coverage and 9.2% underwater made counting difficult"
+"2013-08-19_YB-Bq6",2013-08-19,2013-08-19,"YB","B","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low because of 2.9% mytilus byssal coverage and 5.6% underwater made counting difficult"
+"2013-08-19_YB-Bq7",2013-08-19,2013-08-19,"YB","B","7","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Counts likely low because of 2.9% mytilus byssal coverage made counting difficult"
+"2013-08-19_YB-Bq8",2013-08-19,2013-08-19,"YB","B","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low because of 1.7% mytilus byssal coverage made counting difficult"
+"2013-08-19_YB-Bq9",2013-08-19,2013-08-19,"YB","B","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2013-08-19_YB-Bq1",2013-08-19,2013-08-19,"YB","B","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","About 1/8 of full photo, 1/4 of cropped is underwater and difficult to count; 3% mytilus byssal cover"
+"2013-08-19_YB-Bq2",2013-08-19,2013-08-19,"YB","B","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Counts likely low because of 13.1% mytilus byssal coverage and 8% underwater made counting difficult"
+"2013-08-19_YB-Bq3",2013-08-19,2013-08-19,"YB","B","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low because of 2.1% mytilus byssal coverage and 10% underwater made counting difficult"
+"2013-08-19_YB-Bq4",2013-08-19,2013-08-19,"YB","B","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low because of 5.4% mytilus byssal coverage made counting difficult"
+"2013-08-19_YB-Bq5",2013-08-19,2013-08-19,"YB","B","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","14%","Counts likely low because of 14.2% mytilus byssal coverage and 9.2% underwater made counting difficult"
+"2013-08-19_YB-Bq6",2013-08-19,2013-08-19,"YB","B","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low because of 2.9% mytilus byssal coverage and 5.6% underwater made counting difficult"
+"2013-08-19_YB-Bq7",2013-08-19,2013-08-19,"YB","B","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Counts likely low because of 2.9% mytilus byssal coverage made counting difficult"
+"2013-08-19_YB-Bq8",2013-08-19,2013-08-19,"YB","B","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low because of 1.7% mytilus byssal coverage made counting difficult"
+"2013-08-19_YB-Bq9",2013-08-19,2013-08-19,"YB","B","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2013-08-19_YB-Bq1",2013-08-19,2013-08-19,"YB","B","1","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","About 1/8 of full photo, 1/4 of cropped is underwater and difficult to count; 3% mytilus byssal cover"
+"2013-08-19_YB-Bq2",2013-08-19,2013-08-19,"YB","B","2","Myt","Mytilus_spp","Type 7",27,0.0875,308.571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Counts likely low because of 13.1% mytilus byssal coverage and 8% underwater made counting difficult"
+"2013-08-19_YB-Bq3",2013-08-19,2013-08-19,"YB","B","3","Myt","Mytilus_spp","Type 7",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low because of 2.1% mytilus byssal coverage and 10% underwater made counting difficult"
+"2013-08-19_YB-Bq4",2013-08-19,2013-08-19,"YB","B","4","Myt","Mytilus_spp","Type 7",40,0.0875,457.142857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low because of 5.4% mytilus byssal coverage made counting difficult"
+"2013-08-19_YB-Bq5",2013-08-19,2013-08-19,"YB","B","5","Myt","Mytilus_spp","Type 7",65,0.0875,742.857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","14%","Counts likely low because of 14.2% mytilus byssal coverage and 9.2% underwater made counting difficult"
+"2013-08-19_YB-Bq6",2013-08-19,2013-08-19,"YB","B","6","Myt","Mytilus_spp","Type 7",15,0.0875,171.428571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low because of 2.9% mytilus byssal coverage and 5.6% underwater made counting difficult"
+"2013-08-19_YB-Bq7",2013-08-19,2013-08-19,"YB","B","7","Myt","Mytilus_spp","Type 7",31,0.0875,354.285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Counts likely low because of 2.9% mytilus byssal coverage made counting difficult"
+"2013-08-19_YB-Bq8",2013-08-19,2013-08-19,"YB","B","8","Myt","Mytilus_spp","Type 7",10,0.0875,114.285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low because of 1.7% mytilus byssal coverage made counting difficult"
+"2013-08-19_YB-Bq9",2013-08-19,2013-08-19,"YB","B","9","Myt","Mytilus_spp","Type 7",31,0.0875,354.285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2013-08-19_YB-Bq1",2013-08-19,2013-08-19,"YB","B","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","About 1/8 of full photo, 1/4 of cropped is underwater and difficult to count; 3% mytilus byssal cover"
+"2013-08-19_YB-Bq2",2013-08-19,2013-08-19,"YB","B","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Counts likely low because of 13.1% mytilus byssal coverage and 8% underwater made counting difficult"
+"2013-08-19_YB-Bq3",2013-08-19,2013-08-19,"YB","B","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low because of 2.1% mytilus byssal coverage and 10% underwater made counting difficult"
+"2013-08-19_YB-Bq4",2013-08-19,2013-08-19,"YB","B","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low because of 5.4% mytilus byssal coverage made counting difficult"
+"2013-08-19_YB-Bq5",2013-08-19,2013-08-19,"YB","B","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","14%","Counts likely low because of 14.2% mytilus byssal coverage and 9.2% underwater made counting difficult"
+"2013-08-19_YB-Bq6",2013-08-19,2013-08-19,"YB","B","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low because of 2.9% mytilus byssal coverage and 5.6% underwater made counting difficult"
+"2013-08-19_YB-Bq7",2013-08-19,2013-08-19,"YB","B","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Counts likely low because of 2.9% mytilus byssal coverage made counting difficult"
+"2013-08-19_YB-Bq8",2013-08-19,2013-08-19,"YB","B","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low because of 1.7% mytilus byssal coverage made counting difficult"
+"2013-08-19_YB-Bq9",2013-08-19,2013-08-19,"YB","B","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2013-08-19_YB-Bq1",2013-08-19,2013-08-19,"YB","B","1","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","About 1/8 of full photo, 1/4 of cropped is underwater and difficult to count; 3% mytilus byssal cover"
+"2013-08-19_YB-Bq2",2013-08-19,2013-08-19,"YB","B","2","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Counts likely low because of 13.1% mytilus byssal coverage and 8% underwater made counting difficult"
+"2013-08-19_YB-Bq3",2013-08-19,2013-08-19,"YB","B","3","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low because of 2.1% mytilus byssal coverage and 10% underwater made counting difficult"
+"2013-08-19_YB-Bq4",2013-08-19,2013-08-19,"YB","B","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low because of 5.4% mytilus byssal coverage made counting difficult"
+"2013-08-19_YB-Bq5",2013-08-19,2013-08-19,"YB","B","5","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","14%","Counts likely low because of 14.2% mytilus byssal coverage and 9.2% underwater made counting difficult"
+"2013-08-19_YB-Bq6",2013-08-19,2013-08-19,"YB","B","6","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low because of 2.9% mytilus byssal coverage and 5.6% underwater made counting difficult"
+"2013-08-19_YB-Bq7",2013-08-19,2013-08-19,"YB","B","7","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Counts likely low because of 2.9% mytilus byssal coverage made counting difficult"
+"2013-08-19_YB-Bq8",2013-08-19,2013-08-19,"YB","B","8","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low because of 1.7% mytilus byssal coverage made counting difficult"
+"2013-08-19_YB-Bq9",2013-08-19,2013-08-19,"YB","B","9","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2013-08-19_YB-Bq1",2013-08-19,2013-08-19,"YB","B","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","About 1/8 of full photo, 1/4 of cropped is underwater and difficult to count; 3% mytilus byssal cover"
+"2013-08-19_YB-Bq2",2013-08-19,2013-08-19,"YB","B","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Counts likely low because of 13.1% mytilus byssal coverage and 8% underwater made counting difficult"
+"2013-08-19_YB-Bq3",2013-08-19,2013-08-19,"YB","B","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low because of 2.1% mytilus byssal coverage and 10% underwater made counting difficult"
+"2013-08-19_YB-Bq4",2013-08-19,2013-08-19,"YB","B","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low because of 5.4% mytilus byssal coverage made counting difficult"
+"2013-08-19_YB-Bq5",2013-08-19,2013-08-19,"YB","B","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","14%","Counts likely low because of 14.2% mytilus byssal coverage and 9.2% underwater made counting difficult"
+"2013-08-19_YB-Bq6",2013-08-19,2013-08-19,"YB","B","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low because of 2.9% mytilus byssal coverage and 5.6% underwater made counting difficult"
+"2013-08-19_YB-Bq7",2013-08-19,2013-08-19,"YB","B","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Counts likely low because of 2.9% mytilus byssal coverage made counting difficult"
+"2013-08-19_YB-Bq8",2013-08-19,2013-08-19,"YB","B","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low because of 1.7% mytilus byssal coverage made counting difficult"
+"2013-08-19_YB-Bq9",2013-08-19,2013-08-19,"YB","B","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2013-08-19_YB-Bq1",2013-08-19,2013-08-19,"YB","B","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","About 1/8 of full photo, 1/4 of cropped is underwater and difficult to count; 3% mytilus byssal cover"
+"2013-08-19_YB-Bq2",2013-08-19,2013-08-19,"YB","B","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Counts likely low because of 13.1% mytilus byssal coverage and 8% underwater made counting difficult"
+"2013-08-19_YB-Bq3",2013-08-19,2013-08-19,"YB","B","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low because of 2.1% mytilus byssal coverage and 10% underwater made counting difficult"
+"2013-08-19_YB-Bq4",2013-08-19,2013-08-19,"YB","B","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low because of 5.4% mytilus byssal coverage made counting difficult"
+"2013-08-19_YB-Bq5",2013-08-19,2013-08-19,"YB","B","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","14%","Counts likely low because of 14.2% mytilus byssal coverage and 9.2% underwater made counting difficult"
+"2013-08-19_YB-Bq6",2013-08-19,2013-08-19,"YB","B","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low because of 2.9% mytilus byssal coverage and 5.6% underwater made counting difficult"
+"2013-08-19_YB-Bq7",2013-08-19,2013-08-19,"YB","B","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Counts likely low because of 2.9% mytilus byssal coverage made counting difficult"
+"2013-08-19_YB-Bq8",2013-08-19,2013-08-19,"YB","B","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low because of 1.7% mytilus byssal coverage made counting difficult"
+"2013-08-19_YB-Bq9",2013-08-19,2013-08-19,"YB","B","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2013-08-19_YB-Bq1",2013-08-19,2013-08-19,"YB","B","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","About 1/8 of full photo, 1/4 of cropped is underwater and difficult to count; 3% mytilus byssal cover"
+"2013-08-19_YB-Bq2",2013-08-19,2013-08-19,"YB","B","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Counts likely low because of 13.1% mytilus byssal coverage and 8% underwater made counting difficult"
+"2013-08-19_YB-Bq3",2013-08-19,2013-08-19,"YB","B","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low because of 2.1% mytilus byssal coverage and 10% underwater made counting difficult"
+"2013-08-19_YB-Bq4",2013-08-19,2013-08-19,"YB","B","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low because of 5.4% mytilus byssal coverage made counting difficult"
+"2013-08-19_YB-Bq5",2013-08-19,2013-08-19,"YB","B","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","14%","Counts likely low because of 14.2% mytilus byssal coverage and 9.2% underwater made counting difficult"
+"2013-08-19_YB-Bq6",2013-08-19,2013-08-19,"YB","B","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low because of 2.9% mytilus byssal coverage and 5.6% underwater made counting difficult"
+"2013-08-19_YB-Bq7",2013-08-19,2013-08-19,"YB","B","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Counts likely low because of 2.9% mytilus byssal coverage made counting difficult"
+"2013-08-19_YB-Bq8",2013-08-19,2013-08-19,"YB","B","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low because of 1.7% mytilus byssal coverage made counting difficult"
+"2013-08-19_YB-Bq9",2013-08-19,2013-08-19,"YB","B","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2013-08-19_YB-Bq1",2013-08-19,2013-08-19,"YB","B","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","About 1/8 of full photo, 1/4 of cropped is underwater and difficult to count; 3% mytilus byssal cover"
+"2013-08-19_YB-Bq2",2013-08-19,2013-08-19,"YB","B","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Counts likely low because of 13.1% mytilus byssal coverage and 8% underwater made counting difficult"
+"2013-08-19_YB-Bq3",2013-08-19,2013-08-19,"YB","B","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low because of 2.1% mytilus byssal coverage and 10% underwater made counting difficult"
+"2013-08-19_YB-Bq4",2013-08-19,2013-08-19,"YB","B","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low because of 5.4% mytilus byssal coverage made counting difficult"
+"2013-08-19_YB-Bq5",2013-08-19,2013-08-19,"YB","B","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","14%","Counts likely low because of 14.2% mytilus byssal coverage and 9.2% underwater made counting difficult"
+"2013-08-19_YB-Bq6",2013-08-19,2013-08-19,"YB","B","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low because of 2.9% mytilus byssal coverage and 5.6% underwater made counting difficult"
+"2013-08-19_YB-Bq7",2013-08-19,2013-08-19,"YB","B","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Counts likely low because of 2.9% mytilus byssal coverage made counting difficult"
+"2013-08-19_YB-Bq8",2013-08-19,2013-08-19,"YB","B","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low because of 1.7% mytilus byssal coverage made counting difficult"
+"2013-08-19_YB-Bq9",2013-08-19,2013-08-19,"YB","B","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2013-08-19_YB-Bq1",2013-08-19,2013-08-19,"YB","B","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","About 1/8 of full photo, 1/4 of cropped is underwater and difficult to count; 3% mytilus byssal cover"
+"2013-08-19_YB-Bq2",2013-08-19,2013-08-19,"YB","B","2","No","Nucella_ostrina","Type 9",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Counts likely low because of 13.1% mytilus byssal coverage and 8% underwater made counting difficult"
+"2013-08-19_YB-Bq3",2013-08-19,2013-08-19,"YB","B","3","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low because of 2.1% mytilus byssal coverage and 10% underwater made counting difficult"
+"2013-08-19_YB-Bq4",2013-08-19,2013-08-19,"YB","B","4","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low because of 5.4% mytilus byssal coverage made counting difficult"
+"2013-08-19_YB-Bq5",2013-08-19,2013-08-19,"YB","B","5","No","Nucella_ostrina","Type 9",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","14%","Counts likely low because of 14.2% mytilus byssal coverage and 9.2% underwater made counting difficult"
+"2013-08-19_YB-Bq6",2013-08-19,2013-08-19,"YB","B","6","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low because of 2.9% mytilus byssal coverage and 5.6% underwater made counting difficult"
+"2013-08-19_YB-Bq7",2013-08-19,2013-08-19,"YB","B","7","No","Nucella_ostrina","Type 9",53,0.0875,605.714285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Counts likely low because of 2.9% mytilus byssal coverage made counting difficult"
+"2013-08-19_YB-Bq8",2013-08-19,2013-08-19,"YB","B","8","No","Nucella_ostrina","Type 9",12,0.0875,137.142857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low because of 1.7% mytilus byssal coverage made counting difficult"
+"2013-08-19_YB-Bq9",2013-08-19,2013-08-19,"YB","B","9","No","Nucella_ostrina","Type 9",28,0.0875,320,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2013-08-19_YB-Bq1",2013-08-19,2013-08-19,"YB","B","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","About 1/8 of full photo, 1/4 of cropped is underwater and difficult to count; 3% mytilus byssal cover"
+"2013-08-19_YB-Bq2",2013-08-19,2013-08-19,"YB","B","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Counts likely low because of 13.1% mytilus byssal coverage and 8% underwater made counting difficult"
+"2013-08-19_YB-Bq3",2013-08-19,2013-08-19,"YB","B","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low because of 2.1% mytilus byssal coverage and 10% underwater made counting difficult"
+"2013-08-19_YB-Bq4",2013-08-19,2013-08-19,"YB","B","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low because of 5.4% mytilus byssal coverage made counting difficult"
+"2013-08-19_YB-Bq5",2013-08-19,2013-08-19,"YB","B","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","14%","Counts likely low because of 14.2% mytilus byssal coverage and 9.2% underwater made counting difficult"
+"2013-08-19_YB-Bq6",2013-08-19,2013-08-19,"YB","B","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low because of 2.9% mytilus byssal coverage and 5.6% underwater made counting difficult"
+"2013-08-19_YB-Bq7",2013-08-19,2013-08-19,"YB","B","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Counts likely low because of 2.9% mytilus byssal coverage made counting difficult"
+"2013-08-19_YB-Bq8",2013-08-19,2013-08-19,"YB","B","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low because of 1.7% mytilus byssal coverage made counting difficult"
+"2013-08-19_YB-Bq9",2013-08-19,2013-08-19,"YB","B","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2013-08-19_YB-Bq1",2013-08-19,2013-08-19,"YB","B","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","About 1/8 of full photo, 1/4 of cropped is underwater and difficult to count; 3% mytilus byssal cover"
+"2013-08-19_YB-Bq2",2013-08-19,2013-08-19,"YB","B","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Counts likely low because of 13.1% mytilus byssal coverage and 8% underwater made counting difficult"
+"2013-08-19_YB-Bq3",2013-08-19,2013-08-19,"YB","B","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low because of 2.1% mytilus byssal coverage and 10% underwater made counting difficult"
+"2013-08-19_YB-Bq4",2013-08-19,2013-08-19,"YB","B","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low because of 5.4% mytilus byssal coverage made counting difficult"
+"2013-08-19_YB-Bq5",2013-08-19,2013-08-19,"YB","B","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","14%","Counts likely low because of 14.2% mytilus byssal coverage and 9.2% underwater made counting difficult"
+"2013-08-19_YB-Bq6",2013-08-19,2013-08-19,"YB","B","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low because of 2.9% mytilus byssal coverage and 5.6% underwater made counting difficult"
+"2013-08-19_YB-Bq7",2013-08-19,2013-08-19,"YB","B","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Counts likely low because of 2.9% mytilus byssal coverage made counting difficult"
+"2013-08-19_YB-Bq8",2013-08-19,2013-08-19,"YB","B","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low because of 1.7% mytilus byssal coverage made counting difficult"
+"2013-08-19_YB-Bq9",2013-08-19,2013-08-19,"YB","B","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2013-08-19_YB-Bq1",2013-08-19,2013-08-19,"YB","B","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","About 1/8 of full photo, 1/4 of cropped is underwater and difficult to count; 3% mytilus byssal cover"
+"2013-08-19_YB-Bq2",2013-08-19,2013-08-19,"YB","B","2","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Counts likely low because of 13.1% mytilus byssal coverage and 8% underwater made counting difficult"
+"2013-08-19_YB-Bq3",2013-08-19,2013-08-19,"YB","B","3","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low because of 2.1% mytilus byssal coverage and 10% underwater made counting difficult"
+"2013-08-19_YB-Bq4",2013-08-19,2013-08-19,"YB","B","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low because of 5.4% mytilus byssal coverage made counting difficult"
+"2013-08-19_YB-Bq5",2013-08-19,2013-08-19,"YB","B","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","14%","Counts likely low because of 14.2% mytilus byssal coverage and 9.2% underwater made counting difficult"
+"2013-08-19_YB-Bq6",2013-08-19,2013-08-19,"YB","B","6","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low because of 2.9% mytilus byssal coverage and 5.6% underwater made counting difficult"
+"2013-08-19_YB-Bq7",2013-08-19,2013-08-19,"YB","B","7","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Counts likely low because of 2.9% mytilus byssal coverage made counting difficult"
+"2013-08-19_YB-Bq8",2013-08-19,2013-08-19,"YB","B","8","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low because of 1.7% mytilus byssal coverage made counting difficult"
+"2013-08-19_YB-Bq9",2013-08-19,2013-08-19,"YB","B","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2013-08-19_YB-Bq1",2013-08-19,2013-08-19,"YB","B","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","About 1/8 of full photo, 1/4 of cropped is underwater and difficult to count; 3% mytilus byssal cover"
+"2013-08-19_YB-Bq2",2013-08-19,2013-08-19,"YB","B","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Counts likely low because of 13.1% mytilus byssal coverage and 8% underwater made counting difficult"
+"2013-08-19_YB-Bq3",2013-08-19,2013-08-19,"YB","B","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low because of 2.1% mytilus byssal coverage and 10% underwater made counting difficult"
+"2013-08-19_YB-Bq4",2013-08-19,2013-08-19,"YB","B","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low because of 5.4% mytilus byssal coverage made counting difficult"
+"2013-08-19_YB-Bq5",2013-08-19,2013-08-19,"YB","B","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","14%","Counts likely low because of 14.2% mytilus byssal coverage and 9.2% underwater made counting difficult"
+"2013-08-19_YB-Bq6",2013-08-19,2013-08-19,"YB","B","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low because of 2.9% mytilus byssal coverage and 5.6% underwater made counting difficult"
+"2013-08-19_YB-Bq7",2013-08-19,2013-08-19,"YB","B","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Counts likely low because of 2.9% mytilus byssal coverage made counting difficult"
+"2013-08-19_YB-Bq8",2013-08-19,2013-08-19,"YB","B","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low because of 1.7% mytilus byssal coverage made counting difficult"
+"2013-08-19_YB-Bq9",2013-08-19,2013-08-19,"YB","B","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2013-08-19_YB-Bq1",2013-08-19,2013-08-19,"YB","B","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","About 1/8 of full photo, 1/4 of cropped is underwater and difficult to count; 3% mytilus byssal cover"
+"2013-08-19_YB-Bq2",2013-08-19,2013-08-19,"YB","B","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Counts likely low because of 13.1% mytilus byssal coverage and 8% underwater made counting difficult"
+"2013-08-19_YB-Bq3",2013-08-19,2013-08-19,"YB","B","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low because of 2.1% mytilus byssal coverage and 10% underwater made counting difficult"
+"2013-08-19_YB-Bq4",2013-08-19,2013-08-19,"YB","B","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low because of 5.4% mytilus byssal coverage made counting difficult"
+"2013-08-19_YB-Bq5",2013-08-19,2013-08-19,"YB","B","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","14%","Counts likely low because of 14.2% mytilus byssal coverage and 9.2% underwater made counting difficult"
+"2013-08-19_YB-Bq6",2013-08-19,2013-08-19,"YB","B","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low because of 2.9% mytilus byssal coverage and 5.6% underwater made counting difficult"
+"2013-08-19_YB-Bq7",2013-08-19,2013-08-19,"YB","B","7","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Counts likely low because of 2.9% mytilus byssal coverage made counting difficult"
+"2013-08-19_YB-Bq8",2013-08-19,2013-08-19,"YB","B","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low because of 1.7% mytilus byssal coverage made counting difficult"
+"2013-08-19_YB-Bq9",2013-08-19,2013-08-19,"YB","B","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2013-08-19_YB-Bq1",2013-08-19,2013-08-19,"YB","B","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","About 1/8 of full photo, 1/4 of cropped is underwater and difficult to count; 3% mytilus byssal cover"
+"2013-08-19_YB-Bq2",2013-08-19,2013-08-19,"YB","B","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Counts likely low because of 13.1% mytilus byssal coverage and 8% underwater made counting difficult"
+"2013-08-19_YB-Bq3",2013-08-19,2013-08-19,"YB","B","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low because of 2.1% mytilus byssal coverage and 10% underwater made counting difficult"
+"2013-08-19_YB-Bq4",2013-08-19,2013-08-19,"YB","B","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low because of 5.4% mytilus byssal coverage made counting difficult"
+"2013-08-19_YB-Bq5",2013-08-19,2013-08-19,"YB","B","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","14%","Counts likely low because of 14.2% mytilus byssal coverage and 9.2% underwater made counting difficult"
+"2013-08-19_YB-Bq6",2013-08-19,2013-08-19,"YB","B","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low because of 2.9% mytilus byssal coverage and 5.6% underwater made counting difficult"
+"2013-08-19_YB-Bq7",2013-08-19,2013-08-19,"YB","B","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Counts likely low because of 2.9% mytilus byssal coverage made counting difficult"
+"2013-08-19_YB-Bq8",2013-08-19,2013-08-19,"YB","B","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low because of 1.7% mytilus byssal coverage made counting difficult"
+"2013-08-19_YB-Bq9",2013-08-19,2013-08-19,"YB","B","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2013-08-19_YB-BBq1",2013-08-19,2013-08-19,"YB","BB","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Algae is a thin film."
+"2013-08-19_YB-BBq2",2013-08-19,2013-08-19,"YB","BB","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Algae is a thin film. Counts may be low due to algae and water. ~10% underwater."
+"2013-08-19_YB-BBq9",2013-08-19,2013-08-19,"YB","BB","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle counts likely low due to recruit size and blur"
+"2013-08-19_YB-BBq1",2013-08-19,2013-08-19,"YB","BB","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Algae is a thin film."
+"2013-08-19_YB-BBq2",2013-08-19,2013-08-19,"YB","BB","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Algae is a thin film. Counts may be low due to algae and water. ~10% underwater."
+"2013-08-19_YB-BBq9",2013-08-19,2013-08-19,"YB","BB","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle counts likely low due to recruit size and blur"
+"2013-08-19_YB-BBq1",2013-08-19,2013-08-19,"YB","BB","1","Bg","Balanus_glandula","Type 1",2636,0.015625,168704,"c","Beatriz Vaca","Finished","Full","Cropped","10%","Algae is a thin film."
+"2013-08-19_YB-BBq2",2013-08-19,2013-08-19,"YB","BB","2","Bg","Balanus_glandula","Type 1",2865,0.015625,183360,"c","Beatriz Vaca","Finished","Full","Cropped","70%","Algae is a thin film. Counts may be low due to algae and water. ~10% underwater."
+"2013-08-19_YB-BBq9",2013-08-19,2013-08-19,"YB","BB","9","Bg","Balanus_glandula","Type 1",2529,0.015625,161856,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle counts likely low due to recruit size and blur"
+"2013-08-19_YB-BBq1",2013-08-19,2013-08-19,"YB","BB","1","BgD","Balanus_glandula_(dead)","Type 2",32,0.015625,2048,"c","Beatriz Vaca","Finished","Full","Cropped","10%","Algae is a thin film."
+"2013-08-19_YB-BBq2",2013-08-19,2013-08-19,"YB","BB","2","BgD","Balanus_glandula_(dead)","Type 2",2,0.015625,128,"c","Beatriz Vaca","Finished","Full","Cropped","70%","Algae is a thin film. Counts may be low due to algae and water. ~10% underwater."
+"2013-08-19_YB-BBq9",2013-08-19,2013-08-19,"YB","BB","9","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle counts likely low due to recruit size and blur"
+"2013-08-19_YB-BBq1",2013-08-19,2013-08-19,"YB","BB","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Algae is a thin film."
+"2013-08-19_YB-BBq2",2013-08-19,2013-08-19,"YB","BB","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Algae is a thin film. Counts may be low due to algae and water. ~10% underwater."
+"2013-08-19_YB-BBq9",2013-08-19,2013-08-19,"YB","BB","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle counts likely low due to recruit size and blur"
+"2013-08-19_YB-BBq1",2013-08-19,2013-08-19,"YB","BB","1","Cth","Chthamalus_dalli","Type 3",21,0.015625,1344,"c","Beatriz Vaca","Finished","Full","Cropped","10%","Algae is a thin film."
+"2013-08-19_YB-BBq2",2013-08-19,2013-08-19,"YB","BB","2","Cth","Chthamalus_dalli","Type 3",1,0.015625,64,"c","Beatriz Vaca","Finished","Full","Cropped","70%","Algae is a thin film. Counts may be low due to algae and water. ~10% underwater."
+"2013-08-19_YB-BBq9",2013-08-19,2013-08-19,"YB","BB","9","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle counts likely low due to recruit size and blur"
+"2013-08-19_YB-BBq1",2013-08-19,2013-08-19,"YB","BB","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","10%","Algae is a thin film."
+"2013-08-19_YB-BBq2",2013-08-19,2013-08-19,"YB","BB","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","70%","Algae is a thin film. Counts may be low due to algae and water. ~10% underwater."
+"2013-08-19_YB-BBq9",2013-08-19,2013-08-19,"YB","BB","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle counts likely low due to recruit size and blur"
+"2013-08-19_YB-BBq1",2013-08-19,2013-08-19,"YB","BB","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Algae is a thin film."
+"2013-08-19_YB-BBq2",2013-08-19,2013-08-19,"YB","BB","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Algae is a thin film. Counts may be low due to algae and water. ~10% underwater."
+"2013-08-19_YB-BBq9",2013-08-19,2013-08-19,"YB","BB","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle counts likely low due to recruit size and blur"
+"2013-08-19_YB-BBq1",2013-08-19,2013-08-19,"YB","BB","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Algae is a thin film."
+"2013-08-19_YB-BBq2",2013-08-19,2013-08-19,"YB","BB","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Algae is a thin film. Counts may be low due to algae and water. ~10% underwater."
+"2013-08-19_YB-BBq9",2013-08-19,2013-08-19,"YB","BB","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle counts likely low due to recruit size and blur"
+"2013-08-19_YB-BBq1",2013-08-19,2013-08-19,"YB","BB","1","Lim","Limpets","Type 12",87,0.0875,994.285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Algae is a thin film."
+"2013-08-19_YB-BBq2",2013-08-19,2013-08-19,"YB","BB","2","Lim","Limpets","Type 12",39,0.0875,445.714285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Algae is a thin film. Counts may be low due to algae and water. ~10% underwater."
+"2013-08-19_YB-BBq9",2013-08-19,2013-08-19,"YB","BB","9","Lim","Limpets","Type 12",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle counts likely low due to recruit size and blur"
+"2013-08-19_YB-BBq1",2013-08-19,2013-08-19,"YB","BB","1","Ls","Littorina_sitkana","Type 13",147,0.0875,1680,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Algae is a thin film."
+"2013-08-19_YB-BBq2",2013-08-19,2013-08-19,"YB","BB","2","Ls","Littorina_sitkana","Type 13",41,0.0875,468.571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Algae is a thin film. Counts may be low due to algae and water. ~10% underwater."
+"2013-08-19_YB-BBq9",2013-08-19,2013-08-19,"YB","BB","9","Ls","Littorina_sitkana","Type 13",32,0.0875,365.714285714286,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle counts likely low due to recruit size and blur"
+"2013-08-19_YB-BBq1",2013-08-19,2013-08-19,"YB","BB","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Algae is a thin film."
+"2013-08-19_YB-BBq2",2013-08-19,2013-08-19,"YB","BB","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Algae is a thin film. Counts may be low due to algae and water. ~10% underwater."
+"2013-08-19_YB-BBq9",2013-08-19,2013-08-19,"YB","BB","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle counts likely low due to recruit size and blur"
+"2013-08-19_YB-BBq1",2013-08-19,2013-08-19,"YB","BB","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Algae is a thin film."
+"2013-08-19_YB-BBq2",2013-08-19,2013-08-19,"YB","BB","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Algae is a thin film. Counts may be low due to algae and water. ~10% underwater."
+"2013-08-19_YB-BBq9",2013-08-19,2013-08-19,"YB","BB","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle counts likely low due to recruit size and blur"
+"2013-08-19_YB-BBq1",2013-08-19,2013-08-19,"YB","BB","1","Myt","Mytilus_spp","Type 7",30,0.0875,342.857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Algae is a thin film."
+"2013-08-19_YB-BBq2",2013-08-19,2013-08-19,"YB","BB","2","Myt","Mytilus_spp","Type 7",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Algae is a thin film. Counts may be low due to algae and water. ~10% underwater."
+"2013-08-19_YB-BBq9",2013-08-19,2013-08-19,"YB","BB","9","Myt","Mytilus_spp","Type 7",11,0.0875,125.714285714286,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle counts likely low due to recruit size and blur"
+"2013-08-19_YB-BBq1",2013-08-19,2013-08-19,"YB","BB","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Algae is a thin film."
+"2013-08-19_YB-BBq2",2013-08-19,2013-08-19,"YB","BB","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Algae is a thin film. Counts may be low due to algae and water. ~10% underwater."
+"2013-08-19_YB-BBq9",2013-08-19,2013-08-19,"YB","BB","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle counts likely low due to recruit size and blur"
+"2013-08-19_YB-BBq1",2013-08-19,2013-08-19,"YB","BB","1","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Algae is a thin film."
+"2013-08-19_YB-BBq2",2013-08-19,2013-08-19,"YB","BB","2","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Algae is a thin film. Counts may be low due to algae and water. ~10% underwater."
+"2013-08-19_YB-BBq9",2013-08-19,2013-08-19,"YB","BB","9","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle counts likely low due to recruit size and blur"
+"2013-08-19_YB-BBq1",2013-08-19,2013-08-19,"YB","BB","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Algae is a thin film."
+"2013-08-19_YB-BBq2",2013-08-19,2013-08-19,"YB","BB","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Algae is a thin film. Counts may be low due to algae and water. ~10% underwater."
+"2013-08-19_YB-BBq9",2013-08-19,2013-08-19,"YB","BB","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle counts likely low due to recruit size and blur"
+"2013-08-19_YB-BBq1",2013-08-19,2013-08-19,"YB","BB","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Algae is a thin film."
+"2013-08-19_YB-BBq2",2013-08-19,2013-08-19,"YB","BB","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Algae is a thin film. Counts may be low due to algae and water. ~10% underwater."
+"2013-08-19_YB-BBq9",2013-08-19,2013-08-19,"YB","BB","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle counts likely low due to recruit size and blur"
+"2013-08-19_YB-BBq1",2013-08-19,2013-08-19,"YB","BB","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Algae is a thin film."
+"2013-08-19_YB-BBq2",2013-08-19,2013-08-19,"YB","BB","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Algae is a thin film. Counts may be low due to algae and water. ~10% underwater."
+"2013-08-19_YB-BBq9",2013-08-19,2013-08-19,"YB","BB","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle counts likely low due to recruit size and blur"
+"2013-08-19_YB-BBq1",2013-08-19,2013-08-19,"YB","BB","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Algae is a thin film."
+"2013-08-19_YB-BBq2",2013-08-19,2013-08-19,"YB","BB","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Algae is a thin film. Counts may be low due to algae and water. ~10% underwater."
+"2013-08-19_YB-BBq9",2013-08-19,2013-08-19,"YB","BB","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle counts likely low due to recruit size and blur"
+"2013-08-19_YB-BBq1",2013-08-19,2013-08-19,"YB","BB","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Algae is a thin film."
+"2013-08-19_YB-BBq2",2013-08-19,2013-08-19,"YB","BB","2","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Algae is a thin film. Counts may be low due to algae and water. ~10% underwater."
+"2013-08-19_YB-BBq9",2013-08-19,2013-08-19,"YB","BB","9","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle counts likely low due to recruit size and blur"
+"2013-08-19_YB-BBq1",2013-08-19,2013-08-19,"YB","BB","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Algae is a thin film."
+"2013-08-19_YB-BBq2",2013-08-19,2013-08-19,"YB","BB","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Algae is a thin film. Counts may be low due to algae and water. ~10% underwater."
+"2013-08-19_YB-BBq9",2013-08-19,2013-08-19,"YB","BB","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle counts likely low due to recruit size and blur"
+"2013-08-19_YB-BBq1",2013-08-19,2013-08-19,"YB","BB","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Algae is a thin film."
+"2013-08-19_YB-BBq2",2013-08-19,2013-08-19,"YB","BB","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Algae is a thin film. Counts may be low due to algae and water. ~10% underwater."
+"2013-08-19_YB-BBq9",2013-08-19,2013-08-19,"YB","BB","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle counts likely low due to recruit size and blur"
+"2013-08-19_YB-BBq1",2013-08-19,2013-08-19,"YB","BB","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Algae is a thin film."
+"2013-08-19_YB-BBq2",2013-08-19,2013-08-19,"YB","BB","2","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Algae is a thin film. Counts may be low due to algae and water. ~10% underwater."
+"2013-08-19_YB-BBq9",2013-08-19,2013-08-19,"YB","BB","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle counts likely low due to recruit size and blur"
+"2013-08-19_YB-BBq1",2013-08-19,2013-08-19,"YB","BB","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Algae is a thin film."
+"2013-08-19_YB-BBq2",2013-08-19,2013-08-19,"YB","BB","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Algae is a thin film. Counts may be low due to algae and water. ~10% underwater."
+"2013-08-19_YB-BBq9",2013-08-19,2013-08-19,"YB","BB","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle counts likely low due to recruit size and blur"
+"2013-08-19_YB-BBq1",2013-08-19,2013-08-19,"YB","BB","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Algae is a thin film."
+"2013-08-19_YB-BBq2",2013-08-19,2013-08-19,"YB","BB","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Algae is a thin film. Counts may be low due to algae and water. ~10% underwater."
+"2013-08-19_YB-BBq9",2013-08-19,2013-08-19,"YB","BB","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle counts likely low due to recruit size and blur"
+"2013-08-19_YB-BBq1",2013-08-19,2013-08-19,"YB","BB","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Algae is a thin film."
+"2013-08-19_YB-BBq2",2013-08-19,2013-08-19,"YB","BB","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Algae is a thin film. Counts may be low due to algae and water. ~10% underwater."
+"2013-08-19_YB-BBq9",2013-08-19,2013-08-19,"YB","BB","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle counts likely low due to recruit size and blur"
+"2013-08-19_YB-BCq3",2013-08-19,2013-08-19,"YB","BC","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to glare."
+"2013-08-19_YB-BCq5",2013-08-19,2013-08-19,"YB","BC","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","Counts may be low due to glare."
+"2013-08-19_YB-BCq9",2013-08-19,2013-08-19,"YB","BC","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-08-19_YB-BCq3",2013-08-19,2013-08-19,"YB","BC","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to glare."
+"2013-08-19_YB-BCq5",2013-08-19,2013-08-19,"YB","BC","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","Counts may be low due to glare."
+"2013-08-19_YB-BCq9",2013-08-19,2013-08-19,"YB","BC","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-08-19_YB-BCq3",2013-08-19,2013-08-19,"YB","BC","3","Bg","Balanus_glandula","Type 1",2071,0.015625,132544,"c","Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to glare."
+"2013-08-19_YB-BCq5",2013-08-19,2013-08-19,"YB","BC","5","Bg","Balanus_glandula","Type 1",1579,0.015625,101056,"c","Stephanie Merhoff","Finished","Full","Cropped","25%","Counts may be low due to glare."
+"2013-08-19_YB-BCq9",2013-08-19,2013-08-19,"YB","BC","9","Bg","Balanus_glandula","Type 1",2290,0.015625,146560,"c","Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-08-19_YB-BCq3",2013-08-19,2013-08-19,"YB","BC","3","BgD","Balanus_glandula_(dead)","Type 2",14,0.015625,896,"c","Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to glare."
+"2013-08-19_YB-BCq5",2013-08-19,2013-08-19,"YB","BC","5","BgD","Balanus_glandula_(dead)","Type 2",3,0.015625,192,"c","Stephanie Merhoff","Finished","Full","Cropped","25%","Counts may be low due to glare."
+"2013-08-19_YB-BCq9",2013-08-19,2013-08-19,"YB","BC","9","BgD","Balanus_glandula_(dead)","Type 2",4,0.015625,256,"c","Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-08-19_YB-BCq3",2013-08-19,2013-08-19,"YB","BC","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to glare."
+"2013-08-19_YB-BCq5",2013-08-19,2013-08-19,"YB","BC","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","Counts may be low due to glare."
+"2013-08-19_YB-BCq9",2013-08-19,2013-08-19,"YB","BC","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-08-19_YB-BCq3",2013-08-19,2013-08-19,"YB","BC","3","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to glare."
+"2013-08-19_YB-BCq5",2013-08-19,2013-08-19,"YB","BC","5","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","25%","Counts may be low due to glare."
+"2013-08-19_YB-BCq9",2013-08-19,2013-08-19,"YB","BC","9","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-08-19_YB-BCq3",2013-08-19,2013-08-19,"YB","BC","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to glare."
+"2013-08-19_YB-BCq5",2013-08-19,2013-08-19,"YB","BC","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","25%","Counts may be low due to glare."
+"2013-08-19_YB-BCq9",2013-08-19,2013-08-19,"YB","BC","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-08-19_YB-BCq3",2013-08-19,2013-08-19,"YB","BC","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to glare."
+"2013-08-19_YB-BCq5",2013-08-19,2013-08-19,"YB","BC","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","Counts may be low due to glare."
+"2013-08-19_YB-BCq9",2013-08-19,2013-08-19,"YB","BC","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-08-19_YB-BCq3",2013-08-19,2013-08-19,"YB","BC","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to glare."
+"2013-08-19_YB-BCq5",2013-08-19,2013-08-19,"YB","BC","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","Counts may be low due to glare."
+"2013-08-19_YB-BCq9",2013-08-19,2013-08-19,"YB","BC","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-08-19_YB-BCq3",2013-08-19,2013-08-19,"YB","BC","3","Lim","Limpets","Type 12",51,0.0875,582.857142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to glare."
+"2013-08-19_YB-BCq5",2013-08-19,2013-08-19,"YB","BC","5","Lim","Limpets","Type 12",11,0.0875,125.714285714286,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","Counts may be low due to glare."
+"2013-08-19_YB-BCq9",2013-08-19,2013-08-19,"YB","BC","9","Lim","Limpets","Type 12",23,0.0875,262.857142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-08-19_YB-BCq3",2013-08-19,2013-08-19,"YB","BC","3","Ls","Littorina_sitkana","Type 13",72,0.0875,822.857142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to glare."
+"2013-08-19_YB-BCq5",2013-08-19,2013-08-19,"YB","BC","5","Ls","Littorina_sitkana","Type 13",47,0.0875,537.142857142857,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","Counts may be low due to glare."
+"2013-08-19_YB-BCq9",2013-08-19,2013-08-19,"YB","BC","9","Ls","Littorina_sitkana","Type 13",101,0.0875,1154.28571428571,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-08-19_YB-BCq3",2013-08-19,2013-08-19,"YB","BC","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to glare."
+"2013-08-19_YB-BCq5",2013-08-19,2013-08-19,"YB","BC","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","Counts may be low due to glare."
+"2013-08-19_YB-BCq9",2013-08-19,2013-08-19,"YB","BC","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-08-19_YB-BCq3",2013-08-19,2013-08-19,"YB","BC","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to glare."
+"2013-08-19_YB-BCq5",2013-08-19,2013-08-19,"YB","BC","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","Counts may be low due to glare."
+"2013-08-19_YB-BCq9",2013-08-19,2013-08-19,"YB","BC","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-08-19_YB-BCq3",2013-08-19,2013-08-19,"YB","BC","3","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to glare."
+"2013-08-19_YB-BCq5",2013-08-19,2013-08-19,"YB","BC","5","Myt","Mytilus_spp","Type 7",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","Counts may be low due to glare."
+"2013-08-19_YB-BCq9",2013-08-19,2013-08-19,"YB","BC","9","Myt","Mytilus_spp","Type 7",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-08-19_YB-BCq3",2013-08-19,2013-08-19,"YB","BC","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to glare."
+"2013-08-19_YB-BCq5",2013-08-19,2013-08-19,"YB","BC","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","Counts may be low due to glare."
+"2013-08-19_YB-BCq9",2013-08-19,2013-08-19,"YB","BC","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-08-19_YB-BCq3",2013-08-19,2013-08-19,"YB","BC","3","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to glare."
+"2013-08-19_YB-BCq5",2013-08-19,2013-08-19,"YB","BC","5","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","Counts may be low due to glare."
+"2013-08-19_YB-BCq9",2013-08-19,2013-08-19,"YB","BC","9","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-08-19_YB-BCq3",2013-08-19,2013-08-19,"YB","BC","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to glare."
+"2013-08-19_YB-BCq5",2013-08-19,2013-08-19,"YB","BC","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","Counts may be low due to glare."
+"2013-08-19_YB-BCq9",2013-08-19,2013-08-19,"YB","BC","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-08-19_YB-BCq3",2013-08-19,2013-08-19,"YB","BC","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to glare."
+"2013-08-19_YB-BCq5",2013-08-19,2013-08-19,"YB","BC","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","Counts may be low due to glare."
+"2013-08-19_YB-BCq9",2013-08-19,2013-08-19,"YB","BC","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-08-19_YB-BCq3",2013-08-19,2013-08-19,"YB","BC","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to glare."
+"2013-08-19_YB-BCq5",2013-08-19,2013-08-19,"YB","BC","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","Counts may be low due to glare."
+"2013-08-19_YB-BCq9",2013-08-19,2013-08-19,"YB","BC","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-08-19_YB-BCq3",2013-08-19,2013-08-19,"YB","BC","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to glare."
+"2013-08-19_YB-BCq5",2013-08-19,2013-08-19,"YB","BC","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","Counts may be low due to glare."
+"2013-08-19_YB-BCq9",2013-08-19,2013-08-19,"YB","BC","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-08-19_YB-BCq3",2013-08-19,2013-08-19,"YB","BC","3","No","Nucella_ostrina","Type 9",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to glare."
+"2013-08-19_YB-BCq5",2013-08-19,2013-08-19,"YB","BC","5","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","Counts may be low due to glare."
+"2013-08-19_YB-BCq9",2013-08-19,2013-08-19,"YB","BC","9","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-08-19_YB-BCq3",2013-08-19,2013-08-19,"YB","BC","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to glare."
+"2013-08-19_YB-BCq5",2013-08-19,2013-08-19,"YB","BC","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","Counts may be low due to glare."
+"2013-08-19_YB-BCq9",2013-08-19,2013-08-19,"YB","BC","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-08-19_YB-BCq3",2013-08-19,2013-08-19,"YB","BC","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to glare."
+"2013-08-19_YB-BCq5",2013-08-19,2013-08-19,"YB","BC","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","Counts may be low due to glare."
+"2013-08-19_YB-BCq9",2013-08-19,2013-08-19,"YB","BC","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-08-19_YB-BCq3",2013-08-19,2013-08-19,"YB","BC","3","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to glare."
+"2013-08-19_YB-BCq5",2013-08-19,2013-08-19,"YB","BC","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","Counts may be low due to glare."
+"2013-08-19_YB-BCq9",2013-08-19,2013-08-19,"YB","BC","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-08-19_YB-BCq3",2013-08-19,2013-08-19,"YB","BC","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to glare."
+"2013-08-19_YB-BCq5",2013-08-19,2013-08-19,"YB","BC","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","Counts may be low due to glare."
+"2013-08-19_YB-BCq9",2013-08-19,2013-08-19,"YB","BC","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-08-19_YB-BCq3",2013-08-19,2013-08-19,"YB","BC","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to glare."
+"2013-08-19_YB-BCq5",2013-08-19,2013-08-19,"YB","BC","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","Counts may be low due to glare."
+"2013-08-19_YB-BCq9",2013-08-19,2013-08-19,"YB","BC","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-08-19_YB-BCq3",2013-08-19,2013-08-19,"YB","BC","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to glare."
+"2013-08-19_YB-BCq5",2013-08-19,2013-08-19,"YB","BC","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","Counts may be low due to glare."
+"2013-08-19_YB-BCq9",2013-08-19,2013-08-19,"YB","BC","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-08-20_YB-BDq1",2013-08-19,2013-08-20,"YB","BD","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","40%","algae is a thin film over the top"
+"2013-08-20_YB-BDq5",2013-08-19,2013-08-20,"YB","BD","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","60%","algae is a thin film over the top, counts may be low due to glare and algae cover"
+"2013-08-20_YB-BDq7",2013-08-19,2013-08-20,"YB","BD","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts low due to algae film and glare. Byssal threads cover ~7%."
+"2013-08-20_YB-BDq1",2013-08-19,2013-08-20,"YB","BD","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","40%","algae is a thin film over the top"
+"2013-08-20_YB-BDq5",2013-08-19,2013-08-20,"YB","BD","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","60%","algae is a thin film over the top, counts may be low due to glare and algae cover"
+"2013-08-20_YB-BDq7",2013-08-19,2013-08-20,"YB","BD","7","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts low due to algae film and glare. Byssal threads cover ~7%."
+"2013-08-20_YB-BDq1",2013-08-19,2013-08-20,"YB","BD","1","Bg","Balanus_glandula","Type 1",2309,0.015625,147776,"c","Julia Bingham","Finished","Full","Cropped","40%","algae is a thin film over the top"
+"2013-08-20_YB-BDq5",2013-08-19,2013-08-20,"YB","BD","5","Bg","Balanus_glandula","Type 1",1175,0.015625,75200,"c","Julia Bingham","Finished","Full","Cropped","60%","algae is a thin film over the top, counts may be low due to glare and algae cover"
+"2013-08-20_YB-BDq7",2013-08-19,2013-08-20,"YB","BD","7","Bg","Balanus_glandula","Type 1",1915,0.015625,122560,"c","Beatriz Vaca","Finished","Full","Cropped","60%","Counts low due to algae film and glare. Byssal threads cover ~7%."
+"2013-08-20_YB-BDq1",2013-08-19,2013-08-20,"YB","BD","1","BgD","Balanus_glandula_(dead)","Type 2",36,0.015625,2304,"c","Julia Bingham","Finished","Full","Cropped","40%","algae is a thin film over the top"
+"2013-08-20_YB-BDq5",2013-08-19,2013-08-20,"YB","BD","5","BgD","Balanus_glandula_(dead)","Type 2",96,0.015625,6144,"c","Julia Bingham","Finished","Full","Cropped","60%","algae is a thin film over the top, counts may be low due to glare and algae cover"
+"2013-08-20_YB-BDq7",2013-08-19,2013-08-20,"YB","BD","7","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","60%","Counts low due to algae film and glare. Byssal threads cover ~7%."
+"2013-08-20_YB-BDq1",2013-08-19,2013-08-20,"YB","BD","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","40%","algae is a thin film over the top"
+"2013-08-20_YB-BDq5",2013-08-19,2013-08-20,"YB","BD","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","60%","algae is a thin film over the top, counts may be low due to glare and algae cover"
+"2013-08-20_YB-BDq7",2013-08-19,2013-08-20,"YB","BD","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts low due to algae film and glare. Byssal threads cover ~7%."
+"2013-08-20_YB-BDq1",2013-08-19,2013-08-20,"YB","BD","1","Cth","Chthamalus_dalli","Type 3",7,0.015625,448,"c","Julia Bingham","Finished","Full","Cropped","40%","algae is a thin film over the top"
+"2013-08-20_YB-BDq5",2013-08-19,2013-08-20,"YB","BD","5","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Julia Bingham","Finished","Full","Cropped","60%","algae is a thin film over the top, counts may be low due to glare and algae cover"
+"2013-08-20_YB-BDq7",2013-08-19,2013-08-20,"YB","BD","7","Cth","Chthamalus_dalli","Type 3",13,0.015625,832,"c","Beatriz Vaca","Finished","Full","Cropped","60%","Counts low due to algae film and glare. Byssal threads cover ~7%."
+"2013-08-20_YB-BDq1",2013-08-19,2013-08-20,"YB","BD","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Julia Bingham","Finished","Full","Cropped","40%","algae is a thin film over the top"
+"2013-08-20_YB-BDq5",2013-08-19,2013-08-20,"YB","BD","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Julia Bingham","Finished","Full","Cropped","60%","algae is a thin film over the top, counts may be low due to glare and algae cover"
+"2013-08-20_YB-BDq7",2013-08-19,2013-08-20,"YB","BD","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","60%","Counts low due to algae film and glare. Byssal threads cover ~7%."
+"2013-08-20_YB-BDq1",2013-08-19,2013-08-20,"YB","BD","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","40%","algae is a thin film over the top"
+"2013-08-20_YB-BDq5",2013-08-19,2013-08-20,"YB","BD","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","60%","algae is a thin film over the top, counts may be low due to glare and algae cover"
+"2013-08-20_YB-BDq7",2013-08-19,2013-08-20,"YB","BD","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts low due to algae film and glare. Byssal threads cover ~7%."
+"2013-08-20_YB-BDq1",2013-08-19,2013-08-20,"YB","BD","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","40%","algae is a thin film over the top"
+"2013-08-20_YB-BDq5",2013-08-19,2013-08-20,"YB","BD","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","60%","algae is a thin film over the top, counts may be low due to glare and algae cover"
+"2013-08-20_YB-BDq7",2013-08-19,2013-08-20,"YB","BD","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts low due to algae film and glare. Byssal threads cover ~7%."
+"2013-08-20_YB-BDq1",2013-08-19,2013-08-20,"YB","BD","1","Lim","Limpets","Type 12",407,0.0875,4651.42857142857,NA,"Julia Bingham","Finished","Full","Cropped","40%","algae is a thin film over the top"
+"2013-08-20_YB-BDq5",2013-08-19,2013-08-20,"YB","BD","5","Lim","Limpets","Type 12",398,0.0875,4548.57142857143,NA,"Julia Bingham","Finished","Full","Cropped","60%","algae is a thin film over the top, counts may be low due to glare and algae cover"
+"2013-08-20_YB-BDq7",2013-08-19,2013-08-20,"YB","BD","7","Lim","Limpets","Type 12",164,0.0875,1874.28571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts low due to algae film and glare. Byssal threads cover ~7%."
+"2013-08-20_YB-BDq1",2013-08-19,2013-08-20,"YB","BD","1","Ls","Littorina_sitkana","Type 13",466,0.0875,5325.71428571429,NA,"Julia Bingham","Finished","Full","Cropped","40%","algae is a thin film over the top"
+"2013-08-20_YB-BDq5",2013-08-19,2013-08-20,"YB","BD","5","Ls","Littorina_sitkana","Type 13",664,0.0875,7588.57142857143,NA,"Julia Bingham","Finished","Full","Cropped","60%","algae is a thin film over the top, counts may be low due to glare and algae cover"
+"2013-08-20_YB-BDq7",2013-08-19,2013-08-20,"YB","BD","7","Ls","Littorina_sitkana","Type 13",70,0.0875,800,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts low due to algae film and glare. Byssal threads cover ~7%."
+"2013-08-20_YB-BDq1",2013-08-19,2013-08-20,"YB","BD","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","40%","algae is a thin film over the top"
+"2013-08-20_YB-BDq5",2013-08-19,2013-08-20,"YB","BD","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","60%","algae is a thin film over the top, counts may be low due to glare and algae cover"
+"2013-08-20_YB-BDq7",2013-08-19,2013-08-20,"YB","BD","7","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts low due to algae film and glare. Byssal threads cover ~7%."
+"2013-08-20_YB-BDq1",2013-08-19,2013-08-20,"YB","BD","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","40%","algae is a thin film over the top"
+"2013-08-20_YB-BDq5",2013-08-19,2013-08-20,"YB","BD","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","60%","algae is a thin film over the top, counts may be low due to glare and algae cover"
+"2013-08-20_YB-BDq7",2013-08-19,2013-08-20,"YB","BD","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts low due to algae film and glare. Byssal threads cover ~7%."
+"2013-08-20_YB-BDq1",2013-08-19,2013-08-20,"YB","BD","1","Myt","Mytilus_spp","Type 7",226,0.0875,2582.85714285714,NA,"Julia Bingham","Finished","Full","Cropped","40%","algae is a thin film over the top"
+"2013-08-20_YB-BDq5",2013-08-19,2013-08-20,"YB","BD","5","Myt","Mytilus_spp","Type 7",645,0.0875,7371.42857142857,NA,"Julia Bingham","Finished","Full","Cropped","60%","algae is a thin film over the top, counts may be low due to glare and algae cover"
+"2013-08-20_YB-BDq7",2013-08-19,2013-08-20,"YB","BD","7","Myt","Mytilus_spp","Type 7",50,0.0875,571.428571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts low due to algae film and glare. Byssal threads cover ~7%."
+"2013-08-20_YB-BDq1",2013-08-19,2013-08-20,"YB","BD","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","40%","algae is a thin film over the top"
+"2013-08-20_YB-BDq5",2013-08-19,2013-08-20,"YB","BD","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","60%","algae is a thin film over the top, counts may be low due to glare and algae cover"
+"2013-08-20_YB-BDq7",2013-08-19,2013-08-20,"YB","BD","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts low due to algae film and glare. Byssal threads cover ~7%."
+"2013-08-20_YB-BDq1",2013-08-19,2013-08-20,"YB","BD","1","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","40%","algae is a thin film over the top"
+"2013-08-20_YB-BDq5",2013-08-19,2013-08-20,"YB","BD","5","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","60%","algae is a thin film over the top, counts may be low due to glare and algae cover"
+"2013-08-20_YB-BDq7",2013-08-19,2013-08-20,"YB","BD","7","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts low due to algae film and glare. Byssal threads cover ~7%."
+"2013-08-20_YB-BDq1",2013-08-19,2013-08-20,"YB","BD","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","40%","algae is a thin film over the top"
+"2013-08-20_YB-BDq5",2013-08-19,2013-08-20,"YB","BD","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","60%","algae is a thin film over the top, counts may be low due to glare and algae cover"
+"2013-08-20_YB-BDq7",2013-08-19,2013-08-20,"YB","BD","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts low due to algae film and glare. Byssal threads cover ~7%."
+"2013-08-20_YB-BDq1",2013-08-19,2013-08-20,"YB","BD","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","40%","algae is a thin film over the top"
+"2013-08-20_YB-BDq5",2013-08-19,2013-08-20,"YB","BD","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","60%","algae is a thin film over the top, counts may be low due to glare and algae cover"
+"2013-08-20_YB-BDq7",2013-08-19,2013-08-20,"YB","BD","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts low due to algae film and glare. Byssal threads cover ~7%."
+"2013-08-20_YB-BDq1",2013-08-19,2013-08-20,"YB","BD","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","40%","algae is a thin film over the top"
+"2013-08-20_YB-BDq5",2013-08-19,2013-08-20,"YB","BD","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","60%","algae is a thin film over the top, counts may be low due to glare and algae cover"
+"2013-08-20_YB-BDq7",2013-08-19,2013-08-20,"YB","BD","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts low due to algae film and glare. Byssal threads cover ~7%."
+"2013-08-20_YB-BDq1",2013-08-19,2013-08-20,"YB","BD","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","40%","algae is a thin film over the top"
+"2013-08-20_YB-BDq5",2013-08-19,2013-08-20,"YB","BD","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","60%","algae is a thin film over the top, counts may be low due to glare and algae cover"
+"2013-08-20_YB-BDq7",2013-08-19,2013-08-20,"YB","BD","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts low due to algae film and glare. Byssal threads cover ~7%."
+"2013-08-20_YB-BDq1",2013-08-19,2013-08-20,"YB","BD","1","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Cropped","40%","algae is a thin film over the top"
+"2013-08-20_YB-BDq5",2013-08-19,2013-08-20,"YB","BD","5","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","60%","algae is a thin film over the top, counts may be low due to glare and algae cover"
+"2013-08-20_YB-BDq7",2013-08-19,2013-08-20,"YB","BD","7","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts low due to algae film and glare. Byssal threads cover ~7%."
+"2013-08-20_YB-BDq1",2013-08-19,2013-08-20,"YB","BD","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","40%","algae is a thin film over the top"
+"2013-08-20_YB-BDq5",2013-08-19,2013-08-20,"YB","BD","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","60%","algae is a thin film over the top, counts may be low due to glare and algae cover"
+"2013-08-20_YB-BDq7",2013-08-19,2013-08-20,"YB","BD","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts low due to algae film and glare. Byssal threads cover ~7%."
+"2013-08-20_YB-BDq1",2013-08-19,2013-08-20,"YB","BD","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","40%","algae is a thin film over the top"
+"2013-08-20_YB-BDq5",2013-08-19,2013-08-20,"YB","BD","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","60%","algae is a thin film over the top, counts may be low due to glare and algae cover"
+"2013-08-20_YB-BDq7",2013-08-19,2013-08-20,"YB","BD","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts low due to algae film and glare. Byssal threads cover ~7%."
+"2013-08-20_YB-BDq1",2013-08-19,2013-08-20,"YB","BD","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","40%","algae is a thin film over the top"
+"2013-08-20_YB-BDq5",2013-08-19,2013-08-20,"YB","BD","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","60%","algae is a thin film over the top, counts may be low due to glare and algae cover"
+"2013-08-20_YB-BDq7",2013-08-19,2013-08-20,"YB","BD","7","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts low due to algae film and glare. Byssal threads cover ~7%."
+"2013-08-20_YB-BDq1",2013-08-19,2013-08-20,"YB","BD","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","40%","algae is a thin film over the top"
+"2013-08-20_YB-BDq5",2013-08-19,2013-08-20,"YB","BD","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","60%","algae is a thin film over the top, counts may be low due to glare and algae cover"
+"2013-08-20_YB-BDq7",2013-08-19,2013-08-20,"YB","BD","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts low due to algae film and glare. Byssal threads cover ~7%."
+"2013-08-20_YB-BDq1",2013-08-19,2013-08-20,"YB","BD","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","40%","algae is a thin film over the top"
+"2013-08-20_YB-BDq5",2013-08-19,2013-08-20,"YB","BD","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","60%","algae is a thin film over the top, counts may be low due to glare and algae cover"
+"2013-08-20_YB-BDq7",2013-08-19,2013-08-20,"YB","BD","7","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts low due to algae film and glare. Byssal threads cover ~7%."
+"2013-08-20_YB-BDq1",2013-08-19,2013-08-20,"YB","BD","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","40%","algae is a thin film over the top"
+"2013-08-20_YB-BDq5",2013-08-19,2013-08-20,"YB","BD","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","60%","algae is a thin film over the top, counts may be low due to glare and algae cover"
+"2013-08-20_YB-BDq7",2013-08-19,2013-08-20,"YB","BD","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts low due to algae film and glare. Byssal threads cover ~7%."
+"2013-08-20_YB-BEq2",2013-08-19,2013-08-20,"YB","BE","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts likely low due to glare"
+"2013-08-20_YB-BEq3",2013-08-19,2013-08-20,"YB","BE","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Counts low due to algae and glare."
+"2013-08-20_YB-BEq6",2013-08-19,2013-08-20,"YB","BE","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae and glare."
+"2013-08-20_YB-BEq2",2013-08-19,2013-08-20,"YB","BE","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts likely low due to glare"
+"2013-08-20_YB-BEq3",2013-08-19,2013-08-20,"YB","BE","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Counts low due to algae and glare."
+"2013-08-20_YB-BEq6",2013-08-19,2013-08-20,"YB","BE","6","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae and glare."
+"2013-08-20_YB-BEq2",2013-08-19,2013-08-20,"YB","BE","2","Bg","Balanus_glandula","Type 1",1953,0.015625,124992,"c","Stephanie Merhoff","Finished","Full","Cropped","3%","Counts likely low due to glare"
+"2013-08-20_YB-BEq3",2013-08-19,2013-08-20,"YB","BE","3","Bg","Balanus_glandula","Type 1",1375,0.015625,88000,"c","Beatriz Vaca","Finished","Full","Cropped","45%","Counts low due to algae and glare."
+"2013-08-20_YB-BEq6",2013-08-19,2013-08-20,"YB","BE","6","Bg","Balanus_glandula","Type 1",1317,0.015625,84288,"c","Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae and glare."
+"2013-08-20_YB-BEq2",2013-08-19,2013-08-20,"YB","BE","2","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","3%","Counts likely low due to glare"
+"2013-08-20_YB-BEq3",2013-08-19,2013-08-20,"YB","BE","3","BgD","Balanus_glandula_(dead)","Type 2",1,0.015625,64,"c","Beatriz Vaca","Finished","Full","Cropped","45%","Counts low due to algae and glare."
+"2013-08-20_YB-BEq6",2013-08-19,2013-08-20,"YB","BE","6","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae and glare."
+"2013-08-20_YB-BEq2",2013-08-19,2013-08-20,"YB","BE","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts likely low due to glare"
+"2013-08-20_YB-BEq3",2013-08-19,2013-08-20,"YB","BE","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Counts low due to algae and glare."
+"2013-08-20_YB-BEq6",2013-08-19,2013-08-20,"YB","BE","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae and glare."
+"2013-08-20_YB-BEq2",2013-08-19,2013-08-20,"YB","BE","2","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","3%","Counts likely low due to glare"
+"2013-08-20_YB-BEq3",2013-08-19,2013-08-20,"YB","BE","3","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","45%","Counts low due to algae and glare."
+"2013-08-20_YB-BEq6",2013-08-19,2013-08-20,"YB","BE","6","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae and glare."
+"2013-08-20_YB-BEq2",2013-08-19,2013-08-20,"YB","BE","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","3%","Counts likely low due to glare"
+"2013-08-20_YB-BEq3",2013-08-19,2013-08-20,"YB","BE","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","45%","Counts low due to algae and glare."
+"2013-08-20_YB-BEq6",2013-08-19,2013-08-20,"YB","BE","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae and glare."
+"2013-08-20_YB-BEq2",2013-08-19,2013-08-20,"YB","BE","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts likely low due to glare"
+"2013-08-20_YB-BEq3",2013-08-19,2013-08-20,"YB","BE","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Counts low due to algae and glare."
+"2013-08-20_YB-BEq6",2013-08-19,2013-08-20,"YB","BE","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae and glare."
+"2013-08-20_YB-BEq2",2013-08-19,2013-08-20,"YB","BE","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts likely low due to glare"
+"2013-08-20_YB-BEq3",2013-08-19,2013-08-20,"YB","BE","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Counts low due to algae and glare."
+"2013-08-20_YB-BEq6",2013-08-19,2013-08-20,"YB","BE","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae and glare."
+"2013-08-20_YB-BEq2",2013-08-19,2013-08-20,"YB","BE","2","Lim","Limpets","Type 12",30,0.0875,342.857142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts likely low due to glare"
+"2013-08-20_YB-BEq3",2013-08-19,2013-08-20,"YB","BE","3","Lim","Limpets","Type 12",52,0.0875,594.285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Counts low due to algae and glare."
+"2013-08-20_YB-BEq6",2013-08-19,2013-08-20,"YB","BE","6","Lim","Limpets","Type 12",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae and glare."
+"2013-08-20_YB-BEq2",2013-08-19,2013-08-20,"YB","BE","2","Ls","Littorina_sitkana","Type 13",40,0.0875,457.142857142857,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts likely low due to glare"
+"2013-08-20_YB-BEq3",2013-08-19,2013-08-20,"YB","BE","3","Ls","Littorina_sitkana","Type 13",75,0.0875,857.142857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Counts low due to algae and glare."
+"2013-08-20_YB-BEq6",2013-08-19,2013-08-20,"YB","BE","6","Ls","Littorina_sitkana","Type 13",32,0.0875,365.714285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae and glare."
+"2013-08-20_YB-BEq2",2013-08-19,2013-08-20,"YB","BE","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts likely low due to glare"
+"2013-08-20_YB-BEq3",2013-08-19,2013-08-20,"YB","BE","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Counts low due to algae and glare."
+"2013-08-20_YB-BEq6",2013-08-19,2013-08-20,"YB","BE","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae and glare."
+"2013-08-20_YB-BEq2",2013-08-19,2013-08-20,"YB","BE","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts likely low due to glare"
+"2013-08-20_YB-BEq3",2013-08-19,2013-08-20,"YB","BE","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Counts low due to algae and glare."
+"2013-08-20_YB-BEq6",2013-08-19,2013-08-20,"YB","BE","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae and glare."
+"2013-08-20_YB-BEq2",2013-08-19,2013-08-20,"YB","BE","2","Myt","Mytilus_spp","Type 7",7,0.0875,80,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts likely low due to glare"
+"2013-08-20_YB-BEq3",2013-08-19,2013-08-20,"YB","BE","3","Myt","Mytilus_spp","Type 7",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Counts low due to algae and glare."
+"2013-08-20_YB-BEq6",2013-08-19,2013-08-20,"YB","BE","6","Myt","Mytilus_spp","Type 7",26,0.0875,297.142857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae and glare."
+"2013-08-20_YB-BEq2",2013-08-19,2013-08-20,"YB","BE","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts likely low due to glare"
+"2013-08-20_YB-BEq3",2013-08-19,2013-08-20,"YB","BE","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Counts low due to algae and glare."
+"2013-08-20_YB-BEq6",2013-08-19,2013-08-20,"YB","BE","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae and glare."
+"2013-08-20_YB-BEq2",2013-08-19,2013-08-20,"YB","BE","2","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts likely low due to glare"
+"2013-08-20_YB-BEq3",2013-08-19,2013-08-20,"YB","BE","3","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Counts low due to algae and glare."
+"2013-08-20_YB-BEq6",2013-08-19,2013-08-20,"YB","BE","6","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae and glare."
+"2013-08-20_YB-BEq2",2013-08-19,2013-08-20,"YB","BE","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts likely low due to glare"
+"2013-08-20_YB-BEq3",2013-08-19,2013-08-20,"YB","BE","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Counts low due to algae and glare."
+"2013-08-20_YB-BEq6",2013-08-19,2013-08-20,"YB","BE","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae and glare."
+"2013-08-20_YB-BEq2",2013-08-19,2013-08-20,"YB","BE","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts likely low due to glare"
+"2013-08-20_YB-BEq3",2013-08-19,2013-08-20,"YB","BE","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Counts low due to algae and glare."
+"2013-08-20_YB-BEq6",2013-08-19,2013-08-20,"YB","BE","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae and glare."
+"2013-08-20_YB-BEq2",2013-08-19,2013-08-20,"YB","BE","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts likely low due to glare"
+"2013-08-20_YB-BEq3",2013-08-19,2013-08-20,"YB","BE","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Counts low due to algae and glare."
+"2013-08-20_YB-BEq6",2013-08-19,2013-08-20,"YB","BE","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae and glare."
+"2013-08-20_YB-BEq2",2013-08-19,2013-08-20,"YB","BE","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts likely low due to glare"
+"2013-08-20_YB-BEq3",2013-08-19,2013-08-20,"YB","BE","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Counts low due to algae and glare."
+"2013-08-20_YB-BEq6",2013-08-19,2013-08-20,"YB","BE","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae and glare."
+"2013-08-20_YB-BEq2",2013-08-19,2013-08-20,"YB","BE","2","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts likely low due to glare"
+"2013-08-20_YB-BEq3",2013-08-19,2013-08-20,"YB","BE","3","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Counts low due to algae and glare."
+"2013-08-20_YB-BEq6",2013-08-19,2013-08-20,"YB","BE","6","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae and glare."
+"2013-08-20_YB-BEq2",2013-08-19,2013-08-20,"YB","BE","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts likely low due to glare"
+"2013-08-20_YB-BEq3",2013-08-19,2013-08-20,"YB","BE","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Counts low due to algae and glare."
+"2013-08-20_YB-BEq6",2013-08-19,2013-08-20,"YB","BE","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae and glare."
+"2013-08-20_YB-BEq2",2013-08-19,2013-08-20,"YB","BE","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts likely low due to glare"
+"2013-08-20_YB-BEq3",2013-08-19,2013-08-20,"YB","BE","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Counts low due to algae and glare."
+"2013-08-20_YB-BEq6",2013-08-19,2013-08-20,"YB","BE","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae and glare."
+"2013-08-20_YB-BEq2",2013-08-19,2013-08-20,"YB","BE","2","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts likely low due to glare"
+"2013-08-20_YB-BEq3",2013-08-19,2013-08-20,"YB","BE","3","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Counts low due to algae and glare."
+"2013-08-20_YB-BEq6",2013-08-19,2013-08-20,"YB","BE","6","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae and glare."
+"2013-08-20_YB-BEq2",2013-08-19,2013-08-20,"YB","BE","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts likely low due to glare"
+"2013-08-20_YB-BEq3",2013-08-19,2013-08-20,"YB","BE","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Counts low due to algae and glare."
+"2013-08-20_YB-BEq6",2013-08-19,2013-08-20,"YB","BE","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae and glare."
+"2013-08-20_YB-BEq2",2013-08-19,2013-08-20,"YB","BE","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts likely low due to glare"
+"2013-08-20_YB-BEq3",2013-08-19,2013-08-20,"YB","BE","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Counts low due to algae and glare."
+"2013-08-20_YB-BEq6",2013-08-19,2013-08-20,"YB","BE","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae and glare."
+"2013-08-20_YB-BEq2",2013-08-19,2013-08-20,"YB","BE","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts likely low due to glare"
+"2013-08-20_YB-BEq3",2013-08-19,2013-08-20,"YB","BE","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Counts low due to algae and glare."
+"2013-08-20_YB-BEq6",2013-08-19,2013-08-20,"YB","BE","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae and glare."
+"2013-08-20_YB-BFq1",2013-08-19,2013-08-20,"YB","BF","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","some photo glare. algae patces make it hard to identify organisms"
+"2013-08-20_YB-BFq4",2013-08-19,2013-08-20,"YB","BF","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","glare/algae"
+"2013-08-20_YB-BFq9",2013-08-19,2013-08-20,"YB","BF","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","12%","Mussel and littorine counts low due to large amount of glare. dead balanus grouping suggests Nucella predation "
+"2013-08-20_YB-BFq1",2013-08-19,2013-08-20,"YB","BF","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","some photo glare. algae patces make it hard to identify organisms"
+"2013-08-20_YB-BFq4",2013-08-19,2013-08-20,"YB","BF","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","glare/algae"
+"2013-08-20_YB-BFq9",2013-08-19,2013-08-20,"YB","BF","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","12%","Mussel and littorine counts low due to large amount of glare. dead balanus grouping suggests Nucella predation "
+"2013-08-20_YB-BFq1",2013-08-19,2013-08-20,"YB","BF","1","Bg","Balanus_glandula","Type 1",756,0.015625,48384,"c","Stephanie Merhoff","Finished","Full","Cropped","10%","some photo glare. algae patces make it hard to identify organisms"
+"2013-08-20_YB-BFq4",2013-08-19,2013-08-20,"YB","BF","4","Bg","Balanus_glandula","Type 1",1170,0.015625,74880,"c","Stephanie Merhoff","Finished","Full","Cropped","30%","glare/algae"
+"2013-08-20_YB-BFq9",2013-08-19,2013-08-20,"YB","BF","9","Bg","Balanus_glandula","Type 1",3352,0.015625,214528,"c","Julia Bingham","Finished","Full","Cropped","12%","Mussel and littorine counts low due to large amount of glare. dead balanus grouping suggests Nucella predation "
+"2013-08-20_YB-BFq1",2013-08-19,2013-08-20,"YB","BF","1","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","10%","some photo glare. algae patces make it hard to identify organisms"
+"2013-08-20_YB-BFq4",2013-08-19,2013-08-20,"YB","BF","4","BgD","Balanus_glandula_(dead)","Type 2",2,0.015625,128,"c","Stephanie Merhoff","Finished","Full","Cropped","30%","glare/algae"
+"2013-08-20_YB-BFq9",2013-08-19,2013-08-20,"YB","BF","9","BgD","Balanus_glandula_(dead)","Type 2",5,0.015625,320,"c","Julia Bingham","Finished","Full","Cropped","12%","Mussel and littorine counts low due to large amount of glare. dead balanus grouping suggests Nucella predation "
+"2013-08-20_YB-BFq1",2013-08-19,2013-08-20,"YB","BF","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","some photo glare. algae patces make it hard to identify organisms"
+"2013-08-20_YB-BFq4",2013-08-19,2013-08-20,"YB","BF","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","glare/algae"
+"2013-08-20_YB-BFq9",2013-08-19,2013-08-20,"YB","BF","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","12%","Mussel and littorine counts low due to large amount of glare. dead balanus grouping suggests Nucella predation "
+"2013-08-20_YB-BFq1",2013-08-19,2013-08-20,"YB","BF","1","Cth","Chthamalus_dalli","Type 3",816,0.015625,52224,"c","Stephanie Merhoff","Finished","Full","Cropped","10%","some photo glare. algae patces make it hard to identify organisms"
+"2013-08-20_YB-BFq4",2013-08-19,2013-08-20,"YB","BF","4","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","30%","glare/algae"
+"2013-08-20_YB-BFq9",2013-08-19,2013-08-20,"YB","BF","9","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Julia Bingham","Finished","Full","Cropped","12%","Mussel and littorine counts low due to large amount of glare. dead balanus grouping suggests Nucella predation "
+"2013-08-20_YB-BFq1",2013-08-19,2013-08-20,"YB","BF","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","10%","some photo glare. algae patces make it hard to identify organisms"
+"2013-08-20_YB-BFq4",2013-08-19,2013-08-20,"YB","BF","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","30%","glare/algae"
+"2013-08-20_YB-BFq9",2013-08-19,2013-08-20,"YB","BF","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Julia Bingham","Finished","Full","Cropped","12%","Mussel and littorine counts low due to large amount of glare. dead balanus grouping suggests Nucella predation "
+"2013-08-20_YB-BFq1",2013-08-19,2013-08-20,"YB","BF","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","some photo glare. algae patces make it hard to identify organisms"
+"2013-08-20_YB-BFq4",2013-08-19,2013-08-20,"YB","BF","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","glare/algae"
+"2013-08-20_YB-BFq9",2013-08-19,2013-08-20,"YB","BF","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","12%","Mussel and littorine counts low due to large amount of glare. dead balanus grouping suggests Nucella predation "
+"2013-08-20_YB-BFq1",2013-08-19,2013-08-20,"YB","BF","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","some photo glare. algae patces make it hard to identify organisms"
+"2013-08-20_YB-BFq4",2013-08-19,2013-08-20,"YB","BF","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","glare/algae"
+"2013-08-20_YB-BFq9",2013-08-19,2013-08-20,"YB","BF","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","12%","Mussel and littorine counts low due to large amount of glare. dead balanus grouping suggests Nucella predation "
+"2013-08-20_YB-BFq1",2013-08-19,2013-08-20,"YB","BF","1","Lim","Limpets","Type 12",46,0.0875,525.714285714286,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","some photo glare. algae patces make it hard to identify organisms"
+"2013-08-20_YB-BFq4",2013-08-19,2013-08-20,"YB","BF","4","Lim","Limpets","Type 12",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","glare/algae"
+"2013-08-20_YB-BFq9",2013-08-19,2013-08-20,"YB","BF","9","Lim","Limpets","Type 12",23,0.0875,262.857142857143,NA,"Julia Bingham","Finished","Full","Cropped","12%","Mussel and littorine counts low due to large amount of glare. dead balanus grouping suggests Nucella predation "
+"2013-08-20_YB-BFq1",2013-08-19,2013-08-20,"YB","BF","1","Ls","Littorina_sitkana","Type 13",204,0.0875,2331.42857142857,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","some photo glare. algae patces make it hard to identify organisms"
+"2013-08-20_YB-BFq4",2013-08-19,2013-08-20,"YB","BF","4","Ls","Littorina_sitkana","Type 13",33,0.0875,377.142857142857,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","glare/algae"
+"2013-08-20_YB-BFq9",2013-08-19,2013-08-20,"YB","BF","9","Ls","Littorina_sitkana","Type 13",135,0.0875,1542.85714285714,NA,"Julia Bingham","Finished","Full","Cropped","12%","Mussel and littorine counts low due to large amount of glare. dead balanus grouping suggests Nucella predation "
+"2013-08-20_YB-BFq1",2013-08-19,2013-08-20,"YB","BF","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","some photo glare. algae patces make it hard to identify organisms"
+"2013-08-20_YB-BFq4",2013-08-19,2013-08-20,"YB","BF","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","glare/algae"
+"2013-08-20_YB-BFq9",2013-08-19,2013-08-20,"YB","BF","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","12%","Mussel and littorine counts low due to large amount of glare. dead balanus grouping suggests Nucella predation "
+"2013-08-20_YB-BFq1",2013-08-19,2013-08-20,"YB","BF","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","some photo glare. algae patces make it hard to identify organisms"
+"2013-08-20_YB-BFq4",2013-08-19,2013-08-20,"YB","BF","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","glare/algae"
+"2013-08-20_YB-BFq9",2013-08-19,2013-08-20,"YB","BF","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","12%","Mussel and littorine counts low due to large amount of glare. dead balanus grouping suggests Nucella predation "
+"2013-08-20_YB-BFq1",2013-08-19,2013-08-20,"YB","BF","1","Myt","Mytilus_spp","Type 7",62,0.0875,708.571428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","some photo glare. algae patces make it hard to identify organisms"
+"2013-08-20_YB-BFq4",2013-08-19,2013-08-20,"YB","BF","4","Myt","Mytilus_spp","Type 7",593,0.0875,6777.14285714286,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","glare/algae"
+"2013-08-20_YB-BFq9",2013-08-19,2013-08-20,"YB","BF","9","Myt","Mytilus_spp","Type 7",1805,0.0875,20628.5714285714,NA,"Julia Bingham","Finished","Full","Cropped","12%","Mussel and littorine counts low due to large amount of glare. dead balanus grouping suggests Nucella predation "
+"2013-08-20_YB-BFq1",2013-08-19,2013-08-20,"YB","BF","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","some photo glare. algae patces make it hard to identify organisms"
+"2013-08-20_YB-BFq4",2013-08-19,2013-08-20,"YB","BF","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","glare/algae"
+"2013-08-20_YB-BFq9",2013-08-19,2013-08-20,"YB","BF","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","12%","Mussel and littorine counts low due to large amount of glare. dead balanus grouping suggests Nucella predation "
+"2013-08-20_YB-BFq1",2013-08-19,2013-08-20,"YB","BF","1","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","some photo glare. algae patces make it hard to identify organisms"
+"2013-08-20_YB-BFq4",2013-08-19,2013-08-20,"YB","BF","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","glare/algae"
+"2013-08-20_YB-BFq9",2013-08-19,2013-08-20,"YB","BF","9","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","12%","Mussel and littorine counts low due to large amount of glare. dead balanus grouping suggests Nucella predation "
+"2013-08-20_YB-BFq1",2013-08-19,2013-08-20,"YB","BF","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","some photo glare. algae patces make it hard to identify organisms"
+"2013-08-20_YB-BFq4",2013-08-19,2013-08-20,"YB","BF","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","glare/algae"
+"2013-08-20_YB-BFq9",2013-08-19,2013-08-20,"YB","BF","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","12%","Mussel and littorine counts low due to large amount of glare. dead balanus grouping suggests Nucella predation "
+"2013-08-20_YB-BFq1",2013-08-19,2013-08-20,"YB","BF","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","some photo glare. algae patces make it hard to identify organisms"
+"2013-08-20_YB-BFq4",2013-08-19,2013-08-20,"YB","BF","4","Ner","Nereis_worm","Type 24",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","glare/algae"
+"2013-08-20_YB-BFq9",2013-08-19,2013-08-20,"YB","BF","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","12%","Mussel and littorine counts low due to large amount of glare. dead balanus grouping suggests Nucella predation "
+"2013-08-20_YB-BFq1",2013-08-19,2013-08-20,"YB","BF","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","some photo glare. algae patces make it hard to identify organisms"
+"2013-08-20_YB-BFq4",2013-08-19,2013-08-20,"YB","BF","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","glare/algae"
+"2013-08-20_YB-BFq9",2013-08-19,2013-08-20,"YB","BF","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","12%","Mussel and littorine counts low due to large amount of glare. dead balanus grouping suggests Nucella predation "
+"2013-08-20_YB-BFq1",2013-08-19,2013-08-20,"YB","BF","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","some photo glare. algae patces make it hard to identify organisms"
+"2013-08-20_YB-BFq4",2013-08-19,2013-08-20,"YB","BF","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","glare/algae"
+"2013-08-20_YB-BFq9",2013-08-19,2013-08-20,"YB","BF","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","12%","Mussel and littorine counts low due to large amount of glare. dead balanus grouping suggests Nucella predation "
+"2013-08-20_YB-BFq1",2013-08-19,2013-08-20,"YB","BF","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","some photo glare. algae patces make it hard to identify organisms"
+"2013-08-20_YB-BFq4",2013-08-19,2013-08-20,"YB","BF","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","glare/algae"
+"2013-08-20_YB-BFq9",2013-08-19,2013-08-20,"YB","BF","9","No","Nucella_ostrina","Type 9",3,0.0875,34.2857142857143,NA,"Julia Bingham","Finished","Full","Cropped","12%","Mussel and littorine counts low due to large amount of glare. dead balanus grouping suggests Nucella predation "
+"2013-08-20_YB-BFq1",2013-08-19,2013-08-20,"YB","BF","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","some photo glare. algae patces make it hard to identify organisms"
+"2013-08-20_YB-BFq4",2013-08-19,2013-08-20,"YB","BF","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","glare/algae"
+"2013-08-20_YB-BFq9",2013-08-19,2013-08-20,"YB","BF","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","12%","Mussel and littorine counts low due to large amount of glare. dead balanus grouping suggests Nucella predation "
+"2013-08-20_YB-BFq1",2013-08-19,2013-08-20,"YB","BF","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","some photo glare. algae patces make it hard to identify organisms"
+"2013-08-20_YB-BFq4",2013-08-19,2013-08-20,"YB","BF","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","glare/algae"
+"2013-08-20_YB-BFq9",2013-08-19,2013-08-20,"YB","BF","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","12%","Mussel and littorine counts low due to large amount of glare. dead balanus grouping suggests Nucella predation "
+"2013-08-20_YB-BFq1",2013-08-19,2013-08-20,"YB","BF","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","some photo glare. algae patces make it hard to identify organisms"
+"2013-08-20_YB-BFq4",2013-08-19,2013-08-20,"YB","BF","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","glare/algae"
+"2013-08-20_YB-BFq9",2013-08-19,2013-08-20,"YB","BF","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","12%","Mussel and littorine counts low due to large amount of glare. dead balanus grouping suggests Nucella predation "
+"2013-08-20_YB-BFq1",2013-08-19,2013-08-20,"YB","BF","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","some photo glare. algae patces make it hard to identify organisms"
+"2013-08-20_YB-BFq4",2013-08-19,2013-08-20,"YB","BF","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","glare/algae"
+"2013-08-20_YB-BFq9",2013-08-19,2013-08-20,"YB","BF","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","12%","Mussel and littorine counts low due to large amount of glare. dead balanus grouping suggests Nucella predation "
+"2013-08-20_YB-BFq1",2013-08-19,2013-08-20,"YB","BF","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","some photo glare. algae patces make it hard to identify organisms"
+"2013-08-20_YB-BFq4",2013-08-19,2013-08-20,"YB","BF","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","glare/algae"
+"2013-08-20_YB-BFq9",2013-08-19,2013-08-20,"YB","BF","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","12%","Mussel and littorine counts low due to large amount of glare. dead balanus grouping suggests Nucella predation "
+"2013-08-20_YB-BFq1",2013-08-19,2013-08-20,"YB","BF","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","some photo glare. algae patces make it hard to identify organisms"
+"2013-08-20_YB-BFq4",2013-08-19,2013-08-20,"YB","BF","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","glare/algae"
+"2013-08-20_YB-BFq9",2013-08-19,2013-08-20,"YB","BF","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","12%","Mussel and littorine counts low due to large amount of glare. dead balanus grouping suggests Nucella predation "
+"2013-08-19_YB-Cq2",2013-08-19,2013-08-19,"YB","C","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","All counts may be low due to high water, byssus and algae"
+"2013-08-19_YB-Cq4",2013-08-19,2013-08-19,"YB","C","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to high water and glare"
+"2013-08-19_YB-Cq5",2013-08-19,2013-08-19,"YB","C","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","Counts likely low due to water patches and byssal threads"
+"2013-08-19_YB-Cq6",2013-08-19,2013-08-19,"YB","C","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","All counts may be low due to high water, algae and glare"
+"2013-08-19_YB-Cq2",2013-08-19,2013-08-19,"YB","C","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","All counts may be low due to high water, byssus and algae"
+"2013-08-19_YB-Cq4",2013-08-19,2013-08-19,"YB","C","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to high water and glare"
+"2013-08-19_YB-Cq5",2013-08-19,2013-08-19,"YB","C","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","Counts likely low due to water patches and byssal threads"
+"2013-08-19_YB-Cq6",2013-08-19,2013-08-19,"YB","C","6","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","All counts may be low due to high water, algae and glare"
+"2013-08-19_YB-Cq2",2013-08-19,2013-08-19,"YB","C","2","Bg","Balanus_glandula","Type 1",1852,0.015625,118528,"c","Stephanie Merhoff","Finished","Full","Cropped","25%","All counts may be low due to high water, byssus and algae"
+"2013-08-19_YB-Cq4",2013-08-19,2013-08-19,"YB","C","4","Bg","Balanus_glandula","Type 1",1121,0.015625,71744,"c","Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to high water and glare"
+"2013-08-19_YB-Cq5",2013-08-19,2013-08-19,"YB","C","5","Bg","Balanus_glandula","Type 1",1409,0.015625,90176,"c","Stephanie Merhoff","Finished","Full","Cropped","25%","Counts likely low due to water patches and byssal threads"
+"2013-08-19_YB-Cq6",2013-08-19,2013-08-19,"YB","C","6","Bg","Balanus_glandula","Type 1",1376,0.015625,88064,"c","Stephanie Merhoff","Finished","Full","Cropped","20%","All counts may be low due to high water, algae and glare"
+"2013-08-19_YB-Cq2",2013-08-19,2013-08-19,"YB","C","2","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","25%","All counts may be low due to high water, byssus and algae"
+"2013-08-19_YB-Cq4",2013-08-19,2013-08-19,"YB","C","4","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to high water and glare"
+"2013-08-19_YB-Cq5",2013-08-19,2013-08-19,"YB","C","5","BgD","Balanus_glandula_(dead)","Type 2",1,0.015625,64,"c","Stephanie Merhoff","Finished","Full","Cropped","25%","Counts likely low due to water patches and byssal threads"
+"2013-08-19_YB-Cq6",2013-08-19,2013-08-19,"YB","C","6","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","20%","All counts may be low due to high water, algae and glare"
+"2013-08-19_YB-Cq2",2013-08-19,2013-08-19,"YB","C","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","All counts may be low due to high water, byssus and algae"
+"2013-08-19_YB-Cq4",2013-08-19,2013-08-19,"YB","C","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to high water and glare"
+"2013-08-19_YB-Cq5",2013-08-19,2013-08-19,"YB","C","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","Counts likely low due to water patches and byssal threads"
+"2013-08-19_YB-Cq6",2013-08-19,2013-08-19,"YB","C","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","All counts may be low due to high water, algae and glare"
+"2013-08-19_YB-Cq2",2013-08-19,2013-08-19,"YB","C","2","Cth","Chthamalus_dalli","Type 3",21,0.015625,1344,"c","Stephanie Merhoff","Finished","Full","Cropped","25%","All counts may be low due to high water, byssus and algae"
+"2013-08-19_YB-Cq4",2013-08-19,2013-08-19,"YB","C","4","Cth","Chthamalus_dalli","Type 3",20,0.015625,1280,"c","Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to high water and glare"
+"2013-08-19_YB-Cq5",2013-08-19,2013-08-19,"YB","C","5","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","25%","Counts likely low due to water patches and byssal threads"
+"2013-08-19_YB-Cq6",2013-08-19,2013-08-19,"YB","C","6","Cth","Chthamalus_dalli","Type 3",19,0.015625,1216,"c","Stephanie Merhoff","Finished","Full","Cropped","20%","All counts may be low due to high water, algae and glare"
+"2013-08-19_YB-Cq2",2013-08-19,2013-08-19,"YB","C","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","25%","All counts may be low due to high water, byssus and algae"
+"2013-08-19_YB-Cq4",2013-08-19,2013-08-19,"YB","C","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to high water and glare"
+"2013-08-19_YB-Cq5",2013-08-19,2013-08-19,"YB","C","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","25%","Counts likely low due to water patches and byssal threads"
+"2013-08-19_YB-Cq6",2013-08-19,2013-08-19,"YB","C","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","20%","All counts may be low due to high water, algae and glare"
+"2013-08-19_YB-Cq2",2013-08-19,2013-08-19,"YB","C","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","All counts may be low due to high water, byssus and algae"
+"2013-08-19_YB-Cq4",2013-08-19,2013-08-19,"YB","C","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to high water and glare"
+"2013-08-19_YB-Cq5",2013-08-19,2013-08-19,"YB","C","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","Counts likely low due to water patches and byssal threads"
+"2013-08-19_YB-Cq6",2013-08-19,2013-08-19,"YB","C","6","Emp","Emplectonema worm","Type 23",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","All counts may be low due to high water, algae and glare"
+"2013-08-19_YB-Cq2",2013-08-19,2013-08-19,"YB","C","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","All counts may be low due to high water, byssus and algae"
+"2013-08-19_YB-Cq4",2013-08-19,2013-08-19,"YB","C","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to high water and glare"
+"2013-08-19_YB-Cq5",2013-08-19,2013-08-19,"YB","C","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","Counts likely low due to water patches and byssal threads"
+"2013-08-19_YB-Cq6",2013-08-19,2013-08-19,"YB","C","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","All counts may be low due to high water, algae and glare"
+"2013-08-19_YB-Cq2",2013-08-19,2013-08-19,"YB","C","2","Lim","Limpets","Type 12",6,0.0875,68.5714285714286,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","All counts may be low due to high water, byssus and algae"
+"2013-08-19_YB-Cq4",2013-08-19,2013-08-19,"YB","C","4","Lim","Limpets","Type 12",5,0.0875,57.1428571428571,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to high water and glare"
+"2013-08-19_YB-Cq5",2013-08-19,2013-08-19,"YB","C","5","Lim","Limpets","Type 12",6,0.0875,68.5714285714286,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","Counts likely low due to water patches and byssal threads"
+"2013-08-19_YB-Cq6",2013-08-19,2013-08-19,"YB","C","6","Lim","Limpets","Type 12",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","All counts may be low due to high water, algae and glare"
+"2013-08-19_YB-Cq2",2013-08-19,2013-08-19,"YB","C","2","Ls","Littorina_sitkana","Type 13",22,0.0875,251.428571428571,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","All counts may be low due to high water, byssus and algae"
+"2013-08-19_YB-Cq4",2013-08-19,2013-08-19,"YB","C","4","Ls","Littorina_sitkana","Type 13",14,0.0875,160,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to high water and glare"
+"2013-08-19_YB-Cq5",2013-08-19,2013-08-19,"YB","C","5","Ls","Littorina_sitkana","Type 13",67,0.0875,765.714285714286,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","Counts likely low due to water patches and byssal threads"
+"2013-08-19_YB-Cq6",2013-08-19,2013-08-19,"YB","C","6","Ls","Littorina_sitkana","Type 13",5,0.0875,57.1428571428571,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","All counts may be low due to high water, algae and glare"
+"2013-08-19_YB-Cq2",2013-08-19,2013-08-19,"YB","C","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","All counts may be low due to high water, byssus and algae"
+"2013-08-19_YB-Cq4",2013-08-19,2013-08-19,"YB","C","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to high water and glare"
+"2013-08-19_YB-Cq5",2013-08-19,2013-08-19,"YB","C","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","Counts likely low due to water patches and byssal threads"
+"2013-08-19_YB-Cq6",2013-08-19,2013-08-19,"YB","C","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","All counts may be low due to high water, algae and glare"
+"2013-08-19_YB-Cq2",2013-08-19,2013-08-19,"YB","C","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","All counts may be low due to high water, byssus and algae"
+"2013-08-19_YB-Cq4",2013-08-19,2013-08-19,"YB","C","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to high water and glare"
+"2013-08-19_YB-Cq5",2013-08-19,2013-08-19,"YB","C","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","Counts likely low due to water patches and byssal threads"
+"2013-08-19_YB-Cq6",2013-08-19,2013-08-19,"YB","C","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","All counts may be low due to high water, algae and glare"
+"2013-08-19_YB-Cq2",2013-08-19,2013-08-19,"YB","C","2","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","All counts may be low due to high water, byssus and algae"
+"2013-08-19_YB-Cq4",2013-08-19,2013-08-19,"YB","C","4","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to high water and glare"
+"2013-08-19_YB-Cq5",2013-08-19,2013-08-19,"YB","C","5","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","Counts likely low due to water patches and byssal threads"
+"2013-08-19_YB-Cq6",2013-08-19,2013-08-19,"YB","C","6","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","All counts may be low due to high water, algae and glare"
+"2013-08-19_YB-Cq2",2013-08-19,2013-08-19,"YB","C","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","All counts may be low due to high water, byssus and algae"
+"2013-08-19_YB-Cq4",2013-08-19,2013-08-19,"YB","C","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to high water and glare"
+"2013-08-19_YB-Cq5",2013-08-19,2013-08-19,"YB","C","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","Counts likely low due to water patches and byssal threads"
+"2013-08-19_YB-Cq6",2013-08-19,2013-08-19,"YB","C","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","All counts may be low due to high water, algae and glare"
+"2013-08-19_YB-Cq2",2013-08-19,2013-08-19,"YB","C","2","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","All counts may be low due to high water, byssus and algae"
+"2013-08-19_YB-Cq4",2013-08-19,2013-08-19,"YB","C","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to high water and glare"
+"2013-08-19_YB-Cq5",2013-08-19,2013-08-19,"YB","C","5","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","Counts likely low due to water patches and byssal threads"
+"2013-08-19_YB-Cq6",2013-08-19,2013-08-19,"YB","C","6","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","All counts may be low due to high water, algae and glare"
+"2013-08-19_YB-Cq2",2013-08-19,2013-08-19,"YB","C","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","All counts may be low due to high water, byssus and algae"
+"2013-08-19_YB-Cq4",2013-08-19,2013-08-19,"YB","C","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to high water and glare"
+"2013-08-19_YB-Cq5",2013-08-19,2013-08-19,"YB","C","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","Counts likely low due to water patches and byssal threads"
+"2013-08-19_YB-Cq6",2013-08-19,2013-08-19,"YB","C","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","All counts may be low due to high water, algae and glare"
+"2013-08-19_YB-Cq2",2013-08-19,2013-08-19,"YB","C","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","All counts may be low due to high water, byssus and algae"
+"2013-08-19_YB-Cq4",2013-08-19,2013-08-19,"YB","C","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to high water and glare"
+"2013-08-19_YB-Cq5",2013-08-19,2013-08-19,"YB","C","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","Counts likely low due to water patches and byssal threads"
+"2013-08-19_YB-Cq6",2013-08-19,2013-08-19,"YB","C","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","All counts may be low due to high water, algae and glare"
+"2013-08-19_YB-Cq2",2013-08-19,2013-08-19,"YB","C","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","All counts may be low due to high water, byssus and algae"
+"2013-08-19_YB-Cq4",2013-08-19,2013-08-19,"YB","C","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to high water and glare"
+"2013-08-19_YB-Cq5",2013-08-19,2013-08-19,"YB","C","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","Counts likely low due to water patches and byssal threads"
+"2013-08-19_YB-Cq6",2013-08-19,2013-08-19,"YB","C","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","All counts may be low due to high water, algae and glare"
+"2013-08-19_YB-Cq2",2013-08-19,2013-08-19,"YB","C","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","All counts may be low due to high water, byssus and algae"
+"2013-08-19_YB-Cq4",2013-08-19,2013-08-19,"YB","C","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to high water and glare"
+"2013-08-19_YB-Cq5",2013-08-19,2013-08-19,"YB","C","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","Counts likely low due to water patches and byssal threads"
+"2013-08-19_YB-Cq6",2013-08-19,2013-08-19,"YB","C","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","All counts may be low due to high water, algae and glare"
+"2013-08-19_YB-Cq2",2013-08-19,2013-08-19,"YB","C","2","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","All counts may be low due to high water, byssus and algae"
+"2013-08-19_YB-Cq4",2013-08-19,2013-08-19,"YB","C","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to high water and glare"
+"2013-08-19_YB-Cq5",2013-08-19,2013-08-19,"YB","C","5","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","Counts likely low due to water patches and byssal threads"
+"2013-08-19_YB-Cq6",2013-08-19,2013-08-19,"YB","C","6","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","All counts may be low due to high water, algae and glare"
+"2013-08-19_YB-Cq2",2013-08-19,2013-08-19,"YB","C","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","All counts may be low due to high water, byssus and algae"
+"2013-08-19_YB-Cq4",2013-08-19,2013-08-19,"YB","C","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to high water and glare"
+"2013-08-19_YB-Cq5",2013-08-19,2013-08-19,"YB","C","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","Counts likely low due to water patches and byssal threads"
+"2013-08-19_YB-Cq6",2013-08-19,2013-08-19,"YB","C","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","All counts may be low due to high water, algae and glare"
+"2013-08-19_YB-Cq2",2013-08-19,2013-08-19,"YB","C","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","All counts may be low due to high water, byssus and algae"
+"2013-08-19_YB-Cq4",2013-08-19,2013-08-19,"YB","C","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to high water and glare"
+"2013-08-19_YB-Cq5",2013-08-19,2013-08-19,"YB","C","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","Counts likely low due to water patches and byssal threads"
+"2013-08-19_YB-Cq6",2013-08-19,2013-08-19,"YB","C","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","All counts may be low due to high water, algae and glare"
+"2013-08-19_YB-Cq2",2013-08-19,2013-08-19,"YB","C","2","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","All counts may be low due to high water, byssus and algae"
+"2013-08-19_YB-Cq4",2013-08-19,2013-08-19,"YB","C","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to high water and glare"
+"2013-08-19_YB-Cq5",2013-08-19,2013-08-19,"YB","C","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","Counts likely low due to water patches and byssal threads"
+"2013-08-19_YB-Cq6",2013-08-19,2013-08-19,"YB","C","6","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","All counts may be low due to high water, algae and glare"
+"2013-08-19_YB-Cq2",2013-08-19,2013-08-19,"YB","C","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","All counts may be low due to high water, byssus and algae"
+"2013-08-19_YB-Cq4",2013-08-19,2013-08-19,"YB","C","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to high water and glare"
+"2013-08-19_YB-Cq5",2013-08-19,2013-08-19,"YB","C","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","Counts likely low due to water patches and byssal threads"
+"2013-08-19_YB-Cq6",2013-08-19,2013-08-19,"YB","C","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","All counts may be low due to high water, algae and glare"
+"2013-08-19_YB-Cq2",2013-08-19,2013-08-19,"YB","C","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","All counts may be low due to high water, byssus and algae"
+"2013-08-19_YB-Cq4",2013-08-19,2013-08-19,"YB","C","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to high water and glare"
+"2013-08-19_YB-Cq5",2013-08-19,2013-08-19,"YB","C","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","Counts likely low due to water patches and byssal threads"
+"2013-08-19_YB-Cq6",2013-08-19,2013-08-19,"YB","C","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","All counts may be low due to high water, algae and glare"
+"2013-08-19_YB-Cq2",2013-08-19,2013-08-19,"YB","C","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","All counts may be low due to high water, byssus and algae"
+"2013-08-19_YB-Cq4",2013-08-19,2013-08-19,"YB","C","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to high water and glare"
+"2013-08-19_YB-Cq5",2013-08-19,2013-08-19,"YB","C","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","Counts likely low due to water patches and byssal threads"
+"2013-08-19_YB-Cq6",2013-08-19,2013-08-19,"YB","C","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","All counts may be low due to high water, algae and glare"
+"2013-08-19_YB-Dq3",2013-08-19,2013-08-19,"YB","D","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water patches"
+"2013-08-19_YB-Dq4",2013-08-19,2013-08-19,"YB","D","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","40%","All counts may be low due to high algae coverage"
+"2013-08-19_YB-Dq5",2013-08-19,2013-08-19,"YB","D","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","All counts may be low due to high algae coverage"
+"2013-08-19_YB-Dq3",2013-08-19,2013-08-19,"YB","D","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water patches"
+"2013-08-19_YB-Dq4",2013-08-19,2013-08-19,"YB","D","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","40%","All counts may be low due to high algae coverage"
+"2013-08-19_YB-Dq5",2013-08-19,2013-08-19,"YB","D","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","All counts may be low due to high algae coverage"
+"2013-08-19_YB-Dq3",2013-08-19,2013-08-19,"YB","D","3","Bg","Balanus_glandula","Type 1",1828,0.015625,116992,"c","Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water patches"
+"2013-08-19_YB-Dq4",2013-08-19,2013-08-19,"YB","D","4","Bg","Balanus_glandula","Type 1",2488,0.015625,159232,"c","Stephanie Merhoff","Finished","Full","Cropped","40%","All counts may be low due to high algae coverage"
+"2013-08-19_YB-Dq5",2013-08-19,2013-08-19,"YB","D","5","Bg","Balanus_glandula","Type 1",1128,0.015625,72192,"c","Stephanie Merhoff","Finished","Full","Cropped","50%","All counts may be low due to high algae coverage"
+"2013-08-19_YB-Dq3",2013-08-19,2013-08-19,"YB","D","3","BgD","Balanus_glandula_(dead)","Type 2",1,0.015625,64,"c","Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water patches"
+"2013-08-19_YB-Dq4",2013-08-19,2013-08-19,"YB","D","4","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","40%","All counts may be low due to high algae coverage"
+"2013-08-19_YB-Dq5",2013-08-19,2013-08-19,"YB","D","5","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","50%","All counts may be low due to high algae coverage"
+"2013-08-19_YB-Dq3",2013-08-19,2013-08-19,"YB","D","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water patches"
+"2013-08-19_YB-Dq4",2013-08-19,2013-08-19,"YB","D","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","40%","All counts may be low due to high algae coverage"
+"2013-08-19_YB-Dq5",2013-08-19,2013-08-19,"YB","D","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","All counts may be low due to high algae coverage"
+"2013-08-19_YB-Dq3",2013-08-19,2013-08-19,"YB","D","3","Cth","Chthamalus_dalli","Type 3",19,0.015625,1216,"c","Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water patches"
+"2013-08-19_YB-Dq4",2013-08-19,2013-08-19,"YB","D","4","Cth","Chthamalus_dalli","Type 3",9,0.015625,576,"c","Stephanie Merhoff","Finished","Full","Cropped","40%","All counts may be low due to high algae coverage"
+"2013-08-19_YB-Dq5",2013-08-19,2013-08-19,"YB","D","5","Cth","Chthamalus_dalli","Type 3",3,0.015625,192,"c","Stephanie Merhoff","Finished","Full","Cropped","50%","All counts may be low due to high algae coverage"
+"2013-08-19_YB-Dq3",2013-08-19,2013-08-19,"YB","D","3","CthD","Chthamalus_dalli (dead)","Type 4",1,0.015625,64,"c","Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water patches"
+"2013-08-19_YB-Dq4",2013-08-19,2013-08-19,"YB","D","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","40%","All counts may be low due to high algae coverage"
+"2013-08-19_YB-Dq5",2013-08-19,2013-08-19,"YB","D","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","50%","All counts may be low due to high algae coverage"
+"2013-08-19_YB-Dq3",2013-08-19,2013-08-19,"YB","D","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water patches"
+"2013-08-19_YB-Dq4",2013-08-19,2013-08-19,"YB","D","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","40%","All counts may be low due to high algae coverage"
+"2013-08-19_YB-Dq5",2013-08-19,2013-08-19,"YB","D","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","All counts may be low due to high algae coverage"
+"2013-08-19_YB-Dq3",2013-08-19,2013-08-19,"YB","D","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water patches"
+"2013-08-19_YB-Dq4",2013-08-19,2013-08-19,"YB","D","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","40%","All counts may be low due to high algae coverage"
+"2013-08-19_YB-Dq5",2013-08-19,2013-08-19,"YB","D","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","All counts may be low due to high algae coverage"
+"2013-08-19_YB-Dq3",2013-08-19,2013-08-19,"YB","D","3","Lim","Limpets","Type 12",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water patches"
+"2013-08-19_YB-Dq4",2013-08-19,2013-08-19,"YB","D","4","Lim","Limpets","Type 12",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","40%","All counts may be low due to high algae coverage"
+"2013-08-19_YB-Dq5",2013-08-19,2013-08-19,"YB","D","5","Lim","Limpets","Type 12",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","All counts may be low due to high algae coverage"
+"2013-08-19_YB-Dq3",2013-08-19,2013-08-19,"YB","D","3","Ls","Littorina_sitkana","Type 13",17,0.0875,194.285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water patches"
+"2013-08-19_YB-Dq4",2013-08-19,2013-08-19,"YB","D","4","Ls","Littorina_sitkana","Type 13",29,0.0875,331.428571428571,NA,"Stephanie Merhoff","Finished","Full","Cropped","40%","All counts may be low due to high algae coverage"
+"2013-08-19_YB-Dq5",2013-08-19,2013-08-19,"YB","D","5","Ls","Littorina_sitkana","Type 13",13,0.0875,148.571428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","All counts may be low due to high algae coverage"
+"2013-08-19_YB-Dq3",2013-08-19,2013-08-19,"YB","D","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water patches"
+"2013-08-19_YB-Dq4",2013-08-19,2013-08-19,"YB","D","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","40%","All counts may be low due to high algae coverage"
+"2013-08-19_YB-Dq5",2013-08-19,2013-08-19,"YB","D","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","All counts may be low due to high algae coverage"
+"2013-08-19_YB-Dq3",2013-08-19,2013-08-19,"YB","D","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water patches"
+"2013-08-19_YB-Dq4",2013-08-19,2013-08-19,"YB","D","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","40%","All counts may be low due to high algae coverage"
+"2013-08-19_YB-Dq5",2013-08-19,2013-08-19,"YB","D","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","All counts may be low due to high algae coverage"
+"2013-08-19_YB-Dq3",2013-08-19,2013-08-19,"YB","D","3","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water patches"
+"2013-08-19_YB-Dq4",2013-08-19,2013-08-19,"YB","D","4","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","40%","All counts may be low due to high algae coverage"
+"2013-08-19_YB-Dq5",2013-08-19,2013-08-19,"YB","D","5","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","All counts may be low due to high algae coverage"
+"2013-08-19_YB-Dq3",2013-08-19,2013-08-19,"YB","D","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water patches"
+"2013-08-19_YB-Dq4",2013-08-19,2013-08-19,"YB","D","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","40%","All counts may be low due to high algae coverage"
+"2013-08-19_YB-Dq5",2013-08-19,2013-08-19,"YB","D","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","All counts may be low due to high algae coverage"
+"2013-08-19_YB-Dq3",2013-08-19,2013-08-19,"YB","D","3","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water patches"
+"2013-08-19_YB-Dq4",2013-08-19,2013-08-19,"YB","D","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","40%","All counts may be low due to high algae coverage"
+"2013-08-19_YB-Dq5",2013-08-19,2013-08-19,"YB","D","5","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","All counts may be low due to high algae coverage"
+"2013-08-19_YB-Dq3",2013-08-19,2013-08-19,"YB","D","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water patches"
+"2013-08-19_YB-Dq4",2013-08-19,2013-08-19,"YB","D","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","40%","All counts may be low due to high algae coverage"
+"2013-08-19_YB-Dq5",2013-08-19,2013-08-19,"YB","D","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","All counts may be low due to high algae coverage"
+"2013-08-19_YB-Dq3",2013-08-19,2013-08-19,"YB","D","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water patches"
+"2013-08-19_YB-Dq4",2013-08-19,2013-08-19,"YB","D","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","40%","All counts may be low due to high algae coverage"
+"2013-08-19_YB-Dq5",2013-08-19,2013-08-19,"YB","D","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","All counts may be low due to high algae coverage"
+"2013-08-19_YB-Dq3",2013-08-19,2013-08-19,"YB","D","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water patches"
+"2013-08-19_YB-Dq4",2013-08-19,2013-08-19,"YB","D","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","40%","All counts may be low due to high algae coverage"
+"2013-08-19_YB-Dq5",2013-08-19,2013-08-19,"YB","D","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","All counts may be low due to high algae coverage"
+"2013-08-19_YB-Dq3",2013-08-19,2013-08-19,"YB","D","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water patches"
+"2013-08-19_YB-Dq4",2013-08-19,2013-08-19,"YB","D","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","40%","All counts may be low due to high algae coverage"
+"2013-08-19_YB-Dq5",2013-08-19,2013-08-19,"YB","D","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","All counts may be low due to high algae coverage"
+"2013-08-19_YB-Dq3",2013-08-19,2013-08-19,"YB","D","3","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water patches"
+"2013-08-19_YB-Dq4",2013-08-19,2013-08-19,"YB","D","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","40%","All counts may be low due to high algae coverage"
+"2013-08-19_YB-Dq5",2013-08-19,2013-08-19,"YB","D","5","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","All counts may be low due to high algae coverage"
+"2013-08-19_YB-Dq3",2013-08-19,2013-08-19,"YB","D","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water patches"
+"2013-08-19_YB-Dq4",2013-08-19,2013-08-19,"YB","D","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","40%","All counts may be low due to high algae coverage"
+"2013-08-19_YB-Dq5",2013-08-19,2013-08-19,"YB","D","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","All counts may be low due to high algae coverage"
+"2013-08-19_YB-Dq3",2013-08-19,2013-08-19,"YB","D","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water patches"
+"2013-08-19_YB-Dq4",2013-08-19,2013-08-19,"YB","D","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","40%","All counts may be low due to high algae coverage"
+"2013-08-19_YB-Dq5",2013-08-19,2013-08-19,"YB","D","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","All counts may be low due to high algae coverage"
+"2013-08-19_YB-Dq3",2013-08-19,2013-08-19,"YB","D","3","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water patches"
+"2013-08-19_YB-Dq4",2013-08-19,2013-08-19,"YB","D","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","40%","All counts may be low due to high algae coverage"
+"2013-08-19_YB-Dq5",2013-08-19,2013-08-19,"YB","D","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","All counts may be low due to high algae coverage"
+"2013-08-19_YB-Dq3",2013-08-19,2013-08-19,"YB","D","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water patches"
+"2013-08-19_YB-Dq4",2013-08-19,2013-08-19,"YB","D","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","40%","All counts may be low due to high algae coverage"
+"2013-08-19_YB-Dq5",2013-08-19,2013-08-19,"YB","D","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","All counts may be low due to high algae coverage"
+"2013-08-19_YB-Dq3",2013-08-19,2013-08-19,"YB","D","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water patches"
+"2013-08-19_YB-Dq4",2013-08-19,2013-08-19,"YB","D","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","40%","All counts may be low due to high algae coverage"
+"2013-08-19_YB-Dq5",2013-08-19,2013-08-19,"YB","D","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","All counts may be low due to high algae coverage"
+"2013-08-19_YB-Dq3",2013-08-19,2013-08-19,"YB","D","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","All counts may be low due to high water patches"
+"2013-08-19_YB-Dq4",2013-08-19,2013-08-19,"YB","D","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","40%","All counts may be low due to high algae coverage"
+"2013-08-19_YB-Dq5",2013-08-19,2013-08-19,"YB","D","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","All counts may be low due to high algae coverage"
+"2013-08-19_YB-Eq3",2013-08-19,2013-08-19,"YB","E","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to high water"
+"2013-08-19_YB-Eq4",2013-08-19,2013-08-19,"YB","E","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to high water"
+"2013-08-19_YB-Eq8",2013-08-19,2013-08-19,"YB","E","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water"
+"2013-08-19_YB-Eq3",2013-08-19,2013-08-19,"YB","E","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to high water"
+"2013-08-19_YB-Eq4",2013-08-19,2013-08-19,"YB","E","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to high water"
+"2013-08-19_YB-Eq8",2013-08-19,2013-08-19,"YB","E","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water"
+"2013-08-19_YB-Eq3",2013-08-19,2013-08-19,"YB","E","3","Bg","Balanus_glandula","Type 1",2110,0.015625,135040,"c","Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to high water"
+"2013-08-19_YB-Eq4",2013-08-19,2013-08-19,"YB","E","4","Bg","Balanus_glandula","Type 1",1848,0.015625,118272,"c","Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to high water"
+"2013-08-19_YB-Eq8",2013-08-19,2013-08-19,"YB","E","8","Bg","Balanus_glandula","Type 1",1636,0.015625,104704,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water"
+"2013-08-19_YB-Eq3",2013-08-19,2013-08-19,"YB","E","3","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to high water"
+"2013-08-19_YB-Eq4",2013-08-19,2013-08-19,"YB","E","4","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to high water"
+"2013-08-19_YB-Eq8",2013-08-19,2013-08-19,"YB","E","8","BgD","Balanus_glandula_(dead)","Type 2",3,0.015625,192,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water"
+"2013-08-19_YB-Eq3",2013-08-19,2013-08-19,"YB","E","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to high water"
+"2013-08-19_YB-Eq4",2013-08-19,2013-08-19,"YB","E","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to high water"
+"2013-08-19_YB-Eq8",2013-08-19,2013-08-19,"YB","E","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water"
+"2013-08-19_YB-Eq3",2013-08-19,2013-08-19,"YB","E","3","Cth","Chthamalus_dalli","Type 3",22,0.015625,1408,"c","Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to high water"
+"2013-08-19_YB-Eq4",2013-08-19,2013-08-19,"YB","E","4","Cth","Chthamalus_dalli","Type 3",15,0.015625,960,"c","Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to high water"
+"2013-08-19_YB-Eq8",2013-08-19,2013-08-19,"YB","E","8","Cth","Chthamalus_dalli","Type 3",24,0.015625,1536,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water"
+"2013-08-19_YB-Eq3",2013-08-19,2013-08-19,"YB","E","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to high water"
+"2013-08-19_YB-Eq4",2013-08-19,2013-08-19,"YB","E","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to high water"
+"2013-08-19_YB-Eq8",2013-08-19,2013-08-19,"YB","E","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water"
+"2013-08-19_YB-Eq3",2013-08-19,2013-08-19,"YB","E","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to high water"
+"2013-08-19_YB-Eq4",2013-08-19,2013-08-19,"YB","E","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to high water"
+"2013-08-19_YB-Eq8",2013-08-19,2013-08-19,"YB","E","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water"
+"2013-08-19_YB-Eq3",2013-08-19,2013-08-19,"YB","E","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to high water"
+"2013-08-19_YB-Eq4",2013-08-19,2013-08-19,"YB","E","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to high water"
+"2013-08-19_YB-Eq8",2013-08-19,2013-08-19,"YB","E","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water"
+"2013-08-19_YB-Eq3",2013-08-19,2013-08-19,"YB","E","3","Lim","Limpets","Type 12",8,0.0875,91.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to high water"
+"2013-08-19_YB-Eq4",2013-08-19,2013-08-19,"YB","E","4","Lim","Limpets","Type 12",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to high water"
+"2013-08-19_YB-Eq8",2013-08-19,2013-08-19,"YB","E","8","Lim","Limpets","Type 12",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water"
+"2013-08-19_YB-Eq3",2013-08-19,2013-08-19,"YB","E","3","Ls","Littorina_sitkana","Type 13",5,0.0875,57.1428571428571,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to high water"
+"2013-08-19_YB-Eq4",2013-08-19,2013-08-19,"YB","E","4","Ls","Littorina_sitkana","Type 13",7,0.0875,80,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to high water"
+"2013-08-19_YB-Eq8",2013-08-19,2013-08-19,"YB","E","8","Ls","Littorina_sitkana","Type 13",19,0.0875,217.142857142857,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water"
+"2013-08-19_YB-Eq3",2013-08-19,2013-08-19,"YB","E","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to high water"
+"2013-08-19_YB-Eq4",2013-08-19,2013-08-19,"YB","E","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to high water"
+"2013-08-19_YB-Eq8",2013-08-19,2013-08-19,"YB","E","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water"
+"2013-08-19_YB-Eq3",2013-08-19,2013-08-19,"YB","E","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to high water"
+"2013-08-19_YB-Eq4",2013-08-19,2013-08-19,"YB","E","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to high water"
+"2013-08-19_YB-Eq8",2013-08-19,2013-08-19,"YB","E","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water"
+"2013-08-19_YB-Eq3",2013-08-19,2013-08-19,"YB","E","3","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to high water"
+"2013-08-19_YB-Eq4",2013-08-19,2013-08-19,"YB","E","4","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to high water"
+"2013-08-19_YB-Eq8",2013-08-19,2013-08-19,"YB","E","8","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water"
+"2013-08-19_YB-Eq3",2013-08-19,2013-08-19,"YB","E","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to high water"
+"2013-08-19_YB-Eq4",2013-08-19,2013-08-19,"YB","E","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to high water"
+"2013-08-19_YB-Eq8",2013-08-19,2013-08-19,"YB","E","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water"
+"2013-08-19_YB-Eq3",2013-08-19,2013-08-19,"YB","E","3","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to high water"
+"2013-08-19_YB-Eq4",2013-08-19,2013-08-19,"YB","E","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to high water"
+"2013-08-19_YB-Eq8",2013-08-19,2013-08-19,"YB","E","8","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water"
+"2013-08-19_YB-Eq3",2013-08-19,2013-08-19,"YB","E","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to high water"
+"2013-08-19_YB-Eq4",2013-08-19,2013-08-19,"YB","E","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to high water"
+"2013-08-19_YB-Eq8",2013-08-19,2013-08-19,"YB","E","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water"
+"2013-08-19_YB-Eq3",2013-08-19,2013-08-19,"YB","E","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to high water"
+"2013-08-19_YB-Eq4",2013-08-19,2013-08-19,"YB","E","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to high water"
+"2013-08-19_YB-Eq8",2013-08-19,2013-08-19,"YB","E","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water"
+"2013-08-19_YB-Eq3",2013-08-19,2013-08-19,"YB","E","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to high water"
+"2013-08-19_YB-Eq4",2013-08-19,2013-08-19,"YB","E","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to high water"
+"2013-08-19_YB-Eq8",2013-08-19,2013-08-19,"YB","E","8","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water"
+"2013-08-19_YB-Eq3",2013-08-19,2013-08-19,"YB","E","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to high water"
+"2013-08-19_YB-Eq4",2013-08-19,2013-08-19,"YB","E","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to high water"
+"2013-08-19_YB-Eq8",2013-08-19,2013-08-19,"YB","E","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water"
+"2013-08-19_YB-Eq3",2013-08-19,2013-08-19,"YB","E","3","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to high water"
+"2013-08-19_YB-Eq4",2013-08-19,2013-08-19,"YB","E","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to high water"
+"2013-08-19_YB-Eq8",2013-08-19,2013-08-19,"YB","E","8","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water"
+"2013-08-19_YB-Eq3",2013-08-19,2013-08-19,"YB","E","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to high water"
+"2013-08-19_YB-Eq4",2013-08-19,2013-08-19,"YB","E","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to high water"
+"2013-08-19_YB-Eq8",2013-08-19,2013-08-19,"YB","E","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water"
+"2013-08-19_YB-Eq3",2013-08-19,2013-08-19,"YB","E","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to high water"
+"2013-08-19_YB-Eq4",2013-08-19,2013-08-19,"YB","E","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to high water"
+"2013-08-19_YB-Eq8",2013-08-19,2013-08-19,"YB","E","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water"
+"2013-08-19_YB-Eq3",2013-08-19,2013-08-19,"YB","E","3","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to high water"
+"2013-08-19_YB-Eq4",2013-08-19,2013-08-19,"YB","E","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to high water"
+"2013-08-19_YB-Eq8",2013-08-19,2013-08-19,"YB","E","8","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water"
+"2013-08-19_YB-Eq3",2013-08-19,2013-08-19,"YB","E","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to high water"
+"2013-08-19_YB-Eq4",2013-08-19,2013-08-19,"YB","E","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to high water"
+"2013-08-19_YB-Eq8",2013-08-19,2013-08-19,"YB","E","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water"
+"2013-08-19_YB-Eq3",2013-08-19,2013-08-19,"YB","E","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to high water"
+"2013-08-19_YB-Eq4",2013-08-19,2013-08-19,"YB","E","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to high water"
+"2013-08-19_YB-Eq8",2013-08-19,2013-08-19,"YB","E","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water"
+"2013-08-19_YB-Eq3",2013-08-19,2013-08-19,"YB","E","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to high water"
+"2013-08-19_YB-Eq4",2013-08-19,2013-08-19,"YB","E","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","All counts may be low due to high water"
+"2013-08-19_YB-Eq8",2013-08-19,2013-08-19,"YB","E","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water"
+"2013-08-19_YB-Fq1",2013-08-19,2013-08-19,"YB","F","1","Alg","Algae","Type 19",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-Fq4",2013-08-19,2013-08-19,"YB","F","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","All counts may be low due to high water and algae coverage"
+"2013-08-19_YB-Fq5",2013-08-19,2013-08-19,"YB","F","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water"
+"2013-08-19_YB-Fq6",2013-08-19,2013-08-19,"YB","F","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","35%","All counts may be low due to high water"
+"2013-08-19_YB-Fq7",2013-08-19,2013-08-19,"YB","F","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","counts may be low due to glare"
+"2013-08-19_YB-Fq1",2013-08-19,2013-08-19,"YB","F","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-Fq4",2013-08-19,2013-08-19,"YB","F","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","All counts may be low due to high water and algae coverage"
+"2013-08-19_YB-Fq5",2013-08-19,2013-08-19,"YB","F","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water"
+"2013-08-19_YB-Fq6",2013-08-19,2013-08-19,"YB","F","6","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","35%","All counts may be low due to high water"
+"2013-08-19_YB-Fq7",2013-08-19,2013-08-19,"YB","F","7","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","counts may be low due to glare"
+"2013-08-19_YB-Fq1",2013-08-19,2013-08-19,"YB","F","1","Bg","Balanus_glandula","Type 1",2514,0.015625,160896,"c","Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-Fq4",2013-08-19,2013-08-19,"YB","F","4","Bg","Balanus_glandula","Type 1",1601,0.015625,102464,"c","Stephanie Merhoff","Finished","Full","Cropped","20%","All counts may be low due to high water and algae coverage"
+"2013-08-19_YB-Fq5",2013-08-19,2013-08-19,"YB","F","5","Bg","Balanus_glandula","Type 1",1824,0.015625,116736,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water"
+"2013-08-19_YB-Fq6",2013-08-19,2013-08-19,"YB","F","6","Bg","Balanus_glandula","Type 1",1684,0.015625,107776,"c","Stephanie Merhoff","Finished","Full","Cropped","35%","All counts may be low due to high water"
+"2013-08-19_YB-Fq7",2013-08-19,2013-08-19,"YB","F","7","Bg","Balanus_glandula","Type 1",1553,0.015625,99392,"c","Stephanie Merhoff","Finished","Full","Cropped","15%","counts may be low due to glare"
+"2013-08-19_YB-Fq1",2013-08-19,2013-08-19,"YB","F","1","BgD","Balanus_glandula_(dead)","Type 2",122,0.015625,7808,"c","Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-Fq4",2013-08-19,2013-08-19,"YB","F","4","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","20%","All counts may be low due to high water and algae coverage"
+"2013-08-19_YB-Fq5",2013-08-19,2013-08-19,"YB","F","5","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water"
+"2013-08-19_YB-Fq6",2013-08-19,2013-08-19,"YB","F","6","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","35%","All counts may be low due to high water"
+"2013-08-19_YB-Fq7",2013-08-19,2013-08-19,"YB","F","7","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","15%","counts may be low due to glare"
+"2013-08-19_YB-Fq1",2013-08-19,2013-08-19,"YB","F","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-Fq4",2013-08-19,2013-08-19,"YB","F","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","All counts may be low due to high water and algae coverage"
+"2013-08-19_YB-Fq5",2013-08-19,2013-08-19,"YB","F","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water"
+"2013-08-19_YB-Fq6",2013-08-19,2013-08-19,"YB","F","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","35%","All counts may be low due to high water"
+"2013-08-19_YB-Fq7",2013-08-19,2013-08-19,"YB","F","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","counts may be low due to glare"
+"2013-08-19_YB-Fq1",2013-08-19,2013-08-19,"YB","F","1","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-Fq4",2013-08-19,2013-08-19,"YB","F","4","Cth","Chthamalus_dalli","Type 3",17,0.015625,1088,"c","Stephanie Merhoff","Finished","Full","Cropped","20%","All counts may be low due to high water and algae coverage"
+"2013-08-19_YB-Fq5",2013-08-19,2013-08-19,"YB","F","5","Cth","Chthamalus_dalli","Type 3",17,0.015625,1088,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water"
+"2013-08-19_YB-Fq6",2013-08-19,2013-08-19,"YB","F","6","Cth","Chthamalus_dalli","Type 3",16,0.015625,1024,"c","Stephanie Merhoff","Finished","Full","Cropped","35%","All counts may be low due to high water"
+"2013-08-19_YB-Fq7",2013-08-19,2013-08-19,"YB","F","7","Cth","Chthamalus_dalli","Type 3",20,0.015625,1280,"c","Stephanie Merhoff","Finished","Full","Cropped","15%","counts may be low due to glare"
+"2013-08-19_YB-Fq1",2013-08-19,2013-08-19,"YB","F","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-Fq4",2013-08-19,2013-08-19,"YB","F","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","20%","All counts may be low due to high water and algae coverage"
+"2013-08-19_YB-Fq5",2013-08-19,2013-08-19,"YB","F","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water"
+"2013-08-19_YB-Fq6",2013-08-19,2013-08-19,"YB","F","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","35%","All counts may be low due to high water"
+"2013-08-19_YB-Fq7",2013-08-19,2013-08-19,"YB","F","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","15%","counts may be low due to glare"
+"2013-08-19_YB-Fq1",2013-08-19,2013-08-19,"YB","F","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-Fq4",2013-08-19,2013-08-19,"YB","F","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","All counts may be low due to high water and algae coverage"
+"2013-08-19_YB-Fq5",2013-08-19,2013-08-19,"YB","F","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water"
+"2013-08-19_YB-Fq6",2013-08-19,2013-08-19,"YB","F","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","35%","All counts may be low due to high water"
+"2013-08-19_YB-Fq7",2013-08-19,2013-08-19,"YB","F","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","counts may be low due to glare"
+"2013-08-19_YB-Fq1",2013-08-19,2013-08-19,"YB","F","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-Fq4",2013-08-19,2013-08-19,"YB","F","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","All counts may be low due to high water and algae coverage"
+"2013-08-19_YB-Fq5",2013-08-19,2013-08-19,"YB","F","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water"
+"2013-08-19_YB-Fq6",2013-08-19,2013-08-19,"YB","F","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","35%","All counts may be low due to high water"
+"2013-08-19_YB-Fq7",2013-08-19,2013-08-19,"YB","F","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","counts may be low due to glare"
+"2013-08-19_YB-Fq1",2013-08-19,2013-08-19,"YB","F","1","Lim","Limpets","Type 12",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-Fq4",2013-08-19,2013-08-19,"YB","F","4","Lim","Limpets","Type 12",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","All counts may be low due to high water and algae coverage"
+"2013-08-19_YB-Fq5",2013-08-19,2013-08-19,"YB","F","5","Lim","Limpets","Type 12",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water"
+"2013-08-19_YB-Fq6",2013-08-19,2013-08-19,"YB","F","6","Lim","Limpets","Type 12",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","35%","All counts may be low due to high water"
+"2013-08-19_YB-Fq7",2013-08-19,2013-08-19,"YB","F","7","Lim","Limpets","Type 12",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","counts may be low due to glare"
+"2013-08-19_YB-Fq1",2013-08-19,2013-08-19,"YB","F","1","Ls","Littorina_sitkana","Type 13",4,0.0875,45.7142857142857,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-Fq4",2013-08-19,2013-08-19,"YB","F","4","Ls","Littorina_sitkana","Type 13",15,0.0875,171.428571428571,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","All counts may be low due to high water and algae coverage"
+"2013-08-19_YB-Fq5",2013-08-19,2013-08-19,"YB","F","5","Ls","Littorina_sitkana","Type 13",11,0.0875,125.714285714286,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water"
+"2013-08-19_YB-Fq6",2013-08-19,2013-08-19,"YB","F","6","Ls","Littorina_sitkana","Type 13",11,0.0875,125.714285714286,NA,"Stephanie Merhoff","Finished","Full","Cropped","35%","All counts may be low due to high water"
+"2013-08-19_YB-Fq7",2013-08-19,2013-08-19,"YB","F","7","Ls","Littorina_sitkana","Type 13",14,0.0875,160,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","counts may be low due to glare"
+"2013-08-19_YB-Fq1",2013-08-19,2013-08-19,"YB","F","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-Fq4",2013-08-19,2013-08-19,"YB","F","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","All counts may be low due to high water and algae coverage"
+"2013-08-19_YB-Fq5",2013-08-19,2013-08-19,"YB","F","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water"
+"2013-08-19_YB-Fq6",2013-08-19,2013-08-19,"YB","F","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","35%","All counts may be low due to high water"
+"2013-08-19_YB-Fq7",2013-08-19,2013-08-19,"YB","F","7","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","counts may be low due to glare"
+"2013-08-19_YB-Fq1",2013-08-19,2013-08-19,"YB","F","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-Fq4",2013-08-19,2013-08-19,"YB","F","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","All counts may be low due to high water and algae coverage"
+"2013-08-19_YB-Fq5",2013-08-19,2013-08-19,"YB","F","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water"
+"2013-08-19_YB-Fq6",2013-08-19,2013-08-19,"YB","F","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","35%","All counts may be low due to high water"
+"2013-08-19_YB-Fq7",2013-08-19,2013-08-19,"YB","F","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","counts may be low due to glare"
+"2013-08-19_YB-Fq1",2013-08-19,2013-08-19,"YB","F","1","Myt","Mytilus_spp","Type 7",11,0.0875,125.714285714286,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-Fq4",2013-08-19,2013-08-19,"YB","F","4","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","All counts may be low due to high water and algae coverage"
+"2013-08-19_YB-Fq5",2013-08-19,2013-08-19,"YB","F","5","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water"
+"2013-08-19_YB-Fq6",2013-08-19,2013-08-19,"YB","F","6","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","35%","All counts may be low due to high water"
+"2013-08-19_YB-Fq7",2013-08-19,2013-08-19,"YB","F","7","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","counts may be low due to glare"
+"2013-08-19_YB-Fq1",2013-08-19,2013-08-19,"YB","F","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-Fq4",2013-08-19,2013-08-19,"YB","F","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","All counts may be low due to high water and algae coverage"
+"2013-08-19_YB-Fq5",2013-08-19,2013-08-19,"YB","F","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water"
+"2013-08-19_YB-Fq6",2013-08-19,2013-08-19,"YB","F","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","35%","All counts may be low due to high water"
+"2013-08-19_YB-Fq7",2013-08-19,2013-08-19,"YB","F","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","counts may be low due to glare"
+"2013-08-19_YB-Fq1",2013-08-19,2013-08-19,"YB","F","1","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-Fq4",2013-08-19,2013-08-19,"YB","F","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","All counts may be low due to high water and algae coverage"
+"2013-08-19_YB-Fq5",2013-08-19,2013-08-19,"YB","F","5","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water"
+"2013-08-19_YB-Fq6",2013-08-19,2013-08-19,"YB","F","6","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","35%","All counts may be low due to high water"
+"2013-08-19_YB-Fq7",2013-08-19,2013-08-19,"YB","F","7","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","counts may be low due to glare"
+"2013-08-19_YB-Fq1",2013-08-19,2013-08-19,"YB","F","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-Fq4",2013-08-19,2013-08-19,"YB","F","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","All counts may be low due to high water and algae coverage"
+"2013-08-19_YB-Fq5",2013-08-19,2013-08-19,"YB","F","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water"
+"2013-08-19_YB-Fq6",2013-08-19,2013-08-19,"YB","F","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","35%","All counts may be low due to high water"
+"2013-08-19_YB-Fq7",2013-08-19,2013-08-19,"YB","F","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","counts may be low due to glare"
+"2013-08-19_YB-Fq1",2013-08-19,2013-08-19,"YB","F","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-Fq4",2013-08-19,2013-08-19,"YB","F","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","All counts may be low due to high water and algae coverage"
+"2013-08-19_YB-Fq5",2013-08-19,2013-08-19,"YB","F","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water"
+"2013-08-19_YB-Fq6",2013-08-19,2013-08-19,"YB","F","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","35%","All counts may be low due to high water"
+"2013-08-19_YB-Fq7",2013-08-19,2013-08-19,"YB","F","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","counts may be low due to glare"
+"2013-08-19_YB-Fq1",2013-08-19,2013-08-19,"YB","F","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-Fq4",2013-08-19,2013-08-19,"YB","F","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","All counts may be low due to high water and algae coverage"
+"2013-08-19_YB-Fq5",2013-08-19,2013-08-19,"YB","F","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water"
+"2013-08-19_YB-Fq6",2013-08-19,2013-08-19,"YB","F","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","35%","All counts may be low due to high water"
+"2013-08-19_YB-Fq7",2013-08-19,2013-08-19,"YB","F","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","counts may be low due to glare"
+"2013-08-19_YB-Fq1",2013-08-19,2013-08-19,"YB","F","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-Fq4",2013-08-19,2013-08-19,"YB","F","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","All counts may be low due to high water and algae coverage"
+"2013-08-19_YB-Fq5",2013-08-19,2013-08-19,"YB","F","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water"
+"2013-08-19_YB-Fq6",2013-08-19,2013-08-19,"YB","F","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","35%","All counts may be low due to high water"
+"2013-08-19_YB-Fq7",2013-08-19,2013-08-19,"YB","F","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","counts may be low due to glare"
+"2013-08-19_YB-Fq1",2013-08-19,2013-08-19,"YB","F","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-Fq4",2013-08-19,2013-08-19,"YB","F","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","All counts may be low due to high water and algae coverage"
+"2013-08-19_YB-Fq5",2013-08-19,2013-08-19,"YB","F","5","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water"
+"2013-08-19_YB-Fq6",2013-08-19,2013-08-19,"YB","F","6","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","35%","All counts may be low due to high water"
+"2013-08-19_YB-Fq7",2013-08-19,2013-08-19,"YB","F","7","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","counts may be low due to glare"
+"2013-08-19_YB-Fq1",2013-08-19,2013-08-19,"YB","F","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-Fq4",2013-08-19,2013-08-19,"YB","F","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","All counts may be low due to high water and algae coverage"
+"2013-08-19_YB-Fq5",2013-08-19,2013-08-19,"YB","F","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water"
+"2013-08-19_YB-Fq6",2013-08-19,2013-08-19,"YB","F","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","35%","All counts may be low due to high water"
+"2013-08-19_YB-Fq7",2013-08-19,2013-08-19,"YB","F","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","counts may be low due to glare"
+"2013-08-19_YB-Fq1",2013-08-19,2013-08-19,"YB","F","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-Fq4",2013-08-19,2013-08-19,"YB","F","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","All counts may be low due to high water and algae coverage"
+"2013-08-19_YB-Fq5",2013-08-19,2013-08-19,"YB","F","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water"
+"2013-08-19_YB-Fq6",2013-08-19,2013-08-19,"YB","F","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","35%","All counts may be low due to high water"
+"2013-08-19_YB-Fq7",2013-08-19,2013-08-19,"YB","F","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","counts may be low due to glare"
+"2013-08-19_YB-Fq1",2013-08-19,2013-08-19,"YB","F","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-Fq4",2013-08-19,2013-08-19,"YB","F","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","All counts may be low due to high water and algae coverage"
+"2013-08-19_YB-Fq5",2013-08-19,2013-08-19,"YB","F","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water"
+"2013-08-19_YB-Fq6",2013-08-19,2013-08-19,"YB","F","6","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","35%","All counts may be low due to high water"
+"2013-08-19_YB-Fq7",2013-08-19,2013-08-19,"YB","F","7","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","counts may be low due to glare"
+"2013-08-19_YB-Fq1",2013-08-19,2013-08-19,"YB","F","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-Fq4",2013-08-19,2013-08-19,"YB","F","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","All counts may be low due to high water and algae coverage"
+"2013-08-19_YB-Fq5",2013-08-19,2013-08-19,"YB","F","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water"
+"2013-08-19_YB-Fq6",2013-08-19,2013-08-19,"YB","F","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","35%","All counts may be low due to high water"
+"2013-08-19_YB-Fq7",2013-08-19,2013-08-19,"YB","F","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","counts may be low due to glare"
+"2013-08-19_YB-Fq1",2013-08-19,2013-08-19,"YB","F","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-Fq4",2013-08-19,2013-08-19,"YB","F","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","All counts may be low due to high water and algae coverage"
+"2013-08-19_YB-Fq5",2013-08-19,2013-08-19,"YB","F","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water"
+"2013-08-19_YB-Fq6",2013-08-19,2013-08-19,"YB","F","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","35%","All counts may be low due to high water"
+"2013-08-19_YB-Fq7",2013-08-19,2013-08-19,"YB","F","7","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","counts may be low due to glare"
+"2013-08-19_YB-Fq1",2013-08-19,2013-08-19,"YB","F","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-08-19_YB-Fq4",2013-08-19,2013-08-19,"YB","F","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","All counts may be low due to high water and algae coverage"
+"2013-08-19_YB-Fq5",2013-08-19,2013-08-19,"YB","F","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water"
+"2013-08-19_YB-Fq6",2013-08-19,2013-08-19,"YB","F","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","35%","All counts may be low due to high water"
+"2013-08-19_YB-Fq7",2013-08-19,2013-08-19,"YB","F","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","counts may be low due to glare"
+"2013-08-19_YB-Gq3",2013-08-19,2013-08-19,"YB","G","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water, byssus and glare"
+"2013-08-19_YB-Gq5",2013-08-19,2013-08-19,"YB","G","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to very high water and glare"
+"2013-08-19_YB-Gq8",2013-08-19,2013-08-19,"YB","G","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","counts likely low due to algae fim, high water, and byssal threads"
+"2013-08-19_YB-Gq3",2013-08-19,2013-08-19,"YB","G","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water, byssus and glare"
+"2013-08-19_YB-Gq5",2013-08-19,2013-08-19,"YB","G","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to very high water and glare"
+"2013-08-19_YB-Gq8",2013-08-19,2013-08-19,"YB","G","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","counts likely low due to algae fim, high water, and byssal threads"
+"2013-08-19_YB-Gq3",2013-08-19,2013-08-19,"YB","G","3","Bg","Balanus_glandula","Type 1",845,0.015625,54080,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water, byssus and glare"
+"2013-08-19_YB-Gq5",2013-08-19,2013-08-19,"YB","G","5","Bg","Balanus_glandula","Type 1",968,0.015625,61952,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to very high water and glare"
+"2013-08-19_YB-Gq8",2013-08-19,2013-08-19,"YB","G","8","Bg","Balanus_glandula","Type 1",1599,0.015625,102336,"c","Stephanie Merhoff","Finished","Full","Cropped","20%","counts likely low due to algae fim, high water, and byssal threads"
+"2013-08-19_YB-Gq3",2013-08-19,2013-08-19,"YB","G","3","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water, byssus and glare"
+"2013-08-19_YB-Gq5",2013-08-19,2013-08-19,"YB","G","5","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to very high water and glare"
+"2013-08-19_YB-Gq8",2013-08-19,2013-08-19,"YB","G","8","BgD","Balanus_glandula_(dead)","Type 2",1,0.015625,64,"c","Stephanie Merhoff","Finished","Full","Cropped","20%","counts likely low due to algae fim, high water, and byssal threads"
+"2013-08-19_YB-Gq3",2013-08-19,2013-08-19,"YB","G","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water, byssus and glare"
+"2013-08-19_YB-Gq5",2013-08-19,2013-08-19,"YB","G","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to very high water and glare"
+"2013-08-19_YB-Gq8",2013-08-19,2013-08-19,"YB","G","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","counts likely low due to algae fim, high water, and byssal threads"
+"2013-08-19_YB-Gq3",2013-08-19,2013-08-19,"YB","G","3","Cth","Chthamalus_dalli","Type 3",1,0.015625,64,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water, byssus and glare"
+"2013-08-19_YB-Gq5",2013-08-19,2013-08-19,"YB","G","5","Cth","Chthamalus_dalli","Type 3",24,0.015625,1536,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to very high water and glare"
+"2013-08-19_YB-Gq8",2013-08-19,2013-08-19,"YB","G","8","Cth","Chthamalus_dalli","Type 3",2,0.015625,128,"c","Stephanie Merhoff","Finished","Full","Cropped","20%","counts likely low due to algae fim, high water, and byssal threads"
+"2013-08-19_YB-Gq3",2013-08-19,2013-08-19,"YB","G","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water, byssus and glare"
+"2013-08-19_YB-Gq5",2013-08-19,2013-08-19,"YB","G","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to very high water and glare"
+"2013-08-19_YB-Gq8",2013-08-19,2013-08-19,"YB","G","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","20%","counts likely low due to algae fim, high water, and byssal threads"
+"2013-08-19_YB-Gq3",2013-08-19,2013-08-19,"YB","G","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water, byssus and glare"
+"2013-08-19_YB-Gq5",2013-08-19,2013-08-19,"YB","G","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to very high water and glare"
+"2013-08-19_YB-Gq8",2013-08-19,2013-08-19,"YB","G","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","counts likely low due to algae fim, high water, and byssal threads"
+"2013-08-19_YB-Gq3",2013-08-19,2013-08-19,"YB","G","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water, byssus and glare"
+"2013-08-19_YB-Gq5",2013-08-19,2013-08-19,"YB","G","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to very high water and glare"
+"2013-08-19_YB-Gq8",2013-08-19,2013-08-19,"YB","G","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","counts likely low due to algae fim, high water, and byssal threads"
+"2013-08-19_YB-Gq3",2013-08-19,2013-08-19,"YB","G","3","Lim","Limpets","Type 12",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water, byssus and glare"
+"2013-08-19_YB-Gq5",2013-08-19,2013-08-19,"YB","G","5","Lim","Limpets","Type 12",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to very high water and glare"
+"2013-08-19_YB-Gq8",2013-08-19,2013-08-19,"YB","G","8","Lim","Limpets","Type 12",6,0.0875,68.5714285714286,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","counts likely low due to algae fim, high water, and byssal threads"
+"2013-08-19_YB-Gq3",2013-08-19,2013-08-19,"YB","G","3","Ls","Littorina_sitkana","Type 13",64,0.0875,731.428571428571,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water, byssus and glare"
+"2013-08-19_YB-Gq5",2013-08-19,2013-08-19,"YB","G","5","Ls","Littorina_sitkana","Type 13",17,0.0875,194.285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to very high water and glare"
+"2013-08-19_YB-Gq8",2013-08-19,2013-08-19,"YB","G","8","Ls","Littorina_sitkana","Type 13",26,0.0875,297.142857142857,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","counts likely low due to algae fim, high water, and byssal threads"
+"2013-08-19_YB-Gq3",2013-08-19,2013-08-19,"YB","G","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water, byssus and glare"
+"2013-08-19_YB-Gq5",2013-08-19,2013-08-19,"YB","G","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to very high water and glare"
+"2013-08-19_YB-Gq8",2013-08-19,2013-08-19,"YB","G","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","counts likely low due to algae fim, high water, and byssal threads"
+"2013-08-19_YB-Gq3",2013-08-19,2013-08-19,"YB","G","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water, byssus and glare"
+"2013-08-19_YB-Gq5",2013-08-19,2013-08-19,"YB","G","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to very high water and glare"
+"2013-08-19_YB-Gq8",2013-08-19,2013-08-19,"YB","G","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","counts likely low due to algae fim, high water, and byssal threads"
+"2013-08-19_YB-Gq3",2013-08-19,2013-08-19,"YB","G","3","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water, byssus and glare"
+"2013-08-19_YB-Gq5",2013-08-19,2013-08-19,"YB","G","5","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to very high water and glare"
+"2013-08-19_YB-Gq8",2013-08-19,2013-08-19,"YB","G","8","Myt","Mytilus_spp","Type 7",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","counts likely low due to algae fim, high water, and byssal threads"
+"2013-08-19_YB-Gq3",2013-08-19,2013-08-19,"YB","G","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water, byssus and glare"
+"2013-08-19_YB-Gq5",2013-08-19,2013-08-19,"YB","G","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to very high water and glare"
+"2013-08-19_YB-Gq8",2013-08-19,2013-08-19,"YB","G","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","counts likely low due to algae fim, high water, and byssal threads"
+"2013-08-19_YB-Gq3",2013-08-19,2013-08-19,"YB","G","3","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water, byssus and glare"
+"2013-08-19_YB-Gq5",2013-08-19,2013-08-19,"YB","G","5","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to very high water and glare"
+"2013-08-19_YB-Gq8",2013-08-19,2013-08-19,"YB","G","8","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","counts likely low due to algae fim, high water, and byssal threads"
+"2013-08-19_YB-Gq3",2013-08-19,2013-08-19,"YB","G","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water, byssus and glare"
+"2013-08-19_YB-Gq5",2013-08-19,2013-08-19,"YB","G","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to very high water and glare"
+"2013-08-19_YB-Gq8",2013-08-19,2013-08-19,"YB","G","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","counts likely low due to algae fim, high water, and byssal threads"
+"2013-08-19_YB-Gq3",2013-08-19,2013-08-19,"YB","G","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water, byssus and glare"
+"2013-08-19_YB-Gq5",2013-08-19,2013-08-19,"YB","G","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to very high water and glare"
+"2013-08-19_YB-Gq8",2013-08-19,2013-08-19,"YB","G","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","counts likely low due to algae fim, high water, and byssal threads"
+"2013-08-19_YB-Gq3",2013-08-19,2013-08-19,"YB","G","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water, byssus and glare"
+"2013-08-19_YB-Gq5",2013-08-19,2013-08-19,"YB","G","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to very high water and glare"
+"2013-08-19_YB-Gq8",2013-08-19,2013-08-19,"YB","G","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","counts likely low due to algae fim, high water, and byssal threads"
+"2013-08-19_YB-Gq3",2013-08-19,2013-08-19,"YB","G","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water, byssus and glare"
+"2013-08-19_YB-Gq5",2013-08-19,2013-08-19,"YB","G","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to very high water and glare"
+"2013-08-19_YB-Gq8",2013-08-19,2013-08-19,"YB","G","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","counts likely low due to algae fim, high water, and byssal threads"
+"2013-08-19_YB-Gq3",2013-08-19,2013-08-19,"YB","G","3","No","Nucella_ostrina","Type 9",6,0.0875,68.5714285714286,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water, byssus and glare"
+"2013-08-19_YB-Gq5",2013-08-19,2013-08-19,"YB","G","5","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to very high water and glare"
+"2013-08-19_YB-Gq8",2013-08-19,2013-08-19,"YB","G","8","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","counts likely low due to algae fim, high water, and byssal threads"
+"2013-08-19_YB-Gq3",2013-08-19,2013-08-19,"YB","G","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water, byssus and glare"
+"2013-08-19_YB-Gq5",2013-08-19,2013-08-19,"YB","G","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to very high water and glare"
+"2013-08-19_YB-Gq8",2013-08-19,2013-08-19,"YB","G","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","counts likely low due to algae fim, high water, and byssal threads"
+"2013-08-19_YB-Gq3",2013-08-19,2013-08-19,"YB","G","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water, byssus and glare"
+"2013-08-19_YB-Gq5",2013-08-19,2013-08-19,"YB","G","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to very high water and glare"
+"2013-08-19_YB-Gq8",2013-08-19,2013-08-19,"YB","G","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","counts likely low due to algae fim, high water, and byssal threads"
+"2013-08-19_YB-Gq3",2013-08-19,2013-08-19,"YB","G","3","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water, byssus and glare"
+"2013-08-19_YB-Gq5",2013-08-19,2013-08-19,"YB","G","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to very high water and glare"
+"2013-08-19_YB-Gq8",2013-08-19,2013-08-19,"YB","G","8","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","counts likely low due to algae fim, high water, and byssal threads"
+"2013-08-19_YB-Gq3",2013-08-19,2013-08-19,"YB","G","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water, byssus and glare"
+"2013-08-19_YB-Gq5",2013-08-19,2013-08-19,"YB","G","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to very high water and glare"
+"2013-08-19_YB-Gq8",2013-08-19,2013-08-19,"YB","G","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","counts likely low due to algae fim, high water, and byssal threads"
+"2013-08-19_YB-Gq3",2013-08-19,2013-08-19,"YB","G","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water, byssus and glare"
+"2013-08-19_YB-Gq5",2013-08-19,2013-08-19,"YB","G","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to very high water and glare"
+"2013-08-19_YB-Gq8",2013-08-19,2013-08-19,"YB","G","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","counts likely low due to algae fim, high water, and byssal threads"
+"2013-08-19_YB-Gq3",2013-08-19,2013-08-19,"YB","G","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to high water, byssus and glare"
+"2013-08-19_YB-Gq5",2013-08-19,2013-08-19,"YB","G","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","All counts may be low due to very high water and glare"
+"2013-08-19_YB-Gq8",2013-08-19,2013-08-19,"YB","G","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","counts likely low due to algae fim, high water, and byssal threads"
+"2013-09-16_YB-Aq6",2013-09-16,2013-09-16,"YB","A","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","10%","Â "
+"2013-09-16_YB-Aq7",2013-09-16,2013-09-16,"YB","A","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Counts likely low due to sediment cover and blur."
+"2013-09-16_YB-Aq9",2013-09-16,2013-09-16,"YB","A","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Picture is very blurry; Counts are only a rough estimate"
+"2013-09-16_YB-Aq6",2013-09-16,2013-09-16,"YB","A","6","Ae","Anemones","Type 14",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","10%","Â "
+"2013-09-16_YB-Aq7",2013-09-16,2013-09-16,"YB","A","7","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Counts likely low due to sediment cover and blur."
+"2013-09-16_YB-Aq9",2013-09-16,2013-09-16,"YB","A","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Picture is very blurry; Counts are only a rough estimate"
+"2013-09-16_YB-Aq6",2013-09-16,2013-09-16,"YB","A","6","Bg","Balanus_glandula","Type 1",1228,0.015625,78592,"c","Celeste Moen","Finished","Full","Cropped","10%","Â "
+"2013-09-16_YB-Aq7",2013-09-16,2013-09-16,"YB","A","7","Bg","Balanus_glandula","Type 1",803,0.015625,51392,"c","Beatriz Vaca","Finished","Full","Cropped","0%","Counts likely low due to sediment cover and blur."
+"2013-09-16_YB-Aq9",2013-09-16,2013-09-16,"YB","A","9","Bg","Balanus_glandula","Type 1",410,0.015625,26240,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","Picture is very blurry; Counts are only a rough estimate"
+"2013-09-16_YB-Aq6",2013-09-16,2013-09-16,"YB","A","6","BgD","Balanus_glandula_(dead)","Type 2",1,0.015625,64,"c","Celeste Moen","Finished","Full","Cropped","10%","Â "
+"2013-09-16_YB-Aq7",2013-09-16,2013-09-16,"YB","A","7","BgD","Balanus_glandula_(dead)","Type 2",1,0.015625,64,"c","Beatriz Vaca","Finished","Full","Cropped","0%","Counts likely low due to sediment cover and blur."
+"2013-09-16_YB-Aq9",2013-09-16,2013-09-16,"YB","A","9","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","Picture is very blurry; Counts are only a rough estimate"
+"2013-09-16_YB-Aq6",2013-09-16,2013-09-16,"YB","A","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","10%","Â "
+"2013-09-16_YB-Aq7",2013-09-16,2013-09-16,"YB","A","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Counts likely low due to sediment cover and blur."
+"2013-09-16_YB-Aq9",2013-09-16,2013-09-16,"YB","A","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Picture is very blurry; Counts are only a rough estimate"
+"2013-09-16_YB-Aq6",2013-09-16,2013-09-16,"YB","A","6","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Celeste Moen","Finished","Full","Cropped","10%","Â "
+"2013-09-16_YB-Aq7",2013-09-16,2013-09-16,"YB","A","7","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","0%","Counts likely low due to sediment cover and blur."
+"2013-09-16_YB-Aq9",2013-09-16,2013-09-16,"YB","A","9","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","Picture is very blurry; Counts are only a rough estimate"
+"2013-09-16_YB-Aq6",2013-09-16,2013-09-16,"YB","A","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Celeste Moen","Finished","Full","Cropped","10%","Â "
+"2013-09-16_YB-Aq7",2013-09-16,2013-09-16,"YB","A","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","0%","Counts likely low due to sediment cover and blur."
+"2013-09-16_YB-Aq9",2013-09-16,2013-09-16,"YB","A","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","Picture is very blurry; Counts are only a rough estimate"
+"2013-09-16_YB-Aq6",2013-09-16,2013-09-16,"YB","A","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","10%","Â "
+"2013-09-16_YB-Aq7",2013-09-16,2013-09-16,"YB","A","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Counts likely low due to sediment cover and blur."
+"2013-09-16_YB-Aq9",2013-09-16,2013-09-16,"YB","A","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Picture is very blurry; Counts are only a rough estimate"
+"2013-09-16_YB-Aq6",2013-09-16,2013-09-16,"YB","A","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","10%","Â "
+"2013-09-16_YB-Aq7",2013-09-16,2013-09-16,"YB","A","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Counts likely low due to sediment cover and blur."
+"2013-09-16_YB-Aq9",2013-09-16,2013-09-16,"YB","A","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Picture is very blurry; Counts are only a rough estimate"
+"2013-09-16_YB-Aq6",2013-09-16,2013-09-16,"YB","A","6","Lim","Limpets","Type 12",4,0.0875,45.7142857142857,NA,"Celeste Moen","Finished","Full","Cropped","10%","Â "
+"2013-09-16_YB-Aq7",2013-09-16,2013-09-16,"YB","A","7","Lim","Limpets","Type 12",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Counts likely low due to sediment cover and blur."
+"2013-09-16_YB-Aq9",2013-09-16,2013-09-16,"YB","A","9","Lim","Limpets","Type 12",10,0.0875,114.285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Picture is very blurry; Counts are only a rough estimate"
+"2013-09-16_YB-Aq6",2013-09-16,2013-09-16,"YB","A","6","Ls","Littorina_sitkana","Type 13",32,0.0875,365.714285714286,NA,"Celeste Moen","Finished","Full","Cropped","10%","Â "
+"2013-09-16_YB-Aq7",2013-09-16,2013-09-16,"YB","A","7","Ls","Littorina_sitkana","Type 13",124,0.0875,1417.14285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Counts likely low due to sediment cover and blur."
+"2013-09-16_YB-Aq9",2013-09-16,2013-09-16,"YB","A","9","Ls","Littorina_sitkana","Type 13",18,0.0875,205.714285714286,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Picture is very blurry; Counts are only a rough estimate"
+"2013-09-16_YB-Aq6",2013-09-16,2013-09-16,"YB","A","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","10%","Â "
+"2013-09-16_YB-Aq7",2013-09-16,2013-09-16,"YB","A","7","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Counts likely low due to sediment cover and blur."
+"2013-09-16_YB-Aq9",2013-09-16,2013-09-16,"YB","A","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Picture is very blurry; Counts are only a rough estimate"
+"2013-09-16_YB-Aq6",2013-09-16,2013-09-16,"YB","A","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","10%","Â "
+"2013-09-16_YB-Aq7",2013-09-16,2013-09-16,"YB","A","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Counts likely low due to sediment cover and blur."
+"2013-09-16_YB-Aq9",2013-09-16,2013-09-16,"YB","A","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Picture is very blurry; Counts are only a rough estimate"
+"2013-09-16_YB-Aq6",2013-09-16,2013-09-16,"YB","A","6","Myt","Mytilus_spp","Type 7",127,0.0875,1451.42857142857,NA,"Celeste Moen","Finished","Full","Cropped","10%","Â "
+"2013-09-16_YB-Aq7",2013-09-16,2013-09-16,"YB","A","7","Myt","Mytilus_spp","Type 7",71,0.0875,811.428571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Counts likely low due to sediment cover and blur."
+"2013-09-16_YB-Aq9",2013-09-16,2013-09-16,"YB","A","9","Myt","Mytilus_spp","Type 7",36,0.0875,411.428571428571,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Picture is very blurry; Counts are only a rough estimate"
+"2013-09-16_YB-Aq6",2013-09-16,2013-09-16,"YB","A","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","10%","Â "
+"2013-09-16_YB-Aq7",2013-09-16,2013-09-16,"YB","A","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Counts likely low due to sediment cover and blur."
+"2013-09-16_YB-Aq9",2013-09-16,2013-09-16,"YB","A","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Picture is very blurry; Counts are only a rough estimate"
+"2013-09-16_YB-Aq6",2013-09-16,2013-09-16,"YB","A","6","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","10%","Â "
+"2013-09-16_YB-Aq7",2013-09-16,2013-09-16,"YB","A","7","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Counts likely low due to sediment cover and blur."
+"2013-09-16_YB-Aq9",2013-09-16,2013-09-16,"YB","A","9","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Picture is very blurry; Counts are only a rough estimate"
+"2013-09-16_YB-Aq6",2013-09-16,2013-09-16,"YB","A","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","10%","Â "
+"2013-09-16_YB-Aq7",2013-09-16,2013-09-16,"YB","A","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Counts likely low due to sediment cover and blur."
+"2013-09-16_YB-Aq9",2013-09-16,2013-09-16,"YB","A","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Picture is very blurry; Counts are only a rough estimate"
+"2013-09-16_YB-Aq6",2013-09-16,2013-09-16,"YB","A","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","10%","Â "
+"2013-09-16_YB-Aq7",2013-09-16,2013-09-16,"YB","A","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Counts likely low due to sediment cover and blur."
+"2013-09-16_YB-Aq9",2013-09-16,2013-09-16,"YB","A","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Picture is very blurry; Counts are only a rough estimate"
+"2013-09-16_YB-Aq6",2013-09-16,2013-09-16,"YB","A","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","10%","Â "
+"2013-09-16_YB-Aq7",2013-09-16,2013-09-16,"YB","A","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Counts likely low due to sediment cover and blur."
+"2013-09-16_YB-Aq9",2013-09-16,2013-09-16,"YB","A","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Picture is very blurry; Counts are only a rough estimate"
+"2013-09-16_YB-Aq6",2013-09-16,2013-09-16,"YB","A","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","10%","Â "
+"2013-09-16_YB-Aq7",2013-09-16,2013-09-16,"YB","A","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Counts likely low due to sediment cover and blur."
+"2013-09-16_YB-Aq9",2013-09-16,2013-09-16,"YB","A","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Picture is very blurry; Counts are only a rough estimate"
+"2013-09-16_YB-Aq6",2013-09-16,2013-09-16,"YB","A","6","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","10%","Â "
+"2013-09-16_YB-Aq7",2013-09-16,2013-09-16,"YB","A","7","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Counts likely low due to sediment cover and blur."
+"2013-09-16_YB-Aq9",2013-09-16,2013-09-16,"YB","A","9","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Picture is very blurry; Counts are only a rough estimate"
+"2013-09-16_YB-Aq6",2013-09-16,2013-09-16,"YB","A","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","10%","Â "
+"2013-09-16_YB-Aq7",2013-09-16,2013-09-16,"YB","A","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Counts likely low due to sediment cover and blur."
+"2013-09-16_YB-Aq9",2013-09-16,2013-09-16,"YB","A","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Picture is very blurry; Counts are only a rough estimate"
+"2013-09-16_YB-Aq6",2013-09-16,2013-09-16,"YB","A","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","10%","Â "
+"2013-09-16_YB-Aq7",2013-09-16,2013-09-16,"YB","A","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Counts likely low due to sediment cover and blur."
+"2013-09-16_YB-Aq9",2013-09-16,2013-09-16,"YB","A","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Picture is very blurry; Counts are only a rough estimate"
+"2013-09-16_YB-Aq6",2013-09-16,2013-09-16,"YB","A","6","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","10%","Â "
+"2013-09-16_YB-Aq7",2013-09-16,2013-09-16,"YB","A","7","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Counts likely low due to sediment cover and blur."
+"2013-09-16_YB-Aq9",2013-09-16,2013-09-16,"YB","A","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Picture is very blurry; Counts are only a rough estimate"
+"2013-09-16_YB-Aq6",2013-09-16,2013-09-16,"YB","A","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","10%","Â "
+"2013-09-16_YB-Aq7",2013-09-16,2013-09-16,"YB","A","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Counts likely low due to sediment cover and blur."
+"2013-09-16_YB-Aq9",2013-09-16,2013-09-16,"YB","A","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Picture is very blurry; Counts are only a rough estimate"
+"2013-09-16_YB-Aq6",2013-09-16,2013-09-16,"YB","A","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","10%","Â "
+"2013-09-16_YB-Aq7",2013-09-16,2013-09-16,"YB","A","7","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Counts likely low due to sediment cover and blur."
+"2013-09-16_YB-Aq9",2013-09-16,2013-09-16,"YB","A","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Picture is very blurry; Counts are only a rough estimate"
+"2013-09-16_YB-Aq6",2013-09-16,2013-09-16,"YB","A","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","10%","Â "
+"2013-09-16_YB-Aq7",2013-09-16,2013-09-16,"YB","A","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Counts likely low due to sediment cover and blur."
+"2013-09-16_YB-Aq9",2013-09-16,2013-09-16,"YB","A","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Picture is very blurry; Counts are only a rough estimate"
+"2013-09-16_YB-ABq1",2013-09-16,2013-09-16,"YB","AB","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-09-16_YB-ABq2",2013-09-16,2013-09-16,"YB","AB","2","Alg","Algae","Type 19",9,0.0875,102.857142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","Mussel and barnacle count may be higher due to glare. Bottom right corner of cropped photo blurry"
+"2013-09-16_YB-ABq3",2013-09-16,2013-09-16,"YB","AB","3","Alg","Algae","Type 19",10,0.0875,114.285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Mussel and barnacle densities were difficult to count due to glare and blurry patches"
+"2013-09-16_YB-ABq4",2013-09-16,2013-09-16,"YB","AB","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","All counts may be low due to glare"
+"2013-09-16_YB-ABq1",2013-09-16,2013-09-16,"YB","AB","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-09-16_YB-ABq2",2013-09-16,2013-09-16,"YB","AB","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","Mussel and barnacle count may be higher due to glare. Bottom right corner of cropped photo blurry"
+"2013-09-16_YB-ABq3",2013-09-16,2013-09-16,"YB","AB","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Mussel and barnacle densities were difficult to count due to glare and blurry patches"
+"2013-09-16_YB-ABq4",2013-09-16,2013-09-16,"YB","AB","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","All counts may be low due to glare"
+"2013-09-16_YB-ABq1",2013-09-16,2013-09-16,"YB","AB","1","Bg","Balanus_glandula","Type 1",537,0.015625,34368,"c","Beatriz Vaca","Finished","Full","Cropped","2%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-09-16_YB-ABq2",2013-09-16,2013-09-16,"YB","AB","2","Bg","Balanus_glandula","Type 1",765,0.015625,48960,"c","Stephanie Merhoff","Finished","Full","Cropped","25%","Mussel and barnacle count may be higher due to glare. Bottom right corner of cropped photo blurry"
+"2013-09-16_YB-ABq3",2013-09-16,2013-09-16,"YB","AB","3","Bg","Balanus_glandula","Type 1",946,0.015625,60544,"c","Stephanie Merhoff","Finished","Full","Cropped","20%","Mussel and barnacle densities were difficult to count due to glare and blurry patches"
+"2013-09-16_YB-ABq4",2013-09-16,2013-09-16,"YB","AB","4","Bg","Balanus_glandula","Type 1",382,0.015625,24448,"c","Stephanie Merhoff","Finished","Full","Cropped","30%","All counts may be low due to glare"
+"2013-09-16_YB-ABq1",2013-09-16,2013-09-16,"YB","AB","1","BgD","Balanus_glandula_(dead)","Type 2",78,0.015625,4992,"c","Beatriz Vaca","Finished","Full","Cropped","2%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-09-16_YB-ABq2",2013-09-16,2013-09-16,"YB","AB","2","BgD","Balanus_glandula_(dead)","Type 2",35,0.015625,2240,"c","Stephanie Merhoff","Finished","Full","Cropped","25%","Mussel and barnacle count may be higher due to glare. Bottom right corner of cropped photo blurry"
+"2013-09-16_YB-ABq3",2013-09-16,2013-09-16,"YB","AB","3","BgD","Balanus_glandula_(dead)","Type 2",62,0.015625,3968,"c","Stephanie Merhoff","Finished","Full","Cropped","20%","Mussel and barnacle densities were difficult to count due to glare and blurry patches"
+"2013-09-16_YB-ABq4",2013-09-16,2013-09-16,"YB","AB","4","BgD","Balanus_glandula_(dead)","Type 2",3,0.015625,192,"c","Stephanie Merhoff","Finished","Full","Cropped","30%","All counts may be low due to glare"
+"2013-09-16_YB-ABq1",2013-09-16,2013-09-16,"YB","AB","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-09-16_YB-ABq2",2013-09-16,2013-09-16,"YB","AB","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","Mussel and barnacle count may be higher due to glare. Bottom right corner of cropped photo blurry"
+"2013-09-16_YB-ABq3",2013-09-16,2013-09-16,"YB","AB","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Mussel and barnacle densities were difficult to count due to glare and blurry patches"
+"2013-09-16_YB-ABq4",2013-09-16,2013-09-16,"YB","AB","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","All counts may be low due to glare"
+"2013-09-16_YB-ABq1",2013-09-16,2013-09-16,"YB","AB","1","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","2%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-09-16_YB-ABq2",2013-09-16,2013-09-16,"YB","AB","2","Cth","Chthamalus_dalli","Type 3",25,0.015625,1600,"c","Stephanie Merhoff","Finished","Full","Cropped","25%","Mussel and barnacle count may be higher due to glare. Bottom right corner of cropped photo blurry"
+"2013-09-16_YB-ABq3",2013-09-16,2013-09-16,"YB","AB","3","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","20%","Mussel and barnacle densities were difficult to count due to glare and blurry patches"
+"2013-09-16_YB-ABq4",2013-09-16,2013-09-16,"YB","AB","4","Cth","Chthamalus_dalli","Type 3",22,0.015625,1408,"c","Stephanie Merhoff","Finished","Full","Cropped","30%","All counts may be low due to glare"
+"2013-09-16_YB-ABq1",2013-09-16,2013-09-16,"YB","AB","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","2%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-09-16_YB-ABq2",2013-09-16,2013-09-16,"YB","AB","2","CthD","Chthamalus_dalli (dead)","Type 4",2,0.015625,128,"c","Stephanie Merhoff","Finished","Full","Cropped","25%","Mussel and barnacle count may be higher due to glare. Bottom right corner of cropped photo blurry"
+"2013-09-16_YB-ABq3",2013-09-16,2013-09-16,"YB","AB","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","20%","Mussel and barnacle densities were difficult to count due to glare and blurry patches"
+"2013-09-16_YB-ABq4",2013-09-16,2013-09-16,"YB","AB","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","30%","All counts may be low due to glare"
+"2013-09-16_YB-ABq1",2013-09-16,2013-09-16,"YB","AB","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-09-16_YB-ABq2",2013-09-16,2013-09-16,"YB","AB","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","Mussel and barnacle count may be higher due to glare. Bottom right corner of cropped photo blurry"
+"2013-09-16_YB-ABq3",2013-09-16,2013-09-16,"YB","AB","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Mussel and barnacle densities were difficult to count due to glare and blurry patches"
+"2013-09-16_YB-ABq4",2013-09-16,2013-09-16,"YB","AB","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","All counts may be low due to glare"
+"2013-09-16_YB-ABq1",2013-09-16,2013-09-16,"YB","AB","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-09-16_YB-ABq2",2013-09-16,2013-09-16,"YB","AB","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","Mussel and barnacle count may be higher due to glare. Bottom right corner of cropped photo blurry"
+"2013-09-16_YB-ABq3",2013-09-16,2013-09-16,"YB","AB","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Mussel and barnacle densities were difficult to count due to glare and blurry patches"
+"2013-09-16_YB-ABq4",2013-09-16,2013-09-16,"YB","AB","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","All counts may be low due to glare"
+"2013-09-16_YB-ABq1",2013-09-16,2013-09-16,"YB","AB","1","Lim","Limpets","Type 12",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-09-16_YB-ABq2",2013-09-16,2013-09-16,"YB","AB","2","Lim","Limpets","Type 12",5,0.0875,57.1428571428571,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","Mussel and barnacle count may be higher due to glare. Bottom right corner of cropped photo blurry"
+"2013-09-16_YB-ABq3",2013-09-16,2013-09-16,"YB","AB","3","Lim","Limpets","Type 12",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Mussel and barnacle densities were difficult to count due to glare and blurry patches"
+"2013-09-16_YB-ABq4",2013-09-16,2013-09-16,"YB","AB","4","Lim","Limpets","Type 12",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","All counts may be low due to glare"
+"2013-09-16_YB-ABq1",2013-09-16,2013-09-16,"YB","AB","1","Ls","Littorina_sitkana","Type 13",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-09-16_YB-ABq2",2013-09-16,2013-09-16,"YB","AB","2","Ls","Littorina_sitkana","Type 13",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","Mussel and barnacle count may be higher due to glare. Bottom right corner of cropped photo blurry"
+"2013-09-16_YB-ABq3",2013-09-16,2013-09-16,"YB","AB","3","Ls","Littorina_sitkana","Type 13",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Mussel and barnacle densities were difficult to count due to glare and blurry patches"
+"2013-09-16_YB-ABq4",2013-09-16,2013-09-16,"YB","AB","4","Ls","Littorina_sitkana","Type 13",90,0.0875,1028.57142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","All counts may be low due to glare"
+"2013-09-16_YB-ABq1",2013-09-16,2013-09-16,"YB","AB","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-09-16_YB-ABq2",2013-09-16,2013-09-16,"YB","AB","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","Mussel and barnacle count may be higher due to glare. Bottom right corner of cropped photo blurry"
+"2013-09-16_YB-ABq3",2013-09-16,2013-09-16,"YB","AB","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Mussel and barnacle densities were difficult to count due to glare and blurry patches"
+"2013-09-16_YB-ABq4",2013-09-16,2013-09-16,"YB","AB","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","All counts may be low due to glare"
+"2013-09-16_YB-ABq1",2013-09-16,2013-09-16,"YB","AB","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-09-16_YB-ABq2",2013-09-16,2013-09-16,"YB","AB","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","Mussel and barnacle count may be higher due to glare. Bottom right corner of cropped photo blurry"
+"2013-09-16_YB-ABq3",2013-09-16,2013-09-16,"YB","AB","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Mussel and barnacle densities were difficult to count due to glare and blurry patches"
+"2013-09-16_YB-ABq4",2013-09-16,2013-09-16,"YB","AB","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","All counts may be low due to glare"
+"2013-09-16_YB-ABq1",2013-09-16,2013-09-16,"YB","AB","1","Myt","Mytilus_spp","Type 7",11,0.0875,125.714285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-09-16_YB-ABq2",2013-09-16,2013-09-16,"YB","AB","2","Myt","Mytilus_spp","Type 7",68,0.0875,777.142857142857,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","Mussel and barnacle count may be higher due to glare. Bottom right corner of cropped photo blurry"
+"2013-09-16_YB-ABq3",2013-09-16,2013-09-16,"YB","AB","3","Myt","Mytilus_spp","Type 7",48,0.0875,548.571428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Mussel and barnacle densities were difficult to count due to glare and blurry patches"
+"2013-09-16_YB-ABq4",2013-09-16,2013-09-16,"YB","AB","4","Myt","Mytilus_spp","Type 7",89,0.0875,1017.14285714286,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","All counts may be low due to glare"
+"2013-09-16_YB-ABq1",2013-09-16,2013-09-16,"YB","AB","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-09-16_YB-ABq2",2013-09-16,2013-09-16,"YB","AB","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","Mussel and barnacle count may be higher due to glare. Bottom right corner of cropped photo blurry"
+"2013-09-16_YB-ABq3",2013-09-16,2013-09-16,"YB","AB","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Mussel and barnacle densities were difficult to count due to glare and blurry patches"
+"2013-09-16_YB-ABq4",2013-09-16,2013-09-16,"YB","AB","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","All counts may be low due to glare"
+"2013-09-16_YB-ABq1",2013-09-16,2013-09-16,"YB","AB","1","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-09-16_YB-ABq2",2013-09-16,2013-09-16,"YB","AB","2","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","Mussel and barnacle count may be higher due to glare. Bottom right corner of cropped photo blurry"
+"2013-09-16_YB-ABq3",2013-09-16,2013-09-16,"YB","AB","3","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Mussel and barnacle densities were difficult to count due to glare and blurry patches"
+"2013-09-16_YB-ABq4",2013-09-16,2013-09-16,"YB","AB","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","All counts may be low due to glare"
+"2013-09-16_YB-ABq1",2013-09-16,2013-09-16,"YB","AB","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-09-16_YB-ABq2",2013-09-16,2013-09-16,"YB","AB","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","Mussel and barnacle count may be higher due to glare. Bottom right corner of cropped photo blurry"
+"2013-09-16_YB-ABq3",2013-09-16,2013-09-16,"YB","AB","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Mussel and barnacle densities were difficult to count due to glare and blurry patches"
+"2013-09-16_YB-ABq4",2013-09-16,2013-09-16,"YB","AB","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","All counts may be low due to glare"
+"2013-09-16_YB-ABq1",2013-09-16,2013-09-16,"YB","AB","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-09-16_YB-ABq2",2013-09-16,2013-09-16,"YB","AB","2","Ner","Nereis_worm","Type 24",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","Mussel and barnacle count may be higher due to glare. Bottom right corner of cropped photo blurry"
+"2013-09-16_YB-ABq3",2013-09-16,2013-09-16,"YB","AB","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Mussel and barnacle densities were difficult to count due to glare and blurry patches"
+"2013-09-16_YB-ABq4",2013-09-16,2013-09-16,"YB","AB","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","All counts may be low due to glare"
+"2013-09-16_YB-ABq1",2013-09-16,2013-09-16,"YB","AB","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-09-16_YB-ABq2",2013-09-16,2013-09-16,"YB","AB","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","Mussel and barnacle count may be higher due to glare. Bottom right corner of cropped photo blurry"
+"2013-09-16_YB-ABq3",2013-09-16,2013-09-16,"YB","AB","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Mussel and barnacle densities were difficult to count due to glare and blurry patches"
+"2013-09-16_YB-ABq4",2013-09-16,2013-09-16,"YB","AB","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","All counts may be low due to glare"
+"2013-09-16_YB-ABq1",2013-09-16,2013-09-16,"YB","AB","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-09-16_YB-ABq2",2013-09-16,2013-09-16,"YB","AB","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","Mussel and barnacle count may be higher due to glare. Bottom right corner of cropped photo blurry"
+"2013-09-16_YB-ABq3",2013-09-16,2013-09-16,"YB","AB","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Mussel and barnacle densities were difficult to count due to glare and blurry patches"
+"2013-09-16_YB-ABq4",2013-09-16,2013-09-16,"YB","AB","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","All counts may be low due to glare"
+"2013-09-16_YB-ABq1",2013-09-16,2013-09-16,"YB","AB","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-09-16_YB-ABq2",2013-09-16,2013-09-16,"YB","AB","2","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","Mussel and barnacle count may be higher due to glare. Bottom right corner of cropped photo blurry"
+"2013-09-16_YB-ABq3",2013-09-16,2013-09-16,"YB","AB","3","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Mussel and barnacle densities were difficult to count due to glare and blurry patches"
+"2013-09-16_YB-ABq4",2013-09-16,2013-09-16,"YB","AB","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","All counts may be low due to glare"
+"2013-09-16_YB-ABq1",2013-09-16,2013-09-16,"YB","AB","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-09-16_YB-ABq2",2013-09-16,2013-09-16,"YB","AB","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","Mussel and barnacle count may be higher due to glare. Bottom right corner of cropped photo blurry"
+"2013-09-16_YB-ABq3",2013-09-16,2013-09-16,"YB","AB","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Mussel and barnacle densities were difficult to count due to glare and blurry patches"
+"2013-09-16_YB-ABq4",2013-09-16,2013-09-16,"YB","AB","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","All counts may be low due to glare"
+"2013-09-16_YB-ABq1",2013-09-16,2013-09-16,"YB","AB","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-09-16_YB-ABq2",2013-09-16,2013-09-16,"YB","AB","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","Mussel and barnacle count may be higher due to glare. Bottom right corner of cropped photo blurry"
+"2013-09-16_YB-ABq3",2013-09-16,2013-09-16,"YB","AB","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Mussel and barnacle densities were difficult to count due to glare and blurry patches"
+"2013-09-16_YB-ABq4",2013-09-16,2013-09-16,"YB","AB","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","All counts may be low due to glare"
+"2013-09-16_YB-ABq1",2013-09-16,2013-09-16,"YB","AB","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-09-16_YB-ABq2",2013-09-16,2013-09-16,"YB","AB","2","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","Mussel and barnacle count may be higher due to glare. Bottom right corner of cropped photo blurry"
+"2013-09-16_YB-ABq3",2013-09-16,2013-09-16,"YB","AB","3","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Mussel and barnacle densities were difficult to count due to glare and blurry patches"
+"2013-09-16_YB-ABq4",2013-09-16,2013-09-16,"YB","AB","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","All counts may be low due to glare"
+"2013-09-16_YB-ABq1",2013-09-16,2013-09-16,"YB","AB","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-09-16_YB-ABq2",2013-09-16,2013-09-16,"YB","AB","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","Mussel and barnacle count may be higher due to glare. Bottom right corner of cropped photo blurry"
+"2013-09-16_YB-ABq3",2013-09-16,2013-09-16,"YB","AB","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Mussel and barnacle densities were difficult to count due to glare and blurry patches"
+"2013-09-16_YB-ABq4",2013-09-16,2013-09-16,"YB","AB","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","All counts may be low due to glare"
+"2013-09-16_YB-ABq1",2013-09-16,2013-09-16,"YB","AB","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-09-16_YB-ABq2",2013-09-16,2013-09-16,"YB","AB","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","Mussel and barnacle count may be higher due to glare. Bottom right corner of cropped photo blurry"
+"2013-09-16_YB-ABq3",2013-09-16,2013-09-16,"YB","AB","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Mussel and barnacle densities were difficult to count due to glare and blurry patches"
+"2013-09-16_YB-ABq4",2013-09-16,2013-09-16,"YB","AB","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","All counts may be low due to glare"
+"2013-09-16_YB-ABq1",2013-09-16,2013-09-16,"YB","AB","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-09-16_YB-ABq2",2013-09-16,2013-09-16,"YB","AB","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","Mussel and barnacle count may be higher due to glare. Bottom right corner of cropped photo blurry"
+"2013-09-16_YB-ABq3",2013-09-16,2013-09-16,"YB","AB","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Mussel and barnacle densities were difficult to count due to glare and blurry patches"
+"2013-09-16_YB-ABq4",2013-09-16,2013-09-16,"YB","AB","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","All counts may be low due to glare"
+"2013-09-16_YB-ACq1",2013-09-16,2013-09-16,"YB","AC","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult;"
+"2013-09-16_YB-ACq4",2013-09-16,2013-09-16,"YB","AC","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","glare makes it difficult to distinguish between rocks, mussels, and littorines. counts may be low"
+"2013-09-16_YB-ACq7",2013-09-16,2013-09-16,"YB","AC","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","glare and blur makes it difficult to distinguish between rocks, mussels, and littorines. counts may be low"
+"2013-09-16_YB-ACq8",2013-09-16,2013-09-16,"YB","AC","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Algae is mostly a thin film."
+"2013-09-16_YB-ACq1",2013-09-16,2013-09-16,"YB","AC","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult;"
+"2013-09-16_YB-ACq4",2013-09-16,2013-09-16,"YB","AC","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","glare makes it difficult to distinguish between rocks, mussels, and littorines. counts may be low"
+"2013-09-16_YB-ACq7",2013-09-16,2013-09-16,"YB","AC","7","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","glare and blur makes it difficult to distinguish between rocks, mussels, and littorines. counts may be low"
+"2013-09-16_YB-ACq8",2013-09-16,2013-09-16,"YB","AC","8","Ae","Anemones","Type 14",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Algae is mostly a thin film."
+"2013-09-16_YB-ACq1",2013-09-16,2013-09-16,"YB","AC","1","Bg","Balanus_glandula","Type 1",1786,0.015625,114304,"c","Beatriz Vaca","Finished","Full","Cropped","0%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult;"
+"2013-09-16_YB-ACq4",2013-09-16,2013-09-16,"YB","AC","4","Bg","Balanus_glandula","Type 1",505,0.015625,32320,"c","Stephanie Merhoff","Finished","Full","Cropped","10%","glare makes it difficult to distinguish between rocks, mussels, and littorines. counts may be low"
+"2013-09-16_YB-ACq7",2013-09-16,2013-09-16,"YB","AC","7","Bg","Balanus_glandula","Type 1",407,0.015625,26048,"c","Stephanie Merhoff","Finished","Full","Cropped","15%","glare and blur makes it difficult to distinguish between rocks, mussels, and littorines. counts may be low"
+"2013-09-16_YB-ACq8",2013-09-16,2013-09-16,"YB","AC","8","Bg","Balanus_glandula","Type 1",1403,0.015625,89792,"c","Beatriz Vaca","Finished","Full","Cropped","60%","Algae is mostly a thin film."
+"2013-09-16_YB-ACq1",2013-09-16,2013-09-16,"YB","AC","1","BgD","Balanus_glandula_(dead)","Type 2",307,0.015625,19648,"c","Beatriz Vaca","Finished","Full","Cropped","0%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult;"
+"2013-09-16_YB-ACq4",2013-09-16,2013-09-16,"YB","AC","4","BgD","Balanus_glandula_(dead)","Type 2",1,0.015625,64,"c","Stephanie Merhoff","Finished","Full","Cropped","10%","glare makes it difficult to distinguish between rocks, mussels, and littorines. counts may be low"
+"2013-09-16_YB-ACq7",2013-09-16,2013-09-16,"YB","AC","7","BgD","Balanus_glandula_(dead)","Type 2",3,0.015625,192,"c","Stephanie Merhoff","Finished","Full","Cropped","15%","glare and blur makes it difficult to distinguish between rocks, mussels, and littorines. counts may be low"
+"2013-09-16_YB-ACq8",2013-09-16,2013-09-16,"YB","AC","8","BgD","Balanus_glandula_(dead)","Type 2",3,0.015625,192,"c","Beatriz Vaca","Finished","Full","Cropped","60%","Algae is mostly a thin film."
+"2013-09-16_YB-ACq1",2013-09-16,2013-09-16,"YB","AC","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult;"
+"2013-09-16_YB-ACq4",2013-09-16,2013-09-16,"YB","AC","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","glare makes it difficult to distinguish between rocks, mussels, and littorines. counts may be low"
+"2013-09-16_YB-ACq7",2013-09-16,2013-09-16,"YB","AC","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","glare and blur makes it difficult to distinguish between rocks, mussels, and littorines. counts may be low"
+"2013-09-16_YB-ACq8",2013-09-16,2013-09-16,"YB","AC","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Algae is mostly a thin film."
+"2013-09-16_YB-ACq1",2013-09-16,2013-09-16,"YB","AC","1","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","0%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult;"
+"2013-09-16_YB-ACq4",2013-09-16,2013-09-16,"YB","AC","4","Cth","Chthamalus_dalli","Type 3",59,0.015625,3776,"c","Stephanie Merhoff","Finished","Full","Cropped","10%","glare makes it difficult to distinguish between rocks, mussels, and littorines. counts may be low"
+"2013-09-16_YB-ACq7",2013-09-16,2013-09-16,"YB","AC","7","Cth","Chthamalus_dalli","Type 3",113,0.015625,7232,"c","Stephanie Merhoff","Finished","Full","Cropped","15%","glare and blur makes it difficult to distinguish between rocks, mussels, and littorines. counts may be low"
+"2013-09-16_YB-ACq8",2013-09-16,2013-09-16,"YB","AC","8","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","60%","Algae is mostly a thin film."
+"2013-09-16_YB-ACq1",2013-09-16,2013-09-16,"YB","AC","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","0%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult;"
+"2013-09-16_YB-ACq4",2013-09-16,2013-09-16,"YB","AC","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","10%","glare makes it difficult to distinguish between rocks, mussels, and littorines. counts may be low"
+"2013-09-16_YB-ACq7",2013-09-16,2013-09-16,"YB","AC","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","15%","glare and blur makes it difficult to distinguish between rocks, mussels, and littorines. counts may be low"
+"2013-09-16_YB-ACq8",2013-09-16,2013-09-16,"YB","AC","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","60%","Algae is mostly a thin film."
+"2013-09-16_YB-ACq1",2013-09-16,2013-09-16,"YB","AC","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult;"
+"2013-09-16_YB-ACq4",2013-09-16,2013-09-16,"YB","AC","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","glare makes it difficult to distinguish between rocks, mussels, and littorines. counts may be low"
+"2013-09-16_YB-ACq7",2013-09-16,2013-09-16,"YB","AC","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","glare and blur makes it difficult to distinguish between rocks, mussels, and littorines. counts may be low"
+"2013-09-16_YB-ACq8",2013-09-16,2013-09-16,"YB","AC","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Algae is mostly a thin film."
+"2013-09-16_YB-ACq1",2013-09-16,2013-09-16,"YB","AC","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult;"
+"2013-09-16_YB-ACq4",2013-09-16,2013-09-16,"YB","AC","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","glare makes it difficult to distinguish between rocks, mussels, and littorines. counts may be low"
+"2013-09-16_YB-ACq7",2013-09-16,2013-09-16,"YB","AC","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","glare and blur makes it difficult to distinguish between rocks, mussels, and littorines. counts may be low"
+"2013-09-16_YB-ACq8",2013-09-16,2013-09-16,"YB","AC","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Algae is mostly a thin film."
+"2013-09-16_YB-ACq1",2013-09-16,2013-09-16,"YB","AC","1","Lim","Limpets","Type 12",11,0.0875,125.714285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult;"
+"2013-09-16_YB-ACq4",2013-09-16,2013-09-16,"YB","AC","4","Lim","Limpets","Type 12",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","glare makes it difficult to distinguish between rocks, mussels, and littorines. counts may be low"
+"2013-09-16_YB-ACq7",2013-09-16,2013-09-16,"YB","AC","7","Lim","Limpets","Type 12",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","glare and blur makes it difficult to distinguish between rocks, mussels, and littorines. counts may be low"
+"2013-09-16_YB-ACq8",2013-09-16,2013-09-16,"YB","AC","8","Lim","Limpets","Type 12",67,0.0875,765.714285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Algae is mostly a thin film."
+"2013-09-16_YB-ACq1",2013-09-16,2013-09-16,"YB","AC","1","Ls","Littorina_sitkana","Type 13",32,0.0875,365.714285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult;"
+"2013-09-16_YB-ACq4",2013-09-16,2013-09-16,"YB","AC","4","Ls","Littorina_sitkana","Type 13",12,0.0875,137.142857142857,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","glare makes it difficult to distinguish between rocks, mussels, and littorines. counts may be low"
+"2013-09-16_YB-ACq7",2013-09-16,2013-09-16,"YB","AC","7","Ls","Littorina_sitkana","Type 13",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","glare and blur makes it difficult to distinguish between rocks, mussels, and littorines. counts may be low"
+"2013-09-16_YB-ACq8",2013-09-16,2013-09-16,"YB","AC","8","Ls","Littorina_sitkana","Type 13",174,0.0875,1988.57142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Algae is mostly a thin film."
+"2013-09-16_YB-ACq1",2013-09-16,2013-09-16,"YB","AC","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult;"
+"2013-09-16_YB-ACq4",2013-09-16,2013-09-16,"YB","AC","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","glare makes it difficult to distinguish between rocks, mussels, and littorines. counts may be low"
+"2013-09-16_YB-ACq7",2013-09-16,2013-09-16,"YB","AC","7","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","glare and blur makes it difficult to distinguish between rocks, mussels, and littorines. counts may be low"
+"2013-09-16_YB-ACq8",2013-09-16,2013-09-16,"YB","AC","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Algae is mostly a thin film."
+"2013-09-16_YB-ACq1",2013-09-16,2013-09-16,"YB","AC","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult;"
+"2013-09-16_YB-ACq4",2013-09-16,2013-09-16,"YB","AC","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","glare makes it difficult to distinguish between rocks, mussels, and littorines. counts may be low"
+"2013-09-16_YB-ACq7",2013-09-16,2013-09-16,"YB","AC","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","glare and blur makes it difficult to distinguish between rocks, mussels, and littorines. counts may be low"
+"2013-09-16_YB-ACq8",2013-09-16,2013-09-16,"YB","AC","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Algae is mostly a thin film."
+"2013-09-16_YB-ACq1",2013-09-16,2013-09-16,"YB","AC","1","Myt","Mytilus_spp","Type 7",41,0.0875,468.571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult;"
+"2013-09-16_YB-ACq4",2013-09-16,2013-09-16,"YB","AC","4","Myt","Mytilus_spp","Type 7",42,0.0875,480,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","glare makes it difficult to distinguish between rocks, mussels, and littorines. counts may be low"
+"2013-09-16_YB-ACq7",2013-09-16,2013-09-16,"YB","AC","7","Myt","Mytilus_spp","Type 7",1589,0.0875,18160,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","glare and blur makes it difficult to distinguish between rocks, mussels, and littorines. counts may be low"
+"2013-09-16_YB-ACq8",2013-09-16,2013-09-16,"YB","AC","8","Myt","Mytilus_spp","Type 7",252,0.0875,2880,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Algae is mostly a thin film."
+"2013-09-16_YB-ACq1",2013-09-16,2013-09-16,"YB","AC","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult;"
+"2013-09-16_YB-ACq4",2013-09-16,2013-09-16,"YB","AC","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","glare makes it difficult to distinguish between rocks, mussels, and littorines. counts may be low"
+"2013-09-16_YB-ACq7",2013-09-16,2013-09-16,"YB","AC","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","glare and blur makes it difficult to distinguish between rocks, mussels, and littorines. counts may be low"
+"2013-09-16_YB-ACq8",2013-09-16,2013-09-16,"YB","AC","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Algae is mostly a thin film."
+"2013-09-16_YB-ACq1",2013-09-16,2013-09-16,"YB","AC","1","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult;"
+"2013-09-16_YB-ACq4",2013-09-16,2013-09-16,"YB","AC","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","glare makes it difficult to distinguish between rocks, mussels, and littorines. counts may be low"
+"2013-09-16_YB-ACq7",2013-09-16,2013-09-16,"YB","AC","7","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","glare and blur makes it difficult to distinguish between rocks, mussels, and littorines. counts may be low"
+"2013-09-16_YB-ACq8",2013-09-16,2013-09-16,"YB","AC","8","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Algae is mostly a thin film."
+"2013-09-16_YB-ACq1",2013-09-16,2013-09-16,"YB","AC","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult;"
+"2013-09-16_YB-ACq4",2013-09-16,2013-09-16,"YB","AC","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","glare makes it difficult to distinguish between rocks, mussels, and littorines. counts may be low"
+"2013-09-16_YB-ACq7",2013-09-16,2013-09-16,"YB","AC","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","glare and blur makes it difficult to distinguish between rocks, mussels, and littorines. counts may be low"
+"2013-09-16_YB-ACq8",2013-09-16,2013-09-16,"YB","AC","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Algae is mostly a thin film."
+"2013-09-16_YB-ACq1",2013-09-16,2013-09-16,"YB","AC","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult;"
+"2013-09-16_YB-ACq4",2013-09-16,2013-09-16,"YB","AC","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","glare makes it difficult to distinguish between rocks, mussels, and littorines. counts may be low"
+"2013-09-16_YB-ACq7",2013-09-16,2013-09-16,"YB","AC","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","glare and blur makes it difficult to distinguish between rocks, mussels, and littorines. counts may be low"
+"2013-09-16_YB-ACq8",2013-09-16,2013-09-16,"YB","AC","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Algae is mostly a thin film."
+"2013-09-16_YB-ACq1",2013-09-16,2013-09-16,"YB","AC","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult;"
+"2013-09-16_YB-ACq4",2013-09-16,2013-09-16,"YB","AC","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","glare makes it difficult to distinguish between rocks, mussels, and littorines. counts may be low"
+"2013-09-16_YB-ACq7",2013-09-16,2013-09-16,"YB","AC","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","glare and blur makes it difficult to distinguish between rocks, mussels, and littorines. counts may be low"
+"2013-09-16_YB-ACq8",2013-09-16,2013-09-16,"YB","AC","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Algae is mostly a thin film."
+"2013-09-16_YB-ACq1",2013-09-16,2013-09-16,"YB","AC","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult;"
+"2013-09-16_YB-ACq4",2013-09-16,2013-09-16,"YB","AC","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","glare makes it difficult to distinguish between rocks, mussels, and littorines. counts may be low"
+"2013-09-16_YB-ACq7",2013-09-16,2013-09-16,"YB","AC","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","glare and blur makes it difficult to distinguish between rocks, mussels, and littorines. counts may be low"
+"2013-09-16_YB-ACq8",2013-09-16,2013-09-16,"YB","AC","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Algae is mostly a thin film."
+"2013-09-16_YB-ACq1",2013-09-16,2013-09-16,"YB","AC","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult;"
+"2013-09-16_YB-ACq4",2013-09-16,2013-09-16,"YB","AC","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","glare makes it difficult to distinguish between rocks, mussels, and littorines. counts may be low"
+"2013-09-16_YB-ACq7",2013-09-16,2013-09-16,"YB","AC","7","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","glare and blur makes it difficult to distinguish between rocks, mussels, and littorines. counts may be low"
+"2013-09-16_YB-ACq8",2013-09-16,2013-09-16,"YB","AC","8","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Algae is mostly a thin film."
+"2013-09-16_YB-ACq1",2013-09-16,2013-09-16,"YB","AC","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult;"
+"2013-09-16_YB-ACq4",2013-09-16,2013-09-16,"YB","AC","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","glare makes it difficult to distinguish between rocks, mussels, and littorines. counts may be low"
+"2013-09-16_YB-ACq7",2013-09-16,2013-09-16,"YB","AC","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","glare and blur makes it difficult to distinguish between rocks, mussels, and littorines. counts may be low"
+"2013-09-16_YB-ACq8",2013-09-16,2013-09-16,"YB","AC","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Algae is mostly a thin film."
+"2013-09-16_YB-ACq1",2013-09-16,2013-09-16,"YB","AC","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult;"
+"2013-09-16_YB-ACq4",2013-09-16,2013-09-16,"YB","AC","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","glare makes it difficult to distinguish between rocks, mussels, and littorines. counts may be low"
+"2013-09-16_YB-ACq7",2013-09-16,2013-09-16,"YB","AC","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","glare and blur makes it difficult to distinguish between rocks, mussels, and littorines. counts may be low"
+"2013-09-16_YB-ACq8",2013-09-16,2013-09-16,"YB","AC","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Algae is mostly a thin film."
+"2013-09-16_YB-ACq1",2013-09-16,2013-09-16,"YB","AC","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult;"
+"2013-09-16_YB-ACq4",2013-09-16,2013-09-16,"YB","AC","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","glare makes it difficult to distinguish between rocks, mussels, and littorines. counts may be low"
+"2013-09-16_YB-ACq7",2013-09-16,2013-09-16,"YB","AC","7","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","glare and blur makes it difficult to distinguish between rocks, mussels, and littorines. counts may be low"
+"2013-09-16_YB-ACq8",2013-09-16,2013-09-16,"YB","AC","8","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Algae is mostly a thin film."
+"2013-09-16_YB-ACq1",2013-09-16,2013-09-16,"YB","AC","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult;"
+"2013-09-16_YB-ACq4",2013-09-16,2013-09-16,"YB","AC","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","glare makes it difficult to distinguish between rocks, mussels, and littorines. counts may be low"
+"2013-09-16_YB-ACq7",2013-09-16,2013-09-16,"YB","AC","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","glare and blur makes it difficult to distinguish between rocks, mussels, and littorines. counts may be low"
+"2013-09-16_YB-ACq8",2013-09-16,2013-09-16,"YB","AC","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Algae is mostly a thin film."
+"2013-09-16_YB-ACq1",2013-09-16,2013-09-16,"YB","AC","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult;"
+"2013-09-16_YB-ACq4",2013-09-16,2013-09-16,"YB","AC","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","glare makes it difficult to distinguish between rocks, mussels, and littorines. counts may be low"
+"2013-09-16_YB-ACq7",2013-09-16,2013-09-16,"YB","AC","7","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","glare and blur makes it difficult to distinguish between rocks, mussels, and littorines. counts may be low"
+"2013-09-16_YB-ACq8",2013-09-16,2013-09-16,"YB","AC","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Algae is mostly a thin film."
+"2013-09-16_YB-ACq1",2013-09-16,2013-09-16,"YB","AC","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult;"
+"2013-09-16_YB-ACq4",2013-09-16,2013-09-16,"YB","AC","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","glare makes it difficult to distinguish between rocks, mussels, and littorines. counts may be low"
+"2013-09-16_YB-ACq7",2013-09-16,2013-09-16,"YB","AC","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","glare and blur makes it difficult to distinguish between rocks, mussels, and littorines. counts may be low"
+"2013-09-16_YB-ACq8",2013-09-16,2013-09-16,"YB","AC","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Algae is mostly a thin film."
+"2013-09-16_YB-ADq1",2013-09-16,2013-09-16,"YB","AD","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","35%","Algae is mostly a thin film."
+"2013-09-16_YB-ADq5",2013-09-16,2013-09-16,"YB","AD","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is mostly a thin film."
+"2013-09-16_YB-ADq8",2013-09-16,2013-09-16,"YB","AD","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts likely low due to glare and algae, which is a filmy layer."
+"2013-09-16_YB-ADq1",2013-09-16,2013-09-16,"YB","AD","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","35%","Algae is mostly a thin film."
+"2013-09-16_YB-ADq5",2013-09-16,2013-09-16,"YB","AD","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is mostly a thin film."
+"2013-09-16_YB-ADq8",2013-09-16,2013-09-16,"YB","AD","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts likely low due to glare and algae, which is a filmy layer."
+"2013-09-16_YB-ADq1",2013-09-16,2013-09-16,"YB","AD","1","Bg","Balanus_glandula","Type 1",1331,0.015625,85184,"c","Beatriz Vaca","Finished","Full","Cropped","35%","Algae is mostly a thin film."
+"2013-09-16_YB-ADq5",2013-09-16,2013-09-16,"YB","AD","5","Bg","Balanus_glandula","Type 1",1184,0.015625,75776,"c","Beatriz Vaca","Finished","Full","Cropped","40%","Algae is mostly a thin film."
+"2013-09-16_YB-ADq8",2013-09-16,2013-09-16,"YB","AD","8","Bg","Balanus_glandula","Type 1",738,0.015625,47232,"c","Beatriz Vaca","Finished","Full","Cropped","60%","Counts likely low due to glare and algae, which is a filmy layer."
+"2013-09-16_YB-ADq1",2013-09-16,2013-09-16,"YB","AD","1","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","35%","Algae is mostly a thin film."
+"2013-09-16_YB-ADq5",2013-09-16,2013-09-16,"YB","AD","5","BgD","Balanus_glandula_(dead)","Type 2",5,0.015625,320,"c","Beatriz Vaca","Finished","Full","Cropped","40%","Algae is mostly a thin film."
+"2013-09-16_YB-ADq8",2013-09-16,2013-09-16,"YB","AD","8","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","60%","Counts likely low due to glare and algae, which is a filmy layer."
+"2013-09-16_YB-ADq1",2013-09-16,2013-09-16,"YB","AD","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","35%","Algae is mostly a thin film."
+"2013-09-16_YB-ADq5",2013-09-16,2013-09-16,"YB","AD","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is mostly a thin film."
+"2013-09-16_YB-ADq8",2013-09-16,2013-09-16,"YB","AD","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts likely low due to glare and algae, which is a filmy layer."
+"2013-09-16_YB-ADq1",2013-09-16,2013-09-16,"YB","AD","1","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","35%","Algae is mostly a thin film."
+"2013-09-16_YB-ADq5",2013-09-16,2013-09-16,"YB","AD","5","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","40%","Algae is mostly a thin film."
+"2013-09-16_YB-ADq8",2013-09-16,2013-09-16,"YB","AD","8","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","60%","Counts likely low due to glare and algae, which is a filmy layer."
+"2013-09-16_YB-ADq1",2013-09-16,2013-09-16,"YB","AD","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","35%","Algae is mostly a thin film."
+"2013-09-16_YB-ADq5",2013-09-16,2013-09-16,"YB","AD","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","40%","Algae is mostly a thin film."
+"2013-09-16_YB-ADq8",2013-09-16,2013-09-16,"YB","AD","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","60%","Counts likely low due to glare and algae, which is a filmy layer."
+"2013-09-16_YB-ADq1",2013-09-16,2013-09-16,"YB","AD","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","35%","Algae is mostly a thin film."
+"2013-09-16_YB-ADq5",2013-09-16,2013-09-16,"YB","AD","5","Emp","Emplectonema worm","Type 23",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is mostly a thin film."
+"2013-09-16_YB-ADq8",2013-09-16,2013-09-16,"YB","AD","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts likely low due to glare and algae, which is a filmy layer."
+"2013-09-16_YB-ADq1",2013-09-16,2013-09-16,"YB","AD","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","35%","Algae is mostly a thin film."
+"2013-09-16_YB-ADq5",2013-09-16,2013-09-16,"YB","AD","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is mostly a thin film."
+"2013-09-16_YB-ADq8",2013-09-16,2013-09-16,"YB","AD","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts likely low due to glare and algae, which is a filmy layer."
+"2013-09-16_YB-ADq1",2013-09-16,2013-09-16,"YB","AD","1","Lim","Limpets","Type 12",30,0.0875,342.857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","35%","Algae is mostly a thin film."
+"2013-09-16_YB-ADq5",2013-09-16,2013-09-16,"YB","AD","5","Lim","Limpets","Type 12",47,0.0875,537.142857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is mostly a thin film."
+"2013-09-16_YB-ADq8",2013-09-16,2013-09-16,"YB","AD","8","Lim","Limpets","Type 12",115,0.0875,1314.28571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts likely low due to glare and algae, which is a filmy layer."
+"2013-09-16_YB-ADq1",2013-09-16,2013-09-16,"YB","AD","1","Ls","Littorina_sitkana","Type 13",143,0.0875,1634.28571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","35%","Algae is mostly a thin film."
+"2013-09-16_YB-ADq5",2013-09-16,2013-09-16,"YB","AD","5","Ls","Littorina_sitkana","Type 13",191,0.0875,2182.85714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is mostly a thin film."
+"2013-09-16_YB-ADq8",2013-09-16,2013-09-16,"YB","AD","8","Ls","Littorina_sitkana","Type 13",504,0.0875,5760,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts likely low due to glare and algae, which is a filmy layer."
+"2013-09-16_YB-ADq1",2013-09-16,2013-09-16,"YB","AD","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","35%","Algae is mostly a thin film."
+"2013-09-16_YB-ADq5",2013-09-16,2013-09-16,"YB","AD","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is mostly a thin film."
+"2013-09-16_YB-ADq8",2013-09-16,2013-09-16,"YB","AD","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts likely low due to glare and algae, which is a filmy layer."
+"2013-09-16_YB-ADq1",2013-09-16,2013-09-16,"YB","AD","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","35%","Algae is mostly a thin film."
+"2013-09-16_YB-ADq5",2013-09-16,2013-09-16,"YB","AD","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is mostly a thin film."
+"2013-09-16_YB-ADq8",2013-09-16,2013-09-16,"YB","AD","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts likely low due to glare and algae, which is a filmy layer."
+"2013-09-16_YB-ADq1",2013-09-16,2013-09-16,"YB","AD","1","Myt","Mytilus_spp","Type 7",211,0.0875,2411.42857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","35%","Algae is mostly a thin film."
+"2013-09-16_YB-ADq5",2013-09-16,2013-09-16,"YB","AD","5","Myt","Mytilus_spp","Type 7",513,0.0875,5862.85714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is mostly a thin film."
+"2013-09-16_YB-ADq8",2013-09-16,2013-09-16,"YB","AD","8","Myt","Mytilus_spp","Type 7",380,0.0875,4342.85714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts likely low due to glare and algae, which is a filmy layer."
+"2013-09-16_YB-ADq1",2013-09-16,2013-09-16,"YB","AD","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","35%","Algae is mostly a thin film."
+"2013-09-16_YB-ADq5",2013-09-16,2013-09-16,"YB","AD","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is mostly a thin film."
+"2013-09-16_YB-ADq8",2013-09-16,2013-09-16,"YB","AD","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts likely low due to glare and algae, which is a filmy layer."
+"2013-09-16_YB-ADq1",2013-09-16,2013-09-16,"YB","AD","1","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","35%","Algae is mostly a thin film."
+"2013-09-16_YB-ADq5",2013-09-16,2013-09-16,"YB","AD","5","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is mostly a thin film."
+"2013-09-16_YB-ADq8",2013-09-16,2013-09-16,"YB","AD","8","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts likely low due to glare and algae, which is a filmy layer."
+"2013-09-16_YB-ADq1",2013-09-16,2013-09-16,"YB","AD","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","35%","Algae is mostly a thin film."
+"2013-09-16_YB-ADq5",2013-09-16,2013-09-16,"YB","AD","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is mostly a thin film."
+"2013-09-16_YB-ADq8",2013-09-16,2013-09-16,"YB","AD","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts likely low due to glare and algae, which is a filmy layer."
+"2013-09-16_YB-ADq1",2013-09-16,2013-09-16,"YB","AD","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","35%","Algae is mostly a thin film."
+"2013-09-16_YB-ADq5",2013-09-16,2013-09-16,"YB","AD","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is mostly a thin film."
+"2013-09-16_YB-ADq8",2013-09-16,2013-09-16,"YB","AD","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts likely low due to glare and algae, which is a filmy layer."
+"2013-09-16_YB-ADq1",2013-09-16,2013-09-16,"YB","AD","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","35%","Algae is mostly a thin film."
+"2013-09-16_YB-ADq5",2013-09-16,2013-09-16,"YB","AD","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is mostly a thin film."
+"2013-09-16_YB-ADq8",2013-09-16,2013-09-16,"YB","AD","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts likely low due to glare and algae, which is a filmy layer."
+"2013-09-16_YB-ADq1",2013-09-16,2013-09-16,"YB","AD","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","35%","Algae is mostly a thin film."
+"2013-09-16_YB-ADq5",2013-09-16,2013-09-16,"YB","AD","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is mostly a thin film."
+"2013-09-16_YB-ADq8",2013-09-16,2013-09-16,"YB","AD","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts likely low due to glare and algae, which is a filmy layer."
+"2013-09-16_YB-ADq1",2013-09-16,2013-09-16,"YB","AD","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","35%","Algae is mostly a thin film."
+"2013-09-16_YB-ADq5",2013-09-16,2013-09-16,"YB","AD","5","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is mostly a thin film."
+"2013-09-16_YB-ADq8",2013-09-16,2013-09-16,"YB","AD","8","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts likely low due to glare and algae, which is a filmy layer."
+"2013-09-16_YB-ADq1",2013-09-16,2013-09-16,"YB","AD","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","35%","Algae is mostly a thin film."
+"2013-09-16_YB-ADq5",2013-09-16,2013-09-16,"YB","AD","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is mostly a thin film."
+"2013-09-16_YB-ADq8",2013-09-16,2013-09-16,"YB","AD","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts likely low due to glare and algae, which is a filmy layer."
+"2013-09-16_YB-ADq1",2013-09-16,2013-09-16,"YB","AD","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","35%","Algae is mostly a thin film."
+"2013-09-16_YB-ADq5",2013-09-16,2013-09-16,"YB","AD","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is mostly a thin film."
+"2013-09-16_YB-ADq8",2013-09-16,2013-09-16,"YB","AD","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts likely low due to glare and algae, which is a filmy layer."
+"2013-09-16_YB-ADq1",2013-09-16,2013-09-16,"YB","AD","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","35%","Algae is mostly a thin film."
+"2013-09-16_YB-ADq5",2013-09-16,2013-09-16,"YB","AD","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is mostly a thin film."
+"2013-09-16_YB-ADq8",2013-09-16,2013-09-16,"YB","AD","8","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts likely low due to glare and algae, which is a filmy layer."
+"2013-09-16_YB-ADq1",2013-09-16,2013-09-16,"YB","AD","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","35%","Algae is mostly a thin film."
+"2013-09-16_YB-ADq5",2013-09-16,2013-09-16,"YB","AD","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is mostly a thin film."
+"2013-09-16_YB-ADq8",2013-09-16,2013-09-16,"YB","AD","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts likely low due to glare and algae, which is a filmy layer."
+"2013-09-16_YB-ADq1",2013-09-16,2013-09-16,"YB","AD","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","35%","Algae is mostly a thin film."
+"2013-09-16_YB-ADq5",2013-09-16,2013-09-16,"YB","AD","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is mostly a thin film."
+"2013-09-16_YB-ADq8",2013-09-16,2013-09-16,"YB","AD","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts likely low due to glare and algae, which is a filmy layer."
+"2013-09-16_YB-ADq1",2013-09-16,2013-09-16,"YB","AD","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","35%","Algae is mostly a thin film."
+"2013-09-16_YB-ADq5",2013-09-16,2013-09-16,"YB","AD","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is mostly a thin film."
+"2013-09-16_YB-ADq8",2013-09-16,2013-09-16,"YB","AD","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts likely low due to glare and algae, which is a filmy layer."
+"2013-09-16_YB-AEq1",2013-09-16,2013-09-16,"YB","AE","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","B.glandula counts likely low due to algae cover, which is mostly a thin film."
+"2013-09-16_YB-AEq4",2013-09-16,2013-09-16,"YB","AE","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Counts likely low due to blur and algae, which is a filmy layer."
+"2013-09-16_YB-AEq8",2013-09-16,2013-09-16,"YB","AE","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Counts likely low due to blur and algae, which is a filmy layer."
+"2013-09-16_YB-AEq1",2013-09-16,2013-09-16,"YB","AE","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","B.glandula counts likely low due to algae cover, which is mostly a thin film."
+"2013-09-16_YB-AEq4",2013-09-16,2013-09-16,"YB","AE","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Counts likely low due to blur and algae, which is a filmy layer."
+"2013-09-16_YB-AEq8",2013-09-16,2013-09-16,"YB","AE","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Counts likely low due to blur and algae, which is a filmy layer."
+"2013-09-16_YB-AEq1",2013-09-16,2013-09-16,"YB","AE","1","Bg","Balanus_glandula","Type 1",1120,0.015625,71680,"c","Beatriz Vaca","Finished","Full","Cropped","60%","B.glandula counts likely low due to algae cover, which is mostly a thin film."
+"2013-09-16_YB-AEq4",2013-09-16,2013-09-16,"YB","AE","4","Bg","Balanus_glandula","Type 1",1542,0.015625,98688,"c","Beatriz Vaca","Finished","Full","Cropped","80%","Counts likely low due to blur and algae, which is a filmy layer."
+"2013-09-16_YB-AEq8",2013-09-16,2013-09-16,"YB","AE","8","Bg","Balanus_glandula","Type 1",1442,0.015625,92288,"c","Beatriz Vaca","Finished","Full","Cropped","70%","Counts likely low due to blur and algae, which is a filmy layer."
+"2013-09-16_YB-AEq1",2013-09-16,2013-09-16,"YB","AE","1","BgD","Balanus_glandula_(dead)","Type 2",5,0.015625,320,"c","Beatriz Vaca","Finished","Full","Cropped","60%","B.glandula counts likely low due to algae cover, which is mostly a thin film."
+"2013-09-16_YB-AEq4",2013-09-16,2013-09-16,"YB","AE","4","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","80%","Counts likely low due to blur and algae, which is a filmy layer."
+"2013-09-16_YB-AEq8",2013-09-16,2013-09-16,"YB","AE","8","BgD","Balanus_glandula_(dead)","Type 2",6,0.015625,384,"c","Beatriz Vaca","Finished","Full","Cropped","70%","Counts likely low due to blur and algae, which is a filmy layer."
+"2013-09-16_YB-AEq1",2013-09-16,2013-09-16,"YB","AE","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","B.glandula counts likely low due to algae cover, which is mostly a thin film."
+"2013-09-16_YB-AEq4",2013-09-16,2013-09-16,"YB","AE","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Counts likely low due to blur and algae, which is a filmy layer."
+"2013-09-16_YB-AEq8",2013-09-16,2013-09-16,"YB","AE","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Counts likely low due to blur and algae, which is a filmy layer."
+"2013-09-16_YB-AEq1",2013-09-16,2013-09-16,"YB","AE","1","Cth","Chthamalus_dalli","Type 3",10,0.015625,640,"c","Beatriz Vaca","Finished","Full","Cropped","60%","B.glandula counts likely low due to algae cover, which is mostly a thin film."
+"2013-09-16_YB-AEq4",2013-09-16,2013-09-16,"YB","AE","4","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","80%","Counts likely low due to blur and algae, which is a filmy layer."
+"2013-09-16_YB-AEq8",2013-09-16,2013-09-16,"YB","AE","8","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","70%","Counts likely low due to blur and algae, which is a filmy layer."
+"2013-09-16_YB-AEq1",2013-09-16,2013-09-16,"YB","AE","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","60%","B.glandula counts likely low due to algae cover, which is mostly a thin film."
+"2013-09-16_YB-AEq4",2013-09-16,2013-09-16,"YB","AE","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","80%","Counts likely low due to blur and algae, which is a filmy layer."
+"2013-09-16_YB-AEq8",2013-09-16,2013-09-16,"YB","AE","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","70%","Counts likely low due to blur and algae, which is a filmy layer."
+"2013-09-16_YB-AEq1",2013-09-16,2013-09-16,"YB","AE","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","B.glandula counts likely low due to algae cover, which is mostly a thin film."
+"2013-09-16_YB-AEq4",2013-09-16,2013-09-16,"YB","AE","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Counts likely low due to blur and algae, which is a filmy layer."
+"2013-09-16_YB-AEq8",2013-09-16,2013-09-16,"YB","AE","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Counts likely low due to blur and algae, which is a filmy layer."
+"2013-09-16_YB-AEq1",2013-09-16,2013-09-16,"YB","AE","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","B.glandula counts likely low due to algae cover, which is mostly a thin film."
+"2013-09-16_YB-AEq4",2013-09-16,2013-09-16,"YB","AE","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Counts likely low due to blur and algae, which is a filmy layer."
+"2013-09-16_YB-AEq8",2013-09-16,2013-09-16,"YB","AE","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Counts likely low due to blur and algae, which is a filmy layer."
+"2013-09-16_YB-AEq1",2013-09-16,2013-09-16,"YB","AE","1","Lim","Limpets","Type 12",24,0.0875,274.285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","B.glandula counts likely low due to algae cover, which is mostly a thin film."
+"2013-09-16_YB-AEq4",2013-09-16,2013-09-16,"YB","AE","4","Lim","Limpets","Type 12",26,0.0875,297.142857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Counts likely low due to blur and algae, which is a filmy layer."
+"2013-09-16_YB-AEq8",2013-09-16,2013-09-16,"YB","AE","8","Lim","Limpets","Type 12",28,0.0875,320,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Counts likely low due to blur and algae, which is a filmy layer."
+"2013-09-16_YB-AEq1",2013-09-16,2013-09-16,"YB","AE","1","Ls","Littorina_sitkana","Type 13",82,0.0875,937.142857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","B.glandula counts likely low due to algae cover, which is mostly a thin film."
+"2013-09-16_YB-AEq4",2013-09-16,2013-09-16,"YB","AE","4","Ls","Littorina_sitkana","Type 13",156,0.0875,1782.85714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Counts likely low due to blur and algae, which is a filmy layer."
+"2013-09-16_YB-AEq8",2013-09-16,2013-09-16,"YB","AE","8","Ls","Littorina_sitkana","Type 13",234,0.0875,2674.28571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Counts likely low due to blur and algae, which is a filmy layer."
+"2013-09-16_YB-AEq1",2013-09-16,2013-09-16,"YB","AE","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","B.glandula counts likely low due to algae cover, which is mostly a thin film."
+"2013-09-16_YB-AEq4",2013-09-16,2013-09-16,"YB","AE","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Counts likely low due to blur and algae, which is a filmy layer."
+"2013-09-16_YB-AEq8",2013-09-16,2013-09-16,"YB","AE","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Counts likely low due to blur and algae, which is a filmy layer."
+"2013-09-16_YB-AEq1",2013-09-16,2013-09-16,"YB","AE","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","B.glandula counts likely low due to algae cover, which is mostly a thin film."
+"2013-09-16_YB-AEq4",2013-09-16,2013-09-16,"YB","AE","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Counts likely low due to blur and algae, which is a filmy layer."
+"2013-09-16_YB-AEq8",2013-09-16,2013-09-16,"YB","AE","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Counts likely low due to blur and algae, which is a filmy layer."
+"2013-09-16_YB-AEq1",2013-09-16,2013-09-16,"YB","AE","1","Myt","Mytilus_spp","Type 7",87,0.0875,994.285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","B.glandula counts likely low due to algae cover, which is mostly a thin film."
+"2013-09-16_YB-AEq4",2013-09-16,2013-09-16,"YB","AE","4","Myt","Mytilus_spp","Type 7",274,0.0875,3131.42857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Counts likely low due to blur and algae, which is a filmy layer."
+"2013-09-16_YB-AEq8",2013-09-16,2013-09-16,"YB","AE","8","Myt","Mytilus_spp","Type 7",349,0.0875,3988.57142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Counts likely low due to blur and algae, which is a filmy layer."
+"2013-09-16_YB-AEq1",2013-09-16,2013-09-16,"YB","AE","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","B.glandula counts likely low due to algae cover, which is mostly a thin film."
+"2013-09-16_YB-AEq4",2013-09-16,2013-09-16,"YB","AE","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Counts likely low due to blur and algae, which is a filmy layer."
+"2013-09-16_YB-AEq8",2013-09-16,2013-09-16,"YB","AE","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Counts likely low due to blur and algae, which is a filmy layer."
+"2013-09-16_YB-AEq1",2013-09-16,2013-09-16,"YB","AE","1","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","B.glandula counts likely low due to algae cover, which is mostly a thin film."
+"2013-09-16_YB-AEq4",2013-09-16,2013-09-16,"YB","AE","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Counts likely low due to blur and algae, which is a filmy layer."
+"2013-09-16_YB-AEq8",2013-09-16,2013-09-16,"YB","AE","8","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Counts likely low due to blur and algae, which is a filmy layer."
+"2013-09-16_YB-AEq1",2013-09-16,2013-09-16,"YB","AE","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","B.glandula counts likely low due to algae cover, which is mostly a thin film."
+"2013-09-16_YB-AEq4",2013-09-16,2013-09-16,"YB","AE","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Counts likely low due to blur and algae, which is a filmy layer."
+"2013-09-16_YB-AEq8",2013-09-16,2013-09-16,"YB","AE","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Counts likely low due to blur and algae, which is a filmy layer."
+"2013-09-16_YB-AEq1",2013-09-16,2013-09-16,"YB","AE","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","B.glandula counts likely low due to algae cover, which is mostly a thin film."
+"2013-09-16_YB-AEq4",2013-09-16,2013-09-16,"YB","AE","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Counts likely low due to blur and algae, which is a filmy layer."
+"2013-09-16_YB-AEq8",2013-09-16,2013-09-16,"YB","AE","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Counts likely low due to blur and algae, which is a filmy layer."
+"2013-09-16_YB-AEq1",2013-09-16,2013-09-16,"YB","AE","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","B.glandula counts likely low due to algae cover, which is mostly a thin film."
+"2013-09-16_YB-AEq4",2013-09-16,2013-09-16,"YB","AE","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Counts likely low due to blur and algae, which is a filmy layer."
+"2013-09-16_YB-AEq8",2013-09-16,2013-09-16,"YB","AE","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Counts likely low due to blur and algae, which is a filmy layer."
+"2013-09-16_YB-AEq1",2013-09-16,2013-09-16,"YB","AE","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","B.glandula counts likely low due to algae cover, which is mostly a thin film."
+"2013-09-16_YB-AEq4",2013-09-16,2013-09-16,"YB","AE","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Counts likely low due to blur and algae, which is a filmy layer."
+"2013-09-16_YB-AEq8",2013-09-16,2013-09-16,"YB","AE","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Counts likely low due to blur and algae, which is a filmy layer."
+"2013-09-16_YB-AEq1",2013-09-16,2013-09-16,"YB","AE","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","B.glandula counts likely low due to algae cover, which is mostly a thin film."
+"2013-09-16_YB-AEq4",2013-09-16,2013-09-16,"YB","AE","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Counts likely low due to blur and algae, which is a filmy layer."
+"2013-09-16_YB-AEq8",2013-09-16,2013-09-16,"YB","AE","8","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Counts likely low due to blur and algae, which is a filmy layer."
+"2013-09-16_YB-AEq1",2013-09-16,2013-09-16,"YB","AE","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","B.glandula counts likely low due to algae cover, which is mostly a thin film."
+"2013-09-16_YB-AEq4",2013-09-16,2013-09-16,"YB","AE","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Counts likely low due to blur and algae, which is a filmy layer."
+"2013-09-16_YB-AEq8",2013-09-16,2013-09-16,"YB","AE","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Counts likely low due to blur and algae, which is a filmy layer."
+"2013-09-16_YB-AEq1",2013-09-16,2013-09-16,"YB","AE","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","B.glandula counts likely low due to algae cover, which is mostly a thin film."
+"2013-09-16_YB-AEq4",2013-09-16,2013-09-16,"YB","AE","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Counts likely low due to blur and algae, which is a filmy layer."
+"2013-09-16_YB-AEq8",2013-09-16,2013-09-16,"YB","AE","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Counts likely low due to blur and algae, which is a filmy layer."
+"2013-09-16_YB-AEq1",2013-09-16,2013-09-16,"YB","AE","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","B.glandula counts likely low due to algae cover, which is mostly a thin film."
+"2013-09-16_YB-AEq4",2013-09-16,2013-09-16,"YB","AE","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Counts likely low due to blur and algae, which is a filmy layer."
+"2013-09-16_YB-AEq8",2013-09-16,2013-09-16,"YB","AE","8","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Counts likely low due to blur and algae, which is a filmy layer."
+"2013-09-16_YB-AEq1",2013-09-16,2013-09-16,"YB","AE","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","B.glandula counts likely low due to algae cover, which is mostly a thin film."
+"2013-09-16_YB-AEq4",2013-09-16,2013-09-16,"YB","AE","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Counts likely low due to blur and algae, which is a filmy layer."
+"2013-09-16_YB-AEq8",2013-09-16,2013-09-16,"YB","AE","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Counts likely low due to blur and algae, which is a filmy layer."
+"2013-09-16_YB-AEq1",2013-09-16,2013-09-16,"YB","AE","1","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","B.glandula counts likely low due to algae cover, which is mostly a thin film."
+"2013-09-16_YB-AEq4",2013-09-16,2013-09-16,"YB","AE","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Counts likely low due to blur and algae, which is a filmy layer."
+"2013-09-16_YB-AEq8",2013-09-16,2013-09-16,"YB","AE","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Counts likely low due to blur and algae, which is a filmy layer."
+"2013-09-16_YB-AEq1",2013-09-16,2013-09-16,"YB","AE","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","B.glandula counts likely low due to algae cover, which is mostly a thin film."
+"2013-09-16_YB-AEq4",2013-09-16,2013-09-16,"YB","AE","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Counts likely low due to blur and algae, which is a filmy layer."
+"2013-09-16_YB-AEq8",2013-09-16,2013-09-16,"YB","AE","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Counts likely low due to blur and algae, which is a filmy layer."
+"2013-09-16_YB-AFq5",2013-09-16,2013-09-16,"YB","AF","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Counts likely low due to sediment cover, algae cover, and byssal threads. 30%Byssal thread coverage."
+"2013-09-16_YB-AFq8",2013-09-16,2013-09-16,"YB","AF","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","15%",""
+"2013-09-16_YB-AFq9",2013-09-16,2013-09-16,"YB","AF","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2013-09-16_YB-AFq5",2013-09-16,2013-09-16,"YB","AF","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Counts likely low due to sediment cover, algae cover, and byssal threads. 30%Byssal thread coverage."
+"2013-09-16_YB-AFq8",2013-09-16,2013-09-16,"YB","AF","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","15%",""
+"2013-09-16_YB-AFq9",2013-09-16,2013-09-16,"YB","AF","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2013-09-16_YB-AFq5",2013-09-16,2013-09-16,"YB","AF","5","Bg","Balanus_glandula","Type 1",788,0.015625,50432,"c","Beatriz Vaca","Finished","Full","Cropped","10%","Counts likely low due to sediment cover, algae cover, and byssal threads. 30%Byssal thread coverage."
+"2013-09-16_YB-AFq8",2013-09-16,2013-09-16,"YB","AF","8","Bg","Balanus_glandula","Type 1",302,0.015625,19328,"c","Celeste Moen","Finished","Full","Cropped","15%",""
+"2013-09-16_YB-AFq9",2013-09-16,2013-09-16,"YB","AF","9","Bg","Balanus_glandula","Type 1",580,0.015625,37120,"c","Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2013-09-16_YB-AFq5",2013-09-16,2013-09-16,"YB","AF","5","BgD","Balanus_glandula_(dead)","Type 2",1,0.015625,64,"c","Beatriz Vaca","Finished","Full","Cropped","10%","Counts likely low due to sediment cover, algae cover, and byssal threads. 30%Byssal thread coverage."
+"2013-09-16_YB-AFq8",2013-09-16,2013-09-16,"YB","AF","8","BgD","Balanus_glandula_(dead)","Type 2",5,0.015625,320,"c","Celeste Moen","Finished","Full","Cropped","15%",""
+"2013-09-16_YB-AFq9",2013-09-16,2013-09-16,"YB","AF","9","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2013-09-16_YB-AFq5",2013-09-16,2013-09-16,"YB","AF","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Counts likely low due to sediment cover, algae cover, and byssal threads. 30%Byssal thread coverage."
+"2013-09-16_YB-AFq8",2013-09-16,2013-09-16,"YB","AF","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","15%",""
+"2013-09-16_YB-AFq9",2013-09-16,2013-09-16,"YB","AF","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2013-09-16_YB-AFq5",2013-09-16,2013-09-16,"YB","AF","5","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","10%","Counts likely low due to sediment cover, algae cover, and byssal threads. 30%Byssal thread coverage."
+"2013-09-16_YB-AFq8",2013-09-16,2013-09-16,"YB","AF","8","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Celeste Moen","Finished","Full","Cropped","15%",""
+"2013-09-16_YB-AFq9",2013-09-16,2013-09-16,"YB","AF","9","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2013-09-16_YB-AFq5",2013-09-16,2013-09-16,"YB","AF","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","10%","Counts likely low due to sediment cover, algae cover, and byssal threads. 30%Byssal thread coverage."
+"2013-09-16_YB-AFq8",2013-09-16,2013-09-16,"YB","AF","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Celeste Moen","Finished","Full","Cropped","15%",""
+"2013-09-16_YB-AFq9",2013-09-16,2013-09-16,"YB","AF","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2013-09-16_YB-AFq5",2013-09-16,2013-09-16,"YB","AF","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Counts likely low due to sediment cover, algae cover, and byssal threads. 30%Byssal thread coverage."
+"2013-09-16_YB-AFq8",2013-09-16,2013-09-16,"YB","AF","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","15%",""
+"2013-09-16_YB-AFq9",2013-09-16,2013-09-16,"YB","AF","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2013-09-16_YB-AFq5",2013-09-16,2013-09-16,"YB","AF","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Counts likely low due to sediment cover, algae cover, and byssal threads. 30%Byssal thread coverage."
+"2013-09-16_YB-AFq8",2013-09-16,2013-09-16,"YB","AF","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","15%",""
+"2013-09-16_YB-AFq9",2013-09-16,2013-09-16,"YB","AF","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2013-09-16_YB-AFq5",2013-09-16,2013-09-16,"YB","AF","5","Lim","Limpets","Type 12",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Counts likely low due to sediment cover, algae cover, and byssal threads. 30%Byssal thread coverage."
+"2013-09-16_YB-AFq8",2013-09-16,2013-09-16,"YB","AF","8","Lim","Limpets","Type 12",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","15%",""
+"2013-09-16_YB-AFq9",2013-09-16,2013-09-16,"YB","AF","9","Lim","Limpets","Type 12",6,0.0875,68.5714285714286,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2013-09-16_YB-AFq5",2013-09-16,2013-09-16,"YB","AF","5","Ls","Littorina_sitkana","Type 13",122,0.0875,1394.28571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Counts likely low due to sediment cover, algae cover, and byssal threads. 30%Byssal thread coverage."
+"2013-09-16_YB-AFq8",2013-09-16,2013-09-16,"YB","AF","8","Ls","Littorina_sitkana","Type 13",163,0.0875,1862.85714285714,NA,"Celeste Moen","Finished","Full","Cropped","15%",""
+"2013-09-16_YB-AFq9",2013-09-16,2013-09-16,"YB","AF","9","Ls","Littorina_sitkana","Type 13",79,0.0875,902.857142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2013-09-16_YB-AFq5",2013-09-16,2013-09-16,"YB","AF","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Counts likely low due to sediment cover, algae cover, and byssal threads. 30%Byssal thread coverage."
+"2013-09-16_YB-AFq8",2013-09-16,2013-09-16,"YB","AF","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","15%",""
+"2013-09-16_YB-AFq9",2013-09-16,2013-09-16,"YB","AF","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2013-09-16_YB-AFq5",2013-09-16,2013-09-16,"YB","AF","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Counts likely low due to sediment cover, algae cover, and byssal threads. 30%Byssal thread coverage."
+"2013-09-16_YB-AFq8",2013-09-16,2013-09-16,"YB","AF","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","15%",""
+"2013-09-16_YB-AFq9",2013-09-16,2013-09-16,"YB","AF","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2013-09-16_YB-AFq5",2013-09-16,2013-09-16,"YB","AF","5","Myt","Mytilus_spp","Type 7",19,0.0875,217.142857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Counts likely low due to sediment cover, algae cover, and byssal threads. 30%Byssal thread coverage."
+"2013-09-16_YB-AFq8",2013-09-16,2013-09-16,"YB","AF","8","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","15%",""
+"2013-09-16_YB-AFq9",2013-09-16,2013-09-16,"YB","AF","9","Myt","Mytilus_spp","Type 7",76,0.0875,868.571428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2013-09-16_YB-AFq5",2013-09-16,2013-09-16,"YB","AF","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Counts likely low due to sediment cover, algae cover, and byssal threads. 30%Byssal thread coverage."
+"2013-09-16_YB-AFq8",2013-09-16,2013-09-16,"YB","AF","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","15%",""
+"2013-09-16_YB-AFq9",2013-09-16,2013-09-16,"YB","AF","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2013-09-16_YB-AFq5",2013-09-16,2013-09-16,"YB","AF","5","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Counts likely low due to sediment cover, algae cover, and byssal threads. 30%Byssal thread coverage."
+"2013-09-16_YB-AFq8",2013-09-16,2013-09-16,"YB","AF","8","Mt","Mytilus_trossulus","Type 15",14,0.0875,160,NA,"Celeste Moen","Finished","Full","Cropped","15%",""
+"2013-09-16_YB-AFq9",2013-09-16,2013-09-16,"YB","AF","9","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2013-09-16_YB-AFq5",2013-09-16,2013-09-16,"YB","AF","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Counts likely low due to sediment cover, algae cover, and byssal threads. 30%Byssal thread coverage."
+"2013-09-16_YB-AFq8",2013-09-16,2013-09-16,"YB","AF","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","15%",""
+"2013-09-16_YB-AFq9",2013-09-16,2013-09-16,"YB","AF","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2013-09-16_YB-AFq5",2013-09-16,2013-09-16,"YB","AF","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Counts likely low due to sediment cover, algae cover, and byssal threads. 30%Byssal thread coverage."
+"2013-09-16_YB-AFq8",2013-09-16,2013-09-16,"YB","AF","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","15%",""
+"2013-09-16_YB-AFq9",2013-09-16,2013-09-16,"YB","AF","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2013-09-16_YB-AFq5",2013-09-16,2013-09-16,"YB","AF","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Counts likely low due to sediment cover, algae cover, and byssal threads. 30%Byssal thread coverage."
+"2013-09-16_YB-AFq8",2013-09-16,2013-09-16,"YB","AF","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","15%",""
+"2013-09-16_YB-AFq9",2013-09-16,2013-09-16,"YB","AF","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2013-09-16_YB-AFq5",2013-09-16,2013-09-16,"YB","AF","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Counts likely low due to sediment cover, algae cover, and byssal threads. 30%Byssal thread coverage."
+"2013-09-16_YB-AFq8",2013-09-16,2013-09-16,"YB","AF","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","15%",""
+"2013-09-16_YB-AFq9",2013-09-16,2013-09-16,"YB","AF","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2013-09-16_YB-AFq5",2013-09-16,2013-09-16,"YB","AF","5","No","Nucella_ostrina","Type 9",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Counts likely low due to sediment cover, algae cover, and byssal threads. 30%Byssal thread coverage."
+"2013-09-16_YB-AFq8",2013-09-16,2013-09-16,"YB","AF","8","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","15%",""
+"2013-09-16_YB-AFq9",2013-09-16,2013-09-16,"YB","AF","9","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2013-09-16_YB-AFq5",2013-09-16,2013-09-16,"YB","AF","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Counts likely low due to sediment cover, algae cover, and byssal threads. 30%Byssal thread coverage."
+"2013-09-16_YB-AFq8",2013-09-16,2013-09-16,"YB","AF","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","15%",""
+"2013-09-16_YB-AFq9",2013-09-16,2013-09-16,"YB","AF","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2013-09-16_YB-AFq5",2013-09-16,2013-09-16,"YB","AF","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Counts likely low due to sediment cover, algae cover, and byssal threads. 30%Byssal thread coverage."
+"2013-09-16_YB-AFq8",2013-09-16,2013-09-16,"YB","AF","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","15%",""
+"2013-09-16_YB-AFq9",2013-09-16,2013-09-16,"YB","AF","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2013-09-16_YB-AFq5",2013-09-16,2013-09-16,"YB","AF","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Counts likely low due to sediment cover, algae cover, and byssal threads. 30%Byssal thread coverage."
+"2013-09-16_YB-AFq8",2013-09-16,2013-09-16,"YB","AF","8","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","15%",""
+"2013-09-16_YB-AFq9",2013-09-16,2013-09-16,"YB","AF","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2013-09-16_YB-AFq5",2013-09-16,2013-09-16,"YB","AF","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Counts likely low due to sediment cover, algae cover, and byssal threads. 30%Byssal thread coverage."
+"2013-09-16_YB-AFq8",2013-09-16,2013-09-16,"YB","AF","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","15%",""
+"2013-09-16_YB-AFq9",2013-09-16,2013-09-16,"YB","AF","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2013-09-16_YB-AFq5",2013-09-16,2013-09-16,"YB","AF","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Counts likely low due to sediment cover, algae cover, and byssal threads. 30%Byssal thread coverage."
+"2013-09-16_YB-AFq8",2013-09-16,2013-09-16,"YB","AF","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","15%",""
+"2013-09-16_YB-AFq9",2013-09-16,2013-09-16,"YB","AF","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2013-09-16_YB-AFq5",2013-09-16,2013-09-16,"YB","AF","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Counts likely low due to sediment cover, algae cover, and byssal threads. 30%Byssal thread coverage."
+"2013-09-16_YB-AFq8",2013-09-16,2013-09-16,"YB","AF","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","15%",""
+"2013-09-16_YB-AFq9",2013-09-16,2013-09-16,"YB","AF","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2013-09-16_YB-AGq1",2013-09-16,2013-09-16,"YB","AG","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-09-16_YB-AGq2",2013-09-16,2013-09-16,"YB","AG","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-09-16_YB-AGq3",2013-09-16,2013-09-16,"YB","AG","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Glare made counting barnacles difficult"
+"2013-09-16_YB-AGq7",2013-09-16,2013-09-16,"YB","AG","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","60%","Counts likely low due to algae film, blur, and glare"
+"2013-09-16_YB-AGq9",2013-09-16,2013-09-16,"YB","AG","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts likely low due to algae film and blur"
+"2013-09-16_YB-AGq1",2013-09-16,2013-09-16,"YB","AG","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-09-16_YB-AGq2",2013-09-16,2013-09-16,"YB","AG","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-09-16_YB-AGq3",2013-09-16,2013-09-16,"YB","AG","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Glare made counting barnacles difficult"
+"2013-09-16_YB-AGq7",2013-09-16,2013-09-16,"YB","AG","7","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","60%","Counts likely low due to algae film, blur, and glare"
+"2013-09-16_YB-AGq9",2013-09-16,2013-09-16,"YB","AG","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts likely low due to algae film and blur"
+"2013-09-16_YB-AGq1",2013-09-16,2013-09-16,"YB","AG","1","Bg","Balanus_glandula","Type 1",1134,0.015625,72576,"c","Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-09-16_YB-AGq2",2013-09-16,2013-09-16,"YB","AG","2","Bg","Balanus_glandula","Type 1",374,0.015625,23936,"c","Isaac Shepard","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-09-16_YB-AGq3",2013-09-16,2013-09-16,"YB","AG","3","Bg","Balanus_glandula","Type 1",781,0.015625,49984,"c","Isaac Shepard","Finished","Full","Cropped","0%","Glare made counting barnacles difficult"
+"2013-09-16_YB-AGq7",2013-09-16,2013-09-16,"YB","AG","7","Bg","Balanus_glandula","Type 1",728,0.015625,46592,"c","Stephanie Merhoff","Finished","Full","Cropped","60%","Counts likely low due to algae film, blur, and glare"
+"2013-09-16_YB-AGq9",2013-09-16,2013-09-16,"YB","AG","9","Bg","Balanus_glandula","Type 1",1211,0.015625,77504,"c","Stephanie Merhoff","Finished","Full","Cropped","50%","Counts likely low due to algae film and blur"
+"2013-09-16_YB-AGq1",2013-09-16,2013-09-16,"YB","AG","1","BgD","Balanus_glandula_(dead)","Type 2",1,0.015625,64,"c","Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-09-16_YB-AGq2",2013-09-16,2013-09-16,"YB","AG","2","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-09-16_YB-AGq3",2013-09-16,2013-09-16,"YB","AG","3","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","0%","Glare made counting barnacles difficult"
+"2013-09-16_YB-AGq7",2013-09-16,2013-09-16,"YB","AG","7","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","60%","Counts likely low due to algae film, blur, and glare"
+"2013-09-16_YB-AGq9",2013-09-16,2013-09-16,"YB","AG","9","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","50%","Counts likely low due to algae film and blur"
+"2013-09-16_YB-AGq1",2013-09-16,2013-09-16,"YB","AG","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-09-16_YB-AGq2",2013-09-16,2013-09-16,"YB","AG","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-09-16_YB-AGq3",2013-09-16,2013-09-16,"YB","AG","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Glare made counting barnacles difficult"
+"2013-09-16_YB-AGq7",2013-09-16,2013-09-16,"YB","AG","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","60%","Counts likely low due to algae film, blur, and glare"
+"2013-09-16_YB-AGq9",2013-09-16,2013-09-16,"YB","AG","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts likely low due to algae film and blur"
+"2013-09-16_YB-AGq1",2013-09-16,2013-09-16,"YB","AG","1","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-09-16_YB-AGq2",2013-09-16,2013-09-16,"YB","AG","2","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-09-16_YB-AGq3",2013-09-16,2013-09-16,"YB","AG","3","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","0%","Glare made counting barnacles difficult"
+"2013-09-16_YB-AGq7",2013-09-16,2013-09-16,"YB","AG","7","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","60%","Counts likely low due to algae film, blur, and glare"
+"2013-09-16_YB-AGq9",2013-09-16,2013-09-16,"YB","AG","9","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","50%","Counts likely low due to algae film and blur"
+"2013-09-16_YB-AGq1",2013-09-16,2013-09-16,"YB","AG","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-09-16_YB-AGq2",2013-09-16,2013-09-16,"YB","AG","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-09-16_YB-AGq3",2013-09-16,2013-09-16,"YB","AG","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","0%","Glare made counting barnacles difficult"
+"2013-09-16_YB-AGq7",2013-09-16,2013-09-16,"YB","AG","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","60%","Counts likely low due to algae film, blur, and glare"
+"2013-09-16_YB-AGq9",2013-09-16,2013-09-16,"YB","AG","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","50%","Counts likely low due to algae film and blur"
+"2013-09-16_YB-AGq1",2013-09-16,2013-09-16,"YB","AG","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-09-16_YB-AGq2",2013-09-16,2013-09-16,"YB","AG","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-09-16_YB-AGq3",2013-09-16,2013-09-16,"YB","AG","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Glare made counting barnacles difficult"
+"2013-09-16_YB-AGq7",2013-09-16,2013-09-16,"YB","AG","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","60%","Counts likely low due to algae film, blur, and glare"
+"2013-09-16_YB-AGq9",2013-09-16,2013-09-16,"YB","AG","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts likely low due to algae film and blur"
+"2013-09-16_YB-AGq1",2013-09-16,2013-09-16,"YB","AG","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-09-16_YB-AGq2",2013-09-16,2013-09-16,"YB","AG","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-09-16_YB-AGq3",2013-09-16,2013-09-16,"YB","AG","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Glare made counting barnacles difficult"
+"2013-09-16_YB-AGq7",2013-09-16,2013-09-16,"YB","AG","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","60%","Counts likely low due to algae film, blur, and glare"
+"2013-09-16_YB-AGq9",2013-09-16,2013-09-16,"YB","AG","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts likely low due to algae film and blur"
+"2013-09-16_YB-AGq1",2013-09-16,2013-09-16,"YB","AG","1","Lim","Limpets","Type 12",9,0.0875,102.857142857143,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-09-16_YB-AGq2",2013-09-16,2013-09-16,"YB","AG","2","Lim","Limpets","Type 12",3,0.0875,34.2857142857143,NA,"Isaac Shepard","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-09-16_YB-AGq3",2013-09-16,2013-09-16,"YB","AG","3","Lim","Limpets","Type 12",10,0.0875,114.285714285714,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Glare made counting barnacles difficult"
+"2013-09-16_YB-AGq7",2013-09-16,2013-09-16,"YB","AG","7","Lim","Limpets","Type 12",4,0.0875,45.7142857142857,NA,"Stephanie Merhoff","Finished","Full","Cropped","60%","Counts likely low due to algae film, blur, and glare"
+"2013-09-16_YB-AGq9",2013-09-16,2013-09-16,"YB","AG","9","Lim","Limpets","Type 12",13,0.0875,148.571428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts likely low due to algae film and blur"
+"2013-09-16_YB-AGq1",2013-09-16,2013-09-16,"YB","AG","1","Ls","Littorina_sitkana","Type 13",21,0.0875,240,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-09-16_YB-AGq2",2013-09-16,2013-09-16,"YB","AG","2","Ls","Littorina_sitkana","Type 13",12,0.0875,137.142857142857,NA,"Isaac Shepard","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-09-16_YB-AGq3",2013-09-16,2013-09-16,"YB","AG","3","Ls","Littorina_sitkana","Type 13",6,0.0875,68.5714285714286,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Glare made counting barnacles difficult"
+"2013-09-16_YB-AGq7",2013-09-16,2013-09-16,"YB","AG","7","Ls","Littorina_sitkana","Type 13",66,0.0875,754.285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","60%","Counts likely low due to algae film, blur, and glare"
+"2013-09-16_YB-AGq9",2013-09-16,2013-09-16,"YB","AG","9","Ls","Littorina_sitkana","Type 13",77,0.0875,880,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts likely low due to algae film and blur"
+"2013-09-16_YB-AGq1",2013-09-16,2013-09-16,"YB","AG","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-09-16_YB-AGq2",2013-09-16,2013-09-16,"YB","AG","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-09-16_YB-AGq3",2013-09-16,2013-09-16,"YB","AG","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Glare made counting barnacles difficult"
+"2013-09-16_YB-AGq7",2013-09-16,2013-09-16,"YB","AG","7","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","60%","Counts likely low due to algae film, blur, and glare"
+"2013-09-16_YB-AGq9",2013-09-16,2013-09-16,"YB","AG","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts likely low due to algae film and blur"
+"2013-09-16_YB-AGq1",2013-09-16,2013-09-16,"YB","AG","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-09-16_YB-AGq2",2013-09-16,2013-09-16,"YB","AG","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-09-16_YB-AGq3",2013-09-16,2013-09-16,"YB","AG","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Glare made counting barnacles difficult"
+"2013-09-16_YB-AGq7",2013-09-16,2013-09-16,"YB","AG","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","60%","Counts likely low due to algae film, blur, and glare"
+"2013-09-16_YB-AGq9",2013-09-16,2013-09-16,"YB","AG","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts likely low due to algae film and blur"
+"2013-09-16_YB-AGq1",2013-09-16,2013-09-16,"YB","AG","1","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-09-16_YB-AGq2",2013-09-16,2013-09-16,"YB","AG","2","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-09-16_YB-AGq3",2013-09-16,2013-09-16,"YB","AG","3","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Glare made counting barnacles difficult"
+"2013-09-16_YB-AGq7",2013-09-16,2013-09-16,"YB","AG","7","Myt","Mytilus_spp","Type 7",21,0.0875,240,NA,"Stephanie Merhoff","Finished","Full","Cropped","60%","Counts likely low due to algae film, blur, and glare"
+"2013-09-16_YB-AGq9",2013-09-16,2013-09-16,"YB","AG","9","Myt","Mytilus_spp","Type 7",26,0.0875,297.142857142857,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts likely low due to algae film and blur"
+"2013-09-16_YB-AGq1",2013-09-16,2013-09-16,"YB","AG","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-09-16_YB-AGq2",2013-09-16,2013-09-16,"YB","AG","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-09-16_YB-AGq3",2013-09-16,2013-09-16,"YB","AG","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Glare made counting barnacles difficult"
+"2013-09-16_YB-AGq7",2013-09-16,2013-09-16,"YB","AG","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","60%","Counts likely low due to algae film, blur, and glare"
+"2013-09-16_YB-AGq9",2013-09-16,2013-09-16,"YB","AG","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts likely low due to algae film and blur"
+"2013-09-16_YB-AGq1",2013-09-16,2013-09-16,"YB","AG","1","Mt","Mytilus_trossulus","Type 15",49,0.0875,560,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-09-16_YB-AGq2",2013-09-16,2013-09-16,"YB","AG","2","Mt","Mytilus_trossulus","Type 15",32,0.0875,365.714285714286,NA,"Isaac Shepard","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-09-16_YB-AGq3",2013-09-16,2013-09-16,"YB","AG","3","Mt","Mytilus_trossulus","Type 15",62,0.0875,708.571428571429,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Glare made counting barnacles difficult"
+"2013-09-16_YB-AGq7",2013-09-16,2013-09-16,"YB","AG","7","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","60%","Counts likely low due to algae film, blur, and glare"
+"2013-09-16_YB-AGq9",2013-09-16,2013-09-16,"YB","AG","9","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts likely low due to algae film and blur"
+"2013-09-16_YB-AGq1",2013-09-16,2013-09-16,"YB","AG","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-09-16_YB-AGq2",2013-09-16,2013-09-16,"YB","AG","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-09-16_YB-AGq3",2013-09-16,2013-09-16,"YB","AG","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Glare made counting barnacles difficult"
+"2013-09-16_YB-AGq7",2013-09-16,2013-09-16,"YB","AG","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","60%","Counts likely low due to algae film, blur, and glare"
+"2013-09-16_YB-AGq9",2013-09-16,2013-09-16,"YB","AG","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts likely low due to algae film and blur"
+"2013-09-16_YB-AGq1",2013-09-16,2013-09-16,"YB","AG","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-09-16_YB-AGq2",2013-09-16,2013-09-16,"YB","AG","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-09-16_YB-AGq3",2013-09-16,2013-09-16,"YB","AG","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Glare made counting barnacles difficult"
+"2013-09-16_YB-AGq7",2013-09-16,2013-09-16,"YB","AG","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","60%","Counts likely low due to algae film, blur, and glare"
+"2013-09-16_YB-AGq9",2013-09-16,2013-09-16,"YB","AG","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts likely low due to algae film and blur"
+"2013-09-16_YB-AGq1",2013-09-16,2013-09-16,"YB","AG","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-09-16_YB-AGq2",2013-09-16,2013-09-16,"YB","AG","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-09-16_YB-AGq3",2013-09-16,2013-09-16,"YB","AG","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Glare made counting barnacles difficult"
+"2013-09-16_YB-AGq7",2013-09-16,2013-09-16,"YB","AG","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","60%","Counts likely low due to algae film, blur, and glare"
+"2013-09-16_YB-AGq9",2013-09-16,2013-09-16,"YB","AG","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts likely low due to algae film and blur"
+"2013-09-16_YB-AGq1",2013-09-16,2013-09-16,"YB","AG","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-09-16_YB-AGq2",2013-09-16,2013-09-16,"YB","AG","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-09-16_YB-AGq3",2013-09-16,2013-09-16,"YB","AG","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Glare made counting barnacles difficult"
+"2013-09-16_YB-AGq7",2013-09-16,2013-09-16,"YB","AG","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","60%","Counts likely low due to algae film, blur, and glare"
+"2013-09-16_YB-AGq9",2013-09-16,2013-09-16,"YB","AG","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts likely low due to algae film and blur"
+"2013-09-16_YB-AGq1",2013-09-16,2013-09-16,"YB","AG","1","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-09-16_YB-AGq2",2013-09-16,2013-09-16,"YB","AG","2","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Isaac Shepard","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-09-16_YB-AGq3",2013-09-16,2013-09-16,"YB","AG","3","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Glare made counting barnacles difficult"
+"2013-09-16_YB-AGq7",2013-09-16,2013-09-16,"YB","AG","7","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","60%","Counts likely low due to algae film, blur, and glare"
+"2013-09-16_YB-AGq9",2013-09-16,2013-09-16,"YB","AG","9","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts likely low due to algae film and blur"
+"2013-09-16_YB-AGq1",2013-09-16,2013-09-16,"YB","AG","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-09-16_YB-AGq2",2013-09-16,2013-09-16,"YB","AG","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-09-16_YB-AGq3",2013-09-16,2013-09-16,"YB","AG","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Glare made counting barnacles difficult"
+"2013-09-16_YB-AGq7",2013-09-16,2013-09-16,"YB","AG","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","60%","Counts likely low due to algae film, blur, and glare"
+"2013-09-16_YB-AGq9",2013-09-16,2013-09-16,"YB","AG","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts likely low due to algae film and blur"
+"2013-09-16_YB-AGq1",2013-09-16,2013-09-16,"YB","AG","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-09-16_YB-AGq2",2013-09-16,2013-09-16,"YB","AG","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-09-16_YB-AGq3",2013-09-16,2013-09-16,"YB","AG","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Glare made counting barnacles difficult"
+"2013-09-16_YB-AGq7",2013-09-16,2013-09-16,"YB","AG","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","60%","Counts likely low due to algae film, blur, and glare"
+"2013-09-16_YB-AGq9",2013-09-16,2013-09-16,"YB","AG","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts likely low due to algae film and blur"
+"2013-09-16_YB-AGq1",2013-09-16,2013-09-16,"YB","AG","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-09-16_YB-AGq2",2013-09-16,2013-09-16,"YB","AG","2","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-09-16_YB-AGq3",2013-09-16,2013-09-16,"YB","AG","3","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Glare made counting barnacles difficult"
+"2013-09-16_YB-AGq7",2013-09-16,2013-09-16,"YB","AG","7","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","60%","Counts likely low due to algae film, blur, and glare"
+"2013-09-16_YB-AGq9",2013-09-16,2013-09-16,"YB","AG","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts likely low due to algae film and blur"
+"2013-09-16_YB-AGq1",2013-09-16,2013-09-16,"YB","AG","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-09-16_YB-AGq2",2013-09-16,2013-09-16,"YB","AG","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-09-16_YB-AGq3",2013-09-16,2013-09-16,"YB","AG","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Glare made counting barnacles difficult"
+"2013-09-16_YB-AGq7",2013-09-16,2013-09-16,"YB","AG","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","60%","Counts likely low due to algae film, blur, and glare"
+"2013-09-16_YB-AGq9",2013-09-16,2013-09-16,"YB","AG","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts likely low due to algae film and blur"
+"2013-09-16_YB-AGq1",2013-09-16,2013-09-16,"YB","AG","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-09-16_YB-AGq2",2013-09-16,2013-09-16,"YB","AG","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-09-16_YB-AGq3",2013-09-16,2013-09-16,"YB","AG","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Glare made counting barnacles difficult"
+"2013-09-16_YB-AGq7",2013-09-16,2013-09-16,"YB","AG","7","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","60%","Counts likely low due to algae film, blur, and glare"
+"2013-09-16_YB-AGq9",2013-09-16,2013-09-16,"YB","AG","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts likely low due to algae film and blur"
+"2013-09-16_YB-AGq1",2013-09-16,2013-09-16,"YB","AG","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-09-16_YB-AGq2",2013-09-16,2013-09-16,"YB","AG","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-09-16_YB-AGq3",2013-09-16,2013-09-16,"YB","AG","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Glare made counting barnacles difficult"
+"2013-09-16_YB-AGq7",2013-09-16,2013-09-16,"YB","AG","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","60%","Counts likely low due to algae film, blur, and glare"
+"2013-09-16_YB-AGq9",2013-09-16,2013-09-16,"YB","AG","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts likely low due to algae film and blur"
+"2013-09-16_YB-Bq1",2013-09-16,2013-09-16,"YB","B","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","86%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq2",2013-09-16,2013-09-16,"YB","B","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","19%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq3",2013-09-16,2013-09-16,"YB","B","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","19%","Barnacle counts likely low due to algal cover"
+"2013-09-16_YB-Bq4",2013-09-16,2013-09-16,"YB","B","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare and algal cover"
+"2013-09-16_YB-Bq5",2013-09-16,2013-09-16,"YB","B","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","22%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq6",2013-09-16,2013-09-16,"YB","B","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","41%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq7",2013-09-16,2013-09-16,"YB","B","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","24%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq8",2013-09-16,2013-09-16,"YB","B","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","32%","Barnacle, mussel, limpet, and littorine snail counts likely low due to blur, algal cover, and underwater sections; 5.4% underwater; 5% byssal threads"
+"2013-09-16_YB-Bq9",2013-09-16,2013-09-16,"YB","B","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","21%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq1",2013-09-16,2013-09-16,"YB","B","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","86%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq2",2013-09-16,2013-09-16,"YB","B","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","19%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq3",2013-09-16,2013-09-16,"YB","B","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","19%","Barnacle counts likely low due to algal cover"
+"2013-09-16_YB-Bq4",2013-09-16,2013-09-16,"YB","B","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare and algal cover"
+"2013-09-16_YB-Bq5",2013-09-16,2013-09-16,"YB","B","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","22%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq6",2013-09-16,2013-09-16,"YB","B","6","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","41%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq7",2013-09-16,2013-09-16,"YB","B","7","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","24%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq8",2013-09-16,2013-09-16,"YB","B","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","32%","Barnacle, mussel, limpet, and littorine snail counts likely low due to blur, algal cover, and underwater sections; 5.4% underwater; 5% byssal threads"
+"2013-09-16_YB-Bq9",2013-09-16,2013-09-16,"YB","B","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","21%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq1",2013-09-16,2013-09-16,"YB","B","1","Bg","Balanus_glandula","Type 1",963,0.015625,61632,"c","Beatriz Vaca","Finished","Full","Cropped","86%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq2",2013-09-16,2013-09-16,"YB","B","2","Bg","Balanus_glandula","Type 1",1756,0.015625,112384,"c","Beatriz Vaca","Finished","Full","Cropped","19%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq3",2013-09-16,2013-09-16,"YB","B","3","Bg","Balanus_glandula","Type 1",963,0.015625,61632,"c","Beatriz Vaca","Finished","Full","Cropped","19%","Barnacle counts likely low due to algal cover"
+"2013-09-16_YB-Bq4",2013-09-16,2013-09-16,"YB","B","4","Bg","Balanus_glandula","Type 1",596,0.015625,38144,"c","Beatriz Vaca","Finished","Full","Cropped","60%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare and algal cover"
+"2013-09-16_YB-Bq5",2013-09-16,2013-09-16,"YB","B","5","Bg","Balanus_glandula","Type 1",786,0.015625,50304,"c","Beatriz Vaca","Finished","Full","Cropped","22%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq6",2013-09-16,2013-09-16,"YB","B","6","Bg","Balanus_glandula","Type 1",1306,0.015625,83584,"c","Beatriz Vaca","Finished","Full","Cropped","41%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq7",2013-09-16,2013-09-16,"YB","B","7","Bg","Balanus_glandula","Type 1",892,0.015625,57088,"c","Beatriz Vaca","Finished","Full","Cropped","24%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq8",2013-09-16,2013-09-16,"YB","B","8","Bg","Balanus_glandula","Type 1",1308,0.015625,83712,"c","Beatriz Vaca","Finished","Full","Cropped","32%","Barnacle, mussel, limpet, and littorine snail counts likely low due to blur, algal cover, and underwater sections; 5.4% underwater; 5% byssal threads"
+"2013-09-16_YB-Bq9",2013-09-16,2013-09-16,"YB","B","9","Bg","Balanus_glandula","Type 1",1296,0.015625,82944,"c","Beatriz Vaca","Finished","Full","Cropped","21%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq1",2013-09-16,2013-09-16,"YB","B","1","BgD","Balanus_glandula_(dead)","Type 2",76,0.015625,4864,"c","Beatriz Vaca","Finished","Full","Cropped","86%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq2",2013-09-16,2013-09-16,"YB","B","2","BgD","Balanus_glandula_(dead)","Type 2",11,0.015625,704,"c","Beatriz Vaca","Finished","Full","Cropped","19%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq3",2013-09-16,2013-09-16,"YB","B","3","BgD","Balanus_glandula_(dead)","Type 2",13,0.015625,832,"c","Beatriz Vaca","Finished","Full","Cropped","19%","Barnacle counts likely low due to algal cover"
+"2013-09-16_YB-Bq4",2013-09-16,2013-09-16,"YB","B","4","BgD","Balanus_glandula_(dead)","Type 2",35,0.015625,2240,"c","Beatriz Vaca","Finished","Full","Cropped","60%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare and algal cover"
+"2013-09-16_YB-Bq5",2013-09-16,2013-09-16,"YB","B","5","BgD","Balanus_glandula_(dead)","Type 2",9,0.015625,576,"c","Beatriz Vaca","Finished","Full","Cropped","22%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq6",2013-09-16,2013-09-16,"YB","B","6","BgD","Balanus_glandula_(dead)","Type 2",17,0.015625,1088,"c","Beatriz Vaca","Finished","Full","Cropped","41%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq7",2013-09-16,2013-09-16,"YB","B","7","BgD","Balanus_glandula_(dead)","Type 2",111,0.015625,7104,"c","Beatriz Vaca","Finished","Full","Cropped","24%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq8",2013-09-16,2013-09-16,"YB","B","8","BgD","Balanus_glandula_(dead)","Type 2",76,0.015625,4864,"c","Beatriz Vaca","Finished","Full","Cropped","32%","Barnacle, mussel, limpet, and littorine snail counts likely low due to blur, algal cover, and underwater sections; 5.4% underwater; 5% byssal threads"
+"2013-09-16_YB-Bq9",2013-09-16,2013-09-16,"YB","B","9","BgD","Balanus_glandula_(dead)","Type 2",23,0.015625,1472,"c","Beatriz Vaca","Finished","Full","Cropped","21%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq1",2013-09-16,2013-09-16,"YB","B","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","86%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq2",2013-09-16,2013-09-16,"YB","B","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","19%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq3",2013-09-16,2013-09-16,"YB","B","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","19%","Barnacle counts likely low due to algal cover"
+"2013-09-16_YB-Bq4",2013-09-16,2013-09-16,"YB","B","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare and algal cover"
+"2013-09-16_YB-Bq5",2013-09-16,2013-09-16,"YB","B","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","22%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq6",2013-09-16,2013-09-16,"YB","B","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","41%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq7",2013-09-16,2013-09-16,"YB","B","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","24%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq8",2013-09-16,2013-09-16,"YB","B","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","32%","Barnacle, mussel, limpet, and littorine snail counts likely low due to blur, algal cover, and underwater sections; 5.4% underwater; 5% byssal threads"
+"2013-09-16_YB-Bq9",2013-09-16,2013-09-16,"YB","B","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","21%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq1",2013-09-16,2013-09-16,"YB","B","1","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","86%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq2",2013-09-16,2013-09-16,"YB","B","2","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","19%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq3",2013-09-16,2013-09-16,"YB","B","3","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","19%","Barnacle counts likely low due to algal cover"
+"2013-09-16_YB-Bq4",2013-09-16,2013-09-16,"YB","B","4","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","60%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare and algal cover"
+"2013-09-16_YB-Bq5",2013-09-16,2013-09-16,"YB","B","5","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","22%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq6",2013-09-16,2013-09-16,"YB","B","6","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","41%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq7",2013-09-16,2013-09-16,"YB","B","7","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","24%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq8",2013-09-16,2013-09-16,"YB","B","8","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","32%","Barnacle, mussel, limpet, and littorine snail counts likely low due to blur, algal cover, and underwater sections; 5.4% underwater; 5% byssal threads"
+"2013-09-16_YB-Bq9",2013-09-16,2013-09-16,"YB","B","9","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","21%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq1",2013-09-16,2013-09-16,"YB","B","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","86%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq2",2013-09-16,2013-09-16,"YB","B","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","19%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq3",2013-09-16,2013-09-16,"YB","B","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","19%","Barnacle counts likely low due to algal cover"
+"2013-09-16_YB-Bq4",2013-09-16,2013-09-16,"YB","B","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","60%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare and algal cover"
+"2013-09-16_YB-Bq5",2013-09-16,2013-09-16,"YB","B","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","22%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq6",2013-09-16,2013-09-16,"YB","B","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","41%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq7",2013-09-16,2013-09-16,"YB","B","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","24%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq8",2013-09-16,2013-09-16,"YB","B","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","32%","Barnacle, mussel, limpet, and littorine snail counts likely low due to blur, algal cover, and underwater sections; 5.4% underwater; 5% byssal threads"
+"2013-09-16_YB-Bq9",2013-09-16,2013-09-16,"YB","B","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","21%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq1",2013-09-16,2013-09-16,"YB","B","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","86%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq2",2013-09-16,2013-09-16,"YB","B","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","19%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq3",2013-09-16,2013-09-16,"YB","B","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","19%","Barnacle counts likely low due to algal cover"
+"2013-09-16_YB-Bq4",2013-09-16,2013-09-16,"YB","B","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare and algal cover"
+"2013-09-16_YB-Bq5",2013-09-16,2013-09-16,"YB","B","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","22%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq6",2013-09-16,2013-09-16,"YB","B","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","41%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq7",2013-09-16,2013-09-16,"YB","B","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","24%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq8",2013-09-16,2013-09-16,"YB","B","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","32%","Barnacle, mussel, limpet, and littorine snail counts likely low due to blur, algal cover, and underwater sections; 5.4% underwater; 5% byssal threads"
+"2013-09-16_YB-Bq9",2013-09-16,2013-09-16,"YB","B","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","21%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq1",2013-09-16,2013-09-16,"YB","B","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","86%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq2",2013-09-16,2013-09-16,"YB","B","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","19%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq3",2013-09-16,2013-09-16,"YB","B","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","19%","Barnacle counts likely low due to algal cover"
+"2013-09-16_YB-Bq4",2013-09-16,2013-09-16,"YB","B","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare and algal cover"
+"2013-09-16_YB-Bq5",2013-09-16,2013-09-16,"YB","B","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","22%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq6",2013-09-16,2013-09-16,"YB","B","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","41%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq7",2013-09-16,2013-09-16,"YB","B","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","24%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq8",2013-09-16,2013-09-16,"YB","B","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","32%","Barnacle, mussel, limpet, and littorine snail counts likely low due to blur, algal cover, and underwater sections; 5.4% underwater; 5% byssal threads"
+"2013-09-16_YB-Bq9",2013-09-16,2013-09-16,"YB","B","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","21%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq1",2013-09-16,2013-09-16,"YB","B","1","Lim","Limpets","Type 12",11,0.0875,125.714285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","86%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq2",2013-09-16,2013-09-16,"YB","B","2","Lim","Limpets","Type 12",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","19%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq3",2013-09-16,2013-09-16,"YB","B","3","Lim","Limpets","Type 12",16,0.0875,182.857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","19%","Barnacle counts likely low due to algal cover"
+"2013-09-16_YB-Bq4",2013-09-16,2013-09-16,"YB","B","4","Lim","Limpets","Type 12",67,0.0875,765.714285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare and algal cover"
+"2013-09-16_YB-Bq5",2013-09-16,2013-09-16,"YB","B","5","Lim","Limpets","Type 12",15,0.0875,171.428571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","22%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq6",2013-09-16,2013-09-16,"YB","B","6","Lim","Limpets","Type 12",16,0.0875,182.857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","41%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq7",2013-09-16,2013-09-16,"YB","B","7","Lim","Limpets","Type 12",48,0.0875,548.571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","24%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq8",2013-09-16,2013-09-16,"YB","B","8","Lim","Limpets","Type 12",69,0.0875,788.571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","32%","Barnacle, mussel, limpet, and littorine snail counts likely low due to blur, algal cover, and underwater sections; 5.4% underwater; 5% byssal threads"
+"2013-09-16_YB-Bq9",2013-09-16,2013-09-16,"YB","B","9","Lim","Limpets","Type 12",175,0.0875,2000,NA,"Beatriz Vaca","Finished","Full","Cropped","21%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq1",2013-09-16,2013-09-16,"YB","B","1","Ls","Littorina_sitkana","Type 13",17,0.0875,194.285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","86%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq2",2013-09-16,2013-09-16,"YB","B","2","Ls","Littorina_sitkana","Type 13",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","19%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq3",2013-09-16,2013-09-16,"YB","B","3","Ls","Littorina_sitkana","Type 13",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","19%","Barnacle counts likely low due to algal cover"
+"2013-09-16_YB-Bq4",2013-09-16,2013-09-16,"YB","B","4","Ls","Littorina_sitkana","Type 13",9,0.0875,102.857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare and algal cover"
+"2013-09-16_YB-Bq5",2013-09-16,2013-09-16,"YB","B","5","Ls","Littorina_sitkana","Type 13",78,0.0875,891.428571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","22%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq6",2013-09-16,2013-09-16,"YB","B","6","Ls","Littorina_sitkana","Type 13",43,0.0875,491.428571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","41%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq7",2013-09-16,2013-09-16,"YB","B","7","Ls","Littorina_sitkana","Type 13",109,0.0875,1245.71428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","24%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq8",2013-09-16,2013-09-16,"YB","B","8","Ls","Littorina_sitkana","Type 13",52,0.0875,594.285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","32%","Barnacle, mussel, limpet, and littorine snail counts likely low due to blur, algal cover, and underwater sections; 5.4% underwater; 5% byssal threads"
+"2013-09-16_YB-Bq9",2013-09-16,2013-09-16,"YB","B","9","Ls","Littorina_sitkana","Type 13",21,0.0875,240,NA,"Beatriz Vaca","Finished","Full","Cropped","21%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq1",2013-09-16,2013-09-16,"YB","B","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","86%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq2",2013-09-16,2013-09-16,"YB","B","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","19%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq3",2013-09-16,2013-09-16,"YB","B","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","19%","Barnacle counts likely low due to algal cover"
+"2013-09-16_YB-Bq4",2013-09-16,2013-09-16,"YB","B","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare and algal cover"
+"2013-09-16_YB-Bq5",2013-09-16,2013-09-16,"YB","B","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","22%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq6",2013-09-16,2013-09-16,"YB","B","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","41%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq7",2013-09-16,2013-09-16,"YB","B","7","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","24%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq8",2013-09-16,2013-09-16,"YB","B","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","32%","Barnacle, mussel, limpet, and littorine snail counts likely low due to blur, algal cover, and underwater sections; 5.4% underwater; 5% byssal threads"
+"2013-09-16_YB-Bq9",2013-09-16,2013-09-16,"YB","B","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","21%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq1",2013-09-16,2013-09-16,"YB","B","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","86%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq2",2013-09-16,2013-09-16,"YB","B","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","19%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq3",2013-09-16,2013-09-16,"YB","B","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","19%","Barnacle counts likely low due to algal cover"
+"2013-09-16_YB-Bq4",2013-09-16,2013-09-16,"YB","B","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare and algal cover"
+"2013-09-16_YB-Bq5",2013-09-16,2013-09-16,"YB","B","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","22%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq6",2013-09-16,2013-09-16,"YB","B","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","41%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq7",2013-09-16,2013-09-16,"YB","B","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","24%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq8",2013-09-16,2013-09-16,"YB","B","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","32%","Barnacle, mussel, limpet, and littorine snail counts likely low due to blur, algal cover, and underwater sections; 5.4% underwater; 5% byssal threads"
+"2013-09-16_YB-Bq9",2013-09-16,2013-09-16,"YB","B","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","21%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq1",2013-09-16,2013-09-16,"YB","B","1","Myt","Mytilus_spp","Type 7",171,0.0875,1954.28571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","86%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq2",2013-09-16,2013-09-16,"YB","B","2","Myt","Mytilus_spp","Type 7",147,0.0875,1680,NA,"Beatriz Vaca","Finished","Full","Cropped","19%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq3",2013-09-16,2013-09-16,"YB","B","3","Myt","Mytilus_spp","Type 7",28,0.0875,320,NA,"Beatriz Vaca","Finished","Full","Cropped","19%","Barnacle counts likely low due to algal cover"
+"2013-09-16_YB-Bq4",2013-09-16,2013-09-16,"YB","B","4","Myt","Mytilus_spp","Type 7",113,0.0875,1291.42857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare and algal cover"
+"2013-09-16_YB-Bq5",2013-09-16,2013-09-16,"YB","B","5","Myt","Mytilus_spp","Type 7",164,0.0875,1874.28571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","22%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq6",2013-09-16,2013-09-16,"YB","B","6","Myt","Mytilus_spp","Type 7",133,0.0875,1520,NA,"Beatriz Vaca","Finished","Full","Cropped","41%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq7",2013-09-16,2013-09-16,"YB","B","7","Myt","Mytilus_spp","Type 7",416,0.0875,4754.28571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","24%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq8",2013-09-16,2013-09-16,"YB","B","8","Myt","Mytilus_spp","Type 7",508,0.0875,5805.71428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","32%","Barnacle, mussel, limpet, and littorine snail counts likely low due to blur, algal cover, and underwater sections; 5.4% underwater; 5% byssal threads"
+"2013-09-16_YB-Bq9",2013-09-16,2013-09-16,"YB","B","9","Myt","Mytilus_spp","Type 7",342,0.0875,3908.57142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","21%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq1",2013-09-16,2013-09-16,"YB","B","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","86%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq2",2013-09-16,2013-09-16,"YB","B","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","19%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq3",2013-09-16,2013-09-16,"YB","B","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","19%","Barnacle counts likely low due to algal cover"
+"2013-09-16_YB-Bq4",2013-09-16,2013-09-16,"YB","B","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare and algal cover"
+"2013-09-16_YB-Bq5",2013-09-16,2013-09-16,"YB","B","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","22%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq6",2013-09-16,2013-09-16,"YB","B","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","41%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq7",2013-09-16,2013-09-16,"YB","B","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","24%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq8",2013-09-16,2013-09-16,"YB","B","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","32%","Barnacle, mussel, limpet, and littorine snail counts likely low due to blur, algal cover, and underwater sections; 5.4% underwater; 5% byssal threads"
+"2013-09-16_YB-Bq9",2013-09-16,2013-09-16,"YB","B","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","21%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq1",2013-09-16,2013-09-16,"YB","B","1","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","86%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq2",2013-09-16,2013-09-16,"YB","B","2","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","19%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq3",2013-09-16,2013-09-16,"YB","B","3","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","19%","Barnacle counts likely low due to algal cover"
+"2013-09-16_YB-Bq4",2013-09-16,2013-09-16,"YB","B","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare and algal cover"
+"2013-09-16_YB-Bq5",2013-09-16,2013-09-16,"YB","B","5","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","22%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq6",2013-09-16,2013-09-16,"YB","B","6","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","41%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq7",2013-09-16,2013-09-16,"YB","B","7","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","24%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq8",2013-09-16,2013-09-16,"YB","B","8","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","32%","Barnacle, mussel, limpet, and littorine snail counts likely low due to blur, algal cover, and underwater sections; 5.4% underwater; 5% byssal threads"
+"2013-09-16_YB-Bq9",2013-09-16,2013-09-16,"YB","B","9","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","21%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq1",2013-09-16,2013-09-16,"YB","B","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","86%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq2",2013-09-16,2013-09-16,"YB","B","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","19%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq3",2013-09-16,2013-09-16,"YB","B","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","19%","Barnacle counts likely low due to algal cover"
+"2013-09-16_YB-Bq4",2013-09-16,2013-09-16,"YB","B","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare and algal cover"
+"2013-09-16_YB-Bq5",2013-09-16,2013-09-16,"YB","B","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","22%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq6",2013-09-16,2013-09-16,"YB","B","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","41%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq7",2013-09-16,2013-09-16,"YB","B","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","24%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq8",2013-09-16,2013-09-16,"YB","B","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","32%","Barnacle, mussel, limpet, and littorine snail counts likely low due to blur, algal cover, and underwater sections; 5.4% underwater; 5% byssal threads"
+"2013-09-16_YB-Bq9",2013-09-16,2013-09-16,"YB","B","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","21%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq1",2013-09-16,2013-09-16,"YB","B","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","86%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq2",2013-09-16,2013-09-16,"YB","B","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","19%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq3",2013-09-16,2013-09-16,"YB","B","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","19%","Barnacle counts likely low due to algal cover"
+"2013-09-16_YB-Bq4",2013-09-16,2013-09-16,"YB","B","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare and algal cover"
+"2013-09-16_YB-Bq5",2013-09-16,2013-09-16,"YB","B","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","22%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq6",2013-09-16,2013-09-16,"YB","B","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","41%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq7",2013-09-16,2013-09-16,"YB","B","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","24%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq8",2013-09-16,2013-09-16,"YB","B","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","32%","Barnacle, mussel, limpet, and littorine snail counts likely low due to blur, algal cover, and underwater sections; 5.4% underwater; 5% byssal threads"
+"2013-09-16_YB-Bq9",2013-09-16,2013-09-16,"YB","B","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","21%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq1",2013-09-16,2013-09-16,"YB","B","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","86%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq2",2013-09-16,2013-09-16,"YB","B","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","19%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq3",2013-09-16,2013-09-16,"YB","B","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","19%","Barnacle counts likely low due to algal cover"
+"2013-09-16_YB-Bq4",2013-09-16,2013-09-16,"YB","B","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare and algal cover"
+"2013-09-16_YB-Bq5",2013-09-16,2013-09-16,"YB","B","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","22%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq6",2013-09-16,2013-09-16,"YB","B","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","41%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq7",2013-09-16,2013-09-16,"YB","B","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","24%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq8",2013-09-16,2013-09-16,"YB","B","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","32%","Barnacle, mussel, limpet, and littorine snail counts likely low due to blur, algal cover, and underwater sections; 5.4% underwater; 5% byssal threads"
+"2013-09-16_YB-Bq9",2013-09-16,2013-09-16,"YB","B","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","21%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq1",2013-09-16,2013-09-16,"YB","B","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","86%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq2",2013-09-16,2013-09-16,"YB","B","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","19%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq3",2013-09-16,2013-09-16,"YB","B","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","19%","Barnacle counts likely low due to algal cover"
+"2013-09-16_YB-Bq4",2013-09-16,2013-09-16,"YB","B","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare and algal cover"
+"2013-09-16_YB-Bq5",2013-09-16,2013-09-16,"YB","B","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","22%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq6",2013-09-16,2013-09-16,"YB","B","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","41%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq7",2013-09-16,2013-09-16,"YB","B","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","24%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq8",2013-09-16,2013-09-16,"YB","B","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","32%","Barnacle, mussel, limpet, and littorine snail counts likely low due to blur, algal cover, and underwater sections; 5.4% underwater; 5% byssal threads"
+"2013-09-16_YB-Bq9",2013-09-16,2013-09-16,"YB","B","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","21%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq1",2013-09-16,2013-09-16,"YB","B","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","86%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq2",2013-09-16,2013-09-16,"YB","B","2","No","Nucella_ostrina","Type 9",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","19%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq3",2013-09-16,2013-09-16,"YB","B","3","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","19%","Barnacle counts likely low due to algal cover"
+"2013-09-16_YB-Bq4",2013-09-16,2013-09-16,"YB","B","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare and algal cover"
+"2013-09-16_YB-Bq5",2013-09-16,2013-09-16,"YB","B","5","No","Nucella_ostrina","Type 9",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","22%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq6",2013-09-16,2013-09-16,"YB","B","6","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","41%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq7",2013-09-16,2013-09-16,"YB","B","7","No","Nucella_ostrina","Type 9",30,0.0875,342.857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","24%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq8",2013-09-16,2013-09-16,"YB","B","8","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","32%","Barnacle, mussel, limpet, and littorine snail counts likely low due to blur, algal cover, and underwater sections; 5.4% underwater; 5% byssal threads"
+"2013-09-16_YB-Bq9",2013-09-16,2013-09-16,"YB","B","9","No","Nucella_ostrina","Type 9",27,0.0875,308.571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","21%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq1",2013-09-16,2013-09-16,"YB","B","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","86%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq2",2013-09-16,2013-09-16,"YB","B","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","19%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq3",2013-09-16,2013-09-16,"YB","B","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","19%","Barnacle counts likely low due to algal cover"
+"2013-09-16_YB-Bq4",2013-09-16,2013-09-16,"YB","B","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare and algal cover"
+"2013-09-16_YB-Bq5",2013-09-16,2013-09-16,"YB","B","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","22%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq6",2013-09-16,2013-09-16,"YB","B","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","41%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq7",2013-09-16,2013-09-16,"YB","B","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","24%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq8",2013-09-16,2013-09-16,"YB","B","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","32%","Barnacle, mussel, limpet, and littorine snail counts likely low due to blur, algal cover, and underwater sections; 5.4% underwater; 5% byssal threads"
+"2013-09-16_YB-Bq9",2013-09-16,2013-09-16,"YB","B","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","21%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq1",2013-09-16,2013-09-16,"YB","B","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","86%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq2",2013-09-16,2013-09-16,"YB","B","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","19%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq3",2013-09-16,2013-09-16,"YB","B","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","19%","Barnacle counts likely low due to algal cover"
+"2013-09-16_YB-Bq4",2013-09-16,2013-09-16,"YB","B","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare and algal cover"
+"2013-09-16_YB-Bq5",2013-09-16,2013-09-16,"YB","B","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","22%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq6",2013-09-16,2013-09-16,"YB","B","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","41%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq7",2013-09-16,2013-09-16,"YB","B","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","24%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq8",2013-09-16,2013-09-16,"YB","B","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","32%","Barnacle, mussel, limpet, and littorine snail counts likely low due to blur, algal cover, and underwater sections; 5.4% underwater; 5% byssal threads"
+"2013-09-16_YB-Bq9",2013-09-16,2013-09-16,"YB","B","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","21%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq1",2013-09-16,2013-09-16,"YB","B","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","86%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq2",2013-09-16,2013-09-16,"YB","B","2","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","19%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq3",2013-09-16,2013-09-16,"YB","B","3","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","19%","Barnacle counts likely low due to algal cover"
+"2013-09-16_YB-Bq4",2013-09-16,2013-09-16,"YB","B","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare and algal cover"
+"2013-09-16_YB-Bq5",2013-09-16,2013-09-16,"YB","B","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","22%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq6",2013-09-16,2013-09-16,"YB","B","6","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","41%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq7",2013-09-16,2013-09-16,"YB","B","7","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","24%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq8",2013-09-16,2013-09-16,"YB","B","8","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","32%","Barnacle, mussel, limpet, and littorine snail counts likely low due to blur, algal cover, and underwater sections; 5.4% underwater; 5% byssal threads"
+"2013-09-16_YB-Bq9",2013-09-16,2013-09-16,"YB","B","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","21%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq1",2013-09-16,2013-09-16,"YB","B","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","86%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq2",2013-09-16,2013-09-16,"YB","B","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","19%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq3",2013-09-16,2013-09-16,"YB","B","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","19%","Barnacle counts likely low due to algal cover"
+"2013-09-16_YB-Bq4",2013-09-16,2013-09-16,"YB","B","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare and algal cover"
+"2013-09-16_YB-Bq5",2013-09-16,2013-09-16,"YB","B","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","22%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq6",2013-09-16,2013-09-16,"YB","B","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","41%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq7",2013-09-16,2013-09-16,"YB","B","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","24%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq8",2013-09-16,2013-09-16,"YB","B","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","32%","Barnacle, mussel, limpet, and littorine snail counts likely low due to blur, algal cover, and underwater sections; 5.4% underwater; 5% byssal threads"
+"2013-09-16_YB-Bq9",2013-09-16,2013-09-16,"YB","B","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","21%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq1",2013-09-16,2013-09-16,"YB","B","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","86%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq2",2013-09-16,2013-09-16,"YB","B","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","19%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq3",2013-09-16,2013-09-16,"YB","B","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","19%","Barnacle counts likely low due to algal cover"
+"2013-09-16_YB-Bq4",2013-09-16,2013-09-16,"YB","B","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare and algal cover"
+"2013-09-16_YB-Bq5",2013-09-16,2013-09-16,"YB","B","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","22%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq6",2013-09-16,2013-09-16,"YB","B","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","41%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq7",2013-09-16,2013-09-16,"YB","B","7","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","24%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq8",2013-09-16,2013-09-16,"YB","B","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","32%","Barnacle, mussel, limpet, and littorine snail counts likely low due to blur, algal cover, and underwater sections; 5.4% underwater; 5% byssal threads"
+"2013-09-16_YB-Bq9",2013-09-16,2013-09-16,"YB","B","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","21%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq1",2013-09-16,2013-09-16,"YB","B","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","86%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq2",2013-09-16,2013-09-16,"YB","B","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","19%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq3",2013-09-16,2013-09-16,"YB","B","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","19%","Barnacle counts likely low due to algal cover"
+"2013-09-16_YB-Bq4",2013-09-16,2013-09-16,"YB","B","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare and algal cover"
+"2013-09-16_YB-Bq5",2013-09-16,2013-09-16,"YB","B","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","22%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq6",2013-09-16,2013-09-16,"YB","B","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","41%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq7",2013-09-16,2013-09-16,"YB","B","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","24%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-Bq8",2013-09-16,2013-09-16,"YB","B","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","32%","Barnacle, mussel, limpet, and littorine snail counts likely low due to blur, algal cover, and underwater sections; 5.4% underwater; 5% byssal threads"
+"2013-09-16_YB-Bq9",2013-09-16,2013-09-16,"YB","B","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","21%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-BBq1",2013-09-16,2013-09-16,"YB","BB","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-09-16_YB-BBq2",2013-09-16,2013-09-16,"YB","BB","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-09-16_YB-BBq3",2013-09-16,2013-09-16,"YB","BB","3","Alg","Algae","Type 19",6,0.0875,68.5714285714286,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-09-16_YB-BBq9",2013-09-16,2013-09-16,"YB","BB","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to algae film and blur"
+"2013-09-16_YB-BBq1",2013-09-16,2013-09-16,"YB","BB","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-09-16_YB-BBq2",2013-09-16,2013-09-16,"YB","BB","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-09-16_YB-BBq3",2013-09-16,2013-09-16,"YB","BB","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-09-16_YB-BBq9",2013-09-16,2013-09-16,"YB","BB","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to algae film and blur"
+"2013-09-16_YB-BBq1",2013-09-16,2013-09-16,"YB","BB","1","Bg","Balanus_glandula","Type 1",649,0.015625,41536,"c","Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-09-16_YB-BBq2",2013-09-16,2013-09-16,"YB","BB","2","Bg","Balanus_glandula","Type 1",647,0.015625,41408,"c","Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-09-16_YB-BBq3",2013-09-16,2013-09-16,"YB","BB","3","Bg","Balanus_glandula","Type 1",632,0.015625,40448,"c","Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-09-16_YB-BBq9",2013-09-16,2013-09-16,"YB","BB","9","Bg","Balanus_glandula","Type 1",1216,0.015625,77824,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to algae film and blur"
+"2013-09-16_YB-BBq1",2013-09-16,2013-09-16,"YB","BB","1","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-09-16_YB-BBq2",2013-09-16,2013-09-16,"YB","BB","2","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-09-16_YB-BBq3",2013-09-16,2013-09-16,"YB","BB","3","BgD","Balanus_glandula_(dead)","Type 2",79,0.015625,5056,"c","Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-09-16_YB-BBq9",2013-09-16,2013-09-16,"YB","BB","9","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to algae film and blur"
+"2013-09-16_YB-BBq1",2013-09-16,2013-09-16,"YB","BB","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-09-16_YB-BBq2",2013-09-16,2013-09-16,"YB","BB","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-09-16_YB-BBq3",2013-09-16,2013-09-16,"YB","BB","3","Chi","Chiton_spp","Type 22",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-09-16_YB-BBq9",2013-09-16,2013-09-16,"YB","BB","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to algae film and blur"
+"2013-09-16_YB-BBq1",2013-09-16,2013-09-16,"YB","BB","1","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-09-16_YB-BBq2",2013-09-16,2013-09-16,"YB","BB","2","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-09-16_YB-BBq3",2013-09-16,2013-09-16,"YB","BB","3","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-09-16_YB-BBq9",2013-09-16,2013-09-16,"YB","BB","9","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to algae film and blur"
+"2013-09-16_YB-BBq1",2013-09-16,2013-09-16,"YB","BB","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-09-16_YB-BBq2",2013-09-16,2013-09-16,"YB","BB","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-09-16_YB-BBq3",2013-09-16,2013-09-16,"YB","BB","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-09-16_YB-BBq9",2013-09-16,2013-09-16,"YB","BB","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to algae film and blur"
+"2013-09-16_YB-BBq1",2013-09-16,2013-09-16,"YB","BB","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-09-16_YB-BBq2",2013-09-16,2013-09-16,"YB","BB","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-09-16_YB-BBq3",2013-09-16,2013-09-16,"YB","BB","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-09-16_YB-BBq9",2013-09-16,2013-09-16,"YB","BB","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to algae film and blur"
+"2013-09-16_YB-BBq1",2013-09-16,2013-09-16,"YB","BB","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-09-16_YB-BBq2",2013-09-16,2013-09-16,"YB","BB","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-09-16_YB-BBq3",2013-09-16,2013-09-16,"YB","BB","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-09-16_YB-BBq9",2013-09-16,2013-09-16,"YB","BB","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to algae film and blur"
+"2013-09-16_YB-BBq1",2013-09-16,2013-09-16,"YB","BB","1","Lim","Limpets","Type 12",6,0.0875,68.5714285714286,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-09-16_YB-BBq2",2013-09-16,2013-09-16,"YB","BB","2","Lim","Limpets","Type 12",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-09-16_YB-BBq3",2013-09-16,2013-09-16,"YB","BB","3","Lim","Limpets","Type 12",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-09-16_YB-BBq9",2013-09-16,2013-09-16,"YB","BB","9","Lim","Limpets","Type 12",7,0.0875,80,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to algae film and blur"
+"2013-09-16_YB-BBq1",2013-09-16,2013-09-16,"YB","BB","1","Ls","Littorina_sitkana","Type 13",33,0.0875,377.142857142857,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-09-16_YB-BBq2",2013-09-16,2013-09-16,"YB","BB","2","Ls","Littorina_sitkana","Type 13",18,0.0875,205.714285714286,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-09-16_YB-BBq3",2013-09-16,2013-09-16,"YB","BB","3","Ls","Littorina_sitkana","Type 13",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-09-16_YB-BBq9",2013-09-16,2013-09-16,"YB","BB","9","Ls","Littorina_sitkana","Type 13",24,0.0875,274.285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to algae film and blur"
+"2013-09-16_YB-BBq1",2013-09-16,2013-09-16,"YB","BB","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-09-16_YB-BBq2",2013-09-16,2013-09-16,"YB","BB","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-09-16_YB-BBq3",2013-09-16,2013-09-16,"YB","BB","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-09-16_YB-BBq9",2013-09-16,2013-09-16,"YB","BB","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to algae film and blur"
+"2013-09-16_YB-BBq1",2013-09-16,2013-09-16,"YB","BB","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-09-16_YB-BBq2",2013-09-16,2013-09-16,"YB","BB","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-09-16_YB-BBq3",2013-09-16,2013-09-16,"YB","BB","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-09-16_YB-BBq9",2013-09-16,2013-09-16,"YB","BB","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to algae film and blur"
+"2013-09-16_YB-BBq1",2013-09-16,2013-09-16,"YB","BB","1","Myt","Mytilus_spp","Type 7",226,0.0875,2582.85714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-09-16_YB-BBq2",2013-09-16,2013-09-16,"YB","BB","2","Myt","Mytilus_spp","Type 7",76,0.0875,868.571428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-09-16_YB-BBq3",2013-09-16,2013-09-16,"YB","BB","3","Myt","Mytilus_spp","Type 7",140,0.0875,1600,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-09-16_YB-BBq9",2013-09-16,2013-09-16,"YB","BB","9","Myt","Mytilus_spp","Type 7",21,0.0875,240,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to algae film and blur"
+"2013-09-16_YB-BBq1",2013-09-16,2013-09-16,"YB","BB","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-09-16_YB-BBq2",2013-09-16,2013-09-16,"YB","BB","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-09-16_YB-BBq3",2013-09-16,2013-09-16,"YB","BB","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-09-16_YB-BBq9",2013-09-16,2013-09-16,"YB","BB","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to algae film and blur"
+"2013-09-16_YB-BBq1",2013-09-16,2013-09-16,"YB","BB","1","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-09-16_YB-BBq2",2013-09-16,2013-09-16,"YB","BB","2","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-09-16_YB-BBq3",2013-09-16,2013-09-16,"YB","BB","3","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-09-16_YB-BBq9",2013-09-16,2013-09-16,"YB","BB","9","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to algae film and blur"
+"2013-09-16_YB-BBq1",2013-09-16,2013-09-16,"YB","BB","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-09-16_YB-BBq2",2013-09-16,2013-09-16,"YB","BB","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-09-16_YB-BBq3",2013-09-16,2013-09-16,"YB","BB","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-09-16_YB-BBq9",2013-09-16,2013-09-16,"YB","BB","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to algae film and blur"
+"2013-09-16_YB-BBq1",2013-09-16,2013-09-16,"YB","BB","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-09-16_YB-BBq2",2013-09-16,2013-09-16,"YB","BB","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-09-16_YB-BBq3",2013-09-16,2013-09-16,"YB","BB","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-09-16_YB-BBq9",2013-09-16,2013-09-16,"YB","BB","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to algae film and blur"
+"2013-09-16_YB-BBq1",2013-09-16,2013-09-16,"YB","BB","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-09-16_YB-BBq2",2013-09-16,2013-09-16,"YB","BB","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-09-16_YB-BBq3",2013-09-16,2013-09-16,"YB","BB","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-09-16_YB-BBq9",2013-09-16,2013-09-16,"YB","BB","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to algae film and blur"
+"2013-09-16_YB-BBq1",2013-09-16,2013-09-16,"YB","BB","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-09-16_YB-BBq2",2013-09-16,2013-09-16,"YB","BB","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-09-16_YB-BBq3",2013-09-16,2013-09-16,"YB","BB","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-09-16_YB-BBq9",2013-09-16,2013-09-16,"YB","BB","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to algae film and blur"
+"2013-09-16_YB-BBq1",2013-09-16,2013-09-16,"YB","BB","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-09-16_YB-BBq2",2013-09-16,2013-09-16,"YB","BB","2","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-09-16_YB-BBq3",2013-09-16,2013-09-16,"YB","BB","3","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-09-16_YB-BBq9",2013-09-16,2013-09-16,"YB","BB","9","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to algae film and blur"
+"2013-09-16_YB-BBq1",2013-09-16,2013-09-16,"YB","BB","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-09-16_YB-BBq2",2013-09-16,2013-09-16,"YB","BB","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-09-16_YB-BBq3",2013-09-16,2013-09-16,"YB","BB","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-09-16_YB-BBq9",2013-09-16,2013-09-16,"YB","BB","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to algae film and blur"
+"2013-09-16_YB-BBq1",2013-09-16,2013-09-16,"YB","BB","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-09-16_YB-BBq2",2013-09-16,2013-09-16,"YB","BB","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-09-16_YB-BBq3",2013-09-16,2013-09-16,"YB","BB","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-09-16_YB-BBq9",2013-09-16,2013-09-16,"YB","BB","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to algae film and blur"
+"2013-09-16_YB-BBq1",2013-09-16,2013-09-16,"YB","BB","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-09-16_YB-BBq2",2013-09-16,2013-09-16,"YB","BB","2","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-09-16_YB-BBq3",2013-09-16,2013-09-16,"YB","BB","3","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-09-16_YB-BBq9",2013-09-16,2013-09-16,"YB","BB","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to algae film and blur"
+"2013-09-16_YB-BBq1",2013-09-16,2013-09-16,"YB","BB","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-09-16_YB-BBq2",2013-09-16,2013-09-16,"YB","BB","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-09-16_YB-BBq3",2013-09-16,2013-09-16,"YB","BB","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-09-16_YB-BBq9",2013-09-16,2013-09-16,"YB","BB","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to algae film and blur"
+"2013-09-16_YB-BBq1",2013-09-16,2013-09-16,"YB","BB","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-09-16_YB-BBq2",2013-09-16,2013-09-16,"YB","BB","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-09-16_YB-BBq3",2013-09-16,2013-09-16,"YB","BB","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-09-16_YB-BBq9",2013-09-16,2013-09-16,"YB","BB","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to algae film and blur"
+"2013-09-16_YB-BBq1",2013-09-16,2013-09-16,"YB","BB","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-09-16_YB-BBq2",2013-09-16,2013-09-16,"YB","BB","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-09-16_YB-BBq3",2013-09-16,2013-09-16,"YB","BB","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-09-16_YB-BBq9",2013-09-16,2013-09-16,"YB","BB","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to algae film and blur"
+"2013-09-16_YB-BCq3",2013-09-16,2013-09-16,"YB","BC","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2013-09-16_YB-BCq5",2013-09-16,2013-09-16,"YB","BC","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to glare and blur"
+"2013-09-16_YB-BCq9",2013-09-16,2013-09-16,"YB","BC","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to glare and blur"
+"2013-09-16_YB-BCq3",2013-09-16,2013-09-16,"YB","BC","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2013-09-16_YB-BCq5",2013-09-16,2013-09-16,"YB","BC","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to glare and blur"
+"2013-09-16_YB-BCq9",2013-09-16,2013-09-16,"YB","BC","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to glare and blur"
+"2013-09-16_YB-BCq3",2013-09-16,2013-09-16,"YB","BC","3","Bg","Balanus_glandula","Type 1",1117,0.015625,71488,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2013-09-16_YB-BCq5",2013-09-16,2013-09-16,"YB","BC","5","Bg","Balanus_glandula","Type 1",806,0.015625,51584,"c","Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to glare and blur"
+"2013-09-16_YB-BCq9",2013-09-16,2013-09-16,"YB","BC","9","Bg","Balanus_glandula","Type 1",1096,0.015625,70144,"c","Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to glare and blur"
+"2013-09-16_YB-BCq3",2013-09-16,2013-09-16,"YB","BC","3","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2013-09-16_YB-BCq5",2013-09-16,2013-09-16,"YB","BC","5","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to glare and blur"
+"2013-09-16_YB-BCq9",2013-09-16,2013-09-16,"YB","BC","9","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to glare and blur"
+"2013-09-16_YB-BCq3",2013-09-16,2013-09-16,"YB","BC","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2013-09-16_YB-BCq5",2013-09-16,2013-09-16,"YB","BC","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to glare and blur"
+"2013-09-16_YB-BCq9",2013-09-16,2013-09-16,"YB","BC","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to glare and blur"
+"2013-09-16_YB-BCq3",2013-09-16,2013-09-16,"YB","BC","3","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2013-09-16_YB-BCq5",2013-09-16,2013-09-16,"YB","BC","5","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to glare and blur"
+"2013-09-16_YB-BCq9",2013-09-16,2013-09-16,"YB","BC","9","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to glare and blur"
+"2013-09-16_YB-BCq3",2013-09-16,2013-09-16,"YB","BC","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2013-09-16_YB-BCq5",2013-09-16,2013-09-16,"YB","BC","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to glare and blur"
+"2013-09-16_YB-BCq9",2013-09-16,2013-09-16,"YB","BC","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to glare and blur"
+"2013-09-16_YB-BCq3",2013-09-16,2013-09-16,"YB","BC","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2013-09-16_YB-BCq5",2013-09-16,2013-09-16,"YB","BC","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to glare and blur"
+"2013-09-16_YB-BCq9",2013-09-16,2013-09-16,"YB","BC","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to glare and blur"
+"2013-09-16_YB-BCq3",2013-09-16,2013-09-16,"YB","BC","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2013-09-16_YB-BCq5",2013-09-16,2013-09-16,"YB","BC","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to glare and blur"
+"2013-09-16_YB-BCq9",2013-09-16,2013-09-16,"YB","BC","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to glare and blur"
+"2013-09-16_YB-BCq3",2013-09-16,2013-09-16,"YB","BC","3","Lim","Limpets","Type 12",7,0.0875,80,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2013-09-16_YB-BCq5",2013-09-16,2013-09-16,"YB","BC","5","Lim","Limpets","Type 12",5,0.0875,57.1428571428571,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to glare and blur"
+"2013-09-16_YB-BCq9",2013-09-16,2013-09-16,"YB","BC","9","Lim","Limpets","Type 12",5,0.0875,57.1428571428571,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to glare and blur"
+"2013-09-16_YB-BCq3",2013-09-16,2013-09-16,"YB","BC","3","Ls","Littorina_sitkana","Type 13",38,0.0875,434.285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2013-09-16_YB-BCq5",2013-09-16,2013-09-16,"YB","BC","5","Ls","Littorina_sitkana","Type 13",80,0.0875,914.285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to glare and blur"
+"2013-09-16_YB-BCq9",2013-09-16,2013-09-16,"YB","BC","9","Ls","Littorina_sitkana","Type 13",92,0.0875,1051.42857142857,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to glare and blur"
+"2013-09-16_YB-BCq3",2013-09-16,2013-09-16,"YB","BC","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2013-09-16_YB-BCq5",2013-09-16,2013-09-16,"YB","BC","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to glare and blur"
+"2013-09-16_YB-BCq9",2013-09-16,2013-09-16,"YB","BC","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to glare and blur"
+"2013-09-16_YB-BCq3",2013-09-16,2013-09-16,"YB","BC","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2013-09-16_YB-BCq5",2013-09-16,2013-09-16,"YB","BC","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to glare and blur"
+"2013-09-16_YB-BCq9",2013-09-16,2013-09-16,"YB","BC","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to glare and blur"
+"2013-09-16_YB-BCq3",2013-09-16,2013-09-16,"YB","BC","3","Myt","Mytilus_spp","Type 7",53,0.0875,605.714285714286,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2013-09-16_YB-BCq5",2013-09-16,2013-09-16,"YB","BC","5","Myt","Mytilus_spp","Type 7",98,0.0875,1120,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to glare and blur"
+"2013-09-16_YB-BCq9",2013-09-16,2013-09-16,"YB","BC","9","Myt","Mytilus_spp","Type 7",51,0.0875,582.857142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to glare and blur"
+"2013-09-16_YB-BCq3",2013-09-16,2013-09-16,"YB","BC","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2013-09-16_YB-BCq5",2013-09-16,2013-09-16,"YB","BC","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to glare and blur"
+"2013-09-16_YB-BCq9",2013-09-16,2013-09-16,"YB","BC","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to glare and blur"
+"2013-09-16_YB-BCq3",2013-09-16,2013-09-16,"YB","BC","3","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2013-09-16_YB-BCq5",2013-09-16,2013-09-16,"YB","BC","5","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to glare and blur"
+"2013-09-16_YB-BCq9",2013-09-16,2013-09-16,"YB","BC","9","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to glare and blur"
+"2013-09-16_YB-BCq3",2013-09-16,2013-09-16,"YB","BC","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2013-09-16_YB-BCq5",2013-09-16,2013-09-16,"YB","BC","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to glare and blur"
+"2013-09-16_YB-BCq9",2013-09-16,2013-09-16,"YB","BC","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to glare and blur"
+"2013-09-16_YB-BCq3",2013-09-16,2013-09-16,"YB","BC","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2013-09-16_YB-BCq5",2013-09-16,2013-09-16,"YB","BC","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to glare and blur"
+"2013-09-16_YB-BCq9",2013-09-16,2013-09-16,"YB","BC","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to glare and blur"
+"2013-09-16_YB-BCq3",2013-09-16,2013-09-16,"YB","BC","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2013-09-16_YB-BCq5",2013-09-16,2013-09-16,"YB","BC","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to glare and blur"
+"2013-09-16_YB-BCq9",2013-09-16,2013-09-16,"YB","BC","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to glare and blur"
+"2013-09-16_YB-BCq3",2013-09-16,2013-09-16,"YB","BC","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2013-09-16_YB-BCq5",2013-09-16,2013-09-16,"YB","BC","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to glare and blur"
+"2013-09-16_YB-BCq9",2013-09-16,2013-09-16,"YB","BC","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to glare and blur"
+"2013-09-16_YB-BCq3",2013-09-16,2013-09-16,"YB","BC","3","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2013-09-16_YB-BCq5",2013-09-16,2013-09-16,"YB","BC","5","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to glare and blur"
+"2013-09-16_YB-BCq9",2013-09-16,2013-09-16,"YB","BC","9","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to glare and blur"
+"2013-09-16_YB-BCq3",2013-09-16,2013-09-16,"YB","BC","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2013-09-16_YB-BCq5",2013-09-16,2013-09-16,"YB","BC","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to glare and blur"
+"2013-09-16_YB-BCq9",2013-09-16,2013-09-16,"YB","BC","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to glare and blur"
+"2013-09-16_YB-BCq3",2013-09-16,2013-09-16,"YB","BC","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2013-09-16_YB-BCq5",2013-09-16,2013-09-16,"YB","BC","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to glare and blur"
+"2013-09-16_YB-BCq9",2013-09-16,2013-09-16,"YB","BC","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to glare and blur"
+"2013-09-16_YB-BCq3",2013-09-16,2013-09-16,"YB","BC","3","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2013-09-16_YB-BCq5",2013-09-16,2013-09-16,"YB","BC","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to glare and blur"
+"2013-09-16_YB-BCq9",2013-09-16,2013-09-16,"YB","BC","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to glare and blur"
+"2013-09-16_YB-BCq3",2013-09-16,2013-09-16,"YB","BC","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2013-09-16_YB-BCq5",2013-09-16,2013-09-16,"YB","BC","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to glare and blur"
+"2013-09-16_YB-BCq9",2013-09-16,2013-09-16,"YB","BC","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to glare and blur"
+"2013-09-16_YB-BCq3",2013-09-16,2013-09-16,"YB","BC","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2013-09-16_YB-BCq5",2013-09-16,2013-09-16,"YB","BC","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to glare and blur"
+"2013-09-16_YB-BCq9",2013-09-16,2013-09-16,"YB","BC","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to glare and blur"
+"2013-09-16_YB-BCq3",2013-09-16,2013-09-16,"YB","BC","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2013-09-16_YB-BCq5",2013-09-16,2013-09-16,"YB","BC","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to glare and blur"
+"2013-09-16_YB-BCq9",2013-09-16,2013-09-16,"YB","BC","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to glare and blur"
+"2013-09-16_YB-BDq1",2013-09-16,2013-09-16,"YB","BD","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","40%","algae is a thin layer on top of barnacle sheet"
+"2013-09-16_YB-BDq5",2013-09-16,2013-09-16,"YB","BD","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Cropped","42%","algae is a thin layer on top of barnacle sheet"
+"2013-09-16_YB-BDq7",2013-09-16,2013-09-16,"YB","BD","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","48%","counts may be low due to blur"
+"2013-09-16_YB-BDq1",2013-09-16,2013-09-16,"YB","BD","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","40%","algae is a thin layer on top of barnacle sheet"
+"2013-09-16_YB-BDq5",2013-09-16,2013-09-16,"YB","BD","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Cropped","42%","algae is a thin layer on top of barnacle sheet"
+"2013-09-16_YB-BDq7",2013-09-16,2013-09-16,"YB","BD","7","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","48%","counts may be low due to blur"
+"2013-09-16_YB-BDq1",2013-09-16,2013-09-16,"YB","BD","1","Bg","Balanus_glandula","Type 1",1856,0.015625,118784,"c","Julia Bingham","Finished","Full","Cropped","40%","algae is a thin layer on top of barnacle sheet"
+"2013-09-16_YB-BDq5",2013-09-16,2013-09-16,"YB","BD","5","Bg","Balanus_glandula","Type 1",574,0.015625,36736,"c","Julia Bingham","Finished","Cropped","Cropped","42%","algae is a thin layer on top of barnacle sheet"
+"2013-09-16_YB-BDq7",2013-09-16,2013-09-16,"YB","BD","7","Bg","Balanus_glandula","Type 1",1483,0.015625,94912,"c","Julia Bingham","Finished","Full","Cropped","48%","counts may be low due to blur"
+"2013-09-16_YB-BDq1",2013-09-16,2013-09-16,"YB","BD","1","BgD","Balanus_glandula_(dead)","Type 2",42,0.015625,2688,"c","Julia Bingham","Finished","Full","Cropped","40%","algae is a thin layer on top of barnacle sheet"
+"2013-09-16_YB-BDq5",2013-09-16,2013-09-16,"YB","BD","5","BgD","Balanus_glandula_(dead)","Type 2",24,0.015625,1536,"c","Julia Bingham","Finished","Cropped","Cropped","42%","algae is a thin layer on top of barnacle sheet"
+"2013-09-16_YB-BDq7",2013-09-16,2013-09-16,"YB","BD","7","BgD","Balanus_glandula_(dead)","Type 2",26,0.015625,1664,"c","Julia Bingham","Finished","Full","Cropped","48%","counts may be low due to blur"
+"2013-09-16_YB-BDq1",2013-09-16,2013-09-16,"YB","BD","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","40%","algae is a thin layer on top of barnacle sheet"
+"2013-09-16_YB-BDq5",2013-09-16,2013-09-16,"YB","BD","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Cropped","42%","algae is a thin layer on top of barnacle sheet"
+"2013-09-16_YB-BDq7",2013-09-16,2013-09-16,"YB","BD","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","48%","counts may be low due to blur"
+"2013-09-16_YB-BDq1",2013-09-16,2013-09-16,"YB","BD","1","Cth","Chthamalus_dalli","Type 3",29,0.015625,1856,"c","Julia Bingham","Finished","Full","Cropped","40%","algae is a thin layer on top of barnacle sheet"
+"2013-09-16_YB-BDq5",2013-09-16,2013-09-16,"YB","BD","5","Cth","Chthamalus_dalli","Type 3",8,0.015625,512,"c","Julia Bingham","Finished","Cropped","Cropped","42%","algae is a thin layer on top of barnacle sheet"
+"2013-09-16_YB-BDq7",2013-09-16,2013-09-16,"YB","BD","7","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Julia Bingham","Finished","Full","Cropped","48%","counts may be low due to blur"
+"2013-09-16_YB-BDq1",2013-09-16,2013-09-16,"YB","BD","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Julia Bingham","Finished","Full","Cropped","40%","algae is a thin layer on top of barnacle sheet"
+"2013-09-16_YB-BDq5",2013-09-16,2013-09-16,"YB","BD","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Julia Bingham","Finished","Cropped","Cropped","42%","algae is a thin layer on top of barnacle sheet"
+"2013-09-16_YB-BDq7",2013-09-16,2013-09-16,"YB","BD","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Julia Bingham","Finished","Full","Cropped","48%","counts may be low due to blur"
+"2013-09-16_YB-BDq1",2013-09-16,2013-09-16,"YB","BD","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","40%","algae is a thin layer on top of barnacle sheet"
+"2013-09-16_YB-BDq5",2013-09-16,2013-09-16,"YB","BD","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Cropped","42%","algae is a thin layer on top of barnacle sheet"
+"2013-09-16_YB-BDq7",2013-09-16,2013-09-16,"YB","BD","7","Emp","Emplectonema worm","Type 23",3,0.0875,34.2857142857143,NA,"Julia Bingham","Finished","Full","Cropped","48%","counts may be low due to blur"
+"2013-09-16_YB-BDq1",2013-09-16,2013-09-16,"YB","BD","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","40%","algae is a thin layer on top of barnacle sheet"
+"2013-09-16_YB-BDq5",2013-09-16,2013-09-16,"YB","BD","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Cropped","42%","algae is a thin layer on top of barnacle sheet"
+"2013-09-16_YB-BDq7",2013-09-16,2013-09-16,"YB","BD","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","48%","counts may be low due to blur"
+"2013-09-16_YB-BDq1",2013-09-16,2013-09-16,"YB","BD","1","Lim","Limpets","Type 12",192,0.0875,2194.28571428571,NA,"Julia Bingham","Finished","Full","Cropped","40%","algae is a thin layer on top of barnacle sheet"
+"2013-09-16_YB-BDq5",2013-09-16,2013-09-16,"YB","BD","5","Lim","Limpets","Type 12",68,0.0875,777.142857142857,NA,"Julia Bingham","Finished","Cropped","Cropped","42%","algae is a thin layer on top of barnacle sheet"
+"2013-09-16_YB-BDq7",2013-09-16,2013-09-16,"YB","BD","7","Lim","Limpets","Type 12",116,0.0875,1325.71428571429,NA,"Julia Bingham","Finished","Full","Cropped","48%","counts may be low due to blur"
+"2013-09-16_YB-BDq1",2013-09-16,2013-09-16,"YB","BD","1","Ls","Littorina_sitkana","Type 13",138,0.0875,1577.14285714286,NA,"Julia Bingham","Finished","Full","Cropped","40%","algae is a thin layer on top of barnacle sheet"
+"2013-09-16_YB-BDq5",2013-09-16,2013-09-16,"YB","BD","5","Ls","Littorina_sitkana","Type 13",169,0.0875,1931.42857142857,NA,"Julia Bingham","Finished","Cropped","Cropped","42%","algae is a thin layer on top of barnacle sheet"
+"2013-09-16_YB-BDq7",2013-09-16,2013-09-16,"YB","BD","7","Ls","Littorina_sitkana","Type 13",115,0.0875,1314.28571428571,NA,"Julia Bingham","Finished","Full","Cropped","48%","counts may be low due to blur"
+"2013-09-16_YB-BDq1",2013-09-16,2013-09-16,"YB","BD","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","40%","algae is a thin layer on top of barnacle sheet"
+"2013-09-16_YB-BDq5",2013-09-16,2013-09-16,"YB","BD","5","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Julia Bingham","Finished","Cropped","Cropped","42%","algae is a thin layer on top of barnacle sheet"
+"2013-09-16_YB-BDq7",2013-09-16,2013-09-16,"YB","BD","7","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","48%","counts may be low due to blur"
+"2013-09-16_YB-BDq1",2013-09-16,2013-09-16,"YB","BD","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","40%","algae is a thin layer on top of barnacle sheet"
+"2013-09-16_YB-BDq5",2013-09-16,2013-09-16,"YB","BD","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Julia Bingham","Finished","Cropped","Cropped","42%","algae is a thin layer on top of barnacle sheet"
+"2013-09-16_YB-BDq7",2013-09-16,2013-09-16,"YB","BD","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","48%","counts may be low due to blur"
+"2013-09-16_YB-BDq1",2013-09-16,2013-09-16,"YB","BD","1","Myt","Mytilus_spp","Type 7",1023,0.0875,11691.4285714286,NA,"Julia Bingham","Finished","Full","Cropped","40%","algae is a thin layer on top of barnacle sheet"
+"2013-09-16_YB-BDq5",2013-09-16,2013-09-16,"YB","BD","5","Myt","Mytilus_spp","Type 7",248,0.015625,15872,"c","Julia Bingham","Finished","Cropped","Cropped","42%","algae is a thin layer on top of barnacle sheet"
+"2013-09-16_YB-BDq7",2013-09-16,2013-09-16,"YB","BD","7","Myt","Mytilus_spp","Type 7",128,0.0875,1462.85714285714,NA,"Julia Bingham","Finished","Full","Cropped","48%","counts may be low due to blur"
+"2013-09-16_YB-BDq1",2013-09-16,2013-09-16,"YB","BD","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","40%","algae is a thin layer on top of barnacle sheet"
+"2013-09-16_YB-BDq5",2013-09-16,2013-09-16,"YB","BD","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Julia Bingham","Finished","Cropped","Cropped","42%","algae is a thin layer on top of barnacle sheet"
+"2013-09-16_YB-BDq7",2013-09-16,2013-09-16,"YB","BD","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","48%","counts may be low due to blur"
+"2013-09-16_YB-BDq1",2013-09-16,2013-09-16,"YB","BD","1","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","40%","algae is a thin layer on top of barnacle sheet"
+"2013-09-16_YB-BDq5",2013-09-16,2013-09-16,"YB","BD","5","Mt","Mytilus_trossulus","Type 15",0,0.015625,0,"c","Julia Bingham","Finished","Cropped","Cropped","42%","algae is a thin layer on top of barnacle sheet"
+"2013-09-16_YB-BDq7",2013-09-16,2013-09-16,"YB","BD","7","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","48%","counts may be low due to blur"
+"2013-09-16_YB-BDq1",2013-09-16,2013-09-16,"YB","BD","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","40%","algae is a thin layer on top of barnacle sheet"
+"2013-09-16_YB-BDq5",2013-09-16,2013-09-16,"YB","BD","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Julia Bingham","Finished","Cropped","Cropped","42%","algae is a thin layer on top of barnacle sheet"
+"2013-09-16_YB-BDq7",2013-09-16,2013-09-16,"YB","BD","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","48%","counts may be low due to blur"
+"2013-09-16_YB-BDq1",2013-09-16,2013-09-16,"YB","BD","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","40%","algae is a thin layer on top of barnacle sheet"
+"2013-09-16_YB-BDq5",2013-09-16,2013-09-16,"YB","BD","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Cropped","42%","algae is a thin layer on top of barnacle sheet"
+"2013-09-16_YB-BDq7",2013-09-16,2013-09-16,"YB","BD","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","48%","counts may be low due to blur"
+"2013-09-16_YB-BDq1",2013-09-16,2013-09-16,"YB","BD","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","40%","algae is a thin layer on top of barnacle sheet"
+"2013-09-16_YB-BDq5",2013-09-16,2013-09-16,"YB","BD","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Cropped","42%","algae is a thin layer on top of barnacle sheet"
+"2013-09-16_YB-BDq7",2013-09-16,2013-09-16,"YB","BD","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","48%","counts may be low due to blur"
+"2013-09-16_YB-BDq1",2013-09-16,2013-09-16,"YB","BD","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","40%","algae is a thin layer on top of barnacle sheet"
+"2013-09-16_YB-BDq5",2013-09-16,2013-09-16,"YB","BD","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Cropped","42%","algae is a thin layer on top of barnacle sheet"
+"2013-09-16_YB-BDq7",2013-09-16,2013-09-16,"YB","BD","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","48%","counts may be low due to blur"
+"2013-09-16_YB-BDq1",2013-09-16,2013-09-16,"YB","BD","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","40%","algae is a thin layer on top of barnacle sheet"
+"2013-09-16_YB-BDq5",2013-09-16,2013-09-16,"YB","BD","5","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Cropped","Cropped","42%","algae is a thin layer on top of barnacle sheet"
+"2013-09-16_YB-BDq7",2013-09-16,2013-09-16,"YB","BD","7","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","48%","counts may be low due to blur"
+"2013-09-16_YB-BDq1",2013-09-16,2013-09-16,"YB","BD","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","40%","algae is a thin layer on top of barnacle sheet"
+"2013-09-16_YB-BDq5",2013-09-16,2013-09-16,"YB","BD","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Cropped","42%","algae is a thin layer on top of barnacle sheet"
+"2013-09-16_YB-BDq7",2013-09-16,2013-09-16,"YB","BD","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","48%","counts may be low due to blur"
+"2013-09-16_YB-BDq1",2013-09-16,2013-09-16,"YB","BD","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","40%","algae is a thin layer on top of barnacle sheet"
+"2013-09-16_YB-BDq5",2013-09-16,2013-09-16,"YB","BD","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Cropped","42%","algae is a thin layer on top of barnacle sheet"
+"2013-09-16_YB-BDq7",2013-09-16,2013-09-16,"YB","BD","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","48%","counts may be low due to blur"
+"2013-09-16_YB-BDq1",2013-09-16,2013-09-16,"YB","BD","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","40%","algae is a thin layer on top of barnacle sheet"
+"2013-09-16_YB-BDq5",2013-09-16,2013-09-16,"YB","BD","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Cropped","42%","algae is a thin layer on top of barnacle sheet"
+"2013-09-16_YB-BDq7",2013-09-16,2013-09-16,"YB","BD","7","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","48%","counts may be low due to blur"
+"2013-09-16_YB-BDq1",2013-09-16,2013-09-16,"YB","BD","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","40%","algae is a thin layer on top of barnacle sheet"
+"2013-09-16_YB-BDq5",2013-09-16,2013-09-16,"YB","BD","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Cropped","42%","algae is a thin layer on top of barnacle sheet"
+"2013-09-16_YB-BDq7",2013-09-16,2013-09-16,"YB","BD","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","48%","counts may be low due to blur"
+"2013-09-16_YB-BDq1",2013-09-16,2013-09-16,"YB","BD","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","40%","algae is a thin layer on top of barnacle sheet"
+"2013-09-16_YB-BDq5",2013-09-16,2013-09-16,"YB","BD","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Cropped","42%","algae is a thin layer on top of barnacle sheet"
+"2013-09-16_YB-BDq7",2013-09-16,2013-09-16,"YB","BD","7","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","48%","counts may be low due to blur"
+"2013-09-16_YB-BDq1",2013-09-16,2013-09-16,"YB","BD","1","ScD","Semibalanus_cariosus_(dead)","Type 6",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Cropped","40%","algae is a thin layer on top of barnacle sheet"
+"2013-09-16_YB-BDq5",2013-09-16,2013-09-16,"YB","BD","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Cropped","42%","algae is a thin layer on top of barnacle sheet"
+"2013-09-16_YB-BDq7",2013-09-16,2013-09-16,"YB","BD","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","48%","counts may be low due to blur"
+"2013-09-16_YB-BEq2",2013-09-16,2013-09-16,"YB","BE","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to blur"
+"2013-09-16_YB-BEq3",2013-09-16,2013-09-16,"YB","BE","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-09-16_YB-BEq6",2013-09-16,2013-09-16,"YB","BE","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-09-16_YB-BEq2",2013-09-16,2013-09-16,"YB","BE","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to blur"
+"2013-09-16_YB-BEq3",2013-09-16,2013-09-16,"YB","BE","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-09-16_YB-BEq6",2013-09-16,2013-09-16,"YB","BE","6","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-09-16_YB-BEq2",2013-09-16,2013-09-16,"YB","BE","2","Bg","Balanus_glandula","Type 1",1035,0.015625,66240,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to blur"
+"2013-09-16_YB-BEq3",2013-09-16,2013-09-16,"YB","BE","3","Bg","Balanus_glandula","Type 1",1169,0.015625,74816,"c","Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-09-16_YB-BEq6",2013-09-16,2013-09-16,"YB","BE","6","Bg","Balanus_glandula","Type 1",1169,0.015625,74816,"c","Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-09-16_YB-BEq2",2013-09-16,2013-09-16,"YB","BE","2","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to blur"
+"2013-09-16_YB-BEq3",2013-09-16,2013-09-16,"YB","BE","3","BgD","Balanus_glandula_(dead)","Type 2",1,0.015625,64,"c","Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-09-16_YB-BEq6",2013-09-16,2013-09-16,"YB","BE","6","BgD","Balanus_glandula_(dead)","Type 2",2,0.015625,128,"c","Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-09-16_YB-BEq2",2013-09-16,2013-09-16,"YB","BE","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to blur"
+"2013-09-16_YB-BEq3",2013-09-16,2013-09-16,"YB","BE","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-09-16_YB-BEq6",2013-09-16,2013-09-16,"YB","BE","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-09-16_YB-BEq2",2013-09-16,2013-09-16,"YB","BE","2","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to blur"
+"2013-09-16_YB-BEq3",2013-09-16,2013-09-16,"YB","BE","3","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-09-16_YB-BEq6",2013-09-16,2013-09-16,"YB","BE","6","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-09-16_YB-BEq2",2013-09-16,2013-09-16,"YB","BE","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to blur"
+"2013-09-16_YB-BEq3",2013-09-16,2013-09-16,"YB","BE","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-09-16_YB-BEq6",2013-09-16,2013-09-16,"YB","BE","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-09-16_YB-BEq2",2013-09-16,2013-09-16,"YB","BE","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to blur"
+"2013-09-16_YB-BEq3",2013-09-16,2013-09-16,"YB","BE","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-09-16_YB-BEq6",2013-09-16,2013-09-16,"YB","BE","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-09-16_YB-BEq2",2013-09-16,2013-09-16,"YB","BE","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to blur"
+"2013-09-16_YB-BEq3",2013-09-16,2013-09-16,"YB","BE","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-09-16_YB-BEq6",2013-09-16,2013-09-16,"YB","BE","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-09-16_YB-BEq2",2013-09-16,2013-09-16,"YB","BE","2","Lim","Limpets","Type 12",8,0.0875,91.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to blur"
+"2013-09-16_YB-BEq3",2013-09-16,2013-09-16,"YB","BE","3","Lim","Limpets","Type 12",72,0.0875,822.857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-09-16_YB-BEq6",2013-09-16,2013-09-16,"YB","BE","6","Lim","Limpets","Type 12",97,0.0875,1108.57142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-09-16_YB-BEq2",2013-09-16,2013-09-16,"YB","BE","2","Ls","Littorina_sitkana","Type 13",50,0.0875,571.428571428571,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to blur"
+"2013-09-16_YB-BEq3",2013-09-16,2013-09-16,"YB","BE","3","Ls","Littorina_sitkana","Type 13",80,0.0875,914.285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-09-16_YB-BEq6",2013-09-16,2013-09-16,"YB","BE","6","Ls","Littorina_sitkana","Type 13",76,0.0875,868.571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-09-16_YB-BEq2",2013-09-16,2013-09-16,"YB","BE","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to blur"
+"2013-09-16_YB-BEq3",2013-09-16,2013-09-16,"YB","BE","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-09-16_YB-BEq6",2013-09-16,2013-09-16,"YB","BE","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-09-16_YB-BEq2",2013-09-16,2013-09-16,"YB","BE","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to blur"
+"2013-09-16_YB-BEq3",2013-09-16,2013-09-16,"YB","BE","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-09-16_YB-BEq6",2013-09-16,2013-09-16,"YB","BE","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-09-16_YB-BEq2",2013-09-16,2013-09-16,"YB","BE","2","Myt","Mytilus_spp","Type 7",43,0.0875,491.428571428571,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to blur"
+"2013-09-16_YB-BEq3",2013-09-16,2013-09-16,"YB","BE","3","Myt","Mytilus_spp","Type 7",75,0.0875,857.142857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-09-16_YB-BEq6",2013-09-16,2013-09-16,"YB","BE","6","Myt","Mytilus_spp","Type 7",75,0.0875,857.142857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-09-16_YB-BEq2",2013-09-16,2013-09-16,"YB","BE","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to blur"
+"2013-09-16_YB-BEq3",2013-09-16,2013-09-16,"YB","BE","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-09-16_YB-BEq6",2013-09-16,2013-09-16,"YB","BE","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-09-16_YB-BEq2",2013-09-16,2013-09-16,"YB","BE","2","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to blur"
+"2013-09-16_YB-BEq3",2013-09-16,2013-09-16,"YB","BE","3","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-09-16_YB-BEq6",2013-09-16,2013-09-16,"YB","BE","6","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-09-16_YB-BEq2",2013-09-16,2013-09-16,"YB","BE","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to blur"
+"2013-09-16_YB-BEq3",2013-09-16,2013-09-16,"YB","BE","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-09-16_YB-BEq6",2013-09-16,2013-09-16,"YB","BE","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-09-16_YB-BEq2",2013-09-16,2013-09-16,"YB","BE","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to blur"
+"2013-09-16_YB-BEq3",2013-09-16,2013-09-16,"YB","BE","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-09-16_YB-BEq6",2013-09-16,2013-09-16,"YB","BE","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-09-16_YB-BEq2",2013-09-16,2013-09-16,"YB","BE","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to blur"
+"2013-09-16_YB-BEq3",2013-09-16,2013-09-16,"YB","BE","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-09-16_YB-BEq6",2013-09-16,2013-09-16,"YB","BE","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-09-16_YB-BEq2",2013-09-16,2013-09-16,"YB","BE","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to blur"
+"2013-09-16_YB-BEq3",2013-09-16,2013-09-16,"YB","BE","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-09-16_YB-BEq6",2013-09-16,2013-09-16,"YB","BE","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-09-16_YB-BEq2",2013-09-16,2013-09-16,"YB","BE","2","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to blur"
+"2013-09-16_YB-BEq3",2013-09-16,2013-09-16,"YB","BE","3","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-09-16_YB-BEq6",2013-09-16,2013-09-16,"YB","BE","6","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-09-16_YB-BEq2",2013-09-16,2013-09-16,"YB","BE","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to blur"
+"2013-09-16_YB-BEq3",2013-09-16,2013-09-16,"YB","BE","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-09-16_YB-BEq6",2013-09-16,2013-09-16,"YB","BE","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-09-16_YB-BEq2",2013-09-16,2013-09-16,"YB","BE","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to blur"
+"2013-09-16_YB-BEq3",2013-09-16,2013-09-16,"YB","BE","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-09-16_YB-BEq6",2013-09-16,2013-09-16,"YB","BE","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-09-16_YB-BEq2",2013-09-16,2013-09-16,"YB","BE","2","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to blur"
+"2013-09-16_YB-BEq3",2013-09-16,2013-09-16,"YB","BE","3","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-09-16_YB-BEq6",2013-09-16,2013-09-16,"YB","BE","6","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-09-16_YB-BEq2",2013-09-16,2013-09-16,"YB","BE","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to blur"
+"2013-09-16_YB-BEq3",2013-09-16,2013-09-16,"YB","BE","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-09-16_YB-BEq6",2013-09-16,2013-09-16,"YB","BE","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-09-16_YB-BEq2",2013-09-16,2013-09-16,"YB","BE","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to blur"
+"2013-09-16_YB-BEq3",2013-09-16,2013-09-16,"YB","BE","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-09-16_YB-BEq6",2013-09-16,2013-09-16,"YB","BE","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-09-16_YB-BEq2",2013-09-16,2013-09-16,"YB","BE","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to blur"
+"2013-09-16_YB-BEq3",2013-09-16,2013-09-16,"YB","BE","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-09-16_YB-BEq6",2013-09-16,2013-09-16,"YB","BE","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-09-16_YB-BFq1",2013-09-16,2013-09-16,"YB","BF","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","88%","Mussel, limpet, and littorine snail counts likely low due to glare; barnacle counts likely low due to algal cover"
+"2013-09-16_YB-BFq2",2013-09-16,2013-09-16,"YB","BF","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","76%","Barnacle counts likely low due to algal cover"
+"2013-09-16_YB-BFq3",2013-09-16,2013-09-16,"YB","BF","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","43%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-BFq4",2013-09-16,2013-09-16,"YB","BF","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","57%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-BFq9",2013-09-16,2013-09-16,"YB","BF","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","5%","Mussel and littorine counts low due to large amount of glare"
+"2013-09-16_YB-BFq1",2013-09-16,2013-09-16,"YB","BF","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","88%","Mussel, limpet, and littorine snail counts likely low due to glare; barnacle counts likely low due to algal cover"
+"2013-09-16_YB-BFq2",2013-09-16,2013-09-16,"YB","BF","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","76%","Barnacle counts likely low due to algal cover"
+"2013-09-16_YB-BFq3",2013-09-16,2013-09-16,"YB","BF","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","43%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-BFq4",2013-09-16,2013-09-16,"YB","BF","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","57%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-BFq9",2013-09-16,2013-09-16,"YB","BF","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","5%","Mussel and littorine counts low due to large amount of glare"
+"2013-09-16_YB-BFq1",2013-09-16,2013-09-16,"YB","BF","1","Bg","Balanus_glandula","Type 1",1448,0.015625,92672,"c","Beatriz Vaca","Finished","Full","Cropped","88%","Mussel, limpet, and littorine snail counts likely low due to glare; barnacle counts likely low due to algal cover"
+"2013-09-16_YB-BFq2",2013-09-16,2013-09-16,"YB","BF","2","Bg","Balanus_glandula","Type 1",1670,0.015625,106880,"c","Beatriz Vaca","Finished","Full","Cropped","76%","Barnacle counts likely low due to algal cover"
+"2013-09-16_YB-BFq3",2013-09-16,2013-09-16,"YB","BF","3","Bg","Balanus_glandula","Type 1",1211,0.015625,77504,"c","Beatriz Vaca","Finished","Full","Cropped","43%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-BFq4",2013-09-16,2013-09-16,"YB","BF","4","Bg","Balanus_glandula","Type 1",1287,0.015625,82368,"c","Beatriz Vaca","Finished","Full","Cropped","57%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-BFq9",2013-09-16,2013-09-16,"YB","BF","9","Bg","Balanus_glandula","Type 1",2186,0.015625,139904,"c","Julia Bingham","Finished","Full","Cropped","5%","Mussel and littorine counts low due to large amount of glare"
+"2013-09-16_YB-BFq1",2013-09-16,2013-09-16,"YB","BF","1","BgD","Balanus_glandula_(dead)","Type 2",51,0.015625,3264,"c","Beatriz Vaca","Finished","Full","Cropped","88%","Mussel, limpet, and littorine snail counts likely low due to glare; barnacle counts likely low due to algal cover"
+"2013-09-16_YB-BFq2",2013-09-16,2013-09-16,"YB","BF","2","BgD","Balanus_glandula_(dead)","Type 2",46,0.015625,2944,"c","Beatriz Vaca","Finished","Full","Cropped","76%","Barnacle counts likely low due to algal cover"
+"2013-09-16_YB-BFq3",2013-09-16,2013-09-16,"YB","BF","3","BgD","Balanus_glandula_(dead)","Type 2",43,0.015625,2752,"c","Beatriz Vaca","Finished","Full","Cropped","43%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-BFq4",2013-09-16,2013-09-16,"YB","BF","4","BgD","Balanus_glandula_(dead)","Type 2",35,0.015625,2240,"c","Beatriz Vaca","Finished","Full","Cropped","57%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-BFq9",2013-09-16,2013-09-16,"YB","BF","9","BgD","Balanus_glandula_(dead)","Type 2",65,0.015625,4160,"c","Julia Bingham","Finished","Full","Cropped","5%","Mussel and littorine counts low due to large amount of glare"
+"2013-09-16_YB-BFq1",2013-09-16,2013-09-16,"YB","BF","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","88%","Mussel, limpet, and littorine snail counts likely low due to glare; barnacle counts likely low due to algal cover"
+"2013-09-16_YB-BFq2",2013-09-16,2013-09-16,"YB","BF","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","76%","Barnacle counts likely low due to algal cover"
+"2013-09-16_YB-BFq3",2013-09-16,2013-09-16,"YB","BF","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","43%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-BFq4",2013-09-16,2013-09-16,"YB","BF","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","57%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-BFq9",2013-09-16,2013-09-16,"YB","BF","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","5%","Mussel and littorine counts low due to large amount of glare"
+"2013-09-16_YB-BFq1",2013-09-16,2013-09-16,"YB","BF","1","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","88%","Mussel, limpet, and littorine snail counts likely low due to glare; barnacle counts likely low due to algal cover"
+"2013-09-16_YB-BFq2",2013-09-16,2013-09-16,"YB","BF","2","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","76%","Barnacle counts likely low due to algal cover"
+"2013-09-16_YB-BFq3",2013-09-16,2013-09-16,"YB","BF","3","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","43%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-BFq4",2013-09-16,2013-09-16,"YB","BF","4","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","57%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-BFq9",2013-09-16,2013-09-16,"YB","BF","9","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Julia Bingham","Finished","Full","Cropped","5%","Mussel and littorine counts low due to large amount of glare"
+"2013-09-16_YB-BFq1",2013-09-16,2013-09-16,"YB","BF","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","88%","Mussel, limpet, and littorine snail counts likely low due to glare; barnacle counts likely low due to algal cover"
+"2013-09-16_YB-BFq2",2013-09-16,2013-09-16,"YB","BF","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","76%","Barnacle counts likely low due to algal cover"
+"2013-09-16_YB-BFq3",2013-09-16,2013-09-16,"YB","BF","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","43%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-BFq4",2013-09-16,2013-09-16,"YB","BF","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","57%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-BFq9",2013-09-16,2013-09-16,"YB","BF","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Julia Bingham","Finished","Full","Cropped","5%","Mussel and littorine counts low due to large amount of glare"
+"2013-09-16_YB-BFq1",2013-09-16,2013-09-16,"YB","BF","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","88%","Mussel, limpet, and littorine snail counts likely low due to glare; barnacle counts likely low due to algal cover"
+"2013-09-16_YB-BFq2",2013-09-16,2013-09-16,"YB","BF","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","76%","Barnacle counts likely low due to algal cover"
+"2013-09-16_YB-BFq3",2013-09-16,2013-09-16,"YB","BF","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","43%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-BFq4",2013-09-16,2013-09-16,"YB","BF","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","57%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-BFq9",2013-09-16,2013-09-16,"YB","BF","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","5%","Mussel and littorine counts low due to large amount of glare"
+"2013-09-16_YB-BFq1",2013-09-16,2013-09-16,"YB","BF","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","88%","Mussel, limpet, and littorine snail counts likely low due to glare; barnacle counts likely low due to algal cover"
+"2013-09-16_YB-BFq2",2013-09-16,2013-09-16,"YB","BF","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","76%","Barnacle counts likely low due to algal cover"
+"2013-09-16_YB-BFq3",2013-09-16,2013-09-16,"YB","BF","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","43%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-BFq4",2013-09-16,2013-09-16,"YB","BF","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","57%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-BFq9",2013-09-16,2013-09-16,"YB","BF","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","5%","Mussel and littorine counts low due to large amount of glare"
+"2013-09-16_YB-BFq1",2013-09-16,2013-09-16,"YB","BF","1","Lim","Limpets","Type 12",29,0.0875,331.428571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","88%","Mussel, limpet, and littorine snail counts likely low due to glare; barnacle counts likely low due to algal cover"
+"2013-09-16_YB-BFq2",2013-09-16,2013-09-16,"YB","BF","2","Lim","Limpets","Type 12",23,0.0875,262.857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","76%","Barnacle counts likely low due to algal cover"
+"2013-09-16_YB-BFq3",2013-09-16,2013-09-16,"YB","BF","3","Lim","Limpets","Type 12",16,0.0875,182.857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","43%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-BFq4",2013-09-16,2013-09-16,"YB","BF","4","Lim","Limpets","Type 12",16,0.0875,182.857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","57%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-BFq9",2013-09-16,2013-09-16,"YB","BF","9","Lim","Limpets","Type 12",8,0.0875,91.4285714285714,NA,"Julia Bingham","Finished","Full","Cropped","5%","Mussel and littorine counts low due to large amount of glare"
+"2013-09-16_YB-BFq1",2013-09-16,2013-09-16,"YB","BF","1","Ls","Littorina_sitkana","Type 13",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Cropped","88%","Mussel, limpet, and littorine snail counts likely low due to glare; barnacle counts likely low due to algal cover"
+"2013-09-16_YB-BFq2",2013-09-16,2013-09-16,"YB","BF","2","Ls","Littorina_sitkana","Type 13",16,0.0875,182.857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","76%","Barnacle counts likely low due to algal cover"
+"2013-09-16_YB-BFq3",2013-09-16,2013-09-16,"YB","BF","3","Ls","Littorina_sitkana","Type 13",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","43%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-BFq4",2013-09-16,2013-09-16,"YB","BF","4","Ls","Littorina_sitkana","Type 13",9,0.0875,102.857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","57%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-BFq9",2013-09-16,2013-09-16,"YB","BF","9","Ls","Littorina_sitkana","Type 13",133,0.0875,1520,NA,"Julia Bingham","Finished","Full","Cropped","5%","Mussel and littorine counts low due to large amount of glare"
+"2013-09-16_YB-BFq1",2013-09-16,2013-09-16,"YB","BF","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","88%","Mussel, limpet, and littorine snail counts likely low due to glare; barnacle counts likely low due to algal cover"
+"2013-09-16_YB-BFq2",2013-09-16,2013-09-16,"YB","BF","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","76%","Barnacle counts likely low due to algal cover"
+"2013-09-16_YB-BFq3",2013-09-16,2013-09-16,"YB","BF","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","43%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-BFq4",2013-09-16,2013-09-16,"YB","BF","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","57%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-BFq9",2013-09-16,2013-09-16,"YB","BF","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","5%","Mussel and littorine counts low due to large amount of glare"
+"2013-09-16_YB-BFq1",2013-09-16,2013-09-16,"YB","BF","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","88%","Mussel, limpet, and littorine snail counts likely low due to glare; barnacle counts likely low due to algal cover"
+"2013-09-16_YB-BFq2",2013-09-16,2013-09-16,"YB","BF","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","76%","Barnacle counts likely low due to algal cover"
+"2013-09-16_YB-BFq3",2013-09-16,2013-09-16,"YB","BF","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","43%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-BFq4",2013-09-16,2013-09-16,"YB","BF","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","57%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-BFq9",2013-09-16,2013-09-16,"YB","BF","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","5%","Mussel and littorine counts low due to large amount of glare"
+"2013-09-16_YB-BFq1",2013-09-16,2013-09-16,"YB","BF","1","Myt","Mytilus_spp","Type 7",44,0.0875,502.857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","88%","Mussel, limpet, and littorine snail counts likely low due to glare; barnacle counts likely low due to algal cover"
+"2013-09-16_YB-BFq2",2013-09-16,2013-09-16,"YB","BF","2","Myt","Mytilus_spp","Type 7",14,0.0875,160,NA,"Beatriz Vaca","Finished","Full","Cropped","76%","Barnacle counts likely low due to algal cover"
+"2013-09-16_YB-BFq3",2013-09-16,2013-09-16,"YB","BF","3","Myt","Mytilus_spp","Type 7",35,0.0875,400,NA,"Beatriz Vaca","Finished","Full","Cropped","43%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-BFq4",2013-09-16,2013-09-16,"YB","BF","4","Myt","Mytilus_spp","Type 7",39,0.0875,445.714285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","57%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-BFq9",2013-09-16,2013-09-16,"YB","BF","9","Myt","Mytilus_spp","Type 7",1630,0.0875,18628.5714285714,NA,"Julia Bingham","Finished","Full","Cropped","5%","Mussel and littorine counts low due to large amount of glare"
+"2013-09-16_YB-BFq1",2013-09-16,2013-09-16,"YB","BF","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","88%","Mussel, limpet, and littorine snail counts likely low due to glare; barnacle counts likely low due to algal cover"
+"2013-09-16_YB-BFq2",2013-09-16,2013-09-16,"YB","BF","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","76%","Barnacle counts likely low due to algal cover"
+"2013-09-16_YB-BFq3",2013-09-16,2013-09-16,"YB","BF","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","43%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-BFq4",2013-09-16,2013-09-16,"YB","BF","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","57%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-BFq9",2013-09-16,2013-09-16,"YB","BF","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","5%","Mussel and littorine counts low due to large amount of glare"
+"2013-09-16_YB-BFq1",2013-09-16,2013-09-16,"YB","BF","1","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","88%","Mussel, limpet, and littorine snail counts likely low due to glare; barnacle counts likely low due to algal cover"
+"2013-09-16_YB-BFq2",2013-09-16,2013-09-16,"YB","BF","2","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","76%","Barnacle counts likely low due to algal cover"
+"2013-09-16_YB-BFq3",2013-09-16,2013-09-16,"YB","BF","3","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","43%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-BFq4",2013-09-16,2013-09-16,"YB","BF","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","57%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-BFq9",2013-09-16,2013-09-16,"YB","BF","9","Mt","Mytilus_trossulus","Type 15",161,0.0875,1840,NA,"Julia Bingham","Finished","Full","Cropped","5%","Mussel and littorine counts low due to large amount of glare"
+"2013-09-16_YB-BFq1",2013-09-16,2013-09-16,"YB","BF","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","88%","Mussel, limpet, and littorine snail counts likely low due to glare; barnacle counts likely low due to algal cover"
+"2013-09-16_YB-BFq2",2013-09-16,2013-09-16,"YB","BF","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","76%","Barnacle counts likely low due to algal cover"
+"2013-09-16_YB-BFq3",2013-09-16,2013-09-16,"YB","BF","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","43%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-BFq4",2013-09-16,2013-09-16,"YB","BF","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","57%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-BFq9",2013-09-16,2013-09-16,"YB","BF","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","5%","Mussel and littorine counts low due to large amount of glare"
+"2013-09-16_YB-BFq1",2013-09-16,2013-09-16,"YB","BF","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","88%","Mussel, limpet, and littorine snail counts likely low due to glare; barnacle counts likely low due to algal cover"
+"2013-09-16_YB-BFq2",2013-09-16,2013-09-16,"YB","BF","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","76%","Barnacle counts likely low due to algal cover"
+"2013-09-16_YB-BFq3",2013-09-16,2013-09-16,"YB","BF","3","Ner","Nereis_worm","Type 24",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","43%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-BFq4",2013-09-16,2013-09-16,"YB","BF","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","57%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-BFq9",2013-09-16,2013-09-16,"YB","BF","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","5%","Mussel and littorine counts low due to large amount of glare"
+"2013-09-16_YB-BFq1",2013-09-16,2013-09-16,"YB","BF","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","88%","Mussel, limpet, and littorine snail counts likely low due to glare; barnacle counts likely low due to algal cover"
+"2013-09-16_YB-BFq2",2013-09-16,2013-09-16,"YB","BF","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","76%","Barnacle counts likely low due to algal cover"
+"2013-09-16_YB-BFq3",2013-09-16,2013-09-16,"YB","BF","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","43%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-BFq4",2013-09-16,2013-09-16,"YB","BF","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","57%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-BFq9",2013-09-16,2013-09-16,"YB","BF","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","5%","Mussel and littorine counts low due to large amount of glare"
+"2013-09-16_YB-BFq1",2013-09-16,2013-09-16,"YB","BF","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","88%","Mussel, limpet, and littorine snail counts likely low due to glare; barnacle counts likely low due to algal cover"
+"2013-09-16_YB-BFq2",2013-09-16,2013-09-16,"YB","BF","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","76%","Barnacle counts likely low due to algal cover"
+"2013-09-16_YB-BFq3",2013-09-16,2013-09-16,"YB","BF","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","43%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-BFq4",2013-09-16,2013-09-16,"YB","BF","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","57%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-BFq9",2013-09-16,2013-09-16,"YB","BF","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","5%","Mussel and littorine counts low due to large amount of glare"
+"2013-09-16_YB-BFq1",2013-09-16,2013-09-16,"YB","BF","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","88%","Mussel, limpet, and littorine snail counts likely low due to glare; barnacle counts likely low due to algal cover"
+"2013-09-16_YB-BFq2",2013-09-16,2013-09-16,"YB","BF","2","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","76%","Barnacle counts likely low due to algal cover"
+"2013-09-16_YB-BFq3",2013-09-16,2013-09-16,"YB","BF","3","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","43%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-BFq4",2013-09-16,2013-09-16,"YB","BF","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","57%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-BFq9",2013-09-16,2013-09-16,"YB","BF","9","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","5%","Mussel and littorine counts low due to large amount of glare"
+"2013-09-16_YB-BFq1",2013-09-16,2013-09-16,"YB","BF","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","88%","Mussel, limpet, and littorine snail counts likely low due to glare; barnacle counts likely low due to algal cover"
+"2013-09-16_YB-BFq2",2013-09-16,2013-09-16,"YB","BF","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","76%","Barnacle counts likely low due to algal cover"
+"2013-09-16_YB-BFq3",2013-09-16,2013-09-16,"YB","BF","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","43%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-BFq4",2013-09-16,2013-09-16,"YB","BF","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","57%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-BFq9",2013-09-16,2013-09-16,"YB","BF","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","5%","Mussel and littorine counts low due to large amount of glare"
+"2013-09-16_YB-BFq1",2013-09-16,2013-09-16,"YB","BF","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","88%","Mussel, limpet, and littorine snail counts likely low due to glare; barnacle counts likely low due to algal cover"
+"2013-09-16_YB-BFq2",2013-09-16,2013-09-16,"YB","BF","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","76%","Barnacle counts likely low due to algal cover"
+"2013-09-16_YB-BFq3",2013-09-16,2013-09-16,"YB","BF","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","43%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-BFq4",2013-09-16,2013-09-16,"YB","BF","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","57%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-BFq9",2013-09-16,2013-09-16,"YB","BF","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","5%","Mussel and littorine counts low due to large amount of glare"
+"2013-09-16_YB-BFq1",2013-09-16,2013-09-16,"YB","BF","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","88%","Mussel, limpet, and littorine snail counts likely low due to glare; barnacle counts likely low due to algal cover"
+"2013-09-16_YB-BFq2",2013-09-16,2013-09-16,"YB","BF","2","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","76%","Barnacle counts likely low due to algal cover"
+"2013-09-16_YB-BFq3",2013-09-16,2013-09-16,"YB","BF","3","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","43%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-BFq4",2013-09-16,2013-09-16,"YB","BF","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","57%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-BFq9",2013-09-16,2013-09-16,"YB","BF","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","5%","Mussel and littorine counts low due to large amount of glare"
+"2013-09-16_YB-BFq1",2013-09-16,2013-09-16,"YB","BF","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","88%","Mussel, limpet, and littorine snail counts likely low due to glare; barnacle counts likely low due to algal cover"
+"2013-09-16_YB-BFq2",2013-09-16,2013-09-16,"YB","BF","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","76%","Barnacle counts likely low due to algal cover"
+"2013-09-16_YB-BFq3",2013-09-16,2013-09-16,"YB","BF","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","43%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-BFq4",2013-09-16,2013-09-16,"YB","BF","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","57%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-BFq9",2013-09-16,2013-09-16,"YB","BF","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","5%","Mussel and littorine counts low due to large amount of glare"
+"2013-09-16_YB-BFq1",2013-09-16,2013-09-16,"YB","BF","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","88%","Mussel, limpet, and littorine snail counts likely low due to glare; barnacle counts likely low due to algal cover"
+"2013-09-16_YB-BFq2",2013-09-16,2013-09-16,"YB","BF","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","76%","Barnacle counts likely low due to algal cover"
+"2013-09-16_YB-BFq3",2013-09-16,2013-09-16,"YB","BF","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","43%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-BFq4",2013-09-16,2013-09-16,"YB","BF","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","57%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-BFq9",2013-09-16,2013-09-16,"YB","BF","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","5%","Mussel and littorine counts low due to large amount of glare"
+"2013-09-16_YB-BFq1",2013-09-16,2013-09-16,"YB","BF","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","88%","Mussel, limpet, and littorine snail counts likely low due to glare; barnacle counts likely low due to algal cover"
+"2013-09-16_YB-BFq2",2013-09-16,2013-09-16,"YB","BF","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","76%","Barnacle counts likely low due to algal cover"
+"2013-09-16_YB-BFq3",2013-09-16,2013-09-16,"YB","BF","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","43%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-BFq4",2013-09-16,2013-09-16,"YB","BF","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","57%","Barnacle, mussel, limpet, and littorine snail counts likely low due to glare, blur, and algal cover"
+"2013-09-16_YB-BFq9",2013-09-16,2013-09-16,"YB","BF","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","5%","Mussel and littorine counts low due to large amount of glare"
+"2013-09-16_YB-Cq2",2013-09-16,2013-09-16,"YB","C","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts likely low due to algal coverage and glare"
+"2013-09-16_YB-Cq4",2013-09-16,2013-09-16,"YB","C","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","90%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-09-16_YB-Cq5",2013-09-16,2013-09-16,"YB","C","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","65%","Counts likely low due to algae film, glare and byssal threads"
+"2013-09-16_YB-Cq6",2013-09-16,2013-09-16,"YB","C","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","90%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-09-16_YB-Cq2",2013-09-16,2013-09-16,"YB","C","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts likely low due to algal coverage and glare"
+"2013-09-16_YB-Cq4",2013-09-16,2013-09-16,"YB","C","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","90%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-09-16_YB-Cq5",2013-09-16,2013-09-16,"YB","C","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","65%","Counts likely low due to algae film, glare and byssal threads"
+"2013-09-16_YB-Cq6",2013-09-16,2013-09-16,"YB","C","6","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","90%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-09-16_YB-Cq2",2013-09-16,2013-09-16,"YB","C","2","Bg","Balanus_glandula","Type 1",814,0.015625,52096,"c","Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts likely low due to algal coverage and glare"
+"2013-09-16_YB-Cq4",2013-09-16,2013-09-16,"YB","C","4","Bg","Balanus_glandula","Type 1",667,0.015625,42688,"c","Beatriz Vaca","Finished","Full","Cropped","90%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-09-16_YB-Cq5",2013-09-16,2013-09-16,"YB","C","5","Bg","Balanus_glandula","Type 1",856,0.015625,54784,"c","Stephanie Merhoff","Finished","Full","Cropped","65%","Counts likely low due to algae film, glare and byssal threads"
+"2013-09-16_YB-Cq6",2013-09-16,2013-09-16,"YB","C","6","Bg","Balanus_glandula","Type 1",1242,0.015625,79488,"c","Beatriz Vaca","Finished","Full","Cropped","90%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-09-16_YB-Cq2",2013-09-16,2013-09-16,"YB","C","2","BgD","Balanus_glandula_(dead)","Type 2",6,0.015625,384,"c","Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts likely low due to algal coverage and glare"
+"2013-09-16_YB-Cq4",2013-09-16,2013-09-16,"YB","C","4","BgD","Balanus_glandula_(dead)","Type 2",36,0.015625,2304,"c","Beatriz Vaca","Finished","Full","Cropped","90%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-09-16_YB-Cq5",2013-09-16,2013-09-16,"YB","C","5","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","65%","Counts likely low due to algae film, glare and byssal threads"
+"2013-09-16_YB-Cq6",2013-09-16,2013-09-16,"YB","C","6","BgD","Balanus_glandula_(dead)","Type 2",24,0.015625,1536,"c","Beatriz Vaca","Finished","Full","Cropped","90%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-09-16_YB-Cq2",2013-09-16,2013-09-16,"YB","C","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts likely low due to algal coverage and glare"
+"2013-09-16_YB-Cq4",2013-09-16,2013-09-16,"YB","C","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","90%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-09-16_YB-Cq5",2013-09-16,2013-09-16,"YB","C","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","65%","Counts likely low due to algae film, glare and byssal threads"
+"2013-09-16_YB-Cq6",2013-09-16,2013-09-16,"YB","C","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","90%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-09-16_YB-Cq2",2013-09-16,2013-09-16,"YB","C","2","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts likely low due to algal coverage and glare"
+"2013-09-16_YB-Cq4",2013-09-16,2013-09-16,"YB","C","4","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","90%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-09-16_YB-Cq5",2013-09-16,2013-09-16,"YB","C","5","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","65%","Counts likely low due to algae film, glare and byssal threads"
+"2013-09-16_YB-Cq6",2013-09-16,2013-09-16,"YB","C","6","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","90%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-09-16_YB-Cq2",2013-09-16,2013-09-16,"YB","C","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts likely low due to algal coverage and glare"
+"2013-09-16_YB-Cq4",2013-09-16,2013-09-16,"YB","C","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","90%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-09-16_YB-Cq5",2013-09-16,2013-09-16,"YB","C","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","65%","Counts likely low due to algae film, glare and byssal threads"
+"2013-09-16_YB-Cq6",2013-09-16,2013-09-16,"YB","C","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","90%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-09-16_YB-Cq2",2013-09-16,2013-09-16,"YB","C","2","Emp","Emplectonema worm","Type 23",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts likely low due to algal coverage and glare"
+"2013-09-16_YB-Cq4",2013-09-16,2013-09-16,"YB","C","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","90%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-09-16_YB-Cq5",2013-09-16,2013-09-16,"YB","C","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","65%","Counts likely low due to algae film, glare and byssal threads"
+"2013-09-16_YB-Cq6",2013-09-16,2013-09-16,"YB","C","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","90%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-09-16_YB-Cq2",2013-09-16,2013-09-16,"YB","C","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts likely low due to algal coverage and glare"
+"2013-09-16_YB-Cq4",2013-09-16,2013-09-16,"YB","C","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","90%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-09-16_YB-Cq5",2013-09-16,2013-09-16,"YB","C","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","65%","Counts likely low due to algae film, glare and byssal threads"
+"2013-09-16_YB-Cq6",2013-09-16,2013-09-16,"YB","C","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","90%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-09-16_YB-Cq2",2013-09-16,2013-09-16,"YB","C","2","Lim","Limpets","Type 12",11,0.0875,125.714285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts likely low due to algal coverage and glare"
+"2013-09-16_YB-Cq4",2013-09-16,2013-09-16,"YB","C","4","Lim","Limpets","Type 12",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Cropped","90%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-09-16_YB-Cq5",2013-09-16,2013-09-16,"YB","C","5","Lim","Limpets","Type 12",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","65%","Counts likely low due to algae film, glare and byssal threads"
+"2013-09-16_YB-Cq6",2013-09-16,2013-09-16,"YB","C","6","Lim","Limpets","Type 12",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","90%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-09-16_YB-Cq2",2013-09-16,2013-09-16,"YB","C","2","Ls","Littorina_sitkana","Type 13",57,0.0875,651.428571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts likely low due to algal coverage and glare"
+"2013-09-16_YB-Cq4",2013-09-16,2013-09-16,"YB","C","4","Ls","Littorina_sitkana","Type 13",15,0.0875,171.428571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","90%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-09-16_YB-Cq5",2013-09-16,2013-09-16,"YB","C","5","Ls","Littorina_sitkana","Type 13",45,0.0875,514.285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","65%","Counts likely low due to algae film, glare and byssal threads"
+"2013-09-16_YB-Cq6",2013-09-16,2013-09-16,"YB","C","6","Ls","Littorina_sitkana","Type 13",45,0.0875,514.285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","90%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-09-16_YB-Cq2",2013-09-16,2013-09-16,"YB","C","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts likely low due to algal coverage and glare"
+"2013-09-16_YB-Cq4",2013-09-16,2013-09-16,"YB","C","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","90%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-09-16_YB-Cq5",2013-09-16,2013-09-16,"YB","C","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","65%","Counts likely low due to algae film, glare and byssal threads"
+"2013-09-16_YB-Cq6",2013-09-16,2013-09-16,"YB","C","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","90%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-09-16_YB-Cq2",2013-09-16,2013-09-16,"YB","C","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts likely low due to algal coverage and glare"
+"2013-09-16_YB-Cq4",2013-09-16,2013-09-16,"YB","C","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","90%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-09-16_YB-Cq5",2013-09-16,2013-09-16,"YB","C","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","65%","Counts likely low due to algae film, glare and byssal threads"
+"2013-09-16_YB-Cq6",2013-09-16,2013-09-16,"YB","C","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","90%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-09-16_YB-Cq2",2013-09-16,2013-09-16,"YB","C","2","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts likely low due to algal coverage and glare"
+"2013-09-16_YB-Cq4",2013-09-16,2013-09-16,"YB","C","4","Myt","Mytilus_spp","Type 7",15,0.0875,171.428571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","90%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-09-16_YB-Cq5",2013-09-16,2013-09-16,"YB","C","5","Myt","Mytilus_spp","Type 7",267,0.0875,3051.42857142857,NA,"Stephanie Merhoff","Finished","Full","Cropped","65%","Counts likely low due to algae film, glare and byssal threads"
+"2013-09-16_YB-Cq6",2013-09-16,2013-09-16,"YB","C","6","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","90%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-09-16_YB-Cq2",2013-09-16,2013-09-16,"YB","C","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts likely low due to algal coverage and glare"
+"2013-09-16_YB-Cq4",2013-09-16,2013-09-16,"YB","C","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","90%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-09-16_YB-Cq5",2013-09-16,2013-09-16,"YB","C","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","65%","Counts likely low due to algae film, glare and byssal threads"
+"2013-09-16_YB-Cq6",2013-09-16,2013-09-16,"YB","C","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","90%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-09-16_YB-Cq2",2013-09-16,2013-09-16,"YB","C","2","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts likely low due to algal coverage and glare"
+"2013-09-16_YB-Cq4",2013-09-16,2013-09-16,"YB","C","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","90%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-09-16_YB-Cq5",2013-09-16,2013-09-16,"YB","C","5","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","65%","Counts likely low due to algae film, glare and byssal threads"
+"2013-09-16_YB-Cq6",2013-09-16,2013-09-16,"YB","C","6","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","90%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-09-16_YB-Cq2",2013-09-16,2013-09-16,"YB","C","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts likely low due to algal coverage and glare"
+"2013-09-16_YB-Cq4",2013-09-16,2013-09-16,"YB","C","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","90%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-09-16_YB-Cq5",2013-09-16,2013-09-16,"YB","C","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","65%","Counts likely low due to algae film, glare and byssal threads"
+"2013-09-16_YB-Cq6",2013-09-16,2013-09-16,"YB","C","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","90%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-09-16_YB-Cq2",2013-09-16,2013-09-16,"YB","C","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts likely low due to algal coverage and glare"
+"2013-09-16_YB-Cq4",2013-09-16,2013-09-16,"YB","C","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","90%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-09-16_YB-Cq5",2013-09-16,2013-09-16,"YB","C","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","65%","Counts likely low due to algae film, glare and byssal threads"
+"2013-09-16_YB-Cq6",2013-09-16,2013-09-16,"YB","C","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","90%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-09-16_YB-Cq2",2013-09-16,2013-09-16,"YB","C","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts likely low due to algal coverage and glare"
+"2013-09-16_YB-Cq4",2013-09-16,2013-09-16,"YB","C","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","90%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-09-16_YB-Cq5",2013-09-16,2013-09-16,"YB","C","5","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","65%","Counts likely low due to algae film, glare and byssal threads"
+"2013-09-16_YB-Cq6",2013-09-16,2013-09-16,"YB","C","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","90%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-09-16_YB-Cq2",2013-09-16,2013-09-16,"YB","C","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts likely low due to algal coverage and glare"
+"2013-09-16_YB-Cq4",2013-09-16,2013-09-16,"YB","C","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","90%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-09-16_YB-Cq5",2013-09-16,2013-09-16,"YB","C","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","65%","Counts likely low due to algae film, glare and byssal threads"
+"2013-09-16_YB-Cq6",2013-09-16,2013-09-16,"YB","C","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","90%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-09-16_YB-Cq2",2013-09-16,2013-09-16,"YB","C","2","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts likely low due to algal coverage and glare"
+"2013-09-16_YB-Cq4",2013-09-16,2013-09-16,"YB","C","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","90%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-09-16_YB-Cq5",2013-09-16,2013-09-16,"YB","C","5","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","65%","Counts likely low due to algae film, glare and byssal threads"
+"2013-09-16_YB-Cq6",2013-09-16,2013-09-16,"YB","C","6","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","90%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-09-16_YB-Cq2",2013-09-16,2013-09-16,"YB","C","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts likely low due to algal coverage and glare"
+"2013-09-16_YB-Cq4",2013-09-16,2013-09-16,"YB","C","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","90%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-09-16_YB-Cq5",2013-09-16,2013-09-16,"YB","C","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","65%","Counts likely low due to algae film, glare and byssal threads"
+"2013-09-16_YB-Cq6",2013-09-16,2013-09-16,"YB","C","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","90%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-09-16_YB-Cq2",2013-09-16,2013-09-16,"YB","C","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts likely low due to algal coverage and glare"
+"2013-09-16_YB-Cq4",2013-09-16,2013-09-16,"YB","C","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","90%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-09-16_YB-Cq5",2013-09-16,2013-09-16,"YB","C","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","65%","Counts likely low due to algae film, glare and byssal threads"
+"2013-09-16_YB-Cq6",2013-09-16,2013-09-16,"YB","C","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","90%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-09-16_YB-Cq2",2013-09-16,2013-09-16,"YB","C","2","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts likely low due to algal coverage and glare"
+"2013-09-16_YB-Cq4",2013-09-16,2013-09-16,"YB","C","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","90%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-09-16_YB-Cq5",2013-09-16,2013-09-16,"YB","C","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","65%","Counts likely low due to algae film, glare and byssal threads"
+"2013-09-16_YB-Cq6",2013-09-16,2013-09-16,"YB","C","6","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","90%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-09-16_YB-Cq2",2013-09-16,2013-09-16,"YB","C","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts likely low due to algal coverage and glare"
+"2013-09-16_YB-Cq4",2013-09-16,2013-09-16,"YB","C","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","90%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-09-16_YB-Cq5",2013-09-16,2013-09-16,"YB","C","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","65%","Counts likely low due to algae film, glare and byssal threads"
+"2013-09-16_YB-Cq6",2013-09-16,2013-09-16,"YB","C","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","90%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-09-16_YB-Cq2",2013-09-16,2013-09-16,"YB","C","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts likely low due to algal coverage and glare"
+"2013-09-16_YB-Cq4",2013-09-16,2013-09-16,"YB","C","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","90%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-09-16_YB-Cq5",2013-09-16,2013-09-16,"YB","C","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","65%","Counts likely low due to algae film, glare and byssal threads"
+"2013-09-16_YB-Cq6",2013-09-16,2013-09-16,"YB","C","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","90%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-09-16_YB-Cq2",2013-09-16,2013-09-16,"YB","C","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts likely low due to algal coverage and glare"
+"2013-09-16_YB-Cq4",2013-09-16,2013-09-16,"YB","C","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","90%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-09-16_YB-Cq5",2013-09-16,2013-09-16,"YB","C","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","65%","Counts likely low due to algae film, glare and byssal threads"
+"2013-09-16_YB-Cq6",2013-09-16,2013-09-16,"YB","C","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","90%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-09-16_YB-Dq3",2013-09-16,2013-09-16,"YB","D","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low due to sediment cover and blur."
+"2013-09-16_YB-Dq4",2013-09-16,2013-09-16,"YB","D","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts likely low due to glare"
+"2013-09-16_YB-Dq5",2013-09-16,2013-09-16,"YB","D","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Barnacle counts may be low due to algae cover. Algae is mostly a thin film."
+"2013-09-16_YB-Dq3",2013-09-16,2013-09-16,"YB","D","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low due to sediment cover and blur."
+"2013-09-16_YB-Dq4",2013-09-16,2013-09-16,"YB","D","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts likely low due to glare"
+"2013-09-16_YB-Dq5",2013-09-16,2013-09-16,"YB","D","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Barnacle counts may be low due to algae cover. Algae is mostly a thin film."
+"2013-09-16_YB-Dq3",2013-09-16,2013-09-16,"YB","D","3","Bg","Balanus_glandula","Type 1",993,0.015625,63552,"c","Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low due to sediment cover and blur."
+"2013-09-16_YB-Dq4",2013-09-16,2013-09-16,"YB","D","4","Bg","Balanus_glandula","Type 1",885,0.015625,56640,"c","Stephanie Merhoff","Finished","Full","Cropped","3%","Counts likely low due to glare"
+"2013-09-16_YB-Dq5",2013-09-16,2013-09-16,"YB","D","5","Bg","Balanus_glandula","Type 1",1126,0.015625,72064,"c","Beatriz Vaca","Finished","Full","Cropped","80%","Barnacle counts may be low due to algae cover. Algae is mostly a thin film."
+"2013-09-16_YB-Dq3",2013-09-16,2013-09-16,"YB","D","3","BgD","Balanus_glandula_(dead)","Type 2",2,0.015625,128,"c","Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low due to sediment cover and blur."
+"2013-09-16_YB-Dq4",2013-09-16,2013-09-16,"YB","D","4","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","3%","Counts likely low due to glare"
+"2013-09-16_YB-Dq5",2013-09-16,2013-09-16,"YB","D","5","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","80%","Barnacle counts may be low due to algae cover. Algae is mostly a thin film."
+"2013-09-16_YB-Dq3",2013-09-16,2013-09-16,"YB","D","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low due to sediment cover and blur."
+"2013-09-16_YB-Dq4",2013-09-16,2013-09-16,"YB","D","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts likely low due to glare"
+"2013-09-16_YB-Dq5",2013-09-16,2013-09-16,"YB","D","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Barnacle counts may be low due to algae cover. Algae is mostly a thin film."
+"2013-09-16_YB-Dq3",2013-09-16,2013-09-16,"YB","D","3","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low due to sediment cover and blur."
+"2013-09-16_YB-Dq4",2013-09-16,2013-09-16,"YB","D","4","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","3%","Counts likely low due to glare"
+"2013-09-16_YB-Dq5",2013-09-16,2013-09-16,"YB","D","5","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","80%","Barnacle counts may be low due to algae cover. Algae is mostly a thin film."
+"2013-09-16_YB-Dq3",2013-09-16,2013-09-16,"YB","D","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low due to sediment cover and blur."
+"2013-09-16_YB-Dq4",2013-09-16,2013-09-16,"YB","D","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","3%","Counts likely low due to glare"
+"2013-09-16_YB-Dq5",2013-09-16,2013-09-16,"YB","D","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","80%","Barnacle counts may be low due to algae cover. Algae is mostly a thin film."
+"2013-09-16_YB-Dq3",2013-09-16,2013-09-16,"YB","D","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low due to sediment cover and blur."
+"2013-09-16_YB-Dq4",2013-09-16,2013-09-16,"YB","D","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts likely low due to glare"
+"2013-09-16_YB-Dq5",2013-09-16,2013-09-16,"YB","D","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Barnacle counts may be low due to algae cover. Algae is mostly a thin film."
+"2013-09-16_YB-Dq3",2013-09-16,2013-09-16,"YB","D","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low due to sediment cover and blur."
+"2013-09-16_YB-Dq4",2013-09-16,2013-09-16,"YB","D","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts likely low due to glare"
+"2013-09-16_YB-Dq5",2013-09-16,2013-09-16,"YB","D","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Barnacle counts may be low due to algae cover. Algae is mostly a thin film."
+"2013-09-16_YB-Dq3",2013-09-16,2013-09-16,"YB","D","3","Lim","Limpets","Type 12",16,0.0875,182.857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low due to sediment cover and blur."
+"2013-09-16_YB-Dq4",2013-09-16,2013-09-16,"YB","D","4","Lim","Limpets","Type 12",4,0.0875,45.7142857142857,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts likely low due to glare"
+"2013-09-16_YB-Dq5",2013-09-16,2013-09-16,"YB","D","5","Lim","Limpets","Type 12",59,0.0875,674.285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Barnacle counts may be low due to algae cover. Algae is mostly a thin film."
+"2013-09-16_YB-Dq3",2013-09-16,2013-09-16,"YB","D","3","Ls","Littorina_sitkana","Type 13",62,0.0875,708.571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low due to sediment cover and blur."
+"2013-09-16_YB-Dq4",2013-09-16,2013-09-16,"YB","D","4","Ls","Littorina_sitkana","Type 13",88,0.0875,1005.71428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts likely low due to glare"
+"2013-09-16_YB-Dq5",2013-09-16,2013-09-16,"YB","D","5","Ls","Littorina_sitkana","Type 13",169,0.0875,1931.42857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Barnacle counts may be low due to algae cover. Algae is mostly a thin film."
+"2013-09-16_YB-Dq3",2013-09-16,2013-09-16,"YB","D","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low due to sediment cover and blur."
+"2013-09-16_YB-Dq4",2013-09-16,2013-09-16,"YB","D","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts likely low due to glare"
+"2013-09-16_YB-Dq5",2013-09-16,2013-09-16,"YB","D","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Barnacle counts may be low due to algae cover. Algae is mostly a thin film."
+"2013-09-16_YB-Dq3",2013-09-16,2013-09-16,"YB","D","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low due to sediment cover and blur."
+"2013-09-16_YB-Dq4",2013-09-16,2013-09-16,"YB","D","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts likely low due to glare"
+"2013-09-16_YB-Dq5",2013-09-16,2013-09-16,"YB","D","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Barnacle counts may be low due to algae cover. Algae is mostly a thin film."
+"2013-09-16_YB-Dq3",2013-09-16,2013-09-16,"YB","D","3","Myt","Mytilus_spp","Type 7",29,0.0875,331.428571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low due to sediment cover and blur."
+"2013-09-16_YB-Dq4",2013-09-16,2013-09-16,"YB","D","4","Myt","Mytilus_spp","Type 7",56,0.0875,640,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts likely low due to glare"
+"2013-09-16_YB-Dq5",2013-09-16,2013-09-16,"YB","D","5","Myt","Mytilus_spp","Type 7",93,0.0875,1062.85714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Barnacle counts may be low due to algae cover. Algae is mostly a thin film."
+"2013-09-16_YB-Dq3",2013-09-16,2013-09-16,"YB","D","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low due to sediment cover and blur."
+"2013-09-16_YB-Dq4",2013-09-16,2013-09-16,"YB","D","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts likely low due to glare"
+"2013-09-16_YB-Dq5",2013-09-16,2013-09-16,"YB","D","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Barnacle counts may be low due to algae cover. Algae is mostly a thin film."
+"2013-09-16_YB-Dq3",2013-09-16,2013-09-16,"YB","D","3","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low due to sediment cover and blur."
+"2013-09-16_YB-Dq4",2013-09-16,2013-09-16,"YB","D","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts likely low due to glare"
+"2013-09-16_YB-Dq5",2013-09-16,2013-09-16,"YB","D","5","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Barnacle counts may be low due to algae cover. Algae is mostly a thin film."
+"2013-09-16_YB-Dq3",2013-09-16,2013-09-16,"YB","D","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low due to sediment cover and blur."
+"2013-09-16_YB-Dq4",2013-09-16,2013-09-16,"YB","D","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts likely low due to glare"
+"2013-09-16_YB-Dq5",2013-09-16,2013-09-16,"YB","D","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Barnacle counts may be low due to algae cover. Algae is mostly a thin film."
+"2013-09-16_YB-Dq3",2013-09-16,2013-09-16,"YB","D","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low due to sediment cover and blur."
+"2013-09-16_YB-Dq4",2013-09-16,2013-09-16,"YB","D","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts likely low due to glare"
+"2013-09-16_YB-Dq5",2013-09-16,2013-09-16,"YB","D","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Barnacle counts may be low due to algae cover. Algae is mostly a thin film."
+"2013-09-16_YB-Dq3",2013-09-16,2013-09-16,"YB","D","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low due to sediment cover and blur."
+"2013-09-16_YB-Dq4",2013-09-16,2013-09-16,"YB","D","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts likely low due to glare"
+"2013-09-16_YB-Dq5",2013-09-16,2013-09-16,"YB","D","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Barnacle counts may be low due to algae cover. Algae is mostly a thin film."
+"2013-09-16_YB-Dq3",2013-09-16,2013-09-16,"YB","D","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low due to sediment cover and blur."
+"2013-09-16_YB-Dq4",2013-09-16,2013-09-16,"YB","D","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts likely low due to glare"
+"2013-09-16_YB-Dq5",2013-09-16,2013-09-16,"YB","D","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Barnacle counts may be low due to algae cover. Algae is mostly a thin film."
+"2013-09-16_YB-Dq3",2013-09-16,2013-09-16,"YB","D","3","No","Nucella_ostrina","Type 9",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low due to sediment cover and blur."
+"2013-09-16_YB-Dq4",2013-09-16,2013-09-16,"YB","D","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts likely low due to glare"
+"2013-09-16_YB-Dq5",2013-09-16,2013-09-16,"YB","D","5","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Barnacle counts may be low due to algae cover. Algae is mostly a thin film."
+"2013-09-16_YB-Dq3",2013-09-16,2013-09-16,"YB","D","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low due to sediment cover and blur."
+"2013-09-16_YB-Dq4",2013-09-16,2013-09-16,"YB","D","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts likely low due to glare"
+"2013-09-16_YB-Dq5",2013-09-16,2013-09-16,"YB","D","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Barnacle counts may be low due to algae cover. Algae is mostly a thin film."
+"2013-09-16_YB-Dq3",2013-09-16,2013-09-16,"YB","D","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low due to sediment cover and blur."
+"2013-09-16_YB-Dq4",2013-09-16,2013-09-16,"YB","D","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts likely low due to glare"
+"2013-09-16_YB-Dq5",2013-09-16,2013-09-16,"YB","D","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Barnacle counts may be low due to algae cover. Algae is mostly a thin film."
+"2013-09-16_YB-Dq3",2013-09-16,2013-09-16,"YB","D","3","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low due to sediment cover and blur."
+"2013-09-16_YB-Dq4",2013-09-16,2013-09-16,"YB","D","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts likely low due to glare"
+"2013-09-16_YB-Dq5",2013-09-16,2013-09-16,"YB","D","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Barnacle counts may be low due to algae cover. Algae is mostly a thin film."
+"2013-09-16_YB-Dq3",2013-09-16,2013-09-16,"YB","D","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low due to sediment cover and blur."
+"2013-09-16_YB-Dq4",2013-09-16,2013-09-16,"YB","D","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts likely low due to glare"
+"2013-09-16_YB-Dq5",2013-09-16,2013-09-16,"YB","D","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Barnacle counts may be low due to algae cover. Algae is mostly a thin film."
+"2013-09-16_YB-Dq3",2013-09-16,2013-09-16,"YB","D","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low due to sediment cover and blur."
+"2013-09-16_YB-Dq4",2013-09-16,2013-09-16,"YB","D","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts likely low due to glare"
+"2013-09-16_YB-Dq5",2013-09-16,2013-09-16,"YB","D","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Barnacle counts may be low due to algae cover. Algae is mostly a thin film."
+"2013-09-16_YB-Dq3",2013-09-16,2013-09-16,"YB","D","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low due to sediment cover and blur."
+"2013-09-16_YB-Dq4",2013-09-16,2013-09-16,"YB","D","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts likely low due to glare"
+"2013-09-16_YB-Dq5",2013-09-16,2013-09-16,"YB","D","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Barnacle counts may be low due to algae cover. Algae is mostly a thin film."
+"2013-09-16_YB-Eq3",2013-09-16,2013-09-16,"YB","E","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2013-09-16_YB-Eq4",2013-09-16,2013-09-16,"YB","E","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to blur and glare"
+"2013-09-16_YB-Eq8",2013-09-16,2013-09-16,"YB","E","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to glare and blur"
+"2013-09-16_YB-Eq3",2013-09-16,2013-09-16,"YB","E","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2013-09-16_YB-Eq4",2013-09-16,2013-09-16,"YB","E","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to blur and glare"
+"2013-09-16_YB-Eq8",2013-09-16,2013-09-16,"YB","E","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to glare and blur"
+"2013-09-16_YB-Eq3",2013-09-16,2013-09-16,"YB","E","3","Bg","Balanus_glandula","Type 1",685,0.015625,43840,"c","Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2013-09-16_YB-Eq4",2013-09-16,2013-09-16,"YB","E","4","Bg","Balanus_glandula","Type 1",686,0.015625,43904,"c","Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to blur and glare"
+"2013-09-16_YB-Eq8",2013-09-16,2013-09-16,"YB","E","8","Bg","Balanus_glandula","Type 1",879,0.015625,56256,"c","Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to glare and blur"
+"2013-09-16_YB-Eq3",2013-09-16,2013-09-16,"YB","E","3","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2013-09-16_YB-Eq4",2013-09-16,2013-09-16,"YB","E","4","BgD","Balanus_glandula_(dead)","Type 2",1,0.015625,64,"c","Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to blur and glare"
+"2013-09-16_YB-Eq8",2013-09-16,2013-09-16,"YB","E","8","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to glare and blur"
+"2013-09-16_YB-Eq3",2013-09-16,2013-09-16,"YB","E","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2013-09-16_YB-Eq4",2013-09-16,2013-09-16,"YB","E","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to blur and glare"
+"2013-09-16_YB-Eq8",2013-09-16,2013-09-16,"YB","E","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to glare and blur"
+"2013-09-16_YB-Eq3",2013-09-16,2013-09-16,"YB","E","3","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2013-09-16_YB-Eq4",2013-09-16,2013-09-16,"YB","E","4","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to blur and glare"
+"2013-09-16_YB-Eq8",2013-09-16,2013-09-16,"YB","E","8","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to glare and blur"
+"2013-09-16_YB-Eq3",2013-09-16,2013-09-16,"YB","E","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2013-09-16_YB-Eq4",2013-09-16,2013-09-16,"YB","E","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to blur and glare"
+"2013-09-16_YB-Eq8",2013-09-16,2013-09-16,"YB","E","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to glare and blur"
+"2013-09-16_YB-Eq3",2013-09-16,2013-09-16,"YB","E","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2013-09-16_YB-Eq4",2013-09-16,2013-09-16,"YB","E","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to blur and glare"
+"2013-09-16_YB-Eq8",2013-09-16,2013-09-16,"YB","E","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to glare and blur"
+"2013-09-16_YB-Eq3",2013-09-16,2013-09-16,"YB","E","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2013-09-16_YB-Eq4",2013-09-16,2013-09-16,"YB","E","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to blur and glare"
+"2013-09-16_YB-Eq8",2013-09-16,2013-09-16,"YB","E","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to glare and blur"
+"2013-09-16_YB-Eq3",2013-09-16,2013-09-16,"YB","E","3","Lim","Limpets","Type 12",10,0.0875,114.285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2013-09-16_YB-Eq4",2013-09-16,2013-09-16,"YB","E","4","Lim","Limpets","Type 12",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to blur and glare"
+"2013-09-16_YB-Eq8",2013-09-16,2013-09-16,"YB","E","8","Lim","Limpets","Type 12",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to glare and blur"
+"2013-09-16_YB-Eq3",2013-09-16,2013-09-16,"YB","E","3","Ls","Littorina_sitkana","Type 13",9,0.0875,102.857142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2013-09-16_YB-Eq4",2013-09-16,2013-09-16,"YB","E","4","Ls","Littorina_sitkana","Type 13",8,0.0875,91.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to blur and glare"
+"2013-09-16_YB-Eq8",2013-09-16,2013-09-16,"YB","E","8","Ls","Littorina_sitkana","Type 13",16,0.0875,182.857142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to glare and blur"
+"2013-09-16_YB-Eq3",2013-09-16,2013-09-16,"YB","E","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2013-09-16_YB-Eq4",2013-09-16,2013-09-16,"YB","E","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to blur and glare"
+"2013-09-16_YB-Eq8",2013-09-16,2013-09-16,"YB","E","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to glare and blur"
+"2013-09-16_YB-Eq3",2013-09-16,2013-09-16,"YB","E","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2013-09-16_YB-Eq4",2013-09-16,2013-09-16,"YB","E","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to blur and glare"
+"2013-09-16_YB-Eq8",2013-09-16,2013-09-16,"YB","E","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to glare and blur"
+"2013-09-16_YB-Eq3",2013-09-16,2013-09-16,"YB","E","3","Myt","Mytilus_spp","Type 7",135,0.0875,1542.85714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2013-09-16_YB-Eq4",2013-09-16,2013-09-16,"YB","E","4","Myt","Mytilus_spp","Type 7",95,0.0875,1085.71428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to blur and glare"
+"2013-09-16_YB-Eq8",2013-09-16,2013-09-16,"YB","E","8","Myt","Mytilus_spp","Type 7",20,0.0875,228.571428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to glare and blur"
+"2013-09-16_YB-Eq3",2013-09-16,2013-09-16,"YB","E","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2013-09-16_YB-Eq4",2013-09-16,2013-09-16,"YB","E","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to blur and glare"
+"2013-09-16_YB-Eq8",2013-09-16,2013-09-16,"YB","E","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to glare and blur"
+"2013-09-16_YB-Eq3",2013-09-16,2013-09-16,"YB","E","3","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2013-09-16_YB-Eq4",2013-09-16,2013-09-16,"YB","E","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to blur and glare"
+"2013-09-16_YB-Eq8",2013-09-16,2013-09-16,"YB","E","8","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to glare and blur"
+"2013-09-16_YB-Eq3",2013-09-16,2013-09-16,"YB","E","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2013-09-16_YB-Eq4",2013-09-16,2013-09-16,"YB","E","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to blur and glare"
+"2013-09-16_YB-Eq8",2013-09-16,2013-09-16,"YB","E","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to glare and blur"
+"2013-09-16_YB-Eq3",2013-09-16,2013-09-16,"YB","E","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2013-09-16_YB-Eq4",2013-09-16,2013-09-16,"YB","E","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to blur and glare"
+"2013-09-16_YB-Eq8",2013-09-16,2013-09-16,"YB","E","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to glare and blur"
+"2013-09-16_YB-Eq3",2013-09-16,2013-09-16,"YB","E","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2013-09-16_YB-Eq4",2013-09-16,2013-09-16,"YB","E","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to blur and glare"
+"2013-09-16_YB-Eq8",2013-09-16,2013-09-16,"YB","E","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to glare and blur"
+"2013-09-16_YB-Eq3",2013-09-16,2013-09-16,"YB","E","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2013-09-16_YB-Eq4",2013-09-16,2013-09-16,"YB","E","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to blur and glare"
+"2013-09-16_YB-Eq8",2013-09-16,2013-09-16,"YB","E","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to glare and blur"
+"2013-09-16_YB-Eq3",2013-09-16,2013-09-16,"YB","E","3","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2013-09-16_YB-Eq4",2013-09-16,2013-09-16,"YB","E","4","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to blur and glare"
+"2013-09-16_YB-Eq8",2013-09-16,2013-09-16,"YB","E","8","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to glare and blur"
+"2013-09-16_YB-Eq3",2013-09-16,2013-09-16,"YB","E","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2013-09-16_YB-Eq4",2013-09-16,2013-09-16,"YB","E","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to blur and glare"
+"2013-09-16_YB-Eq8",2013-09-16,2013-09-16,"YB","E","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to glare and blur"
+"2013-09-16_YB-Eq3",2013-09-16,2013-09-16,"YB","E","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2013-09-16_YB-Eq4",2013-09-16,2013-09-16,"YB","E","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to blur and glare"
+"2013-09-16_YB-Eq8",2013-09-16,2013-09-16,"YB","E","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to glare and blur"
+"2013-09-16_YB-Eq3",2013-09-16,2013-09-16,"YB","E","3","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2013-09-16_YB-Eq4",2013-09-16,2013-09-16,"YB","E","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to blur and glare"
+"2013-09-16_YB-Eq8",2013-09-16,2013-09-16,"YB","E","8","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to glare and blur"
+"2013-09-16_YB-Eq3",2013-09-16,2013-09-16,"YB","E","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2013-09-16_YB-Eq4",2013-09-16,2013-09-16,"YB","E","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to blur and glare"
+"2013-09-16_YB-Eq8",2013-09-16,2013-09-16,"YB","E","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to glare and blur"
+"2013-09-16_YB-Eq3",2013-09-16,2013-09-16,"YB","E","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2013-09-16_YB-Eq4",2013-09-16,2013-09-16,"YB","E","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to blur and glare"
+"2013-09-16_YB-Eq8",2013-09-16,2013-09-16,"YB","E","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to glare and blur"
+"2013-09-16_YB-Eq3",2013-09-16,2013-09-16,"YB","E","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2013-09-16_YB-Eq4",2013-09-16,2013-09-16,"YB","E","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to blur and glare"
+"2013-09-16_YB-Eq8",2013-09-16,2013-09-16,"YB","E","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to glare and blur"
+"2013-09-16_YB-Fq4",2013-09-16,2013-09-16,"YB","F","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","90%","Counts low due to algae, blur, and glare. Algae is a thin film."
+"2013-09-16_YB-Fq5",2013-09-16,2013-09-16,"YB","F","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","90%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-09-16_YB-Fq6",2013-09-16,2013-09-16,"YB","F","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","95%","Counts low due to algae, blur, and glare. Algae is a thick film."
+"2013-09-16_YB-Fq7",2013-09-16,2013-09-16,"YB","F","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","counts may be low due to blur and glare"
+"2013-09-16_YB-Fq4",2013-09-16,2013-09-16,"YB","F","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","90%","Counts low due to algae, blur, and glare. Algae is a thin film."
+"2013-09-16_YB-Fq5",2013-09-16,2013-09-16,"YB","F","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","90%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-09-16_YB-Fq6",2013-09-16,2013-09-16,"YB","F","6","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","95%","Counts low due to algae, blur, and glare. Algae is a thick film."
+"2013-09-16_YB-Fq7",2013-09-16,2013-09-16,"YB","F","7","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","counts may be low due to blur and glare"
+"2013-09-16_YB-Fq4",2013-09-16,2013-09-16,"YB","F","4","Bg","Balanus_glandula","Type 1",998,0.015625,63872,"c","Beatriz Vaca","Finished","Full","Cropped","90%","Counts low due to algae, blur, and glare. Algae is a thin film."
+"2013-09-16_YB-Fq5",2013-09-16,2013-09-16,"YB","F","5","Bg","Balanus_glandula","Type 1",1192,0.015625,76288,"c","Beatriz Vaca","Finished","Full","Cropped","90%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-09-16_YB-Fq6",2013-09-16,2013-09-16,"YB","F","6","Bg","Balanus_glandula","Type 1",1271,0.015625,81344,"c","Beatriz Vaca","Finished","Full","Cropped","95%","Counts low due to algae, blur, and glare. Algae is a thick film."
+"2013-09-16_YB-Fq7",2013-09-16,2013-09-16,"YB","F","7","Bg","Balanus_glandula","Type 1",787,0.015625,50368,"c","Stephanie Merhoff","Finished","Full","Cropped","25%","counts may be low due to blur and glare"
+"2013-09-16_YB-Fq4",2013-09-16,2013-09-16,"YB","F","4","BgD","Balanus_glandula_(dead)","Type 2",2,0.015625,128,"c","Beatriz Vaca","Finished","Full","Cropped","90%","Counts low due to algae, blur, and glare. Algae is a thin film."
+"2013-09-16_YB-Fq5",2013-09-16,2013-09-16,"YB","F","5","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","90%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-09-16_YB-Fq6",2013-09-16,2013-09-16,"YB","F","6","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","95%","Counts low due to algae, blur, and glare. Algae is a thick film."
+"2013-09-16_YB-Fq7",2013-09-16,2013-09-16,"YB","F","7","BgD","Balanus_glandula_(dead)","Type 2",1,0.015625,64,"c","Stephanie Merhoff","Finished","Full","Cropped","25%","counts may be low due to blur and glare"
+"2013-09-16_YB-Fq4",2013-09-16,2013-09-16,"YB","F","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","90%","Counts low due to algae, blur, and glare. Algae is a thin film."
+"2013-09-16_YB-Fq5",2013-09-16,2013-09-16,"YB","F","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","90%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-09-16_YB-Fq6",2013-09-16,2013-09-16,"YB","F","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","95%","Counts low due to algae, blur, and glare. Algae is a thick film."
+"2013-09-16_YB-Fq7",2013-09-16,2013-09-16,"YB","F","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","counts may be low due to blur and glare"
+"2013-09-16_YB-Fq4",2013-09-16,2013-09-16,"YB","F","4","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","90%","Counts low due to algae, blur, and glare. Algae is a thin film."
+"2013-09-16_YB-Fq5",2013-09-16,2013-09-16,"YB","F","5","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","90%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-09-16_YB-Fq6",2013-09-16,2013-09-16,"YB","F","6","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","95%","Counts low due to algae, blur, and glare. Algae is a thick film."
+"2013-09-16_YB-Fq7",2013-09-16,2013-09-16,"YB","F","7","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","25%","counts may be low due to blur and glare"
+"2013-09-16_YB-Fq4",2013-09-16,2013-09-16,"YB","F","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","90%","Counts low due to algae, blur, and glare. Algae is a thin film."
+"2013-09-16_YB-Fq5",2013-09-16,2013-09-16,"YB","F","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","90%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-09-16_YB-Fq6",2013-09-16,2013-09-16,"YB","F","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","95%","Counts low due to algae, blur, and glare. Algae is a thick film."
+"2013-09-16_YB-Fq7",2013-09-16,2013-09-16,"YB","F","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","25%","counts may be low due to blur and glare"
+"2013-09-16_YB-Fq4",2013-09-16,2013-09-16,"YB","F","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","90%","Counts low due to algae, blur, and glare. Algae is a thin film."
+"2013-09-16_YB-Fq5",2013-09-16,2013-09-16,"YB","F","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","90%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-09-16_YB-Fq6",2013-09-16,2013-09-16,"YB","F","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","95%","Counts low due to algae, blur, and glare. Algae is a thick film."
+"2013-09-16_YB-Fq7",2013-09-16,2013-09-16,"YB","F","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","counts may be low due to blur and glare"
+"2013-09-16_YB-Fq4",2013-09-16,2013-09-16,"YB","F","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","90%","Counts low due to algae, blur, and glare. Algae is a thin film."
+"2013-09-16_YB-Fq5",2013-09-16,2013-09-16,"YB","F","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","90%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-09-16_YB-Fq6",2013-09-16,2013-09-16,"YB","F","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","95%","Counts low due to algae, blur, and glare. Algae is a thick film."
+"2013-09-16_YB-Fq7",2013-09-16,2013-09-16,"YB","F","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","counts may be low due to blur and glare"
+"2013-09-16_YB-Fq4",2013-09-16,2013-09-16,"YB","F","4","Lim","Limpets","Type 12",73,0.0875,834.285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","90%","Counts low due to algae, blur, and glare. Algae is a thin film."
+"2013-09-16_YB-Fq5",2013-09-16,2013-09-16,"YB","F","5","Lim","Limpets","Type 12",191,0.0875,2182.85714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","90%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-09-16_YB-Fq6",2013-09-16,2013-09-16,"YB","F","6","Lim","Limpets","Type 12",136,0.0875,1554.28571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","95%","Counts low due to algae, blur, and glare. Algae is a thick film."
+"2013-09-16_YB-Fq7",2013-09-16,2013-09-16,"YB","F","7","Lim","Limpets","Type 12",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","counts may be low due to blur and glare"
+"2013-09-16_YB-Fq4",2013-09-16,2013-09-16,"YB","F","4","Ls","Littorina_sitkana","Type 13",77,0.0875,880,NA,"Beatriz Vaca","Finished","Full","Cropped","90%","Counts low due to algae, blur, and glare. Algae is a thin film."
+"2013-09-16_YB-Fq5",2013-09-16,2013-09-16,"YB","F","5","Ls","Littorina_sitkana","Type 13",95,0.0875,1085.71428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","90%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-09-16_YB-Fq6",2013-09-16,2013-09-16,"YB","F","6","Ls","Littorina_sitkana","Type 13",106,0.0875,1211.42857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","95%","Counts low due to algae, blur, and glare. Algae is a thick film."
+"2013-09-16_YB-Fq7",2013-09-16,2013-09-16,"YB","F","7","Ls","Littorina_sitkana","Type 13",33,0.0875,377.142857142857,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","counts may be low due to blur and glare"
+"2013-09-16_YB-Fq4",2013-09-16,2013-09-16,"YB","F","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","90%","Counts low due to algae, blur, and glare. Algae is a thin film."
+"2013-09-16_YB-Fq5",2013-09-16,2013-09-16,"YB","F","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","90%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-09-16_YB-Fq6",2013-09-16,2013-09-16,"YB","F","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","95%","Counts low due to algae, blur, and glare. Algae is a thick film."
+"2013-09-16_YB-Fq7",2013-09-16,2013-09-16,"YB","F","7","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","counts may be low due to blur and glare"
+"2013-09-16_YB-Fq4",2013-09-16,2013-09-16,"YB","F","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","90%","Counts low due to algae, blur, and glare. Algae is a thin film."
+"2013-09-16_YB-Fq5",2013-09-16,2013-09-16,"YB","F","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","90%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-09-16_YB-Fq6",2013-09-16,2013-09-16,"YB","F","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","95%","Counts low due to algae, blur, and glare. Algae is a thick film."
+"2013-09-16_YB-Fq7",2013-09-16,2013-09-16,"YB","F","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","counts may be low due to blur and glare"
+"2013-09-16_YB-Fq4",2013-09-16,2013-09-16,"YB","F","4","Myt","Mytilus_spp","Type 7",100,0.0875,1142.85714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","90%","Counts low due to algae, blur, and glare. Algae is a thin film."
+"2013-09-16_YB-Fq5",2013-09-16,2013-09-16,"YB","F","5","Myt","Mytilus_spp","Type 7",75,0.0875,857.142857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","90%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-09-16_YB-Fq6",2013-09-16,2013-09-16,"YB","F","6","Myt","Mytilus_spp","Type 7",88,0.0875,1005.71428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","95%","Counts low due to algae, blur, and glare. Algae is a thick film."
+"2013-09-16_YB-Fq7",2013-09-16,2013-09-16,"YB","F","7","Myt","Mytilus_spp","Type 7",27,0.0875,308.571428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","counts may be low due to blur and glare"
+"2013-09-16_YB-Fq4",2013-09-16,2013-09-16,"YB","F","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","90%","Counts low due to algae, blur, and glare. Algae is a thin film."
+"2013-09-16_YB-Fq5",2013-09-16,2013-09-16,"YB","F","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","90%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-09-16_YB-Fq6",2013-09-16,2013-09-16,"YB","F","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","95%","Counts low due to algae, blur, and glare. Algae is a thick film."
+"2013-09-16_YB-Fq7",2013-09-16,2013-09-16,"YB","F","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","counts may be low due to blur and glare"
+"2013-09-16_YB-Fq4",2013-09-16,2013-09-16,"YB","F","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","90%","Counts low due to algae, blur, and glare. Algae is a thin film."
+"2013-09-16_YB-Fq5",2013-09-16,2013-09-16,"YB","F","5","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","90%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-09-16_YB-Fq6",2013-09-16,2013-09-16,"YB","F","6","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","95%","Counts low due to algae, blur, and glare. Algae is a thick film."
+"2013-09-16_YB-Fq7",2013-09-16,2013-09-16,"YB","F","7","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","counts may be low due to blur and glare"
+"2013-09-16_YB-Fq4",2013-09-16,2013-09-16,"YB","F","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","90%","Counts low due to algae, blur, and glare. Algae is a thin film."
+"2013-09-16_YB-Fq5",2013-09-16,2013-09-16,"YB","F","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","90%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-09-16_YB-Fq6",2013-09-16,2013-09-16,"YB","F","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","95%","Counts low due to algae, blur, and glare. Algae is a thick film."
+"2013-09-16_YB-Fq7",2013-09-16,2013-09-16,"YB","F","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","counts may be low due to blur and glare"
+"2013-09-16_YB-Fq4",2013-09-16,2013-09-16,"YB","F","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","90%","Counts low due to algae, blur, and glare. Algae is a thin film."
+"2013-09-16_YB-Fq5",2013-09-16,2013-09-16,"YB","F","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","90%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-09-16_YB-Fq6",2013-09-16,2013-09-16,"YB","F","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","95%","Counts low due to algae, blur, and glare. Algae is a thick film."
+"2013-09-16_YB-Fq7",2013-09-16,2013-09-16,"YB","F","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","counts may be low due to blur and glare"
+"2013-09-16_YB-Fq4",2013-09-16,2013-09-16,"YB","F","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","90%","Counts low due to algae, blur, and glare. Algae is a thin film."
+"2013-09-16_YB-Fq5",2013-09-16,2013-09-16,"YB","F","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","90%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-09-16_YB-Fq6",2013-09-16,2013-09-16,"YB","F","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","95%","Counts low due to algae, blur, and glare. Algae is a thick film."
+"2013-09-16_YB-Fq7",2013-09-16,2013-09-16,"YB","F","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","counts may be low due to blur and glare"
+"2013-09-16_YB-Fq4",2013-09-16,2013-09-16,"YB","F","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","90%","Counts low due to algae, blur, and glare. Algae is a thin film."
+"2013-09-16_YB-Fq5",2013-09-16,2013-09-16,"YB","F","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","90%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-09-16_YB-Fq6",2013-09-16,2013-09-16,"YB","F","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","95%","Counts low due to algae, blur, and glare. Algae is a thick film."
+"2013-09-16_YB-Fq7",2013-09-16,2013-09-16,"YB","F","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","counts may be low due to blur and glare"
+"2013-09-16_YB-Fq4",2013-09-16,2013-09-16,"YB","F","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","90%","Counts low due to algae, blur, and glare. Algae is a thin film."
+"2013-09-16_YB-Fq5",2013-09-16,2013-09-16,"YB","F","5","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","90%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-09-16_YB-Fq6",2013-09-16,2013-09-16,"YB","F","6","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","95%","Counts low due to algae, blur, and glare. Algae is a thick film."
+"2013-09-16_YB-Fq7",2013-09-16,2013-09-16,"YB","F","7","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","counts may be low due to blur and glare"
+"2013-09-16_YB-Fq4",2013-09-16,2013-09-16,"YB","F","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","90%","Counts low due to algae, blur, and glare. Algae is a thin film."
+"2013-09-16_YB-Fq5",2013-09-16,2013-09-16,"YB","F","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","90%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-09-16_YB-Fq6",2013-09-16,2013-09-16,"YB","F","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","95%","Counts low due to algae, blur, and glare. Algae is a thick film."
+"2013-09-16_YB-Fq7",2013-09-16,2013-09-16,"YB","F","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","counts may be low due to blur and glare"
+"2013-09-16_YB-Fq4",2013-09-16,2013-09-16,"YB","F","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","90%","Counts low due to algae, blur, and glare. Algae is a thin film."
+"2013-09-16_YB-Fq5",2013-09-16,2013-09-16,"YB","F","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","90%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-09-16_YB-Fq6",2013-09-16,2013-09-16,"YB","F","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","95%","Counts low due to algae, blur, and glare. Algae is a thick film."
+"2013-09-16_YB-Fq7",2013-09-16,2013-09-16,"YB","F","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","counts may be low due to blur and glare"
+"2013-09-16_YB-Fq4",2013-09-16,2013-09-16,"YB","F","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","90%","Counts low due to algae, blur, and glare. Algae is a thin film."
+"2013-09-16_YB-Fq5",2013-09-16,2013-09-16,"YB","F","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","90%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-09-16_YB-Fq6",2013-09-16,2013-09-16,"YB","F","6","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","95%","Counts low due to algae, blur, and glare. Algae is a thick film."
+"2013-09-16_YB-Fq7",2013-09-16,2013-09-16,"YB","F","7","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","counts may be low due to blur and glare"
+"2013-09-16_YB-Fq4",2013-09-16,2013-09-16,"YB","F","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","90%","Counts low due to algae, blur, and glare. Algae is a thin film."
+"2013-09-16_YB-Fq5",2013-09-16,2013-09-16,"YB","F","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","90%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-09-16_YB-Fq6",2013-09-16,2013-09-16,"YB","F","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","95%","Counts low due to algae, blur, and glare. Algae is a thick film."
+"2013-09-16_YB-Fq7",2013-09-16,2013-09-16,"YB","F","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","counts may be low due to blur and glare"
+"2013-09-16_YB-Fq4",2013-09-16,2013-09-16,"YB","F","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","90%","Counts low due to algae, blur, and glare. Algae is a thin film."
+"2013-09-16_YB-Fq5",2013-09-16,2013-09-16,"YB","F","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","90%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-09-16_YB-Fq6",2013-09-16,2013-09-16,"YB","F","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","95%","Counts low due to algae, blur, and glare. Algae is a thick film."
+"2013-09-16_YB-Fq7",2013-09-16,2013-09-16,"YB","F","7","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","counts may be low due to blur and glare"
+"2013-09-16_YB-Fq4",2013-09-16,2013-09-16,"YB","F","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","90%","Counts low due to algae, blur, and glare. Algae is a thin film."
+"2013-09-16_YB-Fq5",2013-09-16,2013-09-16,"YB","F","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","90%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-09-16_YB-Fq6",2013-09-16,2013-09-16,"YB","F","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","95%","Counts low due to algae, blur, and glare. Algae is a thick film."
+"2013-09-16_YB-Fq7",2013-09-16,2013-09-16,"YB","F","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","counts may be low due to blur and glare"
+"2013-09-16_YB-Gq3",2013-09-16,2013-09-16,"YB","G","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2013-09-16_YB-Gq5",2013-09-16,2013-09-16,"YB","G","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare, byssal threads, and sand coverage. ~40%sand cover, ~30%byssal threads."
+"2013-09-16_YB-Gq8",2013-09-16,2013-09-16,"YB","G","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts likely low due to algae film and glare"
+"2013-09-16_YB-Gq3",2013-09-16,2013-09-16,"YB","G","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2013-09-16_YB-Gq5",2013-09-16,2013-09-16,"YB","G","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare, byssal threads, and sand coverage. ~40%sand cover, ~30%byssal threads."
+"2013-09-16_YB-Gq8",2013-09-16,2013-09-16,"YB","G","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts likely low due to algae film and glare"
+"2013-09-16_YB-Gq3",2013-09-16,2013-09-16,"YB","G","3","Bg","Balanus_glandula","Type 1",4,0.0875,45.7142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2013-09-16_YB-Gq5",2013-09-16,2013-09-16,"YB","G","5","Bg","Balanus_glandula","Type 1",3227,0.0875,36880,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare, byssal threads, and sand coverage. ~40%sand cover, ~30%byssal threads."
+"2013-09-16_YB-Gq8",2013-09-16,2013-09-16,"YB","G","8","Bg","Balanus_glandula","Type 1",789,0.015625,50496,"c","Stephanie Merhoff","Finished","Full","Cropped","50%","Counts likely low due to algae film and glare"
+"2013-09-16_YB-Gq3",2013-09-16,2013-09-16,"YB","G","3","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2013-09-16_YB-Gq5",2013-09-16,2013-09-16,"YB","G","5","BgD","Balanus_glandula_(dead)","Type 2",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare, byssal threads, and sand coverage. ~40%sand cover, ~30%byssal threads."
+"2013-09-16_YB-Gq8",2013-09-16,2013-09-16,"YB","G","8","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","50%","Counts likely low due to algae film and glare"
+"2013-09-16_YB-Gq3",2013-09-16,2013-09-16,"YB","G","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2013-09-16_YB-Gq5",2013-09-16,2013-09-16,"YB","G","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare, byssal threads, and sand coverage. ~40%sand cover, ~30%byssal threads."
+"2013-09-16_YB-Gq8",2013-09-16,2013-09-16,"YB","G","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts likely low due to algae film and glare"
+"2013-09-16_YB-Gq3",2013-09-16,2013-09-16,"YB","G","3","Cth","Chthamalus_dalli","Type 3",907,0.0875,10365.7142857143,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2013-09-16_YB-Gq5",2013-09-16,2013-09-16,"YB","G","5","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare, byssal threads, and sand coverage. ~40%sand cover, ~30%byssal threads."
+"2013-09-16_YB-Gq8",2013-09-16,2013-09-16,"YB","G","8","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","50%","Counts likely low due to algae film and glare"
+"2013-09-16_YB-Gq3",2013-09-16,2013-09-16,"YB","G","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2013-09-16_YB-Gq5",2013-09-16,2013-09-16,"YB","G","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare, byssal threads, and sand coverage. ~40%sand cover, ~30%byssal threads."
+"2013-09-16_YB-Gq8",2013-09-16,2013-09-16,"YB","G","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","50%","Counts likely low due to algae film and glare"
+"2013-09-16_YB-Gq3",2013-09-16,2013-09-16,"YB","G","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2013-09-16_YB-Gq5",2013-09-16,2013-09-16,"YB","G","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare, byssal threads, and sand coverage. ~40%sand cover, ~30%byssal threads."
+"2013-09-16_YB-Gq8",2013-09-16,2013-09-16,"YB","G","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts likely low due to algae film and glare"
+"2013-09-16_YB-Gq3",2013-09-16,2013-09-16,"YB","G","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2013-09-16_YB-Gq5",2013-09-16,2013-09-16,"YB","G","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare, byssal threads, and sand coverage. ~40%sand cover, ~30%byssal threads."
+"2013-09-16_YB-Gq8",2013-09-16,2013-09-16,"YB","G","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts likely low due to algae film and glare"
+"2013-09-16_YB-Gq3",2013-09-16,2013-09-16,"YB","G","3","Lim","Limpets","Type 12",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2013-09-16_YB-Gq5",2013-09-16,2013-09-16,"YB","G","5","Lim","Limpets","Type 12",227,0.0875,2594.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare, byssal threads, and sand coverage. ~40%sand cover, ~30%byssal threads."
+"2013-09-16_YB-Gq8",2013-09-16,2013-09-16,"YB","G","8","Lim","Limpets","Type 12",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts likely low due to algae film and glare"
+"2013-09-16_YB-Gq3",2013-09-16,2013-09-16,"YB","G","3","Ls","Littorina_sitkana","Type 13",105,0.0875,1200,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2013-09-16_YB-Gq5",2013-09-16,2013-09-16,"YB","G","5","Ls","Littorina_sitkana","Type 13",273,0.0875,3120,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare, byssal threads, and sand coverage. ~40%sand cover, ~30%byssal threads."
+"2013-09-16_YB-Gq8",2013-09-16,2013-09-16,"YB","G","8","Ls","Littorina_sitkana","Type 13",42,0.0875,480,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts likely low due to algae film and glare"
+"2013-09-16_YB-Gq3",2013-09-16,2013-09-16,"YB","G","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2013-09-16_YB-Gq5",2013-09-16,2013-09-16,"YB","G","5","Mc","Mytilus_californianus","Type 17",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare, byssal threads, and sand coverage. ~40%sand cover, ~30%byssal threads."
+"2013-09-16_YB-Gq8",2013-09-16,2013-09-16,"YB","G","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts likely low due to algae film and glare"
+"2013-09-16_YB-Gq3",2013-09-16,2013-09-16,"YB","G","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2013-09-16_YB-Gq5",2013-09-16,2013-09-16,"YB","G","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare, byssal threads, and sand coverage. ~40%sand cover, ~30%byssal threads."
+"2013-09-16_YB-Gq8",2013-09-16,2013-09-16,"YB","G","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts likely low due to algae film and glare"
+"2013-09-16_YB-Gq3",2013-09-16,2013-09-16,"YB","G","3","Myt","Mytilus_spp","Type 7",146,0.0875,1668.57142857143,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2013-09-16_YB-Gq5",2013-09-16,2013-09-16,"YB","G","5","Myt","Mytilus_spp","Type 7",803,0.0875,9177.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare, byssal threads, and sand coverage. ~40%sand cover, ~30%byssal threads."
+"2013-09-16_YB-Gq8",2013-09-16,2013-09-16,"YB","G","8","Myt","Mytilus_spp","Type 7",375,0.0875,4285.71428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts likely low due to algae film and glare"
+"2013-09-16_YB-Gq3",2013-09-16,2013-09-16,"YB","G","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2013-09-16_YB-Gq5",2013-09-16,2013-09-16,"YB","G","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare, byssal threads, and sand coverage. ~40%sand cover, ~30%byssal threads."
+"2013-09-16_YB-Gq8",2013-09-16,2013-09-16,"YB","G","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts likely low due to algae film and glare"
+"2013-09-16_YB-Gq3",2013-09-16,2013-09-16,"YB","G","3","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2013-09-16_YB-Gq5",2013-09-16,2013-09-16,"YB","G","5","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare, byssal threads, and sand coverage. ~40%sand cover, ~30%byssal threads."
+"2013-09-16_YB-Gq8",2013-09-16,2013-09-16,"YB","G","8","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts likely low due to algae film and glare"
+"2013-09-16_YB-Gq3",2013-09-16,2013-09-16,"YB","G","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2013-09-16_YB-Gq5",2013-09-16,2013-09-16,"YB","G","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare, byssal threads, and sand coverage. ~40%sand cover, ~30%byssal threads."
+"2013-09-16_YB-Gq8",2013-09-16,2013-09-16,"YB","G","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts likely low due to algae film and glare"
+"2013-09-16_YB-Gq3",2013-09-16,2013-09-16,"YB","G","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2013-09-16_YB-Gq5",2013-09-16,2013-09-16,"YB","G","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare, byssal threads, and sand coverage. ~40%sand cover, ~30%byssal threads."
+"2013-09-16_YB-Gq8",2013-09-16,2013-09-16,"YB","G","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts likely low due to algae film and glare"
+"2013-09-16_YB-Gq3",2013-09-16,2013-09-16,"YB","G","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2013-09-16_YB-Gq5",2013-09-16,2013-09-16,"YB","G","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare, byssal threads, and sand coverage. ~40%sand cover, ~30%byssal threads."
+"2013-09-16_YB-Gq8",2013-09-16,2013-09-16,"YB","G","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts likely low due to algae film and glare"
+"2013-09-16_YB-Gq3",2013-09-16,2013-09-16,"YB","G","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2013-09-16_YB-Gq5",2013-09-16,2013-09-16,"YB","G","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare, byssal threads, and sand coverage. ~40%sand cover, ~30%byssal threads."
+"2013-09-16_YB-Gq8",2013-09-16,2013-09-16,"YB","G","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts likely low due to algae film and glare"
+"2013-09-16_YB-Gq3",2013-09-16,2013-09-16,"YB","G","3","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2013-09-16_YB-Gq5",2013-09-16,2013-09-16,"YB","G","5","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare, byssal threads, and sand coverage. ~40%sand cover, ~30%byssal threads."
+"2013-09-16_YB-Gq8",2013-09-16,2013-09-16,"YB","G","8","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts likely low due to algae film and glare"
+"2013-09-16_YB-Gq3",2013-09-16,2013-09-16,"YB","G","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2013-09-16_YB-Gq5",2013-09-16,2013-09-16,"YB","G","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare, byssal threads, and sand coverage. ~40%sand cover, ~30%byssal threads."
+"2013-09-16_YB-Gq8",2013-09-16,2013-09-16,"YB","G","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts likely low due to algae film and glare"
+"2013-09-16_YB-Gq3",2013-09-16,2013-09-16,"YB","G","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2013-09-16_YB-Gq5",2013-09-16,2013-09-16,"YB","G","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare, byssal threads, and sand coverage. ~40%sand cover, ~30%byssal threads."
+"2013-09-16_YB-Gq8",2013-09-16,2013-09-16,"YB","G","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts likely low due to algae film and glare"
+"2013-09-16_YB-Gq3",2013-09-16,2013-09-16,"YB","G","3","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2013-09-16_YB-Gq5",2013-09-16,2013-09-16,"YB","G","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare, byssal threads, and sand coverage. ~40%sand cover, ~30%byssal threads."
+"2013-09-16_YB-Gq8",2013-09-16,2013-09-16,"YB","G","8","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts likely low due to algae film and glare"
+"2013-09-16_YB-Gq3",2013-09-16,2013-09-16,"YB","G","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2013-09-16_YB-Gq5",2013-09-16,2013-09-16,"YB","G","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare, byssal threads, and sand coverage. ~40%sand cover, ~30%byssal threads."
+"2013-09-16_YB-Gq8",2013-09-16,2013-09-16,"YB","G","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts likely low due to algae film and glare"
+"2013-09-16_YB-Gq3",2013-09-16,2013-09-16,"YB","G","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2013-09-16_YB-Gq5",2013-09-16,2013-09-16,"YB","G","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare, byssal threads, and sand coverage. ~40%sand cover, ~30%byssal threads."
+"2013-09-16_YB-Gq8",2013-09-16,2013-09-16,"YB","G","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts likely low due to algae film and glare"
+"2013-09-16_YB-Gq3",2013-09-16,2013-09-16,"YB","G","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2013-09-16_YB-Gq5",2013-09-16,2013-09-16,"YB","G","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare, byssal threads, and sand coverage. ~40%sand cover, ~30%byssal threads."
+"2013-09-16_YB-Gq8",2013-09-16,2013-09-16,"YB","G","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts likely low due to algae film and glare"
+"2013-10-07_YB-Aq6",2013-10-07,2013-10-07,"YB","A","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2013-10-07_YB-Aq7",2013-10-07,2013-10-07,"YB","A","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Algae is a thin film."
+"2013-10-07_YB-Aq9",2013-10-07,2013-10-07,"YB","A","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-10-07_YB-Aq6",2013-10-07,2013-10-07,"YB","A","6","Ae","Anemones","Type 14",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2013-10-07_YB-Aq7",2013-10-07,2013-10-07,"YB","A","7","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Algae is a thin film."
+"2013-10-07_YB-Aq9",2013-10-07,2013-10-07,"YB","A","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-10-07_YB-Aq6",2013-10-07,2013-10-07,"YB","A","6","Bg","Balanus_glandula","Type 1",1266,0.015625,81024,"c","Celeste Moen","Finished","Full","Cropped","0%",""
+"2013-10-07_YB-Aq7",2013-10-07,2013-10-07,"YB","A","7","Bg","Balanus_glandula","Type 1",1051,0.015625,67264,"c","Beatriz Vaca","Finished","Full","Cropped","50%","Algae is a thin film."
+"2013-10-07_YB-Aq9",2013-10-07,2013-10-07,"YB","A","9","Bg","Balanus_glandula","Type 1",835,0.015625,53440,"c","Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-10-07_YB-Aq6",2013-10-07,2013-10-07,"YB","A","6","BgD","Balanus_glandula_(dead)","Type 2",1,0.015625,64,"c","Celeste Moen","Finished","Full","Cropped","0%",""
+"2013-10-07_YB-Aq7",2013-10-07,2013-10-07,"YB","A","7","BgD","Balanus_glandula_(dead)","Type 2",2,0.015625,128,"c","Beatriz Vaca","Finished","Full","Cropped","50%","Algae is a thin film."
+"2013-10-07_YB-Aq9",2013-10-07,2013-10-07,"YB","A","9","BgD","Balanus_glandula_(dead)","Type 2",1,0.015625,64,"c","Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-10-07_YB-Aq6",2013-10-07,2013-10-07,"YB","A","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2013-10-07_YB-Aq7",2013-10-07,2013-10-07,"YB","A","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Algae is a thin film."
+"2013-10-07_YB-Aq9",2013-10-07,2013-10-07,"YB","A","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-10-07_YB-Aq6",2013-10-07,2013-10-07,"YB","A","6","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Celeste Moen","Finished","Full","Cropped","0%",""
+"2013-10-07_YB-Aq7",2013-10-07,2013-10-07,"YB","A","7","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","50%","Algae is a thin film."
+"2013-10-07_YB-Aq9",2013-10-07,2013-10-07,"YB","A","9","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-10-07_YB-Aq6",2013-10-07,2013-10-07,"YB","A","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Celeste Moen","Finished","Full","Cropped","0%",""
+"2013-10-07_YB-Aq7",2013-10-07,2013-10-07,"YB","A","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","50%","Algae is a thin film."
+"2013-10-07_YB-Aq9",2013-10-07,2013-10-07,"YB","A","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-10-07_YB-Aq6",2013-10-07,2013-10-07,"YB","A","6","Emp","Emplectonema worm","Type 23",2,0.0875,22.8571428571429,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2013-10-07_YB-Aq7",2013-10-07,2013-10-07,"YB","A","7","Emp","Emplectonema worm","Type 23",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Algae is a thin film."
+"2013-10-07_YB-Aq9",2013-10-07,2013-10-07,"YB","A","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-10-07_YB-Aq6",2013-10-07,2013-10-07,"YB","A","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2013-10-07_YB-Aq7",2013-10-07,2013-10-07,"YB","A","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Algae is a thin film."
+"2013-10-07_YB-Aq9",2013-10-07,2013-10-07,"YB","A","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-10-07_YB-Aq6",2013-10-07,2013-10-07,"YB","A","6","Lim","Limpets","Type 12",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2013-10-07_YB-Aq7",2013-10-07,2013-10-07,"YB","A","7","Lim","Limpets","Type 12",24,0.0875,274.285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Algae is a thin film."
+"2013-10-07_YB-Aq9",2013-10-07,2013-10-07,"YB","A","9","Lim","Limpets","Type 12",5,0.0875,57.1428571428571,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-10-07_YB-Aq6",2013-10-07,2013-10-07,"YB","A","6","Ls","Littorina_sitkana","Type 13",2,0.0875,22.8571428571429,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2013-10-07_YB-Aq7",2013-10-07,2013-10-07,"YB","A","7","Ls","Littorina_sitkana","Type 13",218,0.0875,2491.42857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Algae is a thin film."
+"2013-10-07_YB-Aq9",2013-10-07,2013-10-07,"YB","A","9","Ls","Littorina_sitkana","Type 13",27,0.0875,308.571428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-10-07_YB-Aq6",2013-10-07,2013-10-07,"YB","A","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2013-10-07_YB-Aq7",2013-10-07,2013-10-07,"YB","A","7","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Algae is a thin film."
+"2013-10-07_YB-Aq9",2013-10-07,2013-10-07,"YB","A","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-10-07_YB-Aq6",2013-10-07,2013-10-07,"YB","A","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2013-10-07_YB-Aq7",2013-10-07,2013-10-07,"YB","A","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Algae is a thin film."
+"2013-10-07_YB-Aq9",2013-10-07,2013-10-07,"YB","A","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-10-07_YB-Aq6",2013-10-07,2013-10-07,"YB","A","6","Myt","Mytilus_spp","Type 7",1284,0.0875,14674.2857142857,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2013-10-07_YB-Aq7",2013-10-07,2013-10-07,"YB","A","7","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Algae is a thin film."
+"2013-10-07_YB-Aq9",2013-10-07,2013-10-07,"YB","A","9","Myt","Mytilus_spp","Type 7",1873,0.0875,21405.7142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-10-07_YB-Aq6",2013-10-07,2013-10-07,"YB","A","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2013-10-07_YB-Aq7",2013-10-07,2013-10-07,"YB","A","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Algae is a thin film."
+"2013-10-07_YB-Aq9",2013-10-07,2013-10-07,"YB","A","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-10-07_YB-Aq6",2013-10-07,2013-10-07,"YB","A","6","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2013-10-07_YB-Aq7",2013-10-07,2013-10-07,"YB","A","7","Mt","Mytilus_trossulus","Type 15",790,0.0875,9028.57142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Algae is a thin film."
+"2013-10-07_YB-Aq9",2013-10-07,2013-10-07,"YB","A","9","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-10-07_YB-Aq6",2013-10-07,2013-10-07,"YB","A","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2013-10-07_YB-Aq7",2013-10-07,2013-10-07,"YB","A","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Algae is a thin film."
+"2013-10-07_YB-Aq9",2013-10-07,2013-10-07,"YB","A","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-10-07_YB-Aq6",2013-10-07,2013-10-07,"YB","A","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2013-10-07_YB-Aq7",2013-10-07,2013-10-07,"YB","A","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Algae is a thin film."
+"2013-10-07_YB-Aq9",2013-10-07,2013-10-07,"YB","A","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-10-07_YB-Aq6",2013-10-07,2013-10-07,"YB","A","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2013-10-07_YB-Aq7",2013-10-07,2013-10-07,"YB","A","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Algae is a thin film."
+"2013-10-07_YB-Aq9",2013-10-07,2013-10-07,"YB","A","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-10-07_YB-Aq6",2013-10-07,2013-10-07,"YB","A","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2013-10-07_YB-Aq7",2013-10-07,2013-10-07,"YB","A","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Algae is a thin film."
+"2013-10-07_YB-Aq9",2013-10-07,2013-10-07,"YB","A","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-10-07_YB-Aq6",2013-10-07,2013-10-07,"YB","A","6","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2013-10-07_YB-Aq7",2013-10-07,2013-10-07,"YB","A","7","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Algae is a thin film."
+"2013-10-07_YB-Aq9",2013-10-07,2013-10-07,"YB","A","9","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-10-07_YB-Aq6",2013-10-07,2013-10-07,"YB","A","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2013-10-07_YB-Aq7",2013-10-07,2013-10-07,"YB","A","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Algae is a thin film."
+"2013-10-07_YB-Aq9",2013-10-07,2013-10-07,"YB","A","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-10-07_YB-Aq6",2013-10-07,2013-10-07,"YB","A","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2013-10-07_YB-Aq7",2013-10-07,2013-10-07,"YB","A","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Algae is a thin film."
+"2013-10-07_YB-Aq9",2013-10-07,2013-10-07,"YB","A","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-10-07_YB-Aq6",2013-10-07,2013-10-07,"YB","A","6","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2013-10-07_YB-Aq7",2013-10-07,2013-10-07,"YB","A","7","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Algae is a thin film."
+"2013-10-07_YB-Aq9",2013-10-07,2013-10-07,"YB","A","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-10-07_YB-Aq6",2013-10-07,2013-10-07,"YB","A","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2013-10-07_YB-Aq7",2013-10-07,2013-10-07,"YB","A","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Algae is a thin film."
+"2013-10-07_YB-Aq9",2013-10-07,2013-10-07,"YB","A","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-10-07_YB-Aq6",2013-10-07,2013-10-07,"YB","A","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2013-10-07_YB-Aq7",2013-10-07,2013-10-07,"YB","A","7","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Algae is a thin film."
+"2013-10-07_YB-Aq9",2013-10-07,2013-10-07,"YB","A","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-10-07_YB-Aq6",2013-10-07,2013-10-07,"YB","A","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2013-10-07_YB-Aq7",2013-10-07,2013-10-07,"YB","A","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Algae is a thin film."
+"2013-10-07_YB-Aq9",2013-10-07,2013-10-07,"YB","A","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-10-07_YB-ABq1",2013-10-07,2013-10-07,"YB","AB","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2013-10-07_YB-ABq2",2013-10-07,2013-10-07,"YB","AB","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","algae is a thin, mucus like layer"
+"2013-10-07_YB-ABq4",2013-10-07,2013-10-07,"YB","AB","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-10-07_YB-ABq6",2013-10-07,2013-10-07,"YB","AB","6","Alg","Algae","Type 19",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel density may be higher but glare made it difficult to count"
+"2013-10-07_YB-ABq9",2013-10-07,2013-10-07,"YB","AB","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel and barnacle counts likely low because of glare and high water. Whelk eggs present"
+"2013-10-07_YB-ABq1",2013-10-07,2013-10-07,"YB","AB","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2013-10-07_YB-ABq2",2013-10-07,2013-10-07,"YB","AB","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","algae is a thin, mucus like layer"
+"2013-10-07_YB-ABq4",2013-10-07,2013-10-07,"YB","AB","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-10-07_YB-ABq6",2013-10-07,2013-10-07,"YB","AB","6","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel density may be higher but glare made it difficult to count"
+"2013-10-07_YB-ABq9",2013-10-07,2013-10-07,"YB","AB","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel and barnacle counts likely low because of glare and high water. Whelk eggs present"
+"2013-10-07_YB-ABq1",2013-10-07,2013-10-07,"YB","AB","1","Bg","Balanus_glandula","Type 1",1564,0.015625,100096,"c","Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2013-10-07_YB-ABq2",2013-10-07,2013-10-07,"YB","AB","2","Bg","Balanus_glandula","Type 1",848,0.015625,54272,"c","Beatriz Vaca","Finished","Full","Cropped","25%","algae is a thin, mucus like layer"
+"2013-10-07_YB-ABq4",2013-10-07,2013-10-07,"YB","AB","4","Bg","Balanus_glandula","Type 1",1176,0.015625,75264,"c","Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-10-07_YB-ABq6",2013-10-07,2013-10-07,"YB","AB","6","Bg","Balanus_glandula","Type 1",1204,0.015625,77056,"c","Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel density may be higher but glare made it difficult to count"
+"2013-10-07_YB-ABq9",2013-10-07,2013-10-07,"YB","AB","9","Bg","Balanus_glandula","Type 1",907,0.015625,58048,"c","Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel and barnacle counts likely low because of glare and high water. Whelk eggs present"
+"2013-10-07_YB-ABq1",2013-10-07,2013-10-07,"YB","AB","1","BgD","Balanus_glandula_(dead)","Type 2",372,0.015625,23808,"c","Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2013-10-07_YB-ABq2",2013-10-07,2013-10-07,"YB","AB","2","BgD","Balanus_glandula_(dead)","Type 2",4,0.015625,256,"c","Beatriz Vaca","Finished","Full","Cropped","25%","algae is a thin, mucus like layer"
+"2013-10-07_YB-ABq4",2013-10-07,2013-10-07,"YB","AB","4","BgD","Balanus_glandula_(dead)","Type 2",59,0.015625,3776,"c","Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-10-07_YB-ABq6",2013-10-07,2013-10-07,"YB","AB","6","BgD","Balanus_glandula_(dead)","Type 2",61,0.015625,3904,"c","Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel density may be higher but glare made it difficult to count"
+"2013-10-07_YB-ABq9",2013-10-07,2013-10-07,"YB","AB","9","BgD","Balanus_glandula_(dead)","Type 2",15,0.015625,960,"c","Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel and barnacle counts likely low because of glare and high water. Whelk eggs present"
+"2013-10-07_YB-ABq1",2013-10-07,2013-10-07,"YB","AB","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2013-10-07_YB-ABq2",2013-10-07,2013-10-07,"YB","AB","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","algae is a thin, mucus like layer"
+"2013-10-07_YB-ABq4",2013-10-07,2013-10-07,"YB","AB","4","Chi","Chiton_spp","Type 22",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-10-07_YB-ABq6",2013-10-07,2013-10-07,"YB","AB","6","Chi","Chiton_spp","Type 22",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel density may be higher but glare made it difficult to count"
+"2013-10-07_YB-ABq9",2013-10-07,2013-10-07,"YB","AB","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel and barnacle counts likely low because of glare and high water. Whelk eggs present"
+"2013-10-07_YB-ABq1",2013-10-07,2013-10-07,"YB","AB","1","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2013-10-07_YB-ABq2",2013-10-07,2013-10-07,"YB","AB","2","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","25%","algae is a thin, mucus like layer"
+"2013-10-07_YB-ABq4",2013-10-07,2013-10-07,"YB","AB","4","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-10-07_YB-ABq6",2013-10-07,2013-10-07,"YB","AB","6","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel density may be higher but glare made it difficult to count"
+"2013-10-07_YB-ABq9",2013-10-07,2013-10-07,"YB","AB","9","Cth","Chthamalus_dalli","Type 3",6,0.015625,384,"c","Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel and barnacle counts likely low because of glare and high water. Whelk eggs present"
+"2013-10-07_YB-ABq1",2013-10-07,2013-10-07,"YB","AB","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2013-10-07_YB-ABq2",2013-10-07,2013-10-07,"YB","AB","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","25%","algae is a thin, mucus like layer"
+"2013-10-07_YB-ABq4",2013-10-07,2013-10-07,"YB","AB","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-10-07_YB-ABq6",2013-10-07,2013-10-07,"YB","AB","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel density may be higher but glare made it difficult to count"
+"2013-10-07_YB-ABq9",2013-10-07,2013-10-07,"YB","AB","9","CthD","Chthamalus_dalli (dead)","Type 4",1,0.015625,64,"c","Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel and barnacle counts likely low because of glare and high water. Whelk eggs present"
+"2013-10-07_YB-ABq1",2013-10-07,2013-10-07,"YB","AB","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2013-10-07_YB-ABq2",2013-10-07,2013-10-07,"YB","AB","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","algae is a thin, mucus like layer"
+"2013-10-07_YB-ABq4",2013-10-07,2013-10-07,"YB","AB","4","Emp","Emplectonema worm","Type 23",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-10-07_YB-ABq6",2013-10-07,2013-10-07,"YB","AB","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel density may be higher but glare made it difficult to count"
+"2013-10-07_YB-ABq9",2013-10-07,2013-10-07,"YB","AB","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel and barnacle counts likely low because of glare and high water. Whelk eggs present"
+"2013-10-07_YB-ABq1",2013-10-07,2013-10-07,"YB","AB","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2013-10-07_YB-ABq2",2013-10-07,2013-10-07,"YB","AB","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","algae is a thin, mucus like layer"
+"2013-10-07_YB-ABq4",2013-10-07,2013-10-07,"YB","AB","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-10-07_YB-ABq6",2013-10-07,2013-10-07,"YB","AB","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel density may be higher but glare made it difficult to count"
+"2013-10-07_YB-ABq9",2013-10-07,2013-10-07,"YB","AB","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel and barnacle counts likely low because of glare and high water. Whelk eggs present"
+"2013-10-07_YB-ABq1",2013-10-07,2013-10-07,"YB","AB","1","Lim","Limpets","Type 12",26,0.0875,297.142857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2013-10-07_YB-ABq2",2013-10-07,2013-10-07,"YB","AB","2","Lim","Limpets","Type 12",11,0.0875,125.714285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","algae is a thin, mucus like layer"
+"2013-10-07_YB-ABq4",2013-10-07,2013-10-07,"YB","AB","4","Lim","Limpets","Type 12",9,0.0875,102.857142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-10-07_YB-ABq6",2013-10-07,2013-10-07,"YB","AB","6","Lim","Limpets","Type 12",7,0.0875,80,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel density may be higher but glare made it difficult to count"
+"2013-10-07_YB-ABq9",2013-10-07,2013-10-07,"YB","AB","9","Lim","Limpets","Type 12",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel and barnacle counts likely low because of glare and high water. Whelk eggs present"
+"2013-10-07_YB-ABq1",2013-10-07,2013-10-07,"YB","AB","1","Ls","Littorina_sitkana","Type 13",57,0.0875,651.428571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2013-10-07_YB-ABq2",2013-10-07,2013-10-07,"YB","AB","2","Ls","Littorina_sitkana","Type 13",31,0.0875,354.285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","algae is a thin, mucus like layer"
+"2013-10-07_YB-ABq4",2013-10-07,2013-10-07,"YB","AB","4","Ls","Littorina_sitkana","Type 13",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-10-07_YB-ABq6",2013-10-07,2013-10-07,"YB","AB","6","Ls","Littorina_sitkana","Type 13",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel density may be higher but glare made it difficult to count"
+"2013-10-07_YB-ABq9",2013-10-07,2013-10-07,"YB","AB","9","Ls","Littorina_sitkana","Type 13",10,0.0875,114.285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel and barnacle counts likely low because of glare and high water. Whelk eggs present"
+"2013-10-07_YB-ABq1",2013-10-07,2013-10-07,"YB","AB","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2013-10-07_YB-ABq2",2013-10-07,2013-10-07,"YB","AB","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","algae is a thin, mucus like layer"
+"2013-10-07_YB-ABq4",2013-10-07,2013-10-07,"YB","AB","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-10-07_YB-ABq6",2013-10-07,2013-10-07,"YB","AB","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel density may be higher but glare made it difficult to count"
+"2013-10-07_YB-ABq9",2013-10-07,2013-10-07,"YB","AB","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel and barnacle counts likely low because of glare and high water. Whelk eggs present"
+"2013-10-07_YB-ABq1",2013-10-07,2013-10-07,"YB","AB","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2013-10-07_YB-ABq2",2013-10-07,2013-10-07,"YB","AB","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","algae is a thin, mucus like layer"
+"2013-10-07_YB-ABq4",2013-10-07,2013-10-07,"YB","AB","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-10-07_YB-ABq6",2013-10-07,2013-10-07,"YB","AB","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel density may be higher but glare made it difficult to count"
+"2013-10-07_YB-ABq9",2013-10-07,2013-10-07,"YB","AB","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel and barnacle counts likely low because of glare and high water. Whelk eggs present"
+"2013-10-07_YB-ABq1",2013-10-07,2013-10-07,"YB","AB","1","Myt","Mytilus_spp","Type 7",161,0.0875,1840,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2013-10-07_YB-ABq2",2013-10-07,2013-10-07,"YB","AB","2","Myt","Mytilus_spp","Type 7",841,0.0875,9611.42857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","algae is a thin, mucus like layer"
+"2013-10-07_YB-ABq4",2013-10-07,2013-10-07,"YB","AB","4","Myt","Mytilus_spp","Type 7",344,0.0875,3931.42857142857,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-10-07_YB-ABq6",2013-10-07,2013-10-07,"YB","AB","6","Myt","Mytilus_spp","Type 7",650,0.0875,7428.57142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel density may be higher but glare made it difficult to count"
+"2013-10-07_YB-ABq9",2013-10-07,2013-10-07,"YB","AB","9","Myt","Mytilus_spp","Type 7",2726,0.0875,31154.2857142857,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel and barnacle counts likely low because of glare and high water. Whelk eggs present"
+"2013-10-07_YB-ABq1",2013-10-07,2013-10-07,"YB","AB","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2013-10-07_YB-ABq2",2013-10-07,2013-10-07,"YB","AB","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","algae is a thin, mucus like layer"
+"2013-10-07_YB-ABq4",2013-10-07,2013-10-07,"YB","AB","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-10-07_YB-ABq6",2013-10-07,2013-10-07,"YB","AB","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel density may be higher but glare made it difficult to count"
+"2013-10-07_YB-ABq9",2013-10-07,2013-10-07,"YB","AB","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel and barnacle counts likely low because of glare and high water. Whelk eggs present"
+"2013-10-07_YB-ABq1",2013-10-07,2013-10-07,"YB","AB","1","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2013-10-07_YB-ABq2",2013-10-07,2013-10-07,"YB","AB","2","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","algae is a thin, mucus like layer"
+"2013-10-07_YB-ABq4",2013-10-07,2013-10-07,"YB","AB","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-10-07_YB-ABq6",2013-10-07,2013-10-07,"YB","AB","6","Mt","Mytilus_trossulus","Type 15",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel density may be higher but glare made it difficult to count"
+"2013-10-07_YB-ABq9",2013-10-07,2013-10-07,"YB","AB","9","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel and barnacle counts likely low because of glare and high water. Whelk eggs present"
+"2013-10-07_YB-ABq1",2013-10-07,2013-10-07,"YB","AB","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2013-10-07_YB-ABq2",2013-10-07,2013-10-07,"YB","AB","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","algae is a thin, mucus like layer"
+"2013-10-07_YB-ABq4",2013-10-07,2013-10-07,"YB","AB","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-10-07_YB-ABq6",2013-10-07,2013-10-07,"YB","AB","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel density may be higher but glare made it difficult to count"
+"2013-10-07_YB-ABq9",2013-10-07,2013-10-07,"YB","AB","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel and barnacle counts likely low because of glare and high water. Whelk eggs present"
+"2013-10-07_YB-ABq1",2013-10-07,2013-10-07,"YB","AB","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2013-10-07_YB-ABq2",2013-10-07,2013-10-07,"YB","AB","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","algae is a thin, mucus like layer"
+"2013-10-07_YB-ABq4",2013-10-07,2013-10-07,"YB","AB","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-10-07_YB-ABq6",2013-10-07,2013-10-07,"YB","AB","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel density may be higher but glare made it difficult to count"
+"2013-10-07_YB-ABq9",2013-10-07,2013-10-07,"YB","AB","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel and barnacle counts likely low because of glare and high water. Whelk eggs present"
+"2013-10-07_YB-ABq1",2013-10-07,2013-10-07,"YB","AB","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2013-10-07_YB-ABq2",2013-10-07,2013-10-07,"YB","AB","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","algae is a thin, mucus like layer"
+"2013-10-07_YB-ABq4",2013-10-07,2013-10-07,"YB","AB","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-10-07_YB-ABq6",2013-10-07,2013-10-07,"YB","AB","6","Nc","Nucella_canaliculata","Type 10",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel density may be higher but glare made it difficult to count"
+"2013-10-07_YB-ABq9",2013-10-07,2013-10-07,"YB","AB","9","Nc","Nucella_canaliculata","Type 10",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel and barnacle counts likely low because of glare and high water. Whelk eggs present"
+"2013-10-07_YB-ABq1",2013-10-07,2013-10-07,"YB","AB","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2013-10-07_YB-ABq2",2013-10-07,2013-10-07,"YB","AB","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","algae is a thin, mucus like layer"
+"2013-10-07_YB-ABq4",2013-10-07,2013-10-07,"YB","AB","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-10-07_YB-ABq6",2013-10-07,2013-10-07,"YB","AB","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel density may be higher but glare made it difficult to count"
+"2013-10-07_YB-ABq9",2013-10-07,2013-10-07,"YB","AB","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel and barnacle counts likely low because of glare and high water. Whelk eggs present"
+"2013-10-07_YB-ABq1",2013-10-07,2013-10-07,"YB","AB","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2013-10-07_YB-ABq2",2013-10-07,2013-10-07,"YB","AB","2","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","algae is a thin, mucus like layer"
+"2013-10-07_YB-ABq4",2013-10-07,2013-10-07,"YB","AB","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-10-07_YB-ABq6",2013-10-07,2013-10-07,"YB","AB","6","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel density may be higher but glare made it difficult to count"
+"2013-10-07_YB-ABq9",2013-10-07,2013-10-07,"YB","AB","9","No","Nucella_ostrina","Type 9",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel and barnacle counts likely low because of glare and high water. Whelk eggs present"
+"2013-10-07_YB-ABq1",2013-10-07,2013-10-07,"YB","AB","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2013-10-07_YB-ABq2",2013-10-07,2013-10-07,"YB","AB","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","algae is a thin, mucus like layer"
+"2013-10-07_YB-ABq4",2013-10-07,2013-10-07,"YB","AB","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-10-07_YB-ABq6",2013-10-07,2013-10-07,"YB","AB","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel density may be higher but glare made it difficult to count"
+"2013-10-07_YB-ABq9",2013-10-07,2013-10-07,"YB","AB","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel and barnacle counts likely low because of glare and high water. Whelk eggs present"
+"2013-10-07_YB-ABq1",2013-10-07,2013-10-07,"YB","AB","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2013-10-07_YB-ABq2",2013-10-07,2013-10-07,"YB","AB","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","algae is a thin, mucus like layer"
+"2013-10-07_YB-ABq4",2013-10-07,2013-10-07,"YB","AB","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-10-07_YB-ABq6",2013-10-07,2013-10-07,"YB","AB","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel density may be higher but glare made it difficult to count"
+"2013-10-07_YB-ABq9",2013-10-07,2013-10-07,"YB","AB","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel and barnacle counts likely low because of glare and high water. Whelk eggs present"
+"2013-10-07_YB-ABq1",2013-10-07,2013-10-07,"YB","AB","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2013-10-07_YB-ABq2",2013-10-07,2013-10-07,"YB","AB","2","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","algae is a thin, mucus like layer"
+"2013-10-07_YB-ABq4",2013-10-07,2013-10-07,"YB","AB","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-10-07_YB-ABq6",2013-10-07,2013-10-07,"YB","AB","6","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel density may be higher but glare made it difficult to count"
+"2013-10-07_YB-ABq9",2013-10-07,2013-10-07,"YB","AB","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel and barnacle counts likely low because of glare and high water. Whelk eggs present"
+"2013-10-07_YB-ABq1",2013-10-07,2013-10-07,"YB","AB","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2013-10-07_YB-ABq2",2013-10-07,2013-10-07,"YB","AB","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","algae is a thin, mucus like layer"
+"2013-10-07_YB-ABq4",2013-10-07,2013-10-07,"YB","AB","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-10-07_YB-ABq6",2013-10-07,2013-10-07,"YB","AB","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel density may be higher but glare made it difficult to count"
+"2013-10-07_YB-ABq9",2013-10-07,2013-10-07,"YB","AB","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel and barnacle counts likely low because of glare and high water. Whelk eggs present"
+"2013-10-07_YB-ABq1",2013-10-07,2013-10-07,"YB","AB","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2013-10-07_YB-ABq2",2013-10-07,2013-10-07,"YB","AB","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","algae is a thin, mucus like layer"
+"2013-10-07_YB-ABq4",2013-10-07,2013-10-07,"YB","AB","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-10-07_YB-ABq6",2013-10-07,2013-10-07,"YB","AB","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel density may be higher but glare made it difficult to count"
+"2013-10-07_YB-ABq9",2013-10-07,2013-10-07,"YB","AB","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel and barnacle counts likely low because of glare and high water. Whelk eggs present"
+"2013-10-07_YB-ABq1",2013-10-07,2013-10-07,"YB","AB","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2013-10-07_YB-ABq2",2013-10-07,2013-10-07,"YB","AB","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","algae is a thin, mucus like layer"
+"2013-10-07_YB-ABq4",2013-10-07,2013-10-07,"YB","AB","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-10-07_YB-ABq6",2013-10-07,2013-10-07,"YB","AB","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel density may be higher but glare made it difficult to count"
+"2013-10-07_YB-ABq9",2013-10-07,2013-10-07,"YB","AB","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Mussel and barnacle counts likely low because of glare and high water. Whelk eggs present"
+"2013-10-07_YB-ACq1",2013-10-07,2013-10-07,"YB","AC","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult;"
+"2013-10-07_YB-ACq4",2013-10-07,2013-10-07,"YB","AC","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-10-07_YB-ACq7",2013-10-07,2013-10-07,"YB","AC","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to thin, filmy algae cover"
+"2013-10-07_YB-ACq8",2013-10-07,2013-10-07,"YB","AC","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Barnacle counts likely low due to thin, filmy algae cover."
+"2013-10-07_YB-ACq1",2013-10-07,2013-10-07,"YB","AC","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult;"
+"2013-10-07_YB-ACq4",2013-10-07,2013-10-07,"YB","AC","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-10-07_YB-ACq7",2013-10-07,2013-10-07,"YB","AC","7","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to thin, filmy algae cover"
+"2013-10-07_YB-ACq8",2013-10-07,2013-10-07,"YB","AC","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Barnacle counts likely low due to thin, filmy algae cover."
+"2013-10-07_YB-ACq1",2013-10-07,2013-10-07,"YB","AC","1","Bg","Balanus_glandula","Type 1",1344,0.015625,86016,"c","Beatriz Vaca","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult;"
+"2013-10-07_YB-ACq4",2013-10-07,2013-10-07,"YB","AC","4","Bg","Balanus_glandula","Type 1",1124,0.015625,71936,"c","Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-10-07_YB-ACq7",2013-10-07,2013-10-07,"YB","AC","7","Bg","Balanus_glandula","Type 1",1621,0.015625,103744,"c","Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to thin, filmy algae cover"
+"2013-10-07_YB-ACq8",2013-10-07,2013-10-07,"YB","AC","8","Bg","Balanus_glandula","Type 1",1272,0.015625,81408,"c","Beatriz Vaca","Finished","Full","Cropped","40%","Barnacle counts likely low due to thin, filmy algae cover."
+"2013-10-07_YB-ACq1",2013-10-07,2013-10-07,"YB","AC","1","BgD","Balanus_glandula_(dead)","Type 2",243,0.015625,15552,"c","Beatriz Vaca","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult;"
+"2013-10-07_YB-ACq4",2013-10-07,2013-10-07,"YB","AC","4","BgD","Balanus_glandula_(dead)","Type 2",2,0.015625,128,"c","Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-10-07_YB-ACq7",2013-10-07,2013-10-07,"YB","AC","7","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to thin, filmy algae cover"
+"2013-10-07_YB-ACq8",2013-10-07,2013-10-07,"YB","AC","8","BgD","Balanus_glandula_(dead)","Type 2",9,0.015625,576,"c","Beatriz Vaca","Finished","Full","Cropped","40%","Barnacle counts likely low due to thin, filmy algae cover."
+"2013-10-07_YB-ACq1",2013-10-07,2013-10-07,"YB","AC","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult;"
+"2013-10-07_YB-ACq4",2013-10-07,2013-10-07,"YB","AC","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-10-07_YB-ACq7",2013-10-07,2013-10-07,"YB","AC","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to thin, filmy algae cover"
+"2013-10-07_YB-ACq8",2013-10-07,2013-10-07,"YB","AC","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Barnacle counts likely low due to thin, filmy algae cover."
+"2013-10-07_YB-ACq1",2013-10-07,2013-10-07,"YB","AC","1","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult;"
+"2013-10-07_YB-ACq4",2013-10-07,2013-10-07,"YB","AC","4","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-10-07_YB-ACq7",2013-10-07,2013-10-07,"YB","AC","7","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to thin, filmy algae cover"
+"2013-10-07_YB-ACq8",2013-10-07,2013-10-07,"YB","AC","8","Cth","Chthamalus_dalli","Type 3",8,0.015625,512,"c","Beatriz Vaca","Finished","Full","Cropped","40%","Barnacle counts likely low due to thin, filmy algae cover."
+"2013-10-07_YB-ACq1",2013-10-07,2013-10-07,"YB","AC","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult;"
+"2013-10-07_YB-ACq4",2013-10-07,2013-10-07,"YB","AC","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-10-07_YB-ACq7",2013-10-07,2013-10-07,"YB","AC","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to thin, filmy algae cover"
+"2013-10-07_YB-ACq8",2013-10-07,2013-10-07,"YB","AC","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","40%","Barnacle counts likely low due to thin, filmy algae cover."
+"2013-10-07_YB-ACq1",2013-10-07,2013-10-07,"YB","AC","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult;"
+"2013-10-07_YB-ACq4",2013-10-07,2013-10-07,"YB","AC","4","Emp","Emplectonema worm","Type 23",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-10-07_YB-ACq7",2013-10-07,2013-10-07,"YB","AC","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to thin, filmy algae cover"
+"2013-10-07_YB-ACq8",2013-10-07,2013-10-07,"YB","AC","8","Emp","Emplectonema worm","Type 23",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Barnacle counts likely low due to thin, filmy algae cover."
+"2013-10-07_YB-ACq1",2013-10-07,2013-10-07,"YB","AC","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult;"
+"2013-10-07_YB-ACq4",2013-10-07,2013-10-07,"YB","AC","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-10-07_YB-ACq7",2013-10-07,2013-10-07,"YB","AC","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to thin, filmy algae cover"
+"2013-10-07_YB-ACq8",2013-10-07,2013-10-07,"YB","AC","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Barnacle counts likely low due to thin, filmy algae cover."
+"2013-10-07_YB-ACq1",2013-10-07,2013-10-07,"YB","AC","1","Lim","Limpets","Type 12",11,0.0875,125.714285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult;"
+"2013-10-07_YB-ACq4",2013-10-07,2013-10-07,"YB","AC","4","Lim","Limpets","Type 12",20,0.0875,228.571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-10-07_YB-ACq7",2013-10-07,2013-10-07,"YB","AC","7","Lim","Limpets","Type 12",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to thin, filmy algae cover"
+"2013-10-07_YB-ACq8",2013-10-07,2013-10-07,"YB","AC","8","Lim","Limpets","Type 12",21,0.0875,240,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Barnacle counts likely low due to thin, filmy algae cover."
+"2013-10-07_YB-ACq1",2013-10-07,2013-10-07,"YB","AC","1","Ls","Littorina_sitkana","Type 13",293,0.0875,3348.57142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult;"
+"2013-10-07_YB-ACq4",2013-10-07,2013-10-07,"YB","AC","4","Ls","Littorina_sitkana","Type 13",119,0.0875,1360,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-10-07_YB-ACq7",2013-10-07,2013-10-07,"YB","AC","7","Ls","Littorina_sitkana","Type 13",251,0.0875,2868.57142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to thin, filmy algae cover"
+"2013-10-07_YB-ACq8",2013-10-07,2013-10-07,"YB","AC","8","Ls","Littorina_sitkana","Type 13",358,0.0875,4091.42857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Barnacle counts likely low due to thin, filmy algae cover."
+"2013-10-07_YB-ACq1",2013-10-07,2013-10-07,"YB","AC","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult;"
+"2013-10-07_YB-ACq4",2013-10-07,2013-10-07,"YB","AC","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-10-07_YB-ACq7",2013-10-07,2013-10-07,"YB","AC","7","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to thin, filmy algae cover"
+"2013-10-07_YB-ACq8",2013-10-07,2013-10-07,"YB","AC","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Barnacle counts likely low due to thin, filmy algae cover."
+"2013-10-07_YB-ACq1",2013-10-07,2013-10-07,"YB","AC","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult;"
+"2013-10-07_YB-ACq4",2013-10-07,2013-10-07,"YB","AC","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-10-07_YB-ACq7",2013-10-07,2013-10-07,"YB","AC","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to thin, filmy algae cover"
+"2013-10-07_YB-ACq8",2013-10-07,2013-10-07,"YB","AC","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Barnacle counts likely low due to thin, filmy algae cover."
+"2013-10-07_YB-ACq1",2013-10-07,2013-10-07,"YB","AC","1","Myt","Mytilus_spp","Type 7",27,0.0875,308.571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult;"
+"2013-10-07_YB-ACq4",2013-10-07,2013-10-07,"YB","AC","4","Myt","Mytilus_spp","Type 7",515,0.0875,5885.71428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-10-07_YB-ACq7",2013-10-07,2013-10-07,"YB","AC","7","Myt","Mytilus_spp","Type 7",144,0.0875,1645.71428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to thin, filmy algae cover"
+"2013-10-07_YB-ACq8",2013-10-07,2013-10-07,"YB","AC","8","Myt","Mytilus_spp","Type 7",62,0.0875,708.571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Barnacle counts likely low due to thin, filmy algae cover."
+"2013-10-07_YB-ACq1",2013-10-07,2013-10-07,"YB","AC","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult;"
+"2013-10-07_YB-ACq4",2013-10-07,2013-10-07,"YB","AC","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-10-07_YB-ACq7",2013-10-07,2013-10-07,"YB","AC","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to thin, filmy algae cover"
+"2013-10-07_YB-ACq8",2013-10-07,2013-10-07,"YB","AC","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Barnacle counts likely low due to thin, filmy algae cover."
+"2013-10-07_YB-ACq1",2013-10-07,2013-10-07,"YB","AC","1","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult;"
+"2013-10-07_YB-ACq4",2013-10-07,2013-10-07,"YB","AC","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-10-07_YB-ACq7",2013-10-07,2013-10-07,"YB","AC","7","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to thin, filmy algae cover"
+"2013-10-07_YB-ACq8",2013-10-07,2013-10-07,"YB","AC","8","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Barnacle counts likely low due to thin, filmy algae cover."
+"2013-10-07_YB-ACq1",2013-10-07,2013-10-07,"YB","AC","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult;"
+"2013-10-07_YB-ACq4",2013-10-07,2013-10-07,"YB","AC","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-10-07_YB-ACq7",2013-10-07,2013-10-07,"YB","AC","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to thin, filmy algae cover"
+"2013-10-07_YB-ACq8",2013-10-07,2013-10-07,"YB","AC","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Barnacle counts likely low due to thin, filmy algae cover."
+"2013-10-07_YB-ACq1",2013-10-07,2013-10-07,"YB","AC","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult;"
+"2013-10-07_YB-ACq4",2013-10-07,2013-10-07,"YB","AC","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-10-07_YB-ACq7",2013-10-07,2013-10-07,"YB","AC","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to thin, filmy algae cover"
+"2013-10-07_YB-ACq8",2013-10-07,2013-10-07,"YB","AC","8","Ner","Nereis_worm","Type 24",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Barnacle counts likely low due to thin, filmy algae cover."
+"2013-10-07_YB-ACq1",2013-10-07,2013-10-07,"YB","AC","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult;"
+"2013-10-07_YB-ACq4",2013-10-07,2013-10-07,"YB","AC","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-10-07_YB-ACq7",2013-10-07,2013-10-07,"YB","AC","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to thin, filmy algae cover"
+"2013-10-07_YB-ACq8",2013-10-07,2013-10-07,"YB","AC","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Barnacle counts likely low due to thin, filmy algae cover."
+"2013-10-07_YB-ACq1",2013-10-07,2013-10-07,"YB","AC","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult;"
+"2013-10-07_YB-ACq4",2013-10-07,2013-10-07,"YB","AC","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-10-07_YB-ACq7",2013-10-07,2013-10-07,"YB","AC","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to thin, filmy algae cover"
+"2013-10-07_YB-ACq8",2013-10-07,2013-10-07,"YB","AC","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Barnacle counts likely low due to thin, filmy algae cover."
+"2013-10-07_YB-ACq1",2013-10-07,2013-10-07,"YB","AC","1","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult;"
+"2013-10-07_YB-ACq4",2013-10-07,2013-10-07,"YB","AC","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-10-07_YB-ACq7",2013-10-07,2013-10-07,"YB","AC","7","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to thin, filmy algae cover"
+"2013-10-07_YB-ACq8",2013-10-07,2013-10-07,"YB","AC","8","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Barnacle counts likely low due to thin, filmy algae cover."
+"2013-10-07_YB-ACq1",2013-10-07,2013-10-07,"YB","AC","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult;"
+"2013-10-07_YB-ACq4",2013-10-07,2013-10-07,"YB","AC","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-10-07_YB-ACq7",2013-10-07,2013-10-07,"YB","AC","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to thin, filmy algae cover"
+"2013-10-07_YB-ACq8",2013-10-07,2013-10-07,"YB","AC","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Barnacle counts likely low due to thin, filmy algae cover."
+"2013-10-07_YB-ACq1",2013-10-07,2013-10-07,"YB","AC","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult;"
+"2013-10-07_YB-ACq4",2013-10-07,2013-10-07,"YB","AC","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-10-07_YB-ACq7",2013-10-07,2013-10-07,"YB","AC","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to thin, filmy algae cover"
+"2013-10-07_YB-ACq8",2013-10-07,2013-10-07,"YB","AC","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Barnacle counts likely low due to thin, filmy algae cover."
+"2013-10-07_YB-ACq1",2013-10-07,2013-10-07,"YB","AC","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult;"
+"2013-10-07_YB-ACq4",2013-10-07,2013-10-07,"YB","AC","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-10-07_YB-ACq7",2013-10-07,2013-10-07,"YB","AC","7","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to thin, filmy algae cover"
+"2013-10-07_YB-ACq8",2013-10-07,2013-10-07,"YB","AC","8","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Barnacle counts likely low due to thin, filmy algae cover."
+"2013-10-07_YB-ACq1",2013-10-07,2013-10-07,"YB","AC","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult;"
+"2013-10-07_YB-ACq4",2013-10-07,2013-10-07,"YB","AC","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-10-07_YB-ACq7",2013-10-07,2013-10-07,"YB","AC","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to thin, filmy algae cover"
+"2013-10-07_YB-ACq8",2013-10-07,2013-10-07,"YB","AC","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Barnacle counts likely low due to thin, filmy algae cover."
+"2013-10-07_YB-ACq1",2013-10-07,2013-10-07,"YB","AC","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult;"
+"2013-10-07_YB-ACq4",2013-10-07,2013-10-07,"YB","AC","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-10-07_YB-ACq7",2013-10-07,2013-10-07,"YB","AC","7","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to thin, filmy algae cover"
+"2013-10-07_YB-ACq8",2013-10-07,2013-10-07,"YB","AC","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Barnacle counts likely low due to thin, filmy algae cover."
+"2013-10-07_YB-ACq1",2013-10-07,2013-10-07,"YB","AC","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult;"
+"2013-10-07_YB-ACq4",2013-10-07,2013-10-07,"YB","AC","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-10-07_YB-ACq7",2013-10-07,2013-10-07,"YB","AC","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to thin, filmy algae cover"
+"2013-10-07_YB-ACq8",2013-10-07,2013-10-07,"YB","AC","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Barnacle counts likely low due to thin, filmy algae cover."
+"2013-10-07_YB-ADq1",2013-10-07,2013-10-07,"YB","AD","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Barnacle counts may be low due to thin, filmy algae cover"
+"2013-10-07_YB-ADq5",2013-10-07,2013-10-07,"YB","AD","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to thin, filmy algae cover and glare."
+"2013-10-07_YB-ADq8",2013-10-07,2013-10-07,"YB","AD","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2013-10-07_YB-ADq1",2013-10-07,2013-10-07,"YB","AD","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Barnacle counts may be low due to thin, filmy algae cover"
+"2013-10-07_YB-ADq5",2013-10-07,2013-10-07,"YB","AD","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to thin, filmy algae cover and glare."
+"2013-10-07_YB-ADq8",2013-10-07,2013-10-07,"YB","AD","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2013-10-07_YB-ADq1",2013-10-07,2013-10-07,"YB","AD","1","Bg","Balanus_glandula","Type 1",857,0.015625,54848,"c","Beatriz Vaca","Finished","Full","Cropped","40%","Barnacle counts may be low due to thin, filmy algae cover"
+"2013-10-07_YB-ADq5",2013-10-07,2013-10-07,"YB","AD","5","Bg","Balanus_glandula","Type 1",798,0.015625,51072,"c","Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to thin, filmy algae cover and glare."
+"2013-10-07_YB-ADq8",2013-10-07,2013-10-07,"YB","AD","8","Bg","Balanus_glandula","Type 1",1156,0.015625,73984,"c","Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2013-10-07_YB-ADq1",2013-10-07,2013-10-07,"YB","AD","1","BgD","Balanus_glandula_(dead)","Type 2",3,0.015625,192,"c","Beatriz Vaca","Finished","Full","Cropped","40%","Barnacle counts may be low due to thin, filmy algae cover"
+"2013-10-07_YB-ADq5",2013-10-07,2013-10-07,"YB","AD","5","BgD","Balanus_glandula_(dead)","Type 2",5,0.015625,320,"c","Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to thin, filmy algae cover and glare."
+"2013-10-07_YB-ADq8",2013-10-07,2013-10-07,"YB","AD","8","BgD","Balanus_glandula_(dead)","Type 2",8,0.015625,512,"c","Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2013-10-07_YB-ADq1",2013-10-07,2013-10-07,"YB","AD","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Barnacle counts may be low due to thin, filmy algae cover"
+"2013-10-07_YB-ADq5",2013-10-07,2013-10-07,"YB","AD","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to thin, filmy algae cover and glare."
+"2013-10-07_YB-ADq8",2013-10-07,2013-10-07,"YB","AD","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2013-10-07_YB-ADq1",2013-10-07,2013-10-07,"YB","AD","1","Cth","Chthamalus_dalli","Type 3",6,0.015625,384,"c","Beatriz Vaca","Finished","Full","Cropped","40%","Barnacle counts may be low due to thin, filmy algae cover"
+"2013-10-07_YB-ADq5",2013-10-07,2013-10-07,"YB","AD","5","Cth","Chthamalus_dalli","Type 3",14,0.015625,896,"c","Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to thin, filmy algae cover and glare."
+"2013-10-07_YB-ADq8",2013-10-07,2013-10-07,"YB","AD","8","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2013-10-07_YB-ADq1",2013-10-07,2013-10-07,"YB","AD","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","40%","Barnacle counts may be low due to thin, filmy algae cover"
+"2013-10-07_YB-ADq5",2013-10-07,2013-10-07,"YB","AD","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to thin, filmy algae cover and glare."
+"2013-10-07_YB-ADq8",2013-10-07,2013-10-07,"YB","AD","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2013-10-07_YB-ADq1",2013-10-07,2013-10-07,"YB","AD","1","Emp","Emplectonema worm","Type 23",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Barnacle counts may be low due to thin, filmy algae cover"
+"2013-10-07_YB-ADq5",2013-10-07,2013-10-07,"YB","AD","5","Emp","Emplectonema worm","Type 23",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to thin, filmy algae cover and glare."
+"2013-10-07_YB-ADq8",2013-10-07,2013-10-07,"YB","AD","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2013-10-07_YB-ADq1",2013-10-07,2013-10-07,"YB","AD","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Barnacle counts may be low due to thin, filmy algae cover"
+"2013-10-07_YB-ADq5",2013-10-07,2013-10-07,"YB","AD","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to thin, filmy algae cover and glare."
+"2013-10-07_YB-ADq8",2013-10-07,2013-10-07,"YB","AD","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2013-10-07_YB-ADq1",2013-10-07,2013-10-07,"YB","AD","1","Lim","Limpets","Type 12",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Barnacle counts may be low due to thin, filmy algae cover"
+"2013-10-07_YB-ADq5",2013-10-07,2013-10-07,"YB","AD","5","Lim","Limpets","Type 12",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to thin, filmy algae cover and glare."
+"2013-10-07_YB-ADq8",2013-10-07,2013-10-07,"YB","AD","8","Lim","Limpets","Type 12",120,0.0875,1371.42857142857,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2013-10-07_YB-ADq1",2013-10-07,2013-10-07,"YB","AD","1","Ls","Littorina_sitkana","Type 13",57,0.0875,651.428571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Barnacle counts may be low due to thin, filmy algae cover"
+"2013-10-07_YB-ADq5",2013-10-07,2013-10-07,"YB","AD","5","Ls","Littorina_sitkana","Type 13",152,0.0875,1737.14285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to thin, filmy algae cover and glare."
+"2013-10-07_YB-ADq8",2013-10-07,2013-10-07,"YB","AD","8","Ls","Littorina_sitkana","Type 13",246,0.0875,2811.42857142857,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2013-10-07_YB-ADq1",2013-10-07,2013-10-07,"YB","AD","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Barnacle counts may be low due to thin, filmy algae cover"
+"2013-10-07_YB-ADq5",2013-10-07,2013-10-07,"YB","AD","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to thin, filmy algae cover and glare."
+"2013-10-07_YB-ADq8",2013-10-07,2013-10-07,"YB","AD","8","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2013-10-07_YB-ADq1",2013-10-07,2013-10-07,"YB","AD","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Barnacle counts may be low due to thin, filmy algae cover"
+"2013-10-07_YB-ADq5",2013-10-07,2013-10-07,"YB","AD","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to thin, filmy algae cover and glare."
+"2013-10-07_YB-ADq8",2013-10-07,2013-10-07,"YB","AD","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2013-10-07_YB-ADq1",2013-10-07,2013-10-07,"YB","AD","1","Myt","Mytilus_spp","Type 7",482,0.0875,5508.57142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Barnacle counts may be low due to thin, filmy algae cover"
+"2013-10-07_YB-ADq5",2013-10-07,2013-10-07,"YB","AD","5","Myt","Mytilus_spp","Type 7",540,0.0875,6171.42857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to thin, filmy algae cover and glare."
+"2013-10-07_YB-ADq8",2013-10-07,2013-10-07,"YB","AD","8","Myt","Mytilus_spp","Type 7",715,0.015625,45760,"c","Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2013-10-07_YB-ADq1",2013-10-07,2013-10-07,"YB","AD","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Barnacle counts may be low due to thin, filmy algae cover"
+"2013-10-07_YB-ADq5",2013-10-07,2013-10-07,"YB","AD","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to thin, filmy algae cover and glare."
+"2013-10-07_YB-ADq8",2013-10-07,2013-10-07,"YB","AD","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2013-10-07_YB-ADq1",2013-10-07,2013-10-07,"YB","AD","1","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Barnacle counts may be low due to thin, filmy algae cover"
+"2013-10-07_YB-ADq5",2013-10-07,2013-10-07,"YB","AD","5","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to thin, filmy algae cover and glare."
+"2013-10-07_YB-ADq8",2013-10-07,2013-10-07,"YB","AD","8","Mt","Mytilus_trossulus","Type 15",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2013-10-07_YB-ADq1",2013-10-07,2013-10-07,"YB","AD","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Barnacle counts may be low due to thin, filmy algae cover"
+"2013-10-07_YB-ADq5",2013-10-07,2013-10-07,"YB","AD","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to thin, filmy algae cover and glare."
+"2013-10-07_YB-ADq8",2013-10-07,2013-10-07,"YB","AD","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2013-10-07_YB-ADq1",2013-10-07,2013-10-07,"YB","AD","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Barnacle counts may be low due to thin, filmy algae cover"
+"2013-10-07_YB-ADq5",2013-10-07,2013-10-07,"YB","AD","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to thin, filmy algae cover and glare."
+"2013-10-07_YB-ADq8",2013-10-07,2013-10-07,"YB","AD","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2013-10-07_YB-ADq1",2013-10-07,2013-10-07,"YB","AD","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Barnacle counts may be low due to thin, filmy algae cover"
+"2013-10-07_YB-ADq5",2013-10-07,2013-10-07,"YB","AD","5","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to thin, filmy algae cover and glare."
+"2013-10-07_YB-ADq8",2013-10-07,2013-10-07,"YB","AD","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2013-10-07_YB-ADq1",2013-10-07,2013-10-07,"YB","AD","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Barnacle counts may be low due to thin, filmy algae cover"
+"2013-10-07_YB-ADq5",2013-10-07,2013-10-07,"YB","AD","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to thin, filmy algae cover and glare."
+"2013-10-07_YB-ADq8",2013-10-07,2013-10-07,"YB","AD","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2013-10-07_YB-ADq1",2013-10-07,2013-10-07,"YB","AD","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Barnacle counts may be low due to thin, filmy algae cover"
+"2013-10-07_YB-ADq5",2013-10-07,2013-10-07,"YB","AD","5","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to thin, filmy algae cover and glare."
+"2013-10-07_YB-ADq8",2013-10-07,2013-10-07,"YB","AD","8","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2013-10-07_YB-ADq1",2013-10-07,2013-10-07,"YB","AD","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Barnacle counts may be low due to thin, filmy algae cover"
+"2013-10-07_YB-ADq5",2013-10-07,2013-10-07,"YB","AD","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to thin, filmy algae cover and glare."
+"2013-10-07_YB-ADq8",2013-10-07,2013-10-07,"YB","AD","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2013-10-07_YB-ADq1",2013-10-07,2013-10-07,"YB","AD","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Barnacle counts may be low due to thin, filmy algae cover"
+"2013-10-07_YB-ADq5",2013-10-07,2013-10-07,"YB","AD","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to thin, filmy algae cover and glare."
+"2013-10-07_YB-ADq8",2013-10-07,2013-10-07,"YB","AD","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2013-10-07_YB-ADq1",2013-10-07,2013-10-07,"YB","AD","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Barnacle counts may be low due to thin, filmy algae cover"
+"2013-10-07_YB-ADq5",2013-10-07,2013-10-07,"YB","AD","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to thin, filmy algae cover and glare."
+"2013-10-07_YB-ADq8",2013-10-07,2013-10-07,"YB","AD","8","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2013-10-07_YB-ADq1",2013-10-07,2013-10-07,"YB","AD","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Barnacle counts may be low due to thin, filmy algae cover"
+"2013-10-07_YB-ADq5",2013-10-07,2013-10-07,"YB","AD","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to thin, filmy algae cover and glare."
+"2013-10-07_YB-ADq8",2013-10-07,2013-10-07,"YB","AD","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2013-10-07_YB-ADq1",2013-10-07,2013-10-07,"YB","AD","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Barnacle counts may be low due to thin, filmy algae cover"
+"2013-10-07_YB-ADq5",2013-10-07,2013-10-07,"YB","AD","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to thin, filmy algae cover and glare."
+"2013-10-07_YB-ADq8",2013-10-07,2013-10-07,"YB","AD","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2013-10-07_YB-ADq1",2013-10-07,2013-10-07,"YB","AD","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Barnacle counts may be low due to thin, filmy algae cover"
+"2013-10-07_YB-ADq5",2013-10-07,2013-10-07,"YB","AD","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to thin, filmy algae cover and glare."
+"2013-10-07_YB-ADq8",2013-10-07,2013-10-07,"YB","AD","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2013-10-07_YB-AEq1",2013-10-07,2013-10-07,"YB","AE","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Barnacle counts may be low due to thin, filmy algae cover"
+"2013-10-07_YB-AEq4",2013-10-07,2013-10-07,"YB","AE","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","85%","Counts may be low due to blur and algae, which is a filmy layer."
+"2013-10-07_YB-AEq8",2013-10-07,2013-10-07,"YB","AE","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts may be low due to blur and algae, which is a filmy layer."
+"2013-10-07_YB-AEq1",2013-10-07,2013-10-07,"YB","AE","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Barnacle counts may be low due to thin, filmy algae cover"
+"2013-10-07_YB-AEq4",2013-10-07,2013-10-07,"YB","AE","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","85%","Counts may be low due to blur and algae, which is a filmy layer."
+"2013-10-07_YB-AEq8",2013-10-07,2013-10-07,"YB","AE","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts may be low due to blur and algae, which is a filmy layer."
+"2013-10-07_YB-AEq1",2013-10-07,2013-10-07,"YB","AE","1","Bg","Balanus_glandula","Type 1",928,0.015625,59392,"c","Beatriz Vaca","Finished","Full","Cropped","75%","Barnacle counts may be low due to thin, filmy algae cover"
+"2013-10-07_YB-AEq4",2013-10-07,2013-10-07,"YB","AE","4","Bg","Balanus_glandula","Type 1",1776,0.015625,113664,"c","Beatriz Vaca","Finished","Full","Cropped","85%","Counts may be low due to blur and algae, which is a filmy layer."
+"2013-10-07_YB-AEq8",2013-10-07,2013-10-07,"YB","AE","8","Bg","Balanus_glandula","Type 1",1376,0.015625,88064,"c","Beatriz Vaca","Finished","Full","Cropped","60%","Counts may be low due to blur and algae, which is a filmy layer."
+"2013-10-07_YB-AEq1",2013-10-07,2013-10-07,"YB","AE","1","BgD","Balanus_glandula_(dead)","Type 2",7,0.015625,448,"c","Beatriz Vaca","Finished","Full","Cropped","75%","Barnacle counts may be low due to thin, filmy algae cover"
+"2013-10-07_YB-AEq4",2013-10-07,2013-10-07,"YB","AE","4","BgD","Balanus_glandula_(dead)","Type 2",1,0.015625,64,"c","Beatriz Vaca","Finished","Full","Cropped","85%","Counts may be low due to blur and algae, which is a filmy layer."
+"2013-10-07_YB-AEq8",2013-10-07,2013-10-07,"YB","AE","8","BgD","Balanus_glandula_(dead)","Type 2",12,0.015625,768,"c","Beatriz Vaca","Finished","Full","Cropped","60%","Counts may be low due to blur and algae, which is a filmy layer."
+"2013-10-07_YB-AEq1",2013-10-07,2013-10-07,"YB","AE","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Barnacle counts may be low due to thin, filmy algae cover"
+"2013-10-07_YB-AEq4",2013-10-07,2013-10-07,"YB","AE","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","85%","Counts may be low due to blur and algae, which is a filmy layer."
+"2013-10-07_YB-AEq8",2013-10-07,2013-10-07,"YB","AE","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts may be low due to blur and algae, which is a filmy layer."
+"2013-10-07_YB-AEq1",2013-10-07,2013-10-07,"YB","AE","1","Cth","Chthamalus_dalli","Type 3",2,0.015625,128,"c","Beatriz Vaca","Finished","Full","Cropped","75%","Barnacle counts may be low due to thin, filmy algae cover"
+"2013-10-07_YB-AEq4",2013-10-07,2013-10-07,"YB","AE","4","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","85%","Counts may be low due to blur and algae, which is a filmy layer."
+"2013-10-07_YB-AEq8",2013-10-07,2013-10-07,"YB","AE","8","Cth","Chthamalus_dalli","Type 3",6,0.015625,384,"c","Beatriz Vaca","Finished","Full","Cropped","60%","Counts may be low due to blur and algae, which is a filmy layer."
+"2013-10-07_YB-AEq1",2013-10-07,2013-10-07,"YB","AE","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","75%","Barnacle counts may be low due to thin, filmy algae cover"
+"2013-10-07_YB-AEq4",2013-10-07,2013-10-07,"YB","AE","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","85%","Counts may be low due to blur and algae, which is a filmy layer."
+"2013-10-07_YB-AEq8",2013-10-07,2013-10-07,"YB","AE","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","60%","Counts may be low due to blur and algae, which is a filmy layer."
+"2013-10-07_YB-AEq1",2013-10-07,2013-10-07,"YB","AE","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Barnacle counts may be low due to thin, filmy algae cover"
+"2013-10-07_YB-AEq4",2013-10-07,2013-10-07,"YB","AE","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","85%","Counts may be low due to blur and algae, which is a filmy layer."
+"2013-10-07_YB-AEq8",2013-10-07,2013-10-07,"YB","AE","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts may be low due to blur and algae, which is a filmy layer."
+"2013-10-07_YB-AEq1",2013-10-07,2013-10-07,"YB","AE","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Barnacle counts may be low due to thin, filmy algae cover"
+"2013-10-07_YB-AEq4",2013-10-07,2013-10-07,"YB","AE","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","85%","Counts may be low due to blur and algae, which is a filmy layer."
+"2013-10-07_YB-AEq8",2013-10-07,2013-10-07,"YB","AE","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts may be low due to blur and algae, which is a filmy layer."
+"2013-10-07_YB-AEq1",2013-10-07,2013-10-07,"YB","AE","1","Lim","Limpets","Type 12",30,0.0875,342.857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Barnacle counts may be low due to thin, filmy algae cover"
+"2013-10-07_YB-AEq4",2013-10-07,2013-10-07,"YB","AE","4","Lim","Limpets","Type 12",21,0.0875,240,NA,"Beatriz Vaca","Finished","Full","Cropped","85%","Counts may be low due to blur and algae, which is a filmy layer."
+"2013-10-07_YB-AEq8",2013-10-07,2013-10-07,"YB","AE","8","Lim","Limpets","Type 12",74,0.0875,845.714285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts may be low due to blur and algae, which is a filmy layer."
+"2013-10-07_YB-AEq1",2013-10-07,2013-10-07,"YB","AE","1","Ls","Littorina_sitkana","Type 13",116,0.0875,1325.71428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Barnacle counts may be low due to thin, filmy algae cover"
+"2013-10-07_YB-AEq4",2013-10-07,2013-10-07,"YB","AE","4","Ls","Littorina_sitkana","Type 13",188,0.0875,2148.57142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","85%","Counts may be low due to blur and algae, which is a filmy layer."
+"2013-10-07_YB-AEq8",2013-10-07,2013-10-07,"YB","AE","8","Ls","Littorina_sitkana","Type 13",306,0.0875,3497.14285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts may be low due to blur and algae, which is a filmy layer."
+"2013-10-07_YB-AEq1",2013-10-07,2013-10-07,"YB","AE","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Barnacle counts may be low due to thin, filmy algae cover"
+"2013-10-07_YB-AEq4",2013-10-07,2013-10-07,"YB","AE","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","85%","Counts may be low due to blur and algae, which is a filmy layer."
+"2013-10-07_YB-AEq8",2013-10-07,2013-10-07,"YB","AE","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts may be low due to blur and algae, which is a filmy layer."
+"2013-10-07_YB-AEq1",2013-10-07,2013-10-07,"YB","AE","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Barnacle counts may be low due to thin, filmy algae cover"
+"2013-10-07_YB-AEq4",2013-10-07,2013-10-07,"YB","AE","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","85%","Counts may be low due to blur and algae, which is a filmy layer."
+"2013-10-07_YB-AEq8",2013-10-07,2013-10-07,"YB","AE","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts may be low due to blur and algae, which is a filmy layer."
+"2013-10-07_YB-AEq1",2013-10-07,2013-10-07,"YB","AE","1","Myt","Mytilus_spp","Type 7",56,0.0875,640,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Barnacle counts may be low due to thin, filmy algae cover"
+"2013-10-07_YB-AEq4",2013-10-07,2013-10-07,"YB","AE","4","Myt","Mytilus_spp","Type 7",250,0.0875,2857.14285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","85%","Counts may be low due to blur and algae, which is a filmy layer."
+"2013-10-07_YB-AEq8",2013-10-07,2013-10-07,"YB","AE","8","Myt","Mytilus_spp","Type 7",1102,0.0875,12594.2857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts may be low due to blur and algae, which is a filmy layer."
+"2013-10-07_YB-AEq1",2013-10-07,2013-10-07,"YB","AE","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Barnacle counts may be low due to thin, filmy algae cover"
+"2013-10-07_YB-AEq4",2013-10-07,2013-10-07,"YB","AE","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","85%","Counts may be low due to blur and algae, which is a filmy layer."
+"2013-10-07_YB-AEq8",2013-10-07,2013-10-07,"YB","AE","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts may be low due to blur and algae, which is a filmy layer."
+"2013-10-07_YB-AEq1",2013-10-07,2013-10-07,"YB","AE","1","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Barnacle counts may be low due to thin, filmy algae cover"
+"2013-10-07_YB-AEq4",2013-10-07,2013-10-07,"YB","AE","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","85%","Counts may be low due to blur and algae, which is a filmy layer."
+"2013-10-07_YB-AEq8",2013-10-07,2013-10-07,"YB","AE","8","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts may be low due to blur and algae, which is a filmy layer."
+"2013-10-07_YB-AEq1",2013-10-07,2013-10-07,"YB","AE","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Barnacle counts may be low due to thin, filmy algae cover"
+"2013-10-07_YB-AEq4",2013-10-07,2013-10-07,"YB","AE","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","85%","Counts may be low due to blur and algae, which is a filmy layer."
+"2013-10-07_YB-AEq8",2013-10-07,2013-10-07,"YB","AE","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts may be low due to blur and algae, which is a filmy layer."
+"2013-10-07_YB-AEq1",2013-10-07,2013-10-07,"YB","AE","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Barnacle counts may be low due to thin, filmy algae cover"
+"2013-10-07_YB-AEq4",2013-10-07,2013-10-07,"YB","AE","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","85%","Counts may be low due to blur and algae, which is a filmy layer."
+"2013-10-07_YB-AEq8",2013-10-07,2013-10-07,"YB","AE","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts may be low due to blur and algae, which is a filmy layer."
+"2013-10-07_YB-AEq1",2013-10-07,2013-10-07,"YB","AE","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Barnacle counts may be low due to thin, filmy algae cover"
+"2013-10-07_YB-AEq4",2013-10-07,2013-10-07,"YB","AE","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","85%","Counts may be low due to blur and algae, which is a filmy layer."
+"2013-10-07_YB-AEq8",2013-10-07,2013-10-07,"YB","AE","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts may be low due to blur and algae, which is a filmy layer."
+"2013-10-07_YB-AEq1",2013-10-07,2013-10-07,"YB","AE","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Barnacle counts may be low due to thin, filmy algae cover"
+"2013-10-07_YB-AEq4",2013-10-07,2013-10-07,"YB","AE","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","85%","Counts may be low due to blur and algae, which is a filmy layer."
+"2013-10-07_YB-AEq8",2013-10-07,2013-10-07,"YB","AE","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts may be low due to blur and algae, which is a filmy layer."
+"2013-10-07_YB-AEq1",2013-10-07,2013-10-07,"YB","AE","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Barnacle counts may be low due to thin, filmy algae cover"
+"2013-10-07_YB-AEq4",2013-10-07,2013-10-07,"YB","AE","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","85%","Counts may be low due to blur and algae, which is a filmy layer."
+"2013-10-07_YB-AEq8",2013-10-07,2013-10-07,"YB","AE","8","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts may be low due to blur and algae, which is a filmy layer."
+"2013-10-07_YB-AEq1",2013-10-07,2013-10-07,"YB","AE","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Barnacle counts may be low due to thin, filmy algae cover"
+"2013-10-07_YB-AEq4",2013-10-07,2013-10-07,"YB","AE","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","85%","Counts may be low due to blur and algae, which is a filmy layer."
+"2013-10-07_YB-AEq8",2013-10-07,2013-10-07,"YB","AE","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts may be low due to blur and algae, which is a filmy layer."
+"2013-10-07_YB-AEq1",2013-10-07,2013-10-07,"YB","AE","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Barnacle counts may be low due to thin, filmy algae cover"
+"2013-10-07_YB-AEq4",2013-10-07,2013-10-07,"YB","AE","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","85%","Counts may be low due to blur and algae, which is a filmy layer."
+"2013-10-07_YB-AEq8",2013-10-07,2013-10-07,"YB","AE","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts may be low due to blur and algae, which is a filmy layer."
+"2013-10-07_YB-AEq1",2013-10-07,2013-10-07,"YB","AE","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Barnacle counts may be low due to thin, filmy algae cover"
+"2013-10-07_YB-AEq4",2013-10-07,2013-10-07,"YB","AE","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","85%","Counts may be low due to blur and algae, which is a filmy layer."
+"2013-10-07_YB-AEq8",2013-10-07,2013-10-07,"YB","AE","8","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts may be low due to blur and algae, which is a filmy layer."
+"2013-10-07_YB-AEq1",2013-10-07,2013-10-07,"YB","AE","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Barnacle counts may be low due to thin, filmy algae cover"
+"2013-10-07_YB-AEq4",2013-10-07,2013-10-07,"YB","AE","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","85%","Counts may be low due to blur and algae, which is a filmy layer."
+"2013-10-07_YB-AEq8",2013-10-07,2013-10-07,"YB","AE","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts may be low due to blur and algae, which is a filmy layer."
+"2013-10-07_YB-AEq1",2013-10-07,2013-10-07,"YB","AE","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Barnacle counts may be low due to thin, filmy algae cover"
+"2013-10-07_YB-AEq4",2013-10-07,2013-10-07,"YB","AE","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","85%","Counts may be low due to blur and algae, which is a filmy layer."
+"2013-10-07_YB-AEq8",2013-10-07,2013-10-07,"YB","AE","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts may be low due to blur and algae, which is a filmy layer."
+"2013-10-07_YB-AEq1",2013-10-07,2013-10-07,"YB","AE","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Barnacle counts may be low due to thin, filmy algae cover"
+"2013-10-07_YB-AEq4",2013-10-07,2013-10-07,"YB","AE","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","85%","Counts may be low due to blur and algae, which is a filmy layer."
+"2013-10-07_YB-AEq8",2013-10-07,2013-10-07,"YB","AE","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts may be low due to blur and algae, which is a filmy layer."
+"2013-10-07_YB-AFq5",2013-10-07,2013-10-07,"YB","AF","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to algae. Algae is a thin film; 8% byssal thread coverage."
+"2013-10-07_YB-AFq8",2013-10-07,2013-10-07,"YB","AF","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","5%","Counts may be low due to blur and glare"
+"2013-10-07_YB-AFq9",2013-10-07,2013-10-07,"YB","AF","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-10-07_YB-AFq5",2013-10-07,2013-10-07,"YB","AF","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to algae. Algae is a thin film; 8% byssal thread coverage."
+"2013-10-07_YB-AFq8",2013-10-07,2013-10-07,"YB","AF","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","5%","Counts may be low due to blur and glare"
+"2013-10-07_YB-AFq9",2013-10-07,2013-10-07,"YB","AF","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-10-07_YB-AFq5",2013-10-07,2013-10-07,"YB","AF","5","Bg","Balanus_glandula","Type 1",1294,0.015625,82816,"c","Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to algae. Algae is a thin film; 8% byssal thread coverage."
+"2013-10-07_YB-AFq8",2013-10-07,2013-10-07,"YB","AF","8","Bg","Balanus_glandula","Type 1",1316,0.015625,84224,"c","Celeste Moen","Finished","Full","Cropped","5%","Counts may be low due to blur and glare"
+"2013-10-07_YB-AFq9",2013-10-07,2013-10-07,"YB","AF","9","Bg","Balanus_glandula","Type 1",956,0.015625,61184,"c","Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-10-07_YB-AFq5",2013-10-07,2013-10-07,"YB","AF","5","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to algae. Algae is a thin film; 8% byssal thread coverage."
+"2013-10-07_YB-AFq8",2013-10-07,2013-10-07,"YB","AF","8","BgD","Balanus_glandula_(dead)","Type 2",2,0.015625,128,"c","Celeste Moen","Finished","Full","Cropped","5%","Counts may be low due to blur and glare"
+"2013-10-07_YB-AFq9",2013-10-07,2013-10-07,"YB","AF","9","BgD","Balanus_glandula_(dead)","Type 2",2,0.015625,128,"c","Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-10-07_YB-AFq5",2013-10-07,2013-10-07,"YB","AF","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to algae. Algae is a thin film; 8% byssal thread coverage."
+"2013-10-07_YB-AFq8",2013-10-07,2013-10-07,"YB","AF","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","5%","Counts may be low due to blur and glare"
+"2013-10-07_YB-AFq9",2013-10-07,2013-10-07,"YB","AF","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-10-07_YB-AFq5",2013-10-07,2013-10-07,"YB","AF","5","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to algae. Algae is a thin film; 8% byssal thread coverage."
+"2013-10-07_YB-AFq8",2013-10-07,2013-10-07,"YB","AF","8","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Celeste Moen","Finished","Full","Cropped","5%","Counts may be low due to blur and glare"
+"2013-10-07_YB-AFq9",2013-10-07,2013-10-07,"YB","AF","9","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-10-07_YB-AFq5",2013-10-07,2013-10-07,"YB","AF","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to algae. Algae is a thin film; 8% byssal thread coverage."
+"2013-10-07_YB-AFq8",2013-10-07,2013-10-07,"YB","AF","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Celeste Moen","Finished","Full","Cropped","5%","Counts may be low due to blur and glare"
+"2013-10-07_YB-AFq9",2013-10-07,2013-10-07,"YB","AF","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-10-07_YB-AFq5",2013-10-07,2013-10-07,"YB","AF","5","Emp","Emplectonema worm","Type 23",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to algae. Algae is a thin film; 8% byssal thread coverage."
+"2013-10-07_YB-AFq8",2013-10-07,2013-10-07,"YB","AF","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","5%","Counts may be low due to blur and glare"
+"2013-10-07_YB-AFq9",2013-10-07,2013-10-07,"YB","AF","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-10-07_YB-AFq5",2013-10-07,2013-10-07,"YB","AF","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to algae. Algae is a thin film; 8% byssal thread coverage."
+"2013-10-07_YB-AFq8",2013-10-07,2013-10-07,"YB","AF","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","5%","Counts may be low due to blur and glare"
+"2013-10-07_YB-AFq9",2013-10-07,2013-10-07,"YB","AF","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-10-07_YB-AFq5",2013-10-07,2013-10-07,"YB","AF","5","Lim","Limpets","Type 12",14,0.0875,160,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to algae. Algae is a thin film; 8% byssal thread coverage."
+"2013-10-07_YB-AFq8",2013-10-07,2013-10-07,"YB","AF","8","Lim","Limpets","Type 12",3,0.0875,34.2857142857143,NA,"Celeste Moen","Finished","Full","Cropped","5%","Counts may be low due to blur and glare"
+"2013-10-07_YB-AFq9",2013-10-07,2013-10-07,"YB","AF","9","Lim","Limpets","Type 12",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-10-07_YB-AFq5",2013-10-07,2013-10-07,"YB","AF","5","Ls","Littorina_sitkana","Type 13",414,0.0875,4731.42857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to algae. Algae is a thin film; 8% byssal thread coverage."
+"2013-10-07_YB-AFq8",2013-10-07,2013-10-07,"YB","AF","8","Ls","Littorina_sitkana","Type 13",38,0.0875,434.285714285714,NA,"Celeste Moen","Finished","Full","Cropped","5%","Counts may be low due to blur and glare"
+"2013-10-07_YB-AFq9",2013-10-07,2013-10-07,"YB","AF","9","Ls","Littorina_sitkana","Type 13",39,0.0875,445.714285714286,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-10-07_YB-AFq5",2013-10-07,2013-10-07,"YB","AF","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to algae. Algae is a thin film; 8% byssal thread coverage."
+"2013-10-07_YB-AFq8",2013-10-07,2013-10-07,"YB","AF","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","5%","Counts may be low due to blur and glare"
+"2013-10-07_YB-AFq9",2013-10-07,2013-10-07,"YB","AF","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-10-07_YB-AFq5",2013-10-07,2013-10-07,"YB","AF","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to algae. Algae is a thin film; 8% byssal thread coverage."
+"2013-10-07_YB-AFq8",2013-10-07,2013-10-07,"YB","AF","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","5%","Counts may be low due to blur and glare"
+"2013-10-07_YB-AFq9",2013-10-07,2013-10-07,"YB","AF","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-10-07_YB-AFq5",2013-10-07,2013-10-07,"YB","AF","5","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to algae. Algae is a thin film; 8% byssal thread coverage."
+"2013-10-07_YB-AFq8",2013-10-07,2013-10-07,"YB","AF","8","Myt","Mytilus_spp","Type 7",559,0.0875,6388.57142857143,NA,"Celeste Moen","Finished","Full","Cropped","5%","Counts may be low due to blur and glare"
+"2013-10-07_YB-AFq9",2013-10-07,2013-10-07,"YB","AF","9","Myt","Mytilus_spp","Type 7",987,0.0875,11280,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-10-07_YB-AFq5",2013-10-07,2013-10-07,"YB","AF","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to algae. Algae is a thin film; 8% byssal thread coverage."
+"2013-10-07_YB-AFq8",2013-10-07,2013-10-07,"YB","AF","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","5%","Counts may be low due to blur and glare"
+"2013-10-07_YB-AFq9",2013-10-07,2013-10-07,"YB","AF","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-10-07_YB-AFq5",2013-10-07,2013-10-07,"YB","AF","5","Mt","Mytilus_trossulus","Type 15",576,0.0875,6582.85714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to algae. Algae is a thin film; 8% byssal thread coverage."
+"2013-10-07_YB-AFq8",2013-10-07,2013-10-07,"YB","AF","8","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","5%","Counts may be low due to blur and glare"
+"2013-10-07_YB-AFq9",2013-10-07,2013-10-07,"YB","AF","9","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-10-07_YB-AFq5",2013-10-07,2013-10-07,"YB","AF","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to algae. Algae is a thin film; 8% byssal thread coverage."
+"2013-10-07_YB-AFq8",2013-10-07,2013-10-07,"YB","AF","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","5%","Counts may be low due to blur and glare"
+"2013-10-07_YB-AFq9",2013-10-07,2013-10-07,"YB","AF","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-10-07_YB-AFq5",2013-10-07,2013-10-07,"YB","AF","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to algae. Algae is a thin film; 8% byssal thread coverage."
+"2013-10-07_YB-AFq8",2013-10-07,2013-10-07,"YB","AF","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","5%","Counts may be low due to blur and glare"
+"2013-10-07_YB-AFq9",2013-10-07,2013-10-07,"YB","AF","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-10-07_YB-AFq5",2013-10-07,2013-10-07,"YB","AF","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to algae. Algae is a thin film; 8% byssal thread coverage."
+"2013-10-07_YB-AFq8",2013-10-07,2013-10-07,"YB","AF","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","5%","Counts may be low due to blur and glare"
+"2013-10-07_YB-AFq9",2013-10-07,2013-10-07,"YB","AF","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-10-07_YB-AFq5",2013-10-07,2013-10-07,"YB","AF","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to algae. Algae is a thin film; 8% byssal thread coverage."
+"2013-10-07_YB-AFq8",2013-10-07,2013-10-07,"YB","AF","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","5%","Counts may be low due to blur and glare"
+"2013-10-07_YB-AFq9",2013-10-07,2013-10-07,"YB","AF","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-10-07_YB-AFq5",2013-10-07,2013-10-07,"YB","AF","5","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to algae. Algae is a thin film; 8% byssal thread coverage."
+"2013-10-07_YB-AFq8",2013-10-07,2013-10-07,"YB","AF","8","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","5%","Counts may be low due to blur and glare"
+"2013-10-07_YB-AFq9",2013-10-07,2013-10-07,"YB","AF","9","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-10-07_YB-AFq5",2013-10-07,2013-10-07,"YB","AF","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to algae. Algae is a thin film; 8% byssal thread coverage."
+"2013-10-07_YB-AFq8",2013-10-07,2013-10-07,"YB","AF","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","5%","Counts may be low due to blur and glare"
+"2013-10-07_YB-AFq9",2013-10-07,2013-10-07,"YB","AF","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-10-07_YB-AFq5",2013-10-07,2013-10-07,"YB","AF","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to algae. Algae is a thin film; 8% byssal thread coverage."
+"2013-10-07_YB-AFq8",2013-10-07,2013-10-07,"YB","AF","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","5%","Counts may be low due to blur and glare"
+"2013-10-07_YB-AFq9",2013-10-07,2013-10-07,"YB","AF","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-10-07_YB-AFq5",2013-10-07,2013-10-07,"YB","AF","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to algae. Algae is a thin film; 8% byssal thread coverage."
+"2013-10-07_YB-AFq8",2013-10-07,2013-10-07,"YB","AF","8","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","5%","Counts may be low due to blur and glare"
+"2013-10-07_YB-AFq9",2013-10-07,2013-10-07,"YB","AF","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-10-07_YB-AFq5",2013-10-07,2013-10-07,"YB","AF","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to algae. Algae is a thin film; 8% byssal thread coverage."
+"2013-10-07_YB-AFq8",2013-10-07,2013-10-07,"YB","AF","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","5%","Counts may be low due to blur and glare"
+"2013-10-07_YB-AFq9",2013-10-07,2013-10-07,"YB","AF","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-10-07_YB-AFq5",2013-10-07,2013-10-07,"YB","AF","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to algae. Algae is a thin film; 8% byssal thread coverage."
+"2013-10-07_YB-AFq8",2013-10-07,2013-10-07,"YB","AF","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","5%","Counts may be low due to blur and glare"
+"2013-10-07_YB-AFq9",2013-10-07,2013-10-07,"YB","AF","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-10-07_YB-AFq5",2013-10-07,2013-10-07,"YB","AF","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to algae. Algae is a thin film; 8% byssal thread coverage."
+"2013-10-07_YB-AFq8",2013-10-07,2013-10-07,"YB","AF","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","5%","Counts may be low due to blur and glare"
+"2013-10-07_YB-AFq9",2013-10-07,2013-10-07,"YB","AF","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-10-07_YB-AGq1",2013-10-07,2013-10-07,"YB","AG","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-10-07_YB-AGq2",2013-10-07,2013-10-07,"YB","AG","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-10-07_YB-AGq3",2013-10-07,2013-10-07,"YB","AG","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Glare made counting barnacles difficult"
+"2013-10-07_YB-AGq7",2013-10-07,2013-10-07,"YB","AG","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","35%","Counts likely low due to algae film and blur"
+"2013-10-07_YB-AGq9",2013-10-07,2013-10-07,"YB","AG","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","Counts likely low due to algae film"
+"2013-10-07_YB-AGq1",2013-10-07,2013-10-07,"YB","AG","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-10-07_YB-AGq2",2013-10-07,2013-10-07,"YB","AG","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-10-07_YB-AGq3",2013-10-07,2013-10-07,"YB","AG","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Glare made counting barnacles difficult"
+"2013-10-07_YB-AGq7",2013-10-07,2013-10-07,"YB","AG","7","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","35%","Counts likely low due to algae film and blur"
+"2013-10-07_YB-AGq9",2013-10-07,2013-10-07,"YB","AG","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","Counts likely low due to algae film"
+"2013-10-07_YB-AGq1",2013-10-07,2013-10-07,"YB","AG","1","Bg","Balanus_glandula","Type 1",576,0.015625,36864,"c","Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-10-07_YB-AGq2",2013-10-07,2013-10-07,"YB","AG","2","Bg","Balanus_glandula","Type 1",472,0.015625,30208,"c","Isaac Shepard","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-10-07_YB-AGq3",2013-10-07,2013-10-07,"YB","AG","3","Bg","Balanus_glandula","Type 1",734,0.015625,46976,"c","Isaac Shepard","Finished","Full","Cropped","0%","Glare made counting barnacles difficult"
+"2013-10-07_YB-AGq7",2013-10-07,2013-10-07,"YB","AG","7","Bg","Balanus_glandula","Type 1",1126,0.015625,72064,"c","Stephanie Merhoff","Finished","Full","Cropped","35%","Counts likely low due to algae film and blur"
+"2013-10-07_YB-AGq9",2013-10-07,2013-10-07,"YB","AG","9","Bg","Balanus_glandula","Type 1",1372,0.015625,87808,"c","Stephanie Merhoff","Finished","Full","Cropped","25%","Counts likely low due to algae film"
+"2013-10-07_YB-AGq1",2013-10-07,2013-10-07,"YB","AG","1","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-10-07_YB-AGq2",2013-10-07,2013-10-07,"YB","AG","2","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-10-07_YB-AGq3",2013-10-07,2013-10-07,"YB","AG","3","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","0%","Glare made counting barnacles difficult"
+"2013-10-07_YB-AGq7",2013-10-07,2013-10-07,"YB","AG","7","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","35%","Counts likely low due to algae film and blur"
+"2013-10-07_YB-AGq9",2013-10-07,2013-10-07,"YB","AG","9","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","25%","Counts likely low due to algae film"
+"2013-10-07_YB-AGq1",2013-10-07,2013-10-07,"YB","AG","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-10-07_YB-AGq2",2013-10-07,2013-10-07,"YB","AG","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-10-07_YB-AGq3",2013-10-07,2013-10-07,"YB","AG","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Glare made counting barnacles difficult"
+"2013-10-07_YB-AGq7",2013-10-07,2013-10-07,"YB","AG","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","35%","Counts likely low due to algae film and blur"
+"2013-10-07_YB-AGq9",2013-10-07,2013-10-07,"YB","AG","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","Counts likely low due to algae film"
+"2013-10-07_YB-AGq1",2013-10-07,2013-10-07,"YB","AG","1","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-10-07_YB-AGq2",2013-10-07,2013-10-07,"YB","AG","2","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-10-07_YB-AGq3",2013-10-07,2013-10-07,"YB","AG","3","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","0%","Glare made counting barnacles difficult"
+"2013-10-07_YB-AGq7",2013-10-07,2013-10-07,"YB","AG","7","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","35%","Counts likely low due to algae film and blur"
+"2013-10-07_YB-AGq9",2013-10-07,2013-10-07,"YB","AG","9","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","25%","Counts likely low due to algae film"
+"2013-10-07_YB-AGq1",2013-10-07,2013-10-07,"YB","AG","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-10-07_YB-AGq2",2013-10-07,2013-10-07,"YB","AG","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-10-07_YB-AGq3",2013-10-07,2013-10-07,"YB","AG","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","0%","Glare made counting barnacles difficult"
+"2013-10-07_YB-AGq7",2013-10-07,2013-10-07,"YB","AG","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","35%","Counts likely low due to algae film and blur"
+"2013-10-07_YB-AGq9",2013-10-07,2013-10-07,"YB","AG","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","25%","Counts likely low due to algae film"
+"2013-10-07_YB-AGq1",2013-10-07,2013-10-07,"YB","AG","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-10-07_YB-AGq2",2013-10-07,2013-10-07,"YB","AG","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-10-07_YB-AGq3",2013-10-07,2013-10-07,"YB","AG","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Glare made counting barnacles difficult"
+"2013-10-07_YB-AGq7",2013-10-07,2013-10-07,"YB","AG","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","35%","Counts likely low due to algae film and blur"
+"2013-10-07_YB-AGq9",2013-10-07,2013-10-07,"YB","AG","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","Counts likely low due to algae film"
+"2013-10-07_YB-AGq1",2013-10-07,2013-10-07,"YB","AG","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-10-07_YB-AGq2",2013-10-07,2013-10-07,"YB","AG","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-10-07_YB-AGq3",2013-10-07,2013-10-07,"YB","AG","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Glare made counting barnacles difficult"
+"2013-10-07_YB-AGq7",2013-10-07,2013-10-07,"YB","AG","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","35%","Counts likely low due to algae film and blur"
+"2013-10-07_YB-AGq9",2013-10-07,2013-10-07,"YB","AG","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","Counts likely low due to algae film"
+"2013-10-07_YB-AGq1",2013-10-07,2013-10-07,"YB","AG","1","Lim","Limpets","Type 12",19,0.0875,217.142857142857,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-10-07_YB-AGq2",2013-10-07,2013-10-07,"YB","AG","2","Lim","Limpets","Type 12",15,0.0875,171.428571428571,NA,"Isaac Shepard","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-10-07_YB-AGq3",2013-10-07,2013-10-07,"YB","AG","3","Lim","Limpets","Type 12",30,0.0875,342.857142857143,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Glare made counting barnacles difficult"
+"2013-10-07_YB-AGq7",2013-10-07,2013-10-07,"YB","AG","7","Lim","Limpets","Type 12",7,0.0875,80,NA,"Stephanie Merhoff","Finished","Full","Cropped","35%","Counts likely low due to algae film and blur"
+"2013-10-07_YB-AGq9",2013-10-07,2013-10-07,"YB","AG","9","Lim","Limpets","Type 12",12,0.0875,137.142857142857,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","Counts likely low due to algae film"
+"2013-10-07_YB-AGq1",2013-10-07,2013-10-07,"YB","AG","1","Ls","Littorina_sitkana","Type 13",63,0.0875,720,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-10-07_YB-AGq2",2013-10-07,2013-10-07,"YB","AG","2","Ls","Littorina_sitkana","Type 13",37,0.0875,422.857142857143,NA,"Isaac Shepard","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-10-07_YB-AGq3",2013-10-07,2013-10-07,"YB","AG","3","Ls","Littorina_sitkana","Type 13",33,0.0875,377.142857142857,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Glare made counting barnacles difficult"
+"2013-10-07_YB-AGq7",2013-10-07,2013-10-07,"YB","AG","7","Ls","Littorina_sitkana","Type 13",66,0.0875,754.285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","35%","Counts likely low due to algae film and blur"
+"2013-10-07_YB-AGq9",2013-10-07,2013-10-07,"YB","AG","9","Ls","Littorina_sitkana","Type 13",101,0.0875,1154.28571428571,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","Counts likely low due to algae film"
+"2013-10-07_YB-AGq1",2013-10-07,2013-10-07,"YB","AG","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-10-07_YB-AGq2",2013-10-07,2013-10-07,"YB","AG","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-10-07_YB-AGq3",2013-10-07,2013-10-07,"YB","AG","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Glare made counting barnacles difficult"
+"2013-10-07_YB-AGq7",2013-10-07,2013-10-07,"YB","AG","7","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","35%","Counts likely low due to algae film and blur"
+"2013-10-07_YB-AGq9",2013-10-07,2013-10-07,"YB","AG","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","Counts likely low due to algae film"
+"2013-10-07_YB-AGq1",2013-10-07,2013-10-07,"YB","AG","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-10-07_YB-AGq2",2013-10-07,2013-10-07,"YB","AG","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-10-07_YB-AGq3",2013-10-07,2013-10-07,"YB","AG","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Glare made counting barnacles difficult"
+"2013-10-07_YB-AGq7",2013-10-07,2013-10-07,"YB","AG","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","35%","Counts likely low due to algae film and blur"
+"2013-10-07_YB-AGq9",2013-10-07,2013-10-07,"YB","AG","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","Counts likely low due to algae film"
+"2013-10-07_YB-AGq1",2013-10-07,2013-10-07,"YB","AG","1","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-10-07_YB-AGq2",2013-10-07,2013-10-07,"YB","AG","2","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-10-07_YB-AGq3",2013-10-07,2013-10-07,"YB","AG","3","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Glare made counting barnacles difficult"
+"2013-10-07_YB-AGq7",2013-10-07,2013-10-07,"YB","AG","7","Myt","Mytilus_spp","Type 7",107,0.0875,1222.85714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","35%","Counts likely low due to algae film and blur"
+"2013-10-07_YB-AGq9",2013-10-07,2013-10-07,"YB","AG","9","Myt","Mytilus_spp","Type 7",219,0.0875,2502.85714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","Counts likely low due to algae film"
+"2013-10-07_YB-AGq1",2013-10-07,2013-10-07,"YB","AG","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-10-07_YB-AGq2",2013-10-07,2013-10-07,"YB","AG","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-10-07_YB-AGq3",2013-10-07,2013-10-07,"YB","AG","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Glare made counting barnacles difficult"
+"2013-10-07_YB-AGq7",2013-10-07,2013-10-07,"YB","AG","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","35%","Counts likely low due to algae film and blur"
+"2013-10-07_YB-AGq9",2013-10-07,2013-10-07,"YB","AG","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","Counts likely low due to algae film"
+"2013-10-07_YB-AGq1",2013-10-07,2013-10-07,"YB","AG","1","Mt","Mytilus_trossulus","Type 15",11,0.0875,125.714285714286,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-10-07_YB-AGq2",2013-10-07,2013-10-07,"YB","AG","2","Mt","Mytilus_trossulus","Type 15",8,0.0875,91.4285714285714,NA,"Isaac Shepard","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-10-07_YB-AGq3",2013-10-07,2013-10-07,"YB","AG","3","Mt","Mytilus_trossulus","Type 15",88,0.0875,1005.71428571429,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Glare made counting barnacles difficult"
+"2013-10-07_YB-AGq7",2013-10-07,2013-10-07,"YB","AG","7","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","35%","Counts likely low due to algae film and blur"
+"2013-10-07_YB-AGq9",2013-10-07,2013-10-07,"YB","AG","9","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","Counts likely low due to algae film"
+"2013-10-07_YB-AGq1",2013-10-07,2013-10-07,"YB","AG","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-10-07_YB-AGq2",2013-10-07,2013-10-07,"YB","AG","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-10-07_YB-AGq3",2013-10-07,2013-10-07,"YB","AG","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Glare made counting barnacles difficult"
+"2013-10-07_YB-AGq7",2013-10-07,2013-10-07,"YB","AG","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","35%","Counts likely low due to algae film and blur"
+"2013-10-07_YB-AGq9",2013-10-07,2013-10-07,"YB","AG","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","Counts likely low due to algae film"
+"2013-10-07_YB-AGq1",2013-10-07,2013-10-07,"YB","AG","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-10-07_YB-AGq2",2013-10-07,2013-10-07,"YB","AG","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-10-07_YB-AGq3",2013-10-07,2013-10-07,"YB","AG","3","Ner","Nereis_worm","Type 24",1,0.0875,11.4285714285714,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Glare made counting barnacles difficult"
+"2013-10-07_YB-AGq7",2013-10-07,2013-10-07,"YB","AG","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","35%","Counts likely low due to algae film and blur"
+"2013-10-07_YB-AGq9",2013-10-07,2013-10-07,"YB","AG","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","Counts likely low due to algae film"
+"2013-10-07_YB-AGq1",2013-10-07,2013-10-07,"YB","AG","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-10-07_YB-AGq2",2013-10-07,2013-10-07,"YB","AG","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-10-07_YB-AGq3",2013-10-07,2013-10-07,"YB","AG","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Glare made counting barnacles difficult"
+"2013-10-07_YB-AGq7",2013-10-07,2013-10-07,"YB","AG","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","35%","Counts likely low due to algae film and blur"
+"2013-10-07_YB-AGq9",2013-10-07,2013-10-07,"YB","AG","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","Counts likely low due to algae film"
+"2013-10-07_YB-AGq1",2013-10-07,2013-10-07,"YB","AG","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-10-07_YB-AGq2",2013-10-07,2013-10-07,"YB","AG","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-10-07_YB-AGq3",2013-10-07,2013-10-07,"YB","AG","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Glare made counting barnacles difficult"
+"2013-10-07_YB-AGq7",2013-10-07,2013-10-07,"YB","AG","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","35%","Counts likely low due to algae film and blur"
+"2013-10-07_YB-AGq9",2013-10-07,2013-10-07,"YB","AG","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","Counts likely low due to algae film"
+"2013-10-07_YB-AGq1",2013-10-07,2013-10-07,"YB","AG","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-10-07_YB-AGq2",2013-10-07,2013-10-07,"YB","AG","2","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-10-07_YB-AGq3",2013-10-07,2013-10-07,"YB","AG","3","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Glare made counting barnacles difficult"
+"2013-10-07_YB-AGq7",2013-10-07,2013-10-07,"YB","AG","7","No","Nucella_ostrina","Type 9",6,0.0875,68.5714285714286,NA,"Stephanie Merhoff","Finished","Full","Cropped","35%","Counts likely low due to algae film and blur"
+"2013-10-07_YB-AGq9",2013-10-07,2013-10-07,"YB","AG","9","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","Counts likely low due to algae film"
+"2013-10-07_YB-AGq1",2013-10-07,2013-10-07,"YB","AG","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-10-07_YB-AGq2",2013-10-07,2013-10-07,"YB","AG","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-10-07_YB-AGq3",2013-10-07,2013-10-07,"YB","AG","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Glare made counting barnacles difficult"
+"2013-10-07_YB-AGq7",2013-10-07,2013-10-07,"YB","AG","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","35%","Counts likely low due to algae film and blur"
+"2013-10-07_YB-AGq9",2013-10-07,2013-10-07,"YB","AG","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","Counts likely low due to algae film"
+"2013-10-07_YB-AGq1",2013-10-07,2013-10-07,"YB","AG","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-10-07_YB-AGq2",2013-10-07,2013-10-07,"YB","AG","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-10-07_YB-AGq3",2013-10-07,2013-10-07,"YB","AG","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Glare made counting barnacles difficult"
+"2013-10-07_YB-AGq7",2013-10-07,2013-10-07,"YB","AG","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","35%","Counts likely low due to algae film and blur"
+"2013-10-07_YB-AGq9",2013-10-07,2013-10-07,"YB","AG","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","Counts likely low due to algae film"
+"2013-10-07_YB-AGq1",2013-10-07,2013-10-07,"YB","AG","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-10-07_YB-AGq2",2013-10-07,2013-10-07,"YB","AG","2","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-10-07_YB-AGq3",2013-10-07,2013-10-07,"YB","AG","3","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Glare made counting barnacles difficult"
+"2013-10-07_YB-AGq7",2013-10-07,2013-10-07,"YB","AG","7","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","35%","Counts likely low due to algae film and blur"
+"2013-10-07_YB-AGq9",2013-10-07,2013-10-07,"YB","AG","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","Counts likely low due to algae film"
+"2013-10-07_YB-AGq1",2013-10-07,2013-10-07,"YB","AG","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-10-07_YB-AGq2",2013-10-07,2013-10-07,"YB","AG","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-10-07_YB-AGq3",2013-10-07,2013-10-07,"YB","AG","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Glare made counting barnacles difficult"
+"2013-10-07_YB-AGq7",2013-10-07,2013-10-07,"YB","AG","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","35%","Counts likely low due to algae film and blur"
+"2013-10-07_YB-AGq9",2013-10-07,2013-10-07,"YB","AG","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","Counts likely low due to algae film"
+"2013-10-07_YB-AGq1",2013-10-07,2013-10-07,"YB","AG","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-10-07_YB-AGq2",2013-10-07,2013-10-07,"YB","AG","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-10-07_YB-AGq3",2013-10-07,2013-10-07,"YB","AG","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Glare made counting barnacles difficult"
+"2013-10-07_YB-AGq7",2013-10-07,2013-10-07,"YB","AG","7","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","35%","Counts likely low due to algae film and blur"
+"2013-10-07_YB-AGq9",2013-10-07,2013-10-07,"YB","AG","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","Counts likely low due to algae film"
+"2013-10-07_YB-AGq1",2013-10-07,2013-10-07,"YB","AG","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-10-07_YB-AGq2",2013-10-07,2013-10-07,"YB","AG","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-10-07_YB-AGq3",2013-10-07,2013-10-07,"YB","AG","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Glare made counting barnacles difficult"
+"2013-10-07_YB-AGq7",2013-10-07,2013-10-07,"YB","AG","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","35%","Counts likely low due to algae film and blur"
+"2013-10-07_YB-AGq9",2013-10-07,2013-10-07,"YB","AG","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","Counts likely low due to algae film"
+"2013-10-07_YB-Bq1",2013-10-07,2013-10-07,"YB","B","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","82%","Mussel, limpet, and littorine snail counts likely low due to glare"
+"2013-10-07_YB-Bq2",2013-10-07,2013-10-07,"YB","B","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2013-10-07_YB-Bq3",2013-10-07,2013-10-07,"YB","B","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","75%",""
+"2013-10-07_YB-Bq4",2013-10-07,2013-10-07,"YB","B","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2013-10-07_YB-Bq5",2013-10-07,2013-10-07,"YB","B","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2013-10-07_YB-Bq6",2013-10-07,2013-10-07,"YB","B","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2013-10-07_YB-Bq7",2013-10-07,2013-10-07,"YB","B","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","13%","Adjusted mussel and barnacle counts may actually be higher but the cropped photo had larger patches of bare rock than the photo as a whole"
+"2013-10-07_YB-Bq8",2013-10-07,2013-10-07,"YB","B","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2013-10-07_YB-Bq9",2013-10-07,2013-10-07,"YB","B","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","8%",""
+"2013-10-07_YB-Bq1",2013-10-07,2013-10-07,"YB","B","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","82%","Mussel, limpet, and littorine snail counts likely low due to glare"
+"2013-10-07_YB-Bq2",2013-10-07,2013-10-07,"YB","B","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2013-10-07_YB-Bq3",2013-10-07,2013-10-07,"YB","B","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","75%",""
+"2013-10-07_YB-Bq4",2013-10-07,2013-10-07,"YB","B","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2013-10-07_YB-Bq5",2013-10-07,2013-10-07,"YB","B","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2013-10-07_YB-Bq6",2013-10-07,2013-10-07,"YB","B","6","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2013-10-07_YB-Bq7",2013-10-07,2013-10-07,"YB","B","7","Ae","Anemones","Type 14",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Cropped","Cropped","13%","Adjusted mussel and barnacle counts may actually be higher but the cropped photo had larger patches of bare rock than the photo as a whole"
+"2013-10-07_YB-Bq8",2013-10-07,2013-10-07,"YB","B","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2013-10-07_YB-Bq9",2013-10-07,2013-10-07,"YB","B","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","8%",""
+"2013-10-07_YB-Bq1",2013-10-07,2013-10-07,"YB","B","1","Bg","Balanus_glandula","Type 1",1256,0.015625,80384,"c","Beatriz Vaca","Finished","Full","Cropped","82%","Mussel, limpet, and littorine snail counts likely low due to glare"
+"2013-10-07_YB-Bq2",2013-10-07,2013-10-07,"YB","B","2","Bg","Balanus_glandula","Type 1",1351,0.015625,86464,"c","Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2013-10-07_YB-Bq3",2013-10-07,2013-10-07,"YB","B","3","Bg","Balanus_glandula","Type 1",1458,0.015625,93312,"c","Beatriz Vaca","Finished","Cropped","Cropped","75%",""
+"2013-10-07_YB-Bq4",2013-10-07,2013-10-07,"YB","B","4","Bg","Balanus_glandula","Type 1",1254,0.015625,80256,"c","Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2013-10-07_YB-Bq5",2013-10-07,2013-10-07,"YB","B","5","Bg","Balanus_glandula","Type 1",513,0.015625,32832,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2013-10-07_YB-Bq6",2013-10-07,2013-10-07,"YB","B","6","Bg","Balanus_glandula","Type 1",1069,0.015625,68416,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2013-10-07_YB-Bq7",2013-10-07,2013-10-07,"YB","B","7","Bg","Balanus_glandula","Type 1",249,0.015625,15936,"c","Beatriz Vaca","Finished","Cropped","Cropped","13%","Adjusted mussel and barnacle counts may actually be higher but the cropped photo had larger patches of bare rock than the photo as a whole"
+"2013-10-07_YB-Bq8",2013-10-07,2013-10-07,"YB","B","8","Bg","Balanus_glandula","Type 1",849,0.015625,54336,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2013-10-07_YB-Bq9",2013-10-07,2013-10-07,"YB","B","9","Bg","Balanus_glandula","Type 1",958,0.015625,61312,"c","Beatriz Vaca","Finished","Cropped","Cropped","8%",""
+"2013-10-07_YB-Bq1",2013-10-07,2013-10-07,"YB","B","1","BgD","Balanus_glandula_(dead)","Type 2",51,0.015625,3264,"c","Beatriz Vaca","Finished","Full","Cropped","82%","Mussel, limpet, and littorine snail counts likely low due to glare"
+"2013-10-07_YB-Bq2",2013-10-07,2013-10-07,"YB","B","2","BgD","Balanus_glandula_(dead)","Type 2",18,0.015625,1152,"c","Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2013-10-07_YB-Bq3",2013-10-07,2013-10-07,"YB","B","3","BgD","Balanus_glandula_(dead)","Type 2",27,0.015625,1728,"c","Beatriz Vaca","Finished","Cropped","Cropped","75%",""
+"2013-10-07_YB-Bq4",2013-10-07,2013-10-07,"YB","B","4","BgD","Balanus_glandula_(dead)","Type 2",34,0.015625,2176,"c","Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2013-10-07_YB-Bq5",2013-10-07,2013-10-07,"YB","B","5","BgD","Balanus_glandula_(dead)","Type 2",12,0.015625,768,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2013-10-07_YB-Bq6",2013-10-07,2013-10-07,"YB","B","6","BgD","Balanus_glandula_(dead)","Type 2",35,0.015625,2240,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2013-10-07_YB-Bq7",2013-10-07,2013-10-07,"YB","B","7","BgD","Balanus_glandula_(dead)","Type 2",11,0.015625,704,"c","Beatriz Vaca","Finished","Cropped","Cropped","13%","Adjusted mussel and barnacle counts may actually be higher but the cropped photo had larger patches of bare rock than the photo as a whole"
+"2013-10-07_YB-Bq8",2013-10-07,2013-10-07,"YB","B","8","BgD","Balanus_glandula_(dead)","Type 2",18,0.015625,1152,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2013-10-07_YB-Bq9",2013-10-07,2013-10-07,"YB","B","9","BgD","Balanus_glandula_(dead)","Type 2",43,0.015625,2752,"c","Beatriz Vaca","Finished","Cropped","Cropped","8%",""
+"2013-10-07_YB-Bq1",2013-10-07,2013-10-07,"YB","B","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","82%","Mussel, limpet, and littorine snail counts likely low due to glare"
+"2013-10-07_YB-Bq2",2013-10-07,2013-10-07,"YB","B","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2013-10-07_YB-Bq3",2013-10-07,2013-10-07,"YB","B","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","75%",""
+"2013-10-07_YB-Bq4",2013-10-07,2013-10-07,"YB","B","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2013-10-07_YB-Bq5",2013-10-07,2013-10-07,"YB","B","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2013-10-07_YB-Bq6",2013-10-07,2013-10-07,"YB","B","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2013-10-07_YB-Bq7",2013-10-07,2013-10-07,"YB","B","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","13%","Adjusted mussel and barnacle counts may actually be higher but the cropped photo had larger patches of bare rock than the photo as a whole"
+"2013-10-07_YB-Bq8",2013-10-07,2013-10-07,"YB","B","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2013-10-07_YB-Bq9",2013-10-07,2013-10-07,"YB","B","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","8%",""
+"2013-10-07_YB-Bq1",2013-10-07,2013-10-07,"YB","B","1","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","82%","Mussel, limpet, and littorine snail counts likely low due to glare"
+"2013-10-07_YB-Bq2",2013-10-07,2013-10-07,"YB","B","2","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2013-10-07_YB-Bq3",2013-10-07,2013-10-07,"YB","B","3","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","75%",""
+"2013-10-07_YB-Bq4",2013-10-07,2013-10-07,"YB","B","4","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2013-10-07_YB-Bq5",2013-10-07,2013-10-07,"YB","B","5","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2013-10-07_YB-Bq6",2013-10-07,2013-10-07,"YB","B","6","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2013-10-07_YB-Bq7",2013-10-07,2013-10-07,"YB","B","7","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","13%","Adjusted mussel and barnacle counts may actually be higher but the cropped photo had larger patches of bare rock than the photo as a whole"
+"2013-10-07_YB-Bq8",2013-10-07,2013-10-07,"YB","B","8","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2013-10-07_YB-Bq9",2013-10-07,2013-10-07,"YB","B","9","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","8%",""
+"2013-10-07_YB-Bq1",2013-10-07,2013-10-07,"YB","B","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","82%","Mussel, limpet, and littorine snail counts likely low due to glare"
+"2013-10-07_YB-Bq2",2013-10-07,2013-10-07,"YB","B","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2013-10-07_YB-Bq3",2013-10-07,2013-10-07,"YB","B","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","75%",""
+"2013-10-07_YB-Bq4",2013-10-07,2013-10-07,"YB","B","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2013-10-07_YB-Bq5",2013-10-07,2013-10-07,"YB","B","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2013-10-07_YB-Bq6",2013-10-07,2013-10-07,"YB","B","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2013-10-07_YB-Bq7",2013-10-07,2013-10-07,"YB","B","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","13%","Adjusted mussel and barnacle counts may actually be higher but the cropped photo had larger patches of bare rock than the photo as a whole"
+"2013-10-07_YB-Bq8",2013-10-07,2013-10-07,"YB","B","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2013-10-07_YB-Bq9",2013-10-07,2013-10-07,"YB","B","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","8%",""
+"2013-10-07_YB-Bq1",2013-10-07,2013-10-07,"YB","B","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","82%","Mussel, limpet, and littorine snail counts likely low due to glare"
+"2013-10-07_YB-Bq2",2013-10-07,2013-10-07,"YB","B","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2013-10-07_YB-Bq3",2013-10-07,2013-10-07,"YB","B","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","75%",""
+"2013-10-07_YB-Bq4",2013-10-07,2013-10-07,"YB","B","4","Emp","Emplectonema worm","Type 23",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2013-10-07_YB-Bq5",2013-10-07,2013-10-07,"YB","B","5","Emp","Emplectonema worm","Type 23",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2013-10-07_YB-Bq6",2013-10-07,2013-10-07,"YB","B","6","Emp","Emplectonema worm","Type 23",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2013-10-07_YB-Bq7",2013-10-07,2013-10-07,"YB","B","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","13%","Adjusted mussel and barnacle counts may actually be higher but the cropped photo had larger patches of bare rock than the photo as a whole"
+"2013-10-07_YB-Bq8",2013-10-07,2013-10-07,"YB","B","8","Emp","Emplectonema worm","Type 23",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2013-10-07_YB-Bq9",2013-10-07,2013-10-07,"YB","B","9","Emp","Emplectonema worm","Type 23",11,0.0875,125.714285714286,NA,"Beatriz Vaca","Finished","Cropped","Cropped","8%",""
+"2013-10-07_YB-Bq1",2013-10-07,2013-10-07,"YB","B","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","82%","Mussel, limpet, and littorine snail counts likely low due to glare"
+"2013-10-07_YB-Bq2",2013-10-07,2013-10-07,"YB","B","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2013-10-07_YB-Bq3",2013-10-07,2013-10-07,"YB","B","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","75%",""
+"2013-10-07_YB-Bq4",2013-10-07,2013-10-07,"YB","B","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2013-10-07_YB-Bq5",2013-10-07,2013-10-07,"YB","B","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2013-10-07_YB-Bq6",2013-10-07,2013-10-07,"YB","B","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2013-10-07_YB-Bq7",2013-10-07,2013-10-07,"YB","B","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","13%","Adjusted mussel and barnacle counts may actually be higher but the cropped photo had larger patches of bare rock than the photo as a whole"
+"2013-10-07_YB-Bq8",2013-10-07,2013-10-07,"YB","B","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2013-10-07_YB-Bq9",2013-10-07,2013-10-07,"YB","B","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","8%",""
+"2013-10-07_YB-Bq1",2013-10-07,2013-10-07,"YB","B","1","Lim","Limpets","Type 12",21,0.0875,240,NA,"Beatriz Vaca","Finished","Full","Cropped","82%","Mussel, limpet, and littorine snail counts likely low due to glare"
+"2013-10-07_YB-Bq2",2013-10-07,2013-10-07,"YB","B","2","Lim","Limpets","Type 12",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2013-10-07_YB-Bq3",2013-10-07,2013-10-07,"YB","B","3","Lim","Limpets","Type 12",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Cropped","Cropped","75%",""
+"2013-10-07_YB-Bq4",2013-10-07,2013-10-07,"YB","B","4","Lim","Limpets","Type 12",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2013-10-07_YB-Bq5",2013-10-07,2013-10-07,"YB","B","5","Lim","Limpets","Type 12",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2013-10-07_YB-Bq6",2013-10-07,2013-10-07,"YB","B","6","Lim","Limpets","Type 12",21,0.0875,240,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2013-10-07_YB-Bq7",2013-10-07,2013-10-07,"YB","B","7","Lim","Limpets","Type 12",50,0.0875,571.428571428571,NA,"Beatriz Vaca","Finished","Cropped","Cropped","13%","Adjusted mussel and barnacle counts may actually be higher but the cropped photo had larger patches of bare rock than the photo as a whole"
+"2013-10-07_YB-Bq8",2013-10-07,2013-10-07,"YB","B","8","Lim","Limpets","Type 12",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2013-10-07_YB-Bq9",2013-10-07,2013-10-07,"YB","B","9","Lim","Limpets","Type 12",45,0.0875,514.285714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","8%",""
+"2013-10-07_YB-Bq1",2013-10-07,2013-10-07,"YB","B","1","Ls","Littorina_sitkana","Type 13",56,0.0875,640,NA,"Beatriz Vaca","Finished","Full","Cropped","82%","Mussel, limpet, and littorine snail counts likely low due to glare"
+"2013-10-07_YB-Bq2",2013-10-07,2013-10-07,"YB","B","2","Ls","Littorina_sitkana","Type 13",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2013-10-07_YB-Bq3",2013-10-07,2013-10-07,"YB","B","3","Ls","Littorina_sitkana","Type 13",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","75%",""
+"2013-10-07_YB-Bq4",2013-10-07,2013-10-07,"YB","B","4","Ls","Littorina_sitkana","Type 13",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2013-10-07_YB-Bq5",2013-10-07,2013-10-07,"YB","B","5","Ls","Littorina_sitkana","Type 13",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2013-10-07_YB-Bq6",2013-10-07,2013-10-07,"YB","B","6","Ls","Littorina_sitkana","Type 13",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2013-10-07_YB-Bq7",2013-10-07,2013-10-07,"YB","B","7","Ls","Littorina_sitkana","Type 13",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","13%","Adjusted mussel and barnacle counts may actually be higher but the cropped photo had larger patches of bare rock than the photo as a whole"
+"2013-10-07_YB-Bq8",2013-10-07,2013-10-07,"YB","B","8","Ls","Littorina_sitkana","Type 13",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2013-10-07_YB-Bq9",2013-10-07,2013-10-07,"YB","B","9","Ls","Littorina_sitkana","Type 13",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Cropped","Cropped","8%",""
+"2013-10-07_YB-Bq1",2013-10-07,2013-10-07,"YB","B","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","82%","Mussel, limpet, and littorine snail counts likely low due to glare"
+"2013-10-07_YB-Bq2",2013-10-07,2013-10-07,"YB","B","2","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2013-10-07_YB-Bq3",2013-10-07,2013-10-07,"YB","B","3","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","75%",""
+"2013-10-07_YB-Bq4",2013-10-07,2013-10-07,"YB","B","4","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2013-10-07_YB-Bq5",2013-10-07,2013-10-07,"YB","B","5","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2013-10-07_YB-Bq6",2013-10-07,2013-10-07,"YB","B","6","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2013-10-07_YB-Bq7",2013-10-07,2013-10-07,"YB","B","7","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","13%","Adjusted mussel and barnacle counts may actually be higher but the cropped photo had larger patches of bare rock than the photo as a whole"
+"2013-10-07_YB-Bq8",2013-10-07,2013-10-07,"YB","B","8","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2013-10-07_YB-Bq9",2013-10-07,2013-10-07,"YB","B","9","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","8%",""
+"2013-10-07_YB-Bq1",2013-10-07,2013-10-07,"YB","B","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","82%","Mussel, limpet, and littorine snail counts likely low due to glare"
+"2013-10-07_YB-Bq2",2013-10-07,2013-10-07,"YB","B","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2013-10-07_YB-Bq3",2013-10-07,2013-10-07,"YB","B","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","75%",""
+"2013-10-07_YB-Bq4",2013-10-07,2013-10-07,"YB","B","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2013-10-07_YB-Bq5",2013-10-07,2013-10-07,"YB","B","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2013-10-07_YB-Bq6",2013-10-07,2013-10-07,"YB","B","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2013-10-07_YB-Bq7",2013-10-07,2013-10-07,"YB","B","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","13%","Adjusted mussel and barnacle counts may actually be higher but the cropped photo had larger patches of bare rock than the photo as a whole"
+"2013-10-07_YB-Bq8",2013-10-07,2013-10-07,"YB","B","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2013-10-07_YB-Bq9",2013-10-07,2013-10-07,"YB","B","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","8%",""
+"2013-10-07_YB-Bq1",2013-10-07,2013-10-07,"YB","B","1","Myt","Mytilus_spp","Type 7",742,0.0875,8480,NA,"Beatriz Vaca","Finished","Full","Cropped","82%","Mussel, limpet, and littorine snail counts likely low due to glare"
+"2013-10-07_YB-Bq2",2013-10-07,2013-10-07,"YB","B","2","Myt","Mytilus_spp","Type 7",1617,0.015625,103488,"c","Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2013-10-07_YB-Bq3",2013-10-07,2013-10-07,"YB","B","3","Myt","Mytilus_spp","Type 7",577,0.015625,36928,"c","Beatriz Vaca","Finished","Cropped","Cropped","75%",""
+"2013-10-07_YB-Bq4",2013-10-07,2013-10-07,"YB","B","4","Myt","Mytilus_spp","Type 7",1996,0.015625,127744,"c","Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2013-10-07_YB-Bq5",2013-10-07,2013-10-07,"YB","B","5","Myt","Mytilus_spp","Type 7",3763,0.015625,240832,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2013-10-07_YB-Bq6",2013-10-07,2013-10-07,"YB","B","6","Myt","Mytilus_spp","Type 7",1816,0.015625,116224,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2013-10-07_YB-Bq7",2013-10-07,2013-10-07,"YB","B","7","Myt","Mytilus_spp","Type 7",291,0.015625,18624,"c","Beatriz Vaca","Finished","Cropped","Cropped","13%","Adjusted mussel and barnacle counts may actually be higher but the cropped photo had larger patches of bare rock than the photo as a whole"
+"2013-10-07_YB-Bq8",2013-10-07,2013-10-07,"YB","B","8","Myt","Mytilus_spp","Type 7",1798,0.015625,115072,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2013-10-07_YB-Bq9",2013-10-07,2013-10-07,"YB","B","9","Myt","Mytilus_spp","Type 7",1393,0.015625,89152,"c","Beatriz Vaca","Finished","Cropped","Cropped","8%",""
+"2013-10-07_YB-Bq1",2013-10-07,2013-10-07,"YB","B","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","82%","Mussel, limpet, and littorine snail counts likely low due to glare"
+"2013-10-07_YB-Bq2",2013-10-07,2013-10-07,"YB","B","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2013-10-07_YB-Bq3",2013-10-07,2013-10-07,"YB","B","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","75%",""
+"2013-10-07_YB-Bq4",2013-10-07,2013-10-07,"YB","B","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2013-10-07_YB-Bq5",2013-10-07,2013-10-07,"YB","B","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2013-10-07_YB-Bq6",2013-10-07,2013-10-07,"YB","B","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2013-10-07_YB-Bq7",2013-10-07,2013-10-07,"YB","B","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","13%","Adjusted mussel and barnacle counts may actually be higher but the cropped photo had larger patches of bare rock than the photo as a whole"
+"2013-10-07_YB-Bq8",2013-10-07,2013-10-07,"YB","B","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2013-10-07_YB-Bq9",2013-10-07,2013-10-07,"YB","B","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","8%",""
+"2013-10-07_YB-Bq1",2013-10-07,2013-10-07,"YB","B","1","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","82%","Mussel, limpet, and littorine snail counts likely low due to glare"
+"2013-10-07_YB-Bq2",2013-10-07,2013-10-07,"YB","B","2","Mt","Mytilus_trossulus","Type 15",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2013-10-07_YB-Bq3",2013-10-07,2013-10-07,"YB","B","3","Mt","Mytilus_trossulus","Type 15",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","75%",""
+"2013-10-07_YB-Bq4",2013-10-07,2013-10-07,"YB","B","4","Mt","Mytilus_trossulus","Type 15",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2013-10-07_YB-Bq5",2013-10-07,2013-10-07,"YB","B","5","Mt","Mytilus_trossulus","Type 15",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2013-10-07_YB-Bq6",2013-10-07,2013-10-07,"YB","B","6","Mt","Mytilus_trossulus","Type 15",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2013-10-07_YB-Bq7",2013-10-07,2013-10-07,"YB","B","7","Mt","Mytilus_trossulus","Type 15",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","13%","Adjusted mussel and barnacle counts may actually be higher but the cropped photo had larger patches of bare rock than the photo as a whole"
+"2013-10-07_YB-Bq8",2013-10-07,2013-10-07,"YB","B","8","Mt","Mytilus_trossulus","Type 15",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2013-10-07_YB-Bq9",2013-10-07,2013-10-07,"YB","B","9","Mt","Mytilus_trossulus","Type 15",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","8%",""
+"2013-10-07_YB-Bq1",2013-10-07,2013-10-07,"YB","B","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","82%","Mussel, limpet, and littorine snail counts likely low due to glare"
+"2013-10-07_YB-Bq2",2013-10-07,2013-10-07,"YB","B","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2013-10-07_YB-Bq3",2013-10-07,2013-10-07,"YB","B","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","75%",""
+"2013-10-07_YB-Bq4",2013-10-07,2013-10-07,"YB","B","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2013-10-07_YB-Bq5",2013-10-07,2013-10-07,"YB","B","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2013-10-07_YB-Bq6",2013-10-07,2013-10-07,"YB","B","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2013-10-07_YB-Bq7",2013-10-07,2013-10-07,"YB","B","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","13%","Adjusted mussel and barnacle counts may actually be higher but the cropped photo had larger patches of bare rock than the photo as a whole"
+"2013-10-07_YB-Bq8",2013-10-07,2013-10-07,"YB","B","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2013-10-07_YB-Bq9",2013-10-07,2013-10-07,"YB","B","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","8%",""
+"2013-10-07_YB-Bq1",2013-10-07,2013-10-07,"YB","B","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","82%","Mussel, limpet, and littorine snail counts likely low due to glare"
+"2013-10-07_YB-Bq2",2013-10-07,2013-10-07,"YB","B","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2013-10-07_YB-Bq3",2013-10-07,2013-10-07,"YB","B","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","75%",""
+"2013-10-07_YB-Bq4",2013-10-07,2013-10-07,"YB","B","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2013-10-07_YB-Bq5",2013-10-07,2013-10-07,"YB","B","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2013-10-07_YB-Bq6",2013-10-07,2013-10-07,"YB","B","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2013-10-07_YB-Bq7",2013-10-07,2013-10-07,"YB","B","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","13%","Adjusted mussel and barnacle counts may actually be higher but the cropped photo had larger patches of bare rock than the photo as a whole"
+"2013-10-07_YB-Bq8",2013-10-07,2013-10-07,"YB","B","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2013-10-07_YB-Bq9",2013-10-07,2013-10-07,"YB","B","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","8%",""
+"2013-10-07_YB-Bq1",2013-10-07,2013-10-07,"YB","B","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","82%","Mussel, limpet, and littorine snail counts likely low due to glare"
+"2013-10-07_YB-Bq2",2013-10-07,2013-10-07,"YB","B","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2013-10-07_YB-Bq3",2013-10-07,2013-10-07,"YB","B","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","75%",""
+"2013-10-07_YB-Bq4",2013-10-07,2013-10-07,"YB","B","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2013-10-07_YB-Bq5",2013-10-07,2013-10-07,"YB","B","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2013-10-07_YB-Bq6",2013-10-07,2013-10-07,"YB","B","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2013-10-07_YB-Bq7",2013-10-07,2013-10-07,"YB","B","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","13%","Adjusted mussel and barnacle counts may actually be higher but the cropped photo had larger patches of bare rock than the photo as a whole"
+"2013-10-07_YB-Bq8",2013-10-07,2013-10-07,"YB","B","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2013-10-07_YB-Bq9",2013-10-07,2013-10-07,"YB","B","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","8%",""
+"2013-10-07_YB-Bq1",2013-10-07,2013-10-07,"YB","B","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","82%","Mussel, limpet, and littorine snail counts likely low due to glare"
+"2013-10-07_YB-Bq2",2013-10-07,2013-10-07,"YB","B","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2013-10-07_YB-Bq3",2013-10-07,2013-10-07,"YB","B","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","75%",""
+"2013-10-07_YB-Bq4",2013-10-07,2013-10-07,"YB","B","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2013-10-07_YB-Bq5",2013-10-07,2013-10-07,"YB","B","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2013-10-07_YB-Bq6",2013-10-07,2013-10-07,"YB","B","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2013-10-07_YB-Bq7",2013-10-07,2013-10-07,"YB","B","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","13%","Adjusted mussel and barnacle counts may actually be higher but the cropped photo had larger patches of bare rock than the photo as a whole"
+"2013-10-07_YB-Bq8",2013-10-07,2013-10-07,"YB","B","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2013-10-07_YB-Bq9",2013-10-07,2013-10-07,"YB","B","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","8%",""
+"2013-10-07_YB-Bq1",2013-10-07,2013-10-07,"YB","B","1","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","82%","Mussel, limpet, and littorine snail counts likely low due to glare"
+"2013-10-07_YB-Bq2",2013-10-07,2013-10-07,"YB","B","2","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2013-10-07_YB-Bq3",2013-10-07,2013-10-07,"YB","B","3","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","75%",""
+"2013-10-07_YB-Bq4",2013-10-07,2013-10-07,"YB","B","4","No","Nucella_ostrina","Type 9",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2013-10-07_YB-Bq5",2013-10-07,2013-10-07,"YB","B","5","No","Nucella_ostrina","Type 9",13,0.0875,148.571428571429,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2013-10-07_YB-Bq6",2013-10-07,2013-10-07,"YB","B","6","No","Nucella_ostrina","Type 9",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2013-10-07_YB-Bq7",2013-10-07,2013-10-07,"YB","B","7","No","Nucella_ostrina","Type 9",44,0.0875,502.857142857143,NA,"Beatriz Vaca","Finished","Cropped","Cropped","13%","Adjusted mussel and barnacle counts may actually be higher but the cropped photo had larger patches of bare rock than the photo as a whole"
+"2013-10-07_YB-Bq8",2013-10-07,2013-10-07,"YB","B","8","No","Nucella_ostrina","Type 9",20,0.0875,228.571428571429,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2013-10-07_YB-Bq9",2013-10-07,2013-10-07,"YB","B","9","No","Nucella_ostrina","Type 9",35,0.0875,400,NA,"Beatriz Vaca","Finished","Cropped","Cropped","8%",""
+"2013-10-07_YB-Bq1",2013-10-07,2013-10-07,"YB","B","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","82%","Mussel, limpet, and littorine snail counts likely low due to glare"
+"2013-10-07_YB-Bq2",2013-10-07,2013-10-07,"YB","B","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2013-10-07_YB-Bq3",2013-10-07,2013-10-07,"YB","B","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","75%",""
+"2013-10-07_YB-Bq4",2013-10-07,2013-10-07,"YB","B","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2013-10-07_YB-Bq5",2013-10-07,2013-10-07,"YB","B","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2013-10-07_YB-Bq6",2013-10-07,2013-10-07,"YB","B","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2013-10-07_YB-Bq7",2013-10-07,2013-10-07,"YB","B","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","13%","Adjusted mussel and barnacle counts may actually be higher but the cropped photo had larger patches of bare rock than the photo as a whole"
+"2013-10-07_YB-Bq8",2013-10-07,2013-10-07,"YB","B","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2013-10-07_YB-Bq9",2013-10-07,2013-10-07,"YB","B","9","Wor","Other_worm spp.","Type 25",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Cropped","Cropped","8%",""
+"2013-10-07_YB-Bq1",2013-10-07,2013-10-07,"YB","B","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","82%","Mussel, limpet, and littorine snail counts likely low due to glare"
+"2013-10-07_YB-Bq2",2013-10-07,2013-10-07,"YB","B","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2013-10-07_YB-Bq3",2013-10-07,2013-10-07,"YB","B","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","75%",""
+"2013-10-07_YB-Bq4",2013-10-07,2013-10-07,"YB","B","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2013-10-07_YB-Bq5",2013-10-07,2013-10-07,"YB","B","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2013-10-07_YB-Bq6",2013-10-07,2013-10-07,"YB","B","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2013-10-07_YB-Bq7",2013-10-07,2013-10-07,"YB","B","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","13%","Adjusted mussel and barnacle counts may actually be higher but the cropped photo had larger patches of bare rock than the photo as a whole"
+"2013-10-07_YB-Bq8",2013-10-07,2013-10-07,"YB","B","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2013-10-07_YB-Bq9",2013-10-07,2013-10-07,"YB","B","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","8%",""
+"2013-10-07_YB-Bq1",2013-10-07,2013-10-07,"YB","B","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","82%","Mussel, limpet, and littorine snail counts likely low due to glare"
+"2013-10-07_YB-Bq2",2013-10-07,2013-10-07,"YB","B","2","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2013-10-07_YB-Bq3",2013-10-07,2013-10-07,"YB","B","3","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","75%",""
+"2013-10-07_YB-Bq4",2013-10-07,2013-10-07,"YB","B","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2013-10-07_YB-Bq5",2013-10-07,2013-10-07,"YB","B","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2013-10-07_YB-Bq6",2013-10-07,2013-10-07,"YB","B","6","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2013-10-07_YB-Bq7",2013-10-07,2013-10-07,"YB","B","7","Pp","Pollicipes_polymerus","Type 11",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Cropped","Cropped","13%","Adjusted mussel and barnacle counts may actually be higher but the cropped photo had larger patches of bare rock than the photo as a whole"
+"2013-10-07_YB-Bq8",2013-10-07,2013-10-07,"YB","B","8","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2013-10-07_YB-Bq9",2013-10-07,2013-10-07,"YB","B","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","8%",""
+"2013-10-07_YB-Bq1",2013-10-07,2013-10-07,"YB","B","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","82%","Mussel, limpet, and littorine snail counts likely low due to glare"
+"2013-10-07_YB-Bq2",2013-10-07,2013-10-07,"YB","B","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2013-10-07_YB-Bq3",2013-10-07,2013-10-07,"YB","B","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","75%",""
+"2013-10-07_YB-Bq4",2013-10-07,2013-10-07,"YB","B","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2013-10-07_YB-Bq5",2013-10-07,2013-10-07,"YB","B","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2013-10-07_YB-Bq6",2013-10-07,2013-10-07,"YB","B","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2013-10-07_YB-Bq7",2013-10-07,2013-10-07,"YB","B","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","13%","Adjusted mussel and barnacle counts may actually be higher but the cropped photo had larger patches of bare rock than the photo as a whole"
+"2013-10-07_YB-Bq8",2013-10-07,2013-10-07,"YB","B","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2013-10-07_YB-Bq9",2013-10-07,2013-10-07,"YB","B","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","8%",""
+"2013-10-07_YB-Bq1",2013-10-07,2013-10-07,"YB","B","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","82%","Mussel, limpet, and littorine snail counts likely low due to glare"
+"2013-10-07_YB-Bq2",2013-10-07,2013-10-07,"YB","B","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2013-10-07_YB-Bq3",2013-10-07,2013-10-07,"YB","B","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","75%",""
+"2013-10-07_YB-Bq4",2013-10-07,2013-10-07,"YB","B","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2013-10-07_YB-Bq5",2013-10-07,2013-10-07,"YB","B","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2013-10-07_YB-Bq6",2013-10-07,2013-10-07,"YB","B","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2013-10-07_YB-Bq7",2013-10-07,2013-10-07,"YB","B","7","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","13%","Adjusted mussel and barnacle counts may actually be higher but the cropped photo had larger patches of bare rock than the photo as a whole"
+"2013-10-07_YB-Bq8",2013-10-07,2013-10-07,"YB","B","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2013-10-07_YB-Bq9",2013-10-07,2013-10-07,"YB","B","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","8%",""
+"2013-10-07_YB-Bq1",2013-10-07,2013-10-07,"YB","B","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","82%","Mussel, limpet, and littorine snail counts likely low due to glare"
+"2013-10-07_YB-Bq2",2013-10-07,2013-10-07,"YB","B","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2013-10-07_YB-Bq3",2013-10-07,2013-10-07,"YB","B","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","75%",""
+"2013-10-07_YB-Bq4",2013-10-07,2013-10-07,"YB","B","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2013-10-07_YB-Bq5",2013-10-07,2013-10-07,"YB","B","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2013-10-07_YB-Bq6",2013-10-07,2013-10-07,"YB","B","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2013-10-07_YB-Bq7",2013-10-07,2013-10-07,"YB","B","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","13%","Adjusted mussel and barnacle counts may actually be higher but the cropped photo had larger patches of bare rock than the photo as a whole"
+"2013-10-07_YB-Bq8",2013-10-07,2013-10-07,"YB","B","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2013-10-07_YB-Bq9",2013-10-07,2013-10-07,"YB","B","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","8%",""
+"2013-10-08_YB-BBq1",2013-10-07,2013-10-08,"YB","BB","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to algae film"
+"2013-10-08_YB-BBq2",2013-10-07,2013-10-08,"YB","BB","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts likely low due to algae film"
+"2013-10-08_YB-BBq9",2013-10-07,2013-10-08,"YB","BB","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likely low due to blur"
+"2013-10-08_YB-BBq1",2013-10-07,2013-10-08,"YB","BB","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to algae film"
+"2013-10-08_YB-BBq2",2013-10-07,2013-10-08,"YB","BB","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts likely low due to algae film"
+"2013-10-08_YB-BBq9",2013-10-07,2013-10-08,"YB","BB","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likely low due to blur"
+"2013-10-08_YB-BBq1",2013-10-07,2013-10-08,"YB","BB","1","Bg","Balanus_glandula","Type 1",804,0.015625,51456,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to algae film"
+"2013-10-08_YB-BBq2",2013-10-07,2013-10-08,"YB","BB","2","Bg","Balanus_glandula","Type 1",661,0.015625,42304,"c","Stephanie Merhoff","Finished","Full","Cropped","10%","Counts likely low due to algae film"
+"2013-10-08_YB-BBq9",2013-10-07,2013-10-08,"YB","BB","9","Bg","Balanus_glandula","Type 1",1054,0.015625,67456,"c","Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likely low due to blur"
+"2013-10-08_YB-BBq1",2013-10-07,2013-10-08,"YB","BB","1","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to algae film"
+"2013-10-08_YB-BBq2",2013-10-07,2013-10-08,"YB","BB","2","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","10%","Counts likely low due to algae film"
+"2013-10-08_YB-BBq9",2013-10-07,2013-10-08,"YB","BB","9","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likely low due to blur"
+"2013-10-08_YB-BBq1",2013-10-07,2013-10-08,"YB","BB","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to algae film"
+"2013-10-08_YB-BBq2",2013-10-07,2013-10-08,"YB","BB","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts likely low due to algae film"
+"2013-10-08_YB-BBq9",2013-10-07,2013-10-08,"YB","BB","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likely low due to blur"
+"2013-10-08_YB-BBq1",2013-10-07,2013-10-08,"YB","BB","1","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to algae film"
+"2013-10-08_YB-BBq2",2013-10-07,2013-10-08,"YB","BB","2","Cth","Chthamalus_dalli","Type 3",1,0.015625,64,"c","Stephanie Merhoff","Finished","Full","Cropped","10%","Counts likely low due to algae film"
+"2013-10-08_YB-BBq9",2013-10-07,2013-10-08,"YB","BB","9","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likely low due to blur"
+"2013-10-08_YB-BBq1",2013-10-07,2013-10-08,"YB","BB","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to algae film"
+"2013-10-08_YB-BBq2",2013-10-07,2013-10-08,"YB","BB","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","10%","Counts likely low due to algae film"
+"2013-10-08_YB-BBq9",2013-10-07,2013-10-08,"YB","BB","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likely low due to blur"
+"2013-10-08_YB-BBq1",2013-10-07,2013-10-08,"YB","BB","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to algae film"
+"2013-10-08_YB-BBq2",2013-10-07,2013-10-08,"YB","BB","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts likely low due to algae film"
+"2013-10-08_YB-BBq9",2013-10-07,2013-10-08,"YB","BB","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likely low due to blur"
+"2013-10-08_YB-BBq1",2013-10-07,2013-10-08,"YB","BB","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to algae film"
+"2013-10-08_YB-BBq2",2013-10-07,2013-10-08,"YB","BB","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts likely low due to algae film"
+"2013-10-08_YB-BBq9",2013-10-07,2013-10-08,"YB","BB","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likely low due to blur"
+"2013-10-08_YB-BBq1",2013-10-07,2013-10-08,"YB","BB","1","Lim","Limpets","Type 12",24,0.0875,274.285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to algae film"
+"2013-10-08_YB-BBq2",2013-10-07,2013-10-08,"YB","BB","2","Lim","Limpets","Type 12",11,0.0875,125.714285714286,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts likely low due to algae film"
+"2013-10-08_YB-BBq9",2013-10-07,2013-10-08,"YB","BB","9","Lim","Limpets","Type 12",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likely low due to blur"
+"2013-10-08_YB-BBq1",2013-10-07,2013-10-08,"YB","BB","1","Ls","Littorina_sitkana","Type 13",94,0.0875,1074.28571428571,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to algae film"
+"2013-10-08_YB-BBq2",2013-10-07,2013-10-08,"YB","BB","2","Ls","Littorina_sitkana","Type 13",42,0.0875,480,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts likely low due to algae film"
+"2013-10-08_YB-BBq9",2013-10-07,2013-10-08,"YB","BB","9","Ls","Littorina_sitkana","Type 13",52,0.0875,594.285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likely low due to blur"
+"2013-10-08_YB-BBq1",2013-10-07,2013-10-08,"YB","BB","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to algae film"
+"2013-10-08_YB-BBq2",2013-10-07,2013-10-08,"YB","BB","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts likely low due to algae film"
+"2013-10-08_YB-BBq9",2013-10-07,2013-10-08,"YB","BB","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likely low due to blur"
+"2013-10-08_YB-BBq1",2013-10-07,2013-10-08,"YB","BB","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to algae film"
+"2013-10-08_YB-BBq2",2013-10-07,2013-10-08,"YB","BB","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts likely low due to algae film"
+"2013-10-08_YB-BBq9",2013-10-07,2013-10-08,"YB","BB","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likely low due to blur"
+"2013-10-08_YB-BBq1",2013-10-07,2013-10-08,"YB","BB","1","Myt","Mytilus_spp","Type 7",282,0.0875,3222.85714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to algae film"
+"2013-10-08_YB-BBq2",2013-10-07,2013-10-08,"YB","BB","2","Myt","Mytilus_spp","Type 7",230,0.0875,2628.57142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts likely low due to algae film"
+"2013-10-08_YB-BBq9",2013-10-07,2013-10-08,"YB","BB","9","Myt","Mytilus_spp","Type 7",119,0.0875,1360,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likely low due to blur"
+"2013-10-08_YB-BBq1",2013-10-07,2013-10-08,"YB","BB","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to algae film"
+"2013-10-08_YB-BBq2",2013-10-07,2013-10-08,"YB","BB","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts likely low due to algae film"
+"2013-10-08_YB-BBq9",2013-10-07,2013-10-08,"YB","BB","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likely low due to blur"
+"2013-10-08_YB-BBq1",2013-10-07,2013-10-08,"YB","BB","1","Mt","Mytilus_trossulus","Type 15",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to algae film"
+"2013-10-08_YB-BBq2",2013-10-07,2013-10-08,"YB","BB","2","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts likely low due to algae film"
+"2013-10-08_YB-BBq9",2013-10-07,2013-10-08,"YB","BB","9","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likely low due to blur"
+"2013-10-08_YB-BBq1",2013-10-07,2013-10-08,"YB","BB","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to algae film"
+"2013-10-08_YB-BBq2",2013-10-07,2013-10-08,"YB","BB","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts likely low due to algae film"
+"2013-10-08_YB-BBq9",2013-10-07,2013-10-08,"YB","BB","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likely low due to blur"
+"2013-10-08_YB-BBq1",2013-10-07,2013-10-08,"YB","BB","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to algae film"
+"2013-10-08_YB-BBq2",2013-10-07,2013-10-08,"YB","BB","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts likely low due to algae film"
+"2013-10-08_YB-BBq9",2013-10-07,2013-10-08,"YB","BB","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likely low due to blur"
+"2013-10-08_YB-BBq1",2013-10-07,2013-10-08,"YB","BB","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to algae film"
+"2013-10-08_YB-BBq2",2013-10-07,2013-10-08,"YB","BB","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts likely low due to algae film"
+"2013-10-08_YB-BBq9",2013-10-07,2013-10-08,"YB","BB","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likely low due to blur"
+"2013-10-08_YB-BBq1",2013-10-07,2013-10-08,"YB","BB","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to algae film"
+"2013-10-08_YB-BBq2",2013-10-07,2013-10-08,"YB","BB","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts likely low due to algae film"
+"2013-10-08_YB-BBq9",2013-10-07,2013-10-08,"YB","BB","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likely low due to blur"
+"2013-10-08_YB-BBq1",2013-10-07,2013-10-08,"YB","BB","1","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to algae film"
+"2013-10-08_YB-BBq2",2013-10-07,2013-10-08,"YB","BB","2","No","Nucella_ostrina","Type 9",4,0.0875,45.7142857142857,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts likely low due to algae film"
+"2013-10-08_YB-BBq9",2013-10-07,2013-10-08,"YB","BB","9","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likely low due to blur"
+"2013-10-08_YB-BBq1",2013-10-07,2013-10-08,"YB","BB","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to algae film"
+"2013-10-08_YB-BBq2",2013-10-07,2013-10-08,"YB","BB","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts likely low due to algae film"
+"2013-10-08_YB-BBq9",2013-10-07,2013-10-08,"YB","BB","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likely low due to blur"
+"2013-10-08_YB-BBq1",2013-10-07,2013-10-08,"YB","BB","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to algae film"
+"2013-10-08_YB-BBq2",2013-10-07,2013-10-08,"YB","BB","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts likely low due to algae film"
+"2013-10-08_YB-BBq9",2013-10-07,2013-10-08,"YB","BB","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likely low due to blur"
+"2013-10-08_YB-BBq1",2013-10-07,2013-10-08,"YB","BB","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to algae film"
+"2013-10-08_YB-BBq2",2013-10-07,2013-10-08,"YB","BB","2","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts likely low due to algae film"
+"2013-10-08_YB-BBq9",2013-10-07,2013-10-08,"YB","BB","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likely low due to blur"
+"2013-10-08_YB-BBq1",2013-10-07,2013-10-08,"YB","BB","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to algae film"
+"2013-10-08_YB-BBq2",2013-10-07,2013-10-08,"YB","BB","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts likely low due to algae film"
+"2013-10-08_YB-BBq9",2013-10-07,2013-10-08,"YB","BB","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likely low due to blur"
+"2013-10-08_YB-BBq1",2013-10-07,2013-10-08,"YB","BB","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to algae film"
+"2013-10-08_YB-BBq2",2013-10-07,2013-10-08,"YB","BB","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts likely low due to algae film"
+"2013-10-08_YB-BBq9",2013-10-07,2013-10-08,"YB","BB","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likely low due to blur"
+"2013-10-08_YB-BBq1",2013-10-07,2013-10-08,"YB","BB","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to algae film"
+"2013-10-08_YB-BBq2",2013-10-07,2013-10-08,"YB","BB","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts likely low due to algae film"
+"2013-10-08_YB-BBq9",2013-10-07,2013-10-08,"YB","BB","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likely low due to blur"
+"2013-10-08_YB-BCq3",2013-10-07,2013-10-08,"YB","BC","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2013-10-08_YB-BCq5",2013-10-07,2013-10-08,"YB","BC","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2013-10-08_YB-BCq9",2013-10-07,2013-10-08,"YB","BC","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-10-08_YB-BCq3",2013-10-07,2013-10-08,"YB","BC","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2013-10-08_YB-BCq5",2013-10-07,2013-10-08,"YB","BC","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2013-10-08_YB-BCq9",2013-10-07,2013-10-08,"YB","BC","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-10-08_YB-BCq3",2013-10-07,2013-10-08,"YB","BC","3","Bg","Balanus_glandula","Type 1",1262,0.015625,80768,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2013-10-08_YB-BCq5",2013-10-07,2013-10-08,"YB","BC","5","Bg","Balanus_glandula","Type 1",1142,0.015625,73088,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2013-10-08_YB-BCq9",2013-10-07,2013-10-08,"YB","BC","9","Bg","Balanus_glandula","Type 1",1276,0.015625,81664,"c","Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-10-08_YB-BCq3",2013-10-07,2013-10-08,"YB","BC","3","BgD","Balanus_glandula_(dead)","Type 2",3,0.015625,192,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2013-10-08_YB-BCq5",2013-10-07,2013-10-08,"YB","BC","5","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2013-10-08_YB-BCq9",2013-10-07,2013-10-08,"YB","BC","9","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-10-08_YB-BCq3",2013-10-07,2013-10-08,"YB","BC","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2013-10-08_YB-BCq5",2013-10-07,2013-10-08,"YB","BC","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2013-10-08_YB-BCq9",2013-10-07,2013-10-08,"YB","BC","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-10-08_YB-BCq3",2013-10-07,2013-10-08,"YB","BC","3","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2013-10-08_YB-BCq5",2013-10-07,2013-10-08,"YB","BC","5","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2013-10-08_YB-BCq9",2013-10-07,2013-10-08,"YB","BC","9","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-10-08_YB-BCq3",2013-10-07,2013-10-08,"YB","BC","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2013-10-08_YB-BCq5",2013-10-07,2013-10-08,"YB","BC","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2013-10-08_YB-BCq9",2013-10-07,2013-10-08,"YB","BC","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-10-08_YB-BCq3",2013-10-07,2013-10-08,"YB","BC","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2013-10-08_YB-BCq5",2013-10-07,2013-10-08,"YB","BC","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2013-10-08_YB-BCq9",2013-10-07,2013-10-08,"YB","BC","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-10-08_YB-BCq3",2013-10-07,2013-10-08,"YB","BC","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2013-10-08_YB-BCq5",2013-10-07,2013-10-08,"YB","BC","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2013-10-08_YB-BCq9",2013-10-07,2013-10-08,"YB","BC","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-10-08_YB-BCq3",2013-10-07,2013-10-08,"YB","BC","3","Lim","Limpets","Type 12",15,0.0875,171.428571428571,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2013-10-08_YB-BCq5",2013-10-07,2013-10-08,"YB","BC","5","Lim","Limpets","Type 12",6,0.0875,68.5714285714286,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2013-10-08_YB-BCq9",2013-10-07,2013-10-08,"YB","BC","9","Lim","Limpets","Type 12",11,0.0875,125.714285714286,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-10-08_YB-BCq3",2013-10-07,2013-10-08,"YB","BC","3","Ls","Littorina_sitkana","Type 13",145,0.0875,1657.14285714286,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2013-10-08_YB-BCq5",2013-10-07,2013-10-08,"YB","BC","5","Ls","Littorina_sitkana","Type 13",68,0.0875,777.142857142857,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2013-10-08_YB-BCq9",2013-10-07,2013-10-08,"YB","BC","9","Ls","Littorina_sitkana","Type 13",66,0.0875,754.285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-10-08_YB-BCq3",2013-10-07,2013-10-08,"YB","BC","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2013-10-08_YB-BCq5",2013-10-07,2013-10-08,"YB","BC","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2013-10-08_YB-BCq9",2013-10-07,2013-10-08,"YB","BC","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-10-08_YB-BCq3",2013-10-07,2013-10-08,"YB","BC","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2013-10-08_YB-BCq5",2013-10-07,2013-10-08,"YB","BC","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2013-10-08_YB-BCq9",2013-10-07,2013-10-08,"YB","BC","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-10-08_YB-BCq3",2013-10-07,2013-10-08,"YB","BC","3","Myt","Mytilus_spp","Type 7",115,0.0875,1314.28571428571,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2013-10-08_YB-BCq5",2013-10-07,2013-10-08,"YB","BC","5","Myt","Mytilus_spp","Type 7",359,0.0875,4102.85714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2013-10-08_YB-BCq9",2013-10-07,2013-10-08,"YB","BC","9","Myt","Mytilus_spp","Type 7",228,0.0875,2605.71428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-10-08_YB-BCq3",2013-10-07,2013-10-08,"YB","BC","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2013-10-08_YB-BCq5",2013-10-07,2013-10-08,"YB","BC","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2013-10-08_YB-BCq9",2013-10-07,2013-10-08,"YB","BC","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-10-08_YB-BCq3",2013-10-07,2013-10-08,"YB","BC","3","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2013-10-08_YB-BCq5",2013-10-07,2013-10-08,"YB","BC","5","Mt","Mytilus_trossulus","Type 15",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2013-10-08_YB-BCq9",2013-10-07,2013-10-08,"YB","BC","9","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-10-08_YB-BCq3",2013-10-07,2013-10-08,"YB","BC","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2013-10-08_YB-BCq5",2013-10-07,2013-10-08,"YB","BC","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2013-10-08_YB-BCq9",2013-10-07,2013-10-08,"YB","BC","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-10-08_YB-BCq3",2013-10-07,2013-10-08,"YB","BC","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2013-10-08_YB-BCq5",2013-10-07,2013-10-08,"YB","BC","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2013-10-08_YB-BCq9",2013-10-07,2013-10-08,"YB","BC","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-10-08_YB-BCq3",2013-10-07,2013-10-08,"YB","BC","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2013-10-08_YB-BCq5",2013-10-07,2013-10-08,"YB","BC","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2013-10-08_YB-BCq9",2013-10-07,2013-10-08,"YB","BC","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-10-08_YB-BCq3",2013-10-07,2013-10-08,"YB","BC","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2013-10-08_YB-BCq5",2013-10-07,2013-10-08,"YB","BC","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2013-10-08_YB-BCq9",2013-10-07,2013-10-08,"YB","BC","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-10-08_YB-BCq3",2013-10-07,2013-10-08,"YB","BC","3","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2013-10-08_YB-BCq5",2013-10-07,2013-10-08,"YB","BC","5","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2013-10-08_YB-BCq9",2013-10-07,2013-10-08,"YB","BC","9","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-10-08_YB-BCq3",2013-10-07,2013-10-08,"YB","BC","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2013-10-08_YB-BCq5",2013-10-07,2013-10-08,"YB","BC","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2013-10-08_YB-BCq9",2013-10-07,2013-10-08,"YB","BC","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-10-08_YB-BCq3",2013-10-07,2013-10-08,"YB","BC","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2013-10-08_YB-BCq5",2013-10-07,2013-10-08,"YB","BC","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2013-10-08_YB-BCq9",2013-10-07,2013-10-08,"YB","BC","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-10-08_YB-BCq3",2013-10-07,2013-10-08,"YB","BC","3","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2013-10-08_YB-BCq5",2013-10-07,2013-10-08,"YB","BC","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2013-10-08_YB-BCq9",2013-10-07,2013-10-08,"YB","BC","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-10-08_YB-BCq3",2013-10-07,2013-10-08,"YB","BC","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2013-10-08_YB-BCq5",2013-10-07,2013-10-08,"YB","BC","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2013-10-08_YB-BCq9",2013-10-07,2013-10-08,"YB","BC","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-10-08_YB-BCq3",2013-10-07,2013-10-08,"YB","BC","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2013-10-08_YB-BCq5",2013-10-07,2013-10-08,"YB","BC","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2013-10-08_YB-BCq9",2013-10-07,2013-10-08,"YB","BC","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-10-08_YB-BCq3",2013-10-07,2013-10-08,"YB","BC","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2013-10-08_YB-BCq5",2013-10-07,2013-10-08,"YB","BC","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2013-10-08_YB-BCq9",2013-10-07,2013-10-08,"YB","BC","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-10-08_YB-BDq1",2013-10-07,2013-10-08,"YB","BD","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","38%","algae is a thin layer on top of barnacle sheet"
+"2013-10-08_YB-BDq5",2013-10-07,2013-10-08,"YB","BD","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","31%","Counts may be low due to glare"
+"2013-10-08_YB-BDq7",2013-10-07,2013-10-08,"YB","BD","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","42%","algae is a thin layer on top of barnacle sheet"
+"2013-10-08_YB-BDq1",2013-10-07,2013-10-08,"YB","BD","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","38%","algae is a thin layer on top of barnacle sheet"
+"2013-10-08_YB-BDq5",2013-10-07,2013-10-08,"YB","BD","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","31%","Counts may be low due to glare"
+"2013-10-08_YB-BDq7",2013-10-07,2013-10-08,"YB","BD","7","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","42%","algae is a thin layer on top of barnacle sheet"
+"2013-10-08_YB-BDq1",2013-10-07,2013-10-08,"YB","BD","1","Bg","Balanus_glandula","Type 1",2009,0.015625,128576,"c","Julia Bingham","Finished","Full","Cropped","38%","algae is a thin layer on top of barnacle sheet"
+"2013-10-08_YB-BDq5",2013-10-07,2013-10-08,"YB","BD","5","Bg","Balanus_glandula","Type 1",1559,0.015625,99776,"c","Julia Bingham","Finished","Full","Cropped","31%","Counts may be low due to glare"
+"2013-10-08_YB-BDq7",2013-10-07,2013-10-08,"YB","BD","7","Bg","Balanus_glandula","Type 1",1949,0.015625,124736,"c","Julia Bingham","Finished","Full","Cropped","42%","algae is a thin layer on top of barnacle sheet"
+"2013-10-08_YB-BDq1",2013-10-07,2013-10-08,"YB","BD","1","BgD","Balanus_glandula_(dead)","Type 2",48,0.015625,3072,"c","Julia Bingham","Finished","Full","Cropped","38%","algae is a thin layer on top of barnacle sheet"
+"2013-10-08_YB-BDq5",2013-10-07,2013-10-08,"YB","BD","5","BgD","Balanus_glandula_(dead)","Type 2",122,0.015625,7808,"c","Julia Bingham","Finished","Full","Cropped","31%","Counts may be low due to glare"
+"2013-10-08_YB-BDq7",2013-10-07,2013-10-08,"YB","BD","7","BgD","Balanus_glandula_(dead)","Type 2",84,0.015625,5376,"c","Julia Bingham","Finished","Full","Cropped","42%","algae is a thin layer on top of barnacle sheet"
+"2013-10-08_YB-BDq1",2013-10-07,2013-10-08,"YB","BD","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","38%","algae is a thin layer on top of barnacle sheet"
+"2013-10-08_YB-BDq5",2013-10-07,2013-10-08,"YB","BD","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","31%","Counts may be low due to glare"
+"2013-10-08_YB-BDq7",2013-10-07,2013-10-08,"YB","BD","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","42%","algae is a thin layer on top of barnacle sheet"
+"2013-10-08_YB-BDq1",2013-10-07,2013-10-08,"YB","BD","1","Cth","Chthamalus_dalli","Type 3",25,0.015625,1600,"c","Julia Bingham","Finished","Full","Cropped","38%","algae is a thin layer on top of barnacle sheet"
+"2013-10-08_YB-BDq5",2013-10-07,2013-10-08,"YB","BD","5","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Julia Bingham","Finished","Full","Cropped","31%","Counts may be low due to glare"
+"2013-10-08_YB-BDq7",2013-10-07,2013-10-08,"YB","BD","7","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Julia Bingham","Finished","Full","Cropped","42%","algae is a thin layer on top of barnacle sheet"
+"2013-10-08_YB-BDq1",2013-10-07,2013-10-08,"YB","BD","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Julia Bingham","Finished","Full","Cropped","38%","algae is a thin layer on top of barnacle sheet"
+"2013-10-08_YB-BDq5",2013-10-07,2013-10-08,"YB","BD","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Julia Bingham","Finished","Full","Cropped","31%","Counts may be low due to glare"
+"2013-10-08_YB-BDq7",2013-10-07,2013-10-08,"YB","BD","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Julia Bingham","Finished","Full","Cropped","42%","algae is a thin layer on top of barnacle sheet"
+"2013-10-08_YB-BDq1",2013-10-07,2013-10-08,"YB","BD","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","38%","algae is a thin layer on top of barnacle sheet"
+"2013-10-08_YB-BDq5",2013-10-07,2013-10-08,"YB","BD","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","31%","Counts may be low due to glare"
+"2013-10-08_YB-BDq7",2013-10-07,2013-10-08,"YB","BD","7","Emp","Emplectonema worm","Type 23",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Cropped","42%","algae is a thin layer on top of barnacle sheet"
+"2013-10-08_YB-BDq1",2013-10-07,2013-10-08,"YB","BD","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","38%","algae is a thin layer on top of barnacle sheet"
+"2013-10-08_YB-BDq5",2013-10-07,2013-10-08,"YB","BD","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","31%","Counts may be low due to glare"
+"2013-10-08_YB-BDq7",2013-10-07,2013-10-08,"YB","BD","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","42%","algae is a thin layer on top of barnacle sheet"
+"2013-10-08_YB-BDq1",2013-10-07,2013-10-08,"YB","BD","1","Lim","Limpets","Type 12",169,0.0875,1931.42857142857,NA,"Julia Bingham","Finished","Full","Cropped","38%","algae is a thin layer on top of barnacle sheet"
+"2013-10-08_YB-BDq5",2013-10-07,2013-10-08,"YB","BD","5","Lim","Limpets","Type 12",90,0.0875,1028.57142857143,NA,"Julia Bingham","Finished","Full","Cropped","31%","Counts may be low due to glare"
+"2013-10-08_YB-BDq7",2013-10-07,2013-10-08,"YB","BD","7","Lim","Limpets","Type 12",88,0.0875,1005.71428571429,NA,"Julia Bingham","Finished","Full","Cropped","42%","algae is a thin layer on top of barnacle sheet"
+"2013-10-08_YB-BDq1",2013-10-07,2013-10-08,"YB","BD","1","Ls","Littorina_sitkana","Type 13",257,0.0875,2937.14285714286,NA,"Julia Bingham","Finished","Full","Cropped","38%","algae is a thin layer on top of barnacle sheet"
+"2013-10-08_YB-BDq5",2013-10-07,2013-10-08,"YB","BD","5","Ls","Littorina_sitkana","Type 13",197,0.0875,2251.42857142857,NA,"Julia Bingham","Finished","Full","Cropped","31%","Counts may be low due to glare"
+"2013-10-08_YB-BDq7",2013-10-07,2013-10-08,"YB","BD","7","Ls","Littorina_sitkana","Type 13",136,0.0875,1554.28571428571,NA,"Julia Bingham","Finished","Full","Cropped","42%","algae is a thin layer on top of barnacle sheet"
+"2013-10-08_YB-BDq1",2013-10-07,2013-10-08,"YB","BD","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","38%","algae is a thin layer on top of barnacle sheet"
+"2013-10-08_YB-BDq5",2013-10-07,2013-10-08,"YB","BD","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","31%","Counts may be low due to glare"
+"2013-10-08_YB-BDq7",2013-10-07,2013-10-08,"YB","BD","7","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","42%","algae is a thin layer on top of barnacle sheet"
+"2013-10-08_YB-BDq1",2013-10-07,2013-10-08,"YB","BD","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","38%","algae is a thin layer on top of barnacle sheet"
+"2013-10-08_YB-BDq5",2013-10-07,2013-10-08,"YB","BD","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","31%","Counts may be low due to glare"
+"2013-10-08_YB-BDq7",2013-10-07,2013-10-08,"YB","BD","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","42%","algae is a thin layer on top of barnacle sheet"
+"2013-10-08_YB-BDq1",2013-10-07,2013-10-08,"YB","BD","1","Myt","Mytilus_spp","Type 7",517,0.0875,5908.57142857143,NA,"Julia Bingham","Finished","Full","Cropped","38%","algae is a thin layer on top of barnacle sheet"
+"2013-10-08_YB-BDq5",2013-10-07,2013-10-08,"YB","BD","5","Myt","Mytilus_spp","Type 7",1605,0.0875,18342.8571428571,NA,"Julia Bingham","Finished","Full","Cropped","31%","Counts may be low due to glare"
+"2013-10-08_YB-BDq7",2013-10-07,2013-10-08,"YB","BD","7","Myt","Mytilus_spp","Type 7",1242,0.0875,14194.2857142857,NA,"Julia Bingham","Finished","Full","Cropped","42%","algae is a thin layer on top of barnacle sheet"
+"2013-10-08_YB-BDq1",2013-10-07,2013-10-08,"YB","BD","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","38%","algae is a thin layer on top of barnacle sheet"
+"2013-10-08_YB-BDq5",2013-10-07,2013-10-08,"YB","BD","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","31%","Counts may be low due to glare"
+"2013-10-08_YB-BDq7",2013-10-07,2013-10-08,"YB","BD","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","42%","algae is a thin layer on top of barnacle sheet"
+"2013-10-08_YB-BDq1",2013-10-07,2013-10-08,"YB","BD","1","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","38%","algae is a thin layer on top of barnacle sheet"
+"2013-10-08_YB-BDq5",2013-10-07,2013-10-08,"YB","BD","5","Mt","Mytilus_trossulus","Type 15",18,0.0875,205.714285714286,NA,"Julia Bingham","Finished","Full","Cropped","31%","Counts may be low due to glare"
+"2013-10-08_YB-BDq7",2013-10-07,2013-10-08,"YB","BD","7","Mt","Mytilus_trossulus","Type 15",7,0.0875,80,NA,"Julia Bingham","Finished","Full","Cropped","42%","algae is a thin layer on top of barnacle sheet"
+"2013-10-08_YB-BDq1",2013-10-07,2013-10-08,"YB","BD","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","38%","algae is a thin layer on top of barnacle sheet"
+"2013-10-08_YB-BDq5",2013-10-07,2013-10-08,"YB","BD","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","31%","Counts may be low due to glare"
+"2013-10-08_YB-BDq7",2013-10-07,2013-10-08,"YB","BD","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","42%","algae is a thin layer on top of barnacle sheet"
+"2013-10-08_YB-BDq1",2013-10-07,2013-10-08,"YB","BD","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","38%","algae is a thin layer on top of barnacle sheet"
+"2013-10-08_YB-BDq5",2013-10-07,2013-10-08,"YB","BD","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","31%","Counts may be low due to glare"
+"2013-10-08_YB-BDq7",2013-10-07,2013-10-08,"YB","BD","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","42%","algae is a thin layer on top of barnacle sheet"
+"2013-10-08_YB-BDq1",2013-10-07,2013-10-08,"YB","BD","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","38%","algae is a thin layer on top of barnacle sheet"
+"2013-10-08_YB-BDq5",2013-10-07,2013-10-08,"YB","BD","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","31%","Counts may be low due to glare"
+"2013-10-08_YB-BDq7",2013-10-07,2013-10-08,"YB","BD","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","42%","algae is a thin layer on top of barnacle sheet"
+"2013-10-08_YB-BDq1",2013-10-07,2013-10-08,"YB","BD","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","38%","algae is a thin layer on top of barnacle sheet"
+"2013-10-08_YB-BDq5",2013-10-07,2013-10-08,"YB","BD","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","31%","Counts may be low due to glare"
+"2013-10-08_YB-BDq7",2013-10-07,2013-10-08,"YB","BD","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","42%","algae is a thin layer on top of barnacle sheet"
+"2013-10-08_YB-BDq1",2013-10-07,2013-10-08,"YB","BD","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","38%","algae is a thin layer on top of barnacle sheet"
+"2013-10-08_YB-BDq5",2013-10-07,2013-10-08,"YB","BD","5","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","31%","Counts may be low due to glare"
+"2013-10-08_YB-BDq7",2013-10-07,2013-10-08,"YB","BD","7","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","42%","algae is a thin layer on top of barnacle sheet"
+"2013-10-08_YB-BDq1",2013-10-07,2013-10-08,"YB","BD","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","38%","algae is a thin layer on top of barnacle sheet"
+"2013-10-08_YB-BDq5",2013-10-07,2013-10-08,"YB","BD","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","31%","Counts may be low due to glare"
+"2013-10-08_YB-BDq7",2013-10-07,2013-10-08,"YB","BD","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","42%","algae is a thin layer on top of barnacle sheet"
+"2013-10-08_YB-BDq1",2013-10-07,2013-10-08,"YB","BD","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","38%","algae is a thin layer on top of barnacle sheet"
+"2013-10-08_YB-BDq5",2013-10-07,2013-10-08,"YB","BD","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","31%","Counts may be low due to glare"
+"2013-10-08_YB-BDq7",2013-10-07,2013-10-08,"YB","BD","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","42%","algae is a thin layer on top of barnacle sheet"
+"2013-10-08_YB-BDq1",2013-10-07,2013-10-08,"YB","BD","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","38%","algae is a thin layer on top of barnacle sheet"
+"2013-10-08_YB-BDq5",2013-10-07,2013-10-08,"YB","BD","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","31%","Counts may be low due to glare"
+"2013-10-08_YB-BDq7",2013-10-07,2013-10-08,"YB","BD","7","Pp","Pollicipes_polymerus","Type 11",4,0.0875,45.7142857142857,NA,"Julia Bingham","Finished","Full","Cropped","42%","algae is a thin layer on top of barnacle sheet"
+"2013-10-08_YB-BDq1",2013-10-07,2013-10-08,"YB","BD","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","38%","algae is a thin layer on top of barnacle sheet"
+"2013-10-08_YB-BDq5",2013-10-07,2013-10-08,"YB","BD","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","31%","Counts may be low due to glare"
+"2013-10-08_YB-BDq7",2013-10-07,2013-10-08,"YB","BD","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","42%","algae is a thin layer on top of barnacle sheet"
+"2013-10-08_YB-BDq1",2013-10-07,2013-10-08,"YB","BD","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","38%","algae is a thin layer on top of barnacle sheet"
+"2013-10-08_YB-BDq5",2013-10-07,2013-10-08,"YB","BD","5","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Cropped","31%","Counts may be low due to glare"
+"2013-10-08_YB-BDq7",2013-10-07,2013-10-08,"YB","BD","7","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","42%","algae is a thin layer on top of barnacle sheet"
+"2013-10-08_YB-BDq1",2013-10-07,2013-10-08,"YB","BD","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","38%","algae is a thin layer on top of barnacle sheet"
+"2013-10-08_YB-BDq5",2013-10-07,2013-10-08,"YB","BD","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","31%","Counts may be low due to glare"
+"2013-10-08_YB-BDq7",2013-10-07,2013-10-08,"YB","BD","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","42%","algae is a thin layer on top of barnacle sheet"
+"2013-10-08_YB-BEq2",2013-10-07,2013-10-08,"YB","BE","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts likely low due to blur and glare"
+"2013-10-08_YB-BEq3",2013-10-07,2013-10-08,"YB","BE","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Counts may be low due to algae. Algae is a thin film."
+"2013-10-08_YB-BEq6",2013-10-07,2013-10-08,"YB","BE","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Counts may be low due to algae. Algae is a thin film."
+"2013-10-08_YB-BEq2",2013-10-07,2013-10-08,"YB","BE","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts likely low due to blur and glare"
+"2013-10-08_YB-BEq3",2013-10-07,2013-10-08,"YB","BE","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Counts may be low due to algae. Algae is a thin film."
+"2013-10-08_YB-BEq6",2013-10-07,2013-10-08,"YB","BE","6","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Counts may be low due to algae. Algae is a thin film."
+"2013-10-08_YB-BEq2",2013-10-07,2013-10-08,"YB","BE","2","Bg","Balanus_glandula","Type 1",787,0.015625,50368,"c","Stephanie Merhoff","Finished","Full","Cropped","3%","Counts likely low due to blur and glare"
+"2013-10-08_YB-BEq3",2013-10-07,2013-10-08,"YB","BE","3","Bg","Balanus_glandula","Type 1",1054,0.015625,67456,"c","Beatriz Vaca","Finished","Full","Cropped","75%","Counts may be low due to algae. Algae is a thin film."
+"2013-10-08_YB-BEq6",2013-10-07,2013-10-08,"YB","BE","6","Bg","Balanus_glandula","Type 1",1276,0.015625,81664,"c","Beatriz Vaca","Finished","Full","Cropped","70%","Counts may be low due to algae. Algae is a thin film."
+"2013-10-08_YB-BEq2",2013-10-07,2013-10-08,"YB","BE","2","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","3%","Counts likely low due to blur and glare"
+"2013-10-08_YB-BEq3",2013-10-07,2013-10-08,"YB","BE","3","BgD","Balanus_glandula_(dead)","Type 2",7,0.015625,448,"c","Beatriz Vaca","Finished","Full","Cropped","75%","Counts may be low due to algae. Algae is a thin film."
+"2013-10-08_YB-BEq6",2013-10-07,2013-10-08,"YB","BE","6","BgD","Balanus_glandula_(dead)","Type 2",22,0.015625,1408,"c","Beatriz Vaca","Finished","Full","Cropped","70%","Counts may be low due to algae. Algae is a thin film."
+"2013-10-08_YB-BEq2",2013-10-07,2013-10-08,"YB","BE","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts likely low due to blur and glare"
+"2013-10-08_YB-BEq3",2013-10-07,2013-10-08,"YB","BE","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Counts may be low due to algae. Algae is a thin film."
+"2013-10-08_YB-BEq6",2013-10-07,2013-10-08,"YB","BE","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Counts may be low due to algae. Algae is a thin film."
+"2013-10-08_YB-BEq2",2013-10-07,2013-10-08,"YB","BE","2","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","3%","Counts likely low due to blur and glare"
+"2013-10-08_YB-BEq3",2013-10-07,2013-10-08,"YB","BE","3","Cth","Chthamalus_dalli","Type 3",2,0.015625,128,"c","Beatriz Vaca","Finished","Full","Cropped","75%","Counts may be low due to algae. Algae is a thin film."
+"2013-10-08_YB-BEq6",2013-10-07,2013-10-08,"YB","BE","6","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","70%","Counts may be low due to algae. Algae is a thin film."
+"2013-10-08_YB-BEq2",2013-10-07,2013-10-08,"YB","BE","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","3%","Counts likely low due to blur and glare"
+"2013-10-08_YB-BEq3",2013-10-07,2013-10-08,"YB","BE","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","75%","Counts may be low due to algae. Algae is a thin film."
+"2013-10-08_YB-BEq6",2013-10-07,2013-10-08,"YB","BE","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","70%","Counts may be low due to algae. Algae is a thin film."
+"2013-10-08_YB-BEq2",2013-10-07,2013-10-08,"YB","BE","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts likely low due to blur and glare"
+"2013-10-08_YB-BEq3",2013-10-07,2013-10-08,"YB","BE","3","Emp","Emplectonema worm","Type 23",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Counts may be low due to algae. Algae is a thin film."
+"2013-10-08_YB-BEq6",2013-10-07,2013-10-08,"YB","BE","6","Emp","Emplectonema worm","Type 23",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Counts may be low due to algae. Algae is a thin film."
+"2013-10-08_YB-BEq2",2013-10-07,2013-10-08,"YB","BE","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts likely low due to blur and glare"
+"2013-10-08_YB-BEq3",2013-10-07,2013-10-08,"YB","BE","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Counts may be low due to algae. Algae is a thin film."
+"2013-10-08_YB-BEq6",2013-10-07,2013-10-08,"YB","BE","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Counts may be low due to algae. Algae is a thin film."
+"2013-10-08_YB-BEq2",2013-10-07,2013-10-08,"YB","BE","2","Lim","Limpets","Type 12",19,0.0875,217.142857142857,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts likely low due to blur and glare"
+"2013-10-08_YB-BEq3",2013-10-07,2013-10-08,"YB","BE","3","Lim","Limpets","Type 12",90,0.0875,1028.57142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Counts may be low due to algae. Algae is a thin film."
+"2013-10-08_YB-BEq6",2013-10-07,2013-10-08,"YB","BE","6","Lim","Limpets","Type 12",82,0.0875,937.142857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Counts may be low due to algae. Algae is a thin film."
+"2013-10-08_YB-BEq2",2013-10-07,2013-10-08,"YB","BE","2","Ls","Littorina_sitkana","Type 13",120,0.0875,1371.42857142857,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts likely low due to blur and glare"
+"2013-10-08_YB-BEq3",2013-10-07,2013-10-08,"YB","BE","3","Ls","Littorina_sitkana","Type 13",149,0.0875,1702.85714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Counts may be low due to algae. Algae is a thin film."
+"2013-10-08_YB-BEq6",2013-10-07,2013-10-08,"YB","BE","6","Ls","Littorina_sitkana","Type 13",137,0.0875,1565.71428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Counts may be low due to algae. Algae is a thin film."
+"2013-10-08_YB-BEq2",2013-10-07,2013-10-08,"YB","BE","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts likely low due to blur and glare"
+"2013-10-08_YB-BEq3",2013-10-07,2013-10-08,"YB","BE","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Counts may be low due to algae. Algae is a thin film."
+"2013-10-08_YB-BEq6",2013-10-07,2013-10-08,"YB","BE","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Counts may be low due to algae. Algae is a thin film."
+"2013-10-08_YB-BEq2",2013-10-07,2013-10-08,"YB","BE","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts likely low due to blur and glare"
+"2013-10-08_YB-BEq3",2013-10-07,2013-10-08,"YB","BE","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Counts may be low due to algae. Algae is a thin film."
+"2013-10-08_YB-BEq6",2013-10-07,2013-10-08,"YB","BE","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Counts may be low due to algae. Algae is a thin film."
+"2013-10-08_YB-BEq2",2013-10-07,2013-10-08,"YB","BE","2","Myt","Mytilus_spp","Type 7",30,0.0875,342.857142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts likely low due to blur and glare"
+"2013-10-08_YB-BEq3",2013-10-07,2013-10-08,"YB","BE","3","Myt","Mytilus_spp","Type 7",152,0.0875,1737.14285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Counts may be low due to algae. Algae is a thin film."
+"2013-10-08_YB-BEq6",2013-10-07,2013-10-08,"YB","BE","6","Myt","Mytilus_spp","Type 7",175,0.0875,2000,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Counts may be low due to algae. Algae is a thin film."
+"2013-10-08_YB-BEq2",2013-10-07,2013-10-08,"YB","BE","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts likely low due to blur and glare"
+"2013-10-08_YB-BEq3",2013-10-07,2013-10-08,"YB","BE","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Counts may be low due to algae. Algae is a thin film."
+"2013-10-08_YB-BEq6",2013-10-07,2013-10-08,"YB","BE","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Counts may be low due to algae. Algae is a thin film."
+"2013-10-08_YB-BEq2",2013-10-07,2013-10-08,"YB","BE","2","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts likely low due to blur and glare"
+"2013-10-08_YB-BEq3",2013-10-07,2013-10-08,"YB","BE","3","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Counts may be low due to algae. Algae is a thin film."
+"2013-10-08_YB-BEq6",2013-10-07,2013-10-08,"YB","BE","6","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Counts may be low due to algae. Algae is a thin film."
+"2013-10-08_YB-BEq2",2013-10-07,2013-10-08,"YB","BE","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts likely low due to blur and glare"
+"2013-10-08_YB-BEq3",2013-10-07,2013-10-08,"YB","BE","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Counts may be low due to algae. Algae is a thin film."
+"2013-10-08_YB-BEq6",2013-10-07,2013-10-08,"YB","BE","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Counts may be low due to algae. Algae is a thin film."
+"2013-10-08_YB-BEq2",2013-10-07,2013-10-08,"YB","BE","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts likely low due to blur and glare"
+"2013-10-08_YB-BEq3",2013-10-07,2013-10-08,"YB","BE","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Counts may be low due to algae. Algae is a thin film."
+"2013-10-08_YB-BEq6",2013-10-07,2013-10-08,"YB","BE","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Counts may be low due to algae. Algae is a thin film."
+"2013-10-08_YB-BEq2",2013-10-07,2013-10-08,"YB","BE","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts likely low due to blur and glare"
+"2013-10-08_YB-BEq3",2013-10-07,2013-10-08,"YB","BE","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Counts may be low due to algae. Algae is a thin film."
+"2013-10-08_YB-BEq6",2013-10-07,2013-10-08,"YB","BE","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Counts may be low due to algae. Algae is a thin film."
+"2013-10-08_YB-BEq2",2013-10-07,2013-10-08,"YB","BE","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts likely low due to blur and glare"
+"2013-10-08_YB-BEq3",2013-10-07,2013-10-08,"YB","BE","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Counts may be low due to algae. Algae is a thin film."
+"2013-10-08_YB-BEq6",2013-10-07,2013-10-08,"YB","BE","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Counts may be low due to algae. Algae is a thin film."
+"2013-10-08_YB-BEq2",2013-10-07,2013-10-08,"YB","BE","2","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts likely low due to blur and glare"
+"2013-10-08_YB-BEq3",2013-10-07,2013-10-08,"YB","BE","3","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Counts may be low due to algae. Algae is a thin film."
+"2013-10-08_YB-BEq6",2013-10-07,2013-10-08,"YB","BE","6","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Counts may be low due to algae. Algae is a thin film."
+"2013-10-08_YB-BEq2",2013-10-07,2013-10-08,"YB","BE","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts likely low due to blur and glare"
+"2013-10-08_YB-BEq3",2013-10-07,2013-10-08,"YB","BE","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Counts may be low due to algae. Algae is a thin film."
+"2013-10-08_YB-BEq6",2013-10-07,2013-10-08,"YB","BE","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Counts may be low due to algae. Algae is a thin film."
+"2013-10-08_YB-BEq2",2013-10-07,2013-10-08,"YB","BE","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts likely low due to blur and glare"
+"2013-10-08_YB-BEq3",2013-10-07,2013-10-08,"YB","BE","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Counts may be low due to algae. Algae is a thin film."
+"2013-10-08_YB-BEq6",2013-10-07,2013-10-08,"YB","BE","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Counts may be low due to algae. Algae is a thin film."
+"2013-10-08_YB-BEq2",2013-10-07,2013-10-08,"YB","BE","2","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts likely low due to blur and glare"
+"2013-10-08_YB-BEq3",2013-10-07,2013-10-08,"YB","BE","3","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Counts may be low due to algae. Algae is a thin film."
+"2013-10-08_YB-BEq6",2013-10-07,2013-10-08,"YB","BE","6","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Counts may be low due to algae. Algae is a thin film."
+"2013-10-08_YB-BEq2",2013-10-07,2013-10-08,"YB","BE","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts likely low due to blur and glare"
+"2013-10-08_YB-BEq3",2013-10-07,2013-10-08,"YB","BE","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Counts may be low due to algae. Algae is a thin film."
+"2013-10-08_YB-BEq6",2013-10-07,2013-10-08,"YB","BE","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Counts may be low due to algae. Algae is a thin film."
+"2013-10-08_YB-BEq2",2013-10-07,2013-10-08,"YB","BE","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts likely low due to blur and glare"
+"2013-10-08_YB-BEq3",2013-10-07,2013-10-08,"YB","BE","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Counts may be low due to algae. Algae is a thin film."
+"2013-10-08_YB-BEq6",2013-10-07,2013-10-08,"YB","BE","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Counts may be low due to algae. Algae is a thin film."
+"2013-10-08_YB-BEq2",2013-10-07,2013-10-08,"YB","BE","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts likely low due to blur and glare"
+"2013-10-08_YB-BEq3",2013-10-07,2013-10-08,"YB","BE","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Counts may be low due to algae. Algae is a thin film."
+"2013-10-08_YB-BEq6",2013-10-07,2013-10-08,"YB","BE","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Counts may be low due to algae. Algae is a thin film."
+"2013-10-08_YB-BFq1",2013-10-07,2013-10-08,"YB","BF","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","85%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-08_YB-BFq2",2013-10-07,2013-10-08,"YB","BF","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-08_YB-BFq3",2013-10-07,2013-10-08,"YB","BF","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-10-08_YB-BFq4",2013-10-07,2013-10-08,"YB","BF","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-08_YB-BFq9",2013-10-07,2013-10-08,"YB","BF","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","3%","Mussel and littorine counts low due to some glare"
+"2013-10-08_YB-BFq1",2013-10-07,2013-10-08,"YB","BF","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","85%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-08_YB-BFq2",2013-10-07,2013-10-08,"YB","BF","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-08_YB-BFq3",2013-10-07,2013-10-08,"YB","BF","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-10-08_YB-BFq4",2013-10-07,2013-10-08,"YB","BF","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-08_YB-BFq9",2013-10-07,2013-10-08,"YB","BF","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","3%","Mussel and littorine counts low due to some glare"
+"2013-10-08_YB-BFq1",2013-10-07,2013-10-08,"YB","BF","1","Bg","Balanus_glandula","Type 1",1343,0.015625,85952,"c","Beatriz Vaca","Finished","Full","Cropped","85%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-08_YB-BFq2",2013-10-07,2013-10-08,"YB","BF","2","Bg","Balanus_glandula","Type 1",1126,0.015625,72064,"c","Beatriz Vaca","Finished","Full","Cropped","75%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-08_YB-BFq3",2013-10-07,2013-10-08,"YB","BF","3","Bg","Balanus_glandula","Type 1",954,0.015625,61056,"c","Beatriz Vaca","Finished","Full","Cropped","65%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-10-08_YB-BFq4",2013-10-07,2013-10-08,"YB","BF","4","Bg","Balanus_glandula","Type 1",1147,0.015625,73408,"c","Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-08_YB-BFq9",2013-10-07,2013-10-08,"YB","BF","9","Bg","Balanus_glandula","Type 1",1969,0.015625,126016,"c","Julia Bingham","Finished","Full","Cropped","3%","Mussel and littorine counts low due to some glare"
+"2013-10-08_YB-BFq1",2013-10-07,2013-10-08,"YB","BF","1","BgD","Balanus_glandula_(dead)","Type 2",13,0.015625,832,"c","Beatriz Vaca","Finished","Full","Cropped","85%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-08_YB-BFq2",2013-10-07,2013-10-08,"YB","BF","2","BgD","Balanus_glandula_(dead)","Type 2",3,0.015625,192,"c","Beatriz Vaca","Finished","Full","Cropped","75%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-08_YB-BFq3",2013-10-07,2013-10-08,"YB","BF","3","BgD","Balanus_glandula_(dead)","Type 2",2,0.015625,128,"c","Beatriz Vaca","Finished","Full","Cropped","65%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-10-08_YB-BFq4",2013-10-07,2013-10-08,"YB","BF","4","BgD","Balanus_glandula_(dead)","Type 2",8,0.015625,512,"c","Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-08_YB-BFq9",2013-10-07,2013-10-08,"YB","BF","9","BgD","Balanus_glandula_(dead)","Type 2",67,0.015625,4288,"c","Julia Bingham","Finished","Full","Cropped","3%","Mussel and littorine counts low due to some glare"
+"2013-10-08_YB-BFq1",2013-10-07,2013-10-08,"YB","BF","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","85%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-08_YB-BFq2",2013-10-07,2013-10-08,"YB","BF","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-08_YB-BFq3",2013-10-07,2013-10-08,"YB","BF","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-10-08_YB-BFq4",2013-10-07,2013-10-08,"YB","BF","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-08_YB-BFq9",2013-10-07,2013-10-08,"YB","BF","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","3%","Mussel and littorine counts low due to some glare"
+"2013-10-08_YB-BFq1",2013-10-07,2013-10-08,"YB","BF","1","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","85%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-08_YB-BFq2",2013-10-07,2013-10-08,"YB","BF","2","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","75%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-08_YB-BFq3",2013-10-07,2013-10-08,"YB","BF","3","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","65%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-10-08_YB-BFq4",2013-10-07,2013-10-08,"YB","BF","4","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-08_YB-BFq9",2013-10-07,2013-10-08,"YB","BF","9","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Julia Bingham","Finished","Full","Cropped","3%","Mussel and littorine counts low due to some glare"
+"2013-10-08_YB-BFq1",2013-10-07,2013-10-08,"YB","BF","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","85%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-08_YB-BFq2",2013-10-07,2013-10-08,"YB","BF","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","75%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-08_YB-BFq3",2013-10-07,2013-10-08,"YB","BF","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","65%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-10-08_YB-BFq4",2013-10-07,2013-10-08,"YB","BF","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-08_YB-BFq9",2013-10-07,2013-10-08,"YB","BF","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Julia Bingham","Finished","Full","Cropped","3%","Mussel and littorine counts low due to some glare"
+"2013-10-08_YB-BFq1",2013-10-07,2013-10-08,"YB","BF","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","85%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-08_YB-BFq2",2013-10-07,2013-10-08,"YB","BF","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-08_YB-BFq3",2013-10-07,2013-10-08,"YB","BF","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-10-08_YB-BFq4",2013-10-07,2013-10-08,"YB","BF","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-08_YB-BFq9",2013-10-07,2013-10-08,"YB","BF","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","3%","Mussel and littorine counts low due to some glare"
+"2013-10-08_YB-BFq1",2013-10-07,2013-10-08,"YB","BF","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","85%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-08_YB-BFq2",2013-10-07,2013-10-08,"YB","BF","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-08_YB-BFq3",2013-10-07,2013-10-08,"YB","BF","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-10-08_YB-BFq4",2013-10-07,2013-10-08,"YB","BF","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-08_YB-BFq9",2013-10-07,2013-10-08,"YB","BF","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","3%","Mussel and littorine counts low due to some glare"
+"2013-10-08_YB-BFq1",2013-10-07,2013-10-08,"YB","BF","1","Lim","Limpets","Type 12",36,0.0875,411.428571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","85%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-08_YB-BFq2",2013-10-07,2013-10-08,"YB","BF","2","Lim","Limpets","Type 12",10,0.0875,114.285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-08_YB-BFq3",2013-10-07,2013-10-08,"YB","BF","3","Lim","Limpets","Type 12",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-10-08_YB-BFq4",2013-10-07,2013-10-08,"YB","BF","4","Lim","Limpets","Type 12",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-08_YB-BFq9",2013-10-07,2013-10-08,"YB","BF","9","Lim","Limpets","Type 12",29,0.0875,331.428571428571,NA,"Julia Bingham","Finished","Full","Cropped","3%","Mussel and littorine counts low due to some glare"
+"2013-10-08_YB-BFq1",2013-10-07,2013-10-08,"YB","BF","1","Ls","Littorina_sitkana","Type 13",159,0.0875,1817.14285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","85%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-08_YB-BFq2",2013-10-07,2013-10-08,"YB","BF","2","Ls","Littorina_sitkana","Type 13",148,0.0875,1691.42857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-08_YB-BFq3",2013-10-07,2013-10-08,"YB","BF","3","Ls","Littorina_sitkana","Type 13",144,0.0875,1645.71428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-10-08_YB-BFq4",2013-10-07,2013-10-08,"YB","BF","4","Ls","Littorina_sitkana","Type 13",119,0.0875,1360,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-08_YB-BFq9",2013-10-07,2013-10-08,"YB","BF","9","Ls","Littorina_sitkana","Type 13",236,0.0875,2697.14285714286,NA,"Julia Bingham","Finished","Full","Cropped","3%","Mussel and littorine counts low due to some glare"
+"2013-10-08_YB-BFq1",2013-10-07,2013-10-08,"YB","BF","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","85%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-08_YB-BFq2",2013-10-07,2013-10-08,"YB","BF","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-08_YB-BFq3",2013-10-07,2013-10-08,"YB","BF","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-10-08_YB-BFq4",2013-10-07,2013-10-08,"YB","BF","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-08_YB-BFq9",2013-10-07,2013-10-08,"YB","BF","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","3%","Mussel and littorine counts low due to some glare"
+"2013-10-08_YB-BFq1",2013-10-07,2013-10-08,"YB","BF","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","85%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-08_YB-BFq2",2013-10-07,2013-10-08,"YB","BF","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-08_YB-BFq3",2013-10-07,2013-10-08,"YB","BF","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-10-08_YB-BFq4",2013-10-07,2013-10-08,"YB","BF","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-08_YB-BFq9",2013-10-07,2013-10-08,"YB","BF","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","3%","Mussel and littorine counts low due to some glare"
+"2013-10-08_YB-BFq1",2013-10-07,2013-10-08,"YB","BF","1","Myt","Mytilus_spp","Type 7",36,0.0875,411.428571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","85%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-08_YB-BFq2",2013-10-07,2013-10-08,"YB","BF","2","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-08_YB-BFq3",2013-10-07,2013-10-08,"YB","BF","3","Myt","Mytilus_spp","Type 7",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-10-08_YB-BFq4",2013-10-07,2013-10-08,"YB","BF","4","Myt","Mytilus_spp","Type 7",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-08_YB-BFq9",2013-10-07,2013-10-08,"YB","BF","9","Myt","Mytilus_spp","Type 7",1189,0.0875,13588.5714285714,NA,"Julia Bingham","Finished","Full","Cropped","3%","Mussel and littorine counts low due to some glare"
+"2013-10-08_YB-BFq1",2013-10-07,2013-10-08,"YB","BF","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","85%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-08_YB-BFq2",2013-10-07,2013-10-08,"YB","BF","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-08_YB-BFq3",2013-10-07,2013-10-08,"YB","BF","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-10-08_YB-BFq4",2013-10-07,2013-10-08,"YB","BF","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-08_YB-BFq9",2013-10-07,2013-10-08,"YB","BF","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","3%","Mussel and littorine counts low due to some glare"
+"2013-10-08_YB-BFq1",2013-10-07,2013-10-08,"YB","BF","1","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","85%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-08_YB-BFq2",2013-10-07,2013-10-08,"YB","BF","2","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-08_YB-BFq3",2013-10-07,2013-10-08,"YB","BF","3","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-10-08_YB-BFq4",2013-10-07,2013-10-08,"YB","BF","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-08_YB-BFq9",2013-10-07,2013-10-08,"YB","BF","9","Mt","Mytilus_trossulus","Type 15",45,0.0875,514.285714285714,NA,"Julia Bingham","Finished","Full","Cropped","3%","Mussel and littorine counts low due to some glare"
+"2013-10-08_YB-BFq1",2013-10-07,2013-10-08,"YB","BF","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","85%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-08_YB-BFq2",2013-10-07,2013-10-08,"YB","BF","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-08_YB-BFq3",2013-10-07,2013-10-08,"YB","BF","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-10-08_YB-BFq4",2013-10-07,2013-10-08,"YB","BF","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-08_YB-BFq9",2013-10-07,2013-10-08,"YB","BF","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","3%","Mussel and littorine counts low due to some glare"
+"2013-10-08_YB-BFq1",2013-10-07,2013-10-08,"YB","BF","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","85%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-08_YB-BFq2",2013-10-07,2013-10-08,"YB","BF","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-08_YB-BFq3",2013-10-07,2013-10-08,"YB","BF","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-10-08_YB-BFq4",2013-10-07,2013-10-08,"YB","BF","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-08_YB-BFq9",2013-10-07,2013-10-08,"YB","BF","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","3%","Mussel and littorine counts low due to some glare"
+"2013-10-08_YB-BFq1",2013-10-07,2013-10-08,"YB","BF","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","85%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-08_YB-BFq2",2013-10-07,2013-10-08,"YB","BF","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-08_YB-BFq3",2013-10-07,2013-10-08,"YB","BF","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-10-08_YB-BFq4",2013-10-07,2013-10-08,"YB","BF","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-08_YB-BFq9",2013-10-07,2013-10-08,"YB","BF","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","3%","Mussel and littorine counts low due to some glare"
+"2013-10-08_YB-BFq1",2013-10-07,2013-10-08,"YB","BF","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","85%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-08_YB-BFq2",2013-10-07,2013-10-08,"YB","BF","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-08_YB-BFq3",2013-10-07,2013-10-08,"YB","BF","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-10-08_YB-BFq4",2013-10-07,2013-10-08,"YB","BF","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-08_YB-BFq9",2013-10-07,2013-10-08,"YB","BF","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","3%","Mussel and littorine counts low due to some glare"
+"2013-10-08_YB-BFq1",2013-10-07,2013-10-08,"YB","BF","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","85%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-08_YB-BFq2",2013-10-07,2013-10-08,"YB","BF","2","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-08_YB-BFq3",2013-10-07,2013-10-08,"YB","BF","3","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-10-08_YB-BFq4",2013-10-07,2013-10-08,"YB","BF","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-08_YB-BFq9",2013-10-07,2013-10-08,"YB","BF","9","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","3%","Mussel and littorine counts low due to some glare"
+"2013-10-08_YB-BFq1",2013-10-07,2013-10-08,"YB","BF","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","85%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-08_YB-BFq2",2013-10-07,2013-10-08,"YB","BF","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-08_YB-BFq3",2013-10-07,2013-10-08,"YB","BF","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-10-08_YB-BFq4",2013-10-07,2013-10-08,"YB","BF","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-08_YB-BFq9",2013-10-07,2013-10-08,"YB","BF","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","3%","Mussel and littorine counts low due to some glare"
+"2013-10-08_YB-BFq1",2013-10-07,2013-10-08,"YB","BF","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","85%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-08_YB-BFq2",2013-10-07,2013-10-08,"YB","BF","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-08_YB-BFq3",2013-10-07,2013-10-08,"YB","BF","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-10-08_YB-BFq4",2013-10-07,2013-10-08,"YB","BF","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-08_YB-BFq9",2013-10-07,2013-10-08,"YB","BF","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","3%","Mussel and littorine counts low due to some glare"
+"2013-10-08_YB-BFq1",2013-10-07,2013-10-08,"YB","BF","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","85%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-08_YB-BFq2",2013-10-07,2013-10-08,"YB","BF","2","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-08_YB-BFq3",2013-10-07,2013-10-08,"YB","BF","3","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-10-08_YB-BFq4",2013-10-07,2013-10-08,"YB","BF","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-08_YB-BFq9",2013-10-07,2013-10-08,"YB","BF","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","3%","Mussel and littorine counts low due to some glare"
+"2013-10-08_YB-BFq1",2013-10-07,2013-10-08,"YB","BF","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","85%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-08_YB-BFq2",2013-10-07,2013-10-08,"YB","BF","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-08_YB-BFq3",2013-10-07,2013-10-08,"YB","BF","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-10-08_YB-BFq4",2013-10-07,2013-10-08,"YB","BF","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-08_YB-BFq9",2013-10-07,2013-10-08,"YB","BF","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","3%","Mussel and littorine counts low due to some glare"
+"2013-10-08_YB-BFq1",2013-10-07,2013-10-08,"YB","BF","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","85%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-08_YB-BFq2",2013-10-07,2013-10-08,"YB","BF","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-08_YB-BFq3",2013-10-07,2013-10-08,"YB","BF","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-10-08_YB-BFq4",2013-10-07,2013-10-08,"YB","BF","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-08_YB-BFq9",2013-10-07,2013-10-08,"YB","BF","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","3%","Mussel and littorine counts low due to some glare"
+"2013-10-08_YB-BFq1",2013-10-07,2013-10-08,"YB","BF","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","85%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-08_YB-BFq2",2013-10-07,2013-10-08,"YB","BF","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-08_YB-BFq3",2013-10-07,2013-10-08,"YB","BF","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-10-08_YB-BFq4",2013-10-07,2013-10-08,"YB","BF","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-08_YB-BFq9",2013-10-07,2013-10-08,"YB","BF","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","3%","Mussel and littorine counts low due to some glare"
+"2013-10-07_YB-Cq2",2013-10-07,2013-10-07,"YB","C","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-10-07_YB-Cq4",2013-10-07,2013-10-07,"YB","C","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-07_YB-Cq5",2013-10-07,2013-10-07,"YB","C","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts likely low due to algae film"
+"2013-10-07_YB-Cq6",2013-10-07,2013-10-07,"YB","C","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-10-07_YB-Cq2",2013-10-07,2013-10-07,"YB","C","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-10-07_YB-Cq4",2013-10-07,2013-10-07,"YB","C","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-07_YB-Cq5",2013-10-07,2013-10-07,"YB","C","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts likely low due to algae film"
+"2013-10-07_YB-Cq6",2013-10-07,2013-10-07,"YB","C","6","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-10-07_YB-Cq2",2013-10-07,2013-10-07,"YB","C","2","Bg","Balanus_glandula","Type 1",1355,0.015625,86720,"c","Beatriz Vaca","Finished","Full","Cropped","80%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-10-07_YB-Cq4",2013-10-07,2013-10-07,"YB","C","4","Bg","Balanus_glandula","Type 1",1088,0.015625,69632,"c","Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-07_YB-Cq5",2013-10-07,2013-10-07,"YB","C","5","Bg","Balanus_glandula","Type 1",979,0.015625,62656,"c","Stephanie Merhoff","Finished","Full","Cropped","50%","Counts likely low due to algae film"
+"2013-10-07_YB-Cq6",2013-10-07,2013-10-07,"YB","C","6","Bg","Balanus_glandula","Type 1",993,0.015625,63552,"c","Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-10-07_YB-Cq2",2013-10-07,2013-10-07,"YB","C","2","BgD","Balanus_glandula_(dead)","Type 2",15,0.015625,960,"c","Beatriz Vaca","Finished","Full","Cropped","80%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-10-07_YB-Cq4",2013-10-07,2013-10-07,"YB","C","4","BgD","Balanus_glandula_(dead)","Type 2",8,0.015625,512,"c","Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-07_YB-Cq5",2013-10-07,2013-10-07,"YB","C","5","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","50%","Counts likely low due to algae film"
+"2013-10-07_YB-Cq6",2013-10-07,2013-10-07,"YB","C","6","BgD","Balanus_glandula_(dead)","Type 2",4,0.015625,256,"c","Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-10-07_YB-Cq2",2013-10-07,2013-10-07,"YB","C","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-10-07_YB-Cq4",2013-10-07,2013-10-07,"YB","C","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-07_YB-Cq5",2013-10-07,2013-10-07,"YB","C","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts likely low due to algae film"
+"2013-10-07_YB-Cq6",2013-10-07,2013-10-07,"YB","C","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-10-07_YB-Cq2",2013-10-07,2013-10-07,"YB","C","2","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","80%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-10-07_YB-Cq4",2013-10-07,2013-10-07,"YB","C","4","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-07_YB-Cq5",2013-10-07,2013-10-07,"YB","C","5","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","50%","Counts likely low due to algae film"
+"2013-10-07_YB-Cq6",2013-10-07,2013-10-07,"YB","C","6","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-10-07_YB-Cq2",2013-10-07,2013-10-07,"YB","C","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","80%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-10-07_YB-Cq4",2013-10-07,2013-10-07,"YB","C","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-07_YB-Cq5",2013-10-07,2013-10-07,"YB","C","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","50%","Counts likely low due to algae film"
+"2013-10-07_YB-Cq6",2013-10-07,2013-10-07,"YB","C","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-10-07_YB-Cq2",2013-10-07,2013-10-07,"YB","C","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-10-07_YB-Cq4",2013-10-07,2013-10-07,"YB","C","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-07_YB-Cq5",2013-10-07,2013-10-07,"YB","C","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts likely low due to algae film"
+"2013-10-07_YB-Cq6",2013-10-07,2013-10-07,"YB","C","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-10-07_YB-Cq2",2013-10-07,2013-10-07,"YB","C","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-10-07_YB-Cq4",2013-10-07,2013-10-07,"YB","C","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-07_YB-Cq5",2013-10-07,2013-10-07,"YB","C","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts likely low due to algae film"
+"2013-10-07_YB-Cq6",2013-10-07,2013-10-07,"YB","C","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-10-07_YB-Cq2",2013-10-07,2013-10-07,"YB","C","2","Lim","Limpets","Type 12",14,0.0875,160,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-10-07_YB-Cq4",2013-10-07,2013-10-07,"YB","C","4","Lim","Limpets","Type 12",18,0.0875,205.714285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-07_YB-Cq5",2013-10-07,2013-10-07,"YB","C","5","Lim","Limpets","Type 12",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts likely low due to algae film"
+"2013-10-07_YB-Cq6",2013-10-07,2013-10-07,"YB","C","6","Lim","Limpets","Type 12",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-10-07_YB-Cq2",2013-10-07,2013-10-07,"YB","C","2","Ls","Littorina_sitkana","Type 13",72,0.0875,822.857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-10-07_YB-Cq4",2013-10-07,2013-10-07,"YB","C","4","Ls","Littorina_sitkana","Type 13",286,0.0875,3268.57142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-07_YB-Cq5",2013-10-07,2013-10-07,"YB","C","5","Ls","Littorina_sitkana","Type 13",48,0.0875,548.571428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts likely low due to algae film"
+"2013-10-07_YB-Cq6",2013-10-07,2013-10-07,"YB","C","6","Ls","Littorina_sitkana","Type 13",65,0.0875,742.857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-10-07_YB-Cq2",2013-10-07,2013-10-07,"YB","C","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-10-07_YB-Cq4",2013-10-07,2013-10-07,"YB","C","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-07_YB-Cq5",2013-10-07,2013-10-07,"YB","C","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts likely low due to algae film"
+"2013-10-07_YB-Cq6",2013-10-07,2013-10-07,"YB","C","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-10-07_YB-Cq2",2013-10-07,2013-10-07,"YB","C","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-10-07_YB-Cq4",2013-10-07,2013-10-07,"YB","C","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-07_YB-Cq5",2013-10-07,2013-10-07,"YB","C","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts likely low due to algae film"
+"2013-10-07_YB-Cq6",2013-10-07,2013-10-07,"YB","C","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-10-07_YB-Cq2",2013-10-07,2013-10-07,"YB","C","2","Myt","Mytilus_spp","Type 7",571,0.0875,6525.71428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-10-07_YB-Cq4",2013-10-07,2013-10-07,"YB","C","4","Myt","Mytilus_spp","Type 7",113,0.0875,1291.42857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-07_YB-Cq5",2013-10-07,2013-10-07,"YB","C","5","Myt","Mytilus_spp","Type 7",150,0.0875,1714.28571428571,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts likely low due to algae film"
+"2013-10-07_YB-Cq6",2013-10-07,2013-10-07,"YB","C","6","Myt","Mytilus_spp","Type 7",63,0.0875,720,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-10-07_YB-Cq2",2013-10-07,2013-10-07,"YB","C","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-10-07_YB-Cq4",2013-10-07,2013-10-07,"YB","C","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-07_YB-Cq5",2013-10-07,2013-10-07,"YB","C","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts likely low due to algae film"
+"2013-10-07_YB-Cq6",2013-10-07,2013-10-07,"YB","C","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-10-07_YB-Cq2",2013-10-07,2013-10-07,"YB","C","2","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-10-07_YB-Cq4",2013-10-07,2013-10-07,"YB","C","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-07_YB-Cq5",2013-10-07,2013-10-07,"YB","C","5","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts likely low due to algae film"
+"2013-10-07_YB-Cq6",2013-10-07,2013-10-07,"YB","C","6","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-10-07_YB-Cq2",2013-10-07,2013-10-07,"YB","C","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-10-07_YB-Cq4",2013-10-07,2013-10-07,"YB","C","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-07_YB-Cq5",2013-10-07,2013-10-07,"YB","C","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts likely low due to algae film"
+"2013-10-07_YB-Cq6",2013-10-07,2013-10-07,"YB","C","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-10-07_YB-Cq2",2013-10-07,2013-10-07,"YB","C","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-10-07_YB-Cq4",2013-10-07,2013-10-07,"YB","C","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-07_YB-Cq5",2013-10-07,2013-10-07,"YB","C","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts likely low due to algae film"
+"2013-10-07_YB-Cq6",2013-10-07,2013-10-07,"YB","C","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-10-07_YB-Cq2",2013-10-07,2013-10-07,"YB","C","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-10-07_YB-Cq4",2013-10-07,2013-10-07,"YB","C","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-07_YB-Cq5",2013-10-07,2013-10-07,"YB","C","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts likely low due to algae film"
+"2013-10-07_YB-Cq6",2013-10-07,2013-10-07,"YB","C","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-10-07_YB-Cq2",2013-10-07,2013-10-07,"YB","C","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-10-07_YB-Cq4",2013-10-07,2013-10-07,"YB","C","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-07_YB-Cq5",2013-10-07,2013-10-07,"YB","C","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts likely low due to algae film"
+"2013-10-07_YB-Cq6",2013-10-07,2013-10-07,"YB","C","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-10-07_YB-Cq2",2013-10-07,2013-10-07,"YB","C","2","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-10-07_YB-Cq4",2013-10-07,2013-10-07,"YB","C","4","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-07_YB-Cq5",2013-10-07,2013-10-07,"YB","C","5","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts likely low due to algae film"
+"2013-10-07_YB-Cq6",2013-10-07,2013-10-07,"YB","C","6","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-10-07_YB-Cq2",2013-10-07,2013-10-07,"YB","C","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-10-07_YB-Cq4",2013-10-07,2013-10-07,"YB","C","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-07_YB-Cq5",2013-10-07,2013-10-07,"YB","C","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts likely low due to algae film"
+"2013-10-07_YB-Cq6",2013-10-07,2013-10-07,"YB","C","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-10-07_YB-Cq2",2013-10-07,2013-10-07,"YB","C","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-10-07_YB-Cq4",2013-10-07,2013-10-07,"YB","C","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-07_YB-Cq5",2013-10-07,2013-10-07,"YB","C","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts likely low due to algae film"
+"2013-10-07_YB-Cq6",2013-10-07,2013-10-07,"YB","C","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-10-07_YB-Cq2",2013-10-07,2013-10-07,"YB","C","2","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-10-07_YB-Cq4",2013-10-07,2013-10-07,"YB","C","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-07_YB-Cq5",2013-10-07,2013-10-07,"YB","C","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts likely low due to algae film"
+"2013-10-07_YB-Cq6",2013-10-07,2013-10-07,"YB","C","6","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-10-07_YB-Cq2",2013-10-07,2013-10-07,"YB","C","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-10-07_YB-Cq4",2013-10-07,2013-10-07,"YB","C","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-07_YB-Cq5",2013-10-07,2013-10-07,"YB","C","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts likely low due to algae film"
+"2013-10-07_YB-Cq6",2013-10-07,2013-10-07,"YB","C","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-10-07_YB-Cq2",2013-10-07,2013-10-07,"YB","C","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-10-07_YB-Cq4",2013-10-07,2013-10-07,"YB","C","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-07_YB-Cq5",2013-10-07,2013-10-07,"YB","C","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts likely low due to algae film"
+"2013-10-07_YB-Cq6",2013-10-07,2013-10-07,"YB","C","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-10-07_YB-Cq2",2013-10-07,2013-10-07,"YB","C","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-10-07_YB-Cq4",2013-10-07,2013-10-07,"YB","C","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to algal cover and blur."
+"2013-10-07_YB-Cq5",2013-10-07,2013-10-07,"YB","C","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","50%","Counts likely low due to algae film"
+"2013-10-07_YB-Cq6",2013-10-07,2013-10-07,"YB","C","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-10-07_YB-Dq3",2013-10-07,2013-10-07,"YB","D","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to algae and blurred recruits. Algae is a thin film."
+"2013-10-07_YB-Dq4",2013-10-07,2013-10-07,"YB","D","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-10-07_YB-Dq5",2013-10-07,2013-10-07,"YB","D","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Algae is a thin film."
+"2013-10-07_YB-Dq3",2013-10-07,2013-10-07,"YB","D","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to algae and blurred recruits. Algae is a thin film."
+"2013-10-07_YB-Dq4",2013-10-07,2013-10-07,"YB","D","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-10-07_YB-Dq5",2013-10-07,2013-10-07,"YB","D","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Algae is a thin film."
+"2013-10-07_YB-Dq3",2013-10-07,2013-10-07,"YB","D","3","Bg","Balanus_glandula","Type 1",1278,0.015625,81792,"c","Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to algae and blurred recruits. Algae is a thin film."
+"2013-10-07_YB-Dq4",2013-10-07,2013-10-07,"YB","D","4","Bg","Balanus_glandula","Type 1",1012,0.015625,64768,"c","Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-10-07_YB-Dq5",2013-10-07,2013-10-07,"YB","D","5","Bg","Balanus_glandula","Type 1",1491,0.015625,95424,"c","Beatriz Vaca","Finished","Full","Cropped","50%","Algae is a thin film."
+"2013-10-07_YB-Dq3",2013-10-07,2013-10-07,"YB","D","3","BgD","Balanus_glandula_(dead)","Type 2",8,0.015625,512,"c","Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to algae and blurred recruits. Algae is a thin film."
+"2013-10-07_YB-Dq4",2013-10-07,2013-10-07,"YB","D","4","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-10-07_YB-Dq5",2013-10-07,2013-10-07,"YB","D","5","BgD","Balanus_glandula_(dead)","Type 2",1,0.015625,64,"c","Beatriz Vaca","Finished","Full","Cropped","50%","Algae is a thin film."
+"2013-10-07_YB-Dq3",2013-10-07,2013-10-07,"YB","D","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to algae and blurred recruits. Algae is a thin film."
+"2013-10-07_YB-Dq4",2013-10-07,2013-10-07,"YB","D","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-10-07_YB-Dq5",2013-10-07,2013-10-07,"YB","D","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Algae is a thin film."
+"2013-10-07_YB-Dq3",2013-10-07,2013-10-07,"YB","D","3","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to algae and blurred recruits. Algae is a thin film."
+"2013-10-07_YB-Dq4",2013-10-07,2013-10-07,"YB","D","4","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-10-07_YB-Dq5",2013-10-07,2013-10-07,"YB","D","5","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","50%","Algae is a thin film."
+"2013-10-07_YB-Dq3",2013-10-07,2013-10-07,"YB","D","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to algae and blurred recruits. Algae is a thin film."
+"2013-10-07_YB-Dq4",2013-10-07,2013-10-07,"YB","D","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-10-07_YB-Dq5",2013-10-07,2013-10-07,"YB","D","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","50%","Algae is a thin film."
+"2013-10-07_YB-Dq3",2013-10-07,2013-10-07,"YB","D","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to algae and blurred recruits. Algae is a thin film."
+"2013-10-07_YB-Dq4",2013-10-07,2013-10-07,"YB","D","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-10-07_YB-Dq5",2013-10-07,2013-10-07,"YB","D","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Algae is a thin film."
+"2013-10-07_YB-Dq3",2013-10-07,2013-10-07,"YB","D","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to algae and blurred recruits. Algae is a thin film."
+"2013-10-07_YB-Dq4",2013-10-07,2013-10-07,"YB","D","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-10-07_YB-Dq5",2013-10-07,2013-10-07,"YB","D","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Algae is a thin film."
+"2013-10-07_YB-Dq3",2013-10-07,2013-10-07,"YB","D","3","Lim","Limpets","Type 12",14,0.0875,160,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to algae and blurred recruits. Algae is a thin film."
+"2013-10-07_YB-Dq4",2013-10-07,2013-10-07,"YB","D","4","Lim","Limpets","Type 12",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-10-07_YB-Dq5",2013-10-07,2013-10-07,"YB","D","5","Lim","Limpets","Type 12",48,0.0875,548.571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Algae is a thin film."
+"2013-10-07_YB-Dq3",2013-10-07,2013-10-07,"YB","D","3","Ls","Littorina_sitkana","Type 13",148,0.0875,1691.42857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to algae and blurred recruits. Algae is a thin film."
+"2013-10-07_YB-Dq4",2013-10-07,2013-10-07,"YB","D","4","Ls","Littorina_sitkana","Type 13",33,0.0875,377.142857142857,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-10-07_YB-Dq5",2013-10-07,2013-10-07,"YB","D","5","Ls","Littorina_sitkana","Type 13",179,0.0875,2045.71428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Algae is a thin film."
+"2013-10-07_YB-Dq3",2013-10-07,2013-10-07,"YB","D","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to algae and blurred recruits. Algae is a thin film."
+"2013-10-07_YB-Dq4",2013-10-07,2013-10-07,"YB","D","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-10-07_YB-Dq5",2013-10-07,2013-10-07,"YB","D","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Algae is a thin film."
+"2013-10-07_YB-Dq3",2013-10-07,2013-10-07,"YB","D","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to algae and blurred recruits. Algae is a thin film."
+"2013-10-07_YB-Dq4",2013-10-07,2013-10-07,"YB","D","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-10-07_YB-Dq5",2013-10-07,2013-10-07,"YB","D","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Algae is a thin film."
+"2013-10-07_YB-Dq3",2013-10-07,2013-10-07,"YB","D","3","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to algae and blurred recruits. Algae is a thin film."
+"2013-10-07_YB-Dq4",2013-10-07,2013-10-07,"YB","D","4","Myt","Mytilus_spp","Type 7",204,0.0875,2331.42857142857,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-10-07_YB-Dq5",2013-10-07,2013-10-07,"YB","D","5","Myt","Mytilus_spp","Type 7",265,0.0875,3028.57142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Algae is a thin film."
+"2013-10-07_YB-Dq3",2013-10-07,2013-10-07,"YB","D","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to algae and blurred recruits. Algae is a thin film."
+"2013-10-07_YB-Dq4",2013-10-07,2013-10-07,"YB","D","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-10-07_YB-Dq5",2013-10-07,2013-10-07,"YB","D","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Algae is a thin film."
+"2013-10-07_YB-Dq3",2013-10-07,2013-10-07,"YB","D","3","Mt","Mytilus_trossulus","Type 15",226,0.0875,2582.85714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to algae and blurred recruits. Algae is a thin film."
+"2013-10-07_YB-Dq4",2013-10-07,2013-10-07,"YB","D","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-10-07_YB-Dq5",2013-10-07,2013-10-07,"YB","D","5","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Algae is a thin film."
+"2013-10-07_YB-Dq3",2013-10-07,2013-10-07,"YB","D","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to algae and blurred recruits. Algae is a thin film."
+"2013-10-07_YB-Dq4",2013-10-07,2013-10-07,"YB","D","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-10-07_YB-Dq5",2013-10-07,2013-10-07,"YB","D","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Algae is a thin film."
+"2013-10-07_YB-Dq3",2013-10-07,2013-10-07,"YB","D","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to algae and blurred recruits. Algae is a thin film."
+"2013-10-07_YB-Dq4",2013-10-07,2013-10-07,"YB","D","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-10-07_YB-Dq5",2013-10-07,2013-10-07,"YB","D","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Algae is a thin film."
+"2013-10-07_YB-Dq3",2013-10-07,2013-10-07,"YB","D","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to algae and blurred recruits. Algae is a thin film."
+"2013-10-07_YB-Dq4",2013-10-07,2013-10-07,"YB","D","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-10-07_YB-Dq5",2013-10-07,2013-10-07,"YB","D","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Algae is a thin film."
+"2013-10-07_YB-Dq3",2013-10-07,2013-10-07,"YB","D","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to algae and blurred recruits. Algae is a thin film."
+"2013-10-07_YB-Dq4",2013-10-07,2013-10-07,"YB","D","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-10-07_YB-Dq5",2013-10-07,2013-10-07,"YB","D","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Algae is a thin film."
+"2013-10-07_YB-Dq3",2013-10-07,2013-10-07,"YB","D","3","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to algae and blurred recruits. Algae is a thin film."
+"2013-10-07_YB-Dq4",2013-10-07,2013-10-07,"YB","D","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-10-07_YB-Dq5",2013-10-07,2013-10-07,"YB","D","5","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Algae is a thin film."
+"2013-10-07_YB-Dq3",2013-10-07,2013-10-07,"YB","D","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to algae and blurred recruits. Algae is a thin film."
+"2013-10-07_YB-Dq4",2013-10-07,2013-10-07,"YB","D","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-10-07_YB-Dq5",2013-10-07,2013-10-07,"YB","D","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Algae is a thin film."
+"2013-10-07_YB-Dq3",2013-10-07,2013-10-07,"YB","D","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to algae and blurred recruits. Algae is a thin film."
+"2013-10-07_YB-Dq4",2013-10-07,2013-10-07,"YB","D","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-10-07_YB-Dq5",2013-10-07,2013-10-07,"YB","D","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Algae is a thin film."
+"2013-10-07_YB-Dq3",2013-10-07,2013-10-07,"YB","D","3","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to algae and blurred recruits. Algae is a thin film."
+"2013-10-07_YB-Dq4",2013-10-07,2013-10-07,"YB","D","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-10-07_YB-Dq5",2013-10-07,2013-10-07,"YB","D","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Algae is a thin film."
+"2013-10-07_YB-Dq3",2013-10-07,2013-10-07,"YB","D","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to algae and blurred recruits. Algae is a thin film."
+"2013-10-07_YB-Dq4",2013-10-07,2013-10-07,"YB","D","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-10-07_YB-Dq5",2013-10-07,2013-10-07,"YB","D","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Algae is a thin film."
+"2013-10-07_YB-Dq3",2013-10-07,2013-10-07,"YB","D","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to algae and blurred recruits. Algae is a thin film."
+"2013-10-07_YB-Dq4",2013-10-07,2013-10-07,"YB","D","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-10-07_YB-Dq5",2013-10-07,2013-10-07,"YB","D","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Algae is a thin film."
+"2013-10-07_YB-Dq3",2013-10-07,2013-10-07,"YB","D","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to algae and blurred recruits. Algae is a thin film."
+"2013-10-07_YB-Dq4",2013-10-07,2013-10-07,"YB","D","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-10-07_YB-Dq5",2013-10-07,2013-10-07,"YB","D","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Algae is a thin film."
+"2013-10-07_YB-Eq3",2013-10-07,2013-10-07,"YB","E","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare"
+"2013-10-07_YB-Eq4",2013-10-07,2013-10-07,"YB","E","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to blur"
+"2013-10-07_YB-Eq8",2013-10-07,2013-10-07,"YB","E","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to glare and blur"
+"2013-10-07_YB-Eq3",2013-10-07,2013-10-07,"YB","E","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare"
+"2013-10-07_YB-Eq4",2013-10-07,2013-10-07,"YB","E","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to blur"
+"2013-10-07_YB-Eq8",2013-10-07,2013-10-07,"YB","E","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to glare and blur"
+"2013-10-07_YB-Eq3",2013-10-07,2013-10-07,"YB","E","3","Bg","Balanus_glandula","Type 1",534,0.015625,34176,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare"
+"2013-10-07_YB-Eq4",2013-10-07,2013-10-07,"YB","E","4","Bg","Balanus_glandula","Type 1",672,0.015625,43008,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to blur"
+"2013-10-07_YB-Eq8",2013-10-07,2013-10-07,"YB","E","8","Bg","Balanus_glandula","Type 1",916,0.015625,58624,"c","Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to glare and blur"
+"2013-10-07_YB-Eq3",2013-10-07,2013-10-07,"YB","E","3","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare"
+"2013-10-07_YB-Eq4",2013-10-07,2013-10-07,"YB","E","4","BgD","Balanus_glandula_(dead)","Type 2",1,0.015625,64,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to blur"
+"2013-10-07_YB-Eq8",2013-10-07,2013-10-07,"YB","E","8","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to glare and blur"
+"2013-10-07_YB-Eq3",2013-10-07,2013-10-07,"YB","E","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare"
+"2013-10-07_YB-Eq4",2013-10-07,2013-10-07,"YB","E","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to blur"
+"2013-10-07_YB-Eq8",2013-10-07,2013-10-07,"YB","E","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to glare and blur"
+"2013-10-07_YB-Eq3",2013-10-07,2013-10-07,"YB","E","3","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare"
+"2013-10-07_YB-Eq4",2013-10-07,2013-10-07,"YB","E","4","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to blur"
+"2013-10-07_YB-Eq8",2013-10-07,2013-10-07,"YB","E","8","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to glare and blur"
+"2013-10-07_YB-Eq3",2013-10-07,2013-10-07,"YB","E","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare"
+"2013-10-07_YB-Eq4",2013-10-07,2013-10-07,"YB","E","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to blur"
+"2013-10-07_YB-Eq8",2013-10-07,2013-10-07,"YB","E","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to glare and blur"
+"2013-10-07_YB-Eq3",2013-10-07,2013-10-07,"YB","E","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare"
+"2013-10-07_YB-Eq4",2013-10-07,2013-10-07,"YB","E","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to blur"
+"2013-10-07_YB-Eq8",2013-10-07,2013-10-07,"YB","E","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to glare and blur"
+"2013-10-07_YB-Eq3",2013-10-07,2013-10-07,"YB","E","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare"
+"2013-10-07_YB-Eq4",2013-10-07,2013-10-07,"YB","E","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to blur"
+"2013-10-07_YB-Eq8",2013-10-07,2013-10-07,"YB","E","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to glare and blur"
+"2013-10-07_YB-Eq3",2013-10-07,2013-10-07,"YB","E","3","Lim","Limpets","Type 12",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare"
+"2013-10-07_YB-Eq4",2013-10-07,2013-10-07,"YB","E","4","Lim","Limpets","Type 12",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to blur"
+"2013-10-07_YB-Eq8",2013-10-07,2013-10-07,"YB","E","8","Lim","Limpets","Type 12",6,0.0875,68.5714285714286,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to glare and blur"
+"2013-10-07_YB-Eq3",2013-10-07,2013-10-07,"YB","E","3","Ls","Littorina_sitkana","Type 13",19,0.0875,217.142857142857,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare"
+"2013-10-07_YB-Eq4",2013-10-07,2013-10-07,"YB","E","4","Ls","Littorina_sitkana","Type 13",8,0.0875,91.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to blur"
+"2013-10-07_YB-Eq8",2013-10-07,2013-10-07,"YB","E","8","Ls","Littorina_sitkana","Type 13",26,0.0875,297.142857142857,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to glare and blur"
+"2013-10-07_YB-Eq3",2013-10-07,2013-10-07,"YB","E","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare"
+"2013-10-07_YB-Eq4",2013-10-07,2013-10-07,"YB","E","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to blur"
+"2013-10-07_YB-Eq8",2013-10-07,2013-10-07,"YB","E","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to glare and blur"
+"2013-10-07_YB-Eq3",2013-10-07,2013-10-07,"YB","E","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare"
+"2013-10-07_YB-Eq4",2013-10-07,2013-10-07,"YB","E","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to blur"
+"2013-10-07_YB-Eq8",2013-10-07,2013-10-07,"YB","E","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to glare and blur"
+"2013-10-07_YB-Eq3",2013-10-07,2013-10-07,"YB","E","3","Myt","Mytilus_spp","Type 7",289,0.0875,3302.85714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare"
+"2013-10-07_YB-Eq4",2013-10-07,2013-10-07,"YB","E","4","Myt","Mytilus_spp","Type 7",200,0.0875,2285.71428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to blur"
+"2013-10-07_YB-Eq8",2013-10-07,2013-10-07,"YB","E","8","Myt","Mytilus_spp","Type 7",241,0.0875,2754.28571428571,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to glare and blur"
+"2013-10-07_YB-Eq3",2013-10-07,2013-10-07,"YB","E","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare"
+"2013-10-07_YB-Eq4",2013-10-07,2013-10-07,"YB","E","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to blur"
+"2013-10-07_YB-Eq8",2013-10-07,2013-10-07,"YB","E","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to glare and blur"
+"2013-10-07_YB-Eq3",2013-10-07,2013-10-07,"YB","E","3","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare"
+"2013-10-07_YB-Eq4",2013-10-07,2013-10-07,"YB","E","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to blur"
+"2013-10-07_YB-Eq8",2013-10-07,2013-10-07,"YB","E","8","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to glare and blur"
+"2013-10-07_YB-Eq3",2013-10-07,2013-10-07,"YB","E","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare"
+"2013-10-07_YB-Eq4",2013-10-07,2013-10-07,"YB","E","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to blur"
+"2013-10-07_YB-Eq8",2013-10-07,2013-10-07,"YB","E","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to glare and blur"
+"2013-10-07_YB-Eq3",2013-10-07,2013-10-07,"YB","E","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare"
+"2013-10-07_YB-Eq4",2013-10-07,2013-10-07,"YB","E","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to blur"
+"2013-10-07_YB-Eq8",2013-10-07,2013-10-07,"YB","E","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to glare and blur"
+"2013-10-07_YB-Eq3",2013-10-07,2013-10-07,"YB","E","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare"
+"2013-10-07_YB-Eq4",2013-10-07,2013-10-07,"YB","E","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to blur"
+"2013-10-07_YB-Eq8",2013-10-07,2013-10-07,"YB","E","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to glare and blur"
+"2013-10-07_YB-Eq3",2013-10-07,2013-10-07,"YB","E","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare"
+"2013-10-07_YB-Eq4",2013-10-07,2013-10-07,"YB","E","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to blur"
+"2013-10-07_YB-Eq8",2013-10-07,2013-10-07,"YB","E","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to glare and blur"
+"2013-10-07_YB-Eq3",2013-10-07,2013-10-07,"YB","E","3","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare"
+"2013-10-07_YB-Eq4",2013-10-07,2013-10-07,"YB","E","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to blur"
+"2013-10-07_YB-Eq8",2013-10-07,2013-10-07,"YB","E","8","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to glare and blur"
+"2013-10-07_YB-Eq3",2013-10-07,2013-10-07,"YB","E","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare"
+"2013-10-07_YB-Eq4",2013-10-07,2013-10-07,"YB","E","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to blur"
+"2013-10-07_YB-Eq8",2013-10-07,2013-10-07,"YB","E","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to glare and blur"
+"2013-10-07_YB-Eq3",2013-10-07,2013-10-07,"YB","E","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare"
+"2013-10-07_YB-Eq4",2013-10-07,2013-10-07,"YB","E","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to blur"
+"2013-10-07_YB-Eq8",2013-10-07,2013-10-07,"YB","E","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to glare and blur"
+"2013-10-07_YB-Eq3",2013-10-07,2013-10-07,"YB","E","3","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare"
+"2013-10-07_YB-Eq4",2013-10-07,2013-10-07,"YB","E","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to blur"
+"2013-10-07_YB-Eq8",2013-10-07,2013-10-07,"YB","E","8","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to glare and blur"
+"2013-10-07_YB-Eq3",2013-10-07,2013-10-07,"YB","E","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare"
+"2013-10-07_YB-Eq4",2013-10-07,2013-10-07,"YB","E","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to blur"
+"2013-10-07_YB-Eq8",2013-10-07,2013-10-07,"YB","E","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to glare and blur"
+"2013-10-07_YB-Eq3",2013-10-07,2013-10-07,"YB","E","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare"
+"2013-10-07_YB-Eq4",2013-10-07,2013-10-07,"YB","E","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to blur"
+"2013-10-07_YB-Eq8",2013-10-07,2013-10-07,"YB","E","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to glare and blur"
+"2013-10-07_YB-Eq3",2013-10-07,2013-10-07,"YB","E","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare"
+"2013-10-07_YB-Eq4",2013-10-07,2013-10-07,"YB","E","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to blur"
+"2013-10-07_YB-Eq8",2013-10-07,2013-10-07,"YB","E","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts may be low due to glare and blur"
+"2013-10-07_YB-Fq4",2013-10-07,2013-10-07,"YB","F","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-10-07_YB-Fq5",2013-10-07,2013-10-07,"YB","F","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-10-07_YB-Fq6",2013-10-07,2013-10-07,"YB","F","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Counts low due to algae. Algae is mostly a thin film."
+"2013-10-07_YB-Fq7",2013-10-07,2013-10-07,"YB","F","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","counts may be low due to blur and glare"
+"2013-10-07_YB-Fq4",2013-10-07,2013-10-07,"YB","F","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-10-07_YB-Fq5",2013-10-07,2013-10-07,"YB","F","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-10-07_YB-Fq6",2013-10-07,2013-10-07,"YB","F","6","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Counts low due to algae. Algae is mostly a thin film."
+"2013-10-07_YB-Fq7",2013-10-07,2013-10-07,"YB","F","7","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","counts may be low due to blur and glare"
+"2013-10-07_YB-Fq4",2013-10-07,2013-10-07,"YB","F","4","Bg","Balanus_glandula","Type 1",1667,0.015625,106688,"c","Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-10-07_YB-Fq5",2013-10-07,2013-10-07,"YB","F","5","Bg","Balanus_glandula","Type 1",1432,0.015625,91648,"c","Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-10-07_YB-Fq6",2013-10-07,2013-10-07,"YB","F","6","Bg","Balanus_glandula","Type 1",1607,0.015625,102848,"c","Beatriz Vaca","Finished","Full","Cropped","70%","Counts low due to algae. Algae is mostly a thin film."
+"2013-10-07_YB-Fq7",2013-10-07,2013-10-07,"YB","F","7","Bg","Balanus_glandula","Type 1",756,0.015625,48384,"c","Stephanie Merhoff","Finished","Full","Cropped","10%","counts may be low due to blur and glare"
+"2013-10-07_YB-Fq4",2013-10-07,2013-10-07,"YB","F","4","BgD","Balanus_glandula_(dead)","Type 2",7,0.015625,448,"c","Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-10-07_YB-Fq5",2013-10-07,2013-10-07,"YB","F","5","BgD","Balanus_glandula_(dead)","Type 2",2,0.015625,128,"c","Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-10-07_YB-Fq6",2013-10-07,2013-10-07,"YB","F","6","BgD","Balanus_glandula_(dead)","Type 2",7,0.015625,448,"c","Beatriz Vaca","Finished","Full","Cropped","70%","Counts low due to algae. Algae is mostly a thin film."
+"2013-10-07_YB-Fq7",2013-10-07,2013-10-07,"YB","F","7","BgD","Balanus_glandula_(dead)","Type 2",1,0.015625,64,"c","Stephanie Merhoff","Finished","Full","Cropped","10%","counts may be low due to blur and glare"
+"2013-10-07_YB-Fq4",2013-10-07,2013-10-07,"YB","F","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-10-07_YB-Fq5",2013-10-07,2013-10-07,"YB","F","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-10-07_YB-Fq6",2013-10-07,2013-10-07,"YB","F","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Counts low due to algae. Algae is mostly a thin film."
+"2013-10-07_YB-Fq7",2013-10-07,2013-10-07,"YB","F","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","counts may be low due to blur and glare"
+"2013-10-07_YB-Fq4",2013-10-07,2013-10-07,"YB","F","4","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-10-07_YB-Fq5",2013-10-07,2013-10-07,"YB","F","5","Cth","Chthamalus_dalli","Type 3",3,0.015625,192,"c","Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-10-07_YB-Fq6",2013-10-07,2013-10-07,"YB","F","6","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","70%","Counts low due to algae. Algae is mostly a thin film."
+"2013-10-07_YB-Fq7",2013-10-07,2013-10-07,"YB","F","7","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","10%","counts may be low due to blur and glare"
+"2013-10-07_YB-Fq4",2013-10-07,2013-10-07,"YB","F","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-10-07_YB-Fq5",2013-10-07,2013-10-07,"YB","F","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-10-07_YB-Fq6",2013-10-07,2013-10-07,"YB","F","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","70%","Counts low due to algae. Algae is mostly a thin film."
+"2013-10-07_YB-Fq7",2013-10-07,2013-10-07,"YB","F","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","10%","counts may be low due to blur and glare"
+"2013-10-07_YB-Fq4",2013-10-07,2013-10-07,"YB","F","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-10-07_YB-Fq5",2013-10-07,2013-10-07,"YB","F","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-10-07_YB-Fq6",2013-10-07,2013-10-07,"YB","F","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Counts low due to algae. Algae is mostly a thin film."
+"2013-10-07_YB-Fq7",2013-10-07,2013-10-07,"YB","F","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","counts may be low due to blur and glare"
+"2013-10-07_YB-Fq4",2013-10-07,2013-10-07,"YB","F","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-10-07_YB-Fq5",2013-10-07,2013-10-07,"YB","F","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-10-07_YB-Fq6",2013-10-07,2013-10-07,"YB","F","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Counts low due to algae. Algae is mostly a thin film."
+"2013-10-07_YB-Fq7",2013-10-07,2013-10-07,"YB","F","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","counts may be low due to blur and glare"
+"2013-10-07_YB-Fq4",2013-10-07,2013-10-07,"YB","F","4","Lim","Limpets","Type 12",439,0.0875,5017.14285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-10-07_YB-Fq5",2013-10-07,2013-10-07,"YB","F","5","Lim","Limpets","Type 12",252,0.0875,2880,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-10-07_YB-Fq6",2013-10-07,2013-10-07,"YB","F","6","Lim","Limpets","Type 12",105,0.0875,1200,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Counts low due to algae. Algae is mostly a thin film."
+"2013-10-07_YB-Fq7",2013-10-07,2013-10-07,"YB","F","7","Lim","Limpets","Type 12",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","counts may be low due to blur and glare"
+"2013-10-07_YB-Fq4",2013-10-07,2013-10-07,"YB","F","4","Ls","Littorina_sitkana","Type 13",217,0.0875,2480,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-10-07_YB-Fq5",2013-10-07,2013-10-07,"YB","F","5","Ls","Littorina_sitkana","Type 13",137,0.0875,1565.71428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-10-07_YB-Fq6",2013-10-07,2013-10-07,"YB","F","6","Ls","Littorina_sitkana","Type 13",62,0.0875,708.571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Counts low due to algae. Algae is mostly a thin film."
+"2013-10-07_YB-Fq7",2013-10-07,2013-10-07,"YB","F","7","Ls","Littorina_sitkana","Type 13",69,0.0875,788.571428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","counts may be low due to blur and glare"
+"2013-10-07_YB-Fq4",2013-10-07,2013-10-07,"YB","F","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-10-07_YB-Fq5",2013-10-07,2013-10-07,"YB","F","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-10-07_YB-Fq6",2013-10-07,2013-10-07,"YB","F","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Counts low due to algae. Algae is mostly a thin film."
+"2013-10-07_YB-Fq7",2013-10-07,2013-10-07,"YB","F","7","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","counts may be low due to blur and glare"
+"2013-10-07_YB-Fq4",2013-10-07,2013-10-07,"YB","F","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-10-07_YB-Fq5",2013-10-07,2013-10-07,"YB","F","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-10-07_YB-Fq6",2013-10-07,2013-10-07,"YB","F","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Counts low due to algae. Algae is mostly a thin film."
+"2013-10-07_YB-Fq7",2013-10-07,2013-10-07,"YB","F","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","counts may be low due to blur and glare"
+"2013-10-07_YB-Fq4",2013-10-07,2013-10-07,"YB","F","4","Myt","Mytilus_spp","Type 7",248,0.0875,2834.28571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-10-07_YB-Fq5",2013-10-07,2013-10-07,"YB","F","5","Myt","Mytilus_spp","Type 7",509,0.0875,5817.14285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-10-07_YB-Fq6",2013-10-07,2013-10-07,"YB","F","6","Myt","Mytilus_spp","Type 7",202,0.0875,2308.57142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Counts low due to algae. Algae is mostly a thin film."
+"2013-10-07_YB-Fq7",2013-10-07,2013-10-07,"YB","F","7","Myt","Mytilus_spp","Type 7",76,0.0875,868.571428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","counts may be low due to blur and glare"
+"2013-10-07_YB-Fq4",2013-10-07,2013-10-07,"YB","F","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-10-07_YB-Fq5",2013-10-07,2013-10-07,"YB","F","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-10-07_YB-Fq6",2013-10-07,2013-10-07,"YB","F","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Counts low due to algae. Algae is mostly a thin film."
+"2013-10-07_YB-Fq7",2013-10-07,2013-10-07,"YB","F","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","counts may be low due to blur and glare"
+"2013-10-07_YB-Fq4",2013-10-07,2013-10-07,"YB","F","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-10-07_YB-Fq5",2013-10-07,2013-10-07,"YB","F","5","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-10-07_YB-Fq6",2013-10-07,2013-10-07,"YB","F","6","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Counts low due to algae. Algae is mostly a thin film."
+"2013-10-07_YB-Fq7",2013-10-07,2013-10-07,"YB","F","7","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","counts may be low due to blur and glare"
+"2013-10-07_YB-Fq4",2013-10-07,2013-10-07,"YB","F","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-10-07_YB-Fq5",2013-10-07,2013-10-07,"YB","F","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-10-07_YB-Fq6",2013-10-07,2013-10-07,"YB","F","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Counts low due to algae. Algae is mostly a thin film."
+"2013-10-07_YB-Fq7",2013-10-07,2013-10-07,"YB","F","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","counts may be low due to blur and glare"
+"2013-10-07_YB-Fq4",2013-10-07,2013-10-07,"YB","F","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-10-07_YB-Fq5",2013-10-07,2013-10-07,"YB","F","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-10-07_YB-Fq6",2013-10-07,2013-10-07,"YB","F","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Counts low due to algae. Algae is mostly a thin film."
+"2013-10-07_YB-Fq7",2013-10-07,2013-10-07,"YB","F","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","counts may be low due to blur and glare"
+"2013-10-07_YB-Fq4",2013-10-07,2013-10-07,"YB","F","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-10-07_YB-Fq5",2013-10-07,2013-10-07,"YB","F","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-10-07_YB-Fq6",2013-10-07,2013-10-07,"YB","F","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Counts low due to algae. Algae is mostly a thin film."
+"2013-10-07_YB-Fq7",2013-10-07,2013-10-07,"YB","F","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","counts may be low due to blur and glare"
+"2013-10-07_YB-Fq4",2013-10-07,2013-10-07,"YB","F","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-10-07_YB-Fq5",2013-10-07,2013-10-07,"YB","F","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-10-07_YB-Fq6",2013-10-07,2013-10-07,"YB","F","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Counts low due to algae. Algae is mostly a thin film."
+"2013-10-07_YB-Fq7",2013-10-07,2013-10-07,"YB","F","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","counts may be low due to blur and glare"
+"2013-10-07_YB-Fq4",2013-10-07,2013-10-07,"YB","F","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-10-07_YB-Fq5",2013-10-07,2013-10-07,"YB","F","5","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-10-07_YB-Fq6",2013-10-07,2013-10-07,"YB","F","6","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Counts low due to algae. Algae is mostly a thin film."
+"2013-10-07_YB-Fq7",2013-10-07,2013-10-07,"YB","F","7","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","counts may be low due to blur and glare"
+"2013-10-07_YB-Fq4",2013-10-07,2013-10-07,"YB","F","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-10-07_YB-Fq5",2013-10-07,2013-10-07,"YB","F","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-10-07_YB-Fq6",2013-10-07,2013-10-07,"YB","F","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Counts low due to algae. Algae is mostly a thin film."
+"2013-10-07_YB-Fq7",2013-10-07,2013-10-07,"YB","F","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","counts may be low due to blur and glare"
+"2013-10-07_YB-Fq4",2013-10-07,2013-10-07,"YB","F","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-10-07_YB-Fq5",2013-10-07,2013-10-07,"YB","F","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-10-07_YB-Fq6",2013-10-07,2013-10-07,"YB","F","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Counts low due to algae. Algae is mostly a thin film."
+"2013-10-07_YB-Fq7",2013-10-07,2013-10-07,"YB","F","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","counts may be low due to blur and glare"
+"2013-10-07_YB-Fq4",2013-10-07,2013-10-07,"YB","F","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-10-07_YB-Fq5",2013-10-07,2013-10-07,"YB","F","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-10-07_YB-Fq6",2013-10-07,2013-10-07,"YB","F","6","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Counts low due to algae. Algae is mostly a thin film."
+"2013-10-07_YB-Fq7",2013-10-07,2013-10-07,"YB","F","7","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","counts may be low due to blur and glare"
+"2013-10-07_YB-Fq4",2013-10-07,2013-10-07,"YB","F","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-10-07_YB-Fq5",2013-10-07,2013-10-07,"YB","F","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-10-07_YB-Fq6",2013-10-07,2013-10-07,"YB","F","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Counts low due to algae. Algae is mostly a thin film."
+"2013-10-07_YB-Fq7",2013-10-07,2013-10-07,"YB","F","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","counts may be low due to blur and glare"
+"2013-10-07_YB-Fq4",2013-10-07,2013-10-07,"YB","F","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-10-07_YB-Fq5",2013-10-07,2013-10-07,"YB","F","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-10-07_YB-Fq6",2013-10-07,2013-10-07,"YB","F","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Counts low due to algae. Algae is mostly a thin film."
+"2013-10-07_YB-Fq7",2013-10-07,2013-10-07,"YB","F","7","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","counts may be low due to blur and glare"
+"2013-10-07_YB-Fq4",2013-10-07,2013-10-07,"YB","F","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-10-07_YB-Fq5",2013-10-07,2013-10-07,"YB","F","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae. Algae is a thin film."
+"2013-10-07_YB-Fq6",2013-10-07,2013-10-07,"YB","F","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Counts low due to algae. Algae is mostly a thin film."
+"2013-10-07_YB-Fq7",2013-10-07,2013-10-07,"YB","F","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","counts may be low due to blur and glare"
+"2013-10-07_YB-Gq3",2013-10-07,2013-10-07,"YB","G","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Cropped","10%","Counts likely low due to blur and glare"
+"2013-10-07_YB-Gq5",2013-10-07,2013-10-07,"YB","G","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%","Counts maybe be low due to byssal threads. ~10% byssal thread coverage."
+"2013-10-07_YB-Gq8",2013-10-07,2013-10-07,"YB","G","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts likely low due to algae film and glare"
+"2013-10-07_YB-Gq3",2013-10-07,2013-10-07,"YB","G","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Cropped","10%","Counts likely low due to blur and glare"
+"2013-10-07_YB-Gq5",2013-10-07,2013-10-07,"YB","G","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%","Counts maybe be low due to byssal threads. ~10% byssal thread coverage."
+"2013-10-07_YB-Gq8",2013-10-07,2013-10-07,"YB","G","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts likely low due to algae film and glare"
+"2013-10-07_YB-Gq3",2013-10-07,2013-10-07,"YB","G","3","Bg","Balanus_glandula","Type 1",58,0.015625,3712,"c","Stephanie Merhoff","Finished","Cropped","Cropped","10%","Counts likely low due to blur and glare"
+"2013-10-07_YB-Gq5",2013-10-07,2013-10-07,"YB","G","5","Bg","Balanus_glandula","Type 1",903,0.015625,57792,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%","Counts maybe be low due to byssal threads. ~10% byssal thread coverage."
+"2013-10-07_YB-Gq8",2013-10-07,2013-10-07,"YB","G","8","Bg","Balanus_glandula","Type 1",802,0.015625,51328,"c","Stephanie Merhoff","Finished","Full","Cropped","20%","Counts likely low due to algae film and glare"
+"2013-10-07_YB-Gq3",2013-10-07,2013-10-07,"YB","G","3","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Cropped","Cropped","10%","Counts likely low due to blur and glare"
+"2013-10-07_YB-Gq5",2013-10-07,2013-10-07,"YB","G","5","BgD","Balanus_glandula_(dead)","Type 2",9,0.015625,576,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%","Counts maybe be low due to byssal threads. ~10% byssal thread coverage."
+"2013-10-07_YB-Gq8",2013-10-07,2013-10-07,"YB","G","8","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","20%","Counts likely low due to algae film and glare"
+"2013-10-07_YB-Gq3",2013-10-07,2013-10-07,"YB","G","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Cropped","10%","Counts likely low due to blur and glare"
+"2013-10-07_YB-Gq5",2013-10-07,2013-10-07,"YB","G","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%","Counts maybe be low due to byssal threads. ~10% byssal thread coverage."
+"2013-10-07_YB-Gq8",2013-10-07,2013-10-07,"YB","G","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts likely low due to algae film and glare"
+"2013-10-07_YB-Gq3",2013-10-07,2013-10-07,"YB","G","3","Cth","Chthamalus_dalli","Type 3",657,0.015625,42048,"c","Stephanie Merhoff","Finished","Cropped","Cropped","10%","Counts likely low due to blur and glare"
+"2013-10-07_YB-Gq5",2013-10-07,2013-10-07,"YB","G","5","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%","Counts maybe be low due to byssal threads. ~10% byssal thread coverage."
+"2013-10-07_YB-Gq8",2013-10-07,2013-10-07,"YB","G","8","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","20%","Counts likely low due to algae film and glare"
+"2013-10-07_YB-Gq3",2013-10-07,2013-10-07,"YB","G","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Cropped","Cropped","10%","Counts likely low due to blur and glare"
+"2013-10-07_YB-Gq5",2013-10-07,2013-10-07,"YB","G","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%","Counts maybe be low due to byssal threads. ~10% byssal thread coverage."
+"2013-10-07_YB-Gq8",2013-10-07,2013-10-07,"YB","G","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","20%","Counts likely low due to algae film and glare"
+"2013-10-07_YB-Gq3",2013-10-07,2013-10-07,"YB","G","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Cropped","10%","Counts likely low due to blur and glare"
+"2013-10-07_YB-Gq5",2013-10-07,2013-10-07,"YB","G","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%","Counts maybe be low due to byssal threads. ~10% byssal thread coverage."
+"2013-10-07_YB-Gq8",2013-10-07,2013-10-07,"YB","G","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts likely low due to algae film and glare"
+"2013-10-07_YB-Gq3",2013-10-07,2013-10-07,"YB","G","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Cropped","10%","Counts likely low due to blur and glare"
+"2013-10-07_YB-Gq5",2013-10-07,2013-10-07,"YB","G","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%","Counts maybe be low due to byssal threads. ~10% byssal thread coverage."
+"2013-10-07_YB-Gq8",2013-10-07,2013-10-07,"YB","G","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts likely low due to algae film and glare"
+"2013-10-07_YB-Gq3",2013-10-07,2013-10-07,"YB","G","3","Lim","Limpets","Type 12",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Cropped","Cropped","10%","Counts likely low due to blur and glare"
+"2013-10-07_YB-Gq5",2013-10-07,2013-10-07,"YB","G","5","Lim","Limpets","Type 12",175,0.0875,2000,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%","Counts maybe be low due to byssal threads. ~10% byssal thread coverage."
+"2013-10-07_YB-Gq8",2013-10-07,2013-10-07,"YB","G","8","Lim","Limpets","Type 12",5,0.0875,57.1428571428571,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts likely low due to algae film and glare"
+"2013-10-07_YB-Gq3",2013-10-07,2013-10-07,"YB","G","3","Ls","Littorina_sitkana","Type 13",41,0.0875,468.571428571429,NA,"Stephanie Merhoff","Finished","Cropped","Cropped","10%","Counts likely low due to blur and glare"
+"2013-10-07_YB-Gq5",2013-10-07,2013-10-07,"YB","G","5","Ls","Littorina_sitkana","Type 13",190,0.0875,2171.42857142857,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%","Counts maybe be low due to byssal threads. ~10% byssal thread coverage."
+"2013-10-07_YB-Gq8",2013-10-07,2013-10-07,"YB","G","8","Ls","Littorina_sitkana","Type 13",40,0.0875,457.142857142857,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts likely low due to algae film and glare"
+"2013-10-07_YB-Gq3",2013-10-07,2013-10-07,"YB","G","3","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Stephanie Merhoff","Finished","Cropped","Cropped","10%","Counts likely low due to blur and glare"
+"2013-10-07_YB-Gq5",2013-10-07,2013-10-07,"YB","G","5","Mc","Mytilus_californianus","Type 17",1,0.015625,64,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%","Counts maybe be low due to byssal threads. ~10% byssal thread coverage."
+"2013-10-07_YB-Gq8",2013-10-07,2013-10-07,"YB","G","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts likely low due to algae film and glare"
+"2013-10-07_YB-Gq3",2013-10-07,2013-10-07,"YB","G","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Stephanie Merhoff","Finished","Cropped","Cropped","10%","Counts likely low due to blur and glare"
+"2013-10-07_YB-Gq5",2013-10-07,2013-10-07,"YB","G","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%","Counts maybe be low due to byssal threads. ~10% byssal thread coverage."
+"2013-10-07_YB-Gq8",2013-10-07,2013-10-07,"YB","G","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts likely low due to algae film and glare"
+"2013-10-07_YB-Gq3",2013-10-07,2013-10-07,"YB","G","3","Myt","Mytilus_spp","Type 7",635,0.015625,40640,"c","Stephanie Merhoff","Finished","Cropped","Cropped","10%","Counts likely low due to blur and glare"
+"2013-10-07_YB-Gq5",2013-10-07,2013-10-07,"YB","G","5","Myt","Mytilus_spp","Type 7",955,0.015625,61120,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%","Counts maybe be low due to byssal threads. ~10% byssal thread coverage."
+"2013-10-07_YB-Gq8",2013-10-07,2013-10-07,"YB","G","8","Myt","Mytilus_spp","Type 7",1080,0.0875,12342.8571428571,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts likely low due to algae film and glare"
+"2013-10-07_YB-Gq3",2013-10-07,2013-10-07,"YB","G","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Stephanie Merhoff","Finished","Cropped","Cropped","10%","Counts likely low due to blur and glare"
+"2013-10-07_YB-Gq5",2013-10-07,2013-10-07,"YB","G","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%","Counts maybe be low due to byssal threads. ~10% byssal thread coverage."
+"2013-10-07_YB-Gq8",2013-10-07,2013-10-07,"YB","G","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts likely low due to algae film and glare"
+"2013-10-07_YB-Gq3",2013-10-07,2013-10-07,"YB","G","3","Mt","Mytilus_trossulus","Type 15",0,0.015625,0,"c","Stephanie Merhoff","Finished","Cropped","Cropped","10%","Counts likely low due to blur and glare"
+"2013-10-07_YB-Gq5",2013-10-07,2013-10-07,"YB","G","5","Mt","Mytilus_trossulus","Type 15",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%","Counts maybe be low due to byssal threads. ~10% byssal thread coverage."
+"2013-10-07_YB-Gq8",2013-10-07,2013-10-07,"YB","G","8","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts likely low due to algae film and glare"
+"2013-10-07_YB-Gq3",2013-10-07,2013-10-07,"YB","G","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Stephanie Merhoff","Finished","Cropped","Cropped","10%","Counts likely low due to blur and glare"
+"2013-10-07_YB-Gq5",2013-10-07,2013-10-07,"YB","G","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%","Counts maybe be low due to byssal threads. ~10% byssal thread coverage."
+"2013-10-07_YB-Gq8",2013-10-07,2013-10-07,"YB","G","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts likely low due to algae film and glare"
+"2013-10-07_YB-Gq3",2013-10-07,2013-10-07,"YB","G","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Cropped","10%","Counts likely low due to blur and glare"
+"2013-10-07_YB-Gq5",2013-10-07,2013-10-07,"YB","G","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%","Counts maybe be low due to byssal threads. ~10% byssal thread coverage."
+"2013-10-07_YB-Gq8",2013-10-07,2013-10-07,"YB","G","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts likely low due to algae film and glare"
+"2013-10-07_YB-Gq3",2013-10-07,2013-10-07,"YB","G","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Cropped","10%","Counts likely low due to blur and glare"
+"2013-10-07_YB-Gq5",2013-10-07,2013-10-07,"YB","G","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%","Counts maybe be low due to byssal threads. ~10% byssal thread coverage."
+"2013-10-07_YB-Gq8",2013-10-07,2013-10-07,"YB","G","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts likely low due to algae film and glare"
+"2013-10-07_YB-Gq3",2013-10-07,2013-10-07,"YB","G","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Cropped","10%","Counts likely low due to blur and glare"
+"2013-10-07_YB-Gq5",2013-10-07,2013-10-07,"YB","G","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%","Counts maybe be low due to byssal threads. ~10% byssal thread coverage."
+"2013-10-07_YB-Gq8",2013-10-07,2013-10-07,"YB","G","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts likely low due to algae film and glare"
+"2013-10-07_YB-Gq3",2013-10-07,2013-10-07,"YB","G","3","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Cropped","10%","Counts likely low due to blur and glare"
+"2013-10-07_YB-Gq5",2013-10-07,2013-10-07,"YB","G","5","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%","Counts maybe be low due to byssal threads. ~10% byssal thread coverage."
+"2013-10-07_YB-Gq8",2013-10-07,2013-10-07,"YB","G","8","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts likely low due to algae film and glare"
+"2013-10-07_YB-Gq3",2013-10-07,2013-10-07,"YB","G","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Cropped","10%","Counts likely low due to blur and glare"
+"2013-10-07_YB-Gq5",2013-10-07,2013-10-07,"YB","G","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%","Counts maybe be low due to byssal threads. ~10% byssal thread coverage."
+"2013-10-07_YB-Gq8",2013-10-07,2013-10-07,"YB","G","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts likely low due to algae film and glare"
+"2013-10-07_YB-Gq3",2013-10-07,2013-10-07,"YB","G","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Cropped","10%","Counts likely low due to blur and glare"
+"2013-10-07_YB-Gq5",2013-10-07,2013-10-07,"YB","G","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%","Counts maybe be low due to byssal threads. ~10% byssal thread coverage."
+"2013-10-07_YB-Gq8",2013-10-07,2013-10-07,"YB","G","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts likely low due to algae film and glare"
+"2013-10-07_YB-Gq3",2013-10-07,2013-10-07,"YB","G","3","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Cropped","10%","Counts likely low due to blur and glare"
+"2013-10-07_YB-Gq5",2013-10-07,2013-10-07,"YB","G","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%","Counts maybe be low due to byssal threads. ~10% byssal thread coverage."
+"2013-10-07_YB-Gq8",2013-10-07,2013-10-07,"YB","G","8","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts likely low due to algae film and glare"
+"2013-10-07_YB-Gq3",2013-10-07,2013-10-07,"YB","G","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Cropped","10%","Counts likely low due to blur and glare"
+"2013-10-07_YB-Gq5",2013-10-07,2013-10-07,"YB","G","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%","Counts maybe be low due to byssal threads. ~10% byssal thread coverage."
+"2013-10-07_YB-Gq8",2013-10-07,2013-10-07,"YB","G","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts likely low due to algae film and glare"
+"2013-10-07_YB-Gq3",2013-10-07,2013-10-07,"YB","G","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Cropped","10%","Counts likely low due to blur and glare"
+"2013-10-07_YB-Gq5",2013-10-07,2013-10-07,"YB","G","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%","Counts maybe be low due to byssal threads. ~10% byssal thread coverage."
+"2013-10-07_YB-Gq8",2013-10-07,2013-10-07,"YB","G","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts likely low due to algae film and glare"
+"2013-10-07_YB-Gq3",2013-10-07,2013-10-07,"YB","G","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Cropped","10%","Counts likely low due to blur and glare"
+"2013-10-07_YB-Gq5",2013-10-07,2013-10-07,"YB","G","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%","Counts maybe be low due to byssal threads. ~10% byssal thread coverage."
+"2013-10-07_YB-Gq8",2013-10-07,2013-10-07,"YB","G","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts likely low due to algae film and glare"
+"2013-11-05_YB-Aq6",2013-11-05,2013-11-05,"YB","A","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2013-11-05_YB-Aq7",2013-11-05,2013-11-05,"YB","A","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2013-11-05_YB-Aq9",2013-11-05,2013-11-05,"YB","A","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-11-05_YB-Aq6",2013-11-05,2013-11-05,"YB","A","6","Ae","Anemones","Type 14",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2013-11-05_YB-Aq7",2013-11-05,2013-11-05,"YB","A","7","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2013-11-05_YB-Aq9",2013-11-05,2013-11-05,"YB","A","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-11-05_YB-Aq6",2013-11-05,2013-11-05,"YB","A","6","Bg","Balanus_glandula","Type 1",758,0.015625,48512,"c","Celeste Moen","Finished","Full","Cropped","0%",""
+"2013-11-05_YB-Aq7",2013-11-05,2013-11-05,"YB","A","7","Bg","Balanus_glandula","Type 1",841,0.015625,53824,"c","Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2013-11-05_YB-Aq9",2013-11-05,2013-11-05,"YB","A","9","Bg","Balanus_glandula","Type 1",839,0.015625,53696,"c","Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-11-05_YB-Aq6",2013-11-05,2013-11-05,"YB","A","6","BgD","Balanus_glandula_(dead)","Type 2",13,0.015625,832,"c","Celeste Moen","Finished","Full","Cropped","0%",""
+"2013-11-05_YB-Aq7",2013-11-05,2013-11-05,"YB","A","7","BgD","Balanus_glandula_(dead)","Type 2",1,0.015625,64,"c","Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2013-11-05_YB-Aq9",2013-11-05,2013-11-05,"YB","A","9","BgD","Balanus_glandula_(dead)","Type 2",1,0.015625,64,"c","Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-11-05_YB-Aq6",2013-11-05,2013-11-05,"YB","A","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2013-11-05_YB-Aq7",2013-11-05,2013-11-05,"YB","A","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2013-11-05_YB-Aq9",2013-11-05,2013-11-05,"YB","A","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-11-05_YB-Aq6",2013-11-05,2013-11-05,"YB","A","6","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Celeste Moen","Finished","Full","Cropped","0%",""
+"2013-11-05_YB-Aq7",2013-11-05,2013-11-05,"YB","A","7","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2013-11-05_YB-Aq9",2013-11-05,2013-11-05,"YB","A","9","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-11-05_YB-Aq6",2013-11-05,2013-11-05,"YB","A","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Celeste Moen","Finished","Full","Cropped","0%",""
+"2013-11-05_YB-Aq7",2013-11-05,2013-11-05,"YB","A","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2013-11-05_YB-Aq9",2013-11-05,2013-11-05,"YB","A","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-11-05_YB-Aq6",2013-11-05,2013-11-05,"YB","A","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2013-11-05_YB-Aq7",2013-11-05,2013-11-05,"YB","A","7","Emp","Emplectonema worm","Type 23",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2013-11-05_YB-Aq9",2013-11-05,2013-11-05,"YB","A","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-11-05_YB-Aq6",2013-11-05,2013-11-05,"YB","A","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2013-11-05_YB-Aq7",2013-11-05,2013-11-05,"YB","A","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2013-11-05_YB-Aq9",2013-11-05,2013-11-05,"YB","A","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-11-05_YB-Aq6",2013-11-05,2013-11-05,"YB","A","6","Lim","Limpets","Type 12",11,0.0875,125.714285714286,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2013-11-05_YB-Aq7",2013-11-05,2013-11-05,"YB","A","7","Lim","Limpets","Type 12",81,0.0875,925.714285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2013-11-05_YB-Aq9",2013-11-05,2013-11-05,"YB","A","9","Lim","Limpets","Type 12",17,0.0875,194.285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-11-05_YB-Aq6",2013-11-05,2013-11-05,"YB","A","6","Ls","Littorina_sitkana","Type 13",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2013-11-05_YB-Aq7",2013-11-05,2013-11-05,"YB","A","7","Ls","Littorina_sitkana","Type 13",254,0.0875,2902.85714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2013-11-05_YB-Aq9",2013-11-05,2013-11-05,"YB","A","9","Ls","Littorina_sitkana","Type 13",42,0.0875,480,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-11-05_YB-Aq6",2013-11-05,2013-11-05,"YB","A","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2013-11-05_YB-Aq7",2013-11-05,2013-11-05,"YB","A","7","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2013-11-05_YB-Aq9",2013-11-05,2013-11-05,"YB","A","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-11-05_YB-Aq6",2013-11-05,2013-11-05,"YB","A","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2013-11-05_YB-Aq7",2013-11-05,2013-11-05,"YB","A","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2013-11-05_YB-Aq9",2013-11-05,2013-11-05,"YB","A","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-11-05_YB-Aq6",2013-11-05,2013-11-05,"YB","A","6","Myt","Mytilus_spp","Type 7",596,0.0875,6811.42857142857,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2013-11-05_YB-Aq7",2013-11-05,2013-11-05,"YB","A","7","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2013-11-05_YB-Aq9",2013-11-05,2013-11-05,"YB","A","9","Myt","Mytilus_spp","Type 7",1026,0.0875,11725.7142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-11-05_YB-Aq6",2013-11-05,2013-11-05,"YB","A","6","MytD","Mytilus_spp_(dead)","Type 8",20,0.0875,228.571428571429,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2013-11-05_YB-Aq7",2013-11-05,2013-11-05,"YB","A","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2013-11-05_YB-Aq9",2013-11-05,2013-11-05,"YB","A","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-11-05_YB-Aq6",2013-11-05,2013-11-05,"YB","A","6","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2013-11-05_YB-Aq7",2013-11-05,2013-11-05,"YB","A","7","Mt","Mytilus_trossulus","Type 15",691,0.0875,7897.14285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2013-11-05_YB-Aq9",2013-11-05,2013-11-05,"YB","A","9","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-11-05_YB-Aq6",2013-11-05,2013-11-05,"YB","A","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2013-11-05_YB-Aq7",2013-11-05,2013-11-05,"YB","A","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2013-11-05_YB-Aq9",2013-11-05,2013-11-05,"YB","A","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-11-05_YB-Aq6",2013-11-05,2013-11-05,"YB","A","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2013-11-05_YB-Aq7",2013-11-05,2013-11-05,"YB","A","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2013-11-05_YB-Aq9",2013-11-05,2013-11-05,"YB","A","9","Ner","Nereis_worm","Type 24",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-11-05_YB-Aq6",2013-11-05,2013-11-05,"YB","A","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2013-11-05_YB-Aq7",2013-11-05,2013-11-05,"YB","A","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2013-11-05_YB-Aq9",2013-11-05,2013-11-05,"YB","A","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-11-05_YB-Aq6",2013-11-05,2013-11-05,"YB","A","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2013-11-05_YB-Aq7",2013-11-05,2013-11-05,"YB","A","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2013-11-05_YB-Aq9",2013-11-05,2013-11-05,"YB","A","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-11-05_YB-Aq6",2013-11-05,2013-11-05,"YB","A","6","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2013-11-05_YB-Aq7",2013-11-05,2013-11-05,"YB","A","7","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2013-11-05_YB-Aq9",2013-11-05,2013-11-05,"YB","A","9","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-11-05_YB-Aq6",2013-11-05,2013-11-05,"YB","A","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2013-11-05_YB-Aq7",2013-11-05,2013-11-05,"YB","A","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2013-11-05_YB-Aq9",2013-11-05,2013-11-05,"YB","A","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-11-05_YB-Aq6",2013-11-05,2013-11-05,"YB","A","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2013-11-05_YB-Aq7",2013-11-05,2013-11-05,"YB","A","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2013-11-05_YB-Aq9",2013-11-05,2013-11-05,"YB","A","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-11-05_YB-Aq6",2013-11-05,2013-11-05,"YB","A","6","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2013-11-05_YB-Aq7",2013-11-05,2013-11-05,"YB","A","7","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2013-11-05_YB-Aq9",2013-11-05,2013-11-05,"YB","A","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-11-05_YB-Aq6",2013-11-05,2013-11-05,"YB","A","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2013-11-05_YB-Aq7",2013-11-05,2013-11-05,"YB","A","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2013-11-05_YB-Aq9",2013-11-05,2013-11-05,"YB","A","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-11-05_YB-Aq6",2013-11-05,2013-11-05,"YB","A","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2013-11-05_YB-Aq7",2013-11-05,2013-11-05,"YB","A","7","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2013-11-05_YB-Aq9",2013-11-05,2013-11-05,"YB","A","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-11-05_YB-Aq6",2013-11-05,2013-11-05,"YB","A","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2013-11-05_YB-Aq7",2013-11-05,2013-11-05,"YB","A","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2013-11-05_YB-Aq9",2013-11-05,2013-11-05,"YB","A","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-11-05_YB-ABq1",2013-11-05,2013-11-05,"YB","AB","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but some blur and glare made counting difficult;"
+"2013-11-05_YB-ABq2",2013-11-05,2013-11-05,"YB","AB","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Barnacle Counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-11-05_YB-ABq4",2013-11-05,2013-11-05,"YB","AB","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","20%","Algae is a thin film. Byssal threads ~5% coverage."
+"2013-11-05_YB-ABq1",2013-11-05,2013-11-05,"YB","AB","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but some blur and glare made counting difficult;"
+"2013-11-05_YB-ABq2",2013-11-05,2013-11-05,"YB","AB","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Barnacle Counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-11-05_YB-ABq4",2013-11-05,2013-11-05,"YB","AB","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","20%","Algae is a thin film. Byssal threads ~5% coverage."
+"2013-11-05_YB-ABq1",2013-11-05,2013-11-05,"YB","AB","1","Bg","Balanus_glandula","Type 1",1567,0.015625,100288,"c","Beatriz Vaca","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but some blur and glare made counting difficult;"
+"2013-11-05_YB-ABq2",2013-11-05,2013-11-05,"YB","AB","2","Bg","Balanus_glandula","Type 1",1170,0.015625,74880,"c","Beatriz Vaca","Finished","Full","Cropped","1%","Barnacle Counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-11-05_YB-ABq4",2013-11-05,2013-11-05,"YB","AB","4","Bg","Balanus_glandula","Type 1",1504,0.015625,96256,"c","Beatriz Vaca","Finished","Cropped","Cropped","20%","Algae is a thin film. Byssal threads ~5% coverage."
+"2013-11-05_YB-ABq1",2013-11-05,2013-11-05,"YB","AB","1","BgD","Balanus_glandula_(dead)","Type 2",138,0.015625,8832,"c","Beatriz Vaca","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but some blur and glare made counting difficult;"
+"2013-11-05_YB-ABq2",2013-11-05,2013-11-05,"YB","AB","2","BgD","Balanus_glandula_(dead)","Type 2",2,0.015625,128,"c","Beatriz Vaca","Finished","Full","Cropped","1%","Barnacle Counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-11-05_YB-ABq4",2013-11-05,2013-11-05,"YB","AB","4","BgD","Balanus_glandula_(dead)","Type 2",1,0.015625,64,"c","Beatriz Vaca","Finished","Cropped","Cropped","20%","Algae is a thin film. Byssal threads ~5% coverage."
+"2013-11-05_YB-ABq1",2013-11-05,2013-11-05,"YB","AB","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but some blur and glare made counting difficult;"
+"2013-11-05_YB-ABq2",2013-11-05,2013-11-05,"YB","AB","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Barnacle Counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-11-05_YB-ABq4",2013-11-05,2013-11-05,"YB","AB","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","20%","Algae is a thin film. Byssal threads ~5% coverage."
+"2013-11-05_YB-ABq1",2013-11-05,2013-11-05,"YB","AB","1","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but some blur and glare made counting difficult;"
+"2013-11-05_YB-ABq2",2013-11-05,2013-11-05,"YB","AB","2","Cth","Chthamalus_dalli","Type 3",3,0.015625,192,"c","Beatriz Vaca","Finished","Full","Cropped","1%","Barnacle Counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-11-05_YB-ABq4",2013-11-05,2013-11-05,"YB","AB","4","Cth","Chthamalus_dalli","Type 3",6,0.015625,384,"c","Beatriz Vaca","Finished","Cropped","Cropped","20%","Algae is a thin film. Byssal threads ~5% coverage."
+"2013-11-05_YB-ABq1",2013-11-05,2013-11-05,"YB","AB","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but some blur and glare made counting difficult;"
+"2013-11-05_YB-ABq2",2013-11-05,2013-11-05,"YB","AB","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","1%","Barnacle Counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-11-05_YB-ABq4",2013-11-05,2013-11-05,"YB","AB","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","20%","Algae is a thin film. Byssal threads ~5% coverage."
+"2013-11-05_YB-ABq1",2013-11-05,2013-11-05,"YB","AB","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but some blur and glare made counting difficult;"
+"2013-11-05_YB-ABq2",2013-11-05,2013-11-05,"YB","AB","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Barnacle Counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-11-05_YB-ABq4",2013-11-05,2013-11-05,"YB","AB","4","Emp","Emplectonema worm","Type 23",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Cropped","Cropped","20%","Algae is a thin film. Byssal threads ~5% coverage."
+"2013-11-05_YB-ABq1",2013-11-05,2013-11-05,"YB","AB","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but some blur and glare made counting difficult;"
+"2013-11-05_YB-ABq2",2013-11-05,2013-11-05,"YB","AB","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Barnacle Counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-11-05_YB-ABq4",2013-11-05,2013-11-05,"YB","AB","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","20%","Algae is a thin film. Byssal threads ~5% coverage."
+"2013-11-05_YB-ABq1",2013-11-05,2013-11-05,"YB","AB","1","Lim","Limpets","Type 12",20,0.0875,228.571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but some blur and glare made counting difficult;"
+"2013-11-05_YB-ABq2",2013-11-05,2013-11-05,"YB","AB","2","Lim","Limpets","Type 12",25,0.0875,285.714285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Barnacle Counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-11-05_YB-ABq4",2013-11-05,2013-11-05,"YB","AB","4","Lim","Limpets","Type 12",435,0.0875,4971.42857142857,NA,"Beatriz Vaca","Finished","Cropped","Cropped","20%","Algae is a thin film. Byssal threads ~5% coverage."
+"2013-11-05_YB-ABq1",2013-11-05,2013-11-05,"YB","AB","1","Ls","Littorina_sitkana","Type 13",259,0.0875,2960,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but some blur and glare made counting difficult;"
+"2013-11-05_YB-ABq2",2013-11-05,2013-11-05,"YB","AB","2","Ls","Littorina_sitkana","Type 13",40,0.0875,457.142857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Barnacle Counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-11-05_YB-ABq4",2013-11-05,2013-11-05,"YB","AB","4","Ls","Littorina_sitkana","Type 13",124,0.0875,1417.14285714286,NA,"Beatriz Vaca","Finished","Cropped","Cropped","20%","Algae is a thin film. Byssal threads ~5% coverage."
+"2013-11-05_YB-ABq1",2013-11-05,2013-11-05,"YB","AB","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but some blur and glare made counting difficult;"
+"2013-11-05_YB-ABq2",2013-11-05,2013-11-05,"YB","AB","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Barnacle Counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-11-05_YB-ABq4",2013-11-05,2013-11-05,"YB","AB","4","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","20%","Algae is a thin film. Byssal threads ~5% coverage."
+"2013-11-05_YB-ABq1",2013-11-05,2013-11-05,"YB","AB","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but some blur and glare made counting difficult;"
+"2013-11-05_YB-ABq2",2013-11-05,2013-11-05,"YB","AB","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Barnacle Counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-11-05_YB-ABq4",2013-11-05,2013-11-05,"YB","AB","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","20%","Algae is a thin film. Byssal threads ~5% coverage."
+"2013-11-05_YB-ABq1",2013-11-05,2013-11-05,"YB","AB","1","Myt","Mytilus_spp","Type 7",63,0.0875,720,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but some blur and glare made counting difficult;"
+"2013-11-05_YB-ABq2",2013-11-05,2013-11-05,"YB","AB","2","Myt","Mytilus_spp","Type 7",804,0.0875,9188.57142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Barnacle Counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-11-05_YB-ABq4",2013-11-05,2013-11-05,"YB","AB","4","Myt","Mytilus_spp","Type 7",434,0.015625,27776,"c","Beatriz Vaca","Finished","Cropped","Cropped","20%","Algae is a thin film. Byssal threads ~5% coverage."
+"2013-11-05_YB-ABq1",2013-11-05,2013-11-05,"YB","AB","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but some blur and glare made counting difficult;"
+"2013-11-05_YB-ABq2",2013-11-05,2013-11-05,"YB","AB","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Barnacle Counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-11-05_YB-ABq4",2013-11-05,2013-11-05,"YB","AB","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","20%","Algae is a thin film. Byssal threads ~5% coverage."
+"2013-11-05_YB-ABq1",2013-11-05,2013-11-05,"YB","AB","1","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but some blur and glare made counting difficult;"
+"2013-11-05_YB-ABq2",2013-11-05,2013-11-05,"YB","AB","2","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Barnacle Counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-11-05_YB-ABq4",2013-11-05,2013-11-05,"YB","AB","4","Mt","Mytilus_trossulus","Type 15",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","20%","Algae is a thin film. Byssal threads ~5% coverage."
+"2013-11-05_YB-ABq1",2013-11-05,2013-11-05,"YB","AB","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but some blur and glare made counting difficult;"
+"2013-11-05_YB-ABq2",2013-11-05,2013-11-05,"YB","AB","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Barnacle Counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-11-05_YB-ABq4",2013-11-05,2013-11-05,"YB","AB","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","20%","Algae is a thin film. Byssal threads ~5% coverage."
+"2013-11-05_YB-ABq1",2013-11-05,2013-11-05,"YB","AB","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but some blur and glare made counting difficult;"
+"2013-11-05_YB-ABq2",2013-11-05,2013-11-05,"YB","AB","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Barnacle Counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-11-05_YB-ABq4",2013-11-05,2013-11-05,"YB","AB","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","20%","Algae is a thin film. Byssal threads ~5% coverage."
+"2013-11-05_YB-ABq1",2013-11-05,2013-11-05,"YB","AB","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but some blur and glare made counting difficult;"
+"2013-11-05_YB-ABq2",2013-11-05,2013-11-05,"YB","AB","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Barnacle Counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-11-05_YB-ABq4",2013-11-05,2013-11-05,"YB","AB","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","20%","Algae is a thin film. Byssal threads ~5% coverage."
+"2013-11-05_YB-ABq1",2013-11-05,2013-11-05,"YB","AB","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but some blur and glare made counting difficult;"
+"2013-11-05_YB-ABq2",2013-11-05,2013-11-05,"YB","AB","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Barnacle Counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-11-05_YB-ABq4",2013-11-05,2013-11-05,"YB","AB","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","20%","Algae is a thin film. Byssal threads ~5% coverage."
+"2013-11-05_YB-ABq1",2013-11-05,2013-11-05,"YB","AB","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but some blur and glare made counting difficult;"
+"2013-11-05_YB-ABq2",2013-11-05,2013-11-05,"YB","AB","2","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Barnacle Counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-11-05_YB-ABq4",2013-11-05,2013-11-05,"YB","AB","4","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","20%","Algae is a thin film. Byssal threads ~5% coverage."
+"2013-11-05_YB-ABq1",2013-11-05,2013-11-05,"YB","AB","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but some blur and glare made counting difficult;"
+"2013-11-05_YB-ABq2",2013-11-05,2013-11-05,"YB","AB","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Barnacle Counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-11-05_YB-ABq4",2013-11-05,2013-11-05,"YB","AB","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","20%","Algae is a thin film. Byssal threads ~5% coverage."
+"2013-11-05_YB-ABq1",2013-11-05,2013-11-05,"YB","AB","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but some blur and glare made counting difficult;"
+"2013-11-05_YB-ABq2",2013-11-05,2013-11-05,"YB","AB","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Barnacle Counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-11-05_YB-ABq4",2013-11-05,2013-11-05,"YB","AB","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","20%","Algae is a thin film. Byssal threads ~5% coverage."
+"2013-11-05_YB-ABq1",2013-11-05,2013-11-05,"YB","AB","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but some blur and glare made counting difficult;"
+"2013-11-05_YB-ABq2",2013-11-05,2013-11-05,"YB","AB","2","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Barnacle Counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-11-05_YB-ABq4",2013-11-05,2013-11-05,"YB","AB","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","20%","Algae is a thin film. Byssal threads ~5% coverage."
+"2013-11-05_YB-ABq1",2013-11-05,2013-11-05,"YB","AB","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but some blur and glare made counting difficult;"
+"2013-11-05_YB-ABq2",2013-11-05,2013-11-05,"YB","AB","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Barnacle Counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-11-05_YB-ABq4",2013-11-05,2013-11-05,"YB","AB","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","20%","Algae is a thin film. Byssal threads ~5% coverage."
+"2013-11-05_YB-ABq1",2013-11-05,2013-11-05,"YB","AB","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but some blur and glare made counting difficult;"
+"2013-11-05_YB-ABq2",2013-11-05,2013-11-05,"YB","AB","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Barnacle Counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-11-05_YB-ABq4",2013-11-05,2013-11-05,"YB","AB","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","20%","Algae is a thin film. Byssal threads ~5% coverage."
+"2013-11-05_YB-ABq1",2013-11-05,2013-11-05,"YB","AB","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but some blur and glare made counting difficult;"
+"2013-11-05_YB-ABq2",2013-11-05,2013-11-05,"YB","AB","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Barnacle Counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-11-05_YB-ABq4",2013-11-05,2013-11-05,"YB","AB","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","20%","Algae is a thin film. Byssal threads ~5% coverage."
+"2013-11-05_YB-ACq1",2013-11-05,2013-11-05,"YB","AC","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-11-05_YB-ACq4",2013-11-05,2013-11-05,"YB","AC","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle Counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-11-05_YB-ACq7",2013-11-05,2013-11-05,"YB","AC","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%",""
+"2013-11-05_YB-ACq8",2013-11-05,2013-11-05,"YB","AC","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Algae mostly a thin, filmy layer; barnacle counts likely low due to algae cover"
+"2013-11-05_YB-ACq1",2013-11-05,2013-11-05,"YB","AC","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-11-05_YB-ACq4",2013-11-05,2013-11-05,"YB","AC","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle Counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-11-05_YB-ACq7",2013-11-05,2013-11-05,"YB","AC","7","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%",""
+"2013-11-05_YB-ACq8",2013-11-05,2013-11-05,"YB","AC","8","Ae","Anemones","Type 14",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Algae mostly a thin, filmy layer; barnacle counts likely low due to algae cover"
+"2013-11-05_YB-ACq1",2013-11-05,2013-11-05,"YB","AC","1","Bg","Balanus_glandula","Type 1",1124,0.015625,71936,"c","Beatriz Vaca","Finished","Full","Cropped","","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-11-05_YB-ACq4",2013-11-05,2013-11-05,"YB","AC","4","Bg","Balanus_glandula","Type 1",905,0.015625,57920,"c","Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle Counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-11-05_YB-ACq7",2013-11-05,2013-11-05,"YB","AC","7","Bg","Balanus_glandula","Type 1",1117,0.015625,71488,"c","Beatriz Vaca","Finished","Full","Cropped","75%",""
+"2013-11-05_YB-ACq8",2013-11-05,2013-11-05,"YB","AC","8","Bg","Balanus_glandula","Type 1",836,0.015625,53504,"c","Beatriz Vaca","Finished","Full","Cropped","75%","Algae mostly a thin, filmy layer; barnacle counts likely low due to algae cover"
+"2013-11-05_YB-ACq1",2013-11-05,2013-11-05,"YB","AC","1","BgD","Balanus_glandula_(dead)","Type 2",61,0.015625,3904,"c","Beatriz Vaca","Finished","Full","Cropped","","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-11-05_YB-ACq4",2013-11-05,2013-11-05,"YB","AC","4","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle Counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-11-05_YB-ACq7",2013-11-05,2013-11-05,"YB","AC","7","BgD","Balanus_glandula_(dead)","Type 2",3,0.015625,192,"c","Beatriz Vaca","Finished","Full","Cropped","75%",""
+"2013-11-05_YB-ACq8",2013-11-05,2013-11-05,"YB","AC","8","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","75%","Algae mostly a thin, filmy layer; barnacle counts likely low due to algae cover"
+"2013-11-05_YB-ACq1",2013-11-05,2013-11-05,"YB","AC","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-11-05_YB-ACq4",2013-11-05,2013-11-05,"YB","AC","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle Counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-11-05_YB-ACq7",2013-11-05,2013-11-05,"YB","AC","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%",""
+"2013-11-05_YB-ACq8",2013-11-05,2013-11-05,"YB","AC","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Algae mostly a thin, filmy layer; barnacle counts likely low due to algae cover"
+"2013-11-05_YB-ACq1",2013-11-05,2013-11-05,"YB","AC","1","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-11-05_YB-ACq4",2013-11-05,2013-11-05,"YB","AC","4","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle Counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-11-05_YB-ACq7",2013-11-05,2013-11-05,"YB","AC","7","Cth","Chthamalus_dalli","Type 3",45,0.015625,2880,"c","Beatriz Vaca","Finished","Full","Cropped","75%",""
+"2013-11-05_YB-ACq8",2013-11-05,2013-11-05,"YB","AC","8","Cth","Chthamalus_dalli","Type 3",47,0.015625,3008,"c","Beatriz Vaca","Finished","Full","Cropped","75%","Algae mostly a thin, filmy layer; barnacle counts likely low due to algae cover"
+"2013-11-05_YB-ACq1",2013-11-05,2013-11-05,"YB","AC","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-11-05_YB-ACq4",2013-11-05,2013-11-05,"YB","AC","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle Counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-11-05_YB-ACq7",2013-11-05,2013-11-05,"YB","AC","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","75%",""
+"2013-11-05_YB-ACq8",2013-11-05,2013-11-05,"YB","AC","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","75%","Algae mostly a thin, filmy layer; barnacle counts likely low due to algae cover"
+"2013-11-05_YB-ACq1",2013-11-05,2013-11-05,"YB","AC","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-11-05_YB-ACq4",2013-11-05,2013-11-05,"YB","AC","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle Counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-11-05_YB-ACq7",2013-11-05,2013-11-05,"YB","AC","7","Emp","Emplectonema worm","Type 23",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","75%",""
+"2013-11-05_YB-ACq8",2013-11-05,2013-11-05,"YB","AC","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Algae mostly a thin, filmy layer; barnacle counts likely low due to algae cover"
+"2013-11-05_YB-ACq1",2013-11-05,2013-11-05,"YB","AC","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-11-05_YB-ACq4",2013-11-05,2013-11-05,"YB","AC","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle Counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-11-05_YB-ACq7",2013-11-05,2013-11-05,"YB","AC","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%",""
+"2013-11-05_YB-ACq8",2013-11-05,2013-11-05,"YB","AC","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Algae mostly a thin, filmy layer; barnacle counts likely low due to algae cover"
+"2013-11-05_YB-ACq1",2013-11-05,2013-11-05,"YB","AC","1","Lim","Limpets","Type 12",15,0.0875,171.428571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-11-05_YB-ACq4",2013-11-05,2013-11-05,"YB","AC","4","Lim","Limpets","Type 12",25,0.0875,285.714285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle Counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-11-05_YB-ACq7",2013-11-05,2013-11-05,"YB","AC","7","Lim","Limpets","Type 12",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","75%",""
+"2013-11-05_YB-ACq8",2013-11-05,2013-11-05,"YB","AC","8","Lim","Limpets","Type 12",26,0.0875,297.142857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Algae mostly a thin, filmy layer; barnacle counts likely low due to algae cover"
+"2013-11-05_YB-ACq1",2013-11-05,2013-11-05,"YB","AC","1","Ls","Littorina_sitkana","Type 13",104,0.0875,1188.57142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-11-05_YB-ACq4",2013-11-05,2013-11-05,"YB","AC","4","Ls","Littorina_sitkana","Type 13",45,0.0875,514.285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle Counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-11-05_YB-ACq7",2013-11-05,2013-11-05,"YB","AC","7","Ls","Littorina_sitkana","Type 13",579,0.0875,6617.14285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","75%",""
+"2013-11-05_YB-ACq8",2013-11-05,2013-11-05,"YB","AC","8","Ls","Littorina_sitkana","Type 13",348,0.0875,3977.14285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Algae mostly a thin, filmy layer; barnacle counts likely low due to algae cover"
+"2013-11-05_YB-ACq1",2013-11-05,2013-11-05,"YB","AC","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-11-05_YB-ACq4",2013-11-05,2013-11-05,"YB","AC","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle Counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-11-05_YB-ACq7",2013-11-05,2013-11-05,"YB","AC","7","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%",""
+"2013-11-05_YB-ACq8",2013-11-05,2013-11-05,"YB","AC","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Algae mostly a thin, filmy layer; barnacle counts likely low due to algae cover"
+"2013-11-05_YB-ACq1",2013-11-05,2013-11-05,"YB","AC","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-11-05_YB-ACq4",2013-11-05,2013-11-05,"YB","AC","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle Counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-11-05_YB-ACq7",2013-11-05,2013-11-05,"YB","AC","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%",""
+"2013-11-05_YB-ACq8",2013-11-05,2013-11-05,"YB","AC","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Algae mostly a thin, filmy layer; barnacle counts likely low due to algae cover"
+"2013-11-05_YB-ACq1",2013-11-05,2013-11-05,"YB","AC","1","Myt","Mytilus_spp","Type 7",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-11-05_YB-ACq4",2013-11-05,2013-11-05,"YB","AC","4","Myt","Mytilus_spp","Type 7",605,0.0875,6914.28571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle Counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-11-05_YB-ACq7",2013-11-05,2013-11-05,"YB","AC","7","Myt","Mytilus_spp","Type 7",231,0.0875,2640,NA,"Beatriz Vaca","Finished","Full","Cropped","75%",""
+"2013-11-05_YB-ACq8",2013-11-05,2013-11-05,"YB","AC","8","Myt","Mytilus_spp","Type 7",216,0.0875,2468.57142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Algae mostly a thin, filmy layer; barnacle counts likely low due to algae cover"
+"2013-11-05_YB-ACq1",2013-11-05,2013-11-05,"YB","AC","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-11-05_YB-ACq4",2013-11-05,2013-11-05,"YB","AC","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle Counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-11-05_YB-ACq7",2013-11-05,2013-11-05,"YB","AC","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%",""
+"2013-11-05_YB-ACq8",2013-11-05,2013-11-05,"YB","AC","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Algae mostly a thin, filmy layer; barnacle counts likely low due to algae cover"
+"2013-11-05_YB-ACq1",2013-11-05,2013-11-05,"YB","AC","1","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-11-05_YB-ACq4",2013-11-05,2013-11-05,"YB","AC","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle Counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-11-05_YB-ACq7",2013-11-05,2013-11-05,"YB","AC","7","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%",""
+"2013-11-05_YB-ACq8",2013-11-05,2013-11-05,"YB","AC","8","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Algae mostly a thin, filmy layer; barnacle counts likely low due to algae cover"
+"2013-11-05_YB-ACq1",2013-11-05,2013-11-05,"YB","AC","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-11-05_YB-ACq4",2013-11-05,2013-11-05,"YB","AC","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle Counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-11-05_YB-ACq7",2013-11-05,2013-11-05,"YB","AC","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%",""
+"2013-11-05_YB-ACq8",2013-11-05,2013-11-05,"YB","AC","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Algae mostly a thin, filmy layer; barnacle counts likely low due to algae cover"
+"2013-11-05_YB-ACq1",2013-11-05,2013-11-05,"YB","AC","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-11-05_YB-ACq4",2013-11-05,2013-11-05,"YB","AC","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle Counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-11-05_YB-ACq7",2013-11-05,2013-11-05,"YB","AC","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%",""
+"2013-11-05_YB-ACq8",2013-11-05,2013-11-05,"YB","AC","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Algae mostly a thin, filmy layer; barnacle counts likely low due to algae cover"
+"2013-11-05_YB-ACq1",2013-11-05,2013-11-05,"YB","AC","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-11-05_YB-ACq4",2013-11-05,2013-11-05,"YB","AC","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle Counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-11-05_YB-ACq7",2013-11-05,2013-11-05,"YB","AC","7","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","75%",""
+"2013-11-05_YB-ACq8",2013-11-05,2013-11-05,"YB","AC","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Algae mostly a thin, filmy layer; barnacle counts likely low due to algae cover"
+"2013-11-05_YB-ACq1",2013-11-05,2013-11-05,"YB","AC","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-11-05_YB-ACq4",2013-11-05,2013-11-05,"YB","AC","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle Counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-11-05_YB-ACq7",2013-11-05,2013-11-05,"YB","AC","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%",""
+"2013-11-05_YB-ACq8",2013-11-05,2013-11-05,"YB","AC","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Algae mostly a thin, filmy layer; barnacle counts likely low due to algae cover"
+"2013-11-05_YB-ACq1",2013-11-05,2013-11-05,"YB","AC","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-11-05_YB-ACq4",2013-11-05,2013-11-05,"YB","AC","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle Counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-11-05_YB-ACq7",2013-11-05,2013-11-05,"YB","AC","7","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","75%",""
+"2013-11-05_YB-ACq8",2013-11-05,2013-11-05,"YB","AC","8","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Algae mostly a thin, filmy layer; barnacle counts likely low due to algae cover"
+"2013-11-05_YB-ACq1",2013-11-05,2013-11-05,"YB","AC","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-11-05_YB-ACq4",2013-11-05,2013-11-05,"YB","AC","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle Counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-11-05_YB-ACq7",2013-11-05,2013-11-05,"YB","AC","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%",""
+"2013-11-05_YB-ACq8",2013-11-05,2013-11-05,"YB","AC","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Algae mostly a thin, filmy layer; barnacle counts likely low due to algae cover"
+"2013-11-05_YB-ACq1",2013-11-05,2013-11-05,"YB","AC","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-11-05_YB-ACq4",2013-11-05,2013-11-05,"YB","AC","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle Counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-11-05_YB-ACq7",2013-11-05,2013-11-05,"YB","AC","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%",""
+"2013-11-05_YB-ACq8",2013-11-05,2013-11-05,"YB","AC","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Algae mostly a thin, filmy layer; barnacle counts likely low due to algae cover"
+"2013-11-05_YB-ACq1",2013-11-05,2013-11-05,"YB","AC","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-11-05_YB-ACq4",2013-11-05,2013-11-05,"YB","AC","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle Counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-11-05_YB-ACq7",2013-11-05,2013-11-05,"YB","AC","7","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%",""
+"2013-11-05_YB-ACq8",2013-11-05,2013-11-05,"YB","AC","8","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Algae mostly a thin, filmy layer; barnacle counts likely low due to algae cover"
+"2013-11-05_YB-ACq1",2013-11-05,2013-11-05,"YB","AC","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-11-05_YB-ACq4",2013-11-05,2013-11-05,"YB","AC","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle Counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-11-05_YB-ACq7",2013-11-05,2013-11-05,"YB","AC","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%",""
+"2013-11-05_YB-ACq8",2013-11-05,2013-11-05,"YB","AC","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Algae mostly a thin, filmy layer; barnacle counts likely low due to algae cover"
+"2013-11-05_YB-ACq1",2013-11-05,2013-11-05,"YB","AC","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-11-05_YB-ACq4",2013-11-05,2013-11-05,"YB","AC","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle Counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-11-05_YB-ACq7",2013-11-05,2013-11-05,"YB","AC","7","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%",""
+"2013-11-05_YB-ACq8",2013-11-05,2013-11-05,"YB","AC","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Algae mostly a thin, filmy layer; barnacle counts likely low due to algae cover"
+"2013-11-05_YB-ACq1",2013-11-05,2013-11-05,"YB","AC","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-11-05_YB-ACq4",2013-11-05,2013-11-05,"YB","AC","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle Counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-11-05_YB-ACq7",2013-11-05,2013-11-05,"YB","AC","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%",""
+"2013-11-05_YB-ACq8",2013-11-05,2013-11-05,"YB","AC","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Algae mostly a thin, filmy layer; barnacle counts likely low due to algae cover"
+"2013-11-05_YB-ADq1",2013-11-05,2013-11-05,"YB","AD","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","Counts likely low due to blure, glare, and thin, filmy algae cover."
+"2013-11-05_YB-ADq5",2013-11-05,2013-11-05,"YB","AD","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts likely low due to blure, glare, and thin, filmy algae cover."
+"2013-11-05_YB-ADq8",2013-11-05,2013-11-05,"YB","AD","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2013-11-05_YB-ADq1",2013-11-05,2013-11-05,"YB","AD","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","Counts likely low due to blure, glare, and thin, filmy algae cover."
+"2013-11-05_YB-ADq5",2013-11-05,2013-11-05,"YB","AD","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts likely low due to blure, glare, and thin, filmy algae cover."
+"2013-11-05_YB-ADq8",2013-11-05,2013-11-05,"YB","AD","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2013-11-05_YB-ADq1",2013-11-05,2013-11-05,"YB","AD","1","Bg","Balanus_glandula","Type 1",1033,0.015625,66112,"c","Beatriz Vaca","Finished","Full","Cropped","25%","Counts likely low due to blure, glare, and thin, filmy algae cover."
+"2013-11-05_YB-ADq5",2013-11-05,2013-11-05,"YB","AD","5","Bg","Balanus_glandula","Type 1",1227,0.015625,78528,"c","Beatriz Vaca","Finished","Full","Cropped","50%","Counts likely low due to blure, glare, and thin, filmy algae cover."
+"2013-11-05_YB-ADq8",2013-11-05,2013-11-05,"YB","AD","8","Bg","Balanus_glandula","Type 1",1194,0.015625,76416,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2013-11-05_YB-ADq1",2013-11-05,2013-11-05,"YB","AD","1","BgD","Balanus_glandula_(dead)","Type 2",2,0.015625,128,"c","Beatriz Vaca","Finished","Full","Cropped","25%","Counts likely low due to blure, glare, and thin, filmy algae cover."
+"2013-11-05_YB-ADq5",2013-11-05,2013-11-05,"YB","AD","5","BgD","Balanus_glandula_(dead)","Type 2",2,0.015625,128,"c","Beatriz Vaca","Finished","Full","Cropped","50%","Counts likely low due to blure, glare, and thin, filmy algae cover."
+"2013-11-05_YB-ADq8",2013-11-05,2013-11-05,"YB","AD","8","BgD","Balanus_glandula_(dead)","Type 2",1,0.015625,64,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2013-11-05_YB-ADq1",2013-11-05,2013-11-05,"YB","AD","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","Counts likely low due to blure, glare, and thin, filmy algae cover."
+"2013-11-05_YB-ADq5",2013-11-05,2013-11-05,"YB","AD","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts likely low due to blure, glare, and thin, filmy algae cover."
+"2013-11-05_YB-ADq8",2013-11-05,2013-11-05,"YB","AD","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2013-11-05_YB-ADq1",2013-11-05,2013-11-05,"YB","AD","1","Cth","Chthamalus_dalli","Type 3",20,0.015625,1280,"c","Beatriz Vaca","Finished","Full","Cropped","25%","Counts likely low due to blure, glare, and thin, filmy algae cover."
+"2013-11-05_YB-ADq5",2013-11-05,2013-11-05,"YB","AD","5","Cth","Chthamalus_dalli","Type 3",6,0.015625,384,"c","Beatriz Vaca","Finished","Full","Cropped","50%","Counts likely low due to blure, glare, and thin, filmy algae cover."
+"2013-11-05_YB-ADq8",2013-11-05,2013-11-05,"YB","AD","8","Cth","Chthamalus_dalli","Type 3",1,0.015625,64,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2013-11-05_YB-ADq1",2013-11-05,2013-11-05,"YB","AD","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","25%","Counts likely low due to blure, glare, and thin, filmy algae cover."
+"2013-11-05_YB-ADq5",2013-11-05,2013-11-05,"YB","AD","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","50%","Counts likely low due to blure, glare, and thin, filmy algae cover."
+"2013-11-05_YB-ADq8",2013-11-05,2013-11-05,"YB","AD","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2013-11-05_YB-ADq1",2013-11-05,2013-11-05,"YB","AD","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","Counts likely low due to blure, glare, and thin, filmy algae cover."
+"2013-11-05_YB-ADq5",2013-11-05,2013-11-05,"YB","AD","5","Emp","Emplectonema worm","Type 23",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts likely low due to blure, glare, and thin, filmy algae cover."
+"2013-11-05_YB-ADq8",2013-11-05,2013-11-05,"YB","AD","8","Emp","Emplectonema worm","Type 23",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2013-11-05_YB-ADq1",2013-11-05,2013-11-05,"YB","AD","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","Counts likely low due to blure, glare, and thin, filmy algae cover."
+"2013-11-05_YB-ADq5",2013-11-05,2013-11-05,"YB","AD","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts likely low due to blure, glare, and thin, filmy algae cover."
+"2013-11-05_YB-ADq8",2013-11-05,2013-11-05,"YB","AD","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2013-11-05_YB-ADq1",2013-11-05,2013-11-05,"YB","AD","1","Lim","Limpets","Type 12",16,0.0875,182.857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","Counts likely low due to blure, glare, and thin, filmy algae cover."
+"2013-11-05_YB-ADq5",2013-11-05,2013-11-05,"YB","AD","5","Lim","Limpets","Type 12",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts likely low due to blure, glare, and thin, filmy algae cover."
+"2013-11-05_YB-ADq8",2013-11-05,2013-11-05,"YB","AD","8","Lim","Limpets","Type 12",255,0.0875,2914.28571428571,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2013-11-05_YB-ADq1",2013-11-05,2013-11-05,"YB","AD","1","Ls","Littorina_sitkana","Type 13",181,0.0875,2068.57142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","Counts likely low due to blure, glare, and thin, filmy algae cover."
+"2013-11-05_YB-ADq5",2013-11-05,2013-11-05,"YB","AD","5","Ls","Littorina_sitkana","Type 13",176,0.0875,2011.42857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts likely low due to blure, glare, and thin, filmy algae cover."
+"2013-11-05_YB-ADq8",2013-11-05,2013-11-05,"YB","AD","8","Ls","Littorina_sitkana","Type 13",214,0.0875,2445.71428571429,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2013-11-05_YB-ADq1",2013-11-05,2013-11-05,"YB","AD","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","Counts likely low due to blure, glare, and thin, filmy algae cover."
+"2013-11-05_YB-ADq5",2013-11-05,2013-11-05,"YB","AD","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts likely low due to blure, glare, and thin, filmy algae cover."
+"2013-11-05_YB-ADq8",2013-11-05,2013-11-05,"YB","AD","8","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2013-11-05_YB-ADq1",2013-11-05,2013-11-05,"YB","AD","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","Counts likely low due to blure, glare, and thin, filmy algae cover."
+"2013-11-05_YB-ADq5",2013-11-05,2013-11-05,"YB","AD","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts likely low due to blure, glare, and thin, filmy algae cover."
+"2013-11-05_YB-ADq8",2013-11-05,2013-11-05,"YB","AD","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2013-11-05_YB-ADq1",2013-11-05,2013-11-05,"YB","AD","1","Myt","Mytilus_spp","Type 7",280,0.0875,3200,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","Counts likely low due to blure, glare, and thin, filmy algae cover."
+"2013-11-05_YB-ADq5",2013-11-05,2013-11-05,"YB","AD","5","Myt","Mytilus_spp","Type 7",562,0.0875,6422.85714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts likely low due to blure, glare, and thin, filmy algae cover."
+"2013-11-05_YB-ADq8",2013-11-05,2013-11-05,"YB","AD","8","Myt","Mytilus_spp","Type 7",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2013-11-05_YB-ADq1",2013-11-05,2013-11-05,"YB","AD","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","Counts likely low due to blure, glare, and thin, filmy algae cover."
+"2013-11-05_YB-ADq5",2013-11-05,2013-11-05,"YB","AD","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts likely low due to blure, glare, and thin, filmy algae cover."
+"2013-11-05_YB-ADq8",2013-11-05,2013-11-05,"YB","AD","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2013-11-05_YB-ADq1",2013-11-05,2013-11-05,"YB","AD","1","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","Counts likely low due to blure, glare, and thin, filmy algae cover."
+"2013-11-05_YB-ADq5",2013-11-05,2013-11-05,"YB","AD","5","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts likely low due to blure, glare, and thin, filmy algae cover."
+"2013-11-05_YB-ADq8",2013-11-05,2013-11-05,"YB","AD","8","Mt","Mytilus_trossulus","Type 15",448,0.015625,28672,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2013-11-05_YB-ADq1",2013-11-05,2013-11-05,"YB","AD","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","Counts likely low due to blure, glare, and thin, filmy algae cover."
+"2013-11-05_YB-ADq5",2013-11-05,2013-11-05,"YB","AD","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts likely low due to blure, glare, and thin, filmy algae cover."
+"2013-11-05_YB-ADq8",2013-11-05,2013-11-05,"YB","AD","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2013-11-05_YB-ADq1",2013-11-05,2013-11-05,"YB","AD","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","Counts likely low due to blure, glare, and thin, filmy algae cover."
+"2013-11-05_YB-ADq5",2013-11-05,2013-11-05,"YB","AD","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts likely low due to blure, glare, and thin, filmy algae cover."
+"2013-11-05_YB-ADq8",2013-11-05,2013-11-05,"YB","AD","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2013-11-05_YB-ADq1",2013-11-05,2013-11-05,"YB","AD","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","Counts likely low due to blure, glare, and thin, filmy algae cover."
+"2013-11-05_YB-ADq5",2013-11-05,2013-11-05,"YB","AD","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts likely low due to blure, glare, and thin, filmy algae cover."
+"2013-11-05_YB-ADq8",2013-11-05,2013-11-05,"YB","AD","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2013-11-05_YB-ADq1",2013-11-05,2013-11-05,"YB","AD","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","Counts likely low due to blure, glare, and thin, filmy algae cover."
+"2013-11-05_YB-ADq5",2013-11-05,2013-11-05,"YB","AD","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts likely low due to blure, glare, and thin, filmy algae cover."
+"2013-11-05_YB-ADq8",2013-11-05,2013-11-05,"YB","AD","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2013-11-05_YB-ADq1",2013-11-05,2013-11-05,"YB","AD","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","Counts likely low due to blure, glare, and thin, filmy algae cover."
+"2013-11-05_YB-ADq5",2013-11-05,2013-11-05,"YB","AD","5","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts likely low due to blure, glare, and thin, filmy algae cover."
+"2013-11-05_YB-ADq8",2013-11-05,2013-11-05,"YB","AD","8","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2013-11-05_YB-ADq1",2013-11-05,2013-11-05,"YB","AD","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","Counts likely low due to blure, glare, and thin, filmy algae cover."
+"2013-11-05_YB-ADq5",2013-11-05,2013-11-05,"YB","AD","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts likely low due to blure, glare, and thin, filmy algae cover."
+"2013-11-05_YB-ADq8",2013-11-05,2013-11-05,"YB","AD","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2013-11-05_YB-ADq1",2013-11-05,2013-11-05,"YB","AD","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","Counts likely low due to blure, glare, and thin, filmy algae cover."
+"2013-11-05_YB-ADq5",2013-11-05,2013-11-05,"YB","AD","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts likely low due to blure, glare, and thin, filmy algae cover."
+"2013-11-05_YB-ADq8",2013-11-05,2013-11-05,"YB","AD","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2013-11-05_YB-ADq1",2013-11-05,2013-11-05,"YB","AD","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","Counts likely low due to blure, glare, and thin, filmy algae cover."
+"2013-11-05_YB-ADq5",2013-11-05,2013-11-05,"YB","AD","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts likely low due to blure, glare, and thin, filmy algae cover."
+"2013-11-05_YB-ADq8",2013-11-05,2013-11-05,"YB","AD","8","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2013-11-05_YB-ADq1",2013-11-05,2013-11-05,"YB","AD","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","Counts likely low due to blure, glare, and thin, filmy algae cover."
+"2013-11-05_YB-ADq5",2013-11-05,2013-11-05,"YB","AD","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts likely low due to blure, glare, and thin, filmy algae cover."
+"2013-11-05_YB-ADq8",2013-11-05,2013-11-05,"YB","AD","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2013-11-05_YB-ADq1",2013-11-05,2013-11-05,"YB","AD","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","Counts likely low due to blure, glare, and thin, filmy algae cover."
+"2013-11-05_YB-ADq5",2013-11-05,2013-11-05,"YB","AD","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts likely low due to blure, glare, and thin, filmy algae cover."
+"2013-11-05_YB-ADq8",2013-11-05,2013-11-05,"YB","AD","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2013-11-05_YB-ADq1",2013-11-05,2013-11-05,"YB","AD","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","Counts likely low due to blure, glare, and thin, filmy algae cover."
+"2013-11-05_YB-ADq5",2013-11-05,2013-11-05,"YB","AD","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts likely low due to blure, glare, and thin, filmy algae cover."
+"2013-11-05_YB-ADq8",2013-11-05,2013-11-05,"YB","AD","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2013-11-05_YB-AEq1",2013-11-05,2013-11-05,"YB","AE","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to thin, filmy algae cover."
+"2013-11-05_YB-AEq4",2013-11-05,2013-11-05,"YB","AE","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%",""
+"2013-11-05_YB-AEq8",2013-11-05,2013-11-05,"YB","AE","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","30%",""
+"2013-11-05_YB-AEq1",2013-11-05,2013-11-05,"YB","AE","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to thin, filmy algae cover."
+"2013-11-05_YB-AEq4",2013-11-05,2013-11-05,"YB","AE","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%",""
+"2013-11-05_YB-AEq8",2013-11-05,2013-11-05,"YB","AE","8","Ae","Anemones","Type 14",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","30%",""
+"2013-11-05_YB-AEq1",2013-11-05,2013-11-05,"YB","AE","1","Bg","Balanus_glandula","Type 1",1092,0.015625,69888,"c","Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to thin, filmy algae cover."
+"2013-11-05_YB-AEq4",2013-11-05,2013-11-05,"YB","AE","4","Bg","Balanus_glandula","Type 1",1610,0.015625,103040,"c","Beatriz Vaca","Finished","Full","Cropped","50%",""
+"2013-11-05_YB-AEq8",2013-11-05,2013-11-05,"YB","AE","8","Bg","Balanus_glandula","Type 1",1573,0.015625,100672,"c","Beatriz Vaca","Finished","Cropped","Cropped","30%",""
+"2013-11-05_YB-AEq1",2013-11-05,2013-11-05,"YB","AE","1","BgD","Balanus_glandula_(dead)","Type 2",2,0.015625,128,"c","Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to thin, filmy algae cover."
+"2013-11-05_YB-AEq4",2013-11-05,2013-11-05,"YB","AE","4","BgD","Balanus_glandula_(dead)","Type 2",2,0.015625,128,"c","Beatriz Vaca","Finished","Full","Cropped","50%",""
+"2013-11-05_YB-AEq8",2013-11-05,2013-11-05,"YB","AE","8","BgD","Balanus_glandula_(dead)","Type 2",3,0.015625,192,"c","Beatriz Vaca","Finished","Cropped","Cropped","30%",""
+"2013-11-05_YB-AEq1",2013-11-05,2013-11-05,"YB","AE","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to thin, filmy algae cover."
+"2013-11-05_YB-AEq4",2013-11-05,2013-11-05,"YB","AE","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%",""
+"2013-11-05_YB-AEq8",2013-11-05,2013-11-05,"YB","AE","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","30%",""
+"2013-11-05_YB-AEq1",2013-11-05,2013-11-05,"YB","AE","1","Cth","Chthamalus_dalli","Type 3",3,0.015625,192,"c","Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to thin, filmy algae cover."
+"2013-11-05_YB-AEq4",2013-11-05,2013-11-05,"YB","AE","4","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","50%",""
+"2013-11-05_YB-AEq8",2013-11-05,2013-11-05,"YB","AE","8","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","30%",""
+"2013-11-05_YB-AEq1",2013-11-05,2013-11-05,"YB","AE","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to thin, filmy algae cover."
+"2013-11-05_YB-AEq4",2013-11-05,2013-11-05,"YB","AE","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","50%",""
+"2013-11-05_YB-AEq8",2013-11-05,2013-11-05,"YB","AE","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","30%",""
+"2013-11-05_YB-AEq1",2013-11-05,2013-11-05,"YB","AE","1","Emp","Emplectonema worm","Type 23",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to thin, filmy algae cover."
+"2013-11-05_YB-AEq4",2013-11-05,2013-11-05,"YB","AE","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%",""
+"2013-11-05_YB-AEq8",2013-11-05,2013-11-05,"YB","AE","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","30%",""
+"2013-11-05_YB-AEq1",2013-11-05,2013-11-05,"YB","AE","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to thin, filmy algae cover."
+"2013-11-05_YB-AEq4",2013-11-05,2013-11-05,"YB","AE","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%",""
+"2013-11-05_YB-AEq8",2013-11-05,2013-11-05,"YB","AE","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","30%",""
+"2013-11-05_YB-AEq1",2013-11-05,2013-11-05,"YB","AE","1","Lim","Limpets","Type 12",10,0.0875,114.285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to thin, filmy algae cover."
+"2013-11-05_YB-AEq4",2013-11-05,2013-11-05,"YB","AE","4","Lim","Limpets","Type 12",94,0.0875,1074.28571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","50%",""
+"2013-11-05_YB-AEq8",2013-11-05,2013-11-05,"YB","AE","8","Lim","Limpets","Type 12",120,0.0875,1371.42857142857,NA,"Beatriz Vaca","Finished","Cropped","Cropped","30%",""
+"2013-11-05_YB-AEq1",2013-11-05,2013-11-05,"YB","AE","1","Ls","Littorina_sitkana","Type 13",134,0.0875,1531.42857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to thin, filmy algae cover."
+"2013-11-05_YB-AEq4",2013-11-05,2013-11-05,"YB","AE","4","Ls","Littorina_sitkana","Type 13",227,0.0875,2594.28571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","50%",""
+"2013-11-05_YB-AEq8",2013-11-05,2013-11-05,"YB","AE","8","Ls","Littorina_sitkana","Type 13",171,0.0875,1954.28571428571,NA,"Beatriz Vaca","Finished","Cropped","Cropped","30%",""
+"2013-11-05_YB-AEq1",2013-11-05,2013-11-05,"YB","AE","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to thin, filmy algae cover."
+"2013-11-05_YB-AEq4",2013-11-05,2013-11-05,"YB","AE","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%",""
+"2013-11-05_YB-AEq8",2013-11-05,2013-11-05,"YB","AE","8","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","30%",""
+"2013-11-05_YB-AEq1",2013-11-05,2013-11-05,"YB","AE","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to thin, filmy algae cover."
+"2013-11-05_YB-AEq4",2013-11-05,2013-11-05,"YB","AE","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%",""
+"2013-11-05_YB-AEq8",2013-11-05,2013-11-05,"YB","AE","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","30%",""
+"2013-11-05_YB-AEq1",2013-11-05,2013-11-05,"YB","AE","1","Myt","Mytilus_spp","Type 7",135,0.0875,1542.85714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to thin, filmy algae cover."
+"2013-11-05_YB-AEq4",2013-11-05,2013-11-05,"YB","AE","4","Myt","Mytilus_spp","Type 7",300,0.0875,3428.57142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","50%",""
+"2013-11-05_YB-AEq8",2013-11-05,2013-11-05,"YB","AE","8","Myt","Mytilus_spp","Type 7",288,0.015625,18432,"c","Beatriz Vaca","Finished","Cropped","Cropped","30%",""
+"2013-11-05_YB-AEq1",2013-11-05,2013-11-05,"YB","AE","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to thin, filmy algae cover."
+"2013-11-05_YB-AEq4",2013-11-05,2013-11-05,"YB","AE","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%",""
+"2013-11-05_YB-AEq8",2013-11-05,2013-11-05,"YB","AE","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","30%",""
+"2013-11-05_YB-AEq1",2013-11-05,2013-11-05,"YB","AE","1","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to thin, filmy algae cover."
+"2013-11-05_YB-AEq4",2013-11-05,2013-11-05,"YB","AE","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%",""
+"2013-11-05_YB-AEq8",2013-11-05,2013-11-05,"YB","AE","8","Mt","Mytilus_trossulus","Type 15",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","30%",""
+"2013-11-05_YB-AEq1",2013-11-05,2013-11-05,"YB","AE","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to thin, filmy algae cover."
+"2013-11-05_YB-AEq4",2013-11-05,2013-11-05,"YB","AE","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%",""
+"2013-11-05_YB-AEq8",2013-11-05,2013-11-05,"YB","AE","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","30%",""
+"2013-11-05_YB-AEq1",2013-11-05,2013-11-05,"YB","AE","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to thin, filmy algae cover."
+"2013-11-05_YB-AEq4",2013-11-05,2013-11-05,"YB","AE","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%",""
+"2013-11-05_YB-AEq8",2013-11-05,2013-11-05,"YB","AE","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","30%",""
+"2013-11-05_YB-AEq1",2013-11-05,2013-11-05,"YB","AE","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to thin, filmy algae cover."
+"2013-11-05_YB-AEq4",2013-11-05,2013-11-05,"YB","AE","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%",""
+"2013-11-05_YB-AEq8",2013-11-05,2013-11-05,"YB","AE","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","30%",""
+"2013-11-05_YB-AEq1",2013-11-05,2013-11-05,"YB","AE","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to thin, filmy algae cover."
+"2013-11-05_YB-AEq4",2013-11-05,2013-11-05,"YB","AE","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%",""
+"2013-11-05_YB-AEq8",2013-11-05,2013-11-05,"YB","AE","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","30%",""
+"2013-11-05_YB-AEq1",2013-11-05,2013-11-05,"YB","AE","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to thin, filmy algae cover."
+"2013-11-05_YB-AEq4",2013-11-05,2013-11-05,"YB","AE","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%",""
+"2013-11-05_YB-AEq8",2013-11-05,2013-11-05,"YB","AE","8","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","30%",""
+"2013-11-05_YB-AEq1",2013-11-05,2013-11-05,"YB","AE","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to thin, filmy algae cover."
+"2013-11-05_YB-AEq4",2013-11-05,2013-11-05,"YB","AE","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%",""
+"2013-11-05_YB-AEq8",2013-11-05,2013-11-05,"YB","AE","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","30%",""
+"2013-11-05_YB-AEq1",2013-11-05,2013-11-05,"YB","AE","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to thin, filmy algae cover."
+"2013-11-05_YB-AEq4",2013-11-05,2013-11-05,"YB","AE","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%",""
+"2013-11-05_YB-AEq8",2013-11-05,2013-11-05,"YB","AE","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","30%",""
+"2013-11-05_YB-AEq1",2013-11-05,2013-11-05,"YB","AE","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to thin, filmy algae cover."
+"2013-11-05_YB-AEq4",2013-11-05,2013-11-05,"YB","AE","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%",""
+"2013-11-05_YB-AEq8",2013-11-05,2013-11-05,"YB","AE","8","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","30%",""
+"2013-11-05_YB-AEq1",2013-11-05,2013-11-05,"YB","AE","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to thin, filmy algae cover."
+"2013-11-05_YB-AEq4",2013-11-05,2013-11-05,"YB","AE","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%",""
+"2013-11-05_YB-AEq8",2013-11-05,2013-11-05,"YB","AE","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","30%",""
+"2013-11-05_YB-AEq1",2013-11-05,2013-11-05,"YB","AE","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to thin, filmy algae cover."
+"2013-11-05_YB-AEq4",2013-11-05,2013-11-05,"YB","AE","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%",""
+"2013-11-05_YB-AEq8",2013-11-05,2013-11-05,"YB","AE","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","30%",""
+"2013-11-05_YB-AEq1",2013-11-05,2013-11-05,"YB","AE","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to thin, filmy algae cover."
+"2013-11-05_YB-AEq4",2013-11-05,2013-11-05,"YB","AE","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%",""
+"2013-11-05_YB-AEq8",2013-11-05,2013-11-05,"YB","AE","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","30%",""
+"2013-11-05_YB-AFq5",2013-11-05,2013-11-05,"YB","AF","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2013-11-05_YB-AFq8",2013-11-05,2013-11-05,"YB","AF","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","5%",""
+"2013-11-05_YB-AFq9",2013-11-05,2013-11-05,"YB","AF","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%","Counts likley low due to glare"
+"2013-11-05_YB-AFq5",2013-11-05,2013-11-05,"YB","AF","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2013-11-05_YB-AFq8",2013-11-05,2013-11-05,"YB","AF","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","5%",""
+"2013-11-05_YB-AFq9",2013-11-05,2013-11-05,"YB","AF","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%","Counts likley low due to glare"
+"2013-11-05_YB-AFq5",2013-11-05,2013-11-05,"YB","AF","5","Bg","Balanus_glandula","Type 1",677,0.015625,43328,"c","Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2013-11-05_YB-AFq8",2013-11-05,2013-11-05,"YB","AF","8","Bg","Balanus_glandula","Type 1",493,0.015625,31552,"c","Celeste Moen","Finished","Full","Cropped","5%",""
+"2013-11-05_YB-AFq9",2013-11-05,2013-11-05,"YB","AF","9","Bg","Balanus_glandula","Type 1",660,0.015625,42240,"c","Stephanie Merhoff","Finished","Full","Cropped","1%","Counts likley low due to glare"
+"2013-11-05_YB-AFq5",2013-11-05,2013-11-05,"YB","AF","5","BgD","Balanus_glandula_(dead)","Type 2",2,0.015625,128,"c","Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2013-11-05_YB-AFq8",2013-11-05,2013-11-05,"YB","AF","8","BgD","Balanus_glandula_(dead)","Type 2",6,0.015625,384,"c","Celeste Moen","Finished","Full","Cropped","5%",""
+"2013-11-05_YB-AFq9",2013-11-05,2013-11-05,"YB","AF","9","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","1%","Counts likley low due to glare"
+"2013-11-05_YB-AFq5",2013-11-05,2013-11-05,"YB","AF","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2013-11-05_YB-AFq8",2013-11-05,2013-11-05,"YB","AF","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","5%",""
+"2013-11-05_YB-AFq9",2013-11-05,2013-11-05,"YB","AF","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%","Counts likley low due to glare"
+"2013-11-05_YB-AFq5",2013-11-05,2013-11-05,"YB","AF","5","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2013-11-05_YB-AFq8",2013-11-05,2013-11-05,"YB","AF","8","Cth","Chthamalus_dalli","Type 3",65,0.015625,4160,"c","Celeste Moen","Finished","Full","Cropped","5%",""
+"2013-11-05_YB-AFq9",2013-11-05,2013-11-05,"YB","AF","9","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","1%","Counts likley low due to glare"
+"2013-11-05_YB-AFq5",2013-11-05,2013-11-05,"YB","AF","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2013-11-05_YB-AFq8",2013-11-05,2013-11-05,"YB","AF","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Celeste Moen","Finished","Full","Cropped","5%",""
+"2013-11-05_YB-AFq9",2013-11-05,2013-11-05,"YB","AF","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","1%","Counts likley low due to glare"
+"2013-11-05_YB-AFq5",2013-11-05,2013-11-05,"YB","AF","5","Emp","Emplectonema worm","Type 23",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2013-11-05_YB-AFq8",2013-11-05,2013-11-05,"YB","AF","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","5%",""
+"2013-11-05_YB-AFq9",2013-11-05,2013-11-05,"YB","AF","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%","Counts likley low due to glare"
+"2013-11-05_YB-AFq5",2013-11-05,2013-11-05,"YB","AF","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2013-11-05_YB-AFq8",2013-11-05,2013-11-05,"YB","AF","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","5%",""
+"2013-11-05_YB-AFq9",2013-11-05,2013-11-05,"YB","AF","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%","Counts likley low due to glare"
+"2013-11-05_YB-AFq5",2013-11-05,2013-11-05,"YB","AF","5","Lim","Limpets","Type 12",87,0.0875,994.285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2013-11-05_YB-AFq8",2013-11-05,2013-11-05,"YB","AF","8","Lim","Limpets","Type 12",37,0.0875,422.857142857143,NA,"Celeste Moen","Finished","Full","Cropped","5%",""
+"2013-11-05_YB-AFq9",2013-11-05,2013-11-05,"YB","AF","9","Lim","Limpets","Type 12",6,0.0875,68.5714285714286,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%","Counts likley low due to glare"
+"2013-11-05_YB-AFq5",2013-11-05,2013-11-05,"YB","AF","5","Ls","Littorina_sitkana","Type 13",291,0.0875,3325.71428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2013-11-05_YB-AFq8",2013-11-05,2013-11-05,"YB","AF","8","Ls","Littorina_sitkana","Type 13",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","5%",""
+"2013-11-05_YB-AFq9",2013-11-05,2013-11-05,"YB","AF","9","Ls","Littorina_sitkana","Type 13",39,0.0875,445.714285714286,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%","Counts likley low due to glare"
+"2013-11-05_YB-AFq5",2013-11-05,2013-11-05,"YB","AF","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2013-11-05_YB-AFq8",2013-11-05,2013-11-05,"YB","AF","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","5%",""
+"2013-11-05_YB-AFq9",2013-11-05,2013-11-05,"YB","AF","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%","Counts likley low due to glare"
+"2013-11-05_YB-AFq5",2013-11-05,2013-11-05,"YB","AF","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2013-11-05_YB-AFq8",2013-11-05,2013-11-05,"YB","AF","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","5%",""
+"2013-11-05_YB-AFq9",2013-11-05,2013-11-05,"YB","AF","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%","Counts likley low due to glare"
+"2013-11-05_YB-AFq5",2013-11-05,2013-11-05,"YB","AF","5","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2013-11-05_YB-AFq8",2013-11-05,2013-11-05,"YB","AF","8","Myt","Mytilus_spp","Type 7",732,0.0875,8365.71428571429,NA,"Celeste Moen","Finished","Full","Cropped","5%",""
+"2013-11-05_YB-AFq9",2013-11-05,2013-11-05,"YB","AF","9","Myt","Mytilus_spp","Type 7",1203,0.0875,13748.5714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%","Counts likley low due to glare"
+"2013-11-05_YB-AFq5",2013-11-05,2013-11-05,"YB","AF","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2013-11-05_YB-AFq8",2013-11-05,2013-11-05,"YB","AF","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","5%",""
+"2013-11-05_YB-AFq9",2013-11-05,2013-11-05,"YB","AF","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%","Counts likley low due to glare"
+"2013-11-05_YB-AFq5",2013-11-05,2013-11-05,"YB","AF","5","Mt","Mytilus_trossulus","Type 15",431,0.0875,4925.71428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2013-11-05_YB-AFq8",2013-11-05,2013-11-05,"YB","AF","8","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","5%",""
+"2013-11-05_YB-AFq9",2013-11-05,2013-11-05,"YB","AF","9","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%","Counts likley low due to glare"
+"2013-11-05_YB-AFq5",2013-11-05,2013-11-05,"YB","AF","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2013-11-05_YB-AFq8",2013-11-05,2013-11-05,"YB","AF","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","5%",""
+"2013-11-05_YB-AFq9",2013-11-05,2013-11-05,"YB","AF","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%","Counts likley low due to glare"
+"2013-11-05_YB-AFq5",2013-11-05,2013-11-05,"YB","AF","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2013-11-05_YB-AFq8",2013-11-05,2013-11-05,"YB","AF","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","5%",""
+"2013-11-05_YB-AFq9",2013-11-05,2013-11-05,"YB","AF","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%","Counts likley low due to glare"
+"2013-11-05_YB-AFq5",2013-11-05,2013-11-05,"YB","AF","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2013-11-05_YB-AFq8",2013-11-05,2013-11-05,"YB","AF","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","5%",""
+"2013-11-05_YB-AFq9",2013-11-05,2013-11-05,"YB","AF","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%","Counts likley low due to glare"
+"2013-11-05_YB-AFq5",2013-11-05,2013-11-05,"YB","AF","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2013-11-05_YB-AFq8",2013-11-05,2013-11-05,"YB","AF","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","5%",""
+"2013-11-05_YB-AFq9",2013-11-05,2013-11-05,"YB","AF","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%","Counts likley low due to glare"
+"2013-11-05_YB-AFq5",2013-11-05,2013-11-05,"YB","AF","5","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2013-11-05_YB-AFq8",2013-11-05,2013-11-05,"YB","AF","8","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","5%",""
+"2013-11-05_YB-AFq9",2013-11-05,2013-11-05,"YB","AF","9","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%","Counts likley low due to glare"
+"2013-11-05_YB-AFq5",2013-11-05,2013-11-05,"YB","AF","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2013-11-05_YB-AFq8",2013-11-05,2013-11-05,"YB","AF","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","5%",""
+"2013-11-05_YB-AFq9",2013-11-05,2013-11-05,"YB","AF","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%","Counts likley low due to glare"
+"2013-11-05_YB-AFq5",2013-11-05,2013-11-05,"YB","AF","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2013-11-05_YB-AFq8",2013-11-05,2013-11-05,"YB","AF","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","5%",""
+"2013-11-05_YB-AFq9",2013-11-05,2013-11-05,"YB","AF","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%","Counts likley low due to glare"
+"2013-11-05_YB-AFq5",2013-11-05,2013-11-05,"YB","AF","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2013-11-05_YB-AFq8",2013-11-05,2013-11-05,"YB","AF","8","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","5%",""
+"2013-11-05_YB-AFq9",2013-11-05,2013-11-05,"YB","AF","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%","Counts likley low due to glare"
+"2013-11-05_YB-AFq5",2013-11-05,2013-11-05,"YB","AF","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2013-11-05_YB-AFq8",2013-11-05,2013-11-05,"YB","AF","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","5%",""
+"2013-11-05_YB-AFq9",2013-11-05,2013-11-05,"YB","AF","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%","Counts likley low due to glare"
+"2013-11-05_YB-AFq5",2013-11-05,2013-11-05,"YB","AF","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2013-11-05_YB-AFq8",2013-11-05,2013-11-05,"YB","AF","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","5%",""
+"2013-11-05_YB-AFq9",2013-11-05,2013-11-05,"YB","AF","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%","Counts likley low due to glare"
+"2013-11-05_YB-AFq5",2013-11-05,2013-11-05,"YB","AF","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2013-11-05_YB-AFq8",2013-11-05,2013-11-05,"YB","AF","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","5%",""
+"2013-11-05_YB-AFq9",2013-11-05,2013-11-05,"YB","AF","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%","Counts likley low due to glare"
+"2013-11-05_YB-AGq1",2013-11-05,2013-11-05,"YB","AG","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-11-05_YB-AGq2",2013-11-05,2013-11-05,"YB","AG","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-11-05_YB-AGq3",2013-11-05,2013-11-05,"YB","AG","3","Alg","Algae","Type 19",5,0.0875,57.1428571428571,NA,"Isaac Shepard","Finished","Full","Cropped","2%",""
+"2013-11-05_YB-AGq7",2013-11-05,2013-11-05,"YB","AG","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-11-05_YB-AGq9",2013-11-05,2013-11-05,"YB","AG","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-11-05_YB-AGq1",2013-11-05,2013-11-05,"YB","AG","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-11-05_YB-AGq2",2013-11-05,2013-11-05,"YB","AG","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-11-05_YB-AGq3",2013-11-05,2013-11-05,"YB","AG","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","2%",""
+"2013-11-05_YB-AGq7",2013-11-05,2013-11-05,"YB","AG","7","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-11-05_YB-AGq9",2013-11-05,2013-11-05,"YB","AG","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-11-05_YB-AGq1",2013-11-05,2013-11-05,"YB","AG","1","Bg","Balanus_glandula","Type 1",1183,0.015625,75712,"c","Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-11-05_YB-AGq2",2013-11-05,2013-11-05,"YB","AG","2","Bg","Balanus_glandula","Type 1",759,0.015625,48576,"c","Isaac Shepard","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-11-05_YB-AGq3",2013-11-05,2013-11-05,"YB","AG","3","Bg","Balanus_glandula","Type 1",821,0.015625,52544,"c","Isaac Shepard","Finished","Full","Cropped","2%",""
+"2013-11-05_YB-AGq7",2013-11-05,2013-11-05,"YB","AG","7","Bg","Balanus_glandula","Type 1",1405,0.015625,89920,"c","Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-11-05_YB-AGq9",2013-11-05,2013-11-05,"YB","AG","9","Bg","Balanus_glandula","Type 1",1453,0.015625,92992,"c","Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-11-05_YB-AGq1",2013-11-05,2013-11-05,"YB","AG","1","BgD","Balanus_glandula_(dead)","Type 2",14,0.015625,896,"c","Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-11-05_YB-AGq2",2013-11-05,2013-11-05,"YB","AG","2","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-11-05_YB-AGq3",2013-11-05,2013-11-05,"YB","AG","3","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","2%",""
+"2013-11-05_YB-AGq7",2013-11-05,2013-11-05,"YB","AG","7","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-11-05_YB-AGq9",2013-11-05,2013-11-05,"YB","AG","9","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-11-05_YB-AGq1",2013-11-05,2013-11-05,"YB","AG","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-11-05_YB-AGq2",2013-11-05,2013-11-05,"YB","AG","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-11-05_YB-AGq3",2013-11-05,2013-11-05,"YB","AG","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","2%",""
+"2013-11-05_YB-AGq7",2013-11-05,2013-11-05,"YB","AG","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-11-05_YB-AGq9",2013-11-05,2013-11-05,"YB","AG","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-11-05_YB-AGq1",2013-11-05,2013-11-05,"YB","AG","1","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-11-05_YB-AGq2",2013-11-05,2013-11-05,"YB","AG","2","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-11-05_YB-AGq3",2013-11-05,2013-11-05,"YB","AG","3","Cth","Chthamalus_dalli","Type 3",5,0.015625,320,"c","Isaac Shepard","Finished","Full","Cropped","2%",""
+"2013-11-05_YB-AGq7",2013-11-05,2013-11-05,"YB","AG","7","Cth","Chthamalus_dalli","Type 3",34,0.015625,2176,"c","Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-11-05_YB-AGq9",2013-11-05,2013-11-05,"YB","AG","9","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-11-05_YB-AGq1",2013-11-05,2013-11-05,"YB","AG","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-11-05_YB-AGq2",2013-11-05,2013-11-05,"YB","AG","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-11-05_YB-AGq3",2013-11-05,2013-11-05,"YB","AG","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","2%",""
+"2013-11-05_YB-AGq7",2013-11-05,2013-11-05,"YB","AG","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-11-05_YB-AGq9",2013-11-05,2013-11-05,"YB","AG","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-11-05_YB-AGq1",2013-11-05,2013-11-05,"YB","AG","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-11-05_YB-AGq2",2013-11-05,2013-11-05,"YB","AG","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-11-05_YB-AGq3",2013-11-05,2013-11-05,"YB","AG","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","2%",""
+"2013-11-05_YB-AGq7",2013-11-05,2013-11-05,"YB","AG","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-11-05_YB-AGq9",2013-11-05,2013-11-05,"YB","AG","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-11-05_YB-AGq1",2013-11-05,2013-11-05,"YB","AG","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-11-05_YB-AGq2",2013-11-05,2013-11-05,"YB","AG","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-11-05_YB-AGq3",2013-11-05,2013-11-05,"YB","AG","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","2%",""
+"2013-11-05_YB-AGq7",2013-11-05,2013-11-05,"YB","AG","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-11-05_YB-AGq9",2013-11-05,2013-11-05,"YB","AG","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-11-05_YB-AGq1",2013-11-05,2013-11-05,"YB","AG","1","Lim","Limpets","Type 12",12,0.0875,137.142857142857,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-11-05_YB-AGq2",2013-11-05,2013-11-05,"YB","AG","2","Lim","Limpets","Type 12",15,0.0875,171.428571428571,NA,"Isaac Shepard","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-11-05_YB-AGq3",2013-11-05,2013-11-05,"YB","AG","3","Lim","Limpets","Type 12",29,0.0875,331.428571428571,NA,"Isaac Shepard","Finished","Full","Cropped","2%",""
+"2013-11-05_YB-AGq7",2013-11-05,2013-11-05,"YB","AG","7","Lim","Limpets","Type 12",15,0.0875,171.428571428571,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-11-05_YB-AGq9",2013-11-05,2013-11-05,"YB","AG","9","Lim","Limpets","Type 12",8,0.0875,91.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-11-05_YB-AGq1",2013-11-05,2013-11-05,"YB","AG","1","Ls","Littorina_sitkana","Type 13",20,0.0875,228.571428571429,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-11-05_YB-AGq2",2013-11-05,2013-11-05,"YB","AG","2","Ls","Littorina_sitkana","Type 13",21,0.0875,240,NA,"Isaac Shepard","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-11-05_YB-AGq3",2013-11-05,2013-11-05,"YB","AG","3","Ls","Littorina_sitkana","Type 13",63,0.0875,720,NA,"Isaac Shepard","Finished","Full","Cropped","2%",""
+"2013-11-05_YB-AGq7",2013-11-05,2013-11-05,"YB","AG","7","Ls","Littorina_sitkana","Type 13",128,0.0875,1462.85714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-11-05_YB-AGq9",2013-11-05,2013-11-05,"YB","AG","9","Ls","Littorina_sitkana","Type 13",50,0.0875,571.428571428571,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-11-05_YB-AGq1",2013-11-05,2013-11-05,"YB","AG","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-11-05_YB-AGq2",2013-11-05,2013-11-05,"YB","AG","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-11-05_YB-AGq3",2013-11-05,2013-11-05,"YB","AG","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","2%",""
+"2013-11-05_YB-AGq7",2013-11-05,2013-11-05,"YB","AG","7","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-11-05_YB-AGq9",2013-11-05,2013-11-05,"YB","AG","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-11-05_YB-AGq1",2013-11-05,2013-11-05,"YB","AG","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-11-05_YB-AGq2",2013-11-05,2013-11-05,"YB","AG","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-11-05_YB-AGq3",2013-11-05,2013-11-05,"YB","AG","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","2%",""
+"2013-11-05_YB-AGq7",2013-11-05,2013-11-05,"YB","AG","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-11-05_YB-AGq9",2013-11-05,2013-11-05,"YB","AG","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-11-05_YB-AGq1",2013-11-05,2013-11-05,"YB","AG","1","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-11-05_YB-AGq2",2013-11-05,2013-11-05,"YB","AG","2","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-11-05_YB-AGq3",2013-11-05,2013-11-05,"YB","AG","3","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","2%",""
+"2013-11-05_YB-AGq7",2013-11-05,2013-11-05,"YB","AG","7","Myt","Mytilus_spp","Type 7",502,0.0875,5737.14285714286,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-11-05_YB-AGq9",2013-11-05,2013-11-05,"YB","AG","9","Myt","Mytilus_spp","Type 7",360,0.0875,4114.28571428571,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-11-05_YB-AGq1",2013-11-05,2013-11-05,"YB","AG","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-11-05_YB-AGq2",2013-11-05,2013-11-05,"YB","AG","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-11-05_YB-AGq3",2013-11-05,2013-11-05,"YB","AG","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","2%",""
+"2013-11-05_YB-AGq7",2013-11-05,2013-11-05,"YB","AG","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-11-05_YB-AGq9",2013-11-05,2013-11-05,"YB","AG","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-11-05_YB-AGq1",2013-11-05,2013-11-05,"YB","AG","1","Mt","Mytilus_trossulus","Type 15",22,0.0875,251.428571428571,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-11-05_YB-AGq2",2013-11-05,2013-11-05,"YB","AG","2","Mt","Mytilus_trossulus","Type 15",7,0.0875,80,NA,"Isaac Shepard","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-11-05_YB-AGq3",2013-11-05,2013-11-05,"YB","AG","3","Mt","Mytilus_trossulus","Type 15",117,0.0875,1337.14285714286,NA,"Isaac Shepard","Finished","Full","Cropped","2%",""
+"2013-11-05_YB-AGq7",2013-11-05,2013-11-05,"YB","AG","7","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-11-05_YB-AGq9",2013-11-05,2013-11-05,"YB","AG","9","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-11-05_YB-AGq1",2013-11-05,2013-11-05,"YB","AG","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-11-05_YB-AGq2",2013-11-05,2013-11-05,"YB","AG","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-11-05_YB-AGq3",2013-11-05,2013-11-05,"YB","AG","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","2%",""
+"2013-11-05_YB-AGq7",2013-11-05,2013-11-05,"YB","AG","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-11-05_YB-AGq9",2013-11-05,2013-11-05,"YB","AG","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-11-05_YB-AGq1",2013-11-05,2013-11-05,"YB","AG","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-11-05_YB-AGq2",2013-11-05,2013-11-05,"YB","AG","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-11-05_YB-AGq3",2013-11-05,2013-11-05,"YB","AG","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","2%",""
+"2013-11-05_YB-AGq7",2013-11-05,2013-11-05,"YB","AG","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-11-05_YB-AGq9",2013-11-05,2013-11-05,"YB","AG","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-11-05_YB-AGq1",2013-11-05,2013-11-05,"YB","AG","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-11-05_YB-AGq2",2013-11-05,2013-11-05,"YB","AG","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-11-05_YB-AGq3",2013-11-05,2013-11-05,"YB","AG","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","2%",""
+"2013-11-05_YB-AGq7",2013-11-05,2013-11-05,"YB","AG","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-11-05_YB-AGq9",2013-11-05,2013-11-05,"YB","AG","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-11-05_YB-AGq1",2013-11-05,2013-11-05,"YB","AG","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-11-05_YB-AGq2",2013-11-05,2013-11-05,"YB","AG","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-11-05_YB-AGq3",2013-11-05,2013-11-05,"YB","AG","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","2%",""
+"2013-11-05_YB-AGq7",2013-11-05,2013-11-05,"YB","AG","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-11-05_YB-AGq9",2013-11-05,2013-11-05,"YB","AG","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-11-05_YB-AGq1",2013-11-05,2013-11-05,"YB","AG","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-11-05_YB-AGq2",2013-11-05,2013-11-05,"YB","AG","2","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-11-05_YB-AGq3",2013-11-05,2013-11-05,"YB","AG","3","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","2%",""
+"2013-11-05_YB-AGq7",2013-11-05,2013-11-05,"YB","AG","7","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-11-05_YB-AGq9",2013-11-05,2013-11-05,"YB","AG","9","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-11-05_YB-AGq1",2013-11-05,2013-11-05,"YB","AG","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-11-05_YB-AGq2",2013-11-05,2013-11-05,"YB","AG","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-11-05_YB-AGq3",2013-11-05,2013-11-05,"YB","AG","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","2%",""
+"2013-11-05_YB-AGq7",2013-11-05,2013-11-05,"YB","AG","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-11-05_YB-AGq9",2013-11-05,2013-11-05,"YB","AG","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-11-05_YB-AGq1",2013-11-05,2013-11-05,"YB","AG","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-11-05_YB-AGq2",2013-11-05,2013-11-05,"YB","AG","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-11-05_YB-AGq3",2013-11-05,2013-11-05,"YB","AG","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","2%",""
+"2013-11-05_YB-AGq7",2013-11-05,2013-11-05,"YB","AG","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-11-05_YB-AGq9",2013-11-05,2013-11-05,"YB","AG","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-11-05_YB-AGq1",2013-11-05,2013-11-05,"YB","AG","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-11-05_YB-AGq2",2013-11-05,2013-11-05,"YB","AG","2","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-11-05_YB-AGq3",2013-11-05,2013-11-05,"YB","AG","3","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","2%",""
+"2013-11-05_YB-AGq7",2013-11-05,2013-11-05,"YB","AG","7","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-11-05_YB-AGq9",2013-11-05,2013-11-05,"YB","AG","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-11-05_YB-AGq1",2013-11-05,2013-11-05,"YB","AG","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-11-05_YB-AGq2",2013-11-05,2013-11-05,"YB","AG","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-11-05_YB-AGq3",2013-11-05,2013-11-05,"YB","AG","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","2%",""
+"2013-11-05_YB-AGq7",2013-11-05,2013-11-05,"YB","AG","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-11-05_YB-AGq9",2013-11-05,2013-11-05,"YB","AG","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-11-05_YB-AGq1",2013-11-05,2013-11-05,"YB","AG","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-11-05_YB-AGq2",2013-11-05,2013-11-05,"YB","AG","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-11-05_YB-AGq3",2013-11-05,2013-11-05,"YB","AG","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","2%",""
+"2013-11-05_YB-AGq7",2013-11-05,2013-11-05,"YB","AG","7","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-11-05_YB-AGq9",2013-11-05,2013-11-05,"YB","AG","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-11-05_YB-AGq1",2013-11-05,2013-11-05,"YB","AG","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-11-05_YB-AGq2",2013-11-05,2013-11-05,"YB","AG","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%","Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2013-11-05_YB-AGq3",2013-11-05,2013-11-05,"YB","AG","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","2%",""
+"2013-11-05_YB-AGq7",2013-11-05,2013-11-05,"YB","AG","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-11-05_YB-AGq9",2013-11-05,2013-11-05,"YB","AG","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to algae film"
+"2013-11-05_YB-Bq1",2013-11-05,2013-11-05,"YB","B","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","14%","Barnacle counts may be low due to algal cover"
+"2013-11-05_YB-Bq2",2013-11-05,2013-11-05,"YB","B","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","28%",""
+"2013-11-05_YB-Bq3",2013-11-05,2013-11-05,"YB","B","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","18%",""
+"2013-11-05_YB-Bq4",2013-11-05,2013-11-05,"YB","B","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%",""
+"2013-11-05_YB-Bq5",2013-11-05,2013-11-05,"YB","B","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","23%",""
+"2013-11-05_YB-Bq6",2013-11-05,2013-11-05,"YB","B","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2013-11-05_YB-Bq7",2013-11-05,2013-11-05,"YB","B","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","38%",""
+"2013-11-05_YB-Bq8",2013-11-05,2013-11-05,"YB","B","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","19%","Mytilus byssal threads cover about 8% of quadrat"
+"2013-11-05_YB-Bq9",2013-11-05,2013-11-05,"YB","B","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2013-11-05_YB-Bq1",2013-11-05,2013-11-05,"YB","B","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","14%","Barnacle counts may be low due to algal cover"
+"2013-11-05_YB-Bq2",2013-11-05,2013-11-05,"YB","B","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","28%",""
+"2013-11-05_YB-Bq3",2013-11-05,2013-11-05,"YB","B","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","18%",""
+"2013-11-05_YB-Bq4",2013-11-05,2013-11-05,"YB","B","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%",""
+"2013-11-05_YB-Bq5",2013-11-05,2013-11-05,"YB","B","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","23%",""
+"2013-11-05_YB-Bq6",2013-11-05,2013-11-05,"YB","B","6","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2013-11-05_YB-Bq7",2013-11-05,2013-11-05,"YB","B","7","Ae","Anemones","Type 14",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","38%",""
+"2013-11-05_YB-Bq8",2013-11-05,2013-11-05,"YB","B","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","19%","Mytilus byssal threads cover about 8% of quadrat"
+"2013-11-05_YB-Bq9",2013-11-05,2013-11-05,"YB","B","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2013-11-05_YB-Bq1",2013-11-05,2013-11-05,"YB","B","1","Bg","Balanus_glandula","Type 1",497,0.015625,31808,"c","Beatriz Vaca","Finished","Full","Cropped","14%","Barnacle counts may be low due to algal cover"
+"2013-11-05_YB-Bq2",2013-11-05,2013-11-05,"YB","B","2","Bg","Balanus_glandula","Type 1",239,0.015625,15296,"c","Beatriz Vaca","Finished","Full","Cropped","28%",""
+"2013-11-05_YB-Bq3",2013-11-05,2013-11-05,"YB","B","3","Bg","Balanus_glandula","Type 1",233,0.015625,14912,"c","Beatriz Vaca","Finished","Full","Cropped","18%",""
+"2013-11-05_YB-Bq4",2013-11-05,2013-11-05,"YB","B","4","Bg","Balanus_glandula","Type 1",108,0.015625,6912,"c","Beatriz Vaca","Finished","Full","Cropped","25%",""
+"2013-11-05_YB-Bq5",2013-11-05,2013-11-05,"YB","B","5","Bg","Balanus_glandula","Type 1",384,0.0875,4388.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","23%",""
+"2013-11-05_YB-Bq6",2013-11-05,2013-11-05,"YB","B","6","Bg","Balanus_glandula","Type 1",466,0.0875,5325.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2013-11-05_YB-Bq7",2013-11-05,2013-11-05,"YB","B","7","Bg","Balanus_glandula","Type 1",93,0.0875,1062.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","38%",""
+"2013-11-05_YB-Bq8",2013-11-05,2013-11-05,"YB","B","8","Bg","Balanus_glandula","Type 1",467,0.0875,5337.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","19%","Mytilus byssal threads cover about 8% of quadrat"
+"2013-11-05_YB-Bq9",2013-11-05,2013-11-05,"YB","B","9","Bg","Balanus_glandula","Type 1",704,0.0875,8045.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2013-11-05_YB-Bq1",2013-11-05,2013-11-05,"YB","B","1","BgD","Balanus_glandula_(dead)","Type 2",5,0.015625,320,"c","Beatriz Vaca","Finished","Full","Cropped","14%","Barnacle counts may be low due to algal cover"
+"2013-11-05_YB-Bq2",2013-11-05,2013-11-05,"YB","B","2","BgD","Balanus_glandula_(dead)","Type 2",3,0.015625,192,"c","Beatriz Vaca","Finished","Full","Cropped","28%",""
+"2013-11-05_YB-Bq3",2013-11-05,2013-11-05,"YB","B","3","BgD","Balanus_glandula_(dead)","Type 2",1,0.015625,64,"c","Beatriz Vaca","Finished","Full","Cropped","18%",""
+"2013-11-05_YB-Bq4",2013-11-05,2013-11-05,"YB","B","4","BgD","Balanus_glandula_(dead)","Type 2",1,0.015625,64,"c","Beatriz Vaca","Finished","Full","Cropped","25%",""
+"2013-11-05_YB-Bq5",2013-11-05,2013-11-05,"YB","B","5","BgD","Balanus_glandula_(dead)","Type 2",9,0.0875,102.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","23%",""
+"2013-11-05_YB-Bq6",2013-11-05,2013-11-05,"YB","B","6","BgD","Balanus_glandula_(dead)","Type 2",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2013-11-05_YB-Bq7",2013-11-05,2013-11-05,"YB","B","7","BgD","Balanus_glandula_(dead)","Type 2",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","38%",""
+"2013-11-05_YB-Bq8",2013-11-05,2013-11-05,"YB","B","8","BgD","Balanus_glandula_(dead)","Type 2",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","19%","Mytilus byssal threads cover about 8% of quadrat"
+"2013-11-05_YB-Bq9",2013-11-05,2013-11-05,"YB","B","9","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2013-11-05_YB-Bq1",2013-11-05,2013-11-05,"YB","B","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","14%","Barnacle counts may be low due to algal cover"
+"2013-11-05_YB-Bq2",2013-11-05,2013-11-05,"YB","B","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","28%",""
+"2013-11-05_YB-Bq3",2013-11-05,2013-11-05,"YB","B","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","18%",""
+"2013-11-05_YB-Bq4",2013-11-05,2013-11-05,"YB","B","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%",""
+"2013-11-05_YB-Bq5",2013-11-05,2013-11-05,"YB","B","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","23%",""
+"2013-11-05_YB-Bq6",2013-11-05,2013-11-05,"YB","B","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2013-11-05_YB-Bq7",2013-11-05,2013-11-05,"YB","B","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","38%",""
+"2013-11-05_YB-Bq8",2013-11-05,2013-11-05,"YB","B","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","19%","Mytilus byssal threads cover about 8% of quadrat"
+"2013-11-05_YB-Bq9",2013-11-05,2013-11-05,"YB","B","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2013-11-05_YB-Bq1",2013-11-05,2013-11-05,"YB","B","1","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","14%","Barnacle counts may be low due to algal cover"
+"2013-11-05_YB-Bq2",2013-11-05,2013-11-05,"YB","B","2","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","28%",""
+"2013-11-05_YB-Bq3",2013-11-05,2013-11-05,"YB","B","3","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","18%",""
+"2013-11-05_YB-Bq4",2013-11-05,2013-11-05,"YB","B","4","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","25%",""
+"2013-11-05_YB-Bq5",2013-11-05,2013-11-05,"YB","B","5","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","23%",""
+"2013-11-05_YB-Bq6",2013-11-05,2013-11-05,"YB","B","6","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2013-11-05_YB-Bq7",2013-11-05,2013-11-05,"YB","B","7","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","38%",""
+"2013-11-05_YB-Bq8",2013-11-05,2013-11-05,"YB","B","8","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","19%","Mytilus byssal threads cover about 8% of quadrat"
+"2013-11-05_YB-Bq9",2013-11-05,2013-11-05,"YB","B","9","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2013-11-05_YB-Bq1",2013-11-05,2013-11-05,"YB","B","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","14%","Barnacle counts may be low due to algal cover"
+"2013-11-05_YB-Bq2",2013-11-05,2013-11-05,"YB","B","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","28%",""
+"2013-11-05_YB-Bq3",2013-11-05,2013-11-05,"YB","B","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","18%",""
+"2013-11-05_YB-Bq4",2013-11-05,2013-11-05,"YB","B","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","25%",""
+"2013-11-05_YB-Bq5",2013-11-05,2013-11-05,"YB","B","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","23%",""
+"2013-11-05_YB-Bq6",2013-11-05,2013-11-05,"YB","B","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2013-11-05_YB-Bq7",2013-11-05,2013-11-05,"YB","B","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","38%",""
+"2013-11-05_YB-Bq8",2013-11-05,2013-11-05,"YB","B","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","19%","Mytilus byssal threads cover about 8% of quadrat"
+"2013-11-05_YB-Bq9",2013-11-05,2013-11-05,"YB","B","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2013-11-05_YB-Bq1",2013-11-05,2013-11-05,"YB","B","1","Emp","Emplectonema worm","Type 23",9,0.0875,102.857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","14%","Barnacle counts may be low due to algal cover"
+"2013-11-05_YB-Bq2",2013-11-05,2013-11-05,"YB","B","2","Emp","Emplectonema worm","Type 23",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","28%",""
+"2013-11-05_YB-Bq3",2013-11-05,2013-11-05,"YB","B","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","18%",""
+"2013-11-05_YB-Bq4",2013-11-05,2013-11-05,"YB","B","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%",""
+"2013-11-05_YB-Bq5",2013-11-05,2013-11-05,"YB","B","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","23%",""
+"2013-11-05_YB-Bq6",2013-11-05,2013-11-05,"YB","B","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2013-11-05_YB-Bq7",2013-11-05,2013-11-05,"YB","B","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","38%",""
+"2013-11-05_YB-Bq8",2013-11-05,2013-11-05,"YB","B","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","19%","Mytilus byssal threads cover about 8% of quadrat"
+"2013-11-05_YB-Bq9",2013-11-05,2013-11-05,"YB","B","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2013-11-05_YB-Bq1",2013-11-05,2013-11-05,"YB","B","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","14%","Barnacle counts may be low due to algal cover"
+"2013-11-05_YB-Bq2",2013-11-05,2013-11-05,"YB","B","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","28%",""
+"2013-11-05_YB-Bq3",2013-11-05,2013-11-05,"YB","B","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","18%",""
+"2013-11-05_YB-Bq4",2013-11-05,2013-11-05,"YB","B","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%",""
+"2013-11-05_YB-Bq5",2013-11-05,2013-11-05,"YB","B","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","23%",""
+"2013-11-05_YB-Bq6",2013-11-05,2013-11-05,"YB","B","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2013-11-05_YB-Bq7",2013-11-05,2013-11-05,"YB","B","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","38%",""
+"2013-11-05_YB-Bq8",2013-11-05,2013-11-05,"YB","B","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","19%","Mytilus byssal threads cover about 8% of quadrat"
+"2013-11-05_YB-Bq9",2013-11-05,2013-11-05,"YB","B","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2013-11-05_YB-Bq1",2013-11-05,2013-11-05,"YB","B","1","Lim","Limpets","Type 12",57,0.0875,651.428571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","14%","Barnacle counts may be low due to algal cover"
+"2013-11-05_YB-Bq2",2013-11-05,2013-11-05,"YB","B","2","Lim","Limpets","Type 12",56,0.0875,640,NA,"Beatriz Vaca","Finished","Full","Cropped","28%",""
+"2013-11-05_YB-Bq3",2013-11-05,2013-11-05,"YB","B","3","Lim","Limpets","Type 12",53,0.0875,605.714285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","18%",""
+"2013-11-05_YB-Bq4",2013-11-05,2013-11-05,"YB","B","4","Lim","Limpets","Type 12",41,0.0875,468.571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","25%",""
+"2013-11-05_YB-Bq5",2013-11-05,2013-11-05,"YB","B","5","Lim","Limpets","Type 12",31,0.0875,354.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","23%",""
+"2013-11-05_YB-Bq6",2013-11-05,2013-11-05,"YB","B","6","Lim","Limpets","Type 12",55,0.0875,628.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2013-11-05_YB-Bq7",2013-11-05,2013-11-05,"YB","B","7","Lim","Limpets","Type 12",123,0.0875,1405.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","38%",""
+"2013-11-05_YB-Bq8",2013-11-05,2013-11-05,"YB","B","8","Lim","Limpets","Type 12",53,0.0875,605.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","19%","Mytilus byssal threads cover about 8% of quadrat"
+"2013-11-05_YB-Bq9",2013-11-05,2013-11-05,"YB","B","9","Lim","Limpets","Type 12",191,0.0875,2182.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2013-11-05_YB-Bq1",2013-11-05,2013-11-05,"YB","B","1","Ls","Littorina_sitkana","Type 13",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","14%","Barnacle counts may be low due to algal cover"
+"2013-11-05_YB-Bq2",2013-11-05,2013-11-05,"YB","B","2","Ls","Littorina_sitkana","Type 13",15,0.0875,171.428571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","28%",""
+"2013-11-05_YB-Bq3",2013-11-05,2013-11-05,"YB","B","3","Ls","Littorina_sitkana","Type 13",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","18%",""
+"2013-11-05_YB-Bq4",2013-11-05,2013-11-05,"YB","B","4","Ls","Littorina_sitkana","Type 13",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%",""
+"2013-11-05_YB-Bq5",2013-11-05,2013-11-05,"YB","B","5","Ls","Littorina_sitkana","Type 13",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","23%",""
+"2013-11-05_YB-Bq6",2013-11-05,2013-11-05,"YB","B","6","Ls","Littorina_sitkana","Type 13",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2013-11-05_YB-Bq7",2013-11-05,2013-11-05,"YB","B","7","Ls","Littorina_sitkana","Type 13",18,0.0875,205.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","38%",""
+"2013-11-05_YB-Bq8",2013-11-05,2013-11-05,"YB","B","8","Ls","Littorina_sitkana","Type 13",15,0.0875,171.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","19%","Mytilus byssal threads cover about 8% of quadrat"
+"2013-11-05_YB-Bq9",2013-11-05,2013-11-05,"YB","B","9","Ls","Littorina_sitkana","Type 13",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2013-11-05_YB-Bq1",2013-11-05,2013-11-05,"YB","B","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","14%","Barnacle counts may be low due to algal cover"
+"2013-11-05_YB-Bq2",2013-11-05,2013-11-05,"YB","B","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","28%",""
+"2013-11-05_YB-Bq3",2013-11-05,2013-11-05,"YB","B","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","18%",""
+"2013-11-05_YB-Bq4",2013-11-05,2013-11-05,"YB","B","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%",""
+"2013-11-05_YB-Bq5",2013-11-05,2013-11-05,"YB","B","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","23%",""
+"2013-11-05_YB-Bq6",2013-11-05,2013-11-05,"YB","B","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2013-11-05_YB-Bq7",2013-11-05,2013-11-05,"YB","B","7","Mc","Mytilus_californianus","Type 17",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","38%",""
+"2013-11-05_YB-Bq8",2013-11-05,2013-11-05,"YB","B","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","19%","Mytilus byssal threads cover about 8% of quadrat"
+"2013-11-05_YB-Bq9",2013-11-05,2013-11-05,"YB","B","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2013-11-05_YB-Bq1",2013-11-05,2013-11-05,"YB","B","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","14%","Barnacle counts may be low due to algal cover"
+"2013-11-05_YB-Bq2",2013-11-05,2013-11-05,"YB","B","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","28%",""
+"2013-11-05_YB-Bq3",2013-11-05,2013-11-05,"YB","B","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","18%",""
+"2013-11-05_YB-Bq4",2013-11-05,2013-11-05,"YB","B","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%",""
+"2013-11-05_YB-Bq5",2013-11-05,2013-11-05,"YB","B","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","23%",""
+"2013-11-05_YB-Bq6",2013-11-05,2013-11-05,"YB","B","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2013-11-05_YB-Bq7",2013-11-05,2013-11-05,"YB","B","7","McD","Mytilus_californianus_(dead)","Type 18",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","38%",""
+"2013-11-05_YB-Bq8",2013-11-05,2013-11-05,"YB","B","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","19%","Mytilus byssal threads cover about 8% of quadrat"
+"2013-11-05_YB-Bq9",2013-11-05,2013-11-05,"YB","B","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2013-11-05_YB-Bq1",2013-11-05,2013-11-05,"YB","B","1","Myt","Mytilus_spp","Type 7",488,0.0875,5577.14285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","14%","Barnacle counts may be low due to algal cover"
+"2013-11-05_YB-Bq2",2013-11-05,2013-11-05,"YB","B","2","Myt","Mytilus_spp","Type 7",380,0.0875,4342.85714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","28%",""
+"2013-11-05_YB-Bq3",2013-11-05,2013-11-05,"YB","B","3","Myt","Mytilus_spp","Type 7",249,0.0875,2845.71428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","18%",""
+"2013-11-05_YB-Bq4",2013-11-05,2013-11-05,"YB","B","4","Myt","Mytilus_spp","Type 7",212,0.0875,2422.85714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","25%",""
+"2013-11-05_YB-Bq5",2013-11-05,2013-11-05,"YB","B","5","Myt","Mytilus_spp","Type 7",443,0.0875,5062.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","23%",""
+"2013-11-05_YB-Bq6",2013-11-05,2013-11-05,"YB","B","6","Myt","Mytilus_spp","Type 7",221,0.0875,2525.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2013-11-05_YB-Bq7",2013-11-05,2013-11-05,"YB","B","7","Myt","Mytilus_spp","Type 7",26,0.0875,297.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","38%",""
+"2013-11-05_YB-Bq8",2013-11-05,2013-11-05,"YB","B","8","Myt","Mytilus_spp","Type 7",568,0.0875,6491.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","19%","Mytilus byssal threads cover about 8% of quadrat"
+"2013-11-05_YB-Bq9",2013-11-05,2013-11-05,"YB","B","9","Myt","Mytilus_spp","Type 7",595,0.0875,6800,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2013-11-05_YB-Bq1",2013-11-05,2013-11-05,"YB","B","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","14%","Barnacle counts may be low due to algal cover"
+"2013-11-05_YB-Bq2",2013-11-05,2013-11-05,"YB","B","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","28%",""
+"2013-11-05_YB-Bq3",2013-11-05,2013-11-05,"YB","B","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","18%",""
+"2013-11-05_YB-Bq4",2013-11-05,2013-11-05,"YB","B","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%",""
+"2013-11-05_YB-Bq5",2013-11-05,2013-11-05,"YB","B","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","23%",""
+"2013-11-05_YB-Bq6",2013-11-05,2013-11-05,"YB","B","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2013-11-05_YB-Bq7",2013-11-05,2013-11-05,"YB","B","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","38%",""
+"2013-11-05_YB-Bq8",2013-11-05,2013-11-05,"YB","B","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","19%","Mytilus byssal threads cover about 8% of quadrat"
+"2013-11-05_YB-Bq9",2013-11-05,2013-11-05,"YB","B","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2013-11-05_YB-Bq1",2013-11-05,2013-11-05,"YB","B","1","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","14%","Barnacle counts may be low due to algal cover"
+"2013-11-05_YB-Bq2",2013-11-05,2013-11-05,"YB","B","2","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","28%",""
+"2013-11-05_YB-Bq3",2013-11-05,2013-11-05,"YB","B","3","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","18%",""
+"2013-11-05_YB-Bq4",2013-11-05,2013-11-05,"YB","B","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%",""
+"2013-11-05_YB-Bq5",2013-11-05,2013-11-05,"YB","B","5","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","23%",""
+"2013-11-05_YB-Bq6",2013-11-05,2013-11-05,"YB","B","6","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2013-11-05_YB-Bq7",2013-11-05,2013-11-05,"YB","B","7","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","38%",""
+"2013-11-05_YB-Bq8",2013-11-05,2013-11-05,"YB","B","8","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","19%","Mytilus byssal threads cover about 8% of quadrat"
+"2013-11-05_YB-Bq9",2013-11-05,2013-11-05,"YB","B","9","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2013-11-05_YB-Bq1",2013-11-05,2013-11-05,"YB","B","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","14%","Barnacle counts may be low due to algal cover"
+"2013-11-05_YB-Bq2",2013-11-05,2013-11-05,"YB","B","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","28%",""
+"2013-11-05_YB-Bq3",2013-11-05,2013-11-05,"YB","B","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","18%",""
+"2013-11-05_YB-Bq4",2013-11-05,2013-11-05,"YB","B","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%",""
+"2013-11-05_YB-Bq5",2013-11-05,2013-11-05,"YB","B","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","23%",""
+"2013-11-05_YB-Bq6",2013-11-05,2013-11-05,"YB","B","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2013-11-05_YB-Bq7",2013-11-05,2013-11-05,"YB","B","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","38%",""
+"2013-11-05_YB-Bq8",2013-11-05,2013-11-05,"YB","B","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","19%","Mytilus byssal threads cover about 8% of quadrat"
+"2013-11-05_YB-Bq9",2013-11-05,2013-11-05,"YB","B","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2013-11-05_YB-Bq1",2013-11-05,2013-11-05,"YB","B","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","14%","Barnacle counts may be low due to algal cover"
+"2013-11-05_YB-Bq2",2013-11-05,2013-11-05,"YB","B","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","28%",""
+"2013-11-05_YB-Bq3",2013-11-05,2013-11-05,"YB","B","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","18%",""
+"2013-11-05_YB-Bq4",2013-11-05,2013-11-05,"YB","B","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%",""
+"2013-11-05_YB-Bq5",2013-11-05,2013-11-05,"YB","B","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","23%",""
+"2013-11-05_YB-Bq6",2013-11-05,2013-11-05,"YB","B","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2013-11-05_YB-Bq7",2013-11-05,2013-11-05,"YB","B","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","38%",""
+"2013-11-05_YB-Bq8",2013-11-05,2013-11-05,"YB","B","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","19%","Mytilus byssal threads cover about 8% of quadrat"
+"2013-11-05_YB-Bq9",2013-11-05,2013-11-05,"YB","B","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2013-11-05_YB-Bq1",2013-11-05,2013-11-05,"YB","B","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","14%","Barnacle counts may be low due to algal cover"
+"2013-11-05_YB-Bq2",2013-11-05,2013-11-05,"YB","B","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","28%",""
+"2013-11-05_YB-Bq3",2013-11-05,2013-11-05,"YB","B","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","18%",""
+"2013-11-05_YB-Bq4",2013-11-05,2013-11-05,"YB","B","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%",""
+"2013-11-05_YB-Bq5",2013-11-05,2013-11-05,"YB","B","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","23%",""
+"2013-11-05_YB-Bq6",2013-11-05,2013-11-05,"YB","B","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2013-11-05_YB-Bq7",2013-11-05,2013-11-05,"YB","B","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","38%",""
+"2013-11-05_YB-Bq8",2013-11-05,2013-11-05,"YB","B","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","19%","Mytilus byssal threads cover about 8% of quadrat"
+"2013-11-05_YB-Bq9",2013-11-05,2013-11-05,"YB","B","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2013-11-05_YB-Bq1",2013-11-05,2013-11-05,"YB","B","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","14%","Barnacle counts may be low due to algal cover"
+"2013-11-05_YB-Bq2",2013-11-05,2013-11-05,"YB","B","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","28%",""
+"2013-11-05_YB-Bq3",2013-11-05,2013-11-05,"YB","B","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","18%",""
+"2013-11-05_YB-Bq4",2013-11-05,2013-11-05,"YB","B","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%",""
+"2013-11-05_YB-Bq5",2013-11-05,2013-11-05,"YB","B","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","23%",""
+"2013-11-05_YB-Bq6",2013-11-05,2013-11-05,"YB","B","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2013-11-05_YB-Bq7",2013-11-05,2013-11-05,"YB","B","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","38%",""
+"2013-11-05_YB-Bq8",2013-11-05,2013-11-05,"YB","B","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","19%","Mytilus byssal threads cover about 8% of quadrat"
+"2013-11-05_YB-Bq9",2013-11-05,2013-11-05,"YB","B","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2013-11-05_YB-Bq1",2013-11-05,2013-11-05,"YB","B","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","14%","Barnacle counts may be low due to algal cover"
+"2013-11-05_YB-Bq2",2013-11-05,2013-11-05,"YB","B","2","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","28%",""
+"2013-11-05_YB-Bq3",2013-11-05,2013-11-05,"YB","B","3","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","18%",""
+"2013-11-05_YB-Bq4",2013-11-05,2013-11-05,"YB","B","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%",""
+"2013-11-05_YB-Bq5",2013-11-05,2013-11-05,"YB","B","5","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","23%",""
+"2013-11-05_YB-Bq6",2013-11-05,2013-11-05,"YB","B","6","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2013-11-05_YB-Bq7",2013-11-05,2013-11-05,"YB","B","7","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","38%",""
+"2013-11-05_YB-Bq8",2013-11-05,2013-11-05,"YB","B","8","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","19%","Mytilus byssal threads cover about 8% of quadrat"
+"2013-11-05_YB-Bq9",2013-11-05,2013-11-05,"YB","B","9","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2013-11-05_YB-Bq1",2013-11-05,2013-11-05,"YB","B","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","14%","Barnacle counts may be low due to algal cover"
+"2013-11-05_YB-Bq2",2013-11-05,2013-11-05,"YB","B","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","28%",""
+"2013-11-05_YB-Bq3",2013-11-05,2013-11-05,"YB","B","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","18%",""
+"2013-11-05_YB-Bq4",2013-11-05,2013-11-05,"YB","B","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%",""
+"2013-11-05_YB-Bq5",2013-11-05,2013-11-05,"YB","B","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","23%",""
+"2013-11-05_YB-Bq6",2013-11-05,2013-11-05,"YB","B","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2013-11-05_YB-Bq7",2013-11-05,2013-11-05,"YB","B","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","38%",""
+"2013-11-05_YB-Bq8",2013-11-05,2013-11-05,"YB","B","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","19%","Mytilus byssal threads cover about 8% of quadrat"
+"2013-11-05_YB-Bq9",2013-11-05,2013-11-05,"YB","B","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2013-11-05_YB-Bq1",2013-11-05,2013-11-05,"YB","B","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","14%","Barnacle counts may be low due to algal cover"
+"2013-11-05_YB-Bq2",2013-11-05,2013-11-05,"YB","B","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","28%",""
+"2013-11-05_YB-Bq3",2013-11-05,2013-11-05,"YB","B","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","18%",""
+"2013-11-05_YB-Bq4",2013-11-05,2013-11-05,"YB","B","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%",""
+"2013-11-05_YB-Bq5",2013-11-05,2013-11-05,"YB","B","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","23%",""
+"2013-11-05_YB-Bq6",2013-11-05,2013-11-05,"YB","B","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2013-11-05_YB-Bq7",2013-11-05,2013-11-05,"YB","B","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","38%",""
+"2013-11-05_YB-Bq8",2013-11-05,2013-11-05,"YB","B","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","19%","Mytilus byssal threads cover about 8% of quadrat"
+"2013-11-05_YB-Bq9",2013-11-05,2013-11-05,"YB","B","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2013-11-05_YB-Bq1",2013-11-05,2013-11-05,"YB","B","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","14%","Barnacle counts may be low due to algal cover"
+"2013-11-05_YB-Bq2",2013-11-05,2013-11-05,"YB","B","2","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","28%",""
+"2013-11-05_YB-Bq3",2013-11-05,2013-11-05,"YB","B","3","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","18%",""
+"2013-11-05_YB-Bq4",2013-11-05,2013-11-05,"YB","B","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%",""
+"2013-11-05_YB-Bq5",2013-11-05,2013-11-05,"YB","B","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","23%",""
+"2013-11-05_YB-Bq6",2013-11-05,2013-11-05,"YB","B","6","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2013-11-05_YB-Bq7",2013-11-05,2013-11-05,"YB","B","7","Pp","Pollicipes_polymerus","Type 11",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","38%",""
+"2013-11-05_YB-Bq8",2013-11-05,2013-11-05,"YB","B","8","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","19%","Mytilus byssal threads cover about 8% of quadrat"
+"2013-11-05_YB-Bq9",2013-11-05,2013-11-05,"YB","B","9","Pp","Pollicipes_polymerus","Type 11",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2013-11-05_YB-Bq1",2013-11-05,2013-11-05,"YB","B","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","14%","Barnacle counts may be low due to algal cover"
+"2013-11-05_YB-Bq2",2013-11-05,2013-11-05,"YB","B","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","28%",""
+"2013-11-05_YB-Bq3",2013-11-05,2013-11-05,"YB","B","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","18%",""
+"2013-11-05_YB-Bq4",2013-11-05,2013-11-05,"YB","B","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%",""
+"2013-11-05_YB-Bq5",2013-11-05,2013-11-05,"YB","B","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","23%",""
+"2013-11-05_YB-Bq6",2013-11-05,2013-11-05,"YB","B","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2013-11-05_YB-Bq7",2013-11-05,2013-11-05,"YB","B","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","38%",""
+"2013-11-05_YB-Bq8",2013-11-05,2013-11-05,"YB","B","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","19%","Mytilus byssal threads cover about 8% of quadrat"
+"2013-11-05_YB-Bq9",2013-11-05,2013-11-05,"YB","B","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2013-11-05_YB-Bq1",2013-11-05,2013-11-05,"YB","B","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","14%","Barnacle counts may be low due to algal cover"
+"2013-11-05_YB-Bq2",2013-11-05,2013-11-05,"YB","B","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","28%",""
+"2013-11-05_YB-Bq3",2013-11-05,2013-11-05,"YB","B","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","18%",""
+"2013-11-05_YB-Bq4",2013-11-05,2013-11-05,"YB","B","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%",""
+"2013-11-05_YB-Bq5",2013-11-05,2013-11-05,"YB","B","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","23%",""
+"2013-11-05_YB-Bq6",2013-11-05,2013-11-05,"YB","B","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2013-11-05_YB-Bq7",2013-11-05,2013-11-05,"YB","B","7","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","38%",""
+"2013-11-05_YB-Bq8",2013-11-05,2013-11-05,"YB","B","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","19%","Mytilus byssal threads cover about 8% of quadrat"
+"2013-11-05_YB-Bq9",2013-11-05,2013-11-05,"YB","B","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2013-11-05_YB-Bq1",2013-11-05,2013-11-05,"YB","B","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","14%","Barnacle counts may be low due to algal cover"
+"2013-11-05_YB-Bq2",2013-11-05,2013-11-05,"YB","B","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","28%",""
+"2013-11-05_YB-Bq3",2013-11-05,2013-11-05,"YB","B","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","18%",""
+"2013-11-05_YB-Bq4",2013-11-05,2013-11-05,"YB","B","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%",""
+"2013-11-05_YB-Bq5",2013-11-05,2013-11-05,"YB","B","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","23%",""
+"2013-11-05_YB-Bq6",2013-11-05,2013-11-05,"YB","B","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2013-11-05_YB-Bq7",2013-11-05,2013-11-05,"YB","B","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","38%",""
+"2013-11-05_YB-Bq8",2013-11-05,2013-11-05,"YB","B","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","19%","Mytilus byssal threads cover about 8% of quadrat"
+"2013-11-05_YB-Bq9",2013-11-05,2013-11-05,"YB","B","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2013-11-05_YB-BBq1",2013-11-05,2013-11-05,"YB","BB","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2013-11-05_YB-BBq2",2013-11-05,2013-11-05,"YB","BB","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to blur"
+"2013-11-05_YB-BBq9",2013-11-05,2013-11-05,"YB","BB","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-11-05_YB-BBq1",2013-11-05,2013-11-05,"YB","BB","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2013-11-05_YB-BBq2",2013-11-05,2013-11-05,"YB","BB","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to blur"
+"2013-11-05_YB-BBq9",2013-11-05,2013-11-05,"YB","BB","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-11-05_YB-BBq1",2013-11-05,2013-11-05,"YB","BB","1","Bg","Balanus_glandula","Type 1",820,0.015625,52480,"c","Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2013-11-05_YB-BBq2",2013-11-05,2013-11-05,"YB","BB","2","Bg","Balanus_glandula","Type 1",834,0.015625,53376,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to blur"
+"2013-11-05_YB-BBq9",2013-11-05,2013-11-05,"YB","BB","9","Bg","Balanus_glandula","Type 1",922,0.015625,59008,"c","Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-11-05_YB-BBq1",2013-11-05,2013-11-05,"YB","BB","1","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2013-11-05_YB-BBq2",2013-11-05,2013-11-05,"YB","BB","2","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to blur"
+"2013-11-05_YB-BBq9",2013-11-05,2013-11-05,"YB","BB","9","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-11-05_YB-BBq1",2013-11-05,2013-11-05,"YB","BB","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2013-11-05_YB-BBq2",2013-11-05,2013-11-05,"YB","BB","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to blur"
+"2013-11-05_YB-BBq9",2013-11-05,2013-11-05,"YB","BB","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-11-05_YB-BBq1",2013-11-05,2013-11-05,"YB","BB","1","Cth","Chthamalus_dalli","Type 3",14,0.015625,896,"c","Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2013-11-05_YB-BBq2",2013-11-05,2013-11-05,"YB","BB","2","Cth","Chthamalus_dalli","Type 3",12,0.015625,768,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to blur"
+"2013-11-05_YB-BBq9",2013-11-05,2013-11-05,"YB","BB","9","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-11-05_YB-BBq1",2013-11-05,2013-11-05,"YB","BB","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2013-11-05_YB-BBq2",2013-11-05,2013-11-05,"YB","BB","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to blur"
+"2013-11-05_YB-BBq9",2013-11-05,2013-11-05,"YB","BB","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-11-05_YB-BBq1",2013-11-05,2013-11-05,"YB","BB","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2013-11-05_YB-BBq2",2013-11-05,2013-11-05,"YB","BB","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to blur"
+"2013-11-05_YB-BBq9",2013-11-05,2013-11-05,"YB","BB","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-11-05_YB-BBq1",2013-11-05,2013-11-05,"YB","BB","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2013-11-05_YB-BBq2",2013-11-05,2013-11-05,"YB","BB","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to blur"
+"2013-11-05_YB-BBq9",2013-11-05,2013-11-05,"YB","BB","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-11-05_YB-BBq1",2013-11-05,2013-11-05,"YB","BB","1","Lim","Limpets","Type 12",14,0.0875,160,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2013-11-05_YB-BBq2",2013-11-05,2013-11-05,"YB","BB","2","Lim","Limpets","Type 12",13,0.0875,148.571428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to blur"
+"2013-11-05_YB-BBq9",2013-11-05,2013-11-05,"YB","BB","9","Lim","Limpets","Type 12",6,0.0875,68.5714285714286,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-11-05_YB-BBq1",2013-11-05,2013-11-05,"YB","BB","1","Ls","Littorina_sitkana","Type 13",75,0.0875,857.142857142857,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2013-11-05_YB-BBq2",2013-11-05,2013-11-05,"YB","BB","2","Ls","Littorina_sitkana","Type 13",81,0.0875,925.714285714286,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to blur"
+"2013-11-05_YB-BBq9",2013-11-05,2013-11-05,"YB","BB","9","Ls","Littorina_sitkana","Type 13",25,0.0875,285.714285714286,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-11-05_YB-BBq1",2013-11-05,2013-11-05,"YB","BB","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2013-11-05_YB-BBq2",2013-11-05,2013-11-05,"YB","BB","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to blur"
+"2013-11-05_YB-BBq9",2013-11-05,2013-11-05,"YB","BB","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-11-05_YB-BBq1",2013-11-05,2013-11-05,"YB","BB","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2013-11-05_YB-BBq2",2013-11-05,2013-11-05,"YB","BB","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to blur"
+"2013-11-05_YB-BBq9",2013-11-05,2013-11-05,"YB","BB","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-11-05_YB-BBq1",2013-11-05,2013-11-05,"YB","BB","1","Myt","Mytilus_spp","Type 7",389,0.0875,4445.71428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2013-11-05_YB-BBq2",2013-11-05,2013-11-05,"YB","BB","2","Myt","Mytilus_spp","Type 7",279,0.0875,3188.57142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to blur"
+"2013-11-05_YB-BBq9",2013-11-05,2013-11-05,"YB","BB","9","Myt","Mytilus_spp","Type 7",138,0.0875,1577.14285714286,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-11-05_YB-BBq1",2013-11-05,2013-11-05,"YB","BB","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2013-11-05_YB-BBq2",2013-11-05,2013-11-05,"YB","BB","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to blur"
+"2013-11-05_YB-BBq9",2013-11-05,2013-11-05,"YB","BB","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-11-05_YB-BBq1",2013-11-05,2013-11-05,"YB","BB","1","Mt","Mytilus_trossulus","Type 15",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2013-11-05_YB-BBq2",2013-11-05,2013-11-05,"YB","BB","2","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to blur"
+"2013-11-05_YB-BBq9",2013-11-05,2013-11-05,"YB","BB","9","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-11-05_YB-BBq1",2013-11-05,2013-11-05,"YB","BB","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2013-11-05_YB-BBq2",2013-11-05,2013-11-05,"YB","BB","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to blur"
+"2013-11-05_YB-BBq9",2013-11-05,2013-11-05,"YB","BB","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-11-05_YB-BBq1",2013-11-05,2013-11-05,"YB","BB","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2013-11-05_YB-BBq2",2013-11-05,2013-11-05,"YB","BB","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to blur"
+"2013-11-05_YB-BBq9",2013-11-05,2013-11-05,"YB","BB","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-11-05_YB-BBq1",2013-11-05,2013-11-05,"YB","BB","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2013-11-05_YB-BBq2",2013-11-05,2013-11-05,"YB","BB","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to blur"
+"2013-11-05_YB-BBq9",2013-11-05,2013-11-05,"YB","BB","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-11-05_YB-BBq1",2013-11-05,2013-11-05,"YB","BB","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2013-11-05_YB-BBq2",2013-11-05,2013-11-05,"YB","BB","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to blur"
+"2013-11-05_YB-BBq9",2013-11-05,2013-11-05,"YB","BB","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-11-05_YB-BBq1",2013-11-05,2013-11-05,"YB","BB","1","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2013-11-05_YB-BBq2",2013-11-05,2013-11-05,"YB","BB","2","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to blur"
+"2013-11-05_YB-BBq9",2013-11-05,2013-11-05,"YB","BB","9","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-11-05_YB-BBq1",2013-11-05,2013-11-05,"YB","BB","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2013-11-05_YB-BBq2",2013-11-05,2013-11-05,"YB","BB","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to blur"
+"2013-11-05_YB-BBq9",2013-11-05,2013-11-05,"YB","BB","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-11-05_YB-BBq1",2013-11-05,2013-11-05,"YB","BB","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2013-11-05_YB-BBq2",2013-11-05,2013-11-05,"YB","BB","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to blur"
+"2013-11-05_YB-BBq9",2013-11-05,2013-11-05,"YB","BB","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-11-05_YB-BBq1",2013-11-05,2013-11-05,"YB","BB","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2013-11-05_YB-BBq2",2013-11-05,2013-11-05,"YB","BB","2","Pp","Pollicipes_polymerus","Type 11",4,0.0875,45.7142857142857,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to blur"
+"2013-11-05_YB-BBq9",2013-11-05,2013-11-05,"YB","BB","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-11-05_YB-BBq1",2013-11-05,2013-11-05,"YB","BB","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2013-11-05_YB-BBq2",2013-11-05,2013-11-05,"YB","BB","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to blur"
+"2013-11-05_YB-BBq9",2013-11-05,2013-11-05,"YB","BB","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-11-05_YB-BBq1",2013-11-05,2013-11-05,"YB","BB","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2013-11-05_YB-BBq2",2013-11-05,2013-11-05,"YB","BB","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to blur"
+"2013-11-05_YB-BBq9",2013-11-05,2013-11-05,"YB","BB","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-11-05_YB-BBq1",2013-11-05,2013-11-05,"YB","BB","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2013-11-05_YB-BBq2",2013-11-05,2013-11-05,"YB","BB","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to blur"
+"2013-11-05_YB-BBq9",2013-11-05,2013-11-05,"YB","BB","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-11-05_YB-BCq3",2013-11-05,2013-11-05,"YB","BC","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-11-05_YB-BCq5",2013-11-05,2013-11-05,"YB","BC","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","4%","Counts may be low due to glare."
+"2013-11-05_YB-BCq9",2013-11-05,2013-11-05,"YB","BC","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","4%","Counts may be low due to glare."
+"2013-11-05_YB-BCq3",2013-11-05,2013-11-05,"YB","BC","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-11-05_YB-BCq5",2013-11-05,2013-11-05,"YB","BC","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","4%","Counts may be low due to glare."
+"2013-11-05_YB-BCq9",2013-11-05,2013-11-05,"YB","BC","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","4%","Counts may be low due to glare."
+"2013-11-05_YB-BCq3",2013-11-05,2013-11-05,"YB","BC","3","Bg","Balanus_glandula","Type 1",1277,0.015625,81728,"c","Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-11-05_YB-BCq5",2013-11-05,2013-11-05,"YB","BC","5","Bg","Balanus_glandula","Type 1",1025,0.015625,65600,"c","Stephanie Merhoff","Finished","Full","Cropped","4%","Counts may be low due to glare."
+"2013-11-05_YB-BCq9",2013-11-05,2013-11-05,"YB","BC","9","Bg","Balanus_glandula","Type 1",1170,0.015625,74880,"c","Stephanie Merhoff","Finished","Full","Cropped","4%","Counts may be low due to glare."
+"2013-11-05_YB-BCq3",2013-11-05,2013-11-05,"YB","BC","3","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-11-05_YB-BCq5",2013-11-05,2013-11-05,"YB","BC","5","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","4%","Counts may be low due to glare."
+"2013-11-05_YB-BCq9",2013-11-05,2013-11-05,"YB","BC","9","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","4%","Counts may be low due to glare."
+"2013-11-05_YB-BCq3",2013-11-05,2013-11-05,"YB","BC","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-11-05_YB-BCq5",2013-11-05,2013-11-05,"YB","BC","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","4%","Counts may be low due to glare."
+"2013-11-05_YB-BCq9",2013-11-05,2013-11-05,"YB","BC","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","4%","Counts may be low due to glare."
+"2013-11-05_YB-BCq3",2013-11-05,2013-11-05,"YB","BC","3","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-11-05_YB-BCq5",2013-11-05,2013-11-05,"YB","BC","5","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","4%","Counts may be low due to glare."
+"2013-11-05_YB-BCq9",2013-11-05,2013-11-05,"YB","BC","9","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","4%","Counts may be low due to glare."
+"2013-11-05_YB-BCq3",2013-11-05,2013-11-05,"YB","BC","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-11-05_YB-BCq5",2013-11-05,2013-11-05,"YB","BC","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","4%","Counts may be low due to glare."
+"2013-11-05_YB-BCq9",2013-11-05,2013-11-05,"YB","BC","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","4%","Counts may be low due to glare."
+"2013-11-05_YB-BCq3",2013-11-05,2013-11-05,"YB","BC","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-11-05_YB-BCq5",2013-11-05,2013-11-05,"YB","BC","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","4%","Counts may be low due to glare."
+"2013-11-05_YB-BCq9",2013-11-05,2013-11-05,"YB","BC","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","4%","Counts may be low due to glare."
+"2013-11-05_YB-BCq3",2013-11-05,2013-11-05,"YB","BC","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-11-05_YB-BCq5",2013-11-05,2013-11-05,"YB","BC","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","4%","Counts may be low due to glare."
+"2013-11-05_YB-BCq9",2013-11-05,2013-11-05,"YB","BC","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","4%","Counts may be low due to glare."
+"2013-11-05_YB-BCq3",2013-11-05,2013-11-05,"YB","BC","3","Lim","Limpets","Type 12",17,0.0875,194.285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-11-05_YB-BCq5",2013-11-05,2013-11-05,"YB","BC","5","Lim","Limpets","Type 12",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","4%","Counts may be low due to glare."
+"2013-11-05_YB-BCq9",2013-11-05,2013-11-05,"YB","BC","9","Lim","Limpets","Type 12",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","4%","Counts may be low due to glare."
+"2013-11-05_YB-BCq3",2013-11-05,2013-11-05,"YB","BC","3","Ls","Littorina_sitkana","Type 13",35,0.0875,400,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-11-05_YB-BCq5",2013-11-05,2013-11-05,"YB","BC","5","Ls","Littorina_sitkana","Type 13",19,0.0875,217.142857142857,NA,"Stephanie Merhoff","Finished","Full","Cropped","4%","Counts may be low due to glare."
+"2013-11-05_YB-BCq9",2013-11-05,2013-11-05,"YB","BC","9","Ls","Littorina_sitkana","Type 13",52,0.0875,594.285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","4%","Counts may be low due to glare."
+"2013-11-05_YB-BCq3",2013-11-05,2013-11-05,"YB","BC","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-11-05_YB-BCq5",2013-11-05,2013-11-05,"YB","BC","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","4%","Counts may be low due to glare."
+"2013-11-05_YB-BCq9",2013-11-05,2013-11-05,"YB","BC","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","4%","Counts may be low due to glare."
+"2013-11-05_YB-BCq3",2013-11-05,2013-11-05,"YB","BC","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-11-05_YB-BCq5",2013-11-05,2013-11-05,"YB","BC","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","4%","Counts may be low due to glare."
+"2013-11-05_YB-BCq9",2013-11-05,2013-11-05,"YB","BC","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","4%","Counts may be low due to glare."
+"2013-11-05_YB-BCq3",2013-11-05,2013-11-05,"YB","BC","3","Myt","Mytilus_spp","Type 7",187,0.0875,2137.14285714286,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-11-05_YB-BCq5",2013-11-05,2013-11-05,"YB","BC","5","Myt","Mytilus_spp","Type 7",471,0.0875,5382.85714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","4%","Counts may be low due to glare."
+"2013-11-05_YB-BCq9",2013-11-05,2013-11-05,"YB","BC","9","Myt","Mytilus_spp","Type 7",273,0.0875,3120,NA,"Stephanie Merhoff","Finished","Full","Cropped","4%","Counts may be low due to glare."
+"2013-11-05_YB-BCq3",2013-11-05,2013-11-05,"YB","BC","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-11-05_YB-BCq5",2013-11-05,2013-11-05,"YB","BC","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","4%","Counts may be low due to glare."
+"2013-11-05_YB-BCq9",2013-11-05,2013-11-05,"YB","BC","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","4%","Counts may be low due to glare."
+"2013-11-05_YB-BCq3",2013-11-05,2013-11-05,"YB","BC","3","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-11-05_YB-BCq5",2013-11-05,2013-11-05,"YB","BC","5","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","4%","Counts may be low due to glare."
+"2013-11-05_YB-BCq9",2013-11-05,2013-11-05,"YB","BC","9","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","4%","Counts may be low due to glare."
+"2013-11-05_YB-BCq3",2013-11-05,2013-11-05,"YB","BC","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-11-05_YB-BCq5",2013-11-05,2013-11-05,"YB","BC","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","4%","Counts may be low due to glare."
+"2013-11-05_YB-BCq9",2013-11-05,2013-11-05,"YB","BC","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","4%","Counts may be low due to glare."
+"2013-11-05_YB-BCq3",2013-11-05,2013-11-05,"YB","BC","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-11-05_YB-BCq5",2013-11-05,2013-11-05,"YB","BC","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","4%","Counts may be low due to glare."
+"2013-11-05_YB-BCq9",2013-11-05,2013-11-05,"YB","BC","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","4%","Counts may be low due to glare."
+"2013-11-05_YB-BCq3",2013-11-05,2013-11-05,"YB","BC","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-11-05_YB-BCq5",2013-11-05,2013-11-05,"YB","BC","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","4%","Counts may be low due to glare."
+"2013-11-05_YB-BCq9",2013-11-05,2013-11-05,"YB","BC","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","4%","Counts may be low due to glare."
+"2013-11-05_YB-BCq3",2013-11-05,2013-11-05,"YB","BC","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-11-05_YB-BCq5",2013-11-05,2013-11-05,"YB","BC","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","4%","Counts may be low due to glare."
+"2013-11-05_YB-BCq9",2013-11-05,2013-11-05,"YB","BC","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","4%","Counts may be low due to glare."
+"2013-11-05_YB-BCq3",2013-11-05,2013-11-05,"YB","BC","3","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-11-05_YB-BCq5",2013-11-05,2013-11-05,"YB","BC","5","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","4%","Counts may be low due to glare."
+"2013-11-05_YB-BCq9",2013-11-05,2013-11-05,"YB","BC","9","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","4%","Counts may be low due to glare."
+"2013-11-05_YB-BCq3",2013-11-05,2013-11-05,"YB","BC","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-11-05_YB-BCq5",2013-11-05,2013-11-05,"YB","BC","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","4%","Counts may be low due to glare."
+"2013-11-05_YB-BCq9",2013-11-05,2013-11-05,"YB","BC","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","4%","Counts may be low due to glare."
+"2013-11-05_YB-BCq3",2013-11-05,2013-11-05,"YB","BC","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-11-05_YB-BCq5",2013-11-05,2013-11-05,"YB","BC","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","4%","Counts may be low due to glare."
+"2013-11-05_YB-BCq9",2013-11-05,2013-11-05,"YB","BC","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","4%","Counts may be low due to glare."
+"2013-11-05_YB-BCq3",2013-11-05,2013-11-05,"YB","BC","3","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-11-05_YB-BCq5",2013-11-05,2013-11-05,"YB","BC","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","4%","Counts may be low due to glare."
+"2013-11-05_YB-BCq9",2013-11-05,2013-11-05,"YB","BC","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","4%","Counts may be low due to glare."
+"2013-11-05_YB-BCq3",2013-11-05,2013-11-05,"YB","BC","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-11-05_YB-BCq5",2013-11-05,2013-11-05,"YB","BC","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","4%","Counts may be low due to glare."
+"2013-11-05_YB-BCq9",2013-11-05,2013-11-05,"YB","BC","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","4%","Counts may be low due to glare."
+"2013-11-05_YB-BCq3",2013-11-05,2013-11-05,"YB","BC","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-11-05_YB-BCq5",2013-11-05,2013-11-05,"YB","BC","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","4%","Counts may be low due to glare."
+"2013-11-05_YB-BCq9",2013-11-05,2013-11-05,"YB","BC","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","4%","Counts may be low due to glare."
+"2013-11-05_YB-BCq3",2013-11-05,2013-11-05,"YB","BC","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-11-05_YB-BCq5",2013-11-05,2013-11-05,"YB","BC","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","4%","Counts may be low due to glare."
+"2013-11-05_YB-BCq9",2013-11-05,2013-11-05,"YB","BC","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","4%","Counts may be low due to glare."
+"2013-11-05_YB-BDq1",2013-11-05,2013-11-05,"YB","BD","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","64%","algae is a thin layer on top of barnacle sheet"
+"2013-11-05_YB-BDq5",2013-11-05,2013-11-05,"YB","BD","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","75%","Counts low due to algae, water, blur, and glare."
+"2013-11-05_YB-BDq7",2013-11-05,2013-11-05,"YB","BD","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","",""
+"2013-11-05_YB-BDq1",2013-11-05,2013-11-05,"YB","BD","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","64%","algae is a thin layer on top of barnacle sheet"
+"2013-11-05_YB-BDq5",2013-11-05,2013-11-05,"YB","BD","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","75%","Counts low due to algae, water, blur, and glare."
+"2013-11-05_YB-BDq7",2013-11-05,2013-11-05,"YB","BD","7","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","",""
+"2013-11-05_YB-BDq1",2013-11-05,2013-11-05,"YB","BD","1","Bg","Balanus_glandula","Type 1",2361,0.015625,151104,"c","Julia Bingham","Finished","Full","Cropped","64%","algae is a thin layer on top of barnacle sheet"
+"2013-11-05_YB-BDq5",2013-11-05,2013-11-05,"YB","BD","5","Bg","Balanus_glandula","Type 1",1722,0.015625,110208,"c","Julia Bingham","Finished","Full","Cropped","75%","Counts low due to algae, water, blur, and glare."
+"2013-11-05_YB-BDq7",2013-11-05,2013-11-05,"YB","BD","7","Bg","Balanus_glandula","Type 1",2719,0.015625,174016,"c","Julia Bingham","Finished","Full","Cropped","",""
+"2013-11-05_YB-BDq1",2013-11-05,2013-11-05,"YB","BD","1","BgD","Balanus_glandula_(dead)","Type 2",32,0.015625,2048,"c","Julia Bingham","Finished","Full","Cropped","64%","algae is a thin layer on top of barnacle sheet"
+"2013-11-05_YB-BDq5",2013-11-05,2013-11-05,"YB","BD","5","BgD","Balanus_glandula_(dead)","Type 2",56,0.015625,3584,"c","Julia Bingham","Finished","Full","Cropped","75%","Counts low due to algae, water, blur, and glare."
+"2013-11-05_YB-BDq7",2013-11-05,2013-11-05,"YB","BD","7","BgD","Balanus_glandula_(dead)","Type 2",47,0.015625,3008,"c","Julia Bingham","Finished","Full","Cropped","",""
+"2013-11-05_YB-BDq1",2013-11-05,2013-11-05,"YB","BD","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","64%","algae is a thin layer on top of barnacle sheet"
+"2013-11-05_YB-BDq5",2013-11-05,2013-11-05,"YB","BD","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","75%","Counts low due to algae, water, blur, and glare."
+"2013-11-05_YB-BDq7",2013-11-05,2013-11-05,"YB","BD","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","",""
+"2013-11-05_YB-BDq1",2013-11-05,2013-11-05,"YB","BD","1","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Julia Bingham","Finished","Full","Cropped","64%","algae is a thin layer on top of barnacle sheet"
+"2013-11-05_YB-BDq5",2013-11-05,2013-11-05,"YB","BD","5","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Julia Bingham","Finished","Full","Cropped","75%","Counts low due to algae, water, blur, and glare."
+"2013-11-05_YB-BDq7",2013-11-05,2013-11-05,"YB","BD","7","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Julia Bingham","Finished","Full","Cropped","",""
+"2013-11-05_YB-BDq1",2013-11-05,2013-11-05,"YB","BD","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Julia Bingham","Finished","Full","Cropped","64%","algae is a thin layer on top of barnacle sheet"
+"2013-11-05_YB-BDq5",2013-11-05,2013-11-05,"YB","BD","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Julia Bingham","Finished","Full","Cropped","75%","Counts low due to algae, water, blur, and glare."
+"2013-11-05_YB-BDq7",2013-11-05,2013-11-05,"YB","BD","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Julia Bingham","Finished","Full","Cropped","",""
+"2013-11-05_YB-BDq1",2013-11-05,2013-11-05,"YB","BD","1","Emp","Emplectonema worm","Type 23",6,0.0875,68.5714285714286,NA,"Julia Bingham","Finished","Full","Cropped","64%","algae is a thin layer on top of barnacle sheet"
+"2013-11-05_YB-BDq5",2013-11-05,2013-11-05,"YB","BD","5","Emp","Emplectonema worm","Type 23",6,0.0875,68.5714285714286,NA,"Julia Bingham","Finished","Full","Cropped","75%","Counts low due to algae, water, blur, and glare."
+"2013-11-05_YB-BDq7",2013-11-05,2013-11-05,"YB","BD","7","Emp","Emplectonema worm","Type 23",9,0.0875,102.857142857143,NA,"Julia Bingham","Finished","Full","Cropped","",""
+"2013-11-05_YB-BDq1",2013-11-05,2013-11-05,"YB","BD","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","64%","algae is a thin layer on top of barnacle sheet"
+"2013-11-05_YB-BDq5",2013-11-05,2013-11-05,"YB","BD","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","75%","Counts low due to algae, water, blur, and glare."
+"2013-11-05_YB-BDq7",2013-11-05,2013-11-05,"YB","BD","7","Lep","Leptasterias","Type 20",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Cropped","",""
+"2013-11-05_YB-BDq1",2013-11-05,2013-11-05,"YB","BD","1","Lim","Limpets","Type 12",90,0.0875,1028.57142857143,NA,"Julia Bingham","Finished","Full","Cropped","64%","algae is a thin layer on top of barnacle sheet"
+"2013-11-05_YB-BDq5",2013-11-05,2013-11-05,"YB","BD","5","Lim","Limpets","Type 12",129,0.0875,1474.28571428571,NA,"Julia Bingham","Finished","Full","Cropped","75%","Counts low due to algae, water, blur, and glare."
+"2013-11-05_YB-BDq7",2013-11-05,2013-11-05,"YB","BD","7","Lim","Limpets","Type 12",149,0.0875,1702.85714285714,NA,"Julia Bingham","Finished","Full","Cropped","",""
+"2013-11-05_YB-BDq1",2013-11-05,2013-11-05,"YB","BD","1","Ls","Littorina_sitkana","Type 13",183,0.0875,2091.42857142857,NA,"Julia Bingham","Finished","Full","Cropped","64%","algae is a thin layer on top of barnacle sheet"
+"2013-11-05_YB-BDq5",2013-11-05,2013-11-05,"YB","BD","5","Ls","Littorina_sitkana","Type 13",164,0.0875,1874.28571428571,NA,"Julia Bingham","Finished","Full","Cropped","75%","Counts low due to algae, water, blur, and glare."
+"2013-11-05_YB-BDq7",2013-11-05,2013-11-05,"YB","BD","7","Ls","Littorina_sitkana","Type 13",257,0.0875,2937.14285714286,NA,"Julia Bingham","Finished","Full","Cropped","",""
+"2013-11-05_YB-BDq1",2013-11-05,2013-11-05,"YB","BD","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","64%","algae is a thin layer on top of barnacle sheet"
+"2013-11-05_YB-BDq5",2013-11-05,2013-11-05,"YB","BD","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","75%","Counts low due to algae, water, blur, and glare."
+"2013-11-05_YB-BDq7",2013-11-05,2013-11-05,"YB","BD","7","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","",""
+"2013-11-05_YB-BDq1",2013-11-05,2013-11-05,"YB","BD","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","64%","algae is a thin layer on top of barnacle sheet"
+"2013-11-05_YB-BDq5",2013-11-05,2013-11-05,"YB","BD","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","75%","Counts low due to algae, water, blur, and glare."
+"2013-11-05_YB-BDq7",2013-11-05,2013-11-05,"YB","BD","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","",""
+"2013-11-05_YB-BDq1",2013-11-05,2013-11-05,"YB","BD","1","Myt","Mytilus_spp","Type 7",639,0.0875,7302.85714285714,NA,"Julia Bingham","Finished","Full","Cropped","64%","algae is a thin layer on top of barnacle sheet"
+"2013-11-05_YB-BDq5",2013-11-05,2013-11-05,"YB","BD","5","Myt","Mytilus_spp","Type 7",198,0.0875,2262.85714285714,NA,"Julia Bingham","Finished","Full","Cropped","75%","Counts low due to algae, water, blur, and glare."
+"2013-11-05_YB-BDq7",2013-11-05,2013-11-05,"YB","BD","7","Myt","Mytilus_spp","Type 7",1975,0.0875,22571.4285714286,NA,"Julia Bingham","Finished","Full","Cropped","",""
+"2013-11-05_YB-BDq1",2013-11-05,2013-11-05,"YB","BD","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","64%","algae is a thin layer on top of barnacle sheet"
+"2013-11-05_YB-BDq5",2013-11-05,2013-11-05,"YB","BD","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","75%","Counts low due to algae, water, blur, and glare."
+"2013-11-05_YB-BDq7",2013-11-05,2013-11-05,"YB","BD","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","",""
+"2013-11-05_YB-BDq1",2013-11-05,2013-11-05,"YB","BD","1","Mt","Mytilus_trossulus","Type 15",22,0.0875,251.428571428571,NA,"Julia Bingham","Finished","Full","Cropped","64%","algae is a thin layer on top of barnacle sheet"
+"2013-11-05_YB-BDq5",2013-11-05,2013-11-05,"YB","BD","5","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","75%","Counts low due to algae, water, blur, and glare."
+"2013-11-05_YB-BDq7",2013-11-05,2013-11-05,"YB","BD","7","Mt","Mytilus_trossulus","Type 15",75,0.0875,857.142857142857,NA,"Julia Bingham","Finished","Full","Cropped","",""
+"2013-11-05_YB-BDq1",2013-11-05,2013-11-05,"YB","BD","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","64%","algae is a thin layer on top of barnacle sheet"
+"2013-11-05_YB-BDq5",2013-11-05,2013-11-05,"YB","BD","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","75%","Counts low due to algae, water, blur, and glare."
+"2013-11-05_YB-BDq7",2013-11-05,2013-11-05,"YB","BD","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","",""
+"2013-11-05_YB-BDq1",2013-11-05,2013-11-05,"YB","BD","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","64%","algae is a thin layer on top of barnacle sheet"
+"2013-11-05_YB-BDq5",2013-11-05,2013-11-05,"YB","BD","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","75%","Counts low due to algae, water, blur, and glare."
+"2013-11-05_YB-BDq7",2013-11-05,2013-11-05,"YB","BD","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","",""
+"2013-11-05_YB-BDq1",2013-11-05,2013-11-05,"YB","BD","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","64%","algae is a thin layer on top of barnacle sheet"
+"2013-11-05_YB-BDq5",2013-11-05,2013-11-05,"YB","BD","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","75%","Counts low due to algae, water, blur, and glare."
+"2013-11-05_YB-BDq7",2013-11-05,2013-11-05,"YB","BD","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","",""
+"2013-11-05_YB-BDq1",2013-11-05,2013-11-05,"YB","BD","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","64%","algae is a thin layer on top of barnacle sheet"
+"2013-11-05_YB-BDq5",2013-11-05,2013-11-05,"YB","BD","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","75%","Counts low due to algae, water, blur, and glare."
+"2013-11-05_YB-BDq7",2013-11-05,2013-11-05,"YB","BD","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","",""
+"2013-11-05_YB-BDq1",2013-11-05,2013-11-05,"YB","BD","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","64%","algae is a thin layer on top of barnacle sheet"
+"2013-11-05_YB-BDq5",2013-11-05,2013-11-05,"YB","BD","5","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","75%","Counts low due to algae, water, blur, and glare."
+"2013-11-05_YB-BDq7",2013-11-05,2013-11-05,"YB","BD","7","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","",""
+"2013-11-05_YB-BDq1",2013-11-05,2013-11-05,"YB","BD","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","64%","algae is a thin layer on top of barnacle sheet"
+"2013-11-05_YB-BDq5",2013-11-05,2013-11-05,"YB","BD","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","75%","Counts low due to algae, water, blur, and glare."
+"2013-11-05_YB-BDq7",2013-11-05,2013-11-05,"YB","BD","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","",""
+"2013-11-05_YB-BDq1",2013-11-05,2013-11-05,"YB","BD","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","64%","algae is a thin layer on top of barnacle sheet"
+"2013-11-05_YB-BDq5",2013-11-05,2013-11-05,"YB","BD","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","75%","Counts low due to algae, water, blur, and glare."
+"2013-11-05_YB-BDq7",2013-11-05,2013-11-05,"YB","BD","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","",""
+"2013-11-05_YB-BDq1",2013-11-05,2013-11-05,"YB","BD","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","64%","algae is a thin layer on top of barnacle sheet"
+"2013-11-05_YB-BDq5",2013-11-05,2013-11-05,"YB","BD","5","Pp","Pollicipes_polymerus","Type 11",11,0.0875,125.714285714286,NA,"Julia Bingham","Finished","Full","Cropped","75%","Counts low due to algae, water, blur, and glare."
+"2013-11-05_YB-BDq7",2013-11-05,2013-11-05,"YB","BD","7","Pp","Pollicipes_polymerus","Type 11",13,0.0875,148.571428571429,NA,"Julia Bingham","Finished","Full","Cropped","",""
+"2013-11-05_YB-BDq1",2013-11-05,2013-11-05,"YB","BD","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","64%","algae is a thin layer on top of barnacle sheet"
+"2013-11-05_YB-BDq5",2013-11-05,2013-11-05,"YB","BD","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","75%","Counts low due to algae, water, blur, and glare."
+"2013-11-05_YB-BDq7",2013-11-05,2013-11-05,"YB","BD","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","",""
+"2013-11-05_YB-BDq1",2013-11-05,2013-11-05,"YB","BD","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","64%","algae is a thin layer on top of barnacle sheet"
+"2013-11-05_YB-BDq5",2013-11-05,2013-11-05,"YB","BD","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","75%","Counts low due to algae, water, blur, and glare."
+"2013-11-05_YB-BDq7",2013-11-05,2013-11-05,"YB","BD","7","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","",""
+"2013-11-05_YB-BDq1",2013-11-05,2013-11-05,"YB","BD","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","64%","algae is a thin layer on top of barnacle sheet"
+"2013-11-05_YB-BDq5",2013-11-05,2013-11-05,"YB","BD","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","75%","Counts low due to algae, water, blur, and glare."
+"2013-11-05_YB-BDq7",2013-11-05,2013-11-05,"YB","BD","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","",""
+"2013-11-05_YB-BEq2",2013-11-05,2013-11-05,"YB","BE","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likely low due to glare"
+"2013-11-05_YB-BEq3",2013-11-05,2013-11-05,"YB","BE","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Algae is a thin film."
+"2013-11-05_YB-BEq6",2013-11-05,2013-11-05,"YB","BE","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2013-11-05_YB-BEq2",2013-11-05,2013-11-05,"YB","BE","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likely low due to glare"
+"2013-11-05_YB-BEq3",2013-11-05,2013-11-05,"YB","BE","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Algae is a thin film."
+"2013-11-05_YB-BEq6",2013-11-05,2013-11-05,"YB","BE","6","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2013-11-05_YB-BEq2",2013-11-05,2013-11-05,"YB","BE","2","Bg","Balanus_glandula","Type 1",1027,0.015625,65728,"c","Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likely low due to glare"
+"2013-11-05_YB-BEq3",2013-11-05,2013-11-05,"YB","BE","3","Bg","Balanus_glandula","Type 1",1447,0.015625,92608,"c","Beatriz Vaca","Finished","Full","Cropped","55%","Algae is a thin film."
+"2013-11-05_YB-BEq6",2013-11-05,2013-11-05,"YB","BE","6","Bg","Balanus_glandula","Type 1",1573,0.015625,100672,"c","Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2013-11-05_YB-BEq2",2013-11-05,2013-11-05,"YB","BE","2","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likely low due to glare"
+"2013-11-05_YB-BEq3",2013-11-05,2013-11-05,"YB","BE","3","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","55%","Algae is a thin film."
+"2013-11-05_YB-BEq6",2013-11-05,2013-11-05,"YB","BE","6","BgD","Balanus_glandula_(dead)","Type 2",3,0.015625,192,"c","Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2013-11-05_YB-BEq2",2013-11-05,2013-11-05,"YB","BE","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likely low due to glare"
+"2013-11-05_YB-BEq3",2013-11-05,2013-11-05,"YB","BE","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Algae is a thin film."
+"2013-11-05_YB-BEq6",2013-11-05,2013-11-05,"YB","BE","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2013-11-05_YB-BEq2",2013-11-05,2013-11-05,"YB","BE","2","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likely low due to glare"
+"2013-11-05_YB-BEq3",2013-11-05,2013-11-05,"YB","BE","3","Cth","Chthamalus_dalli","Type 3",5,0.015625,320,"c","Beatriz Vaca","Finished","Full","Cropped","55%","Algae is a thin film."
+"2013-11-05_YB-BEq6",2013-11-05,2013-11-05,"YB","BE","6","Cth","Chthamalus_dalli","Type 3",2,0.015625,128,"c","Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2013-11-05_YB-BEq2",2013-11-05,2013-11-05,"YB","BE","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likely low due to glare"
+"2013-11-05_YB-BEq3",2013-11-05,2013-11-05,"YB","BE","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","55%","Algae is a thin film."
+"2013-11-05_YB-BEq6",2013-11-05,2013-11-05,"YB","BE","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2013-11-05_YB-BEq2",2013-11-05,2013-11-05,"YB","BE","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likely low due to glare"
+"2013-11-05_YB-BEq3",2013-11-05,2013-11-05,"YB","BE","3","Emp","Emplectonema worm","Type 23",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Algae is a thin film."
+"2013-11-05_YB-BEq6",2013-11-05,2013-11-05,"YB","BE","6","Emp","Emplectonema worm","Type 23",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2013-11-05_YB-BEq2",2013-11-05,2013-11-05,"YB","BE","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likely low due to glare"
+"2013-11-05_YB-BEq3",2013-11-05,2013-11-05,"YB","BE","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Algae is a thin film."
+"2013-11-05_YB-BEq6",2013-11-05,2013-11-05,"YB","BE","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2013-11-05_YB-BEq2",2013-11-05,2013-11-05,"YB","BE","2","Lim","Limpets","Type 12",13,0.0875,148.571428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likely low due to glare"
+"2013-11-05_YB-BEq3",2013-11-05,2013-11-05,"YB","BE","3","Lim","Limpets","Type 12",823,0.0875,9405.71428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Algae is a thin film."
+"2013-11-05_YB-BEq6",2013-11-05,2013-11-05,"YB","BE","6","Lim","Limpets","Type 12",476,0.0875,5440,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2013-11-05_YB-BEq2",2013-11-05,2013-11-05,"YB","BE","2","Ls","Littorina_sitkana","Type 13",53,0.0875,605.714285714286,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likely low due to glare"
+"2013-11-05_YB-BEq3",2013-11-05,2013-11-05,"YB","BE","3","Ls","Littorina_sitkana","Type 13",129,0.0875,1474.28571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Algae is a thin film."
+"2013-11-05_YB-BEq6",2013-11-05,2013-11-05,"YB","BE","6","Ls","Littorina_sitkana","Type 13",70,0.0875,800,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2013-11-05_YB-BEq2",2013-11-05,2013-11-05,"YB","BE","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likely low due to glare"
+"2013-11-05_YB-BEq3",2013-11-05,2013-11-05,"YB","BE","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Algae is a thin film."
+"2013-11-05_YB-BEq6",2013-11-05,2013-11-05,"YB","BE","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2013-11-05_YB-BEq2",2013-11-05,2013-11-05,"YB","BE","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likely low due to glare"
+"2013-11-05_YB-BEq3",2013-11-05,2013-11-05,"YB","BE","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Algae is a thin film."
+"2013-11-05_YB-BEq6",2013-11-05,2013-11-05,"YB","BE","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2013-11-05_YB-BEq2",2013-11-05,2013-11-05,"YB","BE","2","Myt","Mytilus_spp","Type 7",62,0.0875,708.571428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likely low due to glare"
+"2013-11-05_YB-BEq3",2013-11-05,2013-11-05,"YB","BE","3","Myt","Mytilus_spp","Type 7",334,0.0875,3817.14285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Algae is a thin film."
+"2013-11-05_YB-BEq6",2013-11-05,2013-11-05,"YB","BE","6","Myt","Mytilus_spp","Type 7",327,0.0875,3737.14285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2013-11-05_YB-BEq2",2013-11-05,2013-11-05,"YB","BE","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likely low due to glare"
+"2013-11-05_YB-BEq3",2013-11-05,2013-11-05,"YB","BE","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Algae is a thin film."
+"2013-11-05_YB-BEq6",2013-11-05,2013-11-05,"YB","BE","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2013-11-05_YB-BEq2",2013-11-05,2013-11-05,"YB","BE","2","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likely low due to glare"
+"2013-11-05_YB-BEq3",2013-11-05,2013-11-05,"YB","BE","3","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Algae is a thin film."
+"2013-11-05_YB-BEq6",2013-11-05,2013-11-05,"YB","BE","6","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2013-11-05_YB-BEq2",2013-11-05,2013-11-05,"YB","BE","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likely low due to glare"
+"2013-11-05_YB-BEq3",2013-11-05,2013-11-05,"YB","BE","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Algae is a thin film."
+"2013-11-05_YB-BEq6",2013-11-05,2013-11-05,"YB","BE","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2013-11-05_YB-BEq2",2013-11-05,2013-11-05,"YB","BE","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likely low due to glare"
+"2013-11-05_YB-BEq3",2013-11-05,2013-11-05,"YB","BE","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Algae is a thin film."
+"2013-11-05_YB-BEq6",2013-11-05,2013-11-05,"YB","BE","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2013-11-05_YB-BEq2",2013-11-05,2013-11-05,"YB","BE","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likely low due to glare"
+"2013-11-05_YB-BEq3",2013-11-05,2013-11-05,"YB","BE","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Algae is a thin film."
+"2013-11-05_YB-BEq6",2013-11-05,2013-11-05,"YB","BE","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2013-11-05_YB-BEq2",2013-11-05,2013-11-05,"YB","BE","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likely low due to glare"
+"2013-11-05_YB-BEq3",2013-11-05,2013-11-05,"YB","BE","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Algae is a thin film."
+"2013-11-05_YB-BEq6",2013-11-05,2013-11-05,"YB","BE","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2013-11-05_YB-BEq2",2013-11-05,2013-11-05,"YB","BE","2","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likely low due to glare"
+"2013-11-05_YB-BEq3",2013-11-05,2013-11-05,"YB","BE","3","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Algae is a thin film."
+"2013-11-05_YB-BEq6",2013-11-05,2013-11-05,"YB","BE","6","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2013-11-05_YB-BEq2",2013-11-05,2013-11-05,"YB","BE","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likely low due to glare"
+"2013-11-05_YB-BEq3",2013-11-05,2013-11-05,"YB","BE","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Algae is a thin film."
+"2013-11-05_YB-BEq6",2013-11-05,2013-11-05,"YB","BE","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2013-11-05_YB-BEq2",2013-11-05,2013-11-05,"YB","BE","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likely low due to glare"
+"2013-11-05_YB-BEq3",2013-11-05,2013-11-05,"YB","BE","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Algae is a thin film."
+"2013-11-05_YB-BEq6",2013-11-05,2013-11-05,"YB","BE","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2013-11-05_YB-BEq2",2013-11-05,2013-11-05,"YB","BE","2","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likely low due to glare"
+"2013-11-05_YB-BEq3",2013-11-05,2013-11-05,"YB","BE","3","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Algae is a thin film."
+"2013-11-05_YB-BEq6",2013-11-05,2013-11-05,"YB","BE","6","Pp","Pollicipes_polymerus","Type 11",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2013-11-05_YB-BEq2",2013-11-05,2013-11-05,"YB","BE","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likely low due to glare"
+"2013-11-05_YB-BEq3",2013-11-05,2013-11-05,"YB","BE","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Algae is a thin film."
+"2013-11-05_YB-BEq6",2013-11-05,2013-11-05,"YB","BE","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2013-11-05_YB-BEq2",2013-11-05,2013-11-05,"YB","BE","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likely low due to glare"
+"2013-11-05_YB-BEq3",2013-11-05,2013-11-05,"YB","BE","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Algae is a thin film."
+"2013-11-05_YB-BEq6",2013-11-05,2013-11-05,"YB","BE","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2013-11-05_YB-BEq2",2013-11-05,2013-11-05,"YB","BE","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likely low due to glare"
+"2013-11-05_YB-BEq3",2013-11-05,2013-11-05,"YB","BE","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Algae is a thin film."
+"2013-11-05_YB-BEq6",2013-11-05,2013-11-05,"YB","BE","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2013-11-05_YB-BFq1",2013-11-05,2013-11-05,"YB","BF","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Algae is a thin film."
+"2013-11-05_YB-BFq4",2013-11-05,2013-11-05,"YB","BF","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Algae is a thin film."
+"2013-11-05_YB-BFq9",2013-11-05,2013-11-05,"YB","BF","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","3%","some glare and blur; several small bare patches within barnacle sheet "
+"2013-11-05_YB-BFq1",2013-11-05,2013-11-05,"YB","BF","1","Ae","Anemones","Type 14",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Algae is a thin film."
+"2013-11-05_YB-BFq4",2013-11-05,2013-11-05,"YB","BF","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Algae is a thin film."
+"2013-11-05_YB-BFq9",2013-11-05,2013-11-05,"YB","BF","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","3%","some glare and blur; several small bare patches within barnacle sheet "
+"2013-11-05_YB-BFq1",2013-11-05,2013-11-05,"YB","BF","1","Bg","Balanus_glandula","Type 1",1285,0.015625,82240,"c","Beatriz Vaca","Finished","Full","Cropped","55%","Algae is a thin film."
+"2013-11-05_YB-BFq4",2013-11-05,2013-11-05,"YB","BF","4","Bg","Balanus_glandula","Type 1",1681,0.015625,107584,"c","Beatriz Vaca","Finished","Full","Cropped","80%","Algae is a thin film."
+"2013-11-05_YB-BFq9",2013-11-05,2013-11-05,"YB","BF","9","Bg","Balanus_glandula","Type 1",2146,0.015625,137344,"c","Julia Bingham","Finished","Full","Cropped","3%","some glare and blur; several small bare patches within barnacle sheet "
+"2013-11-05_YB-BFq1",2013-11-05,2013-11-05,"YB","BF","1","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","55%","Algae is a thin film."
+"2013-11-05_YB-BFq4",2013-11-05,2013-11-05,"YB","BF","4","BgD","Balanus_glandula_(dead)","Type 2",2,0.015625,128,"c","Beatriz Vaca","Finished","Full","Cropped","80%","Algae is a thin film."
+"2013-11-05_YB-BFq9",2013-11-05,2013-11-05,"YB","BF","9","BgD","Balanus_glandula_(dead)","Type 2",73,0.015625,4672,"c","Julia Bingham","Finished","Full","Cropped","3%","some glare and blur; several small bare patches within barnacle sheet "
+"2013-11-05_YB-BFq1",2013-11-05,2013-11-05,"YB","BF","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Algae is a thin film."
+"2013-11-05_YB-BFq4",2013-11-05,2013-11-05,"YB","BF","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Algae is a thin film."
+"2013-11-05_YB-BFq9",2013-11-05,2013-11-05,"YB","BF","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","3%","some glare and blur; several small bare patches within barnacle sheet "
+"2013-11-05_YB-BFq1",2013-11-05,2013-11-05,"YB","BF","1","Cth","Chthamalus_dalli","Type 3",5,0.015625,320,"c","Beatriz Vaca","Finished","Full","Cropped","55%","Algae is a thin film."
+"2013-11-05_YB-BFq4",2013-11-05,2013-11-05,"YB","BF","4","Cth","Chthamalus_dalli","Type 3",2,0.015625,128,"c","Beatriz Vaca","Finished","Full","Cropped","80%","Algae is a thin film."
+"2013-11-05_YB-BFq9",2013-11-05,2013-11-05,"YB","BF","9","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Julia Bingham","Finished","Full","Cropped","3%","some glare and blur; several small bare patches within barnacle sheet "
+"2013-11-05_YB-BFq1",2013-11-05,2013-11-05,"YB","BF","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","55%","Algae is a thin film."
+"2013-11-05_YB-BFq4",2013-11-05,2013-11-05,"YB","BF","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","80%","Algae is a thin film."
+"2013-11-05_YB-BFq9",2013-11-05,2013-11-05,"YB","BF","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Julia Bingham","Finished","Full","Cropped","3%","some glare and blur; several small bare patches within barnacle sheet "
+"2013-11-05_YB-BFq1",2013-11-05,2013-11-05,"YB","BF","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Algae is a thin film."
+"2013-11-05_YB-BFq4",2013-11-05,2013-11-05,"YB","BF","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Algae is a thin film."
+"2013-11-05_YB-BFq9",2013-11-05,2013-11-05,"YB","BF","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","3%","some glare and blur; several small bare patches within barnacle sheet "
+"2013-11-05_YB-BFq1",2013-11-05,2013-11-05,"YB","BF","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Algae is a thin film."
+"2013-11-05_YB-BFq4",2013-11-05,2013-11-05,"YB","BF","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Algae is a thin film."
+"2013-11-05_YB-BFq9",2013-11-05,2013-11-05,"YB","BF","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","3%","some glare and blur; several small bare patches within barnacle sheet "
+"2013-11-05_YB-BFq1",2013-11-05,2013-11-05,"YB","BF","1","Lim","Limpets","Type 12",717,0.0875,8194.28571428572,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Algae is a thin film."
+"2013-11-05_YB-BFq4",2013-11-05,2013-11-05,"YB","BF","4","Lim","Limpets","Type 12",519,0.0875,5931.42857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Algae is a thin film."
+"2013-11-05_YB-BFq9",2013-11-05,2013-11-05,"YB","BF","9","Lim","Limpets","Type 12",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Cropped","3%","some glare and blur; several small bare patches within barnacle sheet "
+"2013-11-05_YB-BFq1",2013-11-05,2013-11-05,"YB","BF","1","Ls","Littorina_sitkana","Type 13",184,0.0875,2102.85714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Algae is a thin film."
+"2013-11-05_YB-BFq4",2013-11-05,2013-11-05,"YB","BF","4","Ls","Littorina_sitkana","Type 13",113,0.0875,1291.42857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Algae is a thin film."
+"2013-11-05_YB-BFq9",2013-11-05,2013-11-05,"YB","BF","9","Ls","Littorina_sitkana","Type 13",239,0.0875,2731.42857142857,NA,"Julia Bingham","Finished","Full","Cropped","3%","some glare and blur; several small bare patches within barnacle sheet "
+"2013-11-05_YB-BFq1",2013-11-05,2013-11-05,"YB","BF","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Algae is a thin film."
+"2013-11-05_YB-BFq4",2013-11-05,2013-11-05,"YB","BF","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Algae is a thin film."
+"2013-11-05_YB-BFq9",2013-11-05,2013-11-05,"YB","BF","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","3%","some glare and blur; several small bare patches within barnacle sheet "
+"2013-11-05_YB-BFq1",2013-11-05,2013-11-05,"YB","BF","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Algae is a thin film."
+"2013-11-05_YB-BFq4",2013-11-05,2013-11-05,"YB","BF","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Algae is a thin film."
+"2013-11-05_YB-BFq9",2013-11-05,2013-11-05,"YB","BF","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","3%","some glare and blur; several small bare patches within barnacle sheet "
+"2013-11-05_YB-BFq1",2013-11-05,2013-11-05,"YB","BF","1","Myt","Mytilus_spp","Type 7",328,0.0875,3748.57142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Algae is a thin film."
+"2013-11-05_YB-BFq4",2013-11-05,2013-11-05,"YB","BF","4","Myt","Mytilus_spp","Type 7",387,0.0875,4422.85714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Algae is a thin film."
+"2013-11-05_YB-BFq9",2013-11-05,2013-11-05,"YB","BF","9","Myt","Mytilus_spp","Type 7",1784,0.0875,20388.5714285714,NA,"Julia Bingham","Finished","Full","Cropped","3%","some glare and blur; several small bare patches within barnacle sheet "
+"2013-11-05_YB-BFq1",2013-11-05,2013-11-05,"YB","BF","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Algae is a thin film."
+"2013-11-05_YB-BFq4",2013-11-05,2013-11-05,"YB","BF","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Algae is a thin film."
+"2013-11-05_YB-BFq9",2013-11-05,2013-11-05,"YB","BF","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","3%","some glare and blur; several small bare patches within barnacle sheet "
+"2013-11-05_YB-BFq1",2013-11-05,2013-11-05,"YB","BF","1","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Algae is a thin film."
+"2013-11-05_YB-BFq4",2013-11-05,2013-11-05,"YB","BF","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Algae is a thin film."
+"2013-11-05_YB-BFq9",2013-11-05,2013-11-05,"YB","BF","9","Mt","Mytilus_trossulus","Type 15",180,0.0875,2057.14285714286,NA,"Julia Bingham","Finished","Full","Cropped","3%","some glare and blur; several small bare patches within barnacle sheet "
+"2013-11-05_YB-BFq1",2013-11-05,2013-11-05,"YB","BF","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Algae is a thin film."
+"2013-11-05_YB-BFq4",2013-11-05,2013-11-05,"YB","BF","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Algae is a thin film."
+"2013-11-05_YB-BFq9",2013-11-05,2013-11-05,"YB","BF","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","3%","some glare and blur; several small bare patches within barnacle sheet "
+"2013-11-05_YB-BFq1",2013-11-05,2013-11-05,"YB","BF","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Algae is a thin film."
+"2013-11-05_YB-BFq4",2013-11-05,2013-11-05,"YB","BF","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Algae is a thin film."
+"2013-11-05_YB-BFq9",2013-11-05,2013-11-05,"YB","BF","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","3%","some glare and blur; several small bare patches within barnacle sheet "
+"2013-11-05_YB-BFq1",2013-11-05,2013-11-05,"YB","BF","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Algae is a thin film."
+"2013-11-05_YB-BFq4",2013-11-05,2013-11-05,"YB","BF","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Algae is a thin film."
+"2013-11-05_YB-BFq9",2013-11-05,2013-11-05,"YB","BF","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","3%","some glare and blur; several small bare patches within barnacle sheet "
+"2013-11-05_YB-BFq1",2013-11-05,2013-11-05,"YB","BF","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Algae is a thin film."
+"2013-11-05_YB-BFq4",2013-11-05,2013-11-05,"YB","BF","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Algae is a thin film."
+"2013-11-05_YB-BFq9",2013-11-05,2013-11-05,"YB","BF","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","3%","some glare and blur; several small bare patches within barnacle sheet "
+"2013-11-05_YB-BFq1",2013-11-05,2013-11-05,"YB","BF","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Algae is a thin film."
+"2013-11-05_YB-BFq4",2013-11-05,2013-11-05,"YB","BF","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Algae is a thin film."
+"2013-11-05_YB-BFq9",2013-11-05,2013-11-05,"YB","BF","9","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","3%","some glare and blur; several small bare patches within barnacle sheet "
+"2013-11-05_YB-BFq1",2013-11-05,2013-11-05,"YB","BF","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Algae is a thin film."
+"2013-11-05_YB-BFq4",2013-11-05,2013-11-05,"YB","BF","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Algae is a thin film."
+"2013-11-05_YB-BFq9",2013-11-05,2013-11-05,"YB","BF","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","3%","some glare and blur; several small bare patches within barnacle sheet "
+"2013-11-05_YB-BFq1",2013-11-05,2013-11-05,"YB","BF","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Algae is a thin film."
+"2013-11-05_YB-BFq4",2013-11-05,2013-11-05,"YB","BF","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Algae is a thin film."
+"2013-11-05_YB-BFq9",2013-11-05,2013-11-05,"YB","BF","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","3%","some glare and blur; several small bare patches within barnacle sheet "
+"2013-11-05_YB-BFq1",2013-11-05,2013-11-05,"YB","BF","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Algae is a thin film."
+"2013-11-05_YB-BFq4",2013-11-05,2013-11-05,"YB","BF","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Algae is a thin film."
+"2013-11-05_YB-BFq9",2013-11-05,2013-11-05,"YB","BF","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","3%","some glare and blur; several small bare patches within barnacle sheet "
+"2013-11-05_YB-BFq1",2013-11-05,2013-11-05,"YB","BF","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Algae is a thin film."
+"2013-11-05_YB-BFq4",2013-11-05,2013-11-05,"YB","BF","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Algae is a thin film."
+"2013-11-05_YB-BFq9",2013-11-05,2013-11-05,"YB","BF","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","3%","some glare and blur; several small bare patches within barnacle sheet "
+"2013-11-05_YB-BFq1",2013-11-05,2013-11-05,"YB","BF","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Algae is a thin film."
+"2013-11-05_YB-BFq4",2013-11-05,2013-11-05,"YB","BF","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Algae is a thin film."
+"2013-11-05_YB-BFq9",2013-11-05,2013-11-05,"YB","BF","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","3%","some glare and blur; several small bare patches within barnacle sheet "
+"2013-11-05_YB-BFq1",2013-11-05,2013-11-05,"YB","BF","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Algae is a thin film."
+"2013-11-05_YB-BFq4",2013-11-05,2013-11-05,"YB","BF","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Algae is a thin film."
+"2013-11-05_YB-BFq9",2013-11-05,2013-11-05,"YB","BF","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","3%","some glare and blur; several small bare patches within barnacle sheet "
+"2013-11-05_YB-Cq2",2013-11-05,2013-11-05,"YB","C","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Barnacle counts likely low due to algal cover and blur."
+"2013-11-05_YB-Cq4",2013-11-05,2013-11-05,"YB","C","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-11-05_YB-Cq6",2013-11-05,2013-11-05,"YB","C","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to algal cover and blur."
+"2013-11-05_YB-Cq2",2013-11-05,2013-11-05,"YB","C","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Barnacle counts likely low due to algal cover and blur."
+"2013-11-05_YB-Cq4",2013-11-05,2013-11-05,"YB","C","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-11-05_YB-Cq6",2013-11-05,2013-11-05,"YB","C","6","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to algal cover and blur."
+"2013-11-05_YB-Cq2",2013-11-05,2013-11-05,"YB","C","2","Bg","Balanus_glandula","Type 1",1322,0.015625,84608,"c","Beatriz Vaca","Finished","Full","Cropped","45%","Barnacle counts likely low due to algal cover and blur."
+"2013-11-05_YB-Cq4",2013-11-05,2013-11-05,"YB","C","4","Bg","Balanus_glandula","Type 1",1151,0.015625,73664,"c","Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-11-05_YB-Cq6",2013-11-05,2013-11-05,"YB","C","6","Bg","Balanus_glandula","Type 1",1264,0.015625,80896,"c","Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to algal cover and blur."
+"2013-11-05_YB-Cq2",2013-11-05,2013-11-05,"YB","C","2","BgD","Balanus_glandula_(dead)","Type 2",3,0.015625,192,"c","Beatriz Vaca","Finished","Full","Cropped","45%","Barnacle counts likely low due to algal cover and blur."
+"2013-11-05_YB-Cq4",2013-11-05,2013-11-05,"YB","C","4","BgD","Balanus_glandula_(dead)","Type 2",2,0.015625,128,"c","Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-11-05_YB-Cq6",2013-11-05,2013-11-05,"YB","C","6","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to algal cover and blur."
+"2013-11-05_YB-Cq2",2013-11-05,2013-11-05,"YB","C","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Barnacle counts likely low due to algal cover and blur."
+"2013-11-05_YB-Cq4",2013-11-05,2013-11-05,"YB","C","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-11-05_YB-Cq6",2013-11-05,2013-11-05,"YB","C","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to algal cover and blur."
+"2013-11-05_YB-Cq2",2013-11-05,2013-11-05,"YB","C","2","Cth","Chthamalus_dalli","Type 3",20,0.015625,1280,"c","Beatriz Vaca","Finished","Full","Cropped","45%","Barnacle counts likely low due to algal cover and blur."
+"2013-11-05_YB-Cq4",2013-11-05,2013-11-05,"YB","C","4","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-11-05_YB-Cq6",2013-11-05,2013-11-05,"YB","C","6","Cth","Chthamalus_dalli","Type 3",1,0.015625,64,"c","Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to algal cover and blur."
+"2013-11-05_YB-Cq2",2013-11-05,2013-11-05,"YB","C","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","45%","Barnacle counts likely low due to algal cover and blur."
+"2013-11-05_YB-Cq4",2013-11-05,2013-11-05,"YB","C","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-11-05_YB-Cq6",2013-11-05,2013-11-05,"YB","C","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to algal cover and blur."
+"2013-11-05_YB-Cq2",2013-11-05,2013-11-05,"YB","C","2","Emp","Emplectonema worm","Type 23",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Barnacle counts likely low due to algal cover and blur."
+"2013-11-05_YB-Cq4",2013-11-05,2013-11-05,"YB","C","4","Emp","Emplectonema worm","Type 23",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-11-05_YB-Cq6",2013-11-05,2013-11-05,"YB","C","6","Emp","Emplectonema worm","Type 23",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to algal cover and blur."
+"2013-11-05_YB-Cq2",2013-11-05,2013-11-05,"YB","C","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Barnacle counts likely low due to algal cover and blur."
+"2013-11-05_YB-Cq4",2013-11-05,2013-11-05,"YB","C","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-11-05_YB-Cq6",2013-11-05,2013-11-05,"YB","C","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to algal cover and blur."
+"2013-11-05_YB-Cq2",2013-11-05,2013-11-05,"YB","C","2","Lim","Limpets","Type 12",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Barnacle counts likely low due to algal cover and blur."
+"2013-11-05_YB-Cq4",2013-11-05,2013-11-05,"YB","C","4","Lim","Limpets","Type 12",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-11-05_YB-Cq6",2013-11-05,2013-11-05,"YB","C","6","Lim","Limpets","Type 12",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to algal cover and blur."
+"2013-11-05_YB-Cq2",2013-11-05,2013-11-05,"YB","C","2","Ls","Littorina_sitkana","Type 13",45,0.0875,514.285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Barnacle counts likely low due to algal cover and blur."
+"2013-11-05_YB-Cq4",2013-11-05,2013-11-05,"YB","C","4","Ls","Littorina_sitkana","Type 13",20,0.0875,228.571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-11-05_YB-Cq6",2013-11-05,2013-11-05,"YB","C","6","Ls","Littorina_sitkana","Type 13",77,0.0875,880,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to algal cover and blur."
+"2013-11-05_YB-Cq2",2013-11-05,2013-11-05,"YB","C","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Barnacle counts likely low due to algal cover and blur."
+"2013-11-05_YB-Cq4",2013-11-05,2013-11-05,"YB","C","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-11-05_YB-Cq6",2013-11-05,2013-11-05,"YB","C","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to algal cover and blur."
+"2013-11-05_YB-Cq2",2013-11-05,2013-11-05,"YB","C","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Barnacle counts likely low due to algal cover and blur."
+"2013-11-05_YB-Cq4",2013-11-05,2013-11-05,"YB","C","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-11-05_YB-Cq6",2013-11-05,2013-11-05,"YB","C","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to algal cover and blur."
+"2013-11-05_YB-Cq2",2013-11-05,2013-11-05,"YB","C","2","Myt","Mytilus_spp","Type 7",646,0.0875,7382.85714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Barnacle counts likely low due to algal cover and blur."
+"2013-11-05_YB-Cq4",2013-11-05,2013-11-05,"YB","C","4","Myt","Mytilus_spp","Type 7",732,0.0875,8365.71428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-11-05_YB-Cq6",2013-11-05,2013-11-05,"YB","C","6","Myt","Mytilus_spp","Type 7",330,0.0875,3771.42857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to algal cover and blur."
+"2013-11-05_YB-Cq2",2013-11-05,2013-11-05,"YB","C","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Barnacle counts likely low due to algal cover and blur."
+"2013-11-05_YB-Cq4",2013-11-05,2013-11-05,"YB","C","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-11-05_YB-Cq6",2013-11-05,2013-11-05,"YB","C","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to algal cover and blur."
+"2013-11-05_YB-Cq2",2013-11-05,2013-11-05,"YB","C","2","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Barnacle counts likely low due to algal cover and blur."
+"2013-11-05_YB-Cq4",2013-11-05,2013-11-05,"YB","C","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-11-05_YB-Cq6",2013-11-05,2013-11-05,"YB","C","6","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to algal cover and blur."
+"2013-11-05_YB-Cq2",2013-11-05,2013-11-05,"YB","C","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Barnacle counts likely low due to algal cover and blur."
+"2013-11-05_YB-Cq4",2013-11-05,2013-11-05,"YB","C","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-11-05_YB-Cq6",2013-11-05,2013-11-05,"YB","C","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to algal cover and blur."
+"2013-11-05_YB-Cq2",2013-11-05,2013-11-05,"YB","C","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Barnacle counts likely low due to algal cover and blur."
+"2013-11-05_YB-Cq4",2013-11-05,2013-11-05,"YB","C","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-11-05_YB-Cq6",2013-11-05,2013-11-05,"YB","C","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to algal cover and blur."
+"2013-11-05_YB-Cq2",2013-11-05,2013-11-05,"YB","C","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Barnacle counts likely low due to algal cover and blur."
+"2013-11-05_YB-Cq4",2013-11-05,2013-11-05,"YB","C","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-11-05_YB-Cq6",2013-11-05,2013-11-05,"YB","C","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to algal cover and blur."
+"2013-11-05_YB-Cq2",2013-11-05,2013-11-05,"YB","C","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Barnacle counts likely low due to algal cover and blur."
+"2013-11-05_YB-Cq4",2013-11-05,2013-11-05,"YB","C","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-11-05_YB-Cq6",2013-11-05,2013-11-05,"YB","C","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to algal cover and blur."
+"2013-11-05_YB-Cq2",2013-11-05,2013-11-05,"YB","C","2","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Barnacle counts likely low due to algal cover and blur."
+"2013-11-05_YB-Cq4",2013-11-05,2013-11-05,"YB","C","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-11-05_YB-Cq6",2013-11-05,2013-11-05,"YB","C","6","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to algal cover and blur."
+"2013-11-05_YB-Cq2",2013-11-05,2013-11-05,"YB","C","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Barnacle counts likely low due to algal cover and blur."
+"2013-11-05_YB-Cq4",2013-11-05,2013-11-05,"YB","C","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-11-05_YB-Cq6",2013-11-05,2013-11-05,"YB","C","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to algal cover and blur."
+"2013-11-05_YB-Cq2",2013-11-05,2013-11-05,"YB","C","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Barnacle counts likely low due to algal cover and blur."
+"2013-11-05_YB-Cq4",2013-11-05,2013-11-05,"YB","C","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-11-05_YB-Cq6",2013-11-05,2013-11-05,"YB","C","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to algal cover and blur."
+"2013-11-05_YB-Cq2",2013-11-05,2013-11-05,"YB","C","2","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Barnacle counts likely low due to algal cover and blur."
+"2013-11-05_YB-Cq4",2013-11-05,2013-11-05,"YB","C","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-11-05_YB-Cq6",2013-11-05,2013-11-05,"YB","C","6","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to algal cover and blur."
+"2013-11-05_YB-Cq2",2013-11-05,2013-11-05,"YB","C","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Barnacle counts likely low due to algal cover and blur."
+"2013-11-05_YB-Cq4",2013-11-05,2013-11-05,"YB","C","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-11-05_YB-Cq6",2013-11-05,2013-11-05,"YB","C","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to algal cover and blur."
+"2013-11-05_YB-Cq2",2013-11-05,2013-11-05,"YB","C","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Barnacle counts likely low due to algal cover and blur."
+"2013-11-05_YB-Cq4",2013-11-05,2013-11-05,"YB","C","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-11-05_YB-Cq6",2013-11-05,2013-11-05,"YB","C","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to algal cover and blur."
+"2013-11-05_YB-Cq2",2013-11-05,2013-11-05,"YB","C","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Barnacle counts likely low due to algal cover and blur."
+"2013-11-05_YB-Cq4",2013-11-05,2013-11-05,"YB","C","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle, mussel, limpet and littorine snail counts likely low due to blur, algal coverage and glare"
+"2013-11-05_YB-Cq6",2013-11-05,2013-11-05,"YB","C","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts likely low due to algal cover and blur."
+"2013-11-05_YB-Dq3",2013-11-05,2013-11-05,"YB","D","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%",""
+"2013-11-05_YB-Dq4",2013-11-05,2013-11-05,"YB","D","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likley low due to glare"
+"2013-11-05_YB-Dq5",2013-11-05,2013-11-05,"YB","D","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Algae is a thin film."
+"2013-11-05_YB-Dq3",2013-11-05,2013-11-05,"YB","D","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%",""
+"2013-11-05_YB-Dq4",2013-11-05,2013-11-05,"YB","D","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likley low due to glare"
+"2013-11-05_YB-Dq5",2013-11-05,2013-11-05,"YB","D","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Algae is a thin film."
+"2013-11-05_YB-Dq3",2013-11-05,2013-11-05,"YB","D","3","Bg","Balanus_glandula","Type 1",1232,0.015625,78848,"c","Beatriz Vaca","Finished","Full","Cropped","50%",""
+"2013-11-05_YB-Dq4",2013-11-05,2013-11-05,"YB","D","4","Bg","Balanus_glandula","Type 1",1147,0.015625,73408,"c","Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likley low due to glare"
+"2013-11-05_YB-Dq5",2013-11-05,2013-11-05,"YB","D","5","Bg","Balanus_glandula","Type 1",1463,0.015625,93632,"c","Beatriz Vaca","Finished","Full","Cropped","55%","Algae is a thin film."
+"2013-11-05_YB-Dq3",2013-11-05,2013-11-05,"YB","D","3","BgD","Balanus_glandula_(dead)","Type 2",1,0.015625,64,"c","Beatriz Vaca","Finished","Full","Cropped","50%",""
+"2013-11-05_YB-Dq4",2013-11-05,2013-11-05,"YB","D","4","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likley low due to glare"
+"2013-11-05_YB-Dq5",2013-11-05,2013-11-05,"YB","D","5","BgD","Balanus_glandula_(dead)","Type 2",1,0.015625,64,"c","Beatriz Vaca","Finished","Full","Cropped","55%","Algae is a thin film."
+"2013-11-05_YB-Dq3",2013-11-05,2013-11-05,"YB","D","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%",""
+"2013-11-05_YB-Dq4",2013-11-05,2013-11-05,"YB","D","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likley low due to glare"
+"2013-11-05_YB-Dq5",2013-11-05,2013-11-05,"YB","D","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Algae is a thin film."
+"2013-11-05_YB-Dq3",2013-11-05,2013-11-05,"YB","D","3","Cth","Chthamalus_dalli","Type 3",2,0.015625,128,"c","Beatriz Vaca","Finished","Full","Cropped","50%",""
+"2013-11-05_YB-Dq4",2013-11-05,2013-11-05,"YB","D","4","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likley low due to glare"
+"2013-11-05_YB-Dq5",2013-11-05,2013-11-05,"YB","D","5","Cth","Chthamalus_dalli","Type 3",3,0.015625,192,"c","Beatriz Vaca","Finished","Full","Cropped","55%","Algae is a thin film."
+"2013-11-05_YB-Dq3",2013-11-05,2013-11-05,"YB","D","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","50%",""
+"2013-11-05_YB-Dq4",2013-11-05,2013-11-05,"YB","D","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likley low due to glare"
+"2013-11-05_YB-Dq5",2013-11-05,2013-11-05,"YB","D","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","55%","Algae is a thin film."
+"2013-11-05_YB-Dq3",2013-11-05,2013-11-05,"YB","D","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%",""
+"2013-11-05_YB-Dq4",2013-11-05,2013-11-05,"YB","D","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likley low due to glare"
+"2013-11-05_YB-Dq5",2013-11-05,2013-11-05,"YB","D","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Algae is a thin film."
+"2013-11-05_YB-Dq3",2013-11-05,2013-11-05,"YB","D","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%",""
+"2013-11-05_YB-Dq4",2013-11-05,2013-11-05,"YB","D","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likley low due to glare"
+"2013-11-05_YB-Dq5",2013-11-05,2013-11-05,"YB","D","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Algae is a thin film."
+"2013-11-05_YB-Dq3",2013-11-05,2013-11-05,"YB","D","3","Lim","Limpets","Type 12",13,0.0875,148.571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","50%",""
+"2013-11-05_YB-Dq4",2013-11-05,2013-11-05,"YB","D","4","Lim","Limpets","Type 12",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likley low due to glare"
+"2013-11-05_YB-Dq5",2013-11-05,2013-11-05,"YB","D","5","Lim","Limpets","Type 12",145,0.0875,1657.14285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Algae is a thin film."
+"2013-11-05_YB-Dq3",2013-11-05,2013-11-05,"YB","D","3","Ls","Littorina_sitkana","Type 13",306,0.0875,3497.14285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","50%",""
+"2013-11-05_YB-Dq4",2013-11-05,2013-11-05,"YB","D","4","Ls","Littorina_sitkana","Type 13",89,0.0875,1017.14285714286,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likley low due to glare"
+"2013-11-05_YB-Dq5",2013-11-05,2013-11-05,"YB","D","5","Ls","Littorina_sitkana","Type 13",214,0.0875,2445.71428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Algae is a thin film."
+"2013-11-05_YB-Dq3",2013-11-05,2013-11-05,"YB","D","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%",""
+"2013-11-05_YB-Dq4",2013-11-05,2013-11-05,"YB","D","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likley low due to glare"
+"2013-11-05_YB-Dq5",2013-11-05,2013-11-05,"YB","D","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Algae is a thin film."
+"2013-11-05_YB-Dq3",2013-11-05,2013-11-05,"YB","D","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%",""
+"2013-11-05_YB-Dq4",2013-11-05,2013-11-05,"YB","D","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likley low due to glare"
+"2013-11-05_YB-Dq5",2013-11-05,2013-11-05,"YB","D","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Algae is a thin film."
+"2013-11-05_YB-Dq3",2013-11-05,2013-11-05,"YB","D","3","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%",""
+"2013-11-05_YB-Dq4",2013-11-05,2013-11-05,"YB","D","4","Myt","Mytilus_spp","Type 7",214,0.0875,2445.71428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likley low due to glare"
+"2013-11-05_YB-Dq5",2013-11-05,2013-11-05,"YB","D","5","Myt","Mytilus_spp","Type 7",436,0.0875,4982.85714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Algae is a thin film."
+"2013-11-05_YB-Dq3",2013-11-05,2013-11-05,"YB","D","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%",""
+"2013-11-05_YB-Dq4",2013-11-05,2013-11-05,"YB","D","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likley low due to glare"
+"2013-11-05_YB-Dq5",2013-11-05,2013-11-05,"YB","D","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Algae is a thin film."
+"2013-11-05_YB-Dq3",2013-11-05,2013-11-05,"YB","D","3","Mt","Mytilus_trossulus","Type 15",228,0.0875,2605.71428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","50%",""
+"2013-11-05_YB-Dq4",2013-11-05,2013-11-05,"YB","D","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likley low due to glare"
+"2013-11-05_YB-Dq5",2013-11-05,2013-11-05,"YB","D","5","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Algae is a thin film."
+"2013-11-05_YB-Dq3",2013-11-05,2013-11-05,"YB","D","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%",""
+"2013-11-05_YB-Dq4",2013-11-05,2013-11-05,"YB","D","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likley low due to glare"
+"2013-11-05_YB-Dq5",2013-11-05,2013-11-05,"YB","D","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Algae is a thin film."
+"2013-11-05_YB-Dq3",2013-11-05,2013-11-05,"YB","D","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%",""
+"2013-11-05_YB-Dq4",2013-11-05,2013-11-05,"YB","D","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likley low due to glare"
+"2013-11-05_YB-Dq5",2013-11-05,2013-11-05,"YB","D","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Algae is a thin film."
+"2013-11-05_YB-Dq3",2013-11-05,2013-11-05,"YB","D","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%",""
+"2013-11-05_YB-Dq4",2013-11-05,2013-11-05,"YB","D","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likley low due to glare"
+"2013-11-05_YB-Dq5",2013-11-05,2013-11-05,"YB","D","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Algae is a thin film."
+"2013-11-05_YB-Dq3",2013-11-05,2013-11-05,"YB","D","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%",""
+"2013-11-05_YB-Dq4",2013-11-05,2013-11-05,"YB","D","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likley low due to glare"
+"2013-11-05_YB-Dq5",2013-11-05,2013-11-05,"YB","D","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Algae is a thin film."
+"2013-11-05_YB-Dq3",2013-11-05,2013-11-05,"YB","D","3","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","50%",""
+"2013-11-05_YB-Dq4",2013-11-05,2013-11-05,"YB","D","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likley low due to glare"
+"2013-11-05_YB-Dq5",2013-11-05,2013-11-05,"YB","D","5","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Algae is a thin film."
+"2013-11-05_YB-Dq3",2013-11-05,2013-11-05,"YB","D","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%",""
+"2013-11-05_YB-Dq4",2013-11-05,2013-11-05,"YB","D","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likley low due to glare"
+"2013-11-05_YB-Dq5",2013-11-05,2013-11-05,"YB","D","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Algae is a thin film."
+"2013-11-05_YB-Dq3",2013-11-05,2013-11-05,"YB","D","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%",""
+"2013-11-05_YB-Dq4",2013-11-05,2013-11-05,"YB","D","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likley low due to glare"
+"2013-11-05_YB-Dq5",2013-11-05,2013-11-05,"YB","D","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Algae is a thin film."
+"2013-11-05_YB-Dq3",2013-11-05,2013-11-05,"YB","D","3","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%",""
+"2013-11-05_YB-Dq4",2013-11-05,2013-11-05,"YB","D","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likley low due to glare"
+"2013-11-05_YB-Dq5",2013-11-05,2013-11-05,"YB","D","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Algae is a thin film."
+"2013-11-05_YB-Dq3",2013-11-05,2013-11-05,"YB","D","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%",""
+"2013-11-05_YB-Dq4",2013-11-05,2013-11-05,"YB","D","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likley low due to glare"
+"2013-11-05_YB-Dq5",2013-11-05,2013-11-05,"YB","D","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Algae is a thin film."
+"2013-11-05_YB-Dq3",2013-11-05,2013-11-05,"YB","D","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%",""
+"2013-11-05_YB-Dq4",2013-11-05,2013-11-05,"YB","D","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likley low due to glare"
+"2013-11-05_YB-Dq5",2013-11-05,2013-11-05,"YB","D","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Algae is a thin film."
+"2013-11-05_YB-Dq3",2013-11-05,2013-11-05,"YB","D","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%",""
+"2013-11-05_YB-Dq4",2013-11-05,2013-11-05,"YB","D","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likley low due to glare"
+"2013-11-05_YB-Dq5",2013-11-05,2013-11-05,"YB","D","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Algae is a thin film."
+"2013-11-05_YB-Eq3",2013-11-05,2013-11-05,"YB","E","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare and slight blur"
+"2013-11-05_YB-Eq4",2013-11-05,2013-11-05,"YB","E","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare"
+"2013-11-05_YB-Eq8",2013-11-05,2013-11-05,"YB","E","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare and blur"
+"2013-11-05_YB-Eq3",2013-11-05,2013-11-05,"YB","E","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare and slight blur"
+"2013-11-05_YB-Eq4",2013-11-05,2013-11-05,"YB","E","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare"
+"2013-11-05_YB-Eq8",2013-11-05,2013-11-05,"YB","E","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare and blur"
+"2013-11-05_YB-Eq3",2013-11-05,2013-11-05,"YB","E","3","Bg","Balanus_glandula","Type 1",863,0.015625,55232,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare and slight blur"
+"2013-11-05_YB-Eq4",2013-11-05,2013-11-05,"YB","E","4","Bg","Balanus_glandula","Type 1",812,0.015625,51968,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare"
+"2013-11-05_YB-Eq8",2013-11-05,2013-11-05,"YB","E","8","Bg","Balanus_glandula","Type 1",768,0.015625,49152,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare and blur"
+"2013-11-05_YB-Eq3",2013-11-05,2013-11-05,"YB","E","3","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare and slight blur"
+"2013-11-05_YB-Eq4",2013-11-05,2013-11-05,"YB","E","4","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare"
+"2013-11-05_YB-Eq8",2013-11-05,2013-11-05,"YB","E","8","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare and blur"
+"2013-11-05_YB-Eq3",2013-11-05,2013-11-05,"YB","E","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare and slight blur"
+"2013-11-05_YB-Eq4",2013-11-05,2013-11-05,"YB","E","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare"
+"2013-11-05_YB-Eq8",2013-11-05,2013-11-05,"YB","E","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare and blur"
+"2013-11-05_YB-Eq3",2013-11-05,2013-11-05,"YB","E","3","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare and slight blur"
+"2013-11-05_YB-Eq4",2013-11-05,2013-11-05,"YB","E","4","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare"
+"2013-11-05_YB-Eq8",2013-11-05,2013-11-05,"YB","E","8","Cth","Chthamalus_dalli","Type 3",6,0.015625,384,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare and blur"
+"2013-11-05_YB-Eq3",2013-11-05,2013-11-05,"YB","E","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare and slight blur"
+"2013-11-05_YB-Eq4",2013-11-05,2013-11-05,"YB","E","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare"
+"2013-11-05_YB-Eq8",2013-11-05,2013-11-05,"YB","E","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare and blur"
+"2013-11-05_YB-Eq3",2013-11-05,2013-11-05,"YB","E","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare and slight blur"
+"2013-11-05_YB-Eq4",2013-11-05,2013-11-05,"YB","E","4","Emp","Emplectonema worm","Type 23",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare"
+"2013-11-05_YB-Eq8",2013-11-05,2013-11-05,"YB","E","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare and blur"
+"2013-11-05_YB-Eq3",2013-11-05,2013-11-05,"YB","E","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare and slight blur"
+"2013-11-05_YB-Eq4",2013-11-05,2013-11-05,"YB","E","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare"
+"2013-11-05_YB-Eq8",2013-11-05,2013-11-05,"YB","E","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare and blur"
+"2013-11-05_YB-Eq3",2013-11-05,2013-11-05,"YB","E","3","Lim","Limpets","Type 12",6,0.0875,68.5714285714286,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare and slight blur"
+"2013-11-05_YB-Eq4",2013-11-05,2013-11-05,"YB","E","4","Lim","Limpets","Type 12",5,0.0875,57.1428571428571,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare"
+"2013-11-05_YB-Eq8",2013-11-05,2013-11-05,"YB","E","8","Lim","Limpets","Type 12",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare and blur"
+"2013-11-05_YB-Eq3",2013-11-05,2013-11-05,"YB","E","3","Ls","Littorina_sitkana","Type 13",12,0.0875,137.142857142857,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare and slight blur"
+"2013-11-05_YB-Eq4",2013-11-05,2013-11-05,"YB","E","4","Ls","Littorina_sitkana","Type 13",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare"
+"2013-11-05_YB-Eq8",2013-11-05,2013-11-05,"YB","E","8","Ls","Littorina_sitkana","Type 13",21,0.0875,240,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare and blur"
+"2013-11-05_YB-Eq3",2013-11-05,2013-11-05,"YB","E","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare and slight blur"
+"2013-11-05_YB-Eq4",2013-11-05,2013-11-05,"YB","E","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare"
+"2013-11-05_YB-Eq8",2013-11-05,2013-11-05,"YB","E","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare and blur"
+"2013-11-05_YB-Eq3",2013-11-05,2013-11-05,"YB","E","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare and slight blur"
+"2013-11-05_YB-Eq4",2013-11-05,2013-11-05,"YB","E","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare"
+"2013-11-05_YB-Eq8",2013-11-05,2013-11-05,"YB","E","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare and blur"
+"2013-11-05_YB-Eq3",2013-11-05,2013-11-05,"YB","E","3","Myt","Mytilus_spp","Type 7",457,0.0875,5222.85714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare and slight blur"
+"2013-11-05_YB-Eq4",2013-11-05,2013-11-05,"YB","E","4","Myt","Mytilus_spp","Type 7",405,0.0875,4628.57142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare"
+"2013-11-05_YB-Eq8",2013-11-05,2013-11-05,"YB","E","8","Myt","Mytilus_spp","Type 7",341,0.0875,3897.14285714286,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare and blur"
+"2013-11-05_YB-Eq3",2013-11-05,2013-11-05,"YB","E","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare and slight blur"
+"2013-11-05_YB-Eq4",2013-11-05,2013-11-05,"YB","E","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare"
+"2013-11-05_YB-Eq8",2013-11-05,2013-11-05,"YB","E","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare and blur"
+"2013-11-05_YB-Eq3",2013-11-05,2013-11-05,"YB","E","3","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare and slight blur"
+"2013-11-05_YB-Eq4",2013-11-05,2013-11-05,"YB","E","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare"
+"2013-11-05_YB-Eq8",2013-11-05,2013-11-05,"YB","E","8","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare and blur"
+"2013-11-05_YB-Eq3",2013-11-05,2013-11-05,"YB","E","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare and slight blur"
+"2013-11-05_YB-Eq4",2013-11-05,2013-11-05,"YB","E","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare"
+"2013-11-05_YB-Eq8",2013-11-05,2013-11-05,"YB","E","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare and blur"
+"2013-11-05_YB-Eq3",2013-11-05,2013-11-05,"YB","E","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare and slight blur"
+"2013-11-05_YB-Eq4",2013-11-05,2013-11-05,"YB","E","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare"
+"2013-11-05_YB-Eq8",2013-11-05,2013-11-05,"YB","E","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare and blur"
+"2013-11-05_YB-Eq3",2013-11-05,2013-11-05,"YB","E","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare and slight blur"
+"2013-11-05_YB-Eq4",2013-11-05,2013-11-05,"YB","E","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare"
+"2013-11-05_YB-Eq8",2013-11-05,2013-11-05,"YB","E","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare and blur"
+"2013-11-05_YB-Eq3",2013-11-05,2013-11-05,"YB","E","3","Negg","Nucella_eggs","Type 26",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare and slight blur"
+"2013-11-05_YB-Eq4",2013-11-05,2013-11-05,"YB","E","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare"
+"2013-11-05_YB-Eq8",2013-11-05,2013-11-05,"YB","E","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare and blur"
+"2013-11-05_YB-Eq3",2013-11-05,2013-11-05,"YB","E","3","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare and slight blur"
+"2013-11-05_YB-Eq4",2013-11-05,2013-11-05,"YB","E","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare"
+"2013-11-05_YB-Eq8",2013-11-05,2013-11-05,"YB","E","8","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare and blur"
+"2013-11-05_YB-Eq3",2013-11-05,2013-11-05,"YB","E","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare and slight blur"
+"2013-11-05_YB-Eq4",2013-11-05,2013-11-05,"YB","E","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare"
+"2013-11-05_YB-Eq8",2013-11-05,2013-11-05,"YB","E","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare and blur"
+"2013-11-05_YB-Eq3",2013-11-05,2013-11-05,"YB","E","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare and slight blur"
+"2013-11-05_YB-Eq4",2013-11-05,2013-11-05,"YB","E","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare"
+"2013-11-05_YB-Eq8",2013-11-05,2013-11-05,"YB","E","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare and blur"
+"2013-11-05_YB-Eq3",2013-11-05,2013-11-05,"YB","E","3","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare and slight blur"
+"2013-11-05_YB-Eq4",2013-11-05,2013-11-05,"YB","E","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare"
+"2013-11-05_YB-Eq8",2013-11-05,2013-11-05,"YB","E","8","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare and blur"
+"2013-11-05_YB-Eq3",2013-11-05,2013-11-05,"YB","E","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare and slight blur"
+"2013-11-05_YB-Eq4",2013-11-05,2013-11-05,"YB","E","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare"
+"2013-11-05_YB-Eq8",2013-11-05,2013-11-05,"YB","E","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare and blur"
+"2013-11-05_YB-Eq3",2013-11-05,2013-11-05,"YB","E","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare and slight blur"
+"2013-11-05_YB-Eq4",2013-11-05,2013-11-05,"YB","E","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare"
+"2013-11-05_YB-Eq8",2013-11-05,2013-11-05,"YB","E","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare and blur"
+"2013-11-05_YB-Eq3",2013-11-05,2013-11-05,"YB","E","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare and slight blur"
+"2013-11-05_YB-Eq4",2013-11-05,2013-11-05,"YB","E","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare"
+"2013-11-05_YB-Eq8",2013-11-05,2013-11-05,"YB","E","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare and blur"
+"2013-11-05_YB-Fq4",2013-11-05,2013-11-05,"YB","F","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-11-05_YB-Fq5",2013-11-05,2013-11-05,"YB","F","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-11-05_YB-Fq6",2013-11-05,2013-11-05,"YB","F","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-11-05_YB-Fq7",2013-11-05,2013-11-05,"YB","F","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","counts may be low due to blur and glare"
+"2013-11-05_YB-Fq4",2013-11-05,2013-11-05,"YB","F","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-11-05_YB-Fq5",2013-11-05,2013-11-05,"YB","F","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-11-05_YB-Fq6",2013-11-05,2013-11-05,"YB","F","6","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-11-05_YB-Fq7",2013-11-05,2013-11-05,"YB","F","7","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","counts may be low due to blur and glare"
+"2013-11-05_YB-Fq4",2013-11-05,2013-11-05,"YB","F","4","Bg","Balanus_glandula","Type 1",1640,0.015625,104960,"c","Beatriz Vaca","Finished","Full","Cropped","55%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-11-05_YB-Fq5",2013-11-05,2013-11-05,"YB","F","5","Bg","Balanus_glandula","Type 1",1658,0.015625,106112,"c","Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-11-05_YB-Fq6",2013-11-05,2013-11-05,"YB","F","6","Bg","Balanus_glandula","Type 1",1124,0.015625,71936,"c","Beatriz Vaca","Finished","Full","Cropped","65%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-11-05_YB-Fq7",2013-11-05,2013-11-05,"YB","F","7","Bg","Balanus_glandula","Type 1",862,0.015625,55168,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","counts may be low due to blur and glare"
+"2013-11-05_YB-Fq4",2013-11-05,2013-11-05,"YB","F","4","BgD","Balanus_glandula_(dead)","Type 2",2,0.015625,128,"c","Beatriz Vaca","Finished","Full","Cropped","55%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-11-05_YB-Fq5",2013-11-05,2013-11-05,"YB","F","5","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-11-05_YB-Fq6",2013-11-05,2013-11-05,"YB","F","6","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","65%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-11-05_YB-Fq7",2013-11-05,2013-11-05,"YB","F","7","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","counts may be low due to blur and glare"
+"2013-11-05_YB-Fq4",2013-11-05,2013-11-05,"YB","F","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-11-05_YB-Fq5",2013-11-05,2013-11-05,"YB","F","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-11-05_YB-Fq6",2013-11-05,2013-11-05,"YB","F","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-11-05_YB-Fq7",2013-11-05,2013-11-05,"YB","F","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","counts may be low due to blur and glare"
+"2013-11-05_YB-Fq4",2013-11-05,2013-11-05,"YB","F","4","Cth","Chthamalus_dalli","Type 3",5,0.015625,320,"c","Beatriz Vaca","Finished","Full","Cropped","55%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-11-05_YB-Fq5",2013-11-05,2013-11-05,"YB","F","5","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-11-05_YB-Fq6",2013-11-05,2013-11-05,"YB","F","6","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","65%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-11-05_YB-Fq7",2013-11-05,2013-11-05,"YB","F","7","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","counts may be low due to blur and glare"
+"2013-11-05_YB-Fq4",2013-11-05,2013-11-05,"YB","F","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","55%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-11-05_YB-Fq5",2013-11-05,2013-11-05,"YB","F","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-11-05_YB-Fq6",2013-11-05,2013-11-05,"YB","F","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","65%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-11-05_YB-Fq7",2013-11-05,2013-11-05,"YB","F","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","counts may be low due to blur and glare"
+"2013-11-05_YB-Fq4",2013-11-05,2013-11-05,"YB","F","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-11-05_YB-Fq5",2013-11-05,2013-11-05,"YB","F","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-11-05_YB-Fq6",2013-11-05,2013-11-05,"YB","F","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-11-05_YB-Fq7",2013-11-05,2013-11-05,"YB","F","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","counts may be low due to blur and glare"
+"2013-11-05_YB-Fq4",2013-11-05,2013-11-05,"YB","F","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-11-05_YB-Fq5",2013-11-05,2013-11-05,"YB","F","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-11-05_YB-Fq6",2013-11-05,2013-11-05,"YB","F","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-11-05_YB-Fq7",2013-11-05,2013-11-05,"YB","F","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","counts may be low due to blur and glare"
+"2013-11-05_YB-Fq4",2013-11-05,2013-11-05,"YB","F","4","Lim","Limpets","Type 12",473,0.0875,5405.71428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-11-05_YB-Fq5",2013-11-05,2013-11-05,"YB","F","5","Lim","Limpets","Type 12",357,0.0875,4080,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-11-05_YB-Fq6",2013-11-05,2013-11-05,"YB","F","6","Lim","Limpets","Type 12",241,0.0875,2754.28571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-11-05_YB-Fq7",2013-11-05,2013-11-05,"YB","F","7","Lim","Limpets","Type 12",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","counts may be low due to blur and glare"
+"2013-11-05_YB-Fq4",2013-11-05,2013-11-05,"YB","F","4","Ls","Littorina_sitkana","Type 13",187,0.0875,2137.14285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-11-05_YB-Fq5",2013-11-05,2013-11-05,"YB","F","5","Ls","Littorina_sitkana","Type 13",159,0.0875,1817.14285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-11-05_YB-Fq6",2013-11-05,2013-11-05,"YB","F","6","Ls","Littorina_sitkana","Type 13",84,0.0875,960,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-11-05_YB-Fq7",2013-11-05,2013-11-05,"YB","F","7","Ls","Littorina_sitkana","Type 13",34,0.0875,388.571428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","counts may be low due to blur and glare"
+"2013-11-05_YB-Fq4",2013-11-05,2013-11-05,"YB","F","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-11-05_YB-Fq5",2013-11-05,2013-11-05,"YB","F","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-11-05_YB-Fq6",2013-11-05,2013-11-05,"YB","F","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-11-05_YB-Fq7",2013-11-05,2013-11-05,"YB","F","7","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","counts may be low due to blur and glare"
+"2013-11-05_YB-Fq4",2013-11-05,2013-11-05,"YB","F","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-11-05_YB-Fq5",2013-11-05,2013-11-05,"YB","F","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-11-05_YB-Fq6",2013-11-05,2013-11-05,"YB","F","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-11-05_YB-Fq7",2013-11-05,2013-11-05,"YB","F","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","counts may be low due to blur and glare"
+"2013-11-05_YB-Fq4",2013-11-05,2013-11-05,"YB","F","4","Myt","Mytilus_spp","Type 7",349,0.0875,3988.57142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-11-05_YB-Fq5",2013-11-05,2013-11-05,"YB","F","5","Myt","Mytilus_spp","Type 7",518,0.0875,5920,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-11-05_YB-Fq6",2013-11-05,2013-11-05,"YB","F","6","Myt","Mytilus_spp","Type 7",242,0.0875,2765.71428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-11-05_YB-Fq7",2013-11-05,2013-11-05,"YB","F","7","Myt","Mytilus_spp","Type 7",145,0.0875,1657.14285714286,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","counts may be low due to blur and glare"
+"2013-11-05_YB-Fq4",2013-11-05,2013-11-05,"YB","F","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-11-05_YB-Fq5",2013-11-05,2013-11-05,"YB","F","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-11-05_YB-Fq6",2013-11-05,2013-11-05,"YB","F","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-11-05_YB-Fq7",2013-11-05,2013-11-05,"YB","F","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","counts may be low due to blur and glare"
+"2013-11-05_YB-Fq4",2013-11-05,2013-11-05,"YB","F","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-11-05_YB-Fq5",2013-11-05,2013-11-05,"YB","F","5","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-11-05_YB-Fq6",2013-11-05,2013-11-05,"YB","F","6","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-11-05_YB-Fq7",2013-11-05,2013-11-05,"YB","F","7","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","counts may be low due to blur and glare"
+"2013-11-05_YB-Fq4",2013-11-05,2013-11-05,"YB","F","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-11-05_YB-Fq5",2013-11-05,2013-11-05,"YB","F","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-11-05_YB-Fq6",2013-11-05,2013-11-05,"YB","F","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-11-05_YB-Fq7",2013-11-05,2013-11-05,"YB","F","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","counts may be low due to blur and glare"
+"2013-11-05_YB-Fq4",2013-11-05,2013-11-05,"YB","F","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-11-05_YB-Fq5",2013-11-05,2013-11-05,"YB","F","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-11-05_YB-Fq6",2013-11-05,2013-11-05,"YB","F","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-11-05_YB-Fq7",2013-11-05,2013-11-05,"YB","F","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","counts may be low due to blur and glare"
+"2013-11-05_YB-Fq4",2013-11-05,2013-11-05,"YB","F","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-11-05_YB-Fq5",2013-11-05,2013-11-05,"YB","F","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-11-05_YB-Fq6",2013-11-05,2013-11-05,"YB","F","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-11-05_YB-Fq7",2013-11-05,2013-11-05,"YB","F","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","counts may be low due to blur and glare"
+"2013-11-05_YB-Fq4",2013-11-05,2013-11-05,"YB","F","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-11-05_YB-Fq5",2013-11-05,2013-11-05,"YB","F","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-11-05_YB-Fq6",2013-11-05,2013-11-05,"YB","F","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-11-05_YB-Fq7",2013-11-05,2013-11-05,"YB","F","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","counts may be low due to blur and glare"
+"2013-11-05_YB-Fq4",2013-11-05,2013-11-05,"YB","F","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-11-05_YB-Fq5",2013-11-05,2013-11-05,"YB","F","5","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-11-05_YB-Fq6",2013-11-05,2013-11-05,"YB","F","6","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-11-05_YB-Fq7",2013-11-05,2013-11-05,"YB","F","7","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","counts may be low due to blur and glare"
+"2013-11-05_YB-Fq4",2013-11-05,2013-11-05,"YB","F","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-11-05_YB-Fq5",2013-11-05,2013-11-05,"YB","F","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-11-05_YB-Fq6",2013-11-05,2013-11-05,"YB","F","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-11-05_YB-Fq7",2013-11-05,2013-11-05,"YB","F","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","counts may be low due to blur and glare"
+"2013-11-05_YB-Fq4",2013-11-05,2013-11-05,"YB","F","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-11-05_YB-Fq5",2013-11-05,2013-11-05,"YB","F","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-11-05_YB-Fq6",2013-11-05,2013-11-05,"YB","F","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-11-05_YB-Fq7",2013-11-05,2013-11-05,"YB","F","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","counts may be low due to blur and glare"
+"2013-11-05_YB-Fq4",2013-11-05,2013-11-05,"YB","F","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-11-05_YB-Fq5",2013-11-05,2013-11-05,"YB","F","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-11-05_YB-Fq6",2013-11-05,2013-11-05,"YB","F","6","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-11-05_YB-Fq7",2013-11-05,2013-11-05,"YB","F","7","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","counts may be low due to blur and glare"
+"2013-11-05_YB-Fq4",2013-11-05,2013-11-05,"YB","F","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-11-05_YB-Fq5",2013-11-05,2013-11-05,"YB","F","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-11-05_YB-Fq6",2013-11-05,2013-11-05,"YB","F","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-11-05_YB-Fq7",2013-11-05,2013-11-05,"YB","F","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","counts may be low due to blur and glare"
+"2013-11-05_YB-Fq4",2013-11-05,2013-11-05,"YB","F","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-11-05_YB-Fq5",2013-11-05,2013-11-05,"YB","F","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-11-05_YB-Fq6",2013-11-05,2013-11-05,"YB","F","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-11-05_YB-Fq7",2013-11-05,2013-11-05,"YB","F","7","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","counts may be low due to blur and glare"
+"2013-11-05_YB-Fq4",2013-11-05,2013-11-05,"YB","F","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-11-05_YB-Fq5",2013-11-05,2013-11-05,"YB","F","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-11-05_YB-Fq6",2013-11-05,2013-11-05,"YB","F","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Counts low due to algae, blur and glare. Algae is a thin film."
+"2013-11-05_YB-Fq7",2013-11-05,2013-11-05,"YB","F","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","counts may be low due to blur and glare"
+"2013-11-05_YB-Gq3",2013-11-05,2013-11-05,"YB","G","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Cropped","10%","Counts likely low due to blur and glare"
+"2013-11-05_YB-Gq5",2013-11-05,2013-11-05,"YB","G","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","1%","Counts likely low due to glare, byssal threads, and sand coverage. ~10%sand cover, ~10%byssal threads."
+"2013-11-05_YB-Gq8",2013-11-05,2013-11-05,"YB","G","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2013-11-05_YB-Gq3",2013-11-05,2013-11-05,"YB","G","3","Ae","Anemones","Type 14",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Cropped","Cropped","10%","Counts likely low due to blur and glare"
+"2013-11-05_YB-Gq5",2013-11-05,2013-11-05,"YB","G","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","1%","Counts likely low due to glare, byssal threads, and sand coverage. ~10%sand cover, ~10%byssal threads."
+"2013-11-05_YB-Gq8",2013-11-05,2013-11-05,"YB","G","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2013-11-05_YB-Gq3",2013-11-05,2013-11-05,"YB","G","3","Bg","Balanus_glandula","Type 1",28,0.015625,1792,"c","Stephanie Merhoff","Finished","Cropped","Cropped","10%","Counts likely low due to blur and glare"
+"2013-11-05_YB-Gq5",2013-11-05,2013-11-05,"YB","G","5","Bg","Balanus_glandula","Type 1",4206,0.0875,48068.5714285714,NA,"Beatriz Vaca","Finished","Cropped","Full","1%","Counts likely low due to glare, byssal threads, and sand coverage. ~10%sand cover, ~10%byssal threads."
+"2013-11-05_YB-Gq8",2013-11-05,2013-11-05,"YB","G","8","Bg","Balanus_glandula","Type 1",752,0.015625,48128,"c","Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2013-11-05_YB-Gq3",2013-11-05,2013-11-05,"YB","G","3","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Cropped","Cropped","10%","Counts likely low due to blur and glare"
+"2013-11-05_YB-Gq5",2013-11-05,2013-11-05,"YB","G","5","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","1%","Counts likely low due to glare, byssal threads, and sand coverage. ~10%sand cover, ~10%byssal threads."
+"2013-11-05_YB-Gq8",2013-11-05,2013-11-05,"YB","G","8","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2013-11-05_YB-Gq3",2013-11-05,2013-11-05,"YB","G","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Cropped","10%","Counts likely low due to blur and glare"
+"2013-11-05_YB-Gq5",2013-11-05,2013-11-05,"YB","G","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","1%","Counts likely low due to glare, byssal threads, and sand coverage. ~10%sand cover, ~10%byssal threads."
+"2013-11-05_YB-Gq8",2013-11-05,2013-11-05,"YB","G","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2013-11-05_YB-Gq3",2013-11-05,2013-11-05,"YB","G","3","Cth","Chthamalus_dalli","Type 3",422,0.015625,27008,"c","Stephanie Merhoff","Finished","Cropped","Cropped","10%","Counts likely low due to blur and glare"
+"2013-11-05_YB-Gq5",2013-11-05,2013-11-05,"YB","G","5","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","1%","Counts likely low due to glare, byssal threads, and sand coverage. ~10%sand cover, ~10%byssal threads."
+"2013-11-05_YB-Gq8",2013-11-05,2013-11-05,"YB","G","8","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2013-11-05_YB-Gq3",2013-11-05,2013-11-05,"YB","G","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Cropped","Cropped","10%","Counts likely low due to blur and glare"
+"2013-11-05_YB-Gq5",2013-11-05,2013-11-05,"YB","G","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","1%","Counts likely low due to glare, byssal threads, and sand coverage. ~10%sand cover, ~10%byssal threads."
+"2013-11-05_YB-Gq8",2013-11-05,2013-11-05,"YB","G","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2013-11-05_YB-Gq3",2013-11-05,2013-11-05,"YB","G","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Cropped","10%","Counts likely low due to blur and glare"
+"2013-11-05_YB-Gq5",2013-11-05,2013-11-05,"YB","G","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","1%","Counts likely low due to glare, byssal threads, and sand coverage. ~10%sand cover, ~10%byssal threads."
+"2013-11-05_YB-Gq8",2013-11-05,2013-11-05,"YB","G","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2013-11-05_YB-Gq3",2013-11-05,2013-11-05,"YB","G","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Cropped","10%","Counts likely low due to blur and glare"
+"2013-11-05_YB-Gq5",2013-11-05,2013-11-05,"YB","G","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","1%","Counts likely low due to glare, byssal threads, and sand coverage. ~10%sand cover, ~10%byssal threads."
+"2013-11-05_YB-Gq8",2013-11-05,2013-11-05,"YB","G","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2013-11-05_YB-Gq3",2013-11-05,2013-11-05,"YB","G","3","Lim","Limpets","Type 12",6,0.0875,68.5714285714286,NA,"Stephanie Merhoff","Finished","Cropped","Cropped","10%","Counts likely low due to blur and glare"
+"2013-11-05_YB-Gq5",2013-11-05,2013-11-05,"YB","G","5","Lim","Limpets","Type 12",87,0.0875,994.285714285714,NA,"Beatriz Vaca","Finished","Cropped","Full","1%","Counts likely low due to glare, byssal threads, and sand coverage. ~10%sand cover, ~10%byssal threads."
+"2013-11-05_YB-Gq8",2013-11-05,2013-11-05,"YB","G","8","Lim","Limpets","Type 12",19,0.0875,217.142857142857,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2013-11-05_YB-Gq3",2013-11-05,2013-11-05,"YB","G","3","Ls","Littorina_sitkana","Type 13",33,0.0875,377.142857142857,NA,"Stephanie Merhoff","Finished","Cropped","Cropped","10%","Counts likely low due to blur and glare"
+"2013-11-05_YB-Gq5",2013-11-05,2013-11-05,"YB","G","5","Ls","Littorina_sitkana","Type 13",116,0.0875,1325.71428571429,NA,"Beatriz Vaca","Finished","Cropped","Full","1%","Counts likely low due to glare, byssal threads, and sand coverage. ~10%sand cover, ~10%byssal threads."
+"2013-11-05_YB-Gq8",2013-11-05,2013-11-05,"YB","G","8","Ls","Littorina_sitkana","Type 13",17,0.0875,194.285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2013-11-05_YB-Gq3",2013-11-05,2013-11-05,"YB","G","3","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Stephanie Merhoff","Finished","Cropped","Cropped","10%","Counts likely low due to blur and glare"
+"2013-11-05_YB-Gq5",2013-11-05,2013-11-05,"YB","G","5","Mc","Mytilus_californianus","Type 17",1,0.015625,64,"c","Beatriz Vaca","Finished","Cropped","Full","1%","Counts likely low due to glare, byssal threads, and sand coverage. ~10%sand cover, ~10%byssal threads."
+"2013-11-05_YB-Gq8",2013-11-05,2013-11-05,"YB","G","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2013-11-05_YB-Gq3",2013-11-05,2013-11-05,"YB","G","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Stephanie Merhoff","Finished","Cropped","Cropped","10%","Counts likely low due to blur and glare"
+"2013-11-05_YB-Gq5",2013-11-05,2013-11-05,"YB","G","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","1%","Counts likely low due to glare, byssal threads, and sand coverage. ~10%sand cover, ~10%byssal threads."
+"2013-11-05_YB-Gq8",2013-11-05,2013-11-05,"YB","G","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2013-11-05_YB-Gq3",2013-11-05,2013-11-05,"YB","G","3","Myt","Mytilus_spp","Type 7",727,0.015625,46528,"c","Stephanie Merhoff","Finished","Cropped","Cropped","10%","Counts likely low due to blur and glare"
+"2013-11-05_YB-Gq5",2013-11-05,2013-11-05,"YB","G","5","Myt","Mytilus_spp","Type 7",800,0.015625,51200,"c","Beatriz Vaca","Finished","Cropped","Full","1%","Counts likely low due to glare, byssal threads, and sand coverage. ~10%sand cover, ~10%byssal threads."
+"2013-11-05_YB-Gq8",2013-11-05,2013-11-05,"YB","G","8","Myt","Mytilus_spp","Type 7",1779,0.0875,20331.4285714286,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2013-11-05_YB-Gq3",2013-11-05,2013-11-05,"YB","G","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Stephanie Merhoff","Finished","Cropped","Cropped","10%","Counts likely low due to blur and glare"
+"2013-11-05_YB-Gq5",2013-11-05,2013-11-05,"YB","G","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","1%","Counts likely low due to glare, byssal threads, and sand coverage. ~10%sand cover, ~10%byssal threads."
+"2013-11-05_YB-Gq8",2013-11-05,2013-11-05,"YB","G","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2013-11-05_YB-Gq3",2013-11-05,2013-11-05,"YB","G","3","Mt","Mytilus_trossulus","Type 15",0,0.015625,0,"c","Stephanie Merhoff","Finished","Cropped","Cropped","10%","Counts likely low due to blur and glare"
+"2013-11-05_YB-Gq5",2013-11-05,2013-11-05,"YB","G","5","Mt","Mytilus_trossulus","Type 15",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","1%","Counts likely low due to glare, byssal threads, and sand coverage. ~10%sand cover, ~10%byssal threads."
+"2013-11-05_YB-Gq8",2013-11-05,2013-11-05,"YB","G","8","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2013-11-05_YB-Gq3",2013-11-05,2013-11-05,"YB","G","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Stephanie Merhoff","Finished","Cropped","Cropped","10%","Counts likely low due to blur and glare"
+"2013-11-05_YB-Gq5",2013-11-05,2013-11-05,"YB","G","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","1%","Counts likely low due to glare, byssal threads, and sand coverage. ~10%sand cover, ~10%byssal threads."
+"2013-11-05_YB-Gq8",2013-11-05,2013-11-05,"YB","G","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2013-11-05_YB-Gq3",2013-11-05,2013-11-05,"YB","G","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Cropped","10%","Counts likely low due to blur and glare"
+"2013-11-05_YB-Gq5",2013-11-05,2013-11-05,"YB","G","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","1%","Counts likely low due to glare, byssal threads, and sand coverage. ~10%sand cover, ~10%byssal threads."
+"2013-11-05_YB-Gq8",2013-11-05,2013-11-05,"YB","G","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2013-11-05_YB-Gq3",2013-11-05,2013-11-05,"YB","G","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Cropped","10%","Counts likely low due to blur and glare"
+"2013-11-05_YB-Gq5",2013-11-05,2013-11-05,"YB","G","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","1%","Counts likely low due to glare, byssal threads, and sand coverage. ~10%sand cover, ~10%byssal threads."
+"2013-11-05_YB-Gq8",2013-11-05,2013-11-05,"YB","G","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2013-11-05_YB-Gq3",2013-11-05,2013-11-05,"YB","G","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Cropped","10%","Counts likely low due to blur and glare"
+"2013-11-05_YB-Gq5",2013-11-05,2013-11-05,"YB","G","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","1%","Counts likely low due to glare, byssal threads, and sand coverage. ~10%sand cover, ~10%byssal threads."
+"2013-11-05_YB-Gq8",2013-11-05,2013-11-05,"YB","G","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2013-11-05_YB-Gq3",2013-11-05,2013-11-05,"YB","G","3","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Cropped","10%","Counts likely low due to blur and glare"
+"2013-11-05_YB-Gq5",2013-11-05,2013-11-05,"YB","G","5","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","1%","Counts likely low due to glare, byssal threads, and sand coverage. ~10%sand cover, ~10%byssal threads."
+"2013-11-05_YB-Gq8",2013-11-05,2013-11-05,"YB","G","8","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2013-11-05_YB-Gq3",2013-11-05,2013-11-05,"YB","G","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Cropped","10%","Counts likely low due to blur and glare"
+"2013-11-05_YB-Gq5",2013-11-05,2013-11-05,"YB","G","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","1%","Counts likely low due to glare, byssal threads, and sand coverage. ~10%sand cover, ~10%byssal threads."
+"2013-11-05_YB-Gq8",2013-11-05,2013-11-05,"YB","G","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2013-11-05_YB-Gq3",2013-11-05,2013-11-05,"YB","G","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Cropped","10%","Counts likely low due to blur and glare"
+"2013-11-05_YB-Gq5",2013-11-05,2013-11-05,"YB","G","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","1%","Counts likely low due to glare, byssal threads, and sand coverage. ~10%sand cover, ~10%byssal threads."
+"2013-11-05_YB-Gq8",2013-11-05,2013-11-05,"YB","G","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2013-11-05_YB-Gq3",2013-11-05,2013-11-05,"YB","G","3","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Cropped","10%","Counts likely low due to blur and glare"
+"2013-11-05_YB-Gq5",2013-11-05,2013-11-05,"YB","G","5","Pp","Pollicipes_polymerus","Type 11",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Cropped","Full","1%","Counts likely low due to glare, byssal threads, and sand coverage. ~10%sand cover, ~10%byssal threads."
+"2013-11-05_YB-Gq8",2013-11-05,2013-11-05,"YB","G","8","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2013-11-05_YB-Gq3",2013-11-05,2013-11-05,"YB","G","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Cropped","10%","Counts likely low due to blur and glare"
+"2013-11-05_YB-Gq5",2013-11-05,2013-11-05,"YB","G","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","1%","Counts likely low due to glare, byssal threads, and sand coverage. ~10%sand cover, ~10%byssal threads."
+"2013-11-05_YB-Gq8",2013-11-05,2013-11-05,"YB","G","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2013-11-05_YB-Gq3",2013-11-05,2013-11-05,"YB","G","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Cropped","10%","Counts likely low due to blur and glare"
+"2013-11-05_YB-Gq5",2013-11-05,2013-11-05,"YB","G","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","1%","Counts likely low due to glare, byssal threads, and sand coverage. ~10%sand cover, ~10%byssal threads."
+"2013-11-05_YB-Gq8",2013-11-05,2013-11-05,"YB","G","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2013-11-05_YB-Gq3",2013-11-05,2013-11-05,"YB","G","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Cropped","10%","Counts likely low due to blur and glare"
+"2013-11-05_YB-Gq5",2013-11-05,2013-11-05,"YB","G","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","1%","Counts likely low due to glare, byssal threads, and sand coverage. ~10%sand cover, ~10%byssal threads."
+"2013-11-05_YB-Gq8",2013-11-05,2013-11-05,"YB","G","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2013-12-03_YB-Aq6",2013-12-03,2013-12-03,"YB","A","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2013-12-03_YB-Aq7",2013-12-03,2013-12-03,"YB","A","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","Algae is a thin film."
+"2013-12-03_YB-Aq9",2013-12-03,2013-12-03,"YB","A","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Aq6",2013-12-03,2013-12-03,"YB","A","6","Ae","Anemones","Type 14",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2013-12-03_YB-Aq7",2013-12-03,2013-12-03,"YB","A","7","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","Algae is a thin film."
+"2013-12-03_YB-Aq9",2013-12-03,2013-12-03,"YB","A","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Aq6",2013-12-03,2013-12-03,"YB","A","6","Bg","Balanus_glandula","Type 1",884,0.015625,56576,"c","Celeste Moen","Finished","Full","Cropped","0%",""
+"2013-12-03_YB-Aq7",2013-12-03,2013-12-03,"YB","A","7","Bg","Balanus_glandula","Type 1",1556,0.015625,99584,"c","Beatriz Vaca","Finished","Full","Cropped","25%","Algae is a thin film."
+"2013-12-03_YB-Aq9",2013-12-03,2013-12-03,"YB","A","9","Bg","Balanus_glandula","Type 1",699,0.015625,44736,"c","Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Aq6",2013-12-03,2013-12-03,"YB","A","6","BgD","Balanus_glandula_(dead)","Type 2",52,0.015625,3328,"c","Celeste Moen","Finished","Full","Cropped","0%",""
+"2013-12-03_YB-Aq7",2013-12-03,2013-12-03,"YB","A","7","BgD","Balanus_glandula_(dead)","Type 2",4,0.015625,256,"c","Beatriz Vaca","Finished","Full","Cropped","25%","Algae is a thin film."
+"2013-12-03_YB-Aq9",2013-12-03,2013-12-03,"YB","A","9","BgD","Balanus_glandula_(dead)","Type 2",1,0.015625,64,"c","Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Aq6",2013-12-03,2013-12-03,"YB","A","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2013-12-03_YB-Aq7",2013-12-03,2013-12-03,"YB","A","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","Algae is a thin film."
+"2013-12-03_YB-Aq9",2013-12-03,2013-12-03,"YB","A","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Aq6",2013-12-03,2013-12-03,"YB","A","6","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Celeste Moen","Finished","Full","Cropped","0%",""
+"2013-12-03_YB-Aq7",2013-12-03,2013-12-03,"YB","A","7","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","25%","Algae is a thin film."
+"2013-12-03_YB-Aq9",2013-12-03,2013-12-03,"YB","A","9","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Aq6",2013-12-03,2013-12-03,"YB","A","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Celeste Moen","Finished","Full","Cropped","0%",""
+"2013-12-03_YB-Aq7",2013-12-03,2013-12-03,"YB","A","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","25%","Algae is a thin film."
+"2013-12-03_YB-Aq9",2013-12-03,2013-12-03,"YB","A","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Aq6",2013-12-03,2013-12-03,"YB","A","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2013-12-03_YB-Aq7",2013-12-03,2013-12-03,"YB","A","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","Algae is a thin film."
+"2013-12-03_YB-Aq9",2013-12-03,2013-12-03,"YB","A","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Aq6",2013-12-03,2013-12-03,"YB","A","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2013-12-03_YB-Aq7",2013-12-03,2013-12-03,"YB","A","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","Algae is a thin film."
+"2013-12-03_YB-Aq9",2013-12-03,2013-12-03,"YB","A","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Aq6",2013-12-03,2013-12-03,"YB","A","6","Lim","Limpets","Type 12",5,0.0875,57.1428571428571,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2013-12-03_YB-Aq7",2013-12-03,2013-12-03,"YB","A","7","Lim","Limpets","Type 12",148,0.0875,1691.42857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","Algae is a thin film."
+"2013-12-03_YB-Aq9",2013-12-03,2013-12-03,"YB","A","9","Lim","Limpets","Type 12",19,0.0875,217.142857142857,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Aq6",2013-12-03,2013-12-03,"YB","A","6","Ls","Littorina_sitkana","Type 13",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2013-12-03_YB-Aq7",2013-12-03,2013-12-03,"YB","A","7","Ls","Littorina_sitkana","Type 13",135,0.0875,1542.85714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","Algae is a thin film."
+"2013-12-03_YB-Aq9",2013-12-03,2013-12-03,"YB","A","9","Ls","Littorina_sitkana","Type 13",72,0.0875,822.857142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Aq6",2013-12-03,2013-12-03,"YB","A","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2013-12-03_YB-Aq7",2013-12-03,2013-12-03,"YB","A","7","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","Algae is a thin film."
+"2013-12-03_YB-Aq9",2013-12-03,2013-12-03,"YB","A","9","Mc","Mytilus_californianus","Type 17",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Aq6",2013-12-03,2013-12-03,"YB","A","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2013-12-03_YB-Aq7",2013-12-03,2013-12-03,"YB","A","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","Algae is a thin film."
+"2013-12-03_YB-Aq9",2013-12-03,2013-12-03,"YB","A","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Aq6",2013-12-03,2013-12-03,"YB","A","6","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2013-12-03_YB-Aq7",2013-12-03,2013-12-03,"YB","A","7","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","Algae is a thin film."
+"2013-12-03_YB-Aq9",2013-12-03,2013-12-03,"YB","A","9","Myt","Mytilus_spp","Type 7",680,0.0875,7771.42857142857,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Aq6",2013-12-03,2013-12-03,"YB","A","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2013-12-03_YB-Aq7",2013-12-03,2013-12-03,"YB","A","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","Algae is a thin film."
+"2013-12-03_YB-Aq9",2013-12-03,2013-12-03,"YB","A","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Aq6",2013-12-03,2013-12-03,"YB","A","6","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2013-12-03_YB-Aq7",2013-12-03,2013-12-03,"YB","A","7","Mt","Mytilus_trossulus","Type 15",1013,0.0875,11577.1428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","Algae is a thin film."
+"2013-12-03_YB-Aq9",2013-12-03,2013-12-03,"YB","A","9","Mt","Mytilus_trossulus","Type 15",9,0.0875,102.857142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Aq6",2013-12-03,2013-12-03,"YB","A","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2013-12-03_YB-Aq7",2013-12-03,2013-12-03,"YB","A","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","Algae is a thin film."
+"2013-12-03_YB-Aq9",2013-12-03,2013-12-03,"YB","A","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Aq6",2013-12-03,2013-12-03,"YB","A","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2013-12-03_YB-Aq7",2013-12-03,2013-12-03,"YB","A","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","Algae is a thin film."
+"2013-12-03_YB-Aq9",2013-12-03,2013-12-03,"YB","A","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Aq6",2013-12-03,2013-12-03,"YB","A","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2013-12-03_YB-Aq7",2013-12-03,2013-12-03,"YB","A","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","Algae is a thin film."
+"2013-12-03_YB-Aq9",2013-12-03,2013-12-03,"YB","A","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Aq6",2013-12-03,2013-12-03,"YB","A","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2013-12-03_YB-Aq7",2013-12-03,2013-12-03,"YB","A","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","Algae is a thin film."
+"2013-12-03_YB-Aq9",2013-12-03,2013-12-03,"YB","A","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Aq6",2013-12-03,2013-12-03,"YB","A","6","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2013-12-03_YB-Aq7",2013-12-03,2013-12-03,"YB","A","7","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","Algae is a thin film."
+"2013-12-03_YB-Aq9",2013-12-03,2013-12-03,"YB","A","9","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Aq6",2013-12-03,2013-12-03,"YB","A","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2013-12-03_YB-Aq7",2013-12-03,2013-12-03,"YB","A","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","Algae is a thin film."
+"2013-12-03_YB-Aq9",2013-12-03,2013-12-03,"YB","A","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Aq6",2013-12-03,2013-12-03,"YB","A","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2013-12-03_YB-Aq7",2013-12-03,2013-12-03,"YB","A","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","Algae is a thin film."
+"2013-12-03_YB-Aq9",2013-12-03,2013-12-03,"YB","A","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Aq6",2013-12-03,2013-12-03,"YB","A","6","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2013-12-03_YB-Aq7",2013-12-03,2013-12-03,"YB","A","7","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","Algae is a thin film."
+"2013-12-03_YB-Aq9",2013-12-03,2013-12-03,"YB","A","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Aq6",2013-12-03,2013-12-03,"YB","A","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2013-12-03_YB-Aq7",2013-12-03,2013-12-03,"YB","A","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","Algae is a thin film."
+"2013-12-03_YB-Aq9",2013-12-03,2013-12-03,"YB","A","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Aq6",2013-12-03,2013-12-03,"YB","A","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2013-12-03_YB-Aq7",2013-12-03,2013-12-03,"YB","A","7","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","Algae is a thin film."
+"2013-12-03_YB-Aq9",2013-12-03,2013-12-03,"YB","A","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Aq6",2013-12-03,2013-12-03,"YB","A","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2013-12-03_YB-Aq7",2013-12-03,2013-12-03,"YB","A","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","Algae is a thin film."
+"2013-12-03_YB-Aq9",2013-12-03,2013-12-03,"YB","A","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-ABq1",2013-12-03,2013-12-03,"YB","AB","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","",""
+"2013-12-03_YB-ABq2",2013-12-03,2013-12-03,"YB","AB","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Counts likely low due to blur and algae cover, which is a thin, mucus-like layer"
+"2013-12-03_YB-ABq3",2013-12-03,2013-12-03,"YB","AB","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel count may be higher due to glare. Whelk eggs throughout photo"
+"2013-12-03_YB-ABq4",2013-12-03,2013-12-03,"YB","AB","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","35%","Algae is a thin film."
+"2013-12-03_YB-ABq1",2013-12-03,2013-12-03,"YB","AB","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","",""
+"2013-12-03_YB-ABq2",2013-12-03,2013-12-03,"YB","AB","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Counts likely low due to blur and algae cover, which is a thin, mucus-like layer"
+"2013-12-03_YB-ABq3",2013-12-03,2013-12-03,"YB","AB","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel count may be higher due to glare. Whelk eggs throughout photo"
+"2013-12-03_YB-ABq4",2013-12-03,2013-12-03,"YB","AB","4","Ae","Anemones","Type 14",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","35%","Algae is a thin film."
+"2013-12-03_YB-ABq1",2013-12-03,2013-12-03,"YB","AB","1","Bg","Balanus_glandula","Type 1",1338,0.015625,85632,"c","Beatriz Vaca","Finished","Full","Cropped","",""
+"2013-12-03_YB-ABq2",2013-12-03,2013-12-03,"YB","AB","2","Bg","Balanus_glandula","Type 1",1035,0.015625,66240,"c","Beatriz Vaca","Finished","Full","Cropped","30%","Counts likely low due to blur and algae cover, which is a thin, mucus-like layer"
+"2013-12-03_YB-ABq3",2013-12-03,2013-12-03,"YB","AB","3","Bg","Balanus_glandula","Type 1",767,0.015625,49088,"c","Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel count may be higher due to glare. Whelk eggs throughout photo"
+"2013-12-03_YB-ABq4",2013-12-03,2013-12-03,"YB","AB","4","Bg","Balanus_glandula","Type 1",1264,0.015625,80896,"c","Beatriz Vaca","Finished","Full","Cropped","35%","Algae is a thin film."
+"2013-12-03_YB-ABq1",2013-12-03,2013-12-03,"YB","AB","1","BgD","Balanus_glandula_(dead)","Type 2",60,0.015625,3840,"c","Beatriz Vaca","Finished","Full","Cropped","",""
+"2013-12-03_YB-ABq2",2013-12-03,2013-12-03,"YB","AB","2","BgD","Balanus_glandula_(dead)","Type 2",2,0.015625,128,"c","Beatriz Vaca","Finished","Full","Cropped","30%","Counts likely low due to blur and algae cover, which is a thin, mucus-like layer"
+"2013-12-03_YB-ABq3",2013-12-03,2013-12-03,"YB","AB","3","BgD","Balanus_glandula_(dead)","Type 2",16,0.015625,1024,"c","Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel count may be higher due to glare. Whelk eggs throughout photo"
+"2013-12-03_YB-ABq4",2013-12-03,2013-12-03,"YB","AB","4","BgD","Balanus_glandula_(dead)","Type 2",2,0.015625,128,"c","Beatriz Vaca","Finished","Full","Cropped","35%","Algae is a thin film."
+"2013-12-03_YB-ABq1",2013-12-03,2013-12-03,"YB","AB","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","",""
+"2013-12-03_YB-ABq2",2013-12-03,2013-12-03,"YB","AB","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Counts likely low due to blur and algae cover, which is a thin, mucus-like layer"
+"2013-12-03_YB-ABq3",2013-12-03,2013-12-03,"YB","AB","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel count may be higher due to glare. Whelk eggs throughout photo"
+"2013-12-03_YB-ABq4",2013-12-03,2013-12-03,"YB","AB","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","35%","Algae is a thin film."
+"2013-12-03_YB-ABq1",2013-12-03,2013-12-03,"YB","AB","1","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","",""
+"2013-12-03_YB-ABq2",2013-12-03,2013-12-03,"YB","AB","2","Cth","Chthamalus_dalli","Type 3",6,0.015625,384,"c","Beatriz Vaca","Finished","Full","Cropped","30%","Counts likely low due to blur and algae cover, which is a thin, mucus-like layer"
+"2013-12-03_YB-ABq3",2013-12-03,2013-12-03,"YB","AB","3","Cth","Chthamalus_dalli","Type 3",11,0.015625,704,"c","Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel count may be higher due to glare. Whelk eggs throughout photo"
+"2013-12-03_YB-ABq4",2013-12-03,2013-12-03,"YB","AB","4","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","35%","Algae is a thin film."
+"2013-12-03_YB-ABq1",2013-12-03,2013-12-03,"YB","AB","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","",""
+"2013-12-03_YB-ABq2",2013-12-03,2013-12-03,"YB","AB","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","30%","Counts likely low due to blur and algae cover, which is a thin, mucus-like layer"
+"2013-12-03_YB-ABq3",2013-12-03,2013-12-03,"YB","AB","3","CthD","Chthamalus_dalli (dead)","Type 4",1,0.015625,64,"c","Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel count may be higher due to glare. Whelk eggs throughout photo"
+"2013-12-03_YB-ABq4",2013-12-03,2013-12-03,"YB","AB","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","35%","Algae is a thin film."
+"2013-12-03_YB-ABq1",2013-12-03,2013-12-03,"YB","AB","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","",""
+"2013-12-03_YB-ABq2",2013-12-03,2013-12-03,"YB","AB","2","Emp","Emplectonema worm","Type 23",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Counts likely low due to blur and algae cover, which is a thin, mucus-like layer"
+"2013-12-03_YB-ABq3",2013-12-03,2013-12-03,"YB","AB","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel count may be higher due to glare. Whelk eggs throughout photo"
+"2013-12-03_YB-ABq4",2013-12-03,2013-12-03,"YB","AB","4","Emp","Emplectonema worm","Type 23",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","35%","Algae is a thin film."
+"2013-12-03_YB-ABq1",2013-12-03,2013-12-03,"YB","AB","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","",""
+"2013-12-03_YB-ABq2",2013-12-03,2013-12-03,"YB","AB","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Counts likely low due to blur and algae cover, which is a thin, mucus-like layer"
+"2013-12-03_YB-ABq3",2013-12-03,2013-12-03,"YB","AB","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel count may be higher due to glare. Whelk eggs throughout photo"
+"2013-12-03_YB-ABq4",2013-12-03,2013-12-03,"YB","AB","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","35%","Algae is a thin film."
+"2013-12-03_YB-ABq1",2013-12-03,2013-12-03,"YB","AB","1","Lim","Limpets","Type 12",34,0.0875,388.571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","",""
+"2013-12-03_YB-ABq2",2013-12-03,2013-12-03,"YB","AB","2","Lim","Limpets","Type 12",36,0.0875,411.428571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Counts likely low due to blur and algae cover, which is a thin, mucus-like layer"
+"2013-12-03_YB-ABq3",2013-12-03,2013-12-03,"YB","AB","3","Lim","Limpets","Type 12",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel count may be higher due to glare. Whelk eggs throughout photo"
+"2013-12-03_YB-ABq4",2013-12-03,2013-12-03,"YB","AB","4","Lim","Limpets","Type 12",446,0.0875,5097.14285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","35%","Algae is a thin film."
+"2013-12-03_YB-ABq1",2013-12-03,2013-12-03,"YB","AB","1","Ls","Littorina_sitkana","Type 13",107,0.0875,1222.85714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","",""
+"2013-12-03_YB-ABq2",2013-12-03,2013-12-03,"YB","AB","2","Ls","Littorina_sitkana","Type 13",13,0.0875,148.571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Counts likely low due to blur and algae cover, which is a thin, mucus-like layer"
+"2013-12-03_YB-ABq3",2013-12-03,2013-12-03,"YB","AB","3","Ls","Littorina_sitkana","Type 13",4,0.0875,45.7142857142857,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel count may be higher due to glare. Whelk eggs throughout photo"
+"2013-12-03_YB-ABq4",2013-12-03,2013-12-03,"YB","AB","4","Ls","Littorina_sitkana","Type 13",192,0.0875,2194.28571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","35%","Algae is a thin film."
+"2013-12-03_YB-ABq1",2013-12-03,2013-12-03,"YB","AB","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","",""
+"2013-12-03_YB-ABq2",2013-12-03,2013-12-03,"YB","AB","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Counts likely low due to blur and algae cover, which is a thin, mucus-like layer"
+"2013-12-03_YB-ABq3",2013-12-03,2013-12-03,"YB","AB","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel count may be higher due to glare. Whelk eggs throughout photo"
+"2013-12-03_YB-ABq4",2013-12-03,2013-12-03,"YB","AB","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","35%","Algae is a thin film."
+"2013-12-03_YB-ABq1",2013-12-03,2013-12-03,"YB","AB","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","",""
+"2013-12-03_YB-ABq2",2013-12-03,2013-12-03,"YB","AB","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Counts likely low due to blur and algae cover, which is a thin, mucus-like layer"
+"2013-12-03_YB-ABq3",2013-12-03,2013-12-03,"YB","AB","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel count may be higher due to glare. Whelk eggs throughout photo"
+"2013-12-03_YB-ABq4",2013-12-03,2013-12-03,"YB","AB","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","35%","Algae is a thin film."
+"2013-12-03_YB-ABq1",2013-12-03,2013-12-03,"YB","AB","1","Myt","Mytilus_spp","Type 7",37,0.0875,422.857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","",""
+"2013-12-03_YB-ABq2",2013-12-03,2013-12-03,"YB","AB","2","Myt","Mytilus_spp","Type 7",681,0.0875,7782.85714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Counts likely low due to blur and algae cover, which is a thin, mucus-like layer"
+"2013-12-03_YB-ABq3",2013-12-03,2013-12-03,"YB","AB","3","Myt","Mytilus_spp","Type 7",226,0.0875,2582.85714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel count may be higher due to glare. Whelk eggs throughout photo"
+"2013-12-03_YB-ABq4",2013-12-03,2013-12-03,"YB","AB","4","Myt","Mytilus_spp","Type 7",1711,0.0875,19554.2857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","35%","Algae is a thin film."
+"2013-12-03_YB-ABq1",2013-12-03,2013-12-03,"YB","AB","1","MytD","Mytilus_spp_(dead)","Type 8",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","",""
+"2013-12-03_YB-ABq2",2013-12-03,2013-12-03,"YB","AB","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Counts likely low due to blur and algae cover, which is a thin, mucus-like layer"
+"2013-12-03_YB-ABq3",2013-12-03,2013-12-03,"YB","AB","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel count may be higher due to glare. Whelk eggs throughout photo"
+"2013-12-03_YB-ABq4",2013-12-03,2013-12-03,"YB","AB","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","35%","Algae is a thin film."
+"2013-12-03_YB-ABq1",2013-12-03,2013-12-03,"YB","AB","1","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","",""
+"2013-12-03_YB-ABq2",2013-12-03,2013-12-03,"YB","AB","2","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Counts likely low due to blur and algae cover, which is a thin, mucus-like layer"
+"2013-12-03_YB-ABq3",2013-12-03,2013-12-03,"YB","AB","3","Mt","Mytilus_trossulus","Type 15",14,0.0875,160,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel count may be higher due to glare. Whelk eggs throughout photo"
+"2013-12-03_YB-ABq4",2013-12-03,2013-12-03,"YB","AB","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","35%","Algae is a thin film."
+"2013-12-03_YB-ABq1",2013-12-03,2013-12-03,"YB","AB","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","",""
+"2013-12-03_YB-ABq2",2013-12-03,2013-12-03,"YB","AB","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Counts likely low due to blur and algae cover, which is a thin, mucus-like layer"
+"2013-12-03_YB-ABq3",2013-12-03,2013-12-03,"YB","AB","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel count may be higher due to glare. Whelk eggs throughout photo"
+"2013-12-03_YB-ABq4",2013-12-03,2013-12-03,"YB","AB","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","35%","Algae is a thin film."
+"2013-12-03_YB-ABq1",2013-12-03,2013-12-03,"YB","AB","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","",""
+"2013-12-03_YB-ABq2",2013-12-03,2013-12-03,"YB","AB","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Counts likely low due to blur and algae cover, which is a thin, mucus-like layer"
+"2013-12-03_YB-ABq3",2013-12-03,2013-12-03,"YB","AB","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel count may be higher due to glare. Whelk eggs throughout photo"
+"2013-12-03_YB-ABq4",2013-12-03,2013-12-03,"YB","AB","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","35%","Algae is a thin film."
+"2013-12-03_YB-ABq1",2013-12-03,2013-12-03,"YB","AB","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","",""
+"2013-12-03_YB-ABq2",2013-12-03,2013-12-03,"YB","AB","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Counts likely low due to blur and algae cover, which is a thin, mucus-like layer"
+"2013-12-03_YB-ABq3",2013-12-03,2013-12-03,"YB","AB","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel count may be higher due to glare. Whelk eggs throughout photo"
+"2013-12-03_YB-ABq4",2013-12-03,2013-12-03,"YB","AB","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","35%","Algae is a thin film."
+"2013-12-03_YB-ABq1",2013-12-03,2013-12-03,"YB","AB","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","",""
+"2013-12-03_YB-ABq2",2013-12-03,2013-12-03,"YB","AB","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Counts likely low due to blur and algae cover, which is a thin, mucus-like layer"
+"2013-12-03_YB-ABq3",2013-12-03,2013-12-03,"YB","AB","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel count may be higher due to glare. Whelk eggs throughout photo"
+"2013-12-03_YB-ABq4",2013-12-03,2013-12-03,"YB","AB","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","35%","Algae is a thin film."
+"2013-12-03_YB-ABq1",2013-12-03,2013-12-03,"YB","AB","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","",""
+"2013-12-03_YB-ABq2",2013-12-03,2013-12-03,"YB","AB","2","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Counts likely low due to blur and algae cover, which is a thin, mucus-like layer"
+"2013-12-03_YB-ABq3",2013-12-03,2013-12-03,"YB","AB","3","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel count may be higher due to glare. Whelk eggs throughout photo"
+"2013-12-03_YB-ABq4",2013-12-03,2013-12-03,"YB","AB","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","35%","Algae is a thin film."
+"2013-12-03_YB-ABq1",2013-12-03,2013-12-03,"YB","AB","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","",""
+"2013-12-03_YB-ABq2",2013-12-03,2013-12-03,"YB","AB","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Counts likely low due to blur and algae cover, which is a thin, mucus-like layer"
+"2013-12-03_YB-ABq3",2013-12-03,2013-12-03,"YB","AB","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel count may be higher due to glare. Whelk eggs throughout photo"
+"2013-12-03_YB-ABq4",2013-12-03,2013-12-03,"YB","AB","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","35%","Algae is a thin film."
+"2013-12-03_YB-ABq1",2013-12-03,2013-12-03,"YB","AB","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","",""
+"2013-12-03_YB-ABq2",2013-12-03,2013-12-03,"YB","AB","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Counts likely low due to blur and algae cover, which is a thin, mucus-like layer"
+"2013-12-03_YB-ABq3",2013-12-03,2013-12-03,"YB","AB","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel count may be higher due to glare. Whelk eggs throughout photo"
+"2013-12-03_YB-ABq4",2013-12-03,2013-12-03,"YB","AB","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","35%","Algae is a thin film."
+"2013-12-03_YB-ABq1",2013-12-03,2013-12-03,"YB","AB","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","",""
+"2013-12-03_YB-ABq2",2013-12-03,2013-12-03,"YB","AB","2","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Counts likely low due to blur and algae cover, which is a thin, mucus-like layer"
+"2013-12-03_YB-ABq3",2013-12-03,2013-12-03,"YB","AB","3","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel count may be higher due to glare. Whelk eggs throughout photo"
+"2013-12-03_YB-ABq4",2013-12-03,2013-12-03,"YB","AB","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","35%","Algae is a thin film."
+"2013-12-03_YB-ABq1",2013-12-03,2013-12-03,"YB","AB","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","",""
+"2013-12-03_YB-ABq2",2013-12-03,2013-12-03,"YB","AB","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Counts likely low due to blur and algae cover, which is a thin, mucus-like layer"
+"2013-12-03_YB-ABq3",2013-12-03,2013-12-03,"YB","AB","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel count may be higher due to glare. Whelk eggs throughout photo"
+"2013-12-03_YB-ABq4",2013-12-03,2013-12-03,"YB","AB","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","35%","Algae is a thin film."
+"2013-12-03_YB-ABq1",2013-12-03,2013-12-03,"YB","AB","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","",""
+"2013-12-03_YB-ABq2",2013-12-03,2013-12-03,"YB","AB","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Counts likely low due to blur and algae cover, which is a thin, mucus-like layer"
+"2013-12-03_YB-ABq3",2013-12-03,2013-12-03,"YB","AB","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel count may be higher due to glare. Whelk eggs throughout photo"
+"2013-12-03_YB-ABq4",2013-12-03,2013-12-03,"YB","AB","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","35%","Algae is a thin film."
+"2013-12-03_YB-ABq1",2013-12-03,2013-12-03,"YB","AB","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","",""
+"2013-12-03_YB-ABq2",2013-12-03,2013-12-03,"YB","AB","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Counts likely low due to blur and algae cover, which is a thin, mucus-like layer"
+"2013-12-03_YB-ABq3",2013-12-03,2013-12-03,"YB","AB","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Mussel count may be higher due to glare. Whelk eggs throughout photo"
+"2013-12-03_YB-ABq4",2013-12-03,2013-12-03,"YB","AB","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","35%","Algae is a thin film."
+"2013-12-03_YB-ACq1",2013-12-03,2013-12-03,"YB","AC","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2013-12-03_YB-ACq4",2013-12-03,2013-12-03,"YB","AC","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Barnacle Counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-12-03_YB-ACq7",2013-12-03,2013-12-03,"YB","AC","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts may be low due to algae cover, which is a thin, filmy layer."
+"2013-12-03_YB-ACq8",2013-12-03,2013-12-03,"YB","AC","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Barnacle counts may be low due to algae cover, which is a thin, filmy layer."
+"2013-12-03_YB-ACq1",2013-12-03,2013-12-03,"YB","AC","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2013-12-03_YB-ACq4",2013-12-03,2013-12-03,"YB","AC","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Barnacle Counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-12-03_YB-ACq7",2013-12-03,2013-12-03,"YB","AC","7","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts may be low due to algae cover, which is a thin, filmy layer."
+"2013-12-03_YB-ACq8",2013-12-03,2013-12-03,"YB","AC","8","Ae","Anemones","Type 14",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Barnacle counts may be low due to algae cover, which is a thin, filmy layer."
+"2013-12-03_YB-ACq1",2013-12-03,2013-12-03,"YB","AC","1","Bg","Balanus_glandula","Type 1",1115,0.015625,71360,"c","Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2013-12-03_YB-ACq4",2013-12-03,2013-12-03,"YB","AC","4","Bg","Balanus_glandula","Type 1",1060,0.015625,67840,"c","Beatriz Vaca","Finished","Full","Cropped","30%","Barnacle Counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-12-03_YB-ACq7",2013-12-03,2013-12-03,"YB","AC","7","Bg","Balanus_glandula","Type 1",981,0.015625,62784,"c","Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts may be low due to algae cover, which is a thin, filmy layer."
+"2013-12-03_YB-ACq8",2013-12-03,2013-12-03,"YB","AC","8","Bg","Balanus_glandula","Type 1",793,0.015625,50752,"c","Beatriz Vaca","Finished","Full","Cropped","65%","Barnacle counts may be low due to algae cover, which is a thin, filmy layer."
+"2013-12-03_YB-ACq1",2013-12-03,2013-12-03,"YB","AC","1","BgD","Balanus_glandula_(dead)","Type 2",94,0.015625,6016,"c","Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2013-12-03_YB-ACq4",2013-12-03,2013-12-03,"YB","AC","4","BgD","Balanus_glandula_(dead)","Type 2",4,0.015625,256,"c","Beatriz Vaca","Finished","Full","Cropped","30%","Barnacle Counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-12-03_YB-ACq7",2013-12-03,2013-12-03,"YB","AC","7","BgD","Balanus_glandula_(dead)","Type 2",13,0.015625,832,"c","Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts may be low due to algae cover, which is a thin, filmy layer."
+"2013-12-03_YB-ACq8",2013-12-03,2013-12-03,"YB","AC","8","BgD","Balanus_glandula_(dead)","Type 2",4,0.015625,256,"c","Beatriz Vaca","Finished","Full","Cropped","65%","Barnacle counts may be low due to algae cover, which is a thin, filmy layer."
+"2013-12-03_YB-ACq1",2013-12-03,2013-12-03,"YB","AC","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2013-12-03_YB-ACq4",2013-12-03,2013-12-03,"YB","AC","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Barnacle Counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-12-03_YB-ACq7",2013-12-03,2013-12-03,"YB","AC","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts may be low due to algae cover, which is a thin, filmy layer."
+"2013-12-03_YB-ACq8",2013-12-03,2013-12-03,"YB","AC","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Barnacle counts may be low due to algae cover, which is a thin, filmy layer."
+"2013-12-03_YB-ACq1",2013-12-03,2013-12-03,"YB","AC","1","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2013-12-03_YB-ACq4",2013-12-03,2013-12-03,"YB","AC","4","Cth","Chthamalus_dalli","Type 3",12,0.015625,768,"c","Beatriz Vaca","Finished","Full","Cropped","30%","Barnacle Counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-12-03_YB-ACq7",2013-12-03,2013-12-03,"YB","AC","7","Cth","Chthamalus_dalli","Type 3",50,0.015625,3200,"c","Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts may be low due to algae cover, which is a thin, filmy layer."
+"2013-12-03_YB-ACq8",2013-12-03,2013-12-03,"YB","AC","8","Cth","Chthamalus_dalli","Type 3",11,0.015625,704,"c","Beatriz Vaca","Finished","Full","Cropped","65%","Barnacle counts may be low due to algae cover, which is a thin, filmy layer."
+"2013-12-03_YB-ACq1",2013-12-03,2013-12-03,"YB","AC","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2013-12-03_YB-ACq4",2013-12-03,2013-12-03,"YB","AC","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","30%","Barnacle Counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-12-03_YB-ACq7",2013-12-03,2013-12-03,"YB","AC","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts may be low due to algae cover, which is a thin, filmy layer."
+"2013-12-03_YB-ACq8",2013-12-03,2013-12-03,"YB","AC","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","65%","Barnacle counts may be low due to algae cover, which is a thin, filmy layer."
+"2013-12-03_YB-ACq1",2013-12-03,2013-12-03,"YB","AC","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2013-12-03_YB-ACq4",2013-12-03,2013-12-03,"YB","AC","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Barnacle Counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-12-03_YB-ACq7",2013-12-03,2013-12-03,"YB","AC","7","Emp","Emplectonema worm","Type 23",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts may be low due to algae cover, which is a thin, filmy layer."
+"2013-12-03_YB-ACq8",2013-12-03,2013-12-03,"YB","AC","8","Emp","Emplectonema worm","Type 23",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Barnacle counts may be low due to algae cover, which is a thin, filmy layer."
+"2013-12-03_YB-ACq1",2013-12-03,2013-12-03,"YB","AC","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2013-12-03_YB-ACq4",2013-12-03,2013-12-03,"YB","AC","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Barnacle Counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-12-03_YB-ACq7",2013-12-03,2013-12-03,"YB","AC","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts may be low due to algae cover, which is a thin, filmy layer."
+"2013-12-03_YB-ACq8",2013-12-03,2013-12-03,"YB","AC","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Barnacle counts may be low due to algae cover, which is a thin, filmy layer."
+"2013-12-03_YB-ACq1",2013-12-03,2013-12-03,"YB","AC","1","Lim","Limpets","Type 12",19,0.0875,217.142857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2013-12-03_YB-ACq4",2013-12-03,2013-12-03,"YB","AC","4","Lim","Limpets","Type 12",18,0.0875,205.714285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Barnacle Counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-12-03_YB-ACq7",2013-12-03,2013-12-03,"YB","AC","7","Lim","Limpets","Type 12",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts may be low due to algae cover, which is a thin, filmy layer."
+"2013-12-03_YB-ACq8",2013-12-03,2013-12-03,"YB","AC","8","Lim","Limpets","Type 12",75,0.0875,857.142857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Barnacle counts may be low due to algae cover, which is a thin, filmy layer."
+"2013-12-03_YB-ACq1",2013-12-03,2013-12-03,"YB","AC","1","Ls","Littorina_sitkana","Type 13",10,0.0875,114.285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2013-12-03_YB-ACq4",2013-12-03,2013-12-03,"YB","AC","4","Ls","Littorina_sitkana","Type 13",25,0.0875,285.714285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Barnacle Counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-12-03_YB-ACq7",2013-12-03,2013-12-03,"YB","AC","7","Ls","Littorina_sitkana","Type 13",378,0.0875,4320,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts may be low due to algae cover, which is a thin, filmy layer."
+"2013-12-03_YB-ACq8",2013-12-03,2013-12-03,"YB","AC","8","Ls","Littorina_sitkana","Type 13",330,0.0875,3771.42857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Barnacle counts may be low due to algae cover, which is a thin, filmy layer."
+"2013-12-03_YB-ACq1",2013-12-03,2013-12-03,"YB","AC","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2013-12-03_YB-ACq4",2013-12-03,2013-12-03,"YB","AC","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Barnacle Counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-12-03_YB-ACq7",2013-12-03,2013-12-03,"YB","AC","7","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts may be low due to algae cover, which is a thin, filmy layer."
+"2013-12-03_YB-ACq8",2013-12-03,2013-12-03,"YB","AC","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Barnacle counts may be low due to algae cover, which is a thin, filmy layer."
+"2013-12-03_YB-ACq1",2013-12-03,2013-12-03,"YB","AC","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2013-12-03_YB-ACq4",2013-12-03,2013-12-03,"YB","AC","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Barnacle Counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-12-03_YB-ACq7",2013-12-03,2013-12-03,"YB","AC","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts may be low due to algae cover, which is a thin, filmy layer."
+"2013-12-03_YB-ACq8",2013-12-03,2013-12-03,"YB","AC","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Barnacle counts may be low due to algae cover, which is a thin, filmy layer."
+"2013-12-03_YB-ACq1",2013-12-03,2013-12-03,"YB","AC","1","Myt","Mytilus_spp","Type 7",107,0.0875,1222.85714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2013-12-03_YB-ACq4",2013-12-03,2013-12-03,"YB","AC","4","Myt","Mytilus_spp","Type 7",556,0.0875,6354.28571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Barnacle Counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-12-03_YB-ACq7",2013-12-03,2013-12-03,"YB","AC","7","Myt","Mytilus_spp","Type 7",688,0.0875,7862.85714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts may be low due to algae cover, which is a thin, filmy layer."
+"2013-12-03_YB-ACq8",2013-12-03,2013-12-03,"YB","AC","8","Myt","Mytilus_spp","Type 7",313,0.0875,3577.14285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Barnacle counts may be low due to algae cover, which is a thin, filmy layer."
+"2013-12-03_YB-ACq1",2013-12-03,2013-12-03,"YB","AC","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2013-12-03_YB-ACq4",2013-12-03,2013-12-03,"YB","AC","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Barnacle Counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-12-03_YB-ACq7",2013-12-03,2013-12-03,"YB","AC","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts may be low due to algae cover, which is a thin, filmy layer."
+"2013-12-03_YB-ACq8",2013-12-03,2013-12-03,"YB","AC","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Barnacle counts may be low due to algae cover, which is a thin, filmy layer."
+"2013-12-03_YB-ACq1",2013-12-03,2013-12-03,"YB","AC","1","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2013-12-03_YB-ACq4",2013-12-03,2013-12-03,"YB","AC","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Barnacle Counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-12-03_YB-ACq7",2013-12-03,2013-12-03,"YB","AC","7","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts may be low due to algae cover, which is a thin, filmy layer."
+"2013-12-03_YB-ACq8",2013-12-03,2013-12-03,"YB","AC","8","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Barnacle counts may be low due to algae cover, which is a thin, filmy layer."
+"2013-12-03_YB-ACq1",2013-12-03,2013-12-03,"YB","AC","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2013-12-03_YB-ACq4",2013-12-03,2013-12-03,"YB","AC","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Barnacle Counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-12-03_YB-ACq7",2013-12-03,2013-12-03,"YB","AC","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts may be low due to algae cover, which is a thin, filmy layer."
+"2013-12-03_YB-ACq8",2013-12-03,2013-12-03,"YB","AC","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Barnacle counts may be low due to algae cover, which is a thin, filmy layer."
+"2013-12-03_YB-ACq1",2013-12-03,2013-12-03,"YB","AC","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2013-12-03_YB-ACq4",2013-12-03,2013-12-03,"YB","AC","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Barnacle Counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-12-03_YB-ACq7",2013-12-03,2013-12-03,"YB","AC","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts may be low due to algae cover, which is a thin, filmy layer."
+"2013-12-03_YB-ACq8",2013-12-03,2013-12-03,"YB","AC","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Barnacle counts may be low due to algae cover, which is a thin, filmy layer."
+"2013-12-03_YB-ACq1",2013-12-03,2013-12-03,"YB","AC","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2013-12-03_YB-ACq4",2013-12-03,2013-12-03,"YB","AC","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Barnacle Counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-12-03_YB-ACq7",2013-12-03,2013-12-03,"YB","AC","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts may be low due to algae cover, which is a thin, filmy layer."
+"2013-12-03_YB-ACq8",2013-12-03,2013-12-03,"YB","AC","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Barnacle counts may be low due to algae cover, which is a thin, filmy layer."
+"2013-12-03_YB-ACq1",2013-12-03,2013-12-03,"YB","AC","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2013-12-03_YB-ACq4",2013-12-03,2013-12-03,"YB","AC","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Barnacle Counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-12-03_YB-ACq7",2013-12-03,2013-12-03,"YB","AC","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts may be low due to algae cover, which is a thin, filmy layer."
+"2013-12-03_YB-ACq8",2013-12-03,2013-12-03,"YB","AC","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Barnacle counts may be low due to algae cover, which is a thin, filmy layer."
+"2013-12-03_YB-ACq1",2013-12-03,2013-12-03,"YB","AC","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2013-12-03_YB-ACq4",2013-12-03,2013-12-03,"YB","AC","4","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Barnacle Counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-12-03_YB-ACq7",2013-12-03,2013-12-03,"YB","AC","7","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts may be low due to algae cover, which is a thin, filmy layer."
+"2013-12-03_YB-ACq8",2013-12-03,2013-12-03,"YB","AC","8","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Barnacle counts may be low due to algae cover, which is a thin, filmy layer."
+"2013-12-03_YB-ACq1",2013-12-03,2013-12-03,"YB","AC","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2013-12-03_YB-ACq4",2013-12-03,2013-12-03,"YB","AC","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Barnacle Counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-12-03_YB-ACq7",2013-12-03,2013-12-03,"YB","AC","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts may be low due to algae cover, which is a thin, filmy layer."
+"2013-12-03_YB-ACq8",2013-12-03,2013-12-03,"YB","AC","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Barnacle counts may be low due to algae cover, which is a thin, filmy layer."
+"2013-12-03_YB-ACq1",2013-12-03,2013-12-03,"YB","AC","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2013-12-03_YB-ACq4",2013-12-03,2013-12-03,"YB","AC","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Barnacle Counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-12-03_YB-ACq7",2013-12-03,2013-12-03,"YB","AC","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts may be low due to algae cover, which is a thin, filmy layer."
+"2013-12-03_YB-ACq8",2013-12-03,2013-12-03,"YB","AC","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Barnacle counts may be low due to algae cover, which is a thin, filmy layer."
+"2013-12-03_YB-ACq1",2013-12-03,2013-12-03,"YB","AC","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2013-12-03_YB-ACq4",2013-12-03,2013-12-03,"YB","AC","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Barnacle Counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-12-03_YB-ACq7",2013-12-03,2013-12-03,"YB","AC","7","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts may be low due to algae cover, which is a thin, filmy layer."
+"2013-12-03_YB-ACq8",2013-12-03,2013-12-03,"YB","AC","8","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Barnacle counts may be low due to algae cover, which is a thin, filmy layer."
+"2013-12-03_YB-ACq1",2013-12-03,2013-12-03,"YB","AC","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2013-12-03_YB-ACq4",2013-12-03,2013-12-03,"YB","AC","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Barnacle Counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-12-03_YB-ACq7",2013-12-03,2013-12-03,"YB","AC","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts may be low due to algae cover, which is a thin, filmy layer."
+"2013-12-03_YB-ACq8",2013-12-03,2013-12-03,"YB","AC","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Barnacle counts may be low due to algae cover, which is a thin, filmy layer."
+"2013-12-03_YB-ACq1",2013-12-03,2013-12-03,"YB","AC","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2013-12-03_YB-ACq4",2013-12-03,2013-12-03,"YB","AC","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Barnacle Counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-12-03_YB-ACq7",2013-12-03,2013-12-03,"YB","AC","7","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts may be low due to algae cover, which is a thin, filmy layer."
+"2013-12-03_YB-ACq8",2013-12-03,2013-12-03,"YB","AC","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Barnacle counts may be low due to algae cover, which is a thin, filmy layer."
+"2013-12-03_YB-ACq1",2013-12-03,2013-12-03,"YB","AC","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2013-12-03_YB-ACq4",2013-12-03,2013-12-03,"YB","AC","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Barnacle Counts possibly low due to algae cover, which is a thin, mucus-like layer"
+"2013-12-03_YB-ACq7",2013-12-03,2013-12-03,"YB","AC","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Barnacle counts may be low due to algae cover, which is a thin, filmy layer."
+"2013-12-03_YB-ACq8",2013-12-03,2013-12-03,"YB","AC","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Barnacle counts may be low due to algae cover, which is a thin, filmy layer."
+"2013-12-03_YB-ADq1",2013-12-03,2013-12-03,"YB","AD","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%",""
+"2013-12-03_YB-ADq5",2013-12-03,2013-12-03,"YB","AD","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","algae is a thin, filmy layer"
+"2013-12-03_YB-ADq8",2013-12-03,2013-12-03,"YB","AD","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2013-12-03_YB-ADq1",2013-12-03,2013-12-03,"YB","AD","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%",""
+"2013-12-03_YB-ADq5",2013-12-03,2013-12-03,"YB","AD","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","algae is a thin, filmy layer"
+"2013-12-03_YB-ADq8",2013-12-03,2013-12-03,"YB","AD","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2013-12-03_YB-ADq1",2013-12-03,2013-12-03,"YB","AD","1","Bg","Balanus_glandula","Type 1",1001,0.015625,64064,"c","Beatriz Vaca","Finished","Full","Cropped","40%",""
+"2013-12-03_YB-ADq5",2013-12-03,2013-12-03,"YB","AD","5","Bg","Balanus_glandula","Type 1",1323,0.015625,84672,"c","Beatriz Vaca","Finished","Full","Cropped","30%","algae is a thin, filmy layer"
+"2013-12-03_YB-ADq8",2013-12-03,2013-12-03,"YB","AD","8","Bg","Balanus_glandula","Type 1",1271,0.015625,81344,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2013-12-03_YB-ADq1",2013-12-03,2013-12-03,"YB","AD","1","BgD","Balanus_glandula_(dead)","Type 2",5,0.015625,320,"c","Beatriz Vaca","Finished","Full","Cropped","40%",""
+"2013-12-03_YB-ADq5",2013-12-03,2013-12-03,"YB","AD","5","BgD","Balanus_glandula_(dead)","Type 2",4,0.015625,256,"c","Beatriz Vaca","Finished","Full","Cropped","30%","algae is a thin, filmy layer"
+"2013-12-03_YB-ADq8",2013-12-03,2013-12-03,"YB","AD","8","BgD","Balanus_glandula_(dead)","Type 2",2,0.015625,128,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2013-12-03_YB-ADq1",2013-12-03,2013-12-03,"YB","AD","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%",""
+"2013-12-03_YB-ADq5",2013-12-03,2013-12-03,"YB","AD","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","algae is a thin, filmy layer"
+"2013-12-03_YB-ADq8",2013-12-03,2013-12-03,"YB","AD","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2013-12-03_YB-ADq1",2013-12-03,2013-12-03,"YB","AD","1","Cth","Chthamalus_dalli","Type 3",3,0.015625,192,"c","Beatriz Vaca","Finished","Full","Cropped","40%",""
+"2013-12-03_YB-ADq5",2013-12-03,2013-12-03,"YB","AD","5","Cth","Chthamalus_dalli","Type 3",2,0.015625,128,"c","Beatriz Vaca","Finished","Full","Cropped","30%","algae is a thin, filmy layer"
+"2013-12-03_YB-ADq8",2013-12-03,2013-12-03,"YB","AD","8","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2013-12-03_YB-ADq1",2013-12-03,2013-12-03,"YB","AD","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","40%",""
+"2013-12-03_YB-ADq5",2013-12-03,2013-12-03,"YB","AD","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","30%","algae is a thin, filmy layer"
+"2013-12-03_YB-ADq8",2013-12-03,2013-12-03,"YB","AD","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2013-12-03_YB-ADq1",2013-12-03,2013-12-03,"YB","AD","1","Emp","Emplectonema worm","Type 23",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","40%",""
+"2013-12-03_YB-ADq5",2013-12-03,2013-12-03,"YB","AD","5","Emp","Emplectonema worm","Type 23",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","algae is a thin, filmy layer"
+"2013-12-03_YB-ADq8",2013-12-03,2013-12-03,"YB","AD","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2013-12-03_YB-ADq1",2013-12-03,2013-12-03,"YB","AD","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%",""
+"2013-12-03_YB-ADq5",2013-12-03,2013-12-03,"YB","AD","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","algae is a thin, filmy layer"
+"2013-12-03_YB-ADq8",2013-12-03,2013-12-03,"YB","AD","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2013-12-03_YB-ADq1",2013-12-03,2013-12-03,"YB","AD","1","Lim","Limpets","Type 12",14,0.0875,160,NA,"Beatriz Vaca","Finished","Full","Cropped","40%",""
+"2013-12-03_YB-ADq5",2013-12-03,2013-12-03,"YB","AD","5","Lim","Limpets","Type 12",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","algae is a thin, filmy layer"
+"2013-12-03_YB-ADq8",2013-12-03,2013-12-03,"YB","AD","8","Lim","Limpets","Type 12",302,0.0875,3451.42857142857,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2013-12-03_YB-ADq1",2013-12-03,2013-12-03,"YB","AD","1","Ls","Littorina_sitkana","Type 13",126,0.0875,1440,NA,"Beatriz Vaca","Finished","Full","Cropped","40%",""
+"2013-12-03_YB-ADq5",2013-12-03,2013-12-03,"YB","AD","5","Ls","Littorina_sitkana","Type 13",264,0.0875,3017.14285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","algae is a thin, filmy layer"
+"2013-12-03_YB-ADq8",2013-12-03,2013-12-03,"YB","AD","8","Ls","Littorina_sitkana","Type 13",283,0.0875,3234.28571428571,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2013-12-03_YB-ADq1",2013-12-03,2013-12-03,"YB","AD","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%",""
+"2013-12-03_YB-ADq5",2013-12-03,2013-12-03,"YB","AD","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","algae is a thin, filmy layer"
+"2013-12-03_YB-ADq8",2013-12-03,2013-12-03,"YB","AD","8","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2013-12-03_YB-ADq1",2013-12-03,2013-12-03,"YB","AD","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%",""
+"2013-12-03_YB-ADq5",2013-12-03,2013-12-03,"YB","AD","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","algae is a thin, filmy layer"
+"2013-12-03_YB-ADq8",2013-12-03,2013-12-03,"YB","AD","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2013-12-03_YB-ADq1",2013-12-03,2013-12-03,"YB","AD","1","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%",""
+"2013-12-03_YB-ADq5",2013-12-03,2013-12-03,"YB","AD","5","Myt","Mytilus_spp","Type 7",681,0.0875,7782.85714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","algae is a thin, filmy layer"
+"2013-12-03_YB-ADq8",2013-12-03,2013-12-03,"YB","AD","8","Myt","Mytilus_spp","Type 7",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2013-12-03_YB-ADq1",2013-12-03,2013-12-03,"YB","AD","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%",""
+"2013-12-03_YB-ADq5",2013-12-03,2013-12-03,"YB","AD","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","algae is a thin, filmy layer"
+"2013-12-03_YB-ADq8",2013-12-03,2013-12-03,"YB","AD","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2013-12-03_YB-ADq1",2013-12-03,2013-12-03,"YB","AD","1","Mt","Mytilus_trossulus","Type 15",440,0.0875,5028.57142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","40%",""
+"2013-12-03_YB-ADq5",2013-12-03,2013-12-03,"YB","AD","5","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","algae is a thin, filmy layer"
+"2013-12-03_YB-ADq8",2013-12-03,2013-12-03,"YB","AD","8","Mt","Mytilus_trossulus","Type 15",405,0.015625,25920,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2013-12-03_YB-ADq1",2013-12-03,2013-12-03,"YB","AD","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%",""
+"2013-12-03_YB-ADq5",2013-12-03,2013-12-03,"YB","AD","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","algae is a thin, filmy layer"
+"2013-12-03_YB-ADq8",2013-12-03,2013-12-03,"YB","AD","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2013-12-03_YB-ADq1",2013-12-03,2013-12-03,"YB","AD","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%",""
+"2013-12-03_YB-ADq5",2013-12-03,2013-12-03,"YB","AD","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","algae is a thin, filmy layer"
+"2013-12-03_YB-ADq8",2013-12-03,2013-12-03,"YB","AD","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2013-12-03_YB-ADq1",2013-12-03,2013-12-03,"YB","AD","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%",""
+"2013-12-03_YB-ADq5",2013-12-03,2013-12-03,"YB","AD","5","Nc","Nucella_canaliculata","Type 10",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","algae is a thin, filmy layer"
+"2013-12-03_YB-ADq8",2013-12-03,2013-12-03,"YB","AD","8","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2013-12-03_YB-ADq1",2013-12-03,2013-12-03,"YB","AD","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%",""
+"2013-12-03_YB-ADq5",2013-12-03,2013-12-03,"YB","AD","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","algae is a thin, filmy layer"
+"2013-12-03_YB-ADq8",2013-12-03,2013-12-03,"YB","AD","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2013-12-03_YB-ADq1",2013-12-03,2013-12-03,"YB","AD","1","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","40%",""
+"2013-12-03_YB-ADq5",2013-12-03,2013-12-03,"YB","AD","5","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","algae is a thin, filmy layer"
+"2013-12-03_YB-ADq8",2013-12-03,2013-12-03,"YB","AD","8","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2013-12-03_YB-ADq1",2013-12-03,2013-12-03,"YB","AD","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%",""
+"2013-12-03_YB-ADq5",2013-12-03,2013-12-03,"YB","AD","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","algae is a thin, filmy layer"
+"2013-12-03_YB-ADq8",2013-12-03,2013-12-03,"YB","AD","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2013-12-03_YB-ADq1",2013-12-03,2013-12-03,"YB","AD","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%",""
+"2013-12-03_YB-ADq5",2013-12-03,2013-12-03,"YB","AD","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","algae is a thin, filmy layer"
+"2013-12-03_YB-ADq8",2013-12-03,2013-12-03,"YB","AD","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2013-12-03_YB-ADq1",2013-12-03,2013-12-03,"YB","AD","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%",""
+"2013-12-03_YB-ADq5",2013-12-03,2013-12-03,"YB","AD","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","algae is a thin, filmy layer"
+"2013-12-03_YB-ADq8",2013-12-03,2013-12-03,"YB","AD","8","Pp","Pollicipes_polymerus","Type 11",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2013-12-03_YB-ADq1",2013-12-03,2013-12-03,"YB","AD","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%",""
+"2013-12-03_YB-ADq5",2013-12-03,2013-12-03,"YB","AD","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","algae is a thin, filmy layer"
+"2013-12-03_YB-ADq8",2013-12-03,2013-12-03,"YB","AD","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2013-12-03_YB-ADq1",2013-12-03,2013-12-03,"YB","AD","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%",""
+"2013-12-03_YB-ADq5",2013-12-03,2013-12-03,"YB","AD","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","algae is a thin, filmy layer"
+"2013-12-03_YB-ADq8",2013-12-03,2013-12-03,"YB","AD","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2013-12-03_YB-ADq1",2013-12-03,2013-12-03,"YB","AD","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%",""
+"2013-12-03_YB-ADq5",2013-12-03,2013-12-03,"YB","AD","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","algae is a thin, filmy layer"
+"2013-12-03_YB-ADq8",2013-12-03,2013-12-03,"YB","AD","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2013-12-03_YB-AEq1",2013-12-03,2013-12-03,"YB","AE","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","35%","algae is a thin, filmy layer"
+"2013-12-03_YB-AEq4",2013-12-03,2013-12-03,"YB","AE","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-AEq8",2013-12-03,2013-12-03,"YB","AE","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-AEq1",2013-12-03,2013-12-03,"YB","AE","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","35%","algae is a thin, filmy layer"
+"2013-12-03_YB-AEq4",2013-12-03,2013-12-03,"YB","AE","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-AEq8",2013-12-03,2013-12-03,"YB","AE","8","Ae","Anemones","Type 14",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-AEq1",2013-12-03,2013-12-03,"YB","AE","1","Bg","Balanus_glandula","Type 1",1101,0.015625,70464,"c","Beatriz Vaca","Finished","Full","Cropped","35%","algae is a thin, filmy layer"
+"2013-12-03_YB-AEq4",2013-12-03,2013-12-03,"YB","AE","4","Bg","Balanus_glandula","Type 1",1729,0.015625,110656,"c","Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-AEq8",2013-12-03,2013-12-03,"YB","AE","8","Bg","Balanus_glandula","Type 1",1858,0.015625,118912,"c","Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-AEq1",2013-12-03,2013-12-03,"YB","AE","1","BgD","Balanus_glandula_(dead)","Type 2",5,0.015625,320,"c","Beatriz Vaca","Finished","Full","Cropped","35%","algae is a thin, filmy layer"
+"2013-12-03_YB-AEq4",2013-12-03,2013-12-03,"YB","AE","4","BgD","Balanus_glandula_(dead)","Type 2",15,0.015625,960,"c","Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-AEq8",2013-12-03,2013-12-03,"YB","AE","8","BgD","Balanus_glandula_(dead)","Type 2",2,0.015625,128,"c","Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-AEq1",2013-12-03,2013-12-03,"YB","AE","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","35%","algae is a thin, filmy layer"
+"2013-12-03_YB-AEq4",2013-12-03,2013-12-03,"YB","AE","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-AEq8",2013-12-03,2013-12-03,"YB","AE","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-AEq1",2013-12-03,2013-12-03,"YB","AE","1","Cth","Chthamalus_dalli","Type 3",21,0.015625,1344,"c","Beatriz Vaca","Finished","Full","Cropped","35%","algae is a thin, filmy layer"
+"2013-12-03_YB-AEq4",2013-12-03,2013-12-03,"YB","AE","4","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-AEq8",2013-12-03,2013-12-03,"YB","AE","8","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-AEq1",2013-12-03,2013-12-03,"YB","AE","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","35%","algae is a thin, filmy layer"
+"2013-12-03_YB-AEq4",2013-12-03,2013-12-03,"YB","AE","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-AEq8",2013-12-03,2013-12-03,"YB","AE","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-AEq1",2013-12-03,2013-12-03,"YB","AE","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","35%","algae is a thin, filmy layer"
+"2013-12-03_YB-AEq4",2013-12-03,2013-12-03,"YB","AE","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-AEq8",2013-12-03,2013-12-03,"YB","AE","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-AEq1",2013-12-03,2013-12-03,"YB","AE","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","35%","algae is a thin, filmy layer"
+"2013-12-03_YB-AEq4",2013-12-03,2013-12-03,"YB","AE","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-AEq8",2013-12-03,2013-12-03,"YB","AE","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-AEq1",2013-12-03,2013-12-03,"YB","AE","1","Lim","Limpets","Type 12",11,0.0875,125.714285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","35%","algae is a thin, filmy layer"
+"2013-12-03_YB-AEq4",2013-12-03,2013-12-03,"YB","AE","4","Lim","Limpets","Type 12",240,0.0875,2742.85714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-AEq8",2013-12-03,2013-12-03,"YB","AE","8","Lim","Limpets","Type 12",145,0.0875,1657.14285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-AEq1",2013-12-03,2013-12-03,"YB","AE","1","Ls","Littorina_sitkana","Type 13",294,0.0875,3360,NA,"Beatriz Vaca","Finished","Full","Cropped","35%","algae is a thin, filmy layer"
+"2013-12-03_YB-AEq4",2013-12-03,2013-12-03,"YB","AE","4","Ls","Littorina_sitkana","Type 13",232,0.0875,2651.42857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-AEq8",2013-12-03,2013-12-03,"YB","AE","8","Ls","Littorina_sitkana","Type 13",227,0.0875,2594.28571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-AEq1",2013-12-03,2013-12-03,"YB","AE","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","35%","algae is a thin, filmy layer"
+"2013-12-03_YB-AEq4",2013-12-03,2013-12-03,"YB","AE","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-AEq8",2013-12-03,2013-12-03,"YB","AE","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-AEq1",2013-12-03,2013-12-03,"YB","AE","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","35%","algae is a thin, filmy layer"
+"2013-12-03_YB-AEq4",2013-12-03,2013-12-03,"YB","AE","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-AEq8",2013-12-03,2013-12-03,"YB","AE","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-AEq1",2013-12-03,2013-12-03,"YB","AE","1","Myt","Mytilus_spp","Type 7",246,0.0875,2811.42857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","35%","algae is a thin, filmy layer"
+"2013-12-03_YB-AEq4",2013-12-03,2013-12-03,"YB","AE","4","Myt","Mytilus_spp","Type 7",241,0.0875,2754.28571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-AEq8",2013-12-03,2013-12-03,"YB","AE","8","Myt","Mytilus_spp","Type 7",1134,0.0875,12960,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-AEq1",2013-12-03,2013-12-03,"YB","AE","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","35%","algae is a thin, filmy layer"
+"2013-12-03_YB-AEq4",2013-12-03,2013-12-03,"YB","AE","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-AEq8",2013-12-03,2013-12-03,"YB","AE","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-AEq1",2013-12-03,2013-12-03,"YB","AE","1","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","35%","algae is a thin, filmy layer"
+"2013-12-03_YB-AEq4",2013-12-03,2013-12-03,"YB","AE","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-AEq8",2013-12-03,2013-12-03,"YB","AE","8","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-AEq1",2013-12-03,2013-12-03,"YB","AE","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","35%","algae is a thin, filmy layer"
+"2013-12-03_YB-AEq4",2013-12-03,2013-12-03,"YB","AE","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-AEq8",2013-12-03,2013-12-03,"YB","AE","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-AEq1",2013-12-03,2013-12-03,"YB","AE","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","35%","algae is a thin, filmy layer"
+"2013-12-03_YB-AEq4",2013-12-03,2013-12-03,"YB","AE","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-AEq8",2013-12-03,2013-12-03,"YB","AE","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-AEq1",2013-12-03,2013-12-03,"YB","AE","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","35%","algae is a thin, filmy layer"
+"2013-12-03_YB-AEq4",2013-12-03,2013-12-03,"YB","AE","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-AEq8",2013-12-03,2013-12-03,"YB","AE","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-AEq1",2013-12-03,2013-12-03,"YB","AE","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","35%","algae is a thin, filmy layer"
+"2013-12-03_YB-AEq4",2013-12-03,2013-12-03,"YB","AE","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-AEq8",2013-12-03,2013-12-03,"YB","AE","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-AEq1",2013-12-03,2013-12-03,"YB","AE","1","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","35%","algae is a thin, filmy layer"
+"2013-12-03_YB-AEq4",2013-12-03,2013-12-03,"YB","AE","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-AEq8",2013-12-03,2013-12-03,"YB","AE","8","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-AEq1",2013-12-03,2013-12-03,"YB","AE","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","35%","algae is a thin, filmy layer"
+"2013-12-03_YB-AEq4",2013-12-03,2013-12-03,"YB","AE","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-AEq8",2013-12-03,2013-12-03,"YB","AE","8","Wor","Other_worm spp.","Type 25",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-AEq1",2013-12-03,2013-12-03,"YB","AE","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","35%","algae is a thin, filmy layer"
+"2013-12-03_YB-AEq4",2013-12-03,2013-12-03,"YB","AE","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-AEq8",2013-12-03,2013-12-03,"YB","AE","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-AEq1",2013-12-03,2013-12-03,"YB","AE","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","35%","algae is a thin, filmy layer"
+"2013-12-03_YB-AEq4",2013-12-03,2013-12-03,"YB","AE","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-AEq8",2013-12-03,2013-12-03,"YB","AE","8","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-AEq1",2013-12-03,2013-12-03,"YB","AE","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","35%","algae is a thin, filmy layer"
+"2013-12-03_YB-AEq4",2013-12-03,2013-12-03,"YB","AE","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-AEq8",2013-12-03,2013-12-03,"YB","AE","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-AEq1",2013-12-03,2013-12-03,"YB","AE","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","35%","algae is a thin, filmy layer"
+"2013-12-03_YB-AEq4",2013-12-03,2013-12-03,"YB","AE","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-AEq8",2013-12-03,2013-12-03,"YB","AE","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-AEq1",2013-12-03,2013-12-03,"YB","AE","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","35%","algae is a thin, filmy layer"
+"2013-12-03_YB-AEq4",2013-12-03,2013-12-03,"YB","AE","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-AEq8",2013-12-03,2013-12-03,"YB","AE","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-AFq5",2013-12-03,2013-12-03,"YB","AF","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2013-12-03_YB-AFq8",2013-12-03,2013-12-03,"YB","AF","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-AFq9",2013-12-03,2013-12-03,"YB","AF","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-12-03_YB-AFq5",2013-12-03,2013-12-03,"YB","AF","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2013-12-03_YB-AFq8",2013-12-03,2013-12-03,"YB","AF","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-AFq9",2013-12-03,2013-12-03,"YB","AF","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-12-03_YB-AFq5",2013-12-03,2013-12-03,"YB","AF","5","Bg","Balanus_glandula","Type 1",1318,0.015625,84352,"c","Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2013-12-03_YB-AFq8",2013-12-03,2013-12-03,"YB","AF","8","Bg","Balanus_glandula","Type 1",714,0.015625,45696,"c","Celeste Moen","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-AFq9",2013-12-03,2013-12-03,"YB","AF","9","Bg","Balanus_glandula","Type 1",464,0.015625,29696,"c","Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-12-03_YB-AFq5",2013-12-03,2013-12-03,"YB","AF","5","BgD","Balanus_glandula_(dead)","Type 2",5,0.015625,320,"c","Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2013-12-03_YB-AFq8",2013-12-03,2013-12-03,"YB","AF","8","BgD","Balanus_glandula_(dead)","Type 2",17,0.015625,1088,"c","Celeste Moen","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-AFq9",2013-12-03,2013-12-03,"YB","AF","9","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-12-03_YB-AFq5",2013-12-03,2013-12-03,"YB","AF","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2013-12-03_YB-AFq8",2013-12-03,2013-12-03,"YB","AF","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-AFq9",2013-12-03,2013-12-03,"YB","AF","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-12-03_YB-AFq5",2013-12-03,2013-12-03,"YB","AF","5","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2013-12-03_YB-AFq8",2013-12-03,2013-12-03,"YB","AF","8","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Celeste Moen","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-AFq9",2013-12-03,2013-12-03,"YB","AF","9","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-12-03_YB-AFq5",2013-12-03,2013-12-03,"YB","AF","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2013-12-03_YB-AFq8",2013-12-03,2013-12-03,"YB","AF","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Celeste Moen","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-AFq9",2013-12-03,2013-12-03,"YB","AF","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-12-03_YB-AFq5",2013-12-03,2013-12-03,"YB","AF","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2013-12-03_YB-AFq8",2013-12-03,2013-12-03,"YB","AF","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-AFq9",2013-12-03,2013-12-03,"YB","AF","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-12-03_YB-AFq5",2013-12-03,2013-12-03,"YB","AF","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2013-12-03_YB-AFq8",2013-12-03,2013-12-03,"YB","AF","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-AFq9",2013-12-03,2013-12-03,"YB","AF","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-12-03_YB-AFq5",2013-12-03,2013-12-03,"YB","AF","5","Lim","Limpets","Type 12",51,0.0875,582.857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2013-12-03_YB-AFq8",2013-12-03,2013-12-03,"YB","AF","8","Lim","Limpets","Type 12",38,0.0875,434.285714285714,NA,"Celeste Moen","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-AFq9",2013-12-03,2013-12-03,"YB","AF","9","Lim","Limpets","Type 12",10,0.0875,114.285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-12-03_YB-AFq5",2013-12-03,2013-12-03,"YB","AF","5","Ls","Littorina_sitkana","Type 13",241,0.0875,2754.28571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2013-12-03_YB-AFq8",2013-12-03,2013-12-03,"YB","AF","8","Ls","Littorina_sitkana","Type 13",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-AFq9",2013-12-03,2013-12-03,"YB","AF","9","Ls","Littorina_sitkana","Type 13",107,0.0875,1222.85714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-12-03_YB-AFq5",2013-12-03,2013-12-03,"YB","AF","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2013-12-03_YB-AFq8",2013-12-03,2013-12-03,"YB","AF","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-AFq9",2013-12-03,2013-12-03,"YB","AF","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-12-03_YB-AFq5",2013-12-03,2013-12-03,"YB","AF","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2013-12-03_YB-AFq8",2013-12-03,2013-12-03,"YB","AF","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-AFq9",2013-12-03,2013-12-03,"YB","AF","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-12-03_YB-AFq5",2013-12-03,2013-12-03,"YB","AF","5","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2013-12-03_YB-AFq8",2013-12-03,2013-12-03,"YB","AF","8","Myt","Mytilus_spp","Type 7",688,0.0875,7862.85714285714,NA,"Celeste Moen","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-AFq9",2013-12-03,2013-12-03,"YB","AF","9","Myt","Mytilus_spp","Type 7",807,0.0875,9222.85714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-12-03_YB-AFq5",2013-12-03,2013-12-03,"YB","AF","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2013-12-03_YB-AFq8",2013-12-03,2013-12-03,"YB","AF","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-AFq9",2013-12-03,2013-12-03,"YB","AF","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-12-03_YB-AFq5",2013-12-03,2013-12-03,"YB","AF","5","Mt","Mytilus_trossulus","Type 15",847,0.0875,9680,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2013-12-03_YB-AFq8",2013-12-03,2013-12-03,"YB","AF","8","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-AFq9",2013-12-03,2013-12-03,"YB","AF","9","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-12-03_YB-AFq5",2013-12-03,2013-12-03,"YB","AF","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2013-12-03_YB-AFq8",2013-12-03,2013-12-03,"YB","AF","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-AFq9",2013-12-03,2013-12-03,"YB","AF","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-12-03_YB-AFq5",2013-12-03,2013-12-03,"YB","AF","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2013-12-03_YB-AFq8",2013-12-03,2013-12-03,"YB","AF","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-AFq9",2013-12-03,2013-12-03,"YB","AF","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-12-03_YB-AFq5",2013-12-03,2013-12-03,"YB","AF","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2013-12-03_YB-AFq8",2013-12-03,2013-12-03,"YB","AF","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-AFq9",2013-12-03,2013-12-03,"YB","AF","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-12-03_YB-AFq5",2013-12-03,2013-12-03,"YB","AF","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2013-12-03_YB-AFq8",2013-12-03,2013-12-03,"YB","AF","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-AFq9",2013-12-03,2013-12-03,"YB","AF","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-12-03_YB-AFq5",2013-12-03,2013-12-03,"YB","AF","5","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2013-12-03_YB-AFq8",2013-12-03,2013-12-03,"YB","AF","8","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-AFq9",2013-12-03,2013-12-03,"YB","AF","9","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-12-03_YB-AFq5",2013-12-03,2013-12-03,"YB","AF","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2013-12-03_YB-AFq8",2013-12-03,2013-12-03,"YB","AF","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-AFq9",2013-12-03,2013-12-03,"YB","AF","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-12-03_YB-AFq5",2013-12-03,2013-12-03,"YB","AF","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2013-12-03_YB-AFq8",2013-12-03,2013-12-03,"YB","AF","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-AFq9",2013-12-03,2013-12-03,"YB","AF","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-12-03_YB-AFq5",2013-12-03,2013-12-03,"YB","AF","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2013-12-03_YB-AFq8",2013-12-03,2013-12-03,"YB","AF","8","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-AFq9",2013-12-03,2013-12-03,"YB","AF","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-12-03_YB-AFq5",2013-12-03,2013-12-03,"YB","AF","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2013-12-03_YB-AFq8",2013-12-03,2013-12-03,"YB","AF","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-AFq9",2013-12-03,2013-12-03,"YB","AF","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-12-03_YB-AFq5",2013-12-03,2013-12-03,"YB","AF","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2013-12-03_YB-AFq8",2013-12-03,2013-12-03,"YB","AF","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-AFq9",2013-12-03,2013-12-03,"YB","AF","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-12-03_YB-AFq5",2013-12-03,2013-12-03,"YB","AF","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2013-12-03_YB-AFq8",2013-12-03,2013-12-03,"YB","AF","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-AFq9",2013-12-03,2013-12-03,"YB","AF","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2013-12-03_YB-AGq1",2013-12-03,2013-12-03,"YB","AG","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-12-03_YB-AGq2",2013-12-03,2013-12-03,"YB","AG","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Mussels, limpet, and littorine densities likely higher but shadows and glare made counting difficult"
+"2013-12-03_YB-AGq3",2013-12-03,2013-12-03,"YB","AG","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","2%",""
+"2013-12-03_YB-AGq7",2013-12-03,2013-12-03,"YB","AG","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2013-12-03_YB-AGq9",2013-12-03,2013-12-03,"YB","AG","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2013-12-03_YB-AGq1",2013-12-03,2013-12-03,"YB","AG","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-12-03_YB-AGq2",2013-12-03,2013-12-03,"YB","AG","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Mussels, limpet, and littorine densities likely higher but shadows and glare made counting difficult"
+"2013-12-03_YB-AGq3",2013-12-03,2013-12-03,"YB","AG","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","2%",""
+"2013-12-03_YB-AGq7",2013-12-03,2013-12-03,"YB","AG","7","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2013-12-03_YB-AGq9",2013-12-03,2013-12-03,"YB","AG","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2013-12-03_YB-AGq1",2013-12-03,2013-12-03,"YB","AG","1","Bg","Balanus_glandula","Type 1",708,0.015625,45312,"c","Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-12-03_YB-AGq2",2013-12-03,2013-12-03,"YB","AG","2","Bg","Balanus_glandula","Type 1",808,0.015625,51712,"c","Isaac Shepard","Finished","Full","Cropped","0%","Mussels, limpet, and littorine densities likely higher but shadows and glare made counting difficult"
+"2013-12-03_YB-AGq3",2013-12-03,2013-12-03,"YB","AG","3","Bg","Balanus_glandula","Type 1",908,0.015625,58112,"c","Isaac Shepard","Finished","Full","Cropped","2%",""
+"2013-12-03_YB-AGq7",2013-12-03,2013-12-03,"YB","AG","7","Bg","Balanus_glandula","Type 1",1060,0.015625,67840,"c","Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2013-12-03_YB-AGq9",2013-12-03,2013-12-03,"YB","AG","9","Bg","Balanus_glandula","Type 1",1081,0.015625,69184,"c","Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2013-12-03_YB-AGq1",2013-12-03,2013-12-03,"YB","AG","1","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-12-03_YB-AGq2",2013-12-03,2013-12-03,"YB","AG","2","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","0%","Mussels, limpet, and littorine densities likely higher but shadows and glare made counting difficult"
+"2013-12-03_YB-AGq3",2013-12-03,2013-12-03,"YB","AG","3","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","2%",""
+"2013-12-03_YB-AGq7",2013-12-03,2013-12-03,"YB","AG","7","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2013-12-03_YB-AGq9",2013-12-03,2013-12-03,"YB","AG","9","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2013-12-03_YB-AGq1",2013-12-03,2013-12-03,"YB","AG","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-12-03_YB-AGq2",2013-12-03,2013-12-03,"YB","AG","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Mussels, limpet, and littorine densities likely higher but shadows and glare made counting difficult"
+"2013-12-03_YB-AGq3",2013-12-03,2013-12-03,"YB","AG","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","2%",""
+"2013-12-03_YB-AGq7",2013-12-03,2013-12-03,"YB","AG","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2013-12-03_YB-AGq9",2013-12-03,2013-12-03,"YB","AG","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2013-12-03_YB-AGq1",2013-12-03,2013-12-03,"YB","AG","1","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-12-03_YB-AGq2",2013-12-03,2013-12-03,"YB","AG","2","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","0%","Mussels, limpet, and littorine densities likely higher but shadows and glare made counting difficult"
+"2013-12-03_YB-AGq3",2013-12-03,2013-12-03,"YB","AG","3","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","2%",""
+"2013-12-03_YB-AGq7",2013-12-03,2013-12-03,"YB","AG","7","Cth","Chthamalus_dalli","Type 3",11,0.015625,704,"c","Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2013-12-03_YB-AGq9",2013-12-03,2013-12-03,"YB","AG","9","Cth","Chthamalus_dalli","Type 3",33,0.015625,2112,"c","Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2013-12-03_YB-AGq1",2013-12-03,2013-12-03,"YB","AG","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-12-03_YB-AGq2",2013-12-03,2013-12-03,"YB","AG","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","0%","Mussels, limpet, and littorine densities likely higher but shadows and glare made counting difficult"
+"2013-12-03_YB-AGq3",2013-12-03,2013-12-03,"YB","AG","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","2%",""
+"2013-12-03_YB-AGq7",2013-12-03,2013-12-03,"YB","AG","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2013-12-03_YB-AGq9",2013-12-03,2013-12-03,"YB","AG","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2013-12-03_YB-AGq1",2013-12-03,2013-12-03,"YB","AG","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-12-03_YB-AGq2",2013-12-03,2013-12-03,"YB","AG","2","Emp","Emplectonema worm","Type 23",1,0.0875,11.4285714285714,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Mussels, limpet, and littorine densities likely higher but shadows and glare made counting difficult"
+"2013-12-03_YB-AGq3",2013-12-03,2013-12-03,"YB","AG","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","2%",""
+"2013-12-03_YB-AGq7",2013-12-03,2013-12-03,"YB","AG","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2013-12-03_YB-AGq9",2013-12-03,2013-12-03,"YB","AG","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2013-12-03_YB-AGq1",2013-12-03,2013-12-03,"YB","AG","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-12-03_YB-AGq2",2013-12-03,2013-12-03,"YB","AG","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Mussels, limpet, and littorine densities likely higher but shadows and glare made counting difficult"
+"2013-12-03_YB-AGq3",2013-12-03,2013-12-03,"YB","AG","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","2%",""
+"2013-12-03_YB-AGq7",2013-12-03,2013-12-03,"YB","AG","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2013-12-03_YB-AGq9",2013-12-03,2013-12-03,"YB","AG","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2013-12-03_YB-AGq1",2013-12-03,2013-12-03,"YB","AG","1","Lim","Limpets","Type 12",39,0.0875,445.714285714286,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-12-03_YB-AGq2",2013-12-03,2013-12-03,"YB","AG","2","Lim","Limpets","Type 12",25,0.0875,285.714285714286,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Mussels, limpet, and littorine densities likely higher but shadows and glare made counting difficult"
+"2013-12-03_YB-AGq3",2013-12-03,2013-12-03,"YB","AG","3","Lim","Limpets","Type 12",18,0.0875,205.714285714286,NA,"Isaac Shepard","Finished","Full","Cropped","2%",""
+"2013-12-03_YB-AGq7",2013-12-03,2013-12-03,"YB","AG","7","Lim","Limpets","Type 12",22,0.0875,251.428571428571,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2013-12-03_YB-AGq9",2013-12-03,2013-12-03,"YB","AG","9","Lim","Limpets","Type 12",9,0.0875,102.857142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2013-12-03_YB-AGq1",2013-12-03,2013-12-03,"YB","AG","1","Ls","Littorina_sitkana","Type 13",28,0.0875,320,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-12-03_YB-AGq2",2013-12-03,2013-12-03,"YB","AG","2","Ls","Littorina_sitkana","Type 13",36,0.0875,411.428571428571,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Mussels, limpet, and littorine densities likely higher but shadows and glare made counting difficult"
+"2013-12-03_YB-AGq3",2013-12-03,2013-12-03,"YB","AG","3","Ls","Littorina_sitkana","Type 13",108,0.0875,1234.28571428571,NA,"Isaac Shepard","Finished","Full","Cropped","2%",""
+"2013-12-03_YB-AGq7",2013-12-03,2013-12-03,"YB","AG","7","Ls","Littorina_sitkana","Type 13",73,0.0875,834.285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2013-12-03_YB-AGq9",2013-12-03,2013-12-03,"YB","AG","9","Ls","Littorina_sitkana","Type 13",69,0.0875,788.571428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2013-12-03_YB-AGq1",2013-12-03,2013-12-03,"YB","AG","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-12-03_YB-AGq2",2013-12-03,2013-12-03,"YB","AG","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Mussels, limpet, and littorine densities likely higher but shadows and glare made counting difficult"
+"2013-12-03_YB-AGq3",2013-12-03,2013-12-03,"YB","AG","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","2%",""
+"2013-12-03_YB-AGq7",2013-12-03,2013-12-03,"YB","AG","7","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2013-12-03_YB-AGq9",2013-12-03,2013-12-03,"YB","AG","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2013-12-03_YB-AGq1",2013-12-03,2013-12-03,"YB","AG","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-12-03_YB-AGq2",2013-12-03,2013-12-03,"YB","AG","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Mussels, limpet, and littorine densities likely higher but shadows and glare made counting difficult"
+"2013-12-03_YB-AGq3",2013-12-03,2013-12-03,"YB","AG","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","2%",""
+"2013-12-03_YB-AGq7",2013-12-03,2013-12-03,"YB","AG","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2013-12-03_YB-AGq9",2013-12-03,2013-12-03,"YB","AG","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2013-12-03_YB-AGq1",2013-12-03,2013-12-03,"YB","AG","1","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-12-03_YB-AGq2",2013-12-03,2013-12-03,"YB","AG","2","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Mussels, limpet, and littorine densities likely higher but shadows and glare made counting difficult"
+"2013-12-03_YB-AGq3",2013-12-03,2013-12-03,"YB","AG","3","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","2%",""
+"2013-12-03_YB-AGq7",2013-12-03,2013-12-03,"YB","AG","7","Myt","Mytilus_spp","Type 7",407,0.0875,4651.42857142857,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2013-12-03_YB-AGq9",2013-12-03,2013-12-03,"YB","AG","9","Myt","Mytilus_spp","Type 7",481,0.0875,5497.14285714286,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2013-12-03_YB-AGq1",2013-12-03,2013-12-03,"YB","AG","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-12-03_YB-AGq2",2013-12-03,2013-12-03,"YB","AG","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Mussels, limpet, and littorine densities likely higher but shadows and glare made counting difficult"
+"2013-12-03_YB-AGq3",2013-12-03,2013-12-03,"YB","AG","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","2%",""
+"2013-12-03_YB-AGq7",2013-12-03,2013-12-03,"YB","AG","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2013-12-03_YB-AGq9",2013-12-03,2013-12-03,"YB","AG","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2013-12-03_YB-AGq1",2013-12-03,2013-12-03,"YB","AG","1","Mt","Mytilus_trossulus","Type 15",39,0.0875,445.714285714286,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-12-03_YB-AGq2",2013-12-03,2013-12-03,"YB","AG","2","Mt","Mytilus_trossulus","Type 15",20,0.0875,228.571428571429,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Mussels, limpet, and littorine densities likely higher but shadows and glare made counting difficult"
+"2013-12-03_YB-AGq3",2013-12-03,2013-12-03,"YB","AG","3","Mt","Mytilus_trossulus","Type 15",187,0.0875,2137.14285714286,NA,"Isaac Shepard","Finished","Full","Cropped","2%",""
+"2013-12-03_YB-AGq7",2013-12-03,2013-12-03,"YB","AG","7","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2013-12-03_YB-AGq9",2013-12-03,2013-12-03,"YB","AG","9","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2013-12-03_YB-AGq1",2013-12-03,2013-12-03,"YB","AG","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-12-03_YB-AGq2",2013-12-03,2013-12-03,"YB","AG","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Mussels, limpet, and littorine densities likely higher but shadows and glare made counting difficult"
+"2013-12-03_YB-AGq3",2013-12-03,2013-12-03,"YB","AG","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","2%",""
+"2013-12-03_YB-AGq7",2013-12-03,2013-12-03,"YB","AG","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2013-12-03_YB-AGq9",2013-12-03,2013-12-03,"YB","AG","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2013-12-03_YB-AGq1",2013-12-03,2013-12-03,"YB","AG","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-12-03_YB-AGq2",2013-12-03,2013-12-03,"YB","AG","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Mussels, limpet, and littorine densities likely higher but shadows and glare made counting difficult"
+"2013-12-03_YB-AGq3",2013-12-03,2013-12-03,"YB","AG","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","2%",""
+"2013-12-03_YB-AGq7",2013-12-03,2013-12-03,"YB","AG","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2013-12-03_YB-AGq9",2013-12-03,2013-12-03,"YB","AG","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2013-12-03_YB-AGq1",2013-12-03,2013-12-03,"YB","AG","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-12-03_YB-AGq2",2013-12-03,2013-12-03,"YB","AG","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Mussels, limpet, and littorine densities likely higher but shadows and glare made counting difficult"
+"2013-12-03_YB-AGq3",2013-12-03,2013-12-03,"YB","AG","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","2%",""
+"2013-12-03_YB-AGq7",2013-12-03,2013-12-03,"YB","AG","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2013-12-03_YB-AGq9",2013-12-03,2013-12-03,"YB","AG","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2013-12-03_YB-AGq1",2013-12-03,2013-12-03,"YB","AG","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-12-03_YB-AGq2",2013-12-03,2013-12-03,"YB","AG","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Mussels, limpet, and littorine densities likely higher but shadows and glare made counting difficult"
+"2013-12-03_YB-AGq3",2013-12-03,2013-12-03,"YB","AG","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","2%",""
+"2013-12-03_YB-AGq7",2013-12-03,2013-12-03,"YB","AG","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2013-12-03_YB-AGq9",2013-12-03,2013-12-03,"YB","AG","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2013-12-03_YB-AGq1",2013-12-03,2013-12-03,"YB","AG","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-12-03_YB-AGq2",2013-12-03,2013-12-03,"YB","AG","2","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Mussels, limpet, and littorine densities likely higher but shadows and glare made counting difficult"
+"2013-12-03_YB-AGq3",2013-12-03,2013-12-03,"YB","AG","3","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","2%",""
+"2013-12-03_YB-AGq7",2013-12-03,2013-12-03,"YB","AG","7","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2013-12-03_YB-AGq9",2013-12-03,2013-12-03,"YB","AG","9","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2013-12-03_YB-AGq1",2013-12-03,2013-12-03,"YB","AG","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-12-03_YB-AGq2",2013-12-03,2013-12-03,"YB","AG","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Mussels, limpet, and littorine densities likely higher but shadows and glare made counting difficult"
+"2013-12-03_YB-AGq3",2013-12-03,2013-12-03,"YB","AG","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","2%",""
+"2013-12-03_YB-AGq7",2013-12-03,2013-12-03,"YB","AG","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2013-12-03_YB-AGq9",2013-12-03,2013-12-03,"YB","AG","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2013-12-03_YB-AGq1",2013-12-03,2013-12-03,"YB","AG","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-12-03_YB-AGq2",2013-12-03,2013-12-03,"YB","AG","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Mussels, limpet, and littorine densities likely higher but shadows and glare made counting difficult"
+"2013-12-03_YB-AGq3",2013-12-03,2013-12-03,"YB","AG","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","2%",""
+"2013-12-03_YB-AGq7",2013-12-03,2013-12-03,"YB","AG","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2013-12-03_YB-AGq9",2013-12-03,2013-12-03,"YB","AG","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2013-12-03_YB-AGq1",2013-12-03,2013-12-03,"YB","AG","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-12-03_YB-AGq2",2013-12-03,2013-12-03,"YB","AG","2","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Mussels, limpet, and littorine densities likely higher but shadows and glare made counting difficult"
+"2013-12-03_YB-AGq3",2013-12-03,2013-12-03,"YB","AG","3","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","2%",""
+"2013-12-03_YB-AGq7",2013-12-03,2013-12-03,"YB","AG","7","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2013-12-03_YB-AGq9",2013-12-03,2013-12-03,"YB","AG","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2013-12-03_YB-AGq1",2013-12-03,2013-12-03,"YB","AG","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-12-03_YB-AGq2",2013-12-03,2013-12-03,"YB","AG","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Mussels, limpet, and littorine densities likely higher but shadows and glare made counting difficult"
+"2013-12-03_YB-AGq3",2013-12-03,2013-12-03,"YB","AG","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","2%",""
+"2013-12-03_YB-AGq7",2013-12-03,2013-12-03,"YB","AG","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2013-12-03_YB-AGq9",2013-12-03,2013-12-03,"YB","AG","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2013-12-03_YB-AGq1",2013-12-03,2013-12-03,"YB","AG","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-12-03_YB-AGq2",2013-12-03,2013-12-03,"YB","AG","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Mussels, limpet, and littorine densities likely higher but shadows and glare made counting difficult"
+"2013-12-03_YB-AGq3",2013-12-03,2013-12-03,"YB","AG","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","2%",""
+"2013-12-03_YB-AGq7",2013-12-03,2013-12-03,"YB","AG","7","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2013-12-03_YB-AGq9",2013-12-03,2013-12-03,"YB","AG","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2013-12-03_YB-AGq1",2013-12-03,2013-12-03,"YB","AG","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2013-12-03_YB-AGq2",2013-12-03,2013-12-03,"YB","AG","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Mussels, limpet, and littorine densities likely higher but shadows and glare made counting difficult"
+"2013-12-03_YB-AGq3",2013-12-03,2013-12-03,"YB","AG","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","2%",""
+"2013-12-03_YB-AGq7",2013-12-03,2013-12-03,"YB","AG","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2013-12-03_YB-AGq9",2013-12-03,2013-12-03,"YB","AG","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2013-12-03_YB-Bq1",2013-12-03,2013-12-03,"YB","B","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2013-12-03_YB-Bq2",2013-12-03,2013-12-03,"YB","B","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Bq3",2013-12-03,2013-12-03,"YB","B","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2013-12-03_YB-Bq4",2013-12-03,2013-12-03,"YB","B","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Mytilus byssal threads cover about 5% of quadrat"
+"2013-12-03_YB-Bq5",2013-12-03,2013-12-03,"YB","B","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Mytilus byssal threads cover about 5% of quadrat"
+"2013-12-03_YB-Bq6",2013-12-03,2013-12-03,"YB","B","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Bq7",2013-12-03,2013-12-03,"YB","B","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","All counts may be low due to glare"
+"2013-12-03_YB-Bq8",2013-12-03,2013-12-03,"YB","B","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","17%","Mytilus byssal threads cover about 7% of quadrat"
+"2013-12-03_YB-Bq9",2013-12-03,2013-12-03,"YB","B","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2013-12-03_YB-Bq1",2013-12-03,2013-12-03,"YB","B","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2013-12-03_YB-Bq2",2013-12-03,2013-12-03,"YB","B","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Bq3",2013-12-03,2013-12-03,"YB","B","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2013-12-03_YB-Bq4",2013-12-03,2013-12-03,"YB","B","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Mytilus byssal threads cover about 5% of quadrat"
+"2013-12-03_YB-Bq5",2013-12-03,2013-12-03,"YB","B","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Mytilus byssal threads cover about 5% of quadrat"
+"2013-12-03_YB-Bq6",2013-12-03,2013-12-03,"YB","B","6","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Bq7",2013-12-03,2013-12-03,"YB","B","7","Ae","Anemones","Type 14",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","3%","All counts may be low due to glare"
+"2013-12-03_YB-Bq8",2013-12-03,2013-12-03,"YB","B","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","17%","Mytilus byssal threads cover about 7% of quadrat"
+"2013-12-03_YB-Bq9",2013-12-03,2013-12-03,"YB","B","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2013-12-03_YB-Bq1",2013-12-03,2013-12-03,"YB","B","1","Bg","Balanus_glandula","Type 1",944,0.015625,60416,"c","Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2013-12-03_YB-Bq2",2013-12-03,2013-12-03,"YB","B","2","Bg","Balanus_glandula","Type 1",504,0.015625,32256,"c","Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Bq3",2013-12-03,2013-12-03,"YB","B","3","Bg","Balanus_glandula","Type 1",517,0.015625,33088,"c","Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2013-12-03_YB-Bq4",2013-12-03,2013-12-03,"YB","B","4","Bg","Balanus_glandula","Type 1",1590,0.015625,101760,"c","Beatriz Vaca","Finished","Full","Cropped","5%","Mytilus byssal threads cover about 5% of quadrat"
+"2013-12-03_YB-Bq5",2013-12-03,2013-12-03,"YB","B","5","Bg","Balanus_glandula","Type 1",629,0.015625,40256,"c","Beatriz Vaca","Finished","Full","Cropped","5%","Mytilus byssal threads cover about 5% of quadrat"
+"2013-12-03_YB-Bq6",2013-12-03,2013-12-03,"YB","B","6","Bg","Balanus_glandula","Type 1",407,0.015625,26048,"c","Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Bq7",2013-12-03,2013-12-03,"YB","B","7","Bg","Balanus_glandula","Type 1",676,0.0875,7725.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","3%","All counts may be low due to glare"
+"2013-12-03_YB-Bq8",2013-12-03,2013-12-03,"YB","B","8","Bg","Balanus_glandula","Type 1",130,0.015625,8320,"c","Beatriz Vaca","Finished","Full","Cropped","17%","Mytilus byssal threads cover about 7% of quadrat"
+"2013-12-03_YB-Bq9",2013-12-03,2013-12-03,"YB","B","9","Bg","Balanus_glandula","Type 1",1467,0.0875,16765.7142857143,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2013-12-03_YB-Bq1",2013-12-03,2013-12-03,"YB","B","1","BgD","Balanus_glandula_(dead)","Type 2",20,0.015625,1280,"c","Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2013-12-03_YB-Bq2",2013-12-03,2013-12-03,"YB","B","2","BgD","Balanus_glandula_(dead)","Type 2",5,0.015625,320,"c","Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Bq3",2013-12-03,2013-12-03,"YB","B","3","BgD","Balanus_glandula_(dead)","Type 2",4,0.015625,256,"c","Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2013-12-03_YB-Bq4",2013-12-03,2013-12-03,"YB","B","4","BgD","Balanus_glandula_(dead)","Type 2",6,0.015625,384,"c","Beatriz Vaca","Finished","Full","Cropped","5%","Mytilus byssal threads cover about 5% of quadrat"
+"2013-12-03_YB-Bq5",2013-12-03,2013-12-03,"YB","B","5","BgD","Balanus_glandula_(dead)","Type 2",18,0.015625,1152,"c","Beatriz Vaca","Finished","Full","Cropped","5%","Mytilus byssal threads cover about 5% of quadrat"
+"2013-12-03_YB-Bq6",2013-12-03,2013-12-03,"YB","B","6","BgD","Balanus_glandula_(dead)","Type 2",3,0.015625,192,"c","Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Bq7",2013-12-03,2013-12-03,"YB","B","7","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","All counts may be low due to glare"
+"2013-12-03_YB-Bq8",2013-12-03,2013-12-03,"YB","B","8","BgD","Balanus_glandula_(dead)","Type 2",13,0.015625,832,"c","Beatriz Vaca","Finished","Full","Cropped","17%","Mytilus byssal threads cover about 7% of quadrat"
+"2013-12-03_YB-Bq9",2013-12-03,2013-12-03,"YB","B","9","BgD","Balanus_glandula_(dead)","Type 2",25,0.0875,285.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2013-12-03_YB-Bq1",2013-12-03,2013-12-03,"YB","B","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2013-12-03_YB-Bq2",2013-12-03,2013-12-03,"YB","B","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Bq3",2013-12-03,2013-12-03,"YB","B","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2013-12-03_YB-Bq4",2013-12-03,2013-12-03,"YB","B","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Mytilus byssal threads cover about 5% of quadrat"
+"2013-12-03_YB-Bq5",2013-12-03,2013-12-03,"YB","B","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Mytilus byssal threads cover about 5% of quadrat"
+"2013-12-03_YB-Bq6",2013-12-03,2013-12-03,"YB","B","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Bq7",2013-12-03,2013-12-03,"YB","B","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","All counts may be low due to glare"
+"2013-12-03_YB-Bq8",2013-12-03,2013-12-03,"YB","B","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","17%","Mytilus byssal threads cover about 7% of quadrat"
+"2013-12-03_YB-Bq9",2013-12-03,2013-12-03,"YB","B","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2013-12-03_YB-Bq1",2013-12-03,2013-12-03,"YB","B","1","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2013-12-03_YB-Bq2",2013-12-03,2013-12-03,"YB","B","2","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Bq3",2013-12-03,2013-12-03,"YB","B","3","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2013-12-03_YB-Bq4",2013-12-03,2013-12-03,"YB","B","4","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","5%","Mytilus byssal threads cover about 5% of quadrat"
+"2013-12-03_YB-Bq5",2013-12-03,2013-12-03,"YB","B","5","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","5%","Mytilus byssal threads cover about 5% of quadrat"
+"2013-12-03_YB-Bq6",2013-12-03,2013-12-03,"YB","B","6","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Bq7",2013-12-03,2013-12-03,"YB","B","7","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","All counts may be low due to glare"
+"2013-12-03_YB-Bq8",2013-12-03,2013-12-03,"YB","B","8","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","17%","Mytilus byssal threads cover about 7% of quadrat"
+"2013-12-03_YB-Bq9",2013-12-03,2013-12-03,"YB","B","9","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2013-12-03_YB-Bq1",2013-12-03,2013-12-03,"YB","B","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2013-12-03_YB-Bq2",2013-12-03,2013-12-03,"YB","B","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Bq3",2013-12-03,2013-12-03,"YB","B","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2013-12-03_YB-Bq4",2013-12-03,2013-12-03,"YB","B","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","5%","Mytilus byssal threads cover about 5% of quadrat"
+"2013-12-03_YB-Bq5",2013-12-03,2013-12-03,"YB","B","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","5%","Mytilus byssal threads cover about 5% of quadrat"
+"2013-12-03_YB-Bq6",2013-12-03,2013-12-03,"YB","B","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Bq7",2013-12-03,2013-12-03,"YB","B","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","All counts may be low due to glare"
+"2013-12-03_YB-Bq8",2013-12-03,2013-12-03,"YB","B","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","17%","Mytilus byssal threads cover about 7% of quadrat"
+"2013-12-03_YB-Bq9",2013-12-03,2013-12-03,"YB","B","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2013-12-03_YB-Bq1",2013-12-03,2013-12-03,"YB","B","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2013-12-03_YB-Bq2",2013-12-03,2013-12-03,"YB","B","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Bq3",2013-12-03,2013-12-03,"YB","B","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2013-12-03_YB-Bq4",2013-12-03,2013-12-03,"YB","B","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Mytilus byssal threads cover about 5% of quadrat"
+"2013-12-03_YB-Bq5",2013-12-03,2013-12-03,"YB","B","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Mytilus byssal threads cover about 5% of quadrat"
+"2013-12-03_YB-Bq6",2013-12-03,2013-12-03,"YB","B","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Bq7",2013-12-03,2013-12-03,"YB","B","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","All counts may be low due to glare"
+"2013-12-03_YB-Bq8",2013-12-03,2013-12-03,"YB","B","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","17%","Mytilus byssal threads cover about 7% of quadrat"
+"2013-12-03_YB-Bq9",2013-12-03,2013-12-03,"YB","B","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2013-12-03_YB-Bq1",2013-12-03,2013-12-03,"YB","B","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2013-12-03_YB-Bq2",2013-12-03,2013-12-03,"YB","B","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Bq3",2013-12-03,2013-12-03,"YB","B","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2013-12-03_YB-Bq4",2013-12-03,2013-12-03,"YB","B","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Mytilus byssal threads cover about 5% of quadrat"
+"2013-12-03_YB-Bq5",2013-12-03,2013-12-03,"YB","B","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Mytilus byssal threads cover about 5% of quadrat"
+"2013-12-03_YB-Bq6",2013-12-03,2013-12-03,"YB","B","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Bq7",2013-12-03,2013-12-03,"YB","B","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","All counts may be low due to glare"
+"2013-12-03_YB-Bq8",2013-12-03,2013-12-03,"YB","B","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","17%","Mytilus byssal threads cover about 7% of quadrat"
+"2013-12-03_YB-Bq9",2013-12-03,2013-12-03,"YB","B","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2013-12-03_YB-Bq1",2013-12-03,2013-12-03,"YB","B","1","Lim","Limpets","Type 12",214,0.0875,2445.71428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2013-12-03_YB-Bq2",2013-12-03,2013-12-03,"YB","B","2","Lim","Limpets","Type 12",117,0.0875,1337.14285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Bq3",2013-12-03,2013-12-03,"YB","B","3","Lim","Limpets","Type 12",223,0.0875,2548.57142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2013-12-03_YB-Bq4",2013-12-03,2013-12-03,"YB","B","4","Lim","Limpets","Type 12",195,0.0875,2228.57142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Mytilus byssal threads cover about 5% of quadrat"
+"2013-12-03_YB-Bq5",2013-12-03,2013-12-03,"YB","B","5","Lim","Limpets","Type 12",196,0.0875,2240,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Mytilus byssal threads cover about 5% of quadrat"
+"2013-12-03_YB-Bq6",2013-12-03,2013-12-03,"YB","B","6","Lim","Limpets","Type 12",151,0.0875,1725.71428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Bq7",2013-12-03,2013-12-03,"YB","B","7","Lim","Limpets","Type 12",164,0.0875,1874.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","3%","All counts may be low due to glare"
+"2013-12-03_YB-Bq8",2013-12-03,2013-12-03,"YB","B","8","Lim","Limpets","Type 12",178,0.0875,2034.28571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","17%","Mytilus byssal threads cover about 7% of quadrat"
+"2013-12-03_YB-Bq9",2013-12-03,2013-12-03,"YB","B","9","Lim","Limpets","Type 12",300,0.0875,3428.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2013-12-03_YB-Bq1",2013-12-03,2013-12-03,"YB","B","1","Ls","Littorina_sitkana","Type 13",53,0.0875,605.714285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2013-12-03_YB-Bq2",2013-12-03,2013-12-03,"YB","B","2","Ls","Littorina_sitkana","Type 13",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Bq3",2013-12-03,2013-12-03,"YB","B","3","Ls","Littorina_sitkana","Type 13",22,0.0875,251.428571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2013-12-03_YB-Bq4",2013-12-03,2013-12-03,"YB","B","4","Ls","Littorina_sitkana","Type 13",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Mytilus byssal threads cover about 5% of quadrat"
+"2013-12-03_YB-Bq5",2013-12-03,2013-12-03,"YB","B","5","Ls","Littorina_sitkana","Type 13",13,0.0875,148.571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Mytilus byssal threads cover about 5% of quadrat"
+"2013-12-03_YB-Bq6",2013-12-03,2013-12-03,"YB","B","6","Ls","Littorina_sitkana","Type 13",20,0.0875,228.571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Bq7",2013-12-03,2013-12-03,"YB","B","7","Ls","Littorina_sitkana","Type 13",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","3%","All counts may be low due to glare"
+"2013-12-03_YB-Bq8",2013-12-03,2013-12-03,"YB","B","8","Ls","Littorina_sitkana","Type 13",11,0.0875,125.714285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","17%","Mytilus byssal threads cover about 7% of quadrat"
+"2013-12-03_YB-Bq9",2013-12-03,2013-12-03,"YB","B","9","Ls","Littorina_sitkana","Type 13",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2013-12-03_YB-Bq1",2013-12-03,2013-12-03,"YB","B","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2013-12-03_YB-Bq2",2013-12-03,2013-12-03,"YB","B","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Bq3",2013-12-03,2013-12-03,"YB","B","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2013-12-03_YB-Bq4",2013-12-03,2013-12-03,"YB","B","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Mytilus byssal threads cover about 5% of quadrat"
+"2013-12-03_YB-Bq5",2013-12-03,2013-12-03,"YB","B","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Mytilus byssal threads cover about 5% of quadrat"
+"2013-12-03_YB-Bq6",2013-12-03,2013-12-03,"YB","B","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Bq7",2013-12-03,2013-12-03,"YB","B","7","Mc","Mytilus_californianus","Type 17",12,0.0875,137.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","3%","All counts may be low due to glare"
+"2013-12-03_YB-Bq8",2013-12-03,2013-12-03,"YB","B","8","Mc","Mytilus_californianus","Type 17",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","17%","Mytilus byssal threads cover about 7% of quadrat"
+"2013-12-03_YB-Bq9",2013-12-03,2013-12-03,"YB","B","9","Mc","Mytilus_californianus","Type 17",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2013-12-03_YB-Bq1",2013-12-03,2013-12-03,"YB","B","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2013-12-03_YB-Bq2",2013-12-03,2013-12-03,"YB","B","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Bq3",2013-12-03,2013-12-03,"YB","B","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2013-12-03_YB-Bq4",2013-12-03,2013-12-03,"YB","B","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Mytilus byssal threads cover about 5% of quadrat"
+"2013-12-03_YB-Bq5",2013-12-03,2013-12-03,"YB","B","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Mytilus byssal threads cover about 5% of quadrat"
+"2013-12-03_YB-Bq6",2013-12-03,2013-12-03,"YB","B","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Bq7",2013-12-03,2013-12-03,"YB","B","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","All counts may be low due to glare"
+"2013-12-03_YB-Bq8",2013-12-03,2013-12-03,"YB","B","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","17%","Mytilus byssal threads cover about 7% of quadrat"
+"2013-12-03_YB-Bq9",2013-12-03,2013-12-03,"YB","B","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2013-12-03_YB-Bq1",2013-12-03,2013-12-03,"YB","B","1","Myt","Mytilus_spp","Type 7",161,0.0875,1840,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2013-12-03_YB-Bq2",2013-12-03,2013-12-03,"YB","B","2","Myt","Mytilus_spp","Type 7",280,0.0875,3200,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Bq3",2013-12-03,2013-12-03,"YB","B","3","Myt","Mytilus_spp","Type 7",214,0.0875,2445.71428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2013-12-03_YB-Bq4",2013-12-03,2013-12-03,"YB","B","4","Myt","Mytilus_spp","Type 7",161,0.0875,1840,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Mytilus byssal threads cover about 5% of quadrat"
+"2013-12-03_YB-Bq5",2013-12-03,2013-12-03,"YB","B","5","Myt","Mytilus_spp","Type 7",404,0.0875,4617.14285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Mytilus byssal threads cover about 5% of quadrat"
+"2013-12-03_YB-Bq6",2013-12-03,2013-12-03,"YB","B","6","Myt","Mytilus_spp","Type 7",283,0.0875,3234.28571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Bq7",2013-12-03,2013-12-03,"YB","B","7","Myt","Mytilus_spp","Type 7",205,0.0875,2342.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","3%","All counts may be low due to glare"
+"2013-12-03_YB-Bq8",2013-12-03,2013-12-03,"YB","B","8","Myt","Mytilus_spp","Type 7",348,0.0875,3977.14285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","17%","Mytilus byssal threads cover about 7% of quadrat"
+"2013-12-03_YB-Bq9",2013-12-03,2013-12-03,"YB","B","9","Myt","Mytilus_spp","Type 7",844,0.0875,9645.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2013-12-03_YB-Bq1",2013-12-03,2013-12-03,"YB","B","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2013-12-03_YB-Bq2",2013-12-03,2013-12-03,"YB","B","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Bq3",2013-12-03,2013-12-03,"YB","B","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2013-12-03_YB-Bq4",2013-12-03,2013-12-03,"YB","B","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Mytilus byssal threads cover about 5% of quadrat"
+"2013-12-03_YB-Bq5",2013-12-03,2013-12-03,"YB","B","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Mytilus byssal threads cover about 5% of quadrat"
+"2013-12-03_YB-Bq6",2013-12-03,2013-12-03,"YB","B","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Bq7",2013-12-03,2013-12-03,"YB","B","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","All counts may be low due to glare"
+"2013-12-03_YB-Bq8",2013-12-03,2013-12-03,"YB","B","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","17%","Mytilus byssal threads cover about 7% of quadrat"
+"2013-12-03_YB-Bq9",2013-12-03,2013-12-03,"YB","B","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2013-12-03_YB-Bq1",2013-12-03,2013-12-03,"YB","B","1","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2013-12-03_YB-Bq2",2013-12-03,2013-12-03,"YB","B","2","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Bq3",2013-12-03,2013-12-03,"YB","B","3","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2013-12-03_YB-Bq4",2013-12-03,2013-12-03,"YB","B","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Mytilus byssal threads cover about 5% of quadrat"
+"2013-12-03_YB-Bq5",2013-12-03,2013-12-03,"YB","B","5","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Mytilus byssal threads cover about 5% of quadrat"
+"2013-12-03_YB-Bq6",2013-12-03,2013-12-03,"YB","B","6","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Bq7",2013-12-03,2013-12-03,"YB","B","7","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","All counts may be low due to glare"
+"2013-12-03_YB-Bq8",2013-12-03,2013-12-03,"YB","B","8","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","17%","Mytilus byssal threads cover about 7% of quadrat"
+"2013-12-03_YB-Bq9",2013-12-03,2013-12-03,"YB","B","9","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2013-12-03_YB-Bq1",2013-12-03,2013-12-03,"YB","B","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2013-12-03_YB-Bq2",2013-12-03,2013-12-03,"YB","B","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Bq3",2013-12-03,2013-12-03,"YB","B","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2013-12-03_YB-Bq4",2013-12-03,2013-12-03,"YB","B","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Mytilus byssal threads cover about 5% of quadrat"
+"2013-12-03_YB-Bq5",2013-12-03,2013-12-03,"YB","B","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Mytilus byssal threads cover about 5% of quadrat"
+"2013-12-03_YB-Bq6",2013-12-03,2013-12-03,"YB","B","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Bq7",2013-12-03,2013-12-03,"YB","B","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","All counts may be low due to glare"
+"2013-12-03_YB-Bq8",2013-12-03,2013-12-03,"YB","B","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","17%","Mytilus byssal threads cover about 7% of quadrat"
+"2013-12-03_YB-Bq9",2013-12-03,2013-12-03,"YB","B","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2013-12-03_YB-Bq1",2013-12-03,2013-12-03,"YB","B","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2013-12-03_YB-Bq2",2013-12-03,2013-12-03,"YB","B","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Bq3",2013-12-03,2013-12-03,"YB","B","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2013-12-03_YB-Bq4",2013-12-03,2013-12-03,"YB","B","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Mytilus byssal threads cover about 5% of quadrat"
+"2013-12-03_YB-Bq5",2013-12-03,2013-12-03,"YB","B","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Mytilus byssal threads cover about 5% of quadrat"
+"2013-12-03_YB-Bq6",2013-12-03,2013-12-03,"YB","B","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Bq7",2013-12-03,2013-12-03,"YB","B","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","All counts may be low due to glare"
+"2013-12-03_YB-Bq8",2013-12-03,2013-12-03,"YB","B","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","17%","Mytilus byssal threads cover about 7% of quadrat"
+"2013-12-03_YB-Bq9",2013-12-03,2013-12-03,"YB","B","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2013-12-03_YB-Bq1",2013-12-03,2013-12-03,"YB","B","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2013-12-03_YB-Bq2",2013-12-03,2013-12-03,"YB","B","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Bq3",2013-12-03,2013-12-03,"YB","B","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2013-12-03_YB-Bq4",2013-12-03,2013-12-03,"YB","B","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Mytilus byssal threads cover about 5% of quadrat"
+"2013-12-03_YB-Bq5",2013-12-03,2013-12-03,"YB","B","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Mytilus byssal threads cover about 5% of quadrat"
+"2013-12-03_YB-Bq6",2013-12-03,2013-12-03,"YB","B","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Bq7",2013-12-03,2013-12-03,"YB","B","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","All counts may be low due to glare"
+"2013-12-03_YB-Bq8",2013-12-03,2013-12-03,"YB","B","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","17%","Mytilus byssal threads cover about 7% of quadrat"
+"2013-12-03_YB-Bq9",2013-12-03,2013-12-03,"YB","B","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2013-12-03_YB-Bq1",2013-12-03,2013-12-03,"YB","B","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2013-12-03_YB-Bq2",2013-12-03,2013-12-03,"YB","B","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Bq3",2013-12-03,2013-12-03,"YB","B","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2013-12-03_YB-Bq4",2013-12-03,2013-12-03,"YB","B","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Mytilus byssal threads cover about 5% of quadrat"
+"2013-12-03_YB-Bq5",2013-12-03,2013-12-03,"YB","B","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Mytilus byssal threads cover about 5% of quadrat"
+"2013-12-03_YB-Bq6",2013-12-03,2013-12-03,"YB","B","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Bq7",2013-12-03,2013-12-03,"YB","B","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","All counts may be low due to glare"
+"2013-12-03_YB-Bq8",2013-12-03,2013-12-03,"YB","B","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","17%","Mytilus byssal threads cover about 7% of quadrat"
+"2013-12-03_YB-Bq9",2013-12-03,2013-12-03,"YB","B","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2013-12-03_YB-Bq1",2013-12-03,2013-12-03,"YB","B","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2013-12-03_YB-Bq2",2013-12-03,2013-12-03,"YB","B","2","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Bq3",2013-12-03,2013-12-03,"YB","B","3","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2013-12-03_YB-Bq4",2013-12-03,2013-12-03,"YB","B","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Mytilus byssal threads cover about 5% of quadrat"
+"2013-12-03_YB-Bq5",2013-12-03,2013-12-03,"YB","B","5","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Mytilus byssal threads cover about 5% of quadrat"
+"2013-12-03_YB-Bq6",2013-12-03,2013-12-03,"YB","B","6","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Bq7",2013-12-03,2013-12-03,"YB","B","7","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","All counts may be low due to glare"
+"2013-12-03_YB-Bq8",2013-12-03,2013-12-03,"YB","B","8","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","17%","Mytilus byssal threads cover about 7% of quadrat"
+"2013-12-03_YB-Bq9",2013-12-03,2013-12-03,"YB","B","9","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2013-12-03_YB-Bq1",2013-12-03,2013-12-03,"YB","B","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2013-12-03_YB-Bq2",2013-12-03,2013-12-03,"YB","B","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Bq3",2013-12-03,2013-12-03,"YB","B","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2013-12-03_YB-Bq4",2013-12-03,2013-12-03,"YB","B","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Mytilus byssal threads cover about 5% of quadrat"
+"2013-12-03_YB-Bq5",2013-12-03,2013-12-03,"YB","B","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Mytilus byssal threads cover about 5% of quadrat"
+"2013-12-03_YB-Bq6",2013-12-03,2013-12-03,"YB","B","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Bq7",2013-12-03,2013-12-03,"YB","B","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","All counts may be low due to glare"
+"2013-12-03_YB-Bq8",2013-12-03,2013-12-03,"YB","B","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","17%","Mytilus byssal threads cover about 7% of quadrat"
+"2013-12-03_YB-Bq9",2013-12-03,2013-12-03,"YB","B","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2013-12-03_YB-Bq1",2013-12-03,2013-12-03,"YB","B","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2013-12-03_YB-Bq2",2013-12-03,2013-12-03,"YB","B","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Bq3",2013-12-03,2013-12-03,"YB","B","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2013-12-03_YB-Bq4",2013-12-03,2013-12-03,"YB","B","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Mytilus byssal threads cover about 5% of quadrat"
+"2013-12-03_YB-Bq5",2013-12-03,2013-12-03,"YB","B","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Mytilus byssal threads cover about 5% of quadrat"
+"2013-12-03_YB-Bq6",2013-12-03,2013-12-03,"YB","B","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Bq7",2013-12-03,2013-12-03,"YB","B","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","All counts may be low due to glare"
+"2013-12-03_YB-Bq8",2013-12-03,2013-12-03,"YB","B","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","17%","Mytilus byssal threads cover about 7% of quadrat"
+"2013-12-03_YB-Bq9",2013-12-03,2013-12-03,"YB","B","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2013-12-03_YB-Bq1",2013-12-03,2013-12-03,"YB","B","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2013-12-03_YB-Bq2",2013-12-03,2013-12-03,"YB","B","2","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Bq3",2013-12-03,2013-12-03,"YB","B","3","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2013-12-03_YB-Bq4",2013-12-03,2013-12-03,"YB","B","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Mytilus byssal threads cover about 5% of quadrat"
+"2013-12-03_YB-Bq5",2013-12-03,2013-12-03,"YB","B","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Mytilus byssal threads cover about 5% of quadrat"
+"2013-12-03_YB-Bq6",2013-12-03,2013-12-03,"YB","B","6","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Bq7",2013-12-03,2013-12-03,"YB","B","7","Pp","Pollicipes_polymerus","Type 11",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","3%","All counts may be low due to glare"
+"2013-12-03_YB-Bq8",2013-12-03,2013-12-03,"YB","B","8","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","17%","Mytilus byssal threads cover about 7% of quadrat"
+"2013-12-03_YB-Bq9",2013-12-03,2013-12-03,"YB","B","9","Pp","Pollicipes_polymerus","Type 11",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2013-12-03_YB-Bq1",2013-12-03,2013-12-03,"YB","B","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2013-12-03_YB-Bq2",2013-12-03,2013-12-03,"YB","B","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Bq3",2013-12-03,2013-12-03,"YB","B","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2013-12-03_YB-Bq4",2013-12-03,2013-12-03,"YB","B","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Mytilus byssal threads cover about 5% of quadrat"
+"2013-12-03_YB-Bq5",2013-12-03,2013-12-03,"YB","B","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Mytilus byssal threads cover about 5% of quadrat"
+"2013-12-03_YB-Bq6",2013-12-03,2013-12-03,"YB","B","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Bq7",2013-12-03,2013-12-03,"YB","B","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","All counts may be low due to glare"
+"2013-12-03_YB-Bq8",2013-12-03,2013-12-03,"YB","B","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","17%","Mytilus byssal threads cover about 7% of quadrat"
+"2013-12-03_YB-Bq9",2013-12-03,2013-12-03,"YB","B","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2013-12-03_YB-Bq1",2013-12-03,2013-12-03,"YB","B","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2013-12-03_YB-Bq2",2013-12-03,2013-12-03,"YB","B","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Bq3",2013-12-03,2013-12-03,"YB","B","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2013-12-03_YB-Bq4",2013-12-03,2013-12-03,"YB","B","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Mytilus byssal threads cover about 5% of quadrat"
+"2013-12-03_YB-Bq5",2013-12-03,2013-12-03,"YB","B","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Mytilus byssal threads cover about 5% of quadrat"
+"2013-12-03_YB-Bq6",2013-12-03,2013-12-03,"YB","B","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Bq7",2013-12-03,2013-12-03,"YB","B","7","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","All counts may be low due to glare"
+"2013-12-03_YB-Bq8",2013-12-03,2013-12-03,"YB","B","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","17%","Mytilus byssal threads cover about 7% of quadrat"
+"2013-12-03_YB-Bq9",2013-12-03,2013-12-03,"YB","B","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2013-12-03_YB-Bq1",2013-12-03,2013-12-03,"YB","B","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2013-12-03_YB-Bq2",2013-12-03,2013-12-03,"YB","B","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Bq3",2013-12-03,2013-12-03,"YB","B","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2013-12-03_YB-Bq4",2013-12-03,2013-12-03,"YB","B","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Mytilus byssal threads cover about 5% of quadrat"
+"2013-12-03_YB-Bq5",2013-12-03,2013-12-03,"YB","B","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Mytilus byssal threads cover about 5% of quadrat"
+"2013-12-03_YB-Bq6",2013-12-03,2013-12-03,"YB","B","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Bq7",2013-12-03,2013-12-03,"YB","B","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","All counts may be low due to glare"
+"2013-12-03_YB-Bq8",2013-12-03,2013-12-03,"YB","B","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","17%","Mytilus byssal threads cover about 7% of quadrat"
+"2013-12-03_YB-Bq9",2013-12-03,2013-12-03,"YB","B","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2013-12-03_YB-BBq1",2013-12-03,2013-12-03,"YB","BB","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-BBq2",2013-12-03,2013-12-03,"YB","BB","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to blur"
+"2013-12-03_YB-BBq9",2013-12-03,2013-12-03,"YB","BB","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-12-03_YB-BBq1",2013-12-03,2013-12-03,"YB","BB","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-BBq2",2013-12-03,2013-12-03,"YB","BB","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to blur"
+"2013-12-03_YB-BBq9",2013-12-03,2013-12-03,"YB","BB","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-12-03_YB-BBq1",2013-12-03,2013-12-03,"YB","BB","1","Bg","Balanus_glandula","Type 1",1001,0.015625,64064,"c","Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-BBq2",2013-12-03,2013-12-03,"YB","BB","2","Bg","Balanus_glandula","Type 1",941,0.015625,60224,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to blur"
+"2013-12-03_YB-BBq9",2013-12-03,2013-12-03,"YB","BB","9","Bg","Balanus_glandula","Type 1",980,0.015625,62720,"c","Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-12-03_YB-BBq1",2013-12-03,2013-12-03,"YB","BB","1","BgD","Balanus_glandula_(dead)","Type 2",1,0.015625,64,"c","Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-BBq2",2013-12-03,2013-12-03,"YB","BB","2","BgD","Balanus_glandula_(dead)","Type 2",2,0.015625,128,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to blur"
+"2013-12-03_YB-BBq9",2013-12-03,2013-12-03,"YB","BB","9","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-12-03_YB-BBq1",2013-12-03,2013-12-03,"YB","BB","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-BBq2",2013-12-03,2013-12-03,"YB","BB","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to blur"
+"2013-12-03_YB-BBq9",2013-12-03,2013-12-03,"YB","BB","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-12-03_YB-BBq1",2013-12-03,2013-12-03,"YB","BB","1","Cth","Chthamalus_dalli","Type 3",35,0.015625,2240,"c","Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-BBq2",2013-12-03,2013-12-03,"YB","BB","2","Cth","Chthamalus_dalli","Type 3",47,0.015625,3008,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to blur"
+"2013-12-03_YB-BBq9",2013-12-03,2013-12-03,"YB","BB","9","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-12-03_YB-BBq1",2013-12-03,2013-12-03,"YB","BB","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-BBq2",2013-12-03,2013-12-03,"YB","BB","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to blur"
+"2013-12-03_YB-BBq9",2013-12-03,2013-12-03,"YB","BB","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-12-03_YB-BBq1",2013-12-03,2013-12-03,"YB","BB","1","Emp","Emplectonema worm","Type 23",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-BBq2",2013-12-03,2013-12-03,"YB","BB","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to blur"
+"2013-12-03_YB-BBq9",2013-12-03,2013-12-03,"YB","BB","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-12-03_YB-BBq1",2013-12-03,2013-12-03,"YB","BB","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-BBq2",2013-12-03,2013-12-03,"YB","BB","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to blur"
+"2013-12-03_YB-BBq9",2013-12-03,2013-12-03,"YB","BB","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-12-03_YB-BBq1",2013-12-03,2013-12-03,"YB","BB","1","Lim","Limpets","Type 12",9,0.0875,102.857142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-BBq2",2013-12-03,2013-12-03,"YB","BB","2","Lim","Limpets","Type 12",17,0.0875,194.285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to blur"
+"2013-12-03_YB-BBq9",2013-12-03,2013-12-03,"YB","BB","9","Lim","Limpets","Type 12",9,0.0875,102.857142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-12-03_YB-BBq1",2013-12-03,2013-12-03,"YB","BB","1","Ls","Littorina_sitkana","Type 13",204,0.0875,2331.42857142857,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-BBq2",2013-12-03,2013-12-03,"YB","BB","2","Ls","Littorina_sitkana","Type 13",166,0.0875,1897.14285714286,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to blur"
+"2013-12-03_YB-BBq9",2013-12-03,2013-12-03,"YB","BB","9","Ls","Littorina_sitkana","Type 13",92,0.0875,1051.42857142857,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-12-03_YB-BBq1",2013-12-03,2013-12-03,"YB","BB","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-BBq2",2013-12-03,2013-12-03,"YB","BB","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to blur"
+"2013-12-03_YB-BBq9",2013-12-03,2013-12-03,"YB","BB","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-12-03_YB-BBq1",2013-12-03,2013-12-03,"YB","BB","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-BBq2",2013-12-03,2013-12-03,"YB","BB","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to blur"
+"2013-12-03_YB-BBq9",2013-12-03,2013-12-03,"YB","BB","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-12-03_YB-BBq1",2013-12-03,2013-12-03,"YB","BB","1","Myt","Mytilus_spp","Type 7",358,0.0875,4091.42857142857,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-BBq2",2013-12-03,2013-12-03,"YB","BB","2","Myt","Mytilus_spp","Type 7",339,0.0875,3874.28571428571,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to blur"
+"2013-12-03_YB-BBq9",2013-12-03,2013-12-03,"YB","BB","9","Myt","Mytilus_spp","Type 7",192,0.0875,2194.28571428571,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-12-03_YB-BBq1",2013-12-03,2013-12-03,"YB","BB","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-BBq2",2013-12-03,2013-12-03,"YB","BB","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to blur"
+"2013-12-03_YB-BBq9",2013-12-03,2013-12-03,"YB","BB","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-12-03_YB-BBq1",2013-12-03,2013-12-03,"YB","BB","1","Mt","Mytilus_trossulus","Type 15",8,0.0875,91.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-BBq2",2013-12-03,2013-12-03,"YB","BB","2","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to blur"
+"2013-12-03_YB-BBq9",2013-12-03,2013-12-03,"YB","BB","9","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-12-03_YB-BBq1",2013-12-03,2013-12-03,"YB","BB","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-BBq2",2013-12-03,2013-12-03,"YB","BB","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to blur"
+"2013-12-03_YB-BBq9",2013-12-03,2013-12-03,"YB","BB","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-12-03_YB-BBq1",2013-12-03,2013-12-03,"YB","BB","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-BBq2",2013-12-03,2013-12-03,"YB","BB","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to blur"
+"2013-12-03_YB-BBq9",2013-12-03,2013-12-03,"YB","BB","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-12-03_YB-BBq1",2013-12-03,2013-12-03,"YB","BB","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-BBq2",2013-12-03,2013-12-03,"YB","BB","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to blur"
+"2013-12-03_YB-BBq9",2013-12-03,2013-12-03,"YB","BB","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-12-03_YB-BBq1",2013-12-03,2013-12-03,"YB","BB","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-BBq2",2013-12-03,2013-12-03,"YB","BB","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to blur"
+"2013-12-03_YB-BBq9",2013-12-03,2013-12-03,"YB","BB","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-12-03_YB-BBq1",2013-12-03,2013-12-03,"YB","BB","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-BBq2",2013-12-03,2013-12-03,"YB","BB","2","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to blur"
+"2013-12-03_YB-BBq9",2013-12-03,2013-12-03,"YB","BB","9","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-12-03_YB-BBq1",2013-12-03,2013-12-03,"YB","BB","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-BBq2",2013-12-03,2013-12-03,"YB","BB","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to blur"
+"2013-12-03_YB-BBq9",2013-12-03,2013-12-03,"YB","BB","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-12-03_YB-BBq1",2013-12-03,2013-12-03,"YB","BB","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-BBq2",2013-12-03,2013-12-03,"YB","BB","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to blur"
+"2013-12-03_YB-BBq9",2013-12-03,2013-12-03,"YB","BB","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-12-03_YB-BBq1",2013-12-03,2013-12-03,"YB","BB","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-BBq2",2013-12-03,2013-12-03,"YB","BB","2","Pp","Pollicipes_polymerus","Type 11",6,0.0875,68.5714285714286,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to blur"
+"2013-12-03_YB-BBq9",2013-12-03,2013-12-03,"YB","BB","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-12-03_YB-BBq1",2013-12-03,2013-12-03,"YB","BB","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-BBq2",2013-12-03,2013-12-03,"YB","BB","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to blur"
+"2013-12-03_YB-BBq9",2013-12-03,2013-12-03,"YB","BB","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-12-03_YB-BBq1",2013-12-03,2013-12-03,"YB","BB","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-BBq2",2013-12-03,2013-12-03,"YB","BB","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to blur"
+"2013-12-03_YB-BBq9",2013-12-03,2013-12-03,"YB","BB","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-12-03_YB-BBq1",2013-12-03,2013-12-03,"YB","BB","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-BBq2",2013-12-03,2013-12-03,"YB","BB","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to blur"
+"2013-12-03_YB-BBq9",2013-12-03,2013-12-03,"YB","BB","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2013-12-03_YB-BCq3",2013-12-03,2013-12-03,"YB","BC","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts may be low due to glare."
+"2013-12-03_YB-BCq5",2013-12-03,2013-12-03,"YB","BC","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","",""
+"2013-12-03_YB-BCq9",2013-12-03,2013-12-03,"YB","BC","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-12-03_YB-BCq3",2013-12-03,2013-12-03,"YB","BC","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts may be low due to glare."
+"2013-12-03_YB-BCq5",2013-12-03,2013-12-03,"YB","BC","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","",""
+"2013-12-03_YB-BCq9",2013-12-03,2013-12-03,"YB","BC","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-12-03_YB-BCq3",2013-12-03,2013-12-03,"YB","BC","3","Bg","Balanus_glandula","Type 1",1351,0.015625,86464,"c","Stephanie Merhoff","Finished","Full","Cropped","2%","Counts may be low due to glare."
+"2013-12-03_YB-BCq5",2013-12-03,2013-12-03,"YB","BC","5","Bg","Balanus_glandula","Type 1",1353,0.015625,86592,"c","Stephanie Merhoff","Finished","Full","Cropped","",""
+"2013-12-03_YB-BCq9",2013-12-03,2013-12-03,"YB","BC","9","Bg","Balanus_glandula","Type 1",1647,0.015625,105408,"c","Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-12-03_YB-BCq3",2013-12-03,2013-12-03,"YB","BC","3","BgD","Balanus_glandula_(dead)","Type 2",1,0.015625,64,"c","Stephanie Merhoff","Finished","Full","Cropped","2%","Counts may be low due to glare."
+"2013-12-03_YB-BCq5",2013-12-03,2013-12-03,"YB","BC","5","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","",""
+"2013-12-03_YB-BCq9",2013-12-03,2013-12-03,"YB","BC","9","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-12-03_YB-BCq3",2013-12-03,2013-12-03,"YB","BC","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts may be low due to glare."
+"2013-12-03_YB-BCq5",2013-12-03,2013-12-03,"YB","BC","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","",""
+"2013-12-03_YB-BCq9",2013-12-03,2013-12-03,"YB","BC","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-12-03_YB-BCq3",2013-12-03,2013-12-03,"YB","BC","3","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","2%","Counts may be low due to glare."
+"2013-12-03_YB-BCq5",2013-12-03,2013-12-03,"YB","BC","5","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","",""
+"2013-12-03_YB-BCq9",2013-12-03,2013-12-03,"YB","BC","9","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-12-03_YB-BCq3",2013-12-03,2013-12-03,"YB","BC","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","2%","Counts may be low due to glare."
+"2013-12-03_YB-BCq5",2013-12-03,2013-12-03,"YB","BC","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","",""
+"2013-12-03_YB-BCq9",2013-12-03,2013-12-03,"YB","BC","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-12-03_YB-BCq3",2013-12-03,2013-12-03,"YB","BC","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts may be low due to glare."
+"2013-12-03_YB-BCq5",2013-12-03,2013-12-03,"YB","BC","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","",""
+"2013-12-03_YB-BCq9",2013-12-03,2013-12-03,"YB","BC","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-12-03_YB-BCq3",2013-12-03,2013-12-03,"YB","BC","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts may be low due to glare."
+"2013-12-03_YB-BCq5",2013-12-03,2013-12-03,"YB","BC","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","",""
+"2013-12-03_YB-BCq9",2013-12-03,2013-12-03,"YB","BC","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-12-03_YB-BCq3",2013-12-03,2013-12-03,"YB","BC","3","Lim","Limpets","Type 12",24,0.0875,274.285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts may be low due to glare."
+"2013-12-03_YB-BCq5",2013-12-03,2013-12-03,"YB","BC","5","Lim","Limpets","Type 12",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","",""
+"2013-12-03_YB-BCq9",2013-12-03,2013-12-03,"YB","BC","9","Lim","Limpets","Type 12",6,0.0875,68.5714285714286,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-12-03_YB-BCq3",2013-12-03,2013-12-03,"YB","BC","3","Ls","Littorina_sitkana","Type 13",140,0.0875,1600,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts may be low due to glare."
+"2013-12-03_YB-BCq5",2013-12-03,2013-12-03,"YB","BC","5","Ls","Littorina_sitkana","Type 13",92,0.0875,1051.42857142857,NA,"Stephanie Merhoff","Finished","Full","Cropped","",""
+"2013-12-03_YB-BCq9",2013-12-03,2013-12-03,"YB","BC","9","Ls","Littorina_sitkana","Type 13",99,0.0875,1131.42857142857,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-12-03_YB-BCq3",2013-12-03,2013-12-03,"YB","BC","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts may be low due to glare."
+"2013-12-03_YB-BCq5",2013-12-03,2013-12-03,"YB","BC","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","",""
+"2013-12-03_YB-BCq9",2013-12-03,2013-12-03,"YB","BC","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-12-03_YB-BCq3",2013-12-03,2013-12-03,"YB","BC","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts may be low due to glare."
+"2013-12-03_YB-BCq5",2013-12-03,2013-12-03,"YB","BC","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","",""
+"2013-12-03_YB-BCq9",2013-12-03,2013-12-03,"YB","BC","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-12-03_YB-BCq3",2013-12-03,2013-12-03,"YB","BC","3","Myt","Mytilus_spp","Type 7",191,0.0875,2182.85714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts may be low due to glare."
+"2013-12-03_YB-BCq5",2013-12-03,2013-12-03,"YB","BC","5","Myt","Mytilus_spp","Type 7",390,0.0875,4457.14285714286,NA,"Stephanie Merhoff","Finished","Full","Cropped","",""
+"2013-12-03_YB-BCq9",2013-12-03,2013-12-03,"YB","BC","9","Myt","Mytilus_spp","Type 7",339,0.0875,3874.28571428571,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-12-03_YB-BCq3",2013-12-03,2013-12-03,"YB","BC","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts may be low due to glare."
+"2013-12-03_YB-BCq5",2013-12-03,2013-12-03,"YB","BC","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","",""
+"2013-12-03_YB-BCq9",2013-12-03,2013-12-03,"YB","BC","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-12-03_YB-BCq3",2013-12-03,2013-12-03,"YB","BC","3","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts may be low due to glare."
+"2013-12-03_YB-BCq5",2013-12-03,2013-12-03,"YB","BC","5","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","",""
+"2013-12-03_YB-BCq9",2013-12-03,2013-12-03,"YB","BC","9","Mt","Mytilus_trossulus","Type 15",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-12-03_YB-BCq3",2013-12-03,2013-12-03,"YB","BC","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts may be low due to glare."
+"2013-12-03_YB-BCq5",2013-12-03,2013-12-03,"YB","BC","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","",""
+"2013-12-03_YB-BCq9",2013-12-03,2013-12-03,"YB","BC","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-12-03_YB-BCq3",2013-12-03,2013-12-03,"YB","BC","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts may be low due to glare."
+"2013-12-03_YB-BCq5",2013-12-03,2013-12-03,"YB","BC","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","",""
+"2013-12-03_YB-BCq9",2013-12-03,2013-12-03,"YB","BC","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-12-03_YB-BCq3",2013-12-03,2013-12-03,"YB","BC","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts may be low due to glare."
+"2013-12-03_YB-BCq5",2013-12-03,2013-12-03,"YB","BC","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","",""
+"2013-12-03_YB-BCq9",2013-12-03,2013-12-03,"YB","BC","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-12-03_YB-BCq3",2013-12-03,2013-12-03,"YB","BC","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts may be low due to glare."
+"2013-12-03_YB-BCq5",2013-12-03,2013-12-03,"YB","BC","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","",""
+"2013-12-03_YB-BCq9",2013-12-03,2013-12-03,"YB","BC","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-12-03_YB-BCq3",2013-12-03,2013-12-03,"YB","BC","3","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts may be low due to glare."
+"2013-12-03_YB-BCq5",2013-12-03,2013-12-03,"YB","BC","5","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","",""
+"2013-12-03_YB-BCq9",2013-12-03,2013-12-03,"YB","BC","9","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-12-03_YB-BCq3",2013-12-03,2013-12-03,"YB","BC","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts may be low due to glare."
+"2013-12-03_YB-BCq5",2013-12-03,2013-12-03,"YB","BC","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","",""
+"2013-12-03_YB-BCq9",2013-12-03,2013-12-03,"YB","BC","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-12-03_YB-BCq3",2013-12-03,2013-12-03,"YB","BC","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts may be low due to glare."
+"2013-12-03_YB-BCq5",2013-12-03,2013-12-03,"YB","BC","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","",""
+"2013-12-03_YB-BCq9",2013-12-03,2013-12-03,"YB","BC","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-12-03_YB-BCq3",2013-12-03,2013-12-03,"YB","BC","3","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts may be low due to glare."
+"2013-12-03_YB-BCq5",2013-12-03,2013-12-03,"YB","BC","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","",""
+"2013-12-03_YB-BCq9",2013-12-03,2013-12-03,"YB","BC","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-12-03_YB-BCq3",2013-12-03,2013-12-03,"YB","BC","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts may be low due to glare."
+"2013-12-03_YB-BCq5",2013-12-03,2013-12-03,"YB","BC","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","",""
+"2013-12-03_YB-BCq9",2013-12-03,2013-12-03,"YB","BC","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-12-03_YB-BCq3",2013-12-03,2013-12-03,"YB","BC","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts may be low due to glare."
+"2013-12-03_YB-BCq5",2013-12-03,2013-12-03,"YB","BC","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","",""
+"2013-12-03_YB-BCq9",2013-12-03,2013-12-03,"YB","BC","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-12-03_YB-BCq3",2013-12-03,2013-12-03,"YB","BC","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts may be low due to glare."
+"2013-12-03_YB-BCq5",2013-12-03,2013-12-03,"YB","BC","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","",""
+"2013-12-03_YB-BCq9",2013-12-03,2013-12-03,"YB","BC","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare."
+"2013-12-03_YB-BDq1",2013-12-03,2013-12-03,"YB","BD","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","38%","Counts likely low due to blur and algae cover"
+"2013-12-03_YB-BDq5",2013-12-03,2013-12-03,"YB","BD","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","22%","Counts likely low due to blur and algae cover"
+"2013-12-03_YB-BDq7",2013-12-03,2013-12-03,"YB","BD","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","26%","Counts likely low due to blur and algae cover"
+"2013-12-03_YB-BDq1",2013-12-03,2013-12-03,"YB","BD","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","38%","Counts likely low due to blur and algae cover"
+"2013-12-03_YB-BDq5",2013-12-03,2013-12-03,"YB","BD","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","22%","Counts likely low due to blur and algae cover"
+"2013-12-03_YB-BDq7",2013-12-03,2013-12-03,"YB","BD","7","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","26%","Counts likely low due to blur and algae cover"
+"2013-12-03_YB-BDq1",2013-12-03,2013-12-03,"YB","BD","1","Bg","Balanus_glandula","Type 1",3394,0.015625,217216,"c","Julia Bingham","Finished","Full","Cropped","38%","Counts likely low due to blur and algae cover"
+"2013-12-03_YB-BDq5",2013-12-03,2013-12-03,"YB","BD","5","Bg","Balanus_glandula","Type 1",1391,0.015625,89024,"c","Julia Bingham","Finished","Full","Cropped","22%","Counts likely low due to blur and algae cover"
+"2013-12-03_YB-BDq7",2013-12-03,2013-12-03,"YB","BD","7","Bg","Balanus_glandula","Type 1",1885,0.015625,120640,"c","Julia Bingham","Finished","Full","Cropped","26%","Counts likely low due to blur and algae cover"
+"2013-12-03_YB-BDq1",2013-12-03,2013-12-03,"YB","BD","1","BgD","Balanus_glandula_(dead)","Type 2",34,0.015625,2176,"c","Julia Bingham","Finished","Full","Cropped","38%","Counts likely low due to blur and algae cover"
+"2013-12-03_YB-BDq5",2013-12-03,2013-12-03,"YB","BD","5","BgD","Balanus_glandula_(dead)","Type 2",19,0.015625,1216,"c","Julia Bingham","Finished","Full","Cropped","22%","Counts likely low due to blur and algae cover"
+"2013-12-03_YB-BDq7",2013-12-03,2013-12-03,"YB","BD","7","BgD","Balanus_glandula_(dead)","Type 2",53,0.015625,3392,"c","Julia Bingham","Finished","Full","Cropped","26%","Counts likely low due to blur and algae cover"
+"2013-12-03_YB-BDq1",2013-12-03,2013-12-03,"YB","BD","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","38%","Counts likely low due to blur and algae cover"
+"2013-12-03_YB-BDq5",2013-12-03,2013-12-03,"YB","BD","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","22%","Counts likely low due to blur and algae cover"
+"2013-12-03_YB-BDq7",2013-12-03,2013-12-03,"YB","BD","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","26%","Counts likely low due to blur and algae cover"
+"2013-12-03_YB-BDq1",2013-12-03,2013-12-03,"YB","BD","1","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Julia Bingham","Finished","Full","Cropped","38%","Counts likely low due to blur and algae cover"
+"2013-12-03_YB-BDq5",2013-12-03,2013-12-03,"YB","BD","5","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Julia Bingham","Finished","Full","Cropped","22%","Counts likely low due to blur and algae cover"
+"2013-12-03_YB-BDq7",2013-12-03,2013-12-03,"YB","BD","7","Cth","Chthamalus_dalli","Type 3",27,0.015625,1728,"c","Julia Bingham","Finished","Full","Cropped","26%","Counts likely low due to blur and algae cover"
+"2013-12-03_YB-BDq1",2013-12-03,2013-12-03,"YB","BD","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Julia Bingham","Finished","Full","Cropped","38%","Counts likely low due to blur and algae cover"
+"2013-12-03_YB-BDq5",2013-12-03,2013-12-03,"YB","BD","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Julia Bingham","Finished","Full","Cropped","22%","Counts likely low due to blur and algae cover"
+"2013-12-03_YB-BDq7",2013-12-03,2013-12-03,"YB","BD","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Julia Bingham","Finished","Full","Cropped","26%","Counts likely low due to blur and algae cover"
+"2013-12-03_YB-BDq1",2013-12-03,2013-12-03,"YB","BD","1","Emp","Emplectonema worm","Type 23",5,0.0875,57.1428571428571,NA,"Julia Bingham","Finished","Full","Cropped","38%","Counts likely low due to blur and algae cover"
+"2013-12-03_YB-BDq5",2013-12-03,2013-12-03,"YB","BD","5","Emp","Emplectonema worm","Type 23",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Cropped","22%","Counts likely low due to blur and algae cover"
+"2013-12-03_YB-BDq7",2013-12-03,2013-12-03,"YB","BD","7","Emp","Emplectonema worm","Type 23",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Cropped","26%","Counts likely low due to blur and algae cover"
+"2013-12-03_YB-BDq1",2013-12-03,2013-12-03,"YB","BD","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","38%","Counts likely low due to blur and algae cover"
+"2013-12-03_YB-BDq5",2013-12-03,2013-12-03,"YB","BD","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","22%","Counts likely low due to blur and algae cover"
+"2013-12-03_YB-BDq7",2013-12-03,2013-12-03,"YB","BD","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","26%","Counts likely low due to blur and algae cover"
+"2013-12-03_YB-BDq1",2013-12-03,2013-12-03,"YB","BD","1","Lim","Limpets","Type 12",159,0.0875,1817.14285714286,NA,"Julia Bingham","Finished","Full","Cropped","38%","Counts likely low due to blur and algae cover"
+"2013-12-03_YB-BDq5",2013-12-03,2013-12-03,"YB","BD","5","Lim","Limpets","Type 12",400,0.0875,4571.42857142857,NA,"Julia Bingham","Finished","Full","Cropped","22%","Counts likely low due to blur and algae cover"
+"2013-12-03_YB-BDq7",2013-12-03,2013-12-03,"YB","BD","7","Lim","Limpets","Type 12",336,0.0875,3840,NA,"Julia Bingham","Finished","Full","Cropped","26%","Counts likely low due to blur and algae cover"
+"2013-12-03_YB-BDq1",2013-12-03,2013-12-03,"YB","BD","1","Ls","Littorina_sitkana","Type 13",217,0.0875,2480,NA,"Julia Bingham","Finished","Full","Cropped","38%","Counts likely low due to blur and algae cover"
+"2013-12-03_YB-BDq5",2013-12-03,2013-12-03,"YB","BD","5","Ls","Littorina_sitkana","Type 13",293,0.0875,3348.57142857143,NA,"Julia Bingham","Finished","Full","Cropped","22%","Counts likely low due to blur and algae cover"
+"2013-12-03_YB-BDq7",2013-12-03,2013-12-03,"YB","BD","7","Ls","Littorina_sitkana","Type 13",408,0.0875,4662.85714285714,NA,"Julia Bingham","Finished","Full","Cropped","26%","Counts likely low due to blur and algae cover"
+"2013-12-03_YB-BDq1",2013-12-03,2013-12-03,"YB","BD","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","38%","Counts likely low due to blur and algae cover"
+"2013-12-03_YB-BDq5",2013-12-03,2013-12-03,"YB","BD","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","22%","Counts likely low due to blur and algae cover"
+"2013-12-03_YB-BDq7",2013-12-03,2013-12-03,"YB","BD","7","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","26%","Counts likely low due to blur and algae cover"
+"2013-12-03_YB-BDq1",2013-12-03,2013-12-03,"YB","BD","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","38%","Counts likely low due to blur and algae cover"
+"2013-12-03_YB-BDq5",2013-12-03,2013-12-03,"YB","BD","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","22%","Counts likely low due to blur and algae cover"
+"2013-12-03_YB-BDq7",2013-12-03,2013-12-03,"YB","BD","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","26%","Counts likely low due to blur and algae cover"
+"2013-12-03_YB-BDq1",2013-12-03,2013-12-03,"YB","BD","1","Myt","Mytilus_spp","Type 7",594,0.0875,6788.57142857143,NA,"Julia Bingham","Finished","Full","Cropped","38%","Counts likely low due to blur and algae cover"
+"2013-12-03_YB-BDq5",2013-12-03,2013-12-03,"YB","BD","5","Myt","Mytilus_spp","Type 7",1277,0.0875,14594.2857142857,NA,"Julia Bingham","Finished","Full","Cropped","22%","Counts likely low due to blur and algae cover"
+"2013-12-03_YB-BDq7",2013-12-03,2013-12-03,"YB","BD","7","Myt","Mytilus_spp","Type 7",883,0.0875,10091.4285714286,NA,"Julia Bingham","Finished","Full","Cropped","26%","Counts likely low due to blur and algae cover"
+"2013-12-03_YB-BDq1",2013-12-03,2013-12-03,"YB","BD","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","38%","Counts likely low due to blur and algae cover"
+"2013-12-03_YB-BDq5",2013-12-03,2013-12-03,"YB","BD","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","22%","Counts likely low due to blur and algae cover"
+"2013-12-03_YB-BDq7",2013-12-03,2013-12-03,"YB","BD","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","26%","Counts likely low due to blur and algae cover"
+"2013-12-03_YB-BDq1",2013-12-03,2013-12-03,"YB","BD","1","Mt","Mytilus_trossulus","Type 15",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Cropped","38%","Counts likely low due to blur and algae cover"
+"2013-12-03_YB-BDq5",2013-12-03,2013-12-03,"YB","BD","5","Mt","Mytilus_trossulus","Type 15",17,0.0875,194.285714285714,NA,"Julia Bingham","Finished","Full","Cropped","22%","Counts likely low due to blur and algae cover"
+"2013-12-03_YB-BDq7",2013-12-03,2013-12-03,"YB","BD","7","Mt","Mytilus_trossulus","Type 15",147,0.0875,1680,NA,"Julia Bingham","Finished","Full","Cropped","26%","Counts likely low due to blur and algae cover"
+"2013-12-03_YB-BDq1",2013-12-03,2013-12-03,"YB","BD","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","38%","Counts likely low due to blur and algae cover"
+"2013-12-03_YB-BDq5",2013-12-03,2013-12-03,"YB","BD","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","22%","Counts likely low due to blur and algae cover"
+"2013-12-03_YB-BDq7",2013-12-03,2013-12-03,"YB","BD","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","26%","Counts likely low due to blur and algae cover"
+"2013-12-03_YB-BDq1",2013-12-03,2013-12-03,"YB","BD","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","38%","Counts likely low due to blur and algae cover"
+"2013-12-03_YB-BDq5",2013-12-03,2013-12-03,"YB","BD","5","Ner","Nereis_worm","Type 24",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Cropped","22%","Counts likely low due to blur and algae cover"
+"2013-12-03_YB-BDq7",2013-12-03,2013-12-03,"YB","BD","7","Ner","Nereis_worm","Type 24",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Cropped","26%","Counts likely low due to blur and algae cover"
+"2013-12-03_YB-BDq1",2013-12-03,2013-12-03,"YB","BD","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","38%","Counts likely low due to blur and algae cover"
+"2013-12-03_YB-BDq5",2013-12-03,2013-12-03,"YB","BD","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","22%","Counts likely low due to blur and algae cover"
+"2013-12-03_YB-BDq7",2013-12-03,2013-12-03,"YB","BD","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","26%","Counts likely low due to blur and algae cover"
+"2013-12-03_YB-BDq1",2013-12-03,2013-12-03,"YB","BD","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","38%","Counts likely low due to blur and algae cover"
+"2013-12-03_YB-BDq5",2013-12-03,2013-12-03,"YB","BD","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","22%","Counts likely low due to blur and algae cover"
+"2013-12-03_YB-BDq7",2013-12-03,2013-12-03,"YB","BD","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","26%","Counts likely low due to blur and algae cover"
+"2013-12-03_YB-BDq1",2013-12-03,2013-12-03,"YB","BD","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","38%","Counts likely low due to blur and algae cover"
+"2013-12-03_YB-BDq5",2013-12-03,2013-12-03,"YB","BD","5","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","22%","Counts likely low due to blur and algae cover"
+"2013-12-03_YB-BDq7",2013-12-03,2013-12-03,"YB","BD","7","No","Nucella_ostrina","Type 9",6,0.0875,68.5714285714286,NA,"Julia Bingham","Finished","Full","Cropped","26%","Counts likely low due to blur and algae cover"
+"2013-12-03_YB-BDq1",2013-12-03,2013-12-03,"YB","BD","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","38%","Counts likely low due to blur and algae cover"
+"2013-12-03_YB-BDq5",2013-12-03,2013-12-03,"YB","BD","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","22%","Counts likely low due to blur and algae cover"
+"2013-12-03_YB-BDq7",2013-12-03,2013-12-03,"YB","BD","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","26%","Counts likely low due to blur and algae cover"
+"2013-12-03_YB-BDq1",2013-12-03,2013-12-03,"YB","BD","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","38%","Counts likely low due to blur and algae cover"
+"2013-12-03_YB-BDq5",2013-12-03,2013-12-03,"YB","BD","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","22%","Counts likely low due to blur and algae cover"
+"2013-12-03_YB-BDq7",2013-12-03,2013-12-03,"YB","BD","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","26%","Counts likely low due to blur and algae cover"
+"2013-12-03_YB-BDq1",2013-12-03,2013-12-03,"YB","BD","1","Pp","Pollicipes_polymerus","Type 11",3,0.0875,34.2857142857143,NA,"Julia Bingham","Finished","Full","Cropped","38%","Counts likely low due to blur and algae cover"
+"2013-12-03_YB-BDq5",2013-12-03,2013-12-03,"YB","BD","5","Pp","Pollicipes_polymerus","Type 11",16,0.0875,182.857142857143,NA,"Julia Bingham","Finished","Full","Cropped","22%","Counts likely low due to blur and algae cover"
+"2013-12-03_YB-BDq7",2013-12-03,2013-12-03,"YB","BD","7","Pp","Pollicipes_polymerus","Type 11",48,0.0875,548.571428571429,NA,"Julia Bingham","Finished","Full","Cropped","26%","Counts likely low due to blur and algae cover"
+"2013-12-03_YB-BDq1",2013-12-03,2013-12-03,"YB","BD","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","38%","Counts likely low due to blur and algae cover"
+"2013-12-03_YB-BDq5",2013-12-03,2013-12-03,"YB","BD","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","22%","Counts likely low due to blur and algae cover"
+"2013-12-03_YB-BDq7",2013-12-03,2013-12-03,"YB","BD","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","26%","Counts likely low due to blur and algae cover"
+"2013-12-03_YB-BDq1",2013-12-03,2013-12-03,"YB","BD","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","38%","Counts likely low due to blur and algae cover"
+"2013-12-03_YB-BDq5",2013-12-03,2013-12-03,"YB","BD","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","22%","Counts likely low due to blur and algae cover"
+"2013-12-03_YB-BDq7",2013-12-03,2013-12-03,"YB","BD","7","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","26%","Counts likely low due to blur and algae cover"
+"2013-12-03_YB-BDq1",2013-12-03,2013-12-03,"YB","BD","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","38%","Counts likely low due to blur and algae cover"
+"2013-12-03_YB-BDq5",2013-12-03,2013-12-03,"YB","BD","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","22%","Counts likely low due to blur and algae cover"
+"2013-12-03_YB-BDq7",2013-12-03,2013-12-03,"YB","BD","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","26%","Counts likely low due to blur and algae cover"
+"2013-12-03_YB-BEq2",2013-12-03,2013-12-03,"YB","BE","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to glare"
+"2013-12-03_YB-BEq3",2013-12-03,2013-12-03,"YB","BE","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Algae is a thin film."
+"2013-12-03_YB-BEq6",2013-12-03,2013-12-03,"YB","BE","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-BEq2",2013-12-03,2013-12-03,"YB","BE","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to glare"
+"2013-12-03_YB-BEq3",2013-12-03,2013-12-03,"YB","BE","3","Ae","Anemones","Type 14",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Algae is a thin film."
+"2013-12-03_YB-BEq6",2013-12-03,2013-12-03,"YB","BE","6","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-BEq2",2013-12-03,2013-12-03,"YB","BE","2","Bg","Balanus_glandula","Type 1",804,0.015625,51456,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to glare"
+"2013-12-03_YB-BEq3",2013-12-03,2013-12-03,"YB","BE","3","Bg","Balanus_glandula","Type 1",1361,0.015625,87104,"c","Beatriz Vaca","Finished","Full","Cropped","45%","Algae is a thin film."
+"2013-12-03_YB-BEq6",2013-12-03,2013-12-03,"YB","BE","6","Bg","Balanus_glandula","Type 1",1664,0.015625,106496,"c","Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-BEq2",2013-12-03,2013-12-03,"YB","BE","2","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to glare"
+"2013-12-03_YB-BEq3",2013-12-03,2013-12-03,"YB","BE","3","BgD","Balanus_glandula_(dead)","Type 2",6,0.015625,384,"c","Beatriz Vaca","Finished","Full","Cropped","45%","Algae is a thin film."
+"2013-12-03_YB-BEq6",2013-12-03,2013-12-03,"YB","BE","6","BgD","Balanus_glandula_(dead)","Type 2",8,0.015625,512,"c","Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-BEq2",2013-12-03,2013-12-03,"YB","BE","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to glare"
+"2013-12-03_YB-BEq3",2013-12-03,2013-12-03,"YB","BE","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Algae is a thin film."
+"2013-12-03_YB-BEq6",2013-12-03,2013-12-03,"YB","BE","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-BEq2",2013-12-03,2013-12-03,"YB","BE","2","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to glare"
+"2013-12-03_YB-BEq3",2013-12-03,2013-12-03,"YB","BE","3","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","45%","Algae is a thin film."
+"2013-12-03_YB-BEq6",2013-12-03,2013-12-03,"YB","BE","6","Cth","Chthamalus_dalli","Type 3",5,0.015625,320,"c","Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-BEq2",2013-12-03,2013-12-03,"YB","BE","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to glare"
+"2013-12-03_YB-BEq3",2013-12-03,2013-12-03,"YB","BE","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","45%","Algae is a thin film."
+"2013-12-03_YB-BEq6",2013-12-03,2013-12-03,"YB","BE","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-BEq2",2013-12-03,2013-12-03,"YB","BE","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to glare"
+"2013-12-03_YB-BEq3",2013-12-03,2013-12-03,"YB","BE","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Algae is a thin film."
+"2013-12-03_YB-BEq6",2013-12-03,2013-12-03,"YB","BE","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-BEq2",2013-12-03,2013-12-03,"YB","BE","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to glare"
+"2013-12-03_YB-BEq3",2013-12-03,2013-12-03,"YB","BE","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Algae is a thin film."
+"2013-12-03_YB-BEq6",2013-12-03,2013-12-03,"YB","BE","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-BEq2",2013-12-03,2013-12-03,"YB","BE","2","Lim","Limpets","Type 12",27,0.0875,308.571428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to glare"
+"2013-12-03_YB-BEq3",2013-12-03,2013-12-03,"YB","BE","3","Lim","Limpets","Type 12",577,0.0875,6594.28571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Algae is a thin film."
+"2013-12-03_YB-BEq6",2013-12-03,2013-12-03,"YB","BE","6","Lim","Limpets","Type 12",657,0.0875,7508.57142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-BEq2",2013-12-03,2013-12-03,"YB","BE","2","Ls","Littorina_sitkana","Type 13",95,0.0875,1085.71428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to glare"
+"2013-12-03_YB-BEq3",2013-12-03,2013-12-03,"YB","BE","3","Ls","Littorina_sitkana","Type 13",268,0.0875,3062.85714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Algae is a thin film."
+"2013-12-03_YB-BEq6",2013-12-03,2013-12-03,"YB","BE","6","Ls","Littorina_sitkana","Type 13",334,0.0875,3817.14285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-BEq2",2013-12-03,2013-12-03,"YB","BE","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to glare"
+"2013-12-03_YB-BEq3",2013-12-03,2013-12-03,"YB","BE","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Algae is a thin film."
+"2013-12-03_YB-BEq6",2013-12-03,2013-12-03,"YB","BE","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-BEq2",2013-12-03,2013-12-03,"YB","BE","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to glare"
+"2013-12-03_YB-BEq3",2013-12-03,2013-12-03,"YB","BE","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Algae is a thin film."
+"2013-12-03_YB-BEq6",2013-12-03,2013-12-03,"YB","BE","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-BEq2",2013-12-03,2013-12-03,"YB","BE","2","Myt","Mytilus_spp","Type 7",141,0.0875,1611.42857142857,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to glare"
+"2013-12-03_YB-BEq3",2013-12-03,2013-12-03,"YB","BE","3","Myt","Mytilus_spp","Type 7",458,0.0875,5234.28571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Algae is a thin film."
+"2013-12-03_YB-BEq6",2013-12-03,2013-12-03,"YB","BE","6","Myt","Mytilus_spp","Type 7",464,0.0875,5302.85714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-BEq2",2013-12-03,2013-12-03,"YB","BE","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to glare"
+"2013-12-03_YB-BEq3",2013-12-03,2013-12-03,"YB","BE","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Algae is a thin film."
+"2013-12-03_YB-BEq6",2013-12-03,2013-12-03,"YB","BE","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-BEq2",2013-12-03,2013-12-03,"YB","BE","2","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to glare"
+"2013-12-03_YB-BEq3",2013-12-03,2013-12-03,"YB","BE","3","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Algae is a thin film."
+"2013-12-03_YB-BEq6",2013-12-03,2013-12-03,"YB","BE","6","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-BEq2",2013-12-03,2013-12-03,"YB","BE","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to glare"
+"2013-12-03_YB-BEq3",2013-12-03,2013-12-03,"YB","BE","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Algae is a thin film."
+"2013-12-03_YB-BEq6",2013-12-03,2013-12-03,"YB","BE","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-BEq2",2013-12-03,2013-12-03,"YB","BE","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to glare"
+"2013-12-03_YB-BEq3",2013-12-03,2013-12-03,"YB","BE","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Algae is a thin film."
+"2013-12-03_YB-BEq6",2013-12-03,2013-12-03,"YB","BE","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-BEq2",2013-12-03,2013-12-03,"YB","BE","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to glare"
+"2013-12-03_YB-BEq3",2013-12-03,2013-12-03,"YB","BE","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Algae is a thin film."
+"2013-12-03_YB-BEq6",2013-12-03,2013-12-03,"YB","BE","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-BEq2",2013-12-03,2013-12-03,"YB","BE","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to glare"
+"2013-12-03_YB-BEq3",2013-12-03,2013-12-03,"YB","BE","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Algae is a thin film."
+"2013-12-03_YB-BEq6",2013-12-03,2013-12-03,"YB","BE","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-BEq2",2013-12-03,2013-12-03,"YB","BE","2","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to glare"
+"2013-12-03_YB-BEq3",2013-12-03,2013-12-03,"YB","BE","3","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Algae is a thin film."
+"2013-12-03_YB-BEq6",2013-12-03,2013-12-03,"YB","BE","6","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-BEq2",2013-12-03,2013-12-03,"YB","BE","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to glare"
+"2013-12-03_YB-BEq3",2013-12-03,2013-12-03,"YB","BE","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Algae is a thin film."
+"2013-12-03_YB-BEq6",2013-12-03,2013-12-03,"YB","BE","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-BEq2",2013-12-03,2013-12-03,"YB","BE","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to glare"
+"2013-12-03_YB-BEq3",2013-12-03,2013-12-03,"YB","BE","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Algae is a thin film."
+"2013-12-03_YB-BEq6",2013-12-03,2013-12-03,"YB","BE","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-BEq2",2013-12-03,2013-12-03,"YB","BE","2","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to glare"
+"2013-12-03_YB-BEq3",2013-12-03,2013-12-03,"YB","BE","3","Pp","Pollicipes_polymerus","Type 11",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Algae is a thin film."
+"2013-12-03_YB-BEq6",2013-12-03,2013-12-03,"YB","BE","6","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-BEq2",2013-12-03,2013-12-03,"YB","BE","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to glare"
+"2013-12-03_YB-BEq3",2013-12-03,2013-12-03,"YB","BE","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Algae is a thin film."
+"2013-12-03_YB-BEq6",2013-12-03,2013-12-03,"YB","BE","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-BEq2",2013-12-03,2013-12-03,"YB","BE","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to glare"
+"2013-12-03_YB-BEq3",2013-12-03,2013-12-03,"YB","BE","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Algae is a thin film."
+"2013-12-03_YB-BEq6",2013-12-03,2013-12-03,"YB","BE","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-BEq2",2013-12-03,2013-12-03,"YB","BE","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to glare"
+"2013-12-03_YB-BEq3",2013-12-03,2013-12-03,"YB","BE","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Algae is a thin film."
+"2013-12-03_YB-BEq6",2013-12-03,2013-12-03,"YB","BE","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-BFq1",2013-12-03,2013-12-03,"YB","BF","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Algae is a thin film."
+"2013-12-03_YB-BFq4",2013-12-03,2013-12-03,"YB","BF","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2013-12-03_YB-BFq9",2013-12-03,2013-12-03,"YB","BF","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","5%","large amount (40%) of bare/recently exposed rock; mussel and littorine counts low due to glare"
+"2013-12-03_YB-BFq1",2013-12-03,2013-12-03,"YB","BF","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Algae is a thin film."
+"2013-12-03_YB-BFq4",2013-12-03,2013-12-03,"YB","BF","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2013-12-03_YB-BFq9",2013-12-03,2013-12-03,"YB","BF","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","5%","large amount (40%) of bare/recently exposed rock; mussel and littorine counts low due to glare"
+"2013-12-03_YB-BFq1",2013-12-03,2013-12-03,"YB","BF","1","Bg","Balanus_glandula","Type 1",1308,0.015625,83712,"c","Beatriz Vaca","Finished","Full","Cropped","50%","Algae is a thin film."
+"2013-12-03_YB-BFq4",2013-12-03,2013-12-03,"YB","BF","4","Bg","Balanus_glandula","Type 1",1279,0.015625,81856,"c","Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2013-12-03_YB-BFq9",2013-12-03,2013-12-03,"YB","BF","9","Bg","Balanus_glandula","Type 1",571,0.015625,36544,"c","Julia Bingham","Finished","Full","Cropped","5%","large amount (40%) of bare/recently exposed rock; mussel and littorine counts low due to glare"
+"2013-12-03_YB-BFq1",2013-12-03,2013-12-03,"YB","BF","1","BgD","Balanus_glandula_(dead)","Type 2",6,0.015625,384,"c","Beatriz Vaca","Finished","Full","Cropped","50%","Algae is a thin film."
+"2013-12-03_YB-BFq4",2013-12-03,2013-12-03,"YB","BF","4","BgD","Balanus_glandula_(dead)","Type 2",9,0.015625,576,"c","Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2013-12-03_YB-BFq9",2013-12-03,2013-12-03,"YB","BF","9","BgD","Balanus_glandula_(dead)","Type 2",55,0.015625,3520,"c","Julia Bingham","Finished","Full","Cropped","5%","large amount (40%) of bare/recently exposed rock; mussel and littorine counts low due to glare"
+"2013-12-03_YB-BFq1",2013-12-03,2013-12-03,"YB","BF","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Algae is a thin film."
+"2013-12-03_YB-BFq4",2013-12-03,2013-12-03,"YB","BF","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2013-12-03_YB-BFq9",2013-12-03,2013-12-03,"YB","BF","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","5%","large amount (40%) of bare/recently exposed rock; mussel and littorine counts low due to glare"
+"2013-12-03_YB-BFq1",2013-12-03,2013-12-03,"YB","BF","1","Cth","Chthamalus_dalli","Type 3",1,0.015625,64,"c","Beatriz Vaca","Finished","Full","Cropped","50%","Algae is a thin film."
+"2013-12-03_YB-BFq4",2013-12-03,2013-12-03,"YB","BF","4","Cth","Chthamalus_dalli","Type 3",4,0.015625,256,"c","Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2013-12-03_YB-BFq9",2013-12-03,2013-12-03,"YB","BF","9","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Julia Bingham","Finished","Full","Cropped","5%","large amount (40%) of bare/recently exposed rock; mussel and littorine counts low due to glare"
+"2013-12-03_YB-BFq1",2013-12-03,2013-12-03,"YB","BF","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","50%","Algae is a thin film."
+"2013-12-03_YB-BFq4",2013-12-03,2013-12-03,"YB","BF","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2013-12-03_YB-BFq9",2013-12-03,2013-12-03,"YB","BF","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Julia Bingham","Finished","Full","Cropped","5%","large amount (40%) of bare/recently exposed rock; mussel and littorine counts low due to glare"
+"2013-12-03_YB-BFq1",2013-12-03,2013-12-03,"YB","BF","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Algae is a thin film."
+"2013-12-03_YB-BFq4",2013-12-03,2013-12-03,"YB","BF","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2013-12-03_YB-BFq9",2013-12-03,2013-12-03,"YB","BF","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","5%","large amount (40%) of bare/recently exposed rock; mussel and littorine counts low due to glare"
+"2013-12-03_YB-BFq1",2013-12-03,2013-12-03,"YB","BF","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Algae is a thin film."
+"2013-12-03_YB-BFq4",2013-12-03,2013-12-03,"YB","BF","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2013-12-03_YB-BFq9",2013-12-03,2013-12-03,"YB","BF","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","5%","large amount (40%) of bare/recently exposed rock; mussel and littorine counts low due to glare"
+"2013-12-03_YB-BFq1",2013-12-03,2013-12-03,"YB","BF","1","Lim","Limpets","Type 12",746,0.0875,8525.71428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Algae is a thin film."
+"2013-12-03_YB-BFq4",2013-12-03,2013-12-03,"YB","BF","4","Lim","Limpets","Type 12",474,0.0875,5417.14285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2013-12-03_YB-BFq9",2013-12-03,2013-12-03,"YB","BF","9","Lim","Limpets","Type 12",53,0.0875,605.714285714286,NA,"Julia Bingham","Finished","Full","Cropped","5%","large amount (40%) of bare/recently exposed rock; mussel and littorine counts low due to glare"
+"2013-12-03_YB-BFq1",2013-12-03,2013-12-03,"YB","BF","1","Ls","Littorina_sitkana","Type 13",297,0.0875,3394.28571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Algae is a thin film."
+"2013-12-03_YB-BFq4",2013-12-03,2013-12-03,"YB","BF","4","Ls","Littorina_sitkana","Type 13",249,0.0875,2845.71428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2013-12-03_YB-BFq9",2013-12-03,2013-12-03,"YB","BF","9","Ls","Littorina_sitkana","Type 13",262,0.0875,2994.28571428571,NA,"Julia Bingham","Finished","Full","Cropped","5%","large amount (40%) of bare/recently exposed rock; mussel and littorine counts low due to glare"
+"2013-12-03_YB-BFq1",2013-12-03,2013-12-03,"YB","BF","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Algae is a thin film."
+"2013-12-03_YB-BFq4",2013-12-03,2013-12-03,"YB","BF","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2013-12-03_YB-BFq9",2013-12-03,2013-12-03,"YB","BF","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","5%","large amount (40%) of bare/recently exposed rock; mussel and littorine counts low due to glare"
+"2013-12-03_YB-BFq1",2013-12-03,2013-12-03,"YB","BF","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Algae is a thin film."
+"2013-12-03_YB-BFq4",2013-12-03,2013-12-03,"YB","BF","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2013-12-03_YB-BFq9",2013-12-03,2013-12-03,"YB","BF","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","5%","large amount (40%) of bare/recently exposed rock; mussel and littorine counts low due to glare"
+"2013-12-03_YB-BFq1",2013-12-03,2013-12-03,"YB","BF","1","Myt","Mytilus_spp","Type 7",389,0.0875,4445.71428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Algae is a thin film."
+"2013-12-03_YB-BFq4",2013-12-03,2013-12-03,"YB","BF","4","Myt","Mytilus_spp","Type 7",404,0.0875,4617.14285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2013-12-03_YB-BFq9",2013-12-03,2013-12-03,"YB","BF","9","Myt","Mytilus_spp","Type 7",4096,0.0875,46811.4285714286,NA,"Julia Bingham","Finished","Full","Cropped","5%","large amount (40%) of bare/recently exposed rock; mussel and littorine counts low due to glare"
+"2013-12-03_YB-BFq1",2013-12-03,2013-12-03,"YB","BF","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Algae is a thin film."
+"2013-12-03_YB-BFq4",2013-12-03,2013-12-03,"YB","BF","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2013-12-03_YB-BFq9",2013-12-03,2013-12-03,"YB","BF","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","5%","large amount (40%) of bare/recently exposed rock; mussel and littorine counts low due to glare"
+"2013-12-03_YB-BFq1",2013-12-03,2013-12-03,"YB","BF","1","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Algae is a thin film."
+"2013-12-03_YB-BFq4",2013-12-03,2013-12-03,"YB","BF","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2013-12-03_YB-BFq9",2013-12-03,2013-12-03,"YB","BF","9","Mt","Mytilus_trossulus","Type 15",160,0.0875,1828.57142857143,NA,"Julia Bingham","Finished","Full","Cropped","5%","large amount (40%) of bare/recently exposed rock; mussel and littorine counts low due to glare"
+"2013-12-03_YB-BFq1",2013-12-03,2013-12-03,"YB","BF","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Algae is a thin film."
+"2013-12-03_YB-BFq4",2013-12-03,2013-12-03,"YB","BF","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2013-12-03_YB-BFq9",2013-12-03,2013-12-03,"YB","BF","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","5%","large amount (40%) of bare/recently exposed rock; mussel and littorine counts low due to glare"
+"2013-12-03_YB-BFq1",2013-12-03,2013-12-03,"YB","BF","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Algae is a thin film."
+"2013-12-03_YB-BFq4",2013-12-03,2013-12-03,"YB","BF","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2013-12-03_YB-BFq9",2013-12-03,2013-12-03,"YB","BF","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","5%","large amount (40%) of bare/recently exposed rock; mussel and littorine counts low due to glare"
+"2013-12-03_YB-BFq1",2013-12-03,2013-12-03,"YB","BF","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Algae is a thin film."
+"2013-12-03_YB-BFq4",2013-12-03,2013-12-03,"YB","BF","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2013-12-03_YB-BFq9",2013-12-03,2013-12-03,"YB","BF","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","5%","large amount (40%) of bare/recently exposed rock; mussel and littorine counts low due to glare"
+"2013-12-03_YB-BFq1",2013-12-03,2013-12-03,"YB","BF","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Algae is a thin film."
+"2013-12-03_YB-BFq4",2013-12-03,2013-12-03,"YB","BF","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2013-12-03_YB-BFq9",2013-12-03,2013-12-03,"YB","BF","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","5%","large amount (40%) of bare/recently exposed rock; mussel and littorine counts low due to glare"
+"2013-12-03_YB-BFq1",2013-12-03,2013-12-03,"YB","BF","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Algae is a thin film."
+"2013-12-03_YB-BFq4",2013-12-03,2013-12-03,"YB","BF","4","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2013-12-03_YB-BFq9",2013-12-03,2013-12-03,"YB","BF","9","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Cropped","5%","large amount (40%) of bare/recently exposed rock; mussel and littorine counts low due to glare"
+"2013-12-03_YB-BFq1",2013-12-03,2013-12-03,"YB","BF","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Algae is a thin film."
+"2013-12-03_YB-BFq4",2013-12-03,2013-12-03,"YB","BF","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2013-12-03_YB-BFq9",2013-12-03,2013-12-03,"YB","BF","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","5%","large amount (40%) of bare/recently exposed rock; mussel and littorine counts low due to glare"
+"2013-12-03_YB-BFq1",2013-12-03,2013-12-03,"YB","BF","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Algae is a thin film."
+"2013-12-03_YB-BFq4",2013-12-03,2013-12-03,"YB","BF","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2013-12-03_YB-BFq9",2013-12-03,2013-12-03,"YB","BF","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","5%","large amount (40%) of bare/recently exposed rock; mussel and littorine counts low due to glare"
+"2013-12-03_YB-BFq1",2013-12-03,2013-12-03,"YB","BF","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Algae is a thin film."
+"2013-12-03_YB-BFq4",2013-12-03,2013-12-03,"YB","BF","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2013-12-03_YB-BFq9",2013-12-03,2013-12-03,"YB","BF","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","5%","large amount (40%) of bare/recently exposed rock; mussel and littorine counts low due to glare"
+"2013-12-03_YB-BFq1",2013-12-03,2013-12-03,"YB","BF","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Algae is a thin film."
+"2013-12-03_YB-BFq4",2013-12-03,2013-12-03,"YB","BF","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2013-12-03_YB-BFq9",2013-12-03,2013-12-03,"YB","BF","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","5%","large amount (40%) of bare/recently exposed rock; mussel and littorine counts low due to glare"
+"2013-12-03_YB-BFq1",2013-12-03,2013-12-03,"YB","BF","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Algae is a thin film."
+"2013-12-03_YB-BFq4",2013-12-03,2013-12-03,"YB","BF","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2013-12-03_YB-BFq9",2013-12-03,2013-12-03,"YB","BF","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","5%","large amount (40%) of bare/recently exposed rock; mussel and littorine counts low due to glare"
+"2013-12-03_YB-BFq1",2013-12-03,2013-12-03,"YB","BF","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Algae is a thin film."
+"2013-12-03_YB-BFq4",2013-12-03,2013-12-03,"YB","BF","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2013-12-03_YB-BFq9",2013-12-03,2013-12-03,"YB","BF","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","5%","large amount (40%) of bare/recently exposed rock; mussel and littorine counts low due to glare"
+"2013-12-03_YB-Cq2",2013-12-03,2013-12-03,"YB","C","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2013-12-03_YB-Cq4",2013-12-03,2013-12-03,"YB","C","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2013-12-03_YB-Cq6",2013-12-03,2013-12-03,"YB","C","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2013-12-03_YB-Cq2",2013-12-03,2013-12-03,"YB","C","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2013-12-03_YB-Cq4",2013-12-03,2013-12-03,"YB","C","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2013-12-03_YB-Cq6",2013-12-03,2013-12-03,"YB","C","6","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2013-12-03_YB-Cq2",2013-12-03,2013-12-03,"YB","C","2","Bg","Balanus_glandula","Type 1",1009,0.015625,64576,"c","Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2013-12-03_YB-Cq4",2013-12-03,2013-12-03,"YB","C","4","Bg","Balanus_glandula","Type 1",853,0.015625,54592,"c","Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2013-12-03_YB-Cq6",2013-12-03,2013-12-03,"YB","C","6","Bg","Balanus_glandula","Type 1",911,0.015625,58304,"c","Beatriz Vaca","Finished","Full","Cropped","20%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2013-12-03_YB-Cq2",2013-12-03,2013-12-03,"YB","C","2","BgD","Balanus_glandula_(dead)","Type 2",2,0.015625,128,"c","Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2013-12-03_YB-Cq4",2013-12-03,2013-12-03,"YB","C","4","BgD","Balanus_glandula_(dead)","Type 2",1,0.015625,64,"c","Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2013-12-03_YB-Cq6",2013-12-03,2013-12-03,"YB","C","6","BgD","Balanus_glandula_(dead)","Type 2",8,0.015625,512,"c","Beatriz Vaca","Finished","Full","Cropped","20%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2013-12-03_YB-Cq2",2013-12-03,2013-12-03,"YB","C","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2013-12-03_YB-Cq4",2013-12-03,2013-12-03,"YB","C","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2013-12-03_YB-Cq6",2013-12-03,2013-12-03,"YB","C","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2013-12-03_YB-Cq2",2013-12-03,2013-12-03,"YB","C","2","Cth","Chthamalus_dalli","Type 3",52,0.015625,3328,"c","Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2013-12-03_YB-Cq4",2013-12-03,2013-12-03,"YB","C","4","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2013-12-03_YB-Cq6",2013-12-03,2013-12-03,"YB","C","6","Cth","Chthamalus_dalli","Type 3",16,0.015625,1024,"c","Beatriz Vaca","Finished","Full","Cropped","20%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2013-12-03_YB-Cq2",2013-12-03,2013-12-03,"YB","C","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2013-12-03_YB-Cq4",2013-12-03,2013-12-03,"YB","C","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2013-12-03_YB-Cq6",2013-12-03,2013-12-03,"YB","C","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","20%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2013-12-03_YB-Cq2",2013-12-03,2013-12-03,"YB","C","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2013-12-03_YB-Cq4",2013-12-03,2013-12-03,"YB","C","4","Emp","Emplectonema worm","Type 23",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2013-12-03_YB-Cq6",2013-12-03,2013-12-03,"YB","C","6","Emp","Emplectonema worm","Type 23",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","20%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2013-12-03_YB-Cq2",2013-12-03,2013-12-03,"YB","C","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2013-12-03_YB-Cq4",2013-12-03,2013-12-03,"YB","C","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2013-12-03_YB-Cq6",2013-12-03,2013-12-03,"YB","C","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2013-12-03_YB-Cq2",2013-12-03,2013-12-03,"YB","C","2","Lim","Limpets","Type 12",33,0.0875,377.142857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2013-12-03_YB-Cq4",2013-12-03,2013-12-03,"YB","C","4","Lim","Limpets","Type 12",43,0.0875,491.428571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2013-12-03_YB-Cq6",2013-12-03,2013-12-03,"YB","C","6","Lim","Limpets","Type 12",85,0.0875,971.428571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","20%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2013-12-03_YB-Cq2",2013-12-03,2013-12-03,"YB","C","2","Ls","Littorina_sitkana","Type 13",33,0.0875,377.142857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2013-12-03_YB-Cq4",2013-12-03,2013-12-03,"YB","C","4","Ls","Littorina_sitkana","Type 13",23,0.0875,262.857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2013-12-03_YB-Cq6",2013-12-03,2013-12-03,"YB","C","6","Ls","Littorina_sitkana","Type 13",29,0.0875,331.428571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","20%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2013-12-03_YB-Cq2",2013-12-03,2013-12-03,"YB","C","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2013-12-03_YB-Cq4",2013-12-03,2013-12-03,"YB","C","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2013-12-03_YB-Cq6",2013-12-03,2013-12-03,"YB","C","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2013-12-03_YB-Cq2",2013-12-03,2013-12-03,"YB","C","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2013-12-03_YB-Cq4",2013-12-03,2013-12-03,"YB","C","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2013-12-03_YB-Cq6",2013-12-03,2013-12-03,"YB","C","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2013-12-03_YB-Cq2",2013-12-03,2013-12-03,"YB","C","2","Myt","Mytilus_spp","Type 7",693,0.0875,7920,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2013-12-03_YB-Cq4",2013-12-03,2013-12-03,"YB","C","4","Myt","Mytilus_spp","Type 7",442,0.0875,5051.42857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2013-12-03_YB-Cq6",2013-12-03,2013-12-03,"YB","C","6","Myt","Mytilus_spp","Type 7",271,0.0875,3097.14285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","20%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2013-12-03_YB-Cq2",2013-12-03,2013-12-03,"YB","C","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2013-12-03_YB-Cq4",2013-12-03,2013-12-03,"YB","C","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2013-12-03_YB-Cq6",2013-12-03,2013-12-03,"YB","C","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2013-12-03_YB-Cq2",2013-12-03,2013-12-03,"YB","C","2","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2013-12-03_YB-Cq4",2013-12-03,2013-12-03,"YB","C","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2013-12-03_YB-Cq6",2013-12-03,2013-12-03,"YB","C","6","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2013-12-03_YB-Cq2",2013-12-03,2013-12-03,"YB","C","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2013-12-03_YB-Cq4",2013-12-03,2013-12-03,"YB","C","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2013-12-03_YB-Cq6",2013-12-03,2013-12-03,"YB","C","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2013-12-03_YB-Cq2",2013-12-03,2013-12-03,"YB","C","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2013-12-03_YB-Cq4",2013-12-03,2013-12-03,"YB","C","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2013-12-03_YB-Cq6",2013-12-03,2013-12-03,"YB","C","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2013-12-03_YB-Cq2",2013-12-03,2013-12-03,"YB","C","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2013-12-03_YB-Cq4",2013-12-03,2013-12-03,"YB","C","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2013-12-03_YB-Cq6",2013-12-03,2013-12-03,"YB","C","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2013-12-03_YB-Cq2",2013-12-03,2013-12-03,"YB","C","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2013-12-03_YB-Cq4",2013-12-03,2013-12-03,"YB","C","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2013-12-03_YB-Cq6",2013-12-03,2013-12-03,"YB","C","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2013-12-03_YB-Cq2",2013-12-03,2013-12-03,"YB","C","2","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2013-12-03_YB-Cq4",2013-12-03,2013-12-03,"YB","C","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2013-12-03_YB-Cq6",2013-12-03,2013-12-03,"YB","C","6","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2013-12-03_YB-Cq2",2013-12-03,2013-12-03,"YB","C","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2013-12-03_YB-Cq4",2013-12-03,2013-12-03,"YB","C","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2013-12-03_YB-Cq6",2013-12-03,2013-12-03,"YB","C","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2013-12-03_YB-Cq2",2013-12-03,2013-12-03,"YB","C","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2013-12-03_YB-Cq4",2013-12-03,2013-12-03,"YB","C","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2013-12-03_YB-Cq6",2013-12-03,2013-12-03,"YB","C","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2013-12-03_YB-Cq2",2013-12-03,2013-12-03,"YB","C","2","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2013-12-03_YB-Cq4",2013-12-03,2013-12-03,"YB","C","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2013-12-03_YB-Cq6",2013-12-03,2013-12-03,"YB","C","6","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2013-12-03_YB-Cq2",2013-12-03,2013-12-03,"YB","C","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2013-12-03_YB-Cq4",2013-12-03,2013-12-03,"YB","C","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2013-12-03_YB-Cq6",2013-12-03,2013-12-03,"YB","C","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2013-12-03_YB-Cq2",2013-12-03,2013-12-03,"YB","C","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2013-12-03_YB-Cq4",2013-12-03,2013-12-03,"YB","C","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2013-12-03_YB-Cq6",2013-12-03,2013-12-03,"YB","C","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2013-12-03_YB-Cq2",2013-12-03,2013-12-03,"YB","C","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2013-12-03_YB-Cq4",2013-12-03,2013-12-03,"YB","C","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2013-12-03_YB-Cq6",2013-12-03,2013-12-03,"YB","C","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2013-12-03_YB-Dq3",2013-12-03,2013-12-03,"YB","D","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Barnacle counts may be low due to algae; algae is a thin film."
+"2013-12-03_YB-Dq4",2013-12-03,2013-12-03,"YB","D","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%",""
+"2013-12-03_YB-Dq5",2013-12-03,2013-12-03,"YB","D","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%","Algae is a thin film."
+"2013-12-03_YB-Dq3",2013-12-03,2013-12-03,"YB","D","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Barnacle counts may be low due to algae; algae is a thin film."
+"2013-12-03_YB-Dq4",2013-12-03,2013-12-03,"YB","D","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%",""
+"2013-12-03_YB-Dq5",2013-12-03,2013-12-03,"YB","D","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%","Algae is a thin film."
+"2013-12-03_YB-Dq3",2013-12-03,2013-12-03,"YB","D","3","Bg","Balanus_glandula","Type 1",1354,0.015625,86656,"c","Beatriz Vaca","Finished","Full","Cropped","30%","Barnacle counts may be low due to algae; algae is a thin film."
+"2013-12-03_YB-Dq4",2013-12-03,2013-12-03,"YB","D","4","Bg","Balanus_glandula","Type 1",1352,0.015625,86528,"c","Stephanie Merhoff","Finished","Full","Cropped","1%",""
+"2013-12-03_YB-Dq5",2013-12-03,2013-12-03,"YB","D","5","Bg","Balanus_glandula","Type 1",1625,0.015625,104000,"c","Beatriz Vaca","Finished","Full","Cropped","20%","Algae is a thin film."
+"2013-12-03_YB-Dq3",2013-12-03,2013-12-03,"YB","D","3","BgD","Balanus_glandula_(dead)","Type 2",10,0.015625,640,"c","Beatriz Vaca","Finished","Full","Cropped","30%","Barnacle counts may be low due to algae; algae is a thin film."
+"2013-12-03_YB-Dq4",2013-12-03,2013-12-03,"YB","D","4","BgD","Balanus_glandula_(dead)","Type 2",1,0.015625,64,"c","Stephanie Merhoff","Finished","Full","Cropped","1%",""
+"2013-12-03_YB-Dq5",2013-12-03,2013-12-03,"YB","D","5","BgD","Balanus_glandula_(dead)","Type 2",3,0.015625,192,"c","Beatriz Vaca","Finished","Full","Cropped","20%","Algae is a thin film."
+"2013-12-03_YB-Dq3",2013-12-03,2013-12-03,"YB","D","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Barnacle counts may be low due to algae; algae is a thin film."
+"2013-12-03_YB-Dq4",2013-12-03,2013-12-03,"YB","D","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%",""
+"2013-12-03_YB-Dq5",2013-12-03,2013-12-03,"YB","D","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%","Algae is a thin film."
+"2013-12-03_YB-Dq3",2013-12-03,2013-12-03,"YB","D","3","Cth","Chthamalus_dalli","Type 3",2,0.015625,128,"c","Beatriz Vaca","Finished","Full","Cropped","30%","Barnacle counts may be low due to algae; algae is a thin film."
+"2013-12-03_YB-Dq4",2013-12-03,2013-12-03,"YB","D","4","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","1%",""
+"2013-12-03_YB-Dq5",2013-12-03,2013-12-03,"YB","D","5","Cth","Chthamalus_dalli","Type 3",1,0.015625,64,"c","Beatriz Vaca","Finished","Full","Cropped","20%","Algae is a thin film."
+"2013-12-03_YB-Dq3",2013-12-03,2013-12-03,"YB","D","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","30%","Barnacle counts may be low due to algae; algae is a thin film."
+"2013-12-03_YB-Dq4",2013-12-03,2013-12-03,"YB","D","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","1%",""
+"2013-12-03_YB-Dq5",2013-12-03,2013-12-03,"YB","D","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","20%","Algae is a thin film."
+"2013-12-03_YB-Dq3",2013-12-03,2013-12-03,"YB","D","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Barnacle counts may be low due to algae; algae is a thin film."
+"2013-12-03_YB-Dq4",2013-12-03,2013-12-03,"YB","D","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%",""
+"2013-12-03_YB-Dq5",2013-12-03,2013-12-03,"YB","D","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%","Algae is a thin film."
+"2013-12-03_YB-Dq3",2013-12-03,2013-12-03,"YB","D","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Barnacle counts may be low due to algae; algae is a thin film."
+"2013-12-03_YB-Dq4",2013-12-03,2013-12-03,"YB","D","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%",""
+"2013-12-03_YB-Dq5",2013-12-03,2013-12-03,"YB","D","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%","Algae is a thin film."
+"2013-12-03_YB-Dq3",2013-12-03,2013-12-03,"YB","D","3","Lim","Limpets","Type 12",43,0.0875,491.428571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Barnacle counts may be low due to algae; algae is a thin film."
+"2013-12-03_YB-Dq4",2013-12-03,2013-12-03,"YB","D","4","Lim","Limpets","Type 12",6,0.0875,68.5714285714286,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%",""
+"2013-12-03_YB-Dq5",2013-12-03,2013-12-03,"YB","D","5","Lim","Limpets","Type 12",283,0.0875,3234.28571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","20%","Algae is a thin film."
+"2013-12-03_YB-Dq3",2013-12-03,2013-12-03,"YB","D","3","Ls","Littorina_sitkana","Type 13",152,0.0875,1737.14285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Barnacle counts may be low due to algae; algae is a thin film."
+"2013-12-03_YB-Dq4",2013-12-03,2013-12-03,"YB","D","4","Ls","Littorina_sitkana","Type 13",98,0.0875,1120,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%",""
+"2013-12-03_YB-Dq5",2013-12-03,2013-12-03,"YB","D","5","Ls","Littorina_sitkana","Type 13",411,0.0875,4697.14285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","20%","Algae is a thin film."
+"2013-12-03_YB-Dq3",2013-12-03,2013-12-03,"YB","D","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Barnacle counts may be low due to algae; algae is a thin film."
+"2013-12-03_YB-Dq4",2013-12-03,2013-12-03,"YB","D","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%",""
+"2013-12-03_YB-Dq5",2013-12-03,2013-12-03,"YB","D","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%","Algae is a thin film."
+"2013-12-03_YB-Dq3",2013-12-03,2013-12-03,"YB","D","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Barnacle counts may be low due to algae; algae is a thin film."
+"2013-12-03_YB-Dq4",2013-12-03,2013-12-03,"YB","D","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%",""
+"2013-12-03_YB-Dq5",2013-12-03,2013-12-03,"YB","D","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%","Algae is a thin film."
+"2013-12-03_YB-Dq3",2013-12-03,2013-12-03,"YB","D","3","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Barnacle counts may be low due to algae; algae is a thin film."
+"2013-12-03_YB-Dq4",2013-12-03,2013-12-03,"YB","D","4","Myt","Mytilus_spp","Type 7",238,0.0875,2720,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%",""
+"2013-12-03_YB-Dq5",2013-12-03,2013-12-03,"YB","D","5","Myt","Mytilus_spp","Type 7",1094,0.0875,12502.8571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","20%","Algae is a thin film."
+"2013-12-03_YB-Dq3",2013-12-03,2013-12-03,"YB","D","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Barnacle counts may be low due to algae; algae is a thin film."
+"2013-12-03_YB-Dq4",2013-12-03,2013-12-03,"YB","D","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%",""
+"2013-12-03_YB-Dq5",2013-12-03,2013-12-03,"YB","D","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%","Algae is a thin film."
+"2013-12-03_YB-Dq3",2013-12-03,2013-12-03,"YB","D","3","Mt","Mytilus_trossulus","Type 15",1144,0.0875,13074.2857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Barnacle counts may be low due to algae; algae is a thin film."
+"2013-12-03_YB-Dq4",2013-12-03,2013-12-03,"YB","D","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%",""
+"2013-12-03_YB-Dq5",2013-12-03,2013-12-03,"YB","D","5","Mt","Mytilus_trossulus","Type 15",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","20%","Algae is a thin film."
+"2013-12-03_YB-Dq3",2013-12-03,2013-12-03,"YB","D","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Barnacle counts may be low due to algae; algae is a thin film."
+"2013-12-03_YB-Dq4",2013-12-03,2013-12-03,"YB","D","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%",""
+"2013-12-03_YB-Dq5",2013-12-03,2013-12-03,"YB","D","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%","Algae is a thin film."
+"2013-12-03_YB-Dq3",2013-12-03,2013-12-03,"YB","D","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Barnacle counts may be low due to algae; algae is a thin film."
+"2013-12-03_YB-Dq4",2013-12-03,2013-12-03,"YB","D","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%",""
+"2013-12-03_YB-Dq5",2013-12-03,2013-12-03,"YB","D","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%","Algae is a thin film."
+"2013-12-03_YB-Dq3",2013-12-03,2013-12-03,"YB","D","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Barnacle counts may be low due to algae; algae is a thin film."
+"2013-12-03_YB-Dq4",2013-12-03,2013-12-03,"YB","D","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%",""
+"2013-12-03_YB-Dq5",2013-12-03,2013-12-03,"YB","D","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%","Algae is a thin film."
+"2013-12-03_YB-Dq3",2013-12-03,2013-12-03,"YB","D","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Barnacle counts may be low due to algae; algae is a thin film."
+"2013-12-03_YB-Dq4",2013-12-03,2013-12-03,"YB","D","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%",""
+"2013-12-03_YB-Dq5",2013-12-03,2013-12-03,"YB","D","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%","Algae is a thin film."
+"2013-12-03_YB-Dq3",2013-12-03,2013-12-03,"YB","D","3","No","Nucella_ostrina","Type 9",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Barnacle counts may be low due to algae; algae is a thin film."
+"2013-12-03_YB-Dq4",2013-12-03,2013-12-03,"YB","D","4","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%",""
+"2013-12-03_YB-Dq5",2013-12-03,2013-12-03,"YB","D","5","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","20%","Algae is a thin film."
+"2013-12-03_YB-Dq3",2013-12-03,2013-12-03,"YB","D","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Barnacle counts may be low due to algae; algae is a thin film."
+"2013-12-03_YB-Dq4",2013-12-03,2013-12-03,"YB","D","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%",""
+"2013-12-03_YB-Dq5",2013-12-03,2013-12-03,"YB","D","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%","Algae is a thin film."
+"2013-12-03_YB-Dq3",2013-12-03,2013-12-03,"YB","D","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Barnacle counts may be low due to algae; algae is a thin film."
+"2013-12-03_YB-Dq4",2013-12-03,2013-12-03,"YB","D","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%",""
+"2013-12-03_YB-Dq5",2013-12-03,2013-12-03,"YB","D","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%","Algae is a thin film."
+"2013-12-03_YB-Dq3",2013-12-03,2013-12-03,"YB","D","3","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Barnacle counts may be low due to algae; algae is a thin film."
+"2013-12-03_YB-Dq4",2013-12-03,2013-12-03,"YB","D","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%",""
+"2013-12-03_YB-Dq5",2013-12-03,2013-12-03,"YB","D","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%","Algae is a thin film."
+"2013-12-03_YB-Dq3",2013-12-03,2013-12-03,"YB","D","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Barnacle counts may be low due to algae; algae is a thin film."
+"2013-12-03_YB-Dq4",2013-12-03,2013-12-03,"YB","D","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%",""
+"2013-12-03_YB-Dq5",2013-12-03,2013-12-03,"YB","D","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%","Algae is a thin film."
+"2013-12-03_YB-Dq3",2013-12-03,2013-12-03,"YB","D","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Barnacle counts may be low due to algae; algae is a thin film."
+"2013-12-03_YB-Dq4",2013-12-03,2013-12-03,"YB","D","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%",""
+"2013-12-03_YB-Dq5",2013-12-03,2013-12-03,"YB","D","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%","Algae is a thin film."
+"2013-12-03_YB-Dq3",2013-12-03,2013-12-03,"YB","D","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Barnacle counts may be low due to algae; algae is a thin film."
+"2013-12-03_YB-Dq4",2013-12-03,2013-12-03,"YB","D","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%",""
+"2013-12-03_YB-Dq5",2013-12-03,2013-12-03,"YB","D","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%","Algae is a thin film."
+"2013-12-03_YB-Eq3",2013-12-03,2013-12-03,"YB","E","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Eq4",2013-12-03,2013-12-03,"YB","E","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Eq8",2013-12-03,2013-12-03,"YB","E","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","counts may be low due to glare and blur"
+"2013-12-03_YB-Eq3",2013-12-03,2013-12-03,"YB","E","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Eq4",2013-12-03,2013-12-03,"YB","E","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Eq8",2013-12-03,2013-12-03,"YB","E","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","counts may be low due to glare and blur"
+"2013-12-03_YB-Eq3",2013-12-03,2013-12-03,"YB","E","3","Bg","Balanus_glandula","Type 1",785,0.015625,50240,"c","Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Eq4",2013-12-03,2013-12-03,"YB","E","4","Bg","Balanus_glandula","Type 1",808,0.015625,51712,"c","Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Eq8",2013-12-03,2013-12-03,"YB","E","8","Bg","Balanus_glandula","Type 1",716,0.015625,45824,"c","Stephanie Merhoff","Finished","Full","Cropped","10%","counts may be low due to glare and blur"
+"2013-12-03_YB-Eq3",2013-12-03,2013-12-03,"YB","E","3","BgD","Balanus_glandula_(dead)","Type 2",1,0.015625,64,"c","Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Eq4",2013-12-03,2013-12-03,"YB","E","4","BgD","Balanus_glandula_(dead)","Type 2",3,0.015625,192,"c","Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Eq8",2013-12-03,2013-12-03,"YB","E","8","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","10%","counts may be low due to glare and blur"
+"2013-12-03_YB-Eq3",2013-12-03,2013-12-03,"YB","E","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Eq4",2013-12-03,2013-12-03,"YB","E","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Eq8",2013-12-03,2013-12-03,"YB","E","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","counts may be low due to glare and blur"
+"2013-12-03_YB-Eq3",2013-12-03,2013-12-03,"YB","E","3","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Eq4",2013-12-03,2013-12-03,"YB","E","4","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Eq8",2013-12-03,2013-12-03,"YB","E","8","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","10%","counts may be low due to glare and blur"
+"2013-12-03_YB-Eq3",2013-12-03,2013-12-03,"YB","E","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Eq4",2013-12-03,2013-12-03,"YB","E","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Eq8",2013-12-03,2013-12-03,"YB","E","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","10%","counts may be low due to glare and blur"
+"2013-12-03_YB-Eq3",2013-12-03,2013-12-03,"YB","E","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Eq4",2013-12-03,2013-12-03,"YB","E","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Eq8",2013-12-03,2013-12-03,"YB","E","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","counts may be low due to glare and blur"
+"2013-12-03_YB-Eq3",2013-12-03,2013-12-03,"YB","E","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Eq4",2013-12-03,2013-12-03,"YB","E","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Eq8",2013-12-03,2013-12-03,"YB","E","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","counts may be low due to glare and blur"
+"2013-12-03_YB-Eq3",2013-12-03,2013-12-03,"YB","E","3","Lim","Limpets","Type 12",6,0.0875,68.5714285714286,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Eq4",2013-12-03,2013-12-03,"YB","E","4","Lim","Limpets","Type 12",4,0.0875,45.7142857142857,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Eq8",2013-12-03,2013-12-03,"YB","E","8","Lim","Limpets","Type 12",13,0.0875,148.571428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","counts may be low due to glare and blur"
+"2013-12-03_YB-Eq3",2013-12-03,2013-12-03,"YB","E","3","Ls","Littorina_sitkana","Type 13",9,0.0875,102.857142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Eq4",2013-12-03,2013-12-03,"YB","E","4","Ls","Littorina_sitkana","Type 13",5,0.0875,57.1428571428571,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Eq8",2013-12-03,2013-12-03,"YB","E","8","Ls","Littorina_sitkana","Type 13",45,0.0875,514.285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","counts may be low due to glare and blur"
+"2013-12-03_YB-Eq3",2013-12-03,2013-12-03,"YB","E","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Eq4",2013-12-03,2013-12-03,"YB","E","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Eq8",2013-12-03,2013-12-03,"YB","E","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","counts may be low due to glare and blur"
+"2013-12-03_YB-Eq3",2013-12-03,2013-12-03,"YB","E","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Eq4",2013-12-03,2013-12-03,"YB","E","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Eq8",2013-12-03,2013-12-03,"YB","E","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","counts may be low due to glare and blur"
+"2013-12-03_YB-Eq3",2013-12-03,2013-12-03,"YB","E","3","Myt","Mytilus_spp","Type 7",460,0.0875,5257.14285714286,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Eq4",2013-12-03,2013-12-03,"YB","E","4","Myt","Mytilus_spp","Type 7",417,0.0875,4765.71428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Eq8",2013-12-03,2013-12-03,"YB","E","8","Myt","Mytilus_spp","Type 7",357,0.0875,4080,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","counts may be low due to glare and blur"
+"2013-12-03_YB-Eq3",2013-12-03,2013-12-03,"YB","E","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Eq4",2013-12-03,2013-12-03,"YB","E","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Eq8",2013-12-03,2013-12-03,"YB","E","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","counts may be low due to glare and blur"
+"2013-12-03_YB-Eq3",2013-12-03,2013-12-03,"YB","E","3","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Eq4",2013-12-03,2013-12-03,"YB","E","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Eq8",2013-12-03,2013-12-03,"YB","E","8","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","counts may be low due to glare and blur"
+"2013-12-03_YB-Eq3",2013-12-03,2013-12-03,"YB","E","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Eq4",2013-12-03,2013-12-03,"YB","E","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Eq8",2013-12-03,2013-12-03,"YB","E","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","counts may be low due to glare and blur"
+"2013-12-03_YB-Eq3",2013-12-03,2013-12-03,"YB","E","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Eq4",2013-12-03,2013-12-03,"YB","E","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Eq8",2013-12-03,2013-12-03,"YB","E","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","counts may be low due to glare and blur"
+"2013-12-03_YB-Eq3",2013-12-03,2013-12-03,"YB","E","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Eq4",2013-12-03,2013-12-03,"YB","E","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Eq8",2013-12-03,2013-12-03,"YB","E","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","counts may be low due to glare and blur"
+"2013-12-03_YB-Eq3",2013-12-03,2013-12-03,"YB","E","3","Negg","Nucella_eggs","Type 26",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Eq4",2013-12-03,2013-12-03,"YB","E","4","Negg","Nucella_eggs","Type 26",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Eq8",2013-12-03,2013-12-03,"YB","E","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","counts may be low due to glare and blur"
+"2013-12-03_YB-Eq3",2013-12-03,2013-12-03,"YB","E","3","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Eq4",2013-12-03,2013-12-03,"YB","E","4","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Eq8",2013-12-03,2013-12-03,"YB","E","8","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","counts may be low due to glare and blur"
+"2013-12-03_YB-Eq3",2013-12-03,2013-12-03,"YB","E","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Eq4",2013-12-03,2013-12-03,"YB","E","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Eq8",2013-12-03,2013-12-03,"YB","E","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","counts may be low due to glare and blur"
+"2013-12-03_YB-Eq3",2013-12-03,2013-12-03,"YB","E","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Eq4",2013-12-03,2013-12-03,"YB","E","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Eq8",2013-12-03,2013-12-03,"YB","E","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","counts may be low due to glare and blur"
+"2013-12-03_YB-Eq3",2013-12-03,2013-12-03,"YB","E","3","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Eq4",2013-12-03,2013-12-03,"YB","E","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Eq8",2013-12-03,2013-12-03,"YB","E","8","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","counts may be low due to glare and blur"
+"2013-12-03_YB-Eq3",2013-12-03,2013-12-03,"YB","E","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Eq4",2013-12-03,2013-12-03,"YB","E","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Eq8",2013-12-03,2013-12-03,"YB","E","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","counts may be low due to glare and blur"
+"2013-12-03_YB-Eq3",2013-12-03,2013-12-03,"YB","E","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Eq4",2013-12-03,2013-12-03,"YB","E","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Eq8",2013-12-03,2013-12-03,"YB","E","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","counts may be low due to glare and blur"
+"2013-12-03_YB-Eq3",2013-12-03,2013-12-03,"YB","E","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Eq4",2013-12-03,2013-12-03,"YB","E","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2013-12-03_YB-Eq8",2013-12-03,2013-12-03,"YB","E","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","counts may be low due to glare and blur"
+"2013-12-03_YB-Fq4",2013-12-03,2013-12-03,"YB","F","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","Algae is a thin film."
+"2013-12-03_YB-Fq5",2013-12-03,2013-12-03,"YB","F","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-Fq6",2013-12-03,2013-12-03,"YB","F","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Algae is a thin film."
+"2013-12-03_YB-Fq4",2013-12-03,2013-12-03,"YB","F","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","Algae is a thin film."
+"2013-12-03_YB-Fq5",2013-12-03,2013-12-03,"YB","F","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-Fq6",2013-12-03,2013-12-03,"YB","F","6","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Algae is a thin film."
+"2013-12-03_YB-Fq4",2013-12-03,2013-12-03,"YB","F","4","Bg","Balanus_glandula","Type 1",1697,0.015625,108608,"c","Beatriz Vaca","Finished","Full","Cropped","25%","Algae is a thin film."
+"2013-12-03_YB-Fq5",2013-12-03,2013-12-03,"YB","F","5","Bg","Balanus_glandula","Type 1",1620,0.015625,103680,"c","Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-Fq6",2013-12-03,2013-12-03,"YB","F","6","Bg","Balanus_glandula","Type 1",1610,0.015625,103040,"c","Beatriz Vaca","Finished","Full","Cropped","45%","Algae is a thin film."
+"2013-12-03_YB-Fq4",2013-12-03,2013-12-03,"YB","F","4","BgD","Balanus_glandula_(dead)","Type 2",3,0.015625,192,"c","Beatriz Vaca","Finished","Full","Cropped","25%","Algae is a thin film."
+"2013-12-03_YB-Fq5",2013-12-03,2013-12-03,"YB","F","5","BgD","Balanus_glandula_(dead)","Type 2",4,0.015625,256,"c","Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-Fq6",2013-12-03,2013-12-03,"YB","F","6","BgD","Balanus_glandula_(dead)","Type 2",9,0.015625,576,"c","Beatriz Vaca","Finished","Full","Cropped","45%","Algae is a thin film."
+"2013-12-03_YB-Fq4",2013-12-03,2013-12-03,"YB","F","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","Algae is a thin film."
+"2013-12-03_YB-Fq5",2013-12-03,2013-12-03,"YB","F","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-Fq6",2013-12-03,2013-12-03,"YB","F","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Algae is a thin film."
+"2013-12-03_YB-Fq4",2013-12-03,2013-12-03,"YB","F","4","Cth","Chthamalus_dalli","Type 3",4,0.015625,256,"c","Beatriz Vaca","Finished","Full","Cropped","25%","Algae is a thin film."
+"2013-12-03_YB-Fq5",2013-12-03,2013-12-03,"YB","F","5","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-Fq6",2013-12-03,2013-12-03,"YB","F","6","Cth","Chthamalus_dalli","Type 3",10,0.015625,640,"c","Beatriz Vaca","Finished","Full","Cropped","45%","Algae is a thin film."
+"2013-12-03_YB-Fq4",2013-12-03,2013-12-03,"YB","F","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","25%","Algae is a thin film."
+"2013-12-03_YB-Fq5",2013-12-03,2013-12-03,"YB","F","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-Fq6",2013-12-03,2013-12-03,"YB","F","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","45%","Algae is a thin film."
+"2013-12-03_YB-Fq4",2013-12-03,2013-12-03,"YB","F","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","Algae is a thin film."
+"2013-12-03_YB-Fq5",2013-12-03,2013-12-03,"YB","F","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-Fq6",2013-12-03,2013-12-03,"YB","F","6","Emp","Emplectonema worm","Type 23",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Algae is a thin film."
+"2013-12-03_YB-Fq4",2013-12-03,2013-12-03,"YB","F","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","Algae is a thin film."
+"2013-12-03_YB-Fq5",2013-12-03,2013-12-03,"YB","F","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-Fq6",2013-12-03,2013-12-03,"YB","F","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Algae is a thin film."
+"2013-12-03_YB-Fq4",2013-12-03,2013-12-03,"YB","F","4","Lim","Limpets","Type 12",720,0.0875,8228.57142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","Algae is a thin film."
+"2013-12-03_YB-Fq5",2013-12-03,2013-12-03,"YB","F","5","Lim","Limpets","Type 12",560,0.0875,6400,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-Fq6",2013-12-03,2013-12-03,"YB","F","6","Lim","Limpets","Type 12",252,0.0875,2880,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Algae is a thin film."
+"2013-12-03_YB-Fq4",2013-12-03,2013-12-03,"YB","F","4","Ls","Littorina_sitkana","Type 13",220,0.0875,2514.28571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","Algae is a thin film."
+"2013-12-03_YB-Fq5",2013-12-03,2013-12-03,"YB","F","5","Ls","Littorina_sitkana","Type 13",376,0.0875,4297.14285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-Fq6",2013-12-03,2013-12-03,"YB","F","6","Ls","Littorina_sitkana","Type 13",161,0.0875,1840,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Algae is a thin film."
+"2013-12-03_YB-Fq4",2013-12-03,2013-12-03,"YB","F","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","Algae is a thin film."
+"2013-12-03_YB-Fq5",2013-12-03,2013-12-03,"YB","F","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-Fq6",2013-12-03,2013-12-03,"YB","F","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Algae is a thin film."
+"2013-12-03_YB-Fq4",2013-12-03,2013-12-03,"YB","F","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","Algae is a thin film."
+"2013-12-03_YB-Fq5",2013-12-03,2013-12-03,"YB","F","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-Fq6",2013-12-03,2013-12-03,"YB","F","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Algae is a thin film."
+"2013-12-03_YB-Fq4",2013-12-03,2013-12-03,"YB","F","4","Myt","Mytilus_spp","Type 7",741,0.0875,8468.57142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","Algae is a thin film."
+"2013-12-03_YB-Fq5",2013-12-03,2013-12-03,"YB","F","5","Myt","Mytilus_spp","Type 7",658,0.0875,7520,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-Fq6",2013-12-03,2013-12-03,"YB","F","6","Myt","Mytilus_spp","Type 7",288,0.0875,3291.42857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Algae is a thin film."
+"2013-12-03_YB-Fq4",2013-12-03,2013-12-03,"YB","F","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","Algae is a thin film."
+"2013-12-03_YB-Fq5",2013-12-03,2013-12-03,"YB","F","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-Fq6",2013-12-03,2013-12-03,"YB","F","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Algae is a thin film."
+"2013-12-03_YB-Fq4",2013-12-03,2013-12-03,"YB","F","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","Algae is a thin film."
+"2013-12-03_YB-Fq5",2013-12-03,2013-12-03,"YB","F","5","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-Fq6",2013-12-03,2013-12-03,"YB","F","6","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Algae is a thin film."
+"2013-12-03_YB-Fq4",2013-12-03,2013-12-03,"YB","F","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","Algae is a thin film."
+"2013-12-03_YB-Fq5",2013-12-03,2013-12-03,"YB","F","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-Fq6",2013-12-03,2013-12-03,"YB","F","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Algae is a thin film."
+"2013-12-03_YB-Fq4",2013-12-03,2013-12-03,"YB","F","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","Algae is a thin film."
+"2013-12-03_YB-Fq5",2013-12-03,2013-12-03,"YB","F","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-Fq6",2013-12-03,2013-12-03,"YB","F","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Algae is a thin film."
+"2013-12-03_YB-Fq4",2013-12-03,2013-12-03,"YB","F","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","Algae is a thin film."
+"2013-12-03_YB-Fq5",2013-12-03,2013-12-03,"YB","F","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-Fq6",2013-12-03,2013-12-03,"YB","F","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Algae is a thin film."
+"2013-12-03_YB-Fq4",2013-12-03,2013-12-03,"YB","F","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","Algae is a thin film."
+"2013-12-03_YB-Fq5",2013-12-03,2013-12-03,"YB","F","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-Fq6",2013-12-03,2013-12-03,"YB","F","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Algae is a thin film."
+"2013-12-03_YB-Fq4",2013-12-03,2013-12-03,"YB","F","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","Algae is a thin film."
+"2013-12-03_YB-Fq5",2013-12-03,2013-12-03,"YB","F","5","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-Fq6",2013-12-03,2013-12-03,"YB","F","6","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Algae is a thin film."
+"2013-12-03_YB-Fq4",2013-12-03,2013-12-03,"YB","F","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","Algae is a thin film."
+"2013-12-03_YB-Fq5",2013-12-03,2013-12-03,"YB","F","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-Fq6",2013-12-03,2013-12-03,"YB","F","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Algae is a thin film."
+"2013-12-03_YB-Fq4",2013-12-03,2013-12-03,"YB","F","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","Algae is a thin film."
+"2013-12-03_YB-Fq5",2013-12-03,2013-12-03,"YB","F","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-Fq6",2013-12-03,2013-12-03,"YB","F","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Algae is a thin film."
+"2013-12-03_YB-Fq4",2013-12-03,2013-12-03,"YB","F","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","Algae is a thin film."
+"2013-12-03_YB-Fq5",2013-12-03,2013-12-03,"YB","F","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-Fq6",2013-12-03,2013-12-03,"YB","F","6","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Algae is a thin film."
+"2013-12-03_YB-Fq4",2013-12-03,2013-12-03,"YB","F","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","Algae is a thin film."
+"2013-12-03_YB-Fq5",2013-12-03,2013-12-03,"YB","F","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-Fq6",2013-12-03,2013-12-03,"YB","F","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Algae is a thin film."
+"2013-12-03_YB-Fq4",2013-12-03,2013-12-03,"YB","F","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","Algae is a thin film."
+"2013-12-03_YB-Fq5",2013-12-03,2013-12-03,"YB","F","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-Fq6",2013-12-03,2013-12-03,"YB","F","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Algae is a thin film."
+"2013-12-03_YB-Fq4",2013-12-03,2013-12-03,"YB","F","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","Algae is a thin film."
+"2013-12-03_YB-Fq5",2013-12-03,2013-12-03,"YB","F","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2013-12-03_YB-Fq6",2013-12-03,2013-12-03,"YB","F","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Algae is a thin film."
+"2013-12-03_YB-Gq3",2013-12-03,2013-12-03,"YB","G","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Cropped","5%","Counts may be low due to glare."
+"2013-12-03_YB-Gq5",2013-12-03,2013-12-03,"YB","G","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2013-12-03_YB-Gq8",2013-12-03,2013-12-03,"YB","G","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Cropped","5%",""
+"2013-12-03_YB-Gq3",2013-12-03,2013-12-03,"YB","G","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Cropped","5%","Counts may be low due to glare."
+"2013-12-03_YB-Gq5",2013-12-03,2013-12-03,"YB","G","5","Ae","Anemones","Type 14",9,0.0875,102.857142857143,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2013-12-03_YB-Gq8",2013-12-03,2013-12-03,"YB","G","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Cropped","5%",""
+"2013-12-03_YB-Gq3",2013-12-03,2013-12-03,"YB","G","3","Bg","Balanus_glandula","Type 1",79,0.015625,5056,"c","Stephanie Merhoff","Finished","Cropped","Cropped","5%","Counts may be low due to glare."
+"2013-12-03_YB-Gq5",2013-12-03,2013-12-03,"YB","G","5","Bg","Balanus_glandula","Type 1",565,0.015625,36160,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2013-12-03_YB-Gq8",2013-12-03,2013-12-03,"YB","G","8","Bg","Balanus_glandula","Type 1",723,0.015625,46272,"c","Stephanie Merhoff","Finished","Cropped","Cropped","5%",""
+"2013-12-03_YB-Gq3",2013-12-03,2013-12-03,"YB","G","3","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Cropped","Cropped","5%","Counts may be low due to glare."
+"2013-12-03_YB-Gq5",2013-12-03,2013-12-03,"YB","G","5","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2013-12-03_YB-Gq8",2013-12-03,2013-12-03,"YB","G","8","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Cropped","Cropped","5%",""
+"2013-12-03_YB-Gq3",2013-12-03,2013-12-03,"YB","G","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Cropped","5%","Counts may be low due to glare."
+"2013-12-03_YB-Gq5",2013-12-03,2013-12-03,"YB","G","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2013-12-03_YB-Gq8",2013-12-03,2013-12-03,"YB","G","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Cropped","5%",""
+"2013-12-03_YB-Gq3",2013-12-03,2013-12-03,"YB","G","3","Cth","Chthamalus_dalli","Type 3",462,0.015625,29568,"c","Stephanie Merhoff","Finished","Cropped","Cropped","5%","Counts may be low due to glare."
+"2013-12-03_YB-Gq5",2013-12-03,2013-12-03,"YB","G","5","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2013-12-03_YB-Gq8",2013-12-03,2013-12-03,"YB","G","8","Cth","Chthamalus_dalli","Type 3",22,0.015625,1408,"c","Stephanie Merhoff","Finished","Cropped","Cropped","5%",""
+"2013-12-03_YB-Gq3",2013-12-03,2013-12-03,"YB","G","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Cropped","Cropped","5%","Counts may be low due to glare."
+"2013-12-03_YB-Gq5",2013-12-03,2013-12-03,"YB","G","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2013-12-03_YB-Gq8",2013-12-03,2013-12-03,"YB","G","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Cropped","Cropped","5%",""
+"2013-12-03_YB-Gq3",2013-12-03,2013-12-03,"YB","G","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Cropped","5%","Counts may be low due to glare."
+"2013-12-03_YB-Gq5",2013-12-03,2013-12-03,"YB","G","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2013-12-03_YB-Gq8",2013-12-03,2013-12-03,"YB","G","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Cropped","5%",""
+"2013-12-03_YB-Gq3",2013-12-03,2013-12-03,"YB","G","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Cropped","5%","Counts may be low due to glare."
+"2013-12-03_YB-Gq5",2013-12-03,2013-12-03,"YB","G","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2013-12-03_YB-Gq8",2013-12-03,2013-12-03,"YB","G","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Cropped","5%",""
+"2013-12-03_YB-Gq3",2013-12-03,2013-12-03,"YB","G","3","Lim","Limpets","Type 12",11,0.0875,125.714285714286,NA,"Stephanie Merhoff","Finished","Cropped","Cropped","5%","Counts may be low due to glare."
+"2013-12-03_YB-Gq5",2013-12-03,2013-12-03,"YB","G","5","Lim","Limpets","Type 12",217,0.0875,2480,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2013-12-03_YB-Gq8",2013-12-03,2013-12-03,"YB","G","8","Lim","Limpets","Type 12",12,0.0875,137.142857142857,NA,"Stephanie Merhoff","Finished","Cropped","Cropped","5%",""
+"2013-12-03_YB-Gq3",2013-12-03,2013-12-03,"YB","G","3","Ls","Littorina_sitkana","Type 13",48,0.0875,548.571428571429,NA,"Stephanie Merhoff","Finished","Cropped","Cropped","5%","Counts may be low due to glare."
+"2013-12-03_YB-Gq5",2013-12-03,2013-12-03,"YB","G","5","Ls","Littorina_sitkana","Type 13",202,0.0875,2308.57142857143,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2013-12-03_YB-Gq8",2013-12-03,2013-12-03,"YB","G","8","Ls","Littorina_sitkana","Type 13",19,0.0875,217.142857142857,NA,"Stephanie Merhoff","Finished","Cropped","Cropped","5%",""
+"2013-12-03_YB-Gq3",2013-12-03,2013-12-03,"YB","G","3","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Stephanie Merhoff","Finished","Cropped","Cropped","5%","Counts may be low due to glare."
+"2013-12-03_YB-Gq5",2013-12-03,2013-12-03,"YB","G","5","Mc","Mytilus_californianus","Type 17",1,0.015625,64,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2013-12-03_YB-Gq8",2013-12-03,2013-12-03,"YB","G","8","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Stephanie Merhoff","Finished","Cropped","Cropped","5%",""
+"2013-12-03_YB-Gq3",2013-12-03,2013-12-03,"YB","G","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Stephanie Merhoff","Finished","Cropped","Cropped","5%","Counts may be low due to glare."
+"2013-12-03_YB-Gq5",2013-12-03,2013-12-03,"YB","G","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2013-12-03_YB-Gq8",2013-12-03,2013-12-03,"YB","G","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Stephanie Merhoff","Finished","Cropped","Cropped","5%",""
+"2013-12-03_YB-Gq3",2013-12-03,2013-12-03,"YB","G","3","Myt","Mytilus_spp","Type 7",636,0.015625,40704,"c","Stephanie Merhoff","Finished","Cropped","Cropped","5%","Counts may be low due to glare."
+"2013-12-03_YB-Gq5",2013-12-03,2013-12-03,"YB","G","5","Myt","Mytilus_spp","Type 7",694,0.015625,44416,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2013-12-03_YB-Gq8",2013-12-03,2013-12-03,"YB","G","8","Myt","Mytilus_spp","Type 7",397,0.015625,25408,"c","Stephanie Merhoff","Finished","Cropped","Cropped","5%",""
+"2013-12-03_YB-Gq3",2013-12-03,2013-12-03,"YB","G","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Stephanie Merhoff","Finished","Cropped","Cropped","5%","Counts may be low due to glare."
+"2013-12-03_YB-Gq5",2013-12-03,2013-12-03,"YB","G","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2013-12-03_YB-Gq8",2013-12-03,2013-12-03,"YB","G","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Stephanie Merhoff","Finished","Cropped","Cropped","5%",""
+"2013-12-03_YB-Gq3",2013-12-03,2013-12-03,"YB","G","3","Mt","Mytilus_trossulus","Type 15",0,0.015625,0,"c","Stephanie Merhoff","Finished","Cropped","Cropped","5%","Counts may be low due to glare."
+"2013-12-03_YB-Gq5",2013-12-03,2013-12-03,"YB","G","5","Mt","Mytilus_trossulus","Type 15",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2013-12-03_YB-Gq8",2013-12-03,2013-12-03,"YB","G","8","Mt","Mytilus_trossulus","Type 15",0,0.015625,0,"c","Stephanie Merhoff","Finished","Cropped","Cropped","5%",""
+"2013-12-03_YB-Gq3",2013-12-03,2013-12-03,"YB","G","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Stephanie Merhoff","Finished","Cropped","Cropped","5%","Counts may be low due to glare."
+"2013-12-03_YB-Gq5",2013-12-03,2013-12-03,"YB","G","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2013-12-03_YB-Gq8",2013-12-03,2013-12-03,"YB","G","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Stephanie Merhoff","Finished","Cropped","Cropped","5%",""
+"2013-12-03_YB-Gq3",2013-12-03,2013-12-03,"YB","G","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Cropped","5%","Counts may be low due to glare."
+"2013-12-03_YB-Gq5",2013-12-03,2013-12-03,"YB","G","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2013-12-03_YB-Gq8",2013-12-03,2013-12-03,"YB","G","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Cropped","5%",""
+"2013-12-03_YB-Gq3",2013-12-03,2013-12-03,"YB","G","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Cropped","5%","Counts may be low due to glare."
+"2013-12-03_YB-Gq5",2013-12-03,2013-12-03,"YB","G","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2013-12-03_YB-Gq8",2013-12-03,2013-12-03,"YB","G","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Cropped","5%",""
+"2013-12-03_YB-Gq3",2013-12-03,2013-12-03,"YB","G","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Cropped","5%","Counts may be low due to glare."
+"2013-12-03_YB-Gq5",2013-12-03,2013-12-03,"YB","G","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2013-12-03_YB-Gq8",2013-12-03,2013-12-03,"YB","G","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Cropped","5%",""
+"2013-12-03_YB-Gq3",2013-12-03,2013-12-03,"YB","G","3","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Cropped","Cropped","5%","Counts may be low due to glare."
+"2013-12-03_YB-Gq5",2013-12-03,2013-12-03,"YB","G","5","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2013-12-03_YB-Gq8",2013-12-03,2013-12-03,"YB","G","8","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Cropped","5%",""
+"2013-12-03_YB-Gq3",2013-12-03,2013-12-03,"YB","G","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Cropped","5%","Counts may be low due to glare."
+"2013-12-03_YB-Gq5",2013-12-03,2013-12-03,"YB","G","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2013-12-03_YB-Gq8",2013-12-03,2013-12-03,"YB","G","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Cropped","5%",""
+"2013-12-03_YB-Gq3",2013-12-03,2013-12-03,"YB","G","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Cropped","5%","Counts may be low due to glare."
+"2013-12-03_YB-Gq5",2013-12-03,2013-12-03,"YB","G","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2013-12-03_YB-Gq8",2013-12-03,2013-12-03,"YB","G","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Cropped","5%",""
+"2013-12-03_YB-Gq3",2013-12-03,2013-12-03,"YB","G","3","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Cropped","5%","Counts may be low due to glare."
+"2013-12-03_YB-Gq5",2013-12-03,2013-12-03,"YB","G","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2013-12-03_YB-Gq8",2013-12-03,2013-12-03,"YB","G","8","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Cropped","5%",""
+"2013-12-03_YB-Gq3",2013-12-03,2013-12-03,"YB","G","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Cropped","5%","Counts may be low due to glare."
+"2013-12-03_YB-Gq5",2013-12-03,2013-12-03,"YB","G","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2013-12-03_YB-Gq8",2013-12-03,2013-12-03,"YB","G","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Cropped","5%",""
+"2013-12-03_YB-Gq3",2013-12-03,2013-12-03,"YB","G","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Cropped","5%","Counts may be low due to glare."
+"2013-12-03_YB-Gq5",2013-12-03,2013-12-03,"YB","G","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2013-12-03_YB-Gq8",2013-12-03,2013-12-03,"YB","G","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Cropped","5%",""
+"2013-12-03_YB-Gq3",2013-12-03,2013-12-03,"YB","G","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Cropped","5%","Counts may be low due to glare."
+"2013-12-03_YB-Gq5",2013-12-03,2013-12-03,"YB","G","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2013-12-03_YB-Gq8",2013-12-03,2013-12-03,"YB","G","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Cropped","5%",""
+"2014-01-29_YB-Aq6",2014-01-29,2014-01-29,"YB","A","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-01-29_YB-Aq7",2014-01-29,2014-01-29,"YB","A","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","15%","Algae is a thin film."
+"2014-01-29_YB-Aq9",2014-01-29,2014-01-29,"YB","A","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts may be low due to glare."
+"2014-01-29_YB-Aq6",2014-01-29,2014-01-29,"YB","A","6","Ae","Anemones","Type 14",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-01-29_YB-Aq7",2014-01-29,2014-01-29,"YB","A","7","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","15%","Algae is a thin film."
+"2014-01-29_YB-Aq9",2014-01-29,2014-01-29,"YB","A","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts may be low due to glare."
+"2014-01-29_YB-Aq6",2014-01-29,2014-01-29,"YB","A","6","Bg","Balanus_glandula","Type 1",2092,0.0875,23908.5714285714,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-01-29_YB-Aq7",2014-01-29,2014-01-29,"YB","A","7","Bg","Balanus_glandula","Type 1",986,0.015625,63104,"c","Beatriz Vaca","Finished","Cropped","Cropped","15%","Algae is a thin film."
+"2014-01-29_YB-Aq9",2014-01-29,2014-01-29,"YB","A","9","Bg","Balanus_glandula","Type 1",2665,0.0875,30457.1428571429,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts may be low due to glare."
+"2014-01-29_YB-Aq6",2014-01-29,2014-01-29,"YB","A","6","BgD","Balanus_glandula_(dead)","Type 2",56,0.0875,640,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-01-29_YB-Aq7",2014-01-29,2014-01-29,"YB","A","7","BgD","Balanus_glandula_(dead)","Type 2",4,0.015625,256,"c","Beatriz Vaca","Finished","Cropped","Cropped","15%","Algae is a thin film."
+"2014-01-29_YB-Aq9",2014-01-29,2014-01-29,"YB","A","9","BgD","Balanus_glandula_(dead)","Type 2",4,0.0875,45.7142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts may be low due to glare."
+"2014-01-29_YB-Aq6",2014-01-29,2014-01-29,"YB","A","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-01-29_YB-Aq7",2014-01-29,2014-01-29,"YB","A","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","15%","Algae is a thin film."
+"2014-01-29_YB-Aq9",2014-01-29,2014-01-29,"YB","A","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts may be low due to glare."
+"2014-01-29_YB-Aq6",2014-01-29,2014-01-29,"YB","A","6","Cth","Chthamalus_dalli","Type 3",321,0.0875,3668.57142857143,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-01-29_YB-Aq7",2014-01-29,2014-01-29,"YB","A","7","Cth","Chthamalus_dalli","Type 3",1,0.015625,64,"c","Beatriz Vaca","Finished","Cropped","Cropped","15%","Algae is a thin film."
+"2014-01-29_YB-Aq9",2014-01-29,2014-01-29,"YB","A","9","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts may be low due to glare."
+"2014-01-29_YB-Aq6",2014-01-29,2014-01-29,"YB","A","6","CthD","Chthamalus_dalli (dead)","Type 4",2,0.0875,22.8571428571429,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-01-29_YB-Aq7",2014-01-29,2014-01-29,"YB","A","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","15%","Algae is a thin film."
+"2014-01-29_YB-Aq9",2014-01-29,2014-01-29,"YB","A","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts may be low due to glare."
+"2014-01-29_YB-Aq6",2014-01-29,2014-01-29,"YB","A","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-01-29_YB-Aq7",2014-01-29,2014-01-29,"YB","A","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","15%","Algae is a thin film."
+"2014-01-29_YB-Aq9",2014-01-29,2014-01-29,"YB","A","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts may be low due to glare."
+"2014-01-29_YB-Aq6",2014-01-29,2014-01-29,"YB","A","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-01-29_YB-Aq7",2014-01-29,2014-01-29,"YB","A","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","15%","Algae is a thin film."
+"2014-01-29_YB-Aq9",2014-01-29,2014-01-29,"YB","A","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts may be low due to glare."
+"2014-01-29_YB-Aq6",2014-01-29,2014-01-29,"YB","A","6","Lim","Limpets","Type 12",4,0.0875,45.7142857142857,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-01-29_YB-Aq7",2014-01-29,2014-01-29,"YB","A","7","Lim","Limpets","Type 12",127,0.0875,1451.42857142857,NA,"Beatriz Vaca","Finished","Cropped","Cropped","15%","Algae is a thin film."
+"2014-01-29_YB-Aq9",2014-01-29,2014-01-29,"YB","A","9","Lim","Limpets","Type 12",22,0.0875,251.428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts may be low due to glare."
+"2014-01-29_YB-Aq6",2014-01-29,2014-01-29,"YB","A","6","Ls","Littorina_sitkana","Type 13",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-01-29_YB-Aq7",2014-01-29,2014-01-29,"YB","A","7","Ls","Littorina_sitkana","Type 13",231,0.0875,2640,NA,"Beatriz Vaca","Finished","Cropped","Cropped","15%","Algae is a thin film."
+"2014-01-29_YB-Aq9",2014-01-29,2014-01-29,"YB","A","9","Ls","Littorina_sitkana","Type 13",53,0.0875,605.714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts may be low due to glare."
+"2014-01-29_YB-Aq6",2014-01-29,2014-01-29,"YB","A","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-01-29_YB-Aq7",2014-01-29,2014-01-29,"YB","A","7","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","15%","Algae is a thin film."
+"2014-01-29_YB-Aq9",2014-01-29,2014-01-29,"YB","A","9","Mc","Mytilus_californianus","Type 17",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts may be low due to glare."
+"2014-01-29_YB-Aq6",2014-01-29,2014-01-29,"YB","A","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-01-29_YB-Aq7",2014-01-29,2014-01-29,"YB","A","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","15%","Algae is a thin film."
+"2014-01-29_YB-Aq9",2014-01-29,2014-01-29,"YB","A","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts may be low due to glare."
+"2014-01-29_YB-Aq6",2014-01-29,2014-01-29,"YB","A","6","Myt","Mytilus_spp","Type 7",734,0.0875,8388.57142857143,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-01-29_YB-Aq7",2014-01-29,2014-01-29,"YB","A","7","Myt","Mytilus_spp","Type 7",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","15%","Algae is a thin film."
+"2014-01-29_YB-Aq9",2014-01-29,2014-01-29,"YB","A","9","Myt","Mytilus_spp","Type 7",660,0.0875,7542.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts may be low due to glare."
+"2014-01-29_YB-Aq6",2014-01-29,2014-01-29,"YB","A","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-01-29_YB-Aq7",2014-01-29,2014-01-29,"YB","A","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","15%","Algae is a thin film."
+"2014-01-29_YB-Aq9",2014-01-29,2014-01-29,"YB","A","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts may be low due to glare."
+"2014-01-29_YB-Aq6",2014-01-29,2014-01-29,"YB","A","6","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-01-29_YB-Aq7",2014-01-29,2014-01-29,"YB","A","7","Mt","Mytilus_trossulus","Type 15",237,0.015625,15168,"c","Beatriz Vaca","Finished","Cropped","Cropped","15%","Algae is a thin film."
+"2014-01-29_YB-Aq9",2014-01-29,2014-01-29,"YB","A","9","Mt","Mytilus_trossulus","Type 15",273,0.0875,3120,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts may be low due to glare."
+"2014-01-29_YB-Aq6",2014-01-29,2014-01-29,"YB","A","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-01-29_YB-Aq7",2014-01-29,2014-01-29,"YB","A","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","15%","Algae is a thin film."
+"2014-01-29_YB-Aq9",2014-01-29,2014-01-29,"YB","A","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts may be low due to glare."
+"2014-01-29_YB-Aq6",2014-01-29,2014-01-29,"YB","A","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-01-29_YB-Aq7",2014-01-29,2014-01-29,"YB","A","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","15%","Algae is a thin film."
+"2014-01-29_YB-Aq9",2014-01-29,2014-01-29,"YB","A","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts may be low due to glare."
+"2014-01-29_YB-Aq6",2014-01-29,2014-01-29,"YB","A","6","Nc","Nucella_canaliculata","Type 10",2,0.0875,22.8571428571429,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-01-29_YB-Aq7",2014-01-29,2014-01-29,"YB","A","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","15%","Algae is a thin film."
+"2014-01-29_YB-Aq9",2014-01-29,2014-01-29,"YB","A","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts may be low due to glare."
+"2014-01-29_YB-Aq6",2014-01-29,2014-01-29,"YB","A","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-01-29_YB-Aq7",2014-01-29,2014-01-29,"YB","A","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","15%","Algae is a thin film."
+"2014-01-29_YB-Aq9",2014-01-29,2014-01-29,"YB","A","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts may be low due to glare."
+"2014-01-29_YB-Aq6",2014-01-29,2014-01-29,"YB","A","6","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-01-29_YB-Aq7",2014-01-29,2014-01-29,"YB","A","7","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","15%","Algae is a thin film."
+"2014-01-29_YB-Aq9",2014-01-29,2014-01-29,"YB","A","9","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts may be low due to glare."
+"2014-01-29_YB-Aq6",2014-01-29,2014-01-29,"YB","A","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-01-29_YB-Aq7",2014-01-29,2014-01-29,"YB","A","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","15%","Algae is a thin film."
+"2014-01-29_YB-Aq9",2014-01-29,2014-01-29,"YB","A","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts may be low due to glare."
+"2014-01-29_YB-Aq6",2014-01-29,2014-01-29,"YB","A","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-01-29_YB-Aq7",2014-01-29,2014-01-29,"YB","A","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","15%","Algae is a thin film."
+"2014-01-29_YB-Aq9",2014-01-29,2014-01-29,"YB","A","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts may be low due to glare."
+"2014-01-29_YB-Aq6",2014-01-29,2014-01-29,"YB","A","6","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-01-29_YB-Aq7",2014-01-29,2014-01-29,"YB","A","7","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","15%","Algae is a thin film."
+"2014-01-29_YB-Aq9",2014-01-29,2014-01-29,"YB","A","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts may be low due to glare."
+"2014-01-29_YB-Aq6",2014-01-29,2014-01-29,"YB","A","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-01-29_YB-Aq7",2014-01-29,2014-01-29,"YB","A","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","15%","Algae is a thin film."
+"2014-01-29_YB-Aq9",2014-01-29,2014-01-29,"YB","A","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts may be low due to glare."
+"2014-01-29_YB-Aq6",2014-01-29,2014-01-29,"YB","A","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-01-29_YB-Aq7",2014-01-29,2014-01-29,"YB","A","7","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","15%","Algae is a thin film."
+"2014-01-29_YB-Aq9",2014-01-29,2014-01-29,"YB","A","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts may be low due to glare."
+"2014-01-29_YB-Aq6",2014-01-29,2014-01-29,"YB","A","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-01-29_YB-Aq7",2014-01-29,2014-01-29,"YB","A","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","15%","Algae is a thin film."
+"2014-01-29_YB-Aq9",2014-01-29,2014-01-29,"YB","A","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts may be low due to glare."
+"2014-01-29_YB-ABq1",2014-01-29,2014-01-29,"YB","AB","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","","used uncropped picture for barnacles due to low density"
+"2014-01-29_YB-ABq2",2014-01-29,2014-01-29,"YB","AB","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-01-29_YB-ABq4",2014-01-29,2014-01-29,"YB","AB","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-29_YB-ABq1",2014-01-29,2014-01-29,"YB","AB","1","Ae","Anemones","Type 14",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","","used uncropped picture for barnacles due to low density"
+"2014-01-29_YB-ABq2",2014-01-29,2014-01-29,"YB","AB","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-01-29_YB-ABq4",2014-01-29,2014-01-29,"YB","AB","4","Ae","Anemones","Type 14",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-29_YB-ABq1",2014-01-29,2014-01-29,"YB","AB","1","Bg","Balanus_glandula","Type 1",383,0.0875,4377.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","","used uncropped picture for barnacles due to low density"
+"2014-01-29_YB-ABq2",2014-01-29,2014-01-29,"YB","AB","2","Bg","Balanus_glandula","Type 1",538,0.015625,34432,"c","Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-01-29_YB-ABq4",2014-01-29,2014-01-29,"YB","AB","4","Bg","Balanus_glandula","Type 1",1462,0.0875,16708.5714285714,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-29_YB-ABq1",2014-01-29,2014-01-29,"YB","AB","1","BgD","Balanus_glandula_(dead)","Type 2",35,0.0875,400,NA,"Beatriz Vaca","Finished","Full","Full","","used uncropped picture for barnacles due to low density"
+"2014-01-29_YB-ABq2",2014-01-29,2014-01-29,"YB","AB","2","BgD","Balanus_glandula_(dead)","Type 2",11,0.015625,704,"c","Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-01-29_YB-ABq4",2014-01-29,2014-01-29,"YB","AB","4","BgD","Balanus_glandula_(dead)","Type 2",10,0.0875,114.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-29_YB-ABq1",2014-01-29,2014-01-29,"YB","AB","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","","used uncropped picture for barnacles due to low density"
+"2014-01-29_YB-ABq2",2014-01-29,2014-01-29,"YB","AB","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-01-29_YB-ABq4",2014-01-29,2014-01-29,"YB","AB","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-29_YB-ABq1",2014-01-29,2014-01-29,"YB","AB","1","Cth","Chthamalus_dalli","Type 3",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","","used uncropped picture for barnacles due to low density"
+"2014-01-29_YB-ABq2",2014-01-29,2014-01-29,"YB","AB","2","Cth","Chthamalus_dalli","Type 3",22,0.015625,1408,"c","Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-01-29_YB-ABq4",2014-01-29,2014-01-29,"YB","AB","4","Cth","Chthamalus_dalli","Type 3",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-29_YB-ABq1",2014-01-29,2014-01-29,"YB","AB","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","","used uncropped picture for barnacles due to low density"
+"2014-01-29_YB-ABq2",2014-01-29,2014-01-29,"YB","AB","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-01-29_YB-ABq4",2014-01-29,2014-01-29,"YB","AB","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-29_YB-ABq1",2014-01-29,2014-01-29,"YB","AB","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","","used uncropped picture for barnacles due to low density"
+"2014-01-29_YB-ABq2",2014-01-29,2014-01-29,"YB","AB","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-01-29_YB-ABq4",2014-01-29,2014-01-29,"YB","AB","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-29_YB-ABq1",2014-01-29,2014-01-29,"YB","AB","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","","used uncropped picture for barnacles due to low density"
+"2014-01-29_YB-ABq2",2014-01-29,2014-01-29,"YB","AB","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-01-29_YB-ABq4",2014-01-29,2014-01-29,"YB","AB","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-29_YB-ABq1",2014-01-29,2014-01-29,"YB","AB","1","Lim","Limpets","Type 12",54,0.0875,617.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","","used uncropped picture for barnacles due to low density"
+"2014-01-29_YB-ABq2",2014-01-29,2014-01-29,"YB","AB","2","Lim","Limpets","Type 12",45,0.0875,514.285714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-01-29_YB-ABq4",2014-01-29,2014-01-29,"YB","AB","4","Lim","Limpets","Type 12",276,0.0875,3154.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-29_YB-ABq1",2014-01-29,2014-01-29,"YB","AB","1","Ls","Littorina_sitkana","Type 13",20,0.0875,228.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","","used uncropped picture for barnacles due to low density"
+"2014-01-29_YB-ABq2",2014-01-29,2014-01-29,"YB","AB","2","Ls","Littorina_sitkana","Type 13",23,0.0875,262.857142857143,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-01-29_YB-ABq4",2014-01-29,2014-01-29,"YB","AB","4","Ls","Littorina_sitkana","Type 13",117,0.0875,1337.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-29_YB-ABq1",2014-01-29,2014-01-29,"YB","AB","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","","used uncropped picture for barnacles due to low density"
+"2014-01-29_YB-ABq2",2014-01-29,2014-01-29,"YB","AB","2","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-01-29_YB-ABq4",2014-01-29,2014-01-29,"YB","AB","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-29_YB-ABq1",2014-01-29,2014-01-29,"YB","AB","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","","used uncropped picture for barnacles due to low density"
+"2014-01-29_YB-ABq2",2014-01-29,2014-01-29,"YB","AB","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-01-29_YB-ABq4",2014-01-29,2014-01-29,"YB","AB","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-29_YB-ABq1",2014-01-29,2014-01-29,"YB","AB","1","Myt","Mytilus_spp","Type 7",11,0.0875,125.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","","used uncropped picture for barnacles due to low density"
+"2014-01-29_YB-ABq2",2014-01-29,2014-01-29,"YB","AB","2","Myt","Mytilus_spp","Type 7",159,0.015625,10176,"c","Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-01-29_YB-ABq4",2014-01-29,2014-01-29,"YB","AB","4","Myt","Mytilus_spp","Type 7",487,0.0875,5565.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-29_YB-ABq1",2014-01-29,2014-01-29,"YB","AB","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","","used uncropped picture for barnacles due to low density"
+"2014-01-29_YB-ABq2",2014-01-29,2014-01-29,"YB","AB","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-01-29_YB-ABq4",2014-01-29,2014-01-29,"YB","AB","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-29_YB-ABq1",2014-01-29,2014-01-29,"YB","AB","1","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","","used uncropped picture for barnacles due to low density"
+"2014-01-29_YB-ABq2",2014-01-29,2014-01-29,"YB","AB","2","Mt","Mytilus_trossulus","Type 15",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-01-29_YB-ABq4",2014-01-29,2014-01-29,"YB","AB","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-29_YB-ABq1",2014-01-29,2014-01-29,"YB","AB","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","","used uncropped picture for barnacles due to low density"
+"2014-01-29_YB-ABq2",2014-01-29,2014-01-29,"YB","AB","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-01-29_YB-ABq4",2014-01-29,2014-01-29,"YB","AB","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-29_YB-ABq1",2014-01-29,2014-01-29,"YB","AB","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","","used uncropped picture for barnacles due to low density"
+"2014-01-29_YB-ABq2",2014-01-29,2014-01-29,"YB","AB","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-01-29_YB-ABq4",2014-01-29,2014-01-29,"YB","AB","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-29_YB-ABq1",2014-01-29,2014-01-29,"YB","AB","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","","used uncropped picture for barnacles due to low density"
+"2014-01-29_YB-ABq2",2014-01-29,2014-01-29,"YB","AB","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-01-29_YB-ABq4",2014-01-29,2014-01-29,"YB","AB","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-29_YB-ABq1",2014-01-29,2014-01-29,"YB","AB","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","","used uncropped picture for barnacles due to low density"
+"2014-01-29_YB-ABq2",2014-01-29,2014-01-29,"YB","AB","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-01-29_YB-ABq4",2014-01-29,2014-01-29,"YB","AB","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-29_YB-ABq1",2014-01-29,2014-01-29,"YB","AB","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","","used uncropped picture for barnacles due to low density"
+"2014-01-29_YB-ABq2",2014-01-29,2014-01-29,"YB","AB","2","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-01-29_YB-ABq4",2014-01-29,2014-01-29,"YB","AB","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-29_YB-ABq1",2014-01-29,2014-01-29,"YB","AB","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","","used uncropped picture for barnacles due to low density"
+"2014-01-29_YB-ABq2",2014-01-29,2014-01-29,"YB","AB","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-01-29_YB-ABq4",2014-01-29,2014-01-29,"YB","AB","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-29_YB-ABq1",2014-01-29,2014-01-29,"YB","AB","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","","used uncropped picture for barnacles due to low density"
+"2014-01-29_YB-ABq2",2014-01-29,2014-01-29,"YB","AB","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-01-29_YB-ABq4",2014-01-29,2014-01-29,"YB","AB","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-29_YB-ABq1",2014-01-29,2014-01-29,"YB","AB","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","","used uncropped picture for barnacles due to low density"
+"2014-01-29_YB-ABq2",2014-01-29,2014-01-29,"YB","AB","2","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-01-29_YB-ABq4",2014-01-29,2014-01-29,"YB","AB","4","Pp","Pollicipes_polymerus","Type 11",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-29_YB-ABq1",2014-01-29,2014-01-29,"YB","AB","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","","used uncropped picture for barnacles due to low density"
+"2014-01-29_YB-ABq2",2014-01-29,2014-01-29,"YB","AB","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-01-29_YB-ABq4",2014-01-29,2014-01-29,"YB","AB","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-29_YB-ABq1",2014-01-29,2014-01-29,"YB","AB","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","","used uncropped picture for barnacles due to low density"
+"2014-01-29_YB-ABq2",2014-01-29,2014-01-29,"YB","AB","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-01-29_YB-ABq4",2014-01-29,2014-01-29,"YB","AB","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-29_YB-ABq1",2014-01-29,2014-01-29,"YB","AB","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","","used uncropped picture for barnacles due to low density"
+"2014-01-29_YB-ABq2",2014-01-29,2014-01-29,"YB","AB","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-01-29_YB-ABq4",2014-01-29,2014-01-29,"YB","AB","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-29_YB-ACq1",2014-01-29,2014-01-29,"YB","AC","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%","used uncropped picture for barnacles due to low density, Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2014-01-29_YB-ACq4",2014-01-29,2014-01-29,"YB","AC","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts likely low due to glare."
+"2014-01-29_YB-ACq7",2014-01-29,2014-01-29,"YB","AC","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare."
+"2014-01-29_YB-ACq8",2014-01-29,2014-01-29,"YB","AC","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2014-01-29_YB-ACq1",2014-01-29,2014-01-29,"YB","AC","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%","used uncropped picture for barnacles due to low density, Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2014-01-29_YB-ACq4",2014-01-29,2014-01-29,"YB","AC","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts likely low due to glare."
+"2014-01-29_YB-ACq7",2014-01-29,2014-01-29,"YB","AC","7","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare."
+"2014-01-29_YB-ACq8",2014-01-29,2014-01-29,"YB","AC","8","Ae","Anemones","Type 14",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2014-01-29_YB-ACq1",2014-01-29,2014-01-29,"YB","AC","1","Bg","Balanus_glandula","Type 1",1758,0.0875,20091.4285714286,NA,"Beatriz Vaca","Finished","Full","Full","0%","used uncropped picture for barnacles due to low density, Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2014-01-29_YB-ACq4",2014-01-29,2014-01-29,"YB","AC","4","Bg","Balanus_glandula","Type 1",53,0.0875,605.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts likely low due to glare."
+"2014-01-29_YB-ACq7",2014-01-29,2014-01-29,"YB","AC","7","Bg","Balanus_glandula","Type 1",131,0.0875,1497.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare."
+"2014-01-29_YB-ACq8",2014-01-29,2014-01-29,"YB","AC","8","Bg","Balanus_glandula","Type 1",952,0.0875,10880,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2014-01-29_YB-ACq1",2014-01-29,2014-01-29,"YB","AC","1","BgD","Balanus_glandula_(dead)","Type 2",261,0.0875,2982.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","0%","used uncropped picture for barnacles due to low density, Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2014-01-29_YB-ACq4",2014-01-29,2014-01-29,"YB","AC","4","BgD","Balanus_glandula_(dead)","Type 2",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts likely low due to glare."
+"2014-01-29_YB-ACq7",2014-01-29,2014-01-29,"YB","AC","7","BgD","Balanus_glandula_(dead)","Type 2",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare."
+"2014-01-29_YB-ACq8",2014-01-29,2014-01-29,"YB","AC","8","BgD","Balanus_glandula_(dead)","Type 2",29,0.0875,331.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2014-01-29_YB-ACq1",2014-01-29,2014-01-29,"YB","AC","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%","used uncropped picture for barnacles due to low density, Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2014-01-29_YB-ACq4",2014-01-29,2014-01-29,"YB","AC","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts likely low due to glare."
+"2014-01-29_YB-ACq7",2014-01-29,2014-01-29,"YB","AC","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare."
+"2014-01-29_YB-ACq8",2014-01-29,2014-01-29,"YB","AC","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2014-01-29_YB-ACq1",2014-01-29,2014-01-29,"YB","AC","1","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%","used uncropped picture for barnacles due to low density, Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2014-01-29_YB-ACq4",2014-01-29,2014-01-29,"YB","AC","4","Cth","Chthamalus_dalli","Type 3",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts likely low due to glare."
+"2014-01-29_YB-ACq7",2014-01-29,2014-01-29,"YB","AC","7","Cth","Chthamalus_dalli","Type 3",22,0.0875,251.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare."
+"2014-01-29_YB-ACq8",2014-01-29,2014-01-29,"YB","AC","8","Cth","Chthamalus_dalli","Type 3",9,0.0875,102.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2014-01-29_YB-ACq1",2014-01-29,2014-01-29,"YB","AC","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%","used uncropped picture for barnacles due to low density, Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2014-01-29_YB-ACq4",2014-01-29,2014-01-29,"YB","AC","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts likely low due to glare."
+"2014-01-29_YB-ACq7",2014-01-29,2014-01-29,"YB","AC","7","CthD","Chthamalus_dalli (dead)","Type 4",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare."
+"2014-01-29_YB-ACq8",2014-01-29,2014-01-29,"YB","AC","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2014-01-29_YB-ACq1",2014-01-29,2014-01-29,"YB","AC","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%","used uncropped picture for barnacles due to low density, Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2014-01-29_YB-ACq4",2014-01-29,2014-01-29,"YB","AC","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts likely low due to glare."
+"2014-01-29_YB-ACq7",2014-01-29,2014-01-29,"YB","AC","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare."
+"2014-01-29_YB-ACq8",2014-01-29,2014-01-29,"YB","AC","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2014-01-29_YB-ACq1",2014-01-29,2014-01-29,"YB","AC","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%","used uncropped picture for barnacles due to low density, Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2014-01-29_YB-ACq4",2014-01-29,2014-01-29,"YB","AC","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts likely low due to glare."
+"2014-01-29_YB-ACq7",2014-01-29,2014-01-29,"YB","AC","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare."
+"2014-01-29_YB-ACq8",2014-01-29,2014-01-29,"YB","AC","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2014-01-29_YB-ACq1",2014-01-29,2014-01-29,"YB","AC","1","Lim","Limpets","Type 12",24,0.0875,274.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","0%","used uncropped picture for barnacles due to low density, Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2014-01-29_YB-ACq4",2014-01-29,2014-01-29,"YB","AC","4","Lim","Limpets","Type 12",77,0.0875,880,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts likely low due to glare."
+"2014-01-29_YB-ACq7",2014-01-29,2014-01-29,"YB","AC","7","Lim","Limpets","Type 12",89,0.0875,1017.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare."
+"2014-01-29_YB-ACq8",2014-01-29,2014-01-29,"YB","AC","8","Lim","Limpets","Type 12",115,0.0875,1314.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2014-01-29_YB-ACq1",2014-01-29,2014-01-29,"YB","AC","1","Ls","Littorina_sitkana","Type 13",37,0.0875,422.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","0%","used uncropped picture for barnacles due to low density, Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2014-01-29_YB-ACq4",2014-01-29,2014-01-29,"YB","AC","4","Ls","Littorina_sitkana","Type 13",21,0.0875,240,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts likely low due to glare."
+"2014-01-29_YB-ACq7",2014-01-29,2014-01-29,"YB","AC","7","Ls","Littorina_sitkana","Type 13",211,0.0875,2411.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare."
+"2014-01-29_YB-ACq8",2014-01-29,2014-01-29,"YB","AC","8","Ls","Littorina_sitkana","Type 13",249,0.0875,2845.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2014-01-29_YB-ACq1",2014-01-29,2014-01-29,"YB","AC","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%","used uncropped picture for barnacles due to low density, Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2014-01-29_YB-ACq4",2014-01-29,2014-01-29,"YB","AC","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts likely low due to glare."
+"2014-01-29_YB-ACq7",2014-01-29,2014-01-29,"YB","AC","7","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare."
+"2014-01-29_YB-ACq8",2014-01-29,2014-01-29,"YB","AC","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2014-01-29_YB-ACq1",2014-01-29,2014-01-29,"YB","AC","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%","used uncropped picture for barnacles due to low density, Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2014-01-29_YB-ACq4",2014-01-29,2014-01-29,"YB","AC","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts likely low due to glare."
+"2014-01-29_YB-ACq7",2014-01-29,2014-01-29,"YB","AC","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare."
+"2014-01-29_YB-ACq8",2014-01-29,2014-01-29,"YB","AC","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2014-01-29_YB-ACq1",2014-01-29,2014-01-29,"YB","AC","1","Myt","Mytilus_spp","Type 7",30,0.0875,342.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","0%","used uncropped picture for barnacles due to low density, Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2014-01-29_YB-ACq4",2014-01-29,2014-01-29,"YB","AC","4","Myt","Mytilus_spp","Type 7",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts likely low due to glare."
+"2014-01-29_YB-ACq7",2014-01-29,2014-01-29,"YB","AC","7","Myt","Mytilus_spp","Type 7",31,0.0875,354.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare."
+"2014-01-29_YB-ACq8",2014-01-29,2014-01-29,"YB","AC","8","Myt","Mytilus_spp","Type 7",111,0.0875,1268.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2014-01-29_YB-ACq1",2014-01-29,2014-01-29,"YB","AC","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%","used uncropped picture for barnacles due to low density, Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2014-01-29_YB-ACq4",2014-01-29,2014-01-29,"YB","AC","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts likely low due to glare."
+"2014-01-29_YB-ACq7",2014-01-29,2014-01-29,"YB","AC","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare."
+"2014-01-29_YB-ACq8",2014-01-29,2014-01-29,"YB","AC","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2014-01-29_YB-ACq1",2014-01-29,2014-01-29,"YB","AC","1","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%","used uncropped picture for barnacles due to low density, Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2014-01-29_YB-ACq4",2014-01-29,2014-01-29,"YB","AC","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts likely low due to glare."
+"2014-01-29_YB-ACq7",2014-01-29,2014-01-29,"YB","AC","7","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare."
+"2014-01-29_YB-ACq8",2014-01-29,2014-01-29,"YB","AC","8","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2014-01-29_YB-ACq1",2014-01-29,2014-01-29,"YB","AC","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%","used uncropped picture for barnacles due to low density, Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2014-01-29_YB-ACq4",2014-01-29,2014-01-29,"YB","AC","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts likely low due to glare."
+"2014-01-29_YB-ACq7",2014-01-29,2014-01-29,"YB","AC","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare."
+"2014-01-29_YB-ACq8",2014-01-29,2014-01-29,"YB","AC","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2014-01-29_YB-ACq1",2014-01-29,2014-01-29,"YB","AC","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%","used uncropped picture for barnacles due to low density, Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2014-01-29_YB-ACq4",2014-01-29,2014-01-29,"YB","AC","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts likely low due to glare."
+"2014-01-29_YB-ACq7",2014-01-29,2014-01-29,"YB","AC","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare."
+"2014-01-29_YB-ACq8",2014-01-29,2014-01-29,"YB","AC","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2014-01-29_YB-ACq1",2014-01-29,2014-01-29,"YB","AC","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%","used uncropped picture for barnacles due to low density, Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2014-01-29_YB-ACq4",2014-01-29,2014-01-29,"YB","AC","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts likely low due to glare."
+"2014-01-29_YB-ACq7",2014-01-29,2014-01-29,"YB","AC","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare."
+"2014-01-29_YB-ACq8",2014-01-29,2014-01-29,"YB","AC","8","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2014-01-29_YB-ACq1",2014-01-29,2014-01-29,"YB","AC","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%","used uncropped picture for barnacles due to low density, Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2014-01-29_YB-ACq4",2014-01-29,2014-01-29,"YB","AC","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts likely low due to glare."
+"2014-01-29_YB-ACq7",2014-01-29,2014-01-29,"YB","AC","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare."
+"2014-01-29_YB-ACq8",2014-01-29,2014-01-29,"YB","AC","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2014-01-29_YB-ACq1",2014-01-29,2014-01-29,"YB","AC","1","No","Nucella_ostrina","Type 9",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","0%","used uncropped picture for barnacles due to low density, Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2014-01-29_YB-ACq4",2014-01-29,2014-01-29,"YB","AC","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts likely low due to glare."
+"2014-01-29_YB-ACq7",2014-01-29,2014-01-29,"YB","AC","7","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare."
+"2014-01-29_YB-ACq8",2014-01-29,2014-01-29,"YB","AC","8","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2014-01-29_YB-ACq1",2014-01-29,2014-01-29,"YB","AC","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%","used uncropped picture for barnacles due to low density, Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2014-01-29_YB-ACq4",2014-01-29,2014-01-29,"YB","AC","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts likely low due to glare."
+"2014-01-29_YB-ACq7",2014-01-29,2014-01-29,"YB","AC","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare."
+"2014-01-29_YB-ACq8",2014-01-29,2014-01-29,"YB","AC","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2014-01-29_YB-ACq1",2014-01-29,2014-01-29,"YB","AC","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%","used uncropped picture for barnacles due to low density, Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2014-01-29_YB-ACq4",2014-01-29,2014-01-29,"YB","AC","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts likely low due to glare."
+"2014-01-29_YB-ACq7",2014-01-29,2014-01-29,"YB","AC","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare."
+"2014-01-29_YB-ACq8",2014-01-29,2014-01-29,"YB","AC","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2014-01-29_YB-ACq1",2014-01-29,2014-01-29,"YB","AC","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%","used uncropped picture for barnacles due to low density, Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2014-01-29_YB-ACq4",2014-01-29,2014-01-29,"YB","AC","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts likely low due to glare."
+"2014-01-29_YB-ACq7",2014-01-29,2014-01-29,"YB","AC","7","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare."
+"2014-01-29_YB-ACq8",2014-01-29,2014-01-29,"YB","AC","8","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2014-01-29_YB-ACq1",2014-01-29,2014-01-29,"YB","AC","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%","used uncropped picture for barnacles due to low density, Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2014-01-29_YB-ACq4",2014-01-29,2014-01-29,"YB","AC","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts likely low due to glare."
+"2014-01-29_YB-ACq7",2014-01-29,2014-01-29,"YB","AC","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare."
+"2014-01-29_YB-ACq8",2014-01-29,2014-01-29,"YB","AC","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2014-01-29_YB-ACq1",2014-01-29,2014-01-29,"YB","AC","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%","used uncropped picture for barnacles due to low density, Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2014-01-29_YB-ACq4",2014-01-29,2014-01-29,"YB","AC","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts likely low due to glare."
+"2014-01-29_YB-ACq7",2014-01-29,2014-01-29,"YB","AC","7","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare."
+"2014-01-29_YB-ACq8",2014-01-29,2014-01-29,"YB","AC","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2014-01-29_YB-ACq1",2014-01-29,2014-01-29,"YB","AC","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%","used uncropped picture for barnacles due to low density, Mussel, littorine snail, and limpet densities likely higher but glare made counting difficult"
+"2014-01-29_YB-ACq4",2014-01-29,2014-01-29,"YB","AC","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts likely low due to glare."
+"2014-01-29_YB-ACq7",2014-01-29,2014-01-29,"YB","AC","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare."
+"2014-01-29_YB-ACq8",2014-01-29,2014-01-29,"YB","AC","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2014-01-29_YB-ADq1",2014-01-29,2014-01-29,"YB","AD","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2014-01-29_YB-ADq5",2014-01-29,2014-01-29,"YB","AD","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","algae is a thin, filmy layer"
+"2014-01-29_YB-ADq8",2014-01-29,2014-01-29,"YB","AD","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-01-29_YB-ADq1",2014-01-29,2014-01-29,"YB","AD","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2014-01-29_YB-ADq5",2014-01-29,2014-01-29,"YB","AD","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","algae is a thin, filmy layer"
+"2014-01-29_YB-ADq8",2014-01-29,2014-01-29,"YB","AD","8","Ae","Anemones","Type 14",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-01-29_YB-ADq1",2014-01-29,2014-01-29,"YB","AD","1","Bg","Balanus_glandula","Type 1",655,0.015625,41920,"c","Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2014-01-29_YB-ADq5",2014-01-29,2014-01-29,"YB","AD","5","Bg","Balanus_glandula","Type 1",561,0.015625,35904,"c","Beatriz Vaca","Finished","Full","Cropped","30%","algae is a thin, filmy layer"
+"2014-01-29_YB-ADq8",2014-01-29,2014-01-29,"YB","AD","8","Bg","Balanus_glandula","Type 1",532,0.015625,34048,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-01-29_YB-ADq1",2014-01-29,2014-01-29,"YB","AD","1","BgD","Balanus_glandula_(dead)","Type 2",20,0.015625,1280,"c","Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2014-01-29_YB-ADq5",2014-01-29,2014-01-29,"YB","AD","5","BgD","Balanus_glandula_(dead)","Type 2",10,0.015625,640,"c","Beatriz Vaca","Finished","Full","Cropped","30%","algae is a thin, filmy layer"
+"2014-01-29_YB-ADq8",2014-01-29,2014-01-29,"YB","AD","8","BgD","Balanus_glandula_(dead)","Type 2",2,0.015625,128,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-01-29_YB-ADq1",2014-01-29,2014-01-29,"YB","AD","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2014-01-29_YB-ADq5",2014-01-29,2014-01-29,"YB","AD","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","algae is a thin, filmy layer"
+"2014-01-29_YB-ADq8",2014-01-29,2014-01-29,"YB","AD","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-01-29_YB-ADq1",2014-01-29,2014-01-29,"YB","AD","1","Cth","Chthamalus_dalli","Type 3",62,0.015625,3968,"c","Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2014-01-29_YB-ADq5",2014-01-29,2014-01-29,"YB","AD","5","Cth","Chthamalus_dalli","Type 3",189,0.015625,12096,"c","Beatriz Vaca","Finished","Full","Cropped","30%","algae is a thin, filmy layer"
+"2014-01-29_YB-ADq8",2014-01-29,2014-01-29,"YB","AD","8","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-01-29_YB-ADq1",2014-01-29,2014-01-29,"YB","AD","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2014-01-29_YB-ADq5",2014-01-29,2014-01-29,"YB","AD","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","30%","algae is a thin, filmy layer"
+"2014-01-29_YB-ADq8",2014-01-29,2014-01-29,"YB","AD","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-01-29_YB-ADq1",2014-01-29,2014-01-29,"YB","AD","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2014-01-29_YB-ADq5",2014-01-29,2014-01-29,"YB","AD","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","algae is a thin, filmy layer"
+"2014-01-29_YB-ADq8",2014-01-29,2014-01-29,"YB","AD","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-01-29_YB-ADq1",2014-01-29,2014-01-29,"YB","AD","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2014-01-29_YB-ADq5",2014-01-29,2014-01-29,"YB","AD","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","algae is a thin, filmy layer"
+"2014-01-29_YB-ADq8",2014-01-29,2014-01-29,"YB","AD","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-01-29_YB-ADq1",2014-01-29,2014-01-29,"YB","AD","1","Lim","Limpets","Type 12",24,0.0875,274.285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2014-01-29_YB-ADq5",2014-01-29,2014-01-29,"YB","AD","5","Lim","Limpets","Type 12",23,0.0875,262.857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","algae is a thin, filmy layer"
+"2014-01-29_YB-ADq8",2014-01-29,2014-01-29,"YB","AD","8","Lim","Limpets","Type 12",350,0.0875,4000,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-01-29_YB-ADq1",2014-01-29,2014-01-29,"YB","AD","1","Ls","Littorina_sitkana","Type 13",242,0.0875,2765.71428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2014-01-29_YB-ADq5",2014-01-29,2014-01-29,"YB","AD","5","Ls","Littorina_sitkana","Type 13",325,0.0875,3714.28571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","algae is a thin, filmy layer"
+"2014-01-29_YB-ADq8",2014-01-29,2014-01-29,"YB","AD","8","Ls","Littorina_sitkana","Type 13",341,0.0875,3897.14285714286,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-01-29_YB-ADq1",2014-01-29,2014-01-29,"YB","AD","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2014-01-29_YB-ADq5",2014-01-29,2014-01-29,"YB","AD","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","algae is a thin, filmy layer"
+"2014-01-29_YB-ADq8",2014-01-29,2014-01-29,"YB","AD","8","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-01-29_YB-ADq1",2014-01-29,2014-01-29,"YB","AD","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2014-01-29_YB-ADq5",2014-01-29,2014-01-29,"YB","AD","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","algae is a thin, filmy layer"
+"2014-01-29_YB-ADq8",2014-01-29,2014-01-29,"YB","AD","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-01-29_YB-ADq1",2014-01-29,2014-01-29,"YB","AD","1","Myt","Mytilus_spp","Type 7",840,0.0875,9600,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2014-01-29_YB-ADq5",2014-01-29,2014-01-29,"YB","AD","5","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","algae is a thin, filmy layer"
+"2014-01-29_YB-ADq8",2014-01-29,2014-01-29,"YB","AD","8","Myt","Mytilus_spp","Type 7",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-01-29_YB-ADq1",2014-01-29,2014-01-29,"YB","AD","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2014-01-29_YB-ADq5",2014-01-29,2014-01-29,"YB","AD","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","algae is a thin, filmy layer"
+"2014-01-29_YB-ADq8",2014-01-29,2014-01-29,"YB","AD","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-01-29_YB-ADq1",2014-01-29,2014-01-29,"YB","AD","1","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2014-01-29_YB-ADq5",2014-01-29,2014-01-29,"YB","AD","5","Mt","Mytilus_trossulus","Type 15",657,0.0875,7508.57142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","algae is a thin, filmy layer"
+"2014-01-29_YB-ADq8",2014-01-29,2014-01-29,"YB","AD","8","Mt","Mytilus_trossulus","Type 15",379,0.015625,24256,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-01-29_YB-ADq1",2014-01-29,2014-01-29,"YB","AD","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2014-01-29_YB-ADq5",2014-01-29,2014-01-29,"YB","AD","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","algae is a thin, filmy layer"
+"2014-01-29_YB-ADq8",2014-01-29,2014-01-29,"YB","AD","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-01-29_YB-ADq1",2014-01-29,2014-01-29,"YB","AD","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2014-01-29_YB-ADq5",2014-01-29,2014-01-29,"YB","AD","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","algae is a thin, filmy layer"
+"2014-01-29_YB-ADq8",2014-01-29,2014-01-29,"YB","AD","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-01-29_YB-ADq1",2014-01-29,2014-01-29,"YB","AD","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2014-01-29_YB-ADq5",2014-01-29,2014-01-29,"YB","AD","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","algae is a thin, filmy layer"
+"2014-01-29_YB-ADq8",2014-01-29,2014-01-29,"YB","AD","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-01-29_YB-ADq1",2014-01-29,2014-01-29,"YB","AD","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2014-01-29_YB-ADq5",2014-01-29,2014-01-29,"YB","AD","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","algae is a thin, filmy layer"
+"2014-01-29_YB-ADq8",2014-01-29,2014-01-29,"YB","AD","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-01-29_YB-ADq1",2014-01-29,2014-01-29,"YB","AD","1","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2014-01-29_YB-ADq5",2014-01-29,2014-01-29,"YB","AD","5","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","algae is a thin, filmy layer"
+"2014-01-29_YB-ADq8",2014-01-29,2014-01-29,"YB","AD","8","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-01-29_YB-ADq1",2014-01-29,2014-01-29,"YB","AD","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2014-01-29_YB-ADq5",2014-01-29,2014-01-29,"YB","AD","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","algae is a thin, filmy layer"
+"2014-01-29_YB-ADq8",2014-01-29,2014-01-29,"YB","AD","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-01-29_YB-ADq1",2014-01-29,2014-01-29,"YB","AD","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2014-01-29_YB-ADq5",2014-01-29,2014-01-29,"YB","AD","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","algae is a thin, filmy layer"
+"2014-01-29_YB-ADq8",2014-01-29,2014-01-29,"YB","AD","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-01-29_YB-ADq1",2014-01-29,2014-01-29,"YB","AD","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2014-01-29_YB-ADq5",2014-01-29,2014-01-29,"YB","AD","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","algae is a thin, filmy layer"
+"2014-01-29_YB-ADq8",2014-01-29,2014-01-29,"YB","AD","8","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-01-29_YB-ADq1",2014-01-29,2014-01-29,"YB","AD","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2014-01-29_YB-ADq5",2014-01-29,2014-01-29,"YB","AD","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","algae is a thin, filmy layer"
+"2014-01-29_YB-ADq8",2014-01-29,2014-01-29,"YB","AD","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-01-29_YB-ADq1",2014-01-29,2014-01-29,"YB","AD","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2014-01-29_YB-ADq5",2014-01-29,2014-01-29,"YB","AD","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","algae is a thin, filmy layer"
+"2014-01-29_YB-ADq8",2014-01-29,2014-01-29,"YB","AD","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-01-29_YB-ADq1",2014-01-29,2014-01-29,"YB","AD","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2014-01-29_YB-ADq5",2014-01-29,2014-01-29,"YB","AD","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","algae is a thin, filmy layer"
+"2014-01-29_YB-ADq8",2014-01-29,2014-01-29,"YB","AD","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-01-29_YB-AEq1",2014-01-29,2014-01-29,"YB","AE","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Barnacle counts likely low due to algae cover, which is a thin, filmy layer"
+"2014-01-29_YB-AEq4",2014-01-29,2014-01-29,"YB","AE","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Algae is a thin film."
+"2014-01-29_YB-AEq8",2014-01-29,2014-01-29,"YB","AE","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2014-01-29_YB-AEq1",2014-01-29,2014-01-29,"YB","AE","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Barnacle counts likely low due to algae cover, which is a thin, filmy layer"
+"2014-01-29_YB-AEq4",2014-01-29,2014-01-29,"YB","AE","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Algae is a thin film."
+"2014-01-29_YB-AEq8",2014-01-29,2014-01-29,"YB","AE","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2014-01-29_YB-AEq1",2014-01-29,2014-01-29,"YB","AE","1","Bg","Balanus_glandula","Type 1",573,0.015625,36672,"c","Beatriz Vaca","Finished","Full","Cropped","55%","Barnacle counts likely low due to algae cover, which is a thin, filmy layer"
+"2014-01-29_YB-AEq4",2014-01-29,2014-01-29,"YB","AE","4","Bg","Balanus_glandula","Type 1",1344,0.015625,86016,"c","Beatriz Vaca","Finished","Full","Cropped","80%","Algae is a thin film."
+"2014-01-29_YB-AEq8",2014-01-29,2014-01-29,"YB","AE","8","Bg","Balanus_glandula","Type 1",760,0.015625,48640,"c","Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2014-01-29_YB-AEq1",2014-01-29,2014-01-29,"YB","AE","1","BgD","Balanus_glandula_(dead)","Type 2",13,0.015625,832,"c","Beatriz Vaca","Finished","Full","Cropped","55%","Barnacle counts likely low due to algae cover, which is a thin, filmy layer"
+"2014-01-29_YB-AEq4",2014-01-29,2014-01-29,"YB","AE","4","BgD","Balanus_glandula_(dead)","Type 2",23,0.015625,1472,"c","Beatriz Vaca","Finished","Full","Cropped","80%","Algae is a thin film."
+"2014-01-29_YB-AEq8",2014-01-29,2014-01-29,"YB","AE","8","BgD","Balanus_glandula_(dead)","Type 2",15,0.015625,960,"c","Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2014-01-29_YB-AEq1",2014-01-29,2014-01-29,"YB","AE","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Barnacle counts likely low due to algae cover, which is a thin, filmy layer"
+"2014-01-29_YB-AEq4",2014-01-29,2014-01-29,"YB","AE","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Algae is a thin film."
+"2014-01-29_YB-AEq8",2014-01-29,2014-01-29,"YB","AE","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2014-01-29_YB-AEq1",2014-01-29,2014-01-29,"YB","AE","1","Cth","Chthamalus_dalli","Type 3",176,0.015625,11264,"c","Beatriz Vaca","Finished","Full","Cropped","55%","Barnacle counts likely low due to algae cover, which is a thin, filmy layer"
+"2014-01-29_YB-AEq4",2014-01-29,2014-01-29,"YB","AE","4","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","80%","Algae is a thin film."
+"2014-01-29_YB-AEq8",2014-01-29,2014-01-29,"YB","AE","8","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2014-01-29_YB-AEq1",2014-01-29,2014-01-29,"YB","AE","1","CthD","Chthamalus_dalli (dead)","Type 4",1,0.015625,64,"c","Beatriz Vaca","Finished","Full","Cropped","55%","Barnacle counts likely low due to algae cover, which is a thin, filmy layer"
+"2014-01-29_YB-AEq4",2014-01-29,2014-01-29,"YB","AE","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","80%","Algae is a thin film."
+"2014-01-29_YB-AEq8",2014-01-29,2014-01-29,"YB","AE","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2014-01-29_YB-AEq1",2014-01-29,2014-01-29,"YB","AE","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Barnacle counts likely low due to algae cover, which is a thin, filmy layer"
+"2014-01-29_YB-AEq4",2014-01-29,2014-01-29,"YB","AE","4","Emp","Emplectonema worm","Type 23",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Algae is a thin film."
+"2014-01-29_YB-AEq8",2014-01-29,2014-01-29,"YB","AE","8","Emp","Emplectonema worm","Type 23",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2014-01-29_YB-AEq1",2014-01-29,2014-01-29,"YB","AE","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Barnacle counts likely low due to algae cover, which is a thin, filmy layer"
+"2014-01-29_YB-AEq4",2014-01-29,2014-01-29,"YB","AE","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Algae is a thin film."
+"2014-01-29_YB-AEq8",2014-01-29,2014-01-29,"YB","AE","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2014-01-29_YB-AEq1",2014-01-29,2014-01-29,"YB","AE","1","Lim","Limpets","Type 12",13,0.0875,148.571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Barnacle counts likely low due to algae cover, which is a thin, filmy layer"
+"2014-01-29_YB-AEq4",2014-01-29,2014-01-29,"YB","AE","4","Lim","Limpets","Type 12",221,0.0875,2525.71428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Algae is a thin film."
+"2014-01-29_YB-AEq8",2014-01-29,2014-01-29,"YB","AE","8","Lim","Limpets","Type 12",278,0.0875,3177.14285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2014-01-29_YB-AEq1",2014-01-29,2014-01-29,"YB","AE","1","Ls","Littorina_sitkana","Type 13",462,0.0875,5280,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Barnacle counts likely low due to algae cover, which is a thin, filmy layer"
+"2014-01-29_YB-AEq4",2014-01-29,2014-01-29,"YB","AE","4","Ls","Littorina_sitkana","Type 13",254,0.0875,2902.85714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Algae is a thin film."
+"2014-01-29_YB-AEq8",2014-01-29,2014-01-29,"YB","AE","8","Ls","Littorina_sitkana","Type 13",277,0.0875,3165.71428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2014-01-29_YB-AEq1",2014-01-29,2014-01-29,"YB","AE","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Barnacle counts likely low due to algae cover, which is a thin, filmy layer"
+"2014-01-29_YB-AEq4",2014-01-29,2014-01-29,"YB","AE","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Algae is a thin film."
+"2014-01-29_YB-AEq8",2014-01-29,2014-01-29,"YB","AE","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2014-01-29_YB-AEq1",2014-01-29,2014-01-29,"YB","AE","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Barnacle counts likely low due to algae cover, which is a thin, filmy layer"
+"2014-01-29_YB-AEq4",2014-01-29,2014-01-29,"YB","AE","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Algae is a thin film."
+"2014-01-29_YB-AEq8",2014-01-29,2014-01-29,"YB","AE","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2014-01-29_YB-AEq1",2014-01-29,2014-01-29,"YB","AE","1","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Barnacle counts likely low due to algae cover, which is a thin, filmy layer"
+"2014-01-29_YB-AEq4",2014-01-29,2014-01-29,"YB","AE","4","Myt","Mytilus_spp","Type 7",355,0.0875,4057.14285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Algae is a thin film."
+"2014-01-29_YB-AEq8",2014-01-29,2014-01-29,"YB","AE","8","Myt","Mytilus_spp","Type 7",470,0.0875,5371.42857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2014-01-29_YB-AEq1",2014-01-29,2014-01-29,"YB","AE","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Barnacle counts likely low due to algae cover, which is a thin, filmy layer"
+"2014-01-29_YB-AEq4",2014-01-29,2014-01-29,"YB","AE","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Algae is a thin film."
+"2014-01-29_YB-AEq8",2014-01-29,2014-01-29,"YB","AE","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2014-01-29_YB-AEq1",2014-01-29,2014-01-29,"YB","AE","1","Mt","Mytilus_trossulus","Type 15",167,0.0875,1908.57142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Barnacle counts likely low due to algae cover, which is a thin, filmy layer"
+"2014-01-29_YB-AEq4",2014-01-29,2014-01-29,"YB","AE","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Algae is a thin film."
+"2014-01-29_YB-AEq8",2014-01-29,2014-01-29,"YB","AE","8","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2014-01-29_YB-AEq1",2014-01-29,2014-01-29,"YB","AE","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Barnacle counts likely low due to algae cover, which is a thin, filmy layer"
+"2014-01-29_YB-AEq4",2014-01-29,2014-01-29,"YB","AE","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Algae is a thin film."
+"2014-01-29_YB-AEq8",2014-01-29,2014-01-29,"YB","AE","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2014-01-29_YB-AEq1",2014-01-29,2014-01-29,"YB","AE","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Barnacle counts likely low due to algae cover, which is a thin, filmy layer"
+"2014-01-29_YB-AEq4",2014-01-29,2014-01-29,"YB","AE","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Algae is a thin film."
+"2014-01-29_YB-AEq8",2014-01-29,2014-01-29,"YB","AE","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2014-01-29_YB-AEq1",2014-01-29,2014-01-29,"YB","AE","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Barnacle counts likely low due to algae cover, which is a thin, filmy layer"
+"2014-01-29_YB-AEq4",2014-01-29,2014-01-29,"YB","AE","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Algae is a thin film."
+"2014-01-29_YB-AEq8",2014-01-29,2014-01-29,"YB","AE","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2014-01-29_YB-AEq1",2014-01-29,2014-01-29,"YB","AE","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Barnacle counts likely low due to algae cover, which is a thin, filmy layer"
+"2014-01-29_YB-AEq4",2014-01-29,2014-01-29,"YB","AE","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Algae is a thin film."
+"2014-01-29_YB-AEq8",2014-01-29,2014-01-29,"YB","AE","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2014-01-29_YB-AEq1",2014-01-29,2014-01-29,"YB","AE","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Barnacle counts likely low due to algae cover, which is a thin, filmy layer"
+"2014-01-29_YB-AEq4",2014-01-29,2014-01-29,"YB","AE","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Algae is a thin film."
+"2014-01-29_YB-AEq8",2014-01-29,2014-01-29,"YB","AE","8","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2014-01-29_YB-AEq1",2014-01-29,2014-01-29,"YB","AE","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Barnacle counts likely low due to algae cover, which is a thin, filmy layer"
+"2014-01-29_YB-AEq4",2014-01-29,2014-01-29,"YB","AE","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Algae is a thin film."
+"2014-01-29_YB-AEq8",2014-01-29,2014-01-29,"YB","AE","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2014-01-29_YB-AEq1",2014-01-29,2014-01-29,"YB","AE","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Barnacle counts likely low due to algae cover, which is a thin, filmy layer"
+"2014-01-29_YB-AEq4",2014-01-29,2014-01-29,"YB","AE","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Algae is a thin film."
+"2014-01-29_YB-AEq8",2014-01-29,2014-01-29,"YB","AE","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2014-01-29_YB-AEq1",2014-01-29,2014-01-29,"YB","AE","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Barnacle counts likely low due to algae cover, which is a thin, filmy layer"
+"2014-01-29_YB-AEq4",2014-01-29,2014-01-29,"YB","AE","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Algae is a thin film."
+"2014-01-29_YB-AEq8",2014-01-29,2014-01-29,"YB","AE","8","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2014-01-29_YB-AEq1",2014-01-29,2014-01-29,"YB","AE","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Barnacle counts likely low due to algae cover, which is a thin, filmy layer"
+"2014-01-29_YB-AEq4",2014-01-29,2014-01-29,"YB","AE","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Algae is a thin film."
+"2014-01-29_YB-AEq8",2014-01-29,2014-01-29,"YB","AE","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2014-01-29_YB-AEq1",2014-01-29,2014-01-29,"YB","AE","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Barnacle counts likely low due to algae cover, which is a thin, filmy layer"
+"2014-01-29_YB-AEq4",2014-01-29,2014-01-29,"YB","AE","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Algae is a thin film."
+"2014-01-29_YB-AEq8",2014-01-29,2014-01-29,"YB","AE","8","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2014-01-29_YB-AEq1",2014-01-29,2014-01-29,"YB","AE","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Barnacle counts likely low due to algae cover, which is a thin, filmy layer"
+"2014-01-29_YB-AEq4",2014-01-29,2014-01-29,"YB","AE","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Algae is a thin film."
+"2014-01-29_YB-AEq8",2014-01-29,2014-01-29,"YB","AE","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Algae is a thin film."
+"2014-01-29_YB-AFq5",2014-01-29,2014-01-29,"YB","AF","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Algae is a thin film."
+"2014-01-29_YB-AFq8",2014-01-29,2014-01-29,"YB","AF","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2014-01-29_YB-AFq9",2014-01-29,2014-01-29,"YB","AF","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2014-01-29_YB-AFq5",2014-01-29,2014-01-29,"YB","AF","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Algae is a thin film."
+"2014-01-29_YB-AFq8",2014-01-29,2014-01-29,"YB","AF","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2014-01-29_YB-AFq9",2014-01-29,2014-01-29,"YB","AF","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2014-01-29_YB-AFq5",2014-01-29,2014-01-29,"YB","AF","5","Bg","Balanus_glandula","Type 1",1075,0.015625,68800,"c","Beatriz Vaca","Finished","Full","Cropped","10%","Algae is a thin film."
+"2014-01-29_YB-AFq8",2014-01-29,2014-01-29,"YB","AF","8","Bg","Balanus_glandula","Type 1",194,0.015625,12416,"c","Celeste Moen","Finished","Full","Cropped","0%",""
+"2014-01-29_YB-AFq9",2014-01-29,2014-01-29,"YB","AF","9","Bg","Balanus_glandula","Type 1",699,0.015625,44736,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2014-01-29_YB-AFq5",2014-01-29,2014-01-29,"YB","AF","5","BgD","Balanus_glandula_(dead)","Type 2",12,0.015625,768,"c","Beatriz Vaca","Finished","Full","Cropped","10%","Algae is a thin film."
+"2014-01-29_YB-AFq8",2014-01-29,2014-01-29,"YB","AF","8","BgD","Balanus_glandula_(dead)","Type 2",21,0.015625,1344,"c","Celeste Moen","Finished","Full","Cropped","0%",""
+"2014-01-29_YB-AFq9",2014-01-29,2014-01-29,"YB","AF","9","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2014-01-29_YB-AFq5",2014-01-29,2014-01-29,"YB","AF","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Algae is a thin film."
+"2014-01-29_YB-AFq8",2014-01-29,2014-01-29,"YB","AF","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2014-01-29_YB-AFq9",2014-01-29,2014-01-29,"YB","AF","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2014-01-29_YB-AFq5",2014-01-29,2014-01-29,"YB","AF","5","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","10%","Algae is a thin film."
+"2014-01-29_YB-AFq8",2014-01-29,2014-01-29,"YB","AF","8","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Celeste Moen","Finished","Full","Cropped","0%",""
+"2014-01-29_YB-AFq9",2014-01-29,2014-01-29,"YB","AF","9","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2014-01-29_YB-AFq5",2014-01-29,2014-01-29,"YB","AF","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","10%","Algae is a thin film."
+"2014-01-29_YB-AFq8",2014-01-29,2014-01-29,"YB","AF","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Celeste Moen","Finished","Full","Cropped","0%",""
+"2014-01-29_YB-AFq9",2014-01-29,2014-01-29,"YB","AF","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2014-01-29_YB-AFq5",2014-01-29,2014-01-29,"YB","AF","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Algae is a thin film."
+"2014-01-29_YB-AFq8",2014-01-29,2014-01-29,"YB","AF","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2014-01-29_YB-AFq9",2014-01-29,2014-01-29,"YB","AF","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2014-01-29_YB-AFq5",2014-01-29,2014-01-29,"YB","AF","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Algae is a thin film."
+"2014-01-29_YB-AFq8",2014-01-29,2014-01-29,"YB","AF","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2014-01-29_YB-AFq9",2014-01-29,2014-01-29,"YB","AF","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2014-01-29_YB-AFq5",2014-01-29,2014-01-29,"YB","AF","5","Lim","Limpets","Type 12",319,0.0875,3645.71428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Algae is a thin film."
+"2014-01-29_YB-AFq8",2014-01-29,2014-01-29,"YB","AF","8","Lim","Limpets","Type 12",38,0.0875,434.285714285714,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2014-01-29_YB-AFq9",2014-01-29,2014-01-29,"YB","AF","9","Lim","Limpets","Type 12",25,0.0875,285.714285714286,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2014-01-29_YB-AFq5",2014-01-29,2014-01-29,"YB","AF","5","Ls","Littorina_sitkana","Type 13",708,0.0875,8091.42857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Algae is a thin film."
+"2014-01-29_YB-AFq8",2014-01-29,2014-01-29,"YB","AF","8","Ls","Littorina_sitkana","Type 13",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2014-01-29_YB-AFq9",2014-01-29,2014-01-29,"YB","AF","9","Ls","Littorina_sitkana","Type 13",76,0.0875,868.571428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2014-01-29_YB-AFq5",2014-01-29,2014-01-29,"YB","AF","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Algae is a thin film."
+"2014-01-29_YB-AFq8",2014-01-29,2014-01-29,"YB","AF","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2014-01-29_YB-AFq9",2014-01-29,2014-01-29,"YB","AF","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2014-01-29_YB-AFq5",2014-01-29,2014-01-29,"YB","AF","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Algae is a thin film."
+"2014-01-29_YB-AFq8",2014-01-29,2014-01-29,"YB","AF","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2014-01-29_YB-AFq9",2014-01-29,2014-01-29,"YB","AF","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2014-01-29_YB-AFq5",2014-01-29,2014-01-29,"YB","AF","5","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Algae is a thin film."
+"2014-01-29_YB-AFq8",2014-01-29,2014-01-29,"YB","AF","8","Myt","Mytilus_spp","Type 7",304,0.0875,3474.28571428571,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2014-01-29_YB-AFq9",2014-01-29,2014-01-29,"YB","AF","9","Myt","Mytilus_spp","Type 7",658,0.0875,7520,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2014-01-29_YB-AFq5",2014-01-29,2014-01-29,"YB","AF","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Algae is a thin film."
+"2014-01-29_YB-AFq8",2014-01-29,2014-01-29,"YB","AF","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2014-01-29_YB-AFq9",2014-01-29,2014-01-29,"YB","AF","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2014-01-29_YB-AFq5",2014-01-29,2014-01-29,"YB","AF","5","Mt","Mytilus_trossulus","Type 15",465,0.0875,5314.28571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Algae is a thin film."
+"2014-01-29_YB-AFq8",2014-01-29,2014-01-29,"YB","AF","8","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2014-01-29_YB-AFq9",2014-01-29,2014-01-29,"YB","AF","9","Mt","Mytilus_trossulus","Type 15",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2014-01-29_YB-AFq5",2014-01-29,2014-01-29,"YB","AF","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Algae is a thin film."
+"2014-01-29_YB-AFq8",2014-01-29,2014-01-29,"YB","AF","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2014-01-29_YB-AFq9",2014-01-29,2014-01-29,"YB","AF","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2014-01-29_YB-AFq5",2014-01-29,2014-01-29,"YB","AF","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Algae is a thin film."
+"2014-01-29_YB-AFq8",2014-01-29,2014-01-29,"YB","AF","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2014-01-29_YB-AFq9",2014-01-29,2014-01-29,"YB","AF","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2014-01-29_YB-AFq5",2014-01-29,2014-01-29,"YB","AF","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Algae is a thin film."
+"2014-01-29_YB-AFq8",2014-01-29,2014-01-29,"YB","AF","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2014-01-29_YB-AFq9",2014-01-29,2014-01-29,"YB","AF","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2014-01-29_YB-AFq5",2014-01-29,2014-01-29,"YB","AF","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Algae is a thin film."
+"2014-01-29_YB-AFq8",2014-01-29,2014-01-29,"YB","AF","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2014-01-29_YB-AFq9",2014-01-29,2014-01-29,"YB","AF","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2014-01-29_YB-AFq5",2014-01-29,2014-01-29,"YB","AF","5","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Algae is a thin film."
+"2014-01-29_YB-AFq8",2014-01-29,2014-01-29,"YB","AF","8","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2014-01-29_YB-AFq9",2014-01-29,2014-01-29,"YB","AF","9","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2014-01-29_YB-AFq5",2014-01-29,2014-01-29,"YB","AF","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Algae is a thin film."
+"2014-01-29_YB-AFq8",2014-01-29,2014-01-29,"YB","AF","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2014-01-29_YB-AFq9",2014-01-29,2014-01-29,"YB","AF","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2014-01-29_YB-AFq5",2014-01-29,2014-01-29,"YB","AF","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Algae is a thin film."
+"2014-01-29_YB-AFq8",2014-01-29,2014-01-29,"YB","AF","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2014-01-29_YB-AFq9",2014-01-29,2014-01-29,"YB","AF","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2014-01-29_YB-AFq5",2014-01-29,2014-01-29,"YB","AF","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Algae is a thin film."
+"2014-01-29_YB-AFq8",2014-01-29,2014-01-29,"YB","AF","8","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2014-01-29_YB-AFq9",2014-01-29,2014-01-29,"YB","AF","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2014-01-29_YB-AFq5",2014-01-29,2014-01-29,"YB","AF","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Algae is a thin film."
+"2014-01-29_YB-AFq8",2014-01-29,2014-01-29,"YB","AF","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2014-01-29_YB-AFq9",2014-01-29,2014-01-29,"YB","AF","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2014-01-29_YB-AFq5",2014-01-29,2014-01-29,"YB","AF","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Algae is a thin film."
+"2014-01-29_YB-AFq8",2014-01-29,2014-01-29,"YB","AF","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2014-01-29_YB-AFq9",2014-01-29,2014-01-29,"YB","AF","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2014-01-29_YB-AFq5",2014-01-29,2014-01-29,"YB","AF","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Algae is a thin film."
+"2014-01-29_YB-AFq8",2014-01-29,2014-01-29,"YB","AF","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2014-01-29_YB-AFq9",2014-01-29,2014-01-29,"YB","AF","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2014-01-29_YB-AGq1",2014-01-29,2014-01-29,"YB","AG","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2014-01-29_YB-AGq2",2014-01-29,2014-01-29,"YB","AG","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Mussels, limpet, and littorine densities likely higher but shadows and glare made counting difficult"
+"2014-01-29_YB-AGq3",2014-01-29,2014-01-29,"YB","AG","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%",""
+"2014-01-29_YB-AGq7",2014-01-29,2014-01-29,"YB","AG","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-01-29_YB-AGq9",2014-01-29,2014-01-29,"YB","AG","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2014-01-29_YB-AGq1",2014-01-29,2014-01-29,"YB","AG","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2014-01-29_YB-AGq2",2014-01-29,2014-01-29,"YB","AG","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Mussels, limpet, and littorine densities likely higher but shadows and glare made counting difficult"
+"2014-01-29_YB-AGq3",2014-01-29,2014-01-29,"YB","AG","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%",""
+"2014-01-29_YB-AGq7",2014-01-29,2014-01-29,"YB","AG","7","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-01-29_YB-AGq9",2014-01-29,2014-01-29,"YB","AG","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2014-01-29_YB-AGq1",2014-01-29,2014-01-29,"YB","AG","1","Bg","Balanus_glandula","Type 1",584,0.015625,37376,"c","Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2014-01-29_YB-AGq2",2014-01-29,2014-01-29,"YB","AG","2","Bg","Balanus_glandula","Type 1",668,0.015625,42752,"c","Isaac Shepard","Finished","Full","Cropped","0%","Mussels, limpet, and littorine densities likely higher but shadows and glare made counting difficult"
+"2014-01-29_YB-AGq3",2014-01-29,2014-01-29,"YB","AG","3","Bg","Balanus_glandula","Type 1",758,0.015625,48512,"c","Isaac Shepard","Finished","Full","Cropped","1%",""
+"2014-01-29_YB-AGq7",2014-01-29,2014-01-29,"YB","AG","7","Bg","Balanus_glandula","Type 1",2098,0.0875,23977.1428571429,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-01-29_YB-AGq9",2014-01-29,2014-01-29,"YB","AG","9","Bg","Balanus_glandula","Type 1",1976,0.0875,22582.8571428571,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2014-01-29_YB-AGq1",2014-01-29,2014-01-29,"YB","AG","1","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2014-01-29_YB-AGq2",2014-01-29,2014-01-29,"YB","AG","2","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","0%","Mussels, limpet, and littorine densities likely higher but shadows and glare made counting difficult"
+"2014-01-29_YB-AGq3",2014-01-29,2014-01-29,"YB","AG","3","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","1%",""
+"2014-01-29_YB-AGq7",2014-01-29,2014-01-29,"YB","AG","7","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-01-29_YB-AGq9",2014-01-29,2014-01-29,"YB","AG","9","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2014-01-29_YB-AGq1",2014-01-29,2014-01-29,"YB","AG","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2014-01-29_YB-AGq2",2014-01-29,2014-01-29,"YB","AG","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Mussels, limpet, and littorine densities likely higher but shadows and glare made counting difficult"
+"2014-01-29_YB-AGq3",2014-01-29,2014-01-29,"YB","AG","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%",""
+"2014-01-29_YB-AGq7",2014-01-29,2014-01-29,"YB","AG","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-01-29_YB-AGq9",2014-01-29,2014-01-29,"YB","AG","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2014-01-29_YB-AGq1",2014-01-29,2014-01-29,"YB","AG","1","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2014-01-29_YB-AGq2",2014-01-29,2014-01-29,"YB","AG","2","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","0%","Mussels, limpet, and littorine densities likely higher but shadows and glare made counting difficult"
+"2014-01-29_YB-AGq3",2014-01-29,2014-01-29,"YB","AG","3","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","1%",""
+"2014-01-29_YB-AGq7",2014-01-29,2014-01-29,"YB","AG","7","Cth","Chthamalus_dalli","Type 3",66,0.0875,754.285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-01-29_YB-AGq9",2014-01-29,2014-01-29,"YB","AG","9","Cth","Chthamalus_dalli","Type 3",61,0.0875,697.142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2014-01-29_YB-AGq1",2014-01-29,2014-01-29,"YB","AG","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2014-01-29_YB-AGq2",2014-01-29,2014-01-29,"YB","AG","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","0%","Mussels, limpet, and littorine densities likely higher but shadows and glare made counting difficult"
+"2014-01-29_YB-AGq3",2014-01-29,2014-01-29,"YB","AG","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","1%",""
+"2014-01-29_YB-AGq7",2014-01-29,2014-01-29,"YB","AG","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-01-29_YB-AGq9",2014-01-29,2014-01-29,"YB","AG","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2014-01-29_YB-AGq1",2014-01-29,2014-01-29,"YB","AG","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2014-01-29_YB-AGq2",2014-01-29,2014-01-29,"YB","AG","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Mussels, limpet, and littorine densities likely higher but shadows and glare made counting difficult"
+"2014-01-29_YB-AGq3",2014-01-29,2014-01-29,"YB","AG","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%",""
+"2014-01-29_YB-AGq7",2014-01-29,2014-01-29,"YB","AG","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-01-29_YB-AGq9",2014-01-29,2014-01-29,"YB","AG","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2014-01-29_YB-AGq1",2014-01-29,2014-01-29,"YB","AG","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2014-01-29_YB-AGq2",2014-01-29,2014-01-29,"YB","AG","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Mussels, limpet, and littorine densities likely higher but shadows and glare made counting difficult"
+"2014-01-29_YB-AGq3",2014-01-29,2014-01-29,"YB","AG","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%",""
+"2014-01-29_YB-AGq7",2014-01-29,2014-01-29,"YB","AG","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-01-29_YB-AGq9",2014-01-29,2014-01-29,"YB","AG","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2014-01-29_YB-AGq1",2014-01-29,2014-01-29,"YB","AG","1","Lim","Limpets","Type 12",34,0.0875,388.571428571429,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2014-01-29_YB-AGq2",2014-01-29,2014-01-29,"YB","AG","2","Lim","Limpets","Type 12",16,0.0875,182.857142857143,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Mussels, limpet, and littorine densities likely higher but shadows and glare made counting difficult"
+"2014-01-29_YB-AGq3",2014-01-29,2014-01-29,"YB","AG","3","Lim","Limpets","Type 12",26,0.0875,297.142857142857,NA,"Isaac Shepard","Finished","Full","Cropped","1%",""
+"2014-01-29_YB-AGq7",2014-01-29,2014-01-29,"YB","AG","7","Lim","Limpets","Type 12",28,0.0875,320,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-01-29_YB-AGq9",2014-01-29,2014-01-29,"YB","AG","9","Lim","Limpets","Type 12",33,0.0875,377.142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2014-01-29_YB-AGq1",2014-01-29,2014-01-29,"YB","AG","1","Ls","Littorina_sitkana","Type 13",44,0.0875,502.857142857143,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2014-01-29_YB-AGq2",2014-01-29,2014-01-29,"YB","AG","2","Ls","Littorina_sitkana","Type 13",34,0.0875,388.571428571429,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Mussels, limpet, and littorine densities likely higher but shadows and glare made counting difficult"
+"2014-01-29_YB-AGq3",2014-01-29,2014-01-29,"YB","AG","3","Ls","Littorina_sitkana","Type 13",142,0.0875,1622.85714285714,NA,"Isaac Shepard","Finished","Full","Cropped","1%",""
+"2014-01-29_YB-AGq7",2014-01-29,2014-01-29,"YB","AG","7","Ls","Littorina_sitkana","Type 13",72,0.0875,822.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-01-29_YB-AGq9",2014-01-29,2014-01-29,"YB","AG","9","Ls","Littorina_sitkana","Type 13",52,0.0875,594.285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2014-01-29_YB-AGq1",2014-01-29,2014-01-29,"YB","AG","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2014-01-29_YB-AGq2",2014-01-29,2014-01-29,"YB","AG","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Mussels, limpet, and littorine densities likely higher but shadows and glare made counting difficult"
+"2014-01-29_YB-AGq3",2014-01-29,2014-01-29,"YB","AG","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%",""
+"2014-01-29_YB-AGq7",2014-01-29,2014-01-29,"YB","AG","7","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-01-29_YB-AGq9",2014-01-29,2014-01-29,"YB","AG","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2014-01-29_YB-AGq1",2014-01-29,2014-01-29,"YB","AG","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2014-01-29_YB-AGq2",2014-01-29,2014-01-29,"YB","AG","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Mussels, limpet, and littorine densities likely higher but shadows and glare made counting difficult"
+"2014-01-29_YB-AGq3",2014-01-29,2014-01-29,"YB","AG","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%",""
+"2014-01-29_YB-AGq7",2014-01-29,2014-01-29,"YB","AG","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-01-29_YB-AGq9",2014-01-29,2014-01-29,"YB","AG","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2014-01-29_YB-AGq1",2014-01-29,2014-01-29,"YB","AG","1","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2014-01-29_YB-AGq2",2014-01-29,2014-01-29,"YB","AG","2","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Mussels, limpet, and littorine densities likely higher but shadows and glare made counting difficult"
+"2014-01-29_YB-AGq3",2014-01-29,2014-01-29,"YB","AG","3","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%",""
+"2014-01-29_YB-AGq7",2014-01-29,2014-01-29,"YB","AG","7","Myt","Mytilus_spp","Type 7",392,0.0875,4480,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-01-29_YB-AGq9",2014-01-29,2014-01-29,"YB","AG","9","Myt","Mytilus_spp","Type 7",457,0.0875,5222.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2014-01-29_YB-AGq1",2014-01-29,2014-01-29,"YB","AG","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2014-01-29_YB-AGq2",2014-01-29,2014-01-29,"YB","AG","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Mussels, limpet, and littorine densities likely higher but shadows and glare made counting difficult"
+"2014-01-29_YB-AGq3",2014-01-29,2014-01-29,"YB","AG","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%",""
+"2014-01-29_YB-AGq7",2014-01-29,2014-01-29,"YB","AG","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-01-29_YB-AGq9",2014-01-29,2014-01-29,"YB","AG","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2014-01-29_YB-AGq1",2014-01-29,2014-01-29,"YB","AG","1","Mt","Mytilus_trossulus","Type 15",61,0.0875,697.142857142857,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2014-01-29_YB-AGq2",2014-01-29,2014-01-29,"YB","AG","2","Mt","Mytilus_trossulus","Type 15",16,0.0875,182.857142857143,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Mussels, limpet, and littorine densities likely higher but shadows and glare made counting difficult"
+"2014-01-29_YB-AGq3",2014-01-29,2014-01-29,"YB","AG","3","Mt","Mytilus_trossulus","Type 15",266,0.0875,3040,NA,"Isaac Shepard","Finished","Full","Cropped","1%",""
+"2014-01-29_YB-AGq7",2014-01-29,2014-01-29,"YB","AG","7","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-01-29_YB-AGq9",2014-01-29,2014-01-29,"YB","AG","9","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2014-01-29_YB-AGq1",2014-01-29,2014-01-29,"YB","AG","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2014-01-29_YB-AGq2",2014-01-29,2014-01-29,"YB","AG","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Mussels, limpet, and littorine densities likely higher but shadows and glare made counting difficult"
+"2014-01-29_YB-AGq3",2014-01-29,2014-01-29,"YB","AG","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%",""
+"2014-01-29_YB-AGq7",2014-01-29,2014-01-29,"YB","AG","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-01-29_YB-AGq9",2014-01-29,2014-01-29,"YB","AG","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2014-01-29_YB-AGq1",2014-01-29,2014-01-29,"YB","AG","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2014-01-29_YB-AGq2",2014-01-29,2014-01-29,"YB","AG","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Mussels, limpet, and littorine densities likely higher but shadows and glare made counting difficult"
+"2014-01-29_YB-AGq3",2014-01-29,2014-01-29,"YB","AG","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%",""
+"2014-01-29_YB-AGq7",2014-01-29,2014-01-29,"YB","AG","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-01-29_YB-AGq9",2014-01-29,2014-01-29,"YB","AG","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2014-01-29_YB-AGq1",2014-01-29,2014-01-29,"YB","AG","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2014-01-29_YB-AGq2",2014-01-29,2014-01-29,"YB","AG","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Mussels, limpet, and littorine densities likely higher but shadows and glare made counting difficult"
+"2014-01-29_YB-AGq3",2014-01-29,2014-01-29,"YB","AG","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%",""
+"2014-01-29_YB-AGq7",2014-01-29,2014-01-29,"YB","AG","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-01-29_YB-AGq9",2014-01-29,2014-01-29,"YB","AG","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2014-01-29_YB-AGq1",2014-01-29,2014-01-29,"YB","AG","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2014-01-29_YB-AGq2",2014-01-29,2014-01-29,"YB","AG","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Mussels, limpet, and littorine densities likely higher but shadows and glare made counting difficult"
+"2014-01-29_YB-AGq3",2014-01-29,2014-01-29,"YB","AG","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%",""
+"2014-01-29_YB-AGq7",2014-01-29,2014-01-29,"YB","AG","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-01-29_YB-AGq9",2014-01-29,2014-01-29,"YB","AG","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2014-01-29_YB-AGq1",2014-01-29,2014-01-29,"YB","AG","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2014-01-29_YB-AGq2",2014-01-29,2014-01-29,"YB","AG","2","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Mussels, limpet, and littorine densities likely higher but shadows and glare made counting difficult"
+"2014-01-29_YB-AGq3",2014-01-29,2014-01-29,"YB","AG","3","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%",""
+"2014-01-29_YB-AGq7",2014-01-29,2014-01-29,"YB","AG","7","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-01-29_YB-AGq9",2014-01-29,2014-01-29,"YB","AG","9","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2014-01-29_YB-AGq1",2014-01-29,2014-01-29,"YB","AG","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2014-01-29_YB-AGq2",2014-01-29,2014-01-29,"YB","AG","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Mussels, limpet, and littorine densities likely higher but shadows and glare made counting difficult"
+"2014-01-29_YB-AGq3",2014-01-29,2014-01-29,"YB","AG","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%",""
+"2014-01-29_YB-AGq7",2014-01-29,2014-01-29,"YB","AG","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-01-29_YB-AGq9",2014-01-29,2014-01-29,"YB","AG","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2014-01-29_YB-AGq1",2014-01-29,2014-01-29,"YB","AG","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2014-01-29_YB-AGq2",2014-01-29,2014-01-29,"YB","AG","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Mussels, limpet, and littorine densities likely higher but shadows and glare made counting difficult"
+"2014-01-29_YB-AGq3",2014-01-29,2014-01-29,"YB","AG","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%",""
+"2014-01-29_YB-AGq7",2014-01-29,2014-01-29,"YB","AG","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-01-29_YB-AGq9",2014-01-29,2014-01-29,"YB","AG","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2014-01-29_YB-AGq1",2014-01-29,2014-01-29,"YB","AG","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2014-01-29_YB-AGq2",2014-01-29,2014-01-29,"YB","AG","2","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Mussels, limpet, and littorine densities likely higher but shadows and glare made counting difficult"
+"2014-01-29_YB-AGq3",2014-01-29,2014-01-29,"YB","AG","3","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%",""
+"2014-01-29_YB-AGq7",2014-01-29,2014-01-29,"YB","AG","7","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-01-29_YB-AGq9",2014-01-29,2014-01-29,"YB","AG","9","Pp","Pollicipes_polymerus","Type 11",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2014-01-29_YB-AGq1",2014-01-29,2014-01-29,"YB","AG","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2014-01-29_YB-AGq2",2014-01-29,2014-01-29,"YB","AG","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Mussels, limpet, and littorine densities likely higher but shadows and glare made counting difficult"
+"2014-01-29_YB-AGq3",2014-01-29,2014-01-29,"YB","AG","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%",""
+"2014-01-29_YB-AGq7",2014-01-29,2014-01-29,"YB","AG","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-01-29_YB-AGq9",2014-01-29,2014-01-29,"YB","AG","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2014-01-29_YB-AGq1",2014-01-29,2014-01-29,"YB","AG","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2014-01-29_YB-AGq2",2014-01-29,2014-01-29,"YB","AG","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Mussels, limpet, and littorine densities likely higher but shadows and glare made counting difficult"
+"2014-01-29_YB-AGq3",2014-01-29,2014-01-29,"YB","AG","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%",""
+"2014-01-29_YB-AGq7",2014-01-29,2014-01-29,"YB","AG","7","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-01-29_YB-AGq9",2014-01-29,2014-01-29,"YB","AG","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2014-01-29_YB-AGq1",2014-01-29,2014-01-29,"YB","AG","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2014-01-29_YB-AGq2",2014-01-29,2014-01-29,"YB","AG","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Mussels, limpet, and littorine densities likely higher but shadows and glare made counting difficult"
+"2014-01-29_YB-AGq3",2014-01-29,2014-01-29,"YB","AG","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%",""
+"2014-01-29_YB-AGq7",2014-01-29,2014-01-29,"YB","AG","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-01-29_YB-AGq9",2014-01-29,2014-01-29,"YB","AG","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2014-01-29_YB-Bq1",2014-01-29,2014-01-29,"YB","B","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","20%",""
+"2014-01-29_YB-Bq2",2014-01-29,2014-01-29,"YB","B","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-01-29_YB-Bq3",2014-01-29,2014-01-29,"YB","B","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-01-29_YB-Bq4",2014-01-29,2014-01-29,"YB","B","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-01-29_YB-Bq5",2014-01-29,2014-01-29,"YB","B","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-01-29_YB-Bq6",2014-01-29,2014-01-29,"YB","B","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-01-29_YB-Bq7",2014-01-29,2014-01-29,"YB","B","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2014-01-29_YB-Bq8",2014-01-29,2014-01-29,"YB","B","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","6%",""
+"2014-01-29_YB-Bq9",2014-01-29,2014-01-29,"YB","B","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","4%",""
+"2014-01-29_YB-Bq1",2014-01-29,2014-01-29,"YB","B","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","20%",""
+"2014-01-29_YB-Bq2",2014-01-29,2014-01-29,"YB","B","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-01-29_YB-Bq3",2014-01-29,2014-01-29,"YB","B","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-01-29_YB-Bq4",2014-01-29,2014-01-29,"YB","B","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-01-29_YB-Bq5",2014-01-29,2014-01-29,"YB","B","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-01-29_YB-Bq6",2014-01-29,2014-01-29,"YB","B","6","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-01-29_YB-Bq7",2014-01-29,2014-01-29,"YB","B","7","Ae","Anemones","Type 14",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2014-01-29_YB-Bq8",2014-01-29,2014-01-29,"YB","B","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","6%",""
+"2014-01-29_YB-Bq9",2014-01-29,2014-01-29,"YB","B","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","4%",""
+"2014-01-29_YB-Bq1",2014-01-29,2014-01-29,"YB","B","1","Bg","Balanus_glandula","Type 1",940,0.015625,60160,"c","Beatriz Vaca","Finished","Cropped","Cropped","20%",""
+"2014-01-29_YB-Bq2",2014-01-29,2014-01-29,"YB","B","2","Bg","Balanus_glandula","Type 1",1040,0.015625,66560,"c","Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-01-29_YB-Bq3",2014-01-29,2014-01-29,"YB","B","3","Bg","Balanus_glandula","Type 1",766,0.015625,49024,"c","Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-01-29_YB-Bq4",2014-01-29,2014-01-29,"YB","B","4","Bg","Balanus_glandula","Type 1",1460,0.015625,93440,"c","Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-01-29_YB-Bq5",2014-01-29,2014-01-29,"YB","B","5","Bg","Balanus_glandula","Type 1",870,0.015625,55680,"c","Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-01-29_YB-Bq6",2014-01-29,2014-01-29,"YB","B","6","Bg","Balanus_glandula","Type 1",1262,0.015625,80768,"c","Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-01-29_YB-Bq7",2014-01-29,2014-01-29,"YB","B","7","Bg","Balanus_glandula","Type 1",438,0.0875,5005.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2014-01-29_YB-Bq8",2014-01-29,2014-01-29,"YB","B","8","Bg","Balanus_glandula","Type 1",970,0.015625,62080,"c","Beatriz Vaca","Finished","Cropped","Cropped","6%",""
+"2014-01-29_YB-Bq9",2014-01-29,2014-01-29,"YB","B","9","Bg","Balanus_glandula","Type 1",334,0.015625,21376,"c","Beatriz Vaca","Finished","Full","Cropped","4%",""
+"2014-01-29_YB-Bq1",2014-01-29,2014-01-29,"YB","B","1","BgD","Balanus_glandula_(dead)","Type 2",64,0.015625,4096,"c","Beatriz Vaca","Finished","Cropped","Cropped","20%",""
+"2014-01-29_YB-Bq2",2014-01-29,2014-01-29,"YB","B","2","BgD","Balanus_glandula_(dead)","Type 2",26,0.015625,1664,"c","Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-01-29_YB-Bq3",2014-01-29,2014-01-29,"YB","B","3","BgD","Balanus_glandula_(dead)","Type 2",33,0.015625,2112,"c","Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-01-29_YB-Bq4",2014-01-29,2014-01-29,"YB","B","4","BgD","Balanus_glandula_(dead)","Type 2",41,0.015625,2624,"c","Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-01-29_YB-Bq5",2014-01-29,2014-01-29,"YB","B","5","BgD","Balanus_glandula_(dead)","Type 2",22,0.015625,1408,"c","Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-01-29_YB-Bq6",2014-01-29,2014-01-29,"YB","B","6","BgD","Balanus_glandula_(dead)","Type 2",16,0.015625,1024,"c","Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-01-29_YB-Bq7",2014-01-29,2014-01-29,"YB","B","7","BgD","Balanus_glandula_(dead)","Type 2",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2014-01-29_YB-Bq8",2014-01-29,2014-01-29,"YB","B","8","BgD","Balanus_glandula_(dead)","Type 2",6,0.015625,384,"c","Beatriz Vaca","Finished","Cropped","Cropped","6%",""
+"2014-01-29_YB-Bq9",2014-01-29,2014-01-29,"YB","B","9","BgD","Balanus_glandula_(dead)","Type 2",16,0.015625,1024,"c","Beatriz Vaca","Finished","Full","Cropped","4%",""
+"2014-01-29_YB-Bq1",2014-01-29,2014-01-29,"YB","B","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","20%",""
+"2014-01-29_YB-Bq2",2014-01-29,2014-01-29,"YB","B","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-01-29_YB-Bq3",2014-01-29,2014-01-29,"YB","B","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-01-29_YB-Bq4",2014-01-29,2014-01-29,"YB","B","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-01-29_YB-Bq5",2014-01-29,2014-01-29,"YB","B","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-01-29_YB-Bq6",2014-01-29,2014-01-29,"YB","B","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-01-29_YB-Bq7",2014-01-29,2014-01-29,"YB","B","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2014-01-29_YB-Bq8",2014-01-29,2014-01-29,"YB","B","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","6%",""
+"2014-01-29_YB-Bq9",2014-01-29,2014-01-29,"YB","B","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","4%",""
+"2014-01-29_YB-Bq1",2014-01-29,2014-01-29,"YB","B","1","Cth","Chthamalus_dalli","Type 3",2,0.015625,128,"c","Beatriz Vaca","Finished","Cropped","Cropped","20%",""
+"2014-01-29_YB-Bq2",2014-01-29,2014-01-29,"YB","B","2","Cth","Chthamalus_dalli","Type 3",23,0.015625,1472,"c","Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-01-29_YB-Bq3",2014-01-29,2014-01-29,"YB","B","3","Cth","Chthamalus_dalli","Type 3",7,0.015625,448,"c","Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-01-29_YB-Bq4",2014-01-29,2014-01-29,"YB","B","4","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-01-29_YB-Bq5",2014-01-29,2014-01-29,"YB","B","5","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-01-29_YB-Bq6",2014-01-29,2014-01-29,"YB","B","6","Cth","Chthamalus_dalli","Type 3",5,0.015625,320,"c","Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-01-29_YB-Bq7",2014-01-29,2014-01-29,"YB","B","7","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2014-01-29_YB-Bq8",2014-01-29,2014-01-29,"YB","B","8","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","6%",""
+"2014-01-29_YB-Bq9",2014-01-29,2014-01-29,"YB","B","9","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","4%",""
+"2014-01-29_YB-Bq1",2014-01-29,2014-01-29,"YB","B","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","20%",""
+"2014-01-29_YB-Bq2",2014-01-29,2014-01-29,"YB","B","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-01-29_YB-Bq3",2014-01-29,2014-01-29,"YB","B","3","CthD","Chthamalus_dalli (dead)","Type 4",1,0.015625,64,"c","Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-01-29_YB-Bq4",2014-01-29,2014-01-29,"YB","B","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-01-29_YB-Bq5",2014-01-29,2014-01-29,"YB","B","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-01-29_YB-Bq6",2014-01-29,2014-01-29,"YB","B","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-01-29_YB-Bq7",2014-01-29,2014-01-29,"YB","B","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2014-01-29_YB-Bq8",2014-01-29,2014-01-29,"YB","B","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","6%",""
+"2014-01-29_YB-Bq9",2014-01-29,2014-01-29,"YB","B","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","4%",""
+"2014-01-29_YB-Bq1",2014-01-29,2014-01-29,"YB","B","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","20%",""
+"2014-01-29_YB-Bq2",2014-01-29,2014-01-29,"YB","B","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-01-29_YB-Bq3",2014-01-29,2014-01-29,"YB","B","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-01-29_YB-Bq4",2014-01-29,2014-01-29,"YB","B","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-01-29_YB-Bq5",2014-01-29,2014-01-29,"YB","B","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-01-29_YB-Bq6",2014-01-29,2014-01-29,"YB","B","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-01-29_YB-Bq7",2014-01-29,2014-01-29,"YB","B","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2014-01-29_YB-Bq8",2014-01-29,2014-01-29,"YB","B","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","6%",""
+"2014-01-29_YB-Bq9",2014-01-29,2014-01-29,"YB","B","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","4%",""
+"2014-01-29_YB-Bq1",2014-01-29,2014-01-29,"YB","B","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","20%",""
+"2014-01-29_YB-Bq2",2014-01-29,2014-01-29,"YB","B","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-01-29_YB-Bq3",2014-01-29,2014-01-29,"YB","B","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-01-29_YB-Bq4",2014-01-29,2014-01-29,"YB","B","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-01-29_YB-Bq5",2014-01-29,2014-01-29,"YB","B","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-01-29_YB-Bq6",2014-01-29,2014-01-29,"YB","B","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-01-29_YB-Bq7",2014-01-29,2014-01-29,"YB","B","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2014-01-29_YB-Bq8",2014-01-29,2014-01-29,"YB","B","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","6%",""
+"2014-01-29_YB-Bq9",2014-01-29,2014-01-29,"YB","B","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","4%",""
+"2014-01-29_YB-Bq1",2014-01-29,2014-01-29,"YB","B","1","Lim","Limpets","Type 12",135,0.0875,1542.85714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","20%",""
+"2014-01-29_YB-Bq2",2014-01-29,2014-01-29,"YB","B","2","Lim","Limpets","Type 12",102,0.0875,1165.71428571429,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-01-29_YB-Bq3",2014-01-29,2014-01-29,"YB","B","3","Lim","Limpets","Type 12",120,0.0875,1371.42857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-01-29_YB-Bq4",2014-01-29,2014-01-29,"YB","B","4","Lim","Limpets","Type 12",174,0.0875,1988.57142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-01-29_YB-Bq5",2014-01-29,2014-01-29,"YB","B","5","Lim","Limpets","Type 12",146,0.0875,1668.57142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-01-29_YB-Bq6",2014-01-29,2014-01-29,"YB","B","6","Lim","Limpets","Type 12",163,0.0875,1862.85714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-01-29_YB-Bq7",2014-01-29,2014-01-29,"YB","B","7","Lim","Limpets","Type 12",200,0.0875,2285.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2014-01-29_YB-Bq8",2014-01-29,2014-01-29,"YB","B","8","Lim","Limpets","Type 12",87,0.0875,994.285714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","6%",""
+"2014-01-29_YB-Bq9",2014-01-29,2014-01-29,"YB","B","9","Lim","Limpets","Type 12",144,0.0875,1645.71428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","4%",""
+"2014-01-29_YB-Bq1",2014-01-29,2014-01-29,"YB","B","1","Ls","Littorina_sitkana","Type 13",39,0.0875,445.714285714286,NA,"Beatriz Vaca","Finished","Cropped","Cropped","20%",""
+"2014-01-29_YB-Bq2",2014-01-29,2014-01-29,"YB","B","2","Ls","Littorina_sitkana","Type 13",9,0.0875,102.857142857143,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-01-29_YB-Bq3",2014-01-29,2014-01-29,"YB","B","3","Ls","Littorina_sitkana","Type 13",10,0.0875,114.285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-01-29_YB-Bq4",2014-01-29,2014-01-29,"YB","B","4","Ls","Littorina_sitkana","Type 13",30,0.0875,342.857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-01-29_YB-Bq5",2014-01-29,2014-01-29,"YB","B","5","Ls","Littorina_sitkana","Type 13",11,0.0875,125.714285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-01-29_YB-Bq6",2014-01-29,2014-01-29,"YB","B","6","Ls","Littorina_sitkana","Type 13",26,0.0875,297.142857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-01-29_YB-Bq7",2014-01-29,2014-01-29,"YB","B","7","Ls","Littorina_sitkana","Type 13",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2014-01-29_YB-Bq8",2014-01-29,2014-01-29,"YB","B","8","Ls","Littorina_sitkana","Type 13",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Cropped","Cropped","6%",""
+"2014-01-29_YB-Bq9",2014-01-29,2014-01-29,"YB","B","9","Ls","Littorina_sitkana","Type 13",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Cropped","4%",""
+"2014-01-29_YB-Bq1",2014-01-29,2014-01-29,"YB","B","1","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","20%",""
+"2014-01-29_YB-Bq2",2014-01-29,2014-01-29,"YB","B","2","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-01-29_YB-Bq3",2014-01-29,2014-01-29,"YB","B","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-01-29_YB-Bq4",2014-01-29,2014-01-29,"YB","B","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-01-29_YB-Bq5",2014-01-29,2014-01-29,"YB","B","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-01-29_YB-Bq6",2014-01-29,2014-01-29,"YB","B","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-01-29_YB-Bq7",2014-01-29,2014-01-29,"YB","B","7","Mc","Mytilus_californianus","Type 17",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2014-01-29_YB-Bq8",2014-01-29,2014-01-29,"YB","B","8","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","6%",""
+"2014-01-29_YB-Bq9",2014-01-29,2014-01-29,"YB","B","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","4%",""
+"2014-01-29_YB-Bq1",2014-01-29,2014-01-29,"YB","B","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","20%",""
+"2014-01-29_YB-Bq2",2014-01-29,2014-01-29,"YB","B","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-01-29_YB-Bq3",2014-01-29,2014-01-29,"YB","B","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-01-29_YB-Bq4",2014-01-29,2014-01-29,"YB","B","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-01-29_YB-Bq5",2014-01-29,2014-01-29,"YB","B","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-01-29_YB-Bq6",2014-01-29,2014-01-29,"YB","B","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-01-29_YB-Bq7",2014-01-29,2014-01-29,"YB","B","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2014-01-29_YB-Bq8",2014-01-29,2014-01-29,"YB","B","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","6%",""
+"2014-01-29_YB-Bq9",2014-01-29,2014-01-29,"YB","B","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","4%",""
+"2014-01-29_YB-Bq1",2014-01-29,2014-01-29,"YB","B","1","Myt","Mytilus_spp","Type 7",139,0.015625,8896,"c","Beatriz Vaca","Finished","Cropped","Cropped","20%",""
+"2014-01-29_YB-Bq2",2014-01-29,2014-01-29,"YB","B","2","Myt","Mytilus_spp","Type 7",139,0.015625,8896,"c","Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-01-29_YB-Bq3",2014-01-29,2014-01-29,"YB","B","3","Myt","Mytilus_spp","Type 7",330,0.0875,3771.42857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-01-29_YB-Bq4",2014-01-29,2014-01-29,"YB","B","4","Myt","Mytilus_spp","Type 7",182,0.0875,2080,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-01-29_YB-Bq5",2014-01-29,2014-01-29,"YB","B","5","Myt","Mytilus_spp","Type 7",426,0.0875,4868.57142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-01-29_YB-Bq6",2014-01-29,2014-01-29,"YB","B","6","Myt","Mytilus_spp","Type 7",276,0.0875,3154.28571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-01-29_YB-Bq7",2014-01-29,2014-01-29,"YB","B","7","Myt","Mytilus_spp","Type 7",229,0.0875,2617.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2014-01-29_YB-Bq8",2014-01-29,2014-01-29,"YB","B","8","Myt","Mytilus_spp","Type 7",180,0.015625,11520,"c","Beatriz Vaca","Finished","Cropped","Cropped","6%",""
+"2014-01-29_YB-Bq9",2014-01-29,2014-01-29,"YB","B","9","Myt","Mytilus_spp","Type 7",642,0.0875,7337.14285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","4%",""
+"2014-01-29_YB-Bq1",2014-01-29,2014-01-29,"YB","B","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","20%",""
+"2014-01-29_YB-Bq2",2014-01-29,2014-01-29,"YB","B","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-01-29_YB-Bq3",2014-01-29,2014-01-29,"YB","B","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-01-29_YB-Bq4",2014-01-29,2014-01-29,"YB","B","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-01-29_YB-Bq5",2014-01-29,2014-01-29,"YB","B","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-01-29_YB-Bq6",2014-01-29,2014-01-29,"YB","B","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-01-29_YB-Bq7",2014-01-29,2014-01-29,"YB","B","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2014-01-29_YB-Bq8",2014-01-29,2014-01-29,"YB","B","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","6%",""
+"2014-01-29_YB-Bq9",2014-01-29,2014-01-29,"YB","B","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","4%",""
+"2014-01-29_YB-Bq1",2014-01-29,2014-01-29,"YB","B","1","Mt","Mytilus_trossulus","Type 15",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","20%",""
+"2014-01-29_YB-Bq2",2014-01-29,2014-01-29,"YB","B","2","Mt","Mytilus_trossulus","Type 15",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-01-29_YB-Bq3",2014-01-29,2014-01-29,"YB","B","3","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-01-29_YB-Bq4",2014-01-29,2014-01-29,"YB","B","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-01-29_YB-Bq5",2014-01-29,2014-01-29,"YB","B","5","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-01-29_YB-Bq6",2014-01-29,2014-01-29,"YB","B","6","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-01-29_YB-Bq7",2014-01-29,2014-01-29,"YB","B","7","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2014-01-29_YB-Bq8",2014-01-29,2014-01-29,"YB","B","8","Mt","Mytilus_trossulus","Type 15",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","6%",""
+"2014-01-29_YB-Bq9",2014-01-29,2014-01-29,"YB","B","9","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","4%",""
+"2014-01-29_YB-Bq1",2014-01-29,2014-01-29,"YB","B","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","20%",""
+"2014-01-29_YB-Bq2",2014-01-29,2014-01-29,"YB","B","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-01-29_YB-Bq3",2014-01-29,2014-01-29,"YB","B","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-01-29_YB-Bq4",2014-01-29,2014-01-29,"YB","B","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-01-29_YB-Bq5",2014-01-29,2014-01-29,"YB","B","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-01-29_YB-Bq6",2014-01-29,2014-01-29,"YB","B","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-01-29_YB-Bq7",2014-01-29,2014-01-29,"YB","B","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2014-01-29_YB-Bq8",2014-01-29,2014-01-29,"YB","B","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","6%",""
+"2014-01-29_YB-Bq9",2014-01-29,2014-01-29,"YB","B","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","4%",""
+"2014-01-29_YB-Bq1",2014-01-29,2014-01-29,"YB","B","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","20%",""
+"2014-01-29_YB-Bq2",2014-01-29,2014-01-29,"YB","B","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-01-29_YB-Bq3",2014-01-29,2014-01-29,"YB","B","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-01-29_YB-Bq4",2014-01-29,2014-01-29,"YB","B","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-01-29_YB-Bq5",2014-01-29,2014-01-29,"YB","B","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-01-29_YB-Bq6",2014-01-29,2014-01-29,"YB","B","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-01-29_YB-Bq7",2014-01-29,2014-01-29,"YB","B","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2014-01-29_YB-Bq8",2014-01-29,2014-01-29,"YB","B","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","6%",""
+"2014-01-29_YB-Bq9",2014-01-29,2014-01-29,"YB","B","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","4%",""
+"2014-01-29_YB-Bq1",2014-01-29,2014-01-29,"YB","B","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","20%",""
+"2014-01-29_YB-Bq2",2014-01-29,2014-01-29,"YB","B","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-01-29_YB-Bq3",2014-01-29,2014-01-29,"YB","B","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-01-29_YB-Bq4",2014-01-29,2014-01-29,"YB","B","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-01-29_YB-Bq5",2014-01-29,2014-01-29,"YB","B","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-01-29_YB-Bq6",2014-01-29,2014-01-29,"YB","B","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-01-29_YB-Bq7",2014-01-29,2014-01-29,"YB","B","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2014-01-29_YB-Bq8",2014-01-29,2014-01-29,"YB","B","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","6%",""
+"2014-01-29_YB-Bq9",2014-01-29,2014-01-29,"YB","B","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","4%",""
+"2014-01-29_YB-Bq1",2014-01-29,2014-01-29,"YB","B","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","20%",""
+"2014-01-29_YB-Bq2",2014-01-29,2014-01-29,"YB","B","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-01-29_YB-Bq3",2014-01-29,2014-01-29,"YB","B","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-01-29_YB-Bq4",2014-01-29,2014-01-29,"YB","B","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-01-29_YB-Bq5",2014-01-29,2014-01-29,"YB","B","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-01-29_YB-Bq6",2014-01-29,2014-01-29,"YB","B","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-01-29_YB-Bq7",2014-01-29,2014-01-29,"YB","B","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2014-01-29_YB-Bq8",2014-01-29,2014-01-29,"YB","B","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","6%",""
+"2014-01-29_YB-Bq9",2014-01-29,2014-01-29,"YB","B","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","4%",""
+"2014-01-29_YB-Bq1",2014-01-29,2014-01-29,"YB","B","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","20%",""
+"2014-01-29_YB-Bq2",2014-01-29,2014-01-29,"YB","B","2","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-01-29_YB-Bq3",2014-01-29,2014-01-29,"YB","B","3","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-01-29_YB-Bq4",2014-01-29,2014-01-29,"YB","B","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-01-29_YB-Bq5",2014-01-29,2014-01-29,"YB","B","5","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-01-29_YB-Bq6",2014-01-29,2014-01-29,"YB","B","6","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-01-29_YB-Bq7",2014-01-29,2014-01-29,"YB","B","7","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2014-01-29_YB-Bq8",2014-01-29,2014-01-29,"YB","B","8","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","6%",""
+"2014-01-29_YB-Bq9",2014-01-29,2014-01-29,"YB","B","9","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","4%",""
+"2014-01-29_YB-Bq1",2014-01-29,2014-01-29,"YB","B","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","20%",""
+"2014-01-29_YB-Bq2",2014-01-29,2014-01-29,"YB","B","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-01-29_YB-Bq3",2014-01-29,2014-01-29,"YB","B","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-01-29_YB-Bq4",2014-01-29,2014-01-29,"YB","B","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-01-29_YB-Bq5",2014-01-29,2014-01-29,"YB","B","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-01-29_YB-Bq6",2014-01-29,2014-01-29,"YB","B","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-01-29_YB-Bq7",2014-01-29,2014-01-29,"YB","B","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2014-01-29_YB-Bq8",2014-01-29,2014-01-29,"YB","B","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","6%",""
+"2014-01-29_YB-Bq9",2014-01-29,2014-01-29,"YB","B","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","4%",""
+"2014-01-29_YB-Bq1",2014-01-29,2014-01-29,"YB","B","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","20%",""
+"2014-01-29_YB-Bq2",2014-01-29,2014-01-29,"YB","B","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-01-29_YB-Bq3",2014-01-29,2014-01-29,"YB","B","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-01-29_YB-Bq4",2014-01-29,2014-01-29,"YB","B","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-01-29_YB-Bq5",2014-01-29,2014-01-29,"YB","B","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-01-29_YB-Bq6",2014-01-29,2014-01-29,"YB","B","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-01-29_YB-Bq7",2014-01-29,2014-01-29,"YB","B","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2014-01-29_YB-Bq8",2014-01-29,2014-01-29,"YB","B","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","6%",""
+"2014-01-29_YB-Bq9",2014-01-29,2014-01-29,"YB","B","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","4%",""
+"2014-01-29_YB-Bq1",2014-01-29,2014-01-29,"YB","B","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","20%",""
+"2014-01-29_YB-Bq2",2014-01-29,2014-01-29,"YB","B","2","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-01-29_YB-Bq3",2014-01-29,2014-01-29,"YB","B","3","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-01-29_YB-Bq4",2014-01-29,2014-01-29,"YB","B","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-01-29_YB-Bq5",2014-01-29,2014-01-29,"YB","B","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-01-29_YB-Bq6",2014-01-29,2014-01-29,"YB","B","6","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-01-29_YB-Bq7",2014-01-29,2014-01-29,"YB","B","7","Pp","Pollicipes_polymerus","Type 11",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2014-01-29_YB-Bq8",2014-01-29,2014-01-29,"YB","B","8","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","6%",""
+"2014-01-29_YB-Bq9",2014-01-29,2014-01-29,"YB","B","9","Pp","Pollicipes_polymerus","Type 11",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","4%",""
+"2014-01-29_YB-Bq1",2014-01-29,2014-01-29,"YB","B","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","20%",""
+"2014-01-29_YB-Bq2",2014-01-29,2014-01-29,"YB","B","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-01-29_YB-Bq3",2014-01-29,2014-01-29,"YB","B","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-01-29_YB-Bq4",2014-01-29,2014-01-29,"YB","B","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-01-29_YB-Bq5",2014-01-29,2014-01-29,"YB","B","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-01-29_YB-Bq6",2014-01-29,2014-01-29,"YB","B","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-01-29_YB-Bq7",2014-01-29,2014-01-29,"YB","B","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2014-01-29_YB-Bq8",2014-01-29,2014-01-29,"YB","B","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","6%",""
+"2014-01-29_YB-Bq9",2014-01-29,2014-01-29,"YB","B","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","4%",""
+"2014-01-29_YB-Bq1",2014-01-29,2014-01-29,"YB","B","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","20%",""
+"2014-01-29_YB-Bq2",2014-01-29,2014-01-29,"YB","B","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-01-29_YB-Bq3",2014-01-29,2014-01-29,"YB","B","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-01-29_YB-Bq4",2014-01-29,2014-01-29,"YB","B","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-01-29_YB-Bq5",2014-01-29,2014-01-29,"YB","B","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-01-29_YB-Bq6",2014-01-29,2014-01-29,"YB","B","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-01-29_YB-Bq7",2014-01-29,2014-01-29,"YB","B","7","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2014-01-29_YB-Bq8",2014-01-29,2014-01-29,"YB","B","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","6%",""
+"2014-01-29_YB-Bq9",2014-01-29,2014-01-29,"YB","B","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","4%",""
+"2014-01-29_YB-Bq1",2014-01-29,2014-01-29,"YB","B","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","20%",""
+"2014-01-29_YB-Bq2",2014-01-29,2014-01-29,"YB","B","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-01-29_YB-Bq3",2014-01-29,2014-01-29,"YB","B","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-01-29_YB-Bq4",2014-01-29,2014-01-29,"YB","B","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-01-29_YB-Bq5",2014-01-29,2014-01-29,"YB","B","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-01-29_YB-Bq6",2014-01-29,2014-01-29,"YB","B","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-01-29_YB-Bq7",2014-01-29,2014-01-29,"YB","B","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2014-01-29_YB-Bq8",2014-01-29,2014-01-29,"YB","B","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","6%",""
+"2014-01-29_YB-Bq9",2014-01-29,2014-01-29,"YB","B","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","4%",""
+"2014-01-29_YB-BBq1",2014-01-29,2014-01-29,"YB","BB","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-01-29_YB-BBq2",2014-01-29,2014-01-29,"YB","BB","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","",""
+"2014-01-29_YB-BBq9",2014-01-29,2014-01-29,"YB","BB","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Counts likely low due to glare"
+"2014-01-29_YB-BBq1",2014-01-29,2014-01-29,"YB","BB","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-01-29_YB-BBq2",2014-01-29,2014-01-29,"YB","BB","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","",""
+"2014-01-29_YB-BBq9",2014-01-29,2014-01-29,"YB","BB","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Counts likely low due to glare"
+"2014-01-29_YB-BBq1",2014-01-29,2014-01-29,"YB","BB","1","Bg","Balanus_glandula","Type 1",958,0.015625,61312,"c","Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-01-29_YB-BBq2",2014-01-29,2014-01-29,"YB","BB","2","Bg","Balanus_glandula","Type 1",632,0.015625,40448,"c","Stephanie Merhoff","Finished","Full","Cropped","",""
+"2014-01-29_YB-BBq9",2014-01-29,2014-01-29,"YB","BB","9","Bg","Balanus_glandula","Type 1",744,0.015625,47616,"c","Stephanie Merhoff","Finished","Full","Cropped","0%","Counts likely low due to glare"
+"2014-01-29_YB-BBq1",2014-01-29,2014-01-29,"YB","BB","1","BgD","Balanus_glandula_(dead)","Type 2",2,0.015625,128,"c","Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-01-29_YB-BBq2",2014-01-29,2014-01-29,"YB","BB","2","BgD","Balanus_glandula_(dead)","Type 2",2,0.015625,128,"c","Stephanie Merhoff","Finished","Full","Cropped","",""
+"2014-01-29_YB-BBq9",2014-01-29,2014-01-29,"YB","BB","9","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","0%","Counts likely low due to glare"
+"2014-01-29_YB-BBq1",2014-01-29,2014-01-29,"YB","BB","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-01-29_YB-BBq2",2014-01-29,2014-01-29,"YB","BB","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","",""
+"2014-01-29_YB-BBq9",2014-01-29,2014-01-29,"YB","BB","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Counts likely low due to glare"
+"2014-01-29_YB-BBq1",2014-01-29,2014-01-29,"YB","BB","1","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-01-29_YB-BBq2",2014-01-29,2014-01-29,"YB","BB","2","Cth","Chthamalus_dalli","Type 3",3,0.015625,192,"c","Stephanie Merhoff","Finished","Full","Cropped","",""
+"2014-01-29_YB-BBq9",2014-01-29,2014-01-29,"YB","BB","9","Cth","Chthamalus_dalli","Type 3",1,0.015625,64,"c","Stephanie Merhoff","Finished","Full","Cropped","0%","Counts likely low due to glare"
+"2014-01-29_YB-BBq1",2014-01-29,2014-01-29,"YB","BB","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-01-29_YB-BBq2",2014-01-29,2014-01-29,"YB","BB","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","",""
+"2014-01-29_YB-BBq9",2014-01-29,2014-01-29,"YB","BB","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","0%","Counts likely low due to glare"
+"2014-01-29_YB-BBq1",2014-01-29,2014-01-29,"YB","BB","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-01-29_YB-BBq2",2014-01-29,2014-01-29,"YB","BB","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","",""
+"2014-01-29_YB-BBq9",2014-01-29,2014-01-29,"YB","BB","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Counts likely low due to glare"
+"2014-01-29_YB-BBq1",2014-01-29,2014-01-29,"YB","BB","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-01-29_YB-BBq2",2014-01-29,2014-01-29,"YB","BB","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","",""
+"2014-01-29_YB-BBq9",2014-01-29,2014-01-29,"YB","BB","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Counts likely low due to glare"
+"2014-01-29_YB-BBq1",2014-01-29,2014-01-29,"YB","BB","1","Lim","Limpets","Type 12",17,0.0875,194.285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-01-29_YB-BBq2",2014-01-29,2014-01-29,"YB","BB","2","Lim","Limpets","Type 12",13,0.0875,148.571428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","",""
+"2014-01-29_YB-BBq9",2014-01-29,2014-01-29,"YB","BB","9","Lim","Limpets","Type 12",7,0.0875,80,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Counts likely low due to glare"
+"2014-01-29_YB-BBq1",2014-01-29,2014-01-29,"YB","BB","1","Ls","Littorina_sitkana","Type 13",215,0.0875,2457.14285714286,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-01-29_YB-BBq2",2014-01-29,2014-01-29,"YB","BB","2","Ls","Littorina_sitkana","Type 13",214,0.0875,2445.71428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","",""
+"2014-01-29_YB-BBq9",2014-01-29,2014-01-29,"YB","BB","9","Ls","Littorina_sitkana","Type 13",150,0.0875,1714.28571428571,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Counts likely low due to glare"
+"2014-01-29_YB-BBq1",2014-01-29,2014-01-29,"YB","BB","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-01-29_YB-BBq2",2014-01-29,2014-01-29,"YB","BB","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","",""
+"2014-01-29_YB-BBq9",2014-01-29,2014-01-29,"YB","BB","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Counts likely low due to glare"
+"2014-01-29_YB-BBq1",2014-01-29,2014-01-29,"YB","BB","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-01-29_YB-BBq2",2014-01-29,2014-01-29,"YB","BB","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","",""
+"2014-01-29_YB-BBq9",2014-01-29,2014-01-29,"YB","BB","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Counts likely low due to glare"
+"2014-01-29_YB-BBq1",2014-01-29,2014-01-29,"YB","BB","1","Myt","Mytilus_spp","Type 7",482,0.0875,5508.57142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-01-29_YB-BBq2",2014-01-29,2014-01-29,"YB","BB","2","Myt","Mytilus_spp","Type 7",367,0.0875,4194.28571428571,NA,"Stephanie Merhoff","Finished","Full","Cropped","",""
+"2014-01-29_YB-BBq9",2014-01-29,2014-01-29,"YB","BB","9","Myt","Mytilus_spp","Type 7",250,0.0875,2857.14285714286,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Counts likely low due to glare"
+"2014-01-29_YB-BBq1",2014-01-29,2014-01-29,"YB","BB","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-01-29_YB-BBq2",2014-01-29,2014-01-29,"YB","BB","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","",""
+"2014-01-29_YB-BBq9",2014-01-29,2014-01-29,"YB","BB","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Counts likely low due to glare"
+"2014-01-29_YB-BBq1",2014-01-29,2014-01-29,"YB","BB","1","Mt","Mytilus_trossulus","Type 15",10,0.0875,114.285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-01-29_YB-BBq2",2014-01-29,2014-01-29,"YB","BB","2","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","",""
+"2014-01-29_YB-BBq9",2014-01-29,2014-01-29,"YB","BB","9","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Counts likely low due to glare"
+"2014-01-29_YB-BBq1",2014-01-29,2014-01-29,"YB","BB","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-01-29_YB-BBq2",2014-01-29,2014-01-29,"YB","BB","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","",""
+"2014-01-29_YB-BBq9",2014-01-29,2014-01-29,"YB","BB","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Counts likely low due to glare"
+"2014-01-29_YB-BBq1",2014-01-29,2014-01-29,"YB","BB","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-01-29_YB-BBq2",2014-01-29,2014-01-29,"YB","BB","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","",""
+"2014-01-29_YB-BBq9",2014-01-29,2014-01-29,"YB","BB","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Counts likely low due to glare"
+"2014-01-29_YB-BBq1",2014-01-29,2014-01-29,"YB","BB","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-01-29_YB-BBq2",2014-01-29,2014-01-29,"YB","BB","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","",""
+"2014-01-29_YB-BBq9",2014-01-29,2014-01-29,"YB","BB","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Counts likely low due to glare"
+"2014-01-29_YB-BBq1",2014-01-29,2014-01-29,"YB","BB","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-01-29_YB-BBq2",2014-01-29,2014-01-29,"YB","BB","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","",""
+"2014-01-29_YB-BBq9",2014-01-29,2014-01-29,"YB","BB","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Counts likely low due to glare"
+"2014-01-29_YB-BBq1",2014-01-29,2014-01-29,"YB","BB","1","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-01-29_YB-BBq2",2014-01-29,2014-01-29,"YB","BB","2","No","Nucella_ostrina","Type 9",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","",""
+"2014-01-29_YB-BBq9",2014-01-29,2014-01-29,"YB","BB","9","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Counts likely low due to glare"
+"2014-01-29_YB-BBq1",2014-01-29,2014-01-29,"YB","BB","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-01-29_YB-BBq2",2014-01-29,2014-01-29,"YB","BB","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","",""
+"2014-01-29_YB-BBq9",2014-01-29,2014-01-29,"YB","BB","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Counts likely low due to glare"
+"2014-01-29_YB-BBq1",2014-01-29,2014-01-29,"YB","BB","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-01-29_YB-BBq2",2014-01-29,2014-01-29,"YB","BB","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","",""
+"2014-01-29_YB-BBq9",2014-01-29,2014-01-29,"YB","BB","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Counts likely low due to glare"
+"2014-01-29_YB-BBq1",2014-01-29,2014-01-29,"YB","BB","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-01-29_YB-BBq2",2014-01-29,2014-01-29,"YB","BB","2","Pp","Pollicipes_polymerus","Type 11",5,0.0875,57.1428571428571,NA,"Stephanie Merhoff","Finished","Full","Cropped","",""
+"2014-01-29_YB-BBq9",2014-01-29,2014-01-29,"YB","BB","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Counts likely low due to glare"
+"2014-01-29_YB-BBq1",2014-01-29,2014-01-29,"YB","BB","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-01-29_YB-BBq2",2014-01-29,2014-01-29,"YB","BB","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","",""
+"2014-01-29_YB-BBq9",2014-01-29,2014-01-29,"YB","BB","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Counts likely low due to glare"
+"2014-01-29_YB-BBq1",2014-01-29,2014-01-29,"YB","BB","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-01-29_YB-BBq2",2014-01-29,2014-01-29,"YB","BB","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","",""
+"2014-01-29_YB-BBq9",2014-01-29,2014-01-29,"YB","BB","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Counts likely low due to glare"
+"2014-01-29_YB-BBq1",2014-01-29,2014-01-29,"YB","BB","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-01-29_YB-BBq2",2014-01-29,2014-01-29,"YB","BB","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","",""
+"2014-01-29_YB-BBq9",2014-01-29,2014-01-29,"YB","BB","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Counts likely low due to glare"
+"2014-01-29_YB-BCq3",2014-01-29,2014-01-29,"YB","BC","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%",""
+"2014-01-29_YB-BCq5",2014-01-29,2014-01-29,"YB","BC","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-01-29_YB-BCq9",2014-01-29,2014-01-29,"YB","BC","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts may be low due to blurry edges"
+"2014-01-29_YB-BCq3",2014-01-29,2014-01-29,"YB","BC","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%",""
+"2014-01-29_YB-BCq5",2014-01-29,2014-01-29,"YB","BC","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-01-29_YB-BCq9",2014-01-29,2014-01-29,"YB","BC","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts may be low due to blurry edges"
+"2014-01-29_YB-BCq3",2014-01-29,2014-01-29,"YB","BC","3","Bg","Balanus_glandula","Type 1",1198,0.015625,76672,"c","Stephanie Merhoff","Finished","Full","Cropped","3%",""
+"2014-01-29_YB-BCq5",2014-01-29,2014-01-29,"YB","BC","5","Bg","Balanus_glandula","Type 1",1090,0.015625,69760,"c","Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-01-29_YB-BCq9",2014-01-29,2014-01-29,"YB","BC","9","Bg","Balanus_glandula","Type 1",1279,0.015625,81856,"c","Stephanie Merhoff","Finished","Full","Cropped","2%","Counts may be low due to blurry edges"
+"2014-01-29_YB-BCq3",2014-01-29,2014-01-29,"YB","BC","3","BgD","Balanus_glandula_(dead)","Type 2",1,0.015625,64,"c","Stephanie Merhoff","Finished","Full","Cropped","3%",""
+"2014-01-29_YB-BCq5",2014-01-29,2014-01-29,"YB","BC","5","BgD","Balanus_glandula_(dead)","Type 2",3,0.015625,192,"c","Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-01-29_YB-BCq9",2014-01-29,2014-01-29,"YB","BC","9","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","2%","Counts may be low due to blurry edges"
+"2014-01-29_YB-BCq3",2014-01-29,2014-01-29,"YB","BC","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%",""
+"2014-01-29_YB-BCq5",2014-01-29,2014-01-29,"YB","BC","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-01-29_YB-BCq9",2014-01-29,2014-01-29,"YB","BC","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts may be low due to blurry edges"
+"2014-01-29_YB-BCq3",2014-01-29,2014-01-29,"YB","BC","3","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","3%",""
+"2014-01-29_YB-BCq5",2014-01-29,2014-01-29,"YB","BC","5","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-01-29_YB-BCq9",2014-01-29,2014-01-29,"YB","BC","9","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","2%","Counts may be low due to blurry edges"
+"2014-01-29_YB-BCq3",2014-01-29,2014-01-29,"YB","BC","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","3%",""
+"2014-01-29_YB-BCq5",2014-01-29,2014-01-29,"YB","BC","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-01-29_YB-BCq9",2014-01-29,2014-01-29,"YB","BC","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","2%","Counts may be low due to blurry edges"
+"2014-01-29_YB-BCq3",2014-01-29,2014-01-29,"YB","BC","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%",""
+"2014-01-29_YB-BCq5",2014-01-29,2014-01-29,"YB","BC","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-01-29_YB-BCq9",2014-01-29,2014-01-29,"YB","BC","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts may be low due to blurry edges"
+"2014-01-29_YB-BCq3",2014-01-29,2014-01-29,"YB","BC","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%",""
+"2014-01-29_YB-BCq5",2014-01-29,2014-01-29,"YB","BC","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-01-29_YB-BCq9",2014-01-29,2014-01-29,"YB","BC","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts may be low due to blurry edges"
+"2014-01-29_YB-BCq3",2014-01-29,2014-01-29,"YB","BC","3","Lim","Limpets","Type 12",22,0.0875,251.428571428571,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%",""
+"2014-01-29_YB-BCq5",2014-01-29,2014-01-29,"YB","BC","5","Lim","Limpets","Type 12",7,0.0875,80,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-01-29_YB-BCq9",2014-01-29,2014-01-29,"YB","BC","9","Lim","Limpets","Type 12",15,0.0875,171.428571428571,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts may be low due to blurry edges"
+"2014-01-29_YB-BCq3",2014-01-29,2014-01-29,"YB","BC","3","Ls","Littorina_sitkana","Type 13",128,0.0875,1462.85714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%",""
+"2014-01-29_YB-BCq5",2014-01-29,2014-01-29,"YB","BC","5","Ls","Littorina_sitkana","Type 13",154,0.0875,1760,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-01-29_YB-BCq9",2014-01-29,2014-01-29,"YB","BC","9","Ls","Littorina_sitkana","Type 13",139,0.0875,1588.57142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts may be low due to blurry edges"
+"2014-01-29_YB-BCq3",2014-01-29,2014-01-29,"YB","BC","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%",""
+"2014-01-29_YB-BCq5",2014-01-29,2014-01-29,"YB","BC","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-01-29_YB-BCq9",2014-01-29,2014-01-29,"YB","BC","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts may be low due to blurry edges"
+"2014-01-29_YB-BCq3",2014-01-29,2014-01-29,"YB","BC","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%",""
+"2014-01-29_YB-BCq5",2014-01-29,2014-01-29,"YB","BC","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-01-29_YB-BCq9",2014-01-29,2014-01-29,"YB","BC","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts may be low due to blurry edges"
+"2014-01-29_YB-BCq3",2014-01-29,2014-01-29,"YB","BC","3","Myt","Mytilus_spp","Type 7",262,0.0875,2994.28571428571,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%",""
+"2014-01-29_YB-BCq5",2014-01-29,2014-01-29,"YB","BC","5","Myt","Mytilus_spp","Type 7",460,0.0875,5257.14285714286,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-01-29_YB-BCq9",2014-01-29,2014-01-29,"YB","BC","9","Myt","Mytilus_spp","Type 7",394,0.0875,4502.85714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts may be low due to blurry edges"
+"2014-01-29_YB-BCq3",2014-01-29,2014-01-29,"YB","BC","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%",""
+"2014-01-29_YB-BCq5",2014-01-29,2014-01-29,"YB","BC","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-01-29_YB-BCq9",2014-01-29,2014-01-29,"YB","BC","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts may be low due to blurry edges"
+"2014-01-29_YB-BCq3",2014-01-29,2014-01-29,"YB","BC","3","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%",""
+"2014-01-29_YB-BCq5",2014-01-29,2014-01-29,"YB","BC","5","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-01-29_YB-BCq9",2014-01-29,2014-01-29,"YB","BC","9","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts may be low due to blurry edges"
+"2014-01-29_YB-BCq3",2014-01-29,2014-01-29,"YB","BC","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%",""
+"2014-01-29_YB-BCq5",2014-01-29,2014-01-29,"YB","BC","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-01-29_YB-BCq9",2014-01-29,2014-01-29,"YB","BC","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts may be low due to blurry edges"
+"2014-01-29_YB-BCq3",2014-01-29,2014-01-29,"YB","BC","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%",""
+"2014-01-29_YB-BCq5",2014-01-29,2014-01-29,"YB","BC","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-01-29_YB-BCq9",2014-01-29,2014-01-29,"YB","BC","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts may be low due to blurry edges"
+"2014-01-29_YB-BCq3",2014-01-29,2014-01-29,"YB","BC","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%",""
+"2014-01-29_YB-BCq5",2014-01-29,2014-01-29,"YB","BC","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-01-29_YB-BCq9",2014-01-29,2014-01-29,"YB","BC","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts may be low due to blurry edges"
+"2014-01-29_YB-BCq3",2014-01-29,2014-01-29,"YB","BC","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%",""
+"2014-01-29_YB-BCq5",2014-01-29,2014-01-29,"YB","BC","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-01-29_YB-BCq9",2014-01-29,2014-01-29,"YB","BC","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts may be low due to blurry edges"
+"2014-01-29_YB-BCq3",2014-01-29,2014-01-29,"YB","BC","3","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%",""
+"2014-01-29_YB-BCq5",2014-01-29,2014-01-29,"YB","BC","5","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-01-29_YB-BCq9",2014-01-29,2014-01-29,"YB","BC","9","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts may be low due to blurry edges"
+"2014-01-29_YB-BCq3",2014-01-29,2014-01-29,"YB","BC","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%",""
+"2014-01-29_YB-BCq5",2014-01-29,2014-01-29,"YB","BC","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-01-29_YB-BCq9",2014-01-29,2014-01-29,"YB","BC","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts may be low due to blurry edges"
+"2014-01-29_YB-BCq3",2014-01-29,2014-01-29,"YB","BC","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%",""
+"2014-01-29_YB-BCq5",2014-01-29,2014-01-29,"YB","BC","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-01-29_YB-BCq9",2014-01-29,2014-01-29,"YB","BC","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts may be low due to blurry edges"
+"2014-01-29_YB-BCq3",2014-01-29,2014-01-29,"YB","BC","3","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%",""
+"2014-01-29_YB-BCq5",2014-01-29,2014-01-29,"YB","BC","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-01-29_YB-BCq9",2014-01-29,2014-01-29,"YB","BC","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts may be low due to blurry edges"
+"2014-01-29_YB-BCq3",2014-01-29,2014-01-29,"YB","BC","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%",""
+"2014-01-29_YB-BCq5",2014-01-29,2014-01-29,"YB","BC","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-01-29_YB-BCq9",2014-01-29,2014-01-29,"YB","BC","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts may be low due to blurry edges"
+"2014-01-29_YB-BCq3",2014-01-29,2014-01-29,"YB","BC","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%",""
+"2014-01-29_YB-BCq5",2014-01-29,2014-01-29,"YB","BC","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-01-29_YB-BCq9",2014-01-29,2014-01-29,"YB","BC","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts may be low due to blurry edges"
+"2014-01-29_YB-BCq3",2014-01-29,2014-01-29,"YB","BC","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%",""
+"2014-01-29_YB-BCq5",2014-01-29,2014-01-29,"YB","BC","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-01-29_YB-BCq9",2014-01-29,2014-01-29,"YB","BC","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts may be low due to blurry edges"
+"2014-01-30_YB-BDq1",2014-01-29,2014-01-30,"YB","BD","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2014-01-30_YB-BDq5",2014-01-29,2014-01-30,"YB","BD","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%",""
+"2014-01-30_YB-BDq7",2014-01-29,2014-01-30,"YB","BD","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2014-01-30_YB-BDq1",2014-01-29,2014-01-30,"YB","BD","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2014-01-30_YB-BDq5",2014-01-29,2014-01-30,"YB","BD","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%",""
+"2014-01-30_YB-BDq7",2014-01-29,2014-01-30,"YB","BD","7","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2014-01-30_YB-BDq1",2014-01-29,2014-01-30,"YB","BD","1","Bg","Balanus_glandula","Type 1",5035,0.0875,57542.8571428571,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2014-01-30_YB-BDq5",2014-01-29,2014-01-30,"YB","BD","5","Bg","Balanus_glandula","Type 1",3932,0.0875,44937.1428571429,NA,"Julia Bingham","Finished","Full","Full","5%",""
+"2014-01-30_YB-BDq7",2014-01-29,2014-01-30,"YB","BD","7","Bg","Balanus_glandula","Type 1",4306,0.0875,49211.4285714286,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2014-01-30_YB-BDq1",2014-01-29,2014-01-30,"YB","BD","1","BgD","Balanus_glandula_(dead)","Type 2",295,0.0875,3371.42857142857,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2014-01-30_YB-BDq5",2014-01-29,2014-01-30,"YB","BD","5","BgD","Balanus_glandula_(dead)","Type 2",278,0.0875,3177.14285714286,NA,"Julia Bingham","Finished","Full","Full","5%",""
+"2014-01-30_YB-BDq7",2014-01-29,2014-01-30,"YB","BD","7","BgD","Balanus_glandula_(dead)","Type 2",303,0.0875,3462.85714285714,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2014-01-30_YB-BDq1",2014-01-29,2014-01-30,"YB","BD","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2014-01-30_YB-BDq5",2014-01-29,2014-01-30,"YB","BD","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%",""
+"2014-01-30_YB-BDq7",2014-01-29,2014-01-30,"YB","BD","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2014-01-30_YB-BDq1",2014-01-29,2014-01-30,"YB","BD","1","Cth","Chthamalus_dalli","Type 3",53,0.0875,605.714285714286,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2014-01-30_YB-BDq5",2014-01-29,2014-01-30,"YB","BD","5","Cth","Chthamalus_dalli","Type 3",28,0.0875,320,NA,"Julia Bingham","Finished","Full","Full","5%",""
+"2014-01-30_YB-BDq7",2014-01-29,2014-01-30,"YB","BD","7","Cth","Chthamalus_dalli","Type 3",5,0.0875,57.1428571428571,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2014-01-30_YB-BDq1",2014-01-29,2014-01-30,"YB","BD","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2014-01-30_YB-BDq5",2014-01-29,2014-01-30,"YB","BD","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%",""
+"2014-01-30_YB-BDq7",2014-01-29,2014-01-30,"YB","BD","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2014-01-30_YB-BDq1",2014-01-29,2014-01-30,"YB","BD","1","Emp","Emplectonema worm","Type 23",3,0.0875,34.2857142857143,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2014-01-30_YB-BDq5",2014-01-29,2014-01-30,"YB","BD","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%",""
+"2014-01-30_YB-BDq7",2014-01-29,2014-01-30,"YB","BD","7","Emp","Emplectonema worm","Type 23",5,0.0875,57.1428571428571,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2014-01-30_YB-BDq1",2014-01-29,2014-01-30,"YB","BD","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2014-01-30_YB-BDq5",2014-01-29,2014-01-30,"YB","BD","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%",""
+"2014-01-30_YB-BDq7",2014-01-29,2014-01-30,"YB","BD","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2014-01-30_YB-BDq1",2014-01-29,2014-01-30,"YB","BD","1","Lim","Limpets","Type 12",226,0.0875,2582.85714285714,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2014-01-30_YB-BDq5",2014-01-29,2014-01-30,"YB","BD","5","Lim","Limpets","Type 12",309,0.0875,3531.42857142857,NA,"Julia Bingham","Finished","Full","Full","5%",""
+"2014-01-30_YB-BDq7",2014-01-29,2014-01-30,"YB","BD","7","Lim","Limpets","Type 12",321,0.0875,3668.57142857143,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2014-01-30_YB-BDq1",2014-01-29,2014-01-30,"YB","BD","1","Ls","Littorina_sitkana","Type 13",303,0.0875,3462.85714285714,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2014-01-30_YB-BDq5",2014-01-29,2014-01-30,"YB","BD","5","Ls","Littorina_sitkana","Type 13",269,0.0875,3074.28571428571,NA,"Julia Bingham","Finished","Full","Full","5%",""
+"2014-01-30_YB-BDq7",2014-01-29,2014-01-30,"YB","BD","7","Ls","Littorina_sitkana","Type 13",314,0.0875,3588.57142857143,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2014-01-30_YB-BDq1",2014-01-29,2014-01-30,"YB","BD","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2014-01-30_YB-BDq5",2014-01-29,2014-01-30,"YB","BD","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%",""
+"2014-01-30_YB-BDq7",2014-01-29,2014-01-30,"YB","BD","7","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2014-01-30_YB-BDq1",2014-01-29,2014-01-30,"YB","BD","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2014-01-30_YB-BDq5",2014-01-29,2014-01-30,"YB","BD","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%",""
+"2014-01-30_YB-BDq7",2014-01-29,2014-01-30,"YB","BD","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2014-01-30_YB-BDq1",2014-01-29,2014-01-30,"YB","BD","1","Myt","Mytilus_spp","Type 7",517,0.0875,5908.57142857143,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2014-01-30_YB-BDq5",2014-01-29,2014-01-30,"YB","BD","5","Myt","Mytilus_spp","Type 7",546,0.0875,6240,NA,"Julia Bingham","Finished","Full","Full","5%",""
+"2014-01-30_YB-BDq7",2014-01-29,2014-01-30,"YB","BD","7","Myt","Mytilus_spp","Type 7",582,0.0875,6651.42857142857,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2014-01-30_YB-BDq1",2014-01-29,2014-01-30,"YB","BD","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2014-01-30_YB-BDq5",2014-01-29,2014-01-30,"YB","BD","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%",""
+"2014-01-30_YB-BDq7",2014-01-29,2014-01-30,"YB","BD","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2014-01-30_YB-BDq1",2014-01-29,2014-01-30,"YB","BD","1","Mt","Mytilus_trossulus","Type 15",45,0.0875,514.285714285714,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2014-01-30_YB-BDq5",2014-01-29,2014-01-30,"YB","BD","5","Mt","Mytilus_trossulus","Type 15",95,0.0875,1085.71428571429,NA,"Julia Bingham","Finished","Full","Full","5%",""
+"2014-01-30_YB-BDq7",2014-01-29,2014-01-30,"YB","BD","7","Mt","Mytilus_trossulus","Type 15",112,0.0875,1280,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2014-01-30_YB-BDq1",2014-01-29,2014-01-30,"YB","BD","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2014-01-30_YB-BDq5",2014-01-29,2014-01-30,"YB","BD","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%",""
+"2014-01-30_YB-BDq7",2014-01-29,2014-01-30,"YB","BD","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2014-01-30_YB-BDq1",2014-01-29,2014-01-30,"YB","BD","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2014-01-30_YB-BDq5",2014-01-29,2014-01-30,"YB","BD","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%",""
+"2014-01-30_YB-BDq7",2014-01-29,2014-01-30,"YB","BD","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2014-01-30_YB-BDq1",2014-01-29,2014-01-30,"YB","BD","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2014-01-30_YB-BDq5",2014-01-29,2014-01-30,"YB","BD","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%",""
+"2014-01-30_YB-BDq7",2014-01-29,2014-01-30,"YB","BD","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2014-01-30_YB-BDq1",2014-01-29,2014-01-30,"YB","BD","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2014-01-30_YB-BDq5",2014-01-29,2014-01-30,"YB","BD","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%",""
+"2014-01-30_YB-BDq7",2014-01-29,2014-01-30,"YB","BD","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2014-01-30_YB-BDq1",2014-01-29,2014-01-30,"YB","BD","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2014-01-30_YB-BDq5",2014-01-29,2014-01-30,"YB","BD","5","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%",""
+"2014-01-30_YB-BDq7",2014-01-29,2014-01-30,"YB","BD","7","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2014-01-30_YB-BDq1",2014-01-29,2014-01-30,"YB","BD","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2014-01-30_YB-BDq5",2014-01-29,2014-01-30,"YB","BD","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%",""
+"2014-01-30_YB-BDq7",2014-01-29,2014-01-30,"YB","BD","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2014-01-30_YB-BDq1",2014-01-29,2014-01-30,"YB","BD","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2014-01-30_YB-BDq5",2014-01-29,2014-01-30,"YB","BD","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%",""
+"2014-01-30_YB-BDq7",2014-01-29,2014-01-30,"YB","BD","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2014-01-30_YB-BDq1",2014-01-29,2014-01-30,"YB","BD","1","Pp","Pollicipes_polymerus","Type 11",6,0.0875,68.5714285714286,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2014-01-30_YB-BDq5",2014-01-29,2014-01-30,"YB","BD","5","Pp","Pollicipes_polymerus","Type 11",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Full","5%",""
+"2014-01-30_YB-BDq7",2014-01-29,2014-01-30,"YB","BD","7","Pp","Pollicipes_polymerus","Type 11",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2014-01-30_YB-BDq1",2014-01-29,2014-01-30,"YB","BD","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2014-01-30_YB-BDq5",2014-01-29,2014-01-30,"YB","BD","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%",""
+"2014-01-30_YB-BDq7",2014-01-29,2014-01-30,"YB","BD","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2014-01-30_YB-BDq1",2014-01-29,2014-01-30,"YB","BD","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2014-01-30_YB-BDq5",2014-01-29,2014-01-30,"YB","BD","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%",""
+"2014-01-30_YB-BDq7",2014-01-29,2014-01-30,"YB","BD","7","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2014-01-30_YB-BDq1",2014-01-29,2014-01-30,"YB","BD","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2014-01-30_YB-BDq5",2014-01-29,2014-01-30,"YB","BD","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%",""
+"2014-01-30_YB-BDq7",2014-01-29,2014-01-30,"YB","BD","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2014-01-30_YB-BEq2",2014-01-29,2014-01-30,"YB","BE","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to algae coverage and underwater patches"
+"2014-01-30_YB-BEq3",2014-01-29,2014-01-30,"YB","BE","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BEq6",2014-01-29,2014-01-30,"YB","BE","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BEq2",2014-01-29,2014-01-30,"YB","BE","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to algae coverage and underwater patches"
+"2014-01-30_YB-BEq3",2014-01-29,2014-01-30,"YB","BE","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BEq6",2014-01-29,2014-01-30,"YB","BE","6","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BEq2",2014-01-29,2014-01-30,"YB","BE","2","Bg","Balanus_glandula","Type 1",157,0.0875,1794.28571428571,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to algae coverage and underwater patches"
+"2014-01-30_YB-BEq3",2014-01-29,2014-01-30,"YB","BE","3","Bg","Balanus_glandula","Type 1",581,0.0875,6640,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BEq6",2014-01-29,2014-01-30,"YB","BE","6","Bg","Balanus_glandula","Type 1",779,0.0875,8902.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BEq2",2014-01-29,2014-01-30,"YB","BE","2","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to algae coverage and underwater patches"
+"2014-01-30_YB-BEq3",2014-01-29,2014-01-30,"YB","BE","3","BgD","Balanus_glandula_(dead)","Type 2",21,0.0875,240,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BEq6",2014-01-29,2014-01-30,"YB","BE","6","BgD","Balanus_glandula_(dead)","Type 2",29,0.0875,331.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BEq2",2014-01-29,2014-01-30,"YB","BE","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to algae coverage and underwater patches"
+"2014-01-30_YB-BEq3",2014-01-29,2014-01-30,"YB","BE","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BEq6",2014-01-29,2014-01-30,"YB","BE","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BEq2",2014-01-29,2014-01-30,"YB","BE","2","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to algae coverage and underwater patches"
+"2014-01-30_YB-BEq3",2014-01-29,2014-01-30,"YB","BE","3","Cth","Chthamalus_dalli","Type 3",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BEq6",2014-01-29,2014-01-30,"YB","BE","6","Cth","Chthamalus_dalli","Type 3",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BEq2",2014-01-29,2014-01-30,"YB","BE","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to algae coverage and underwater patches"
+"2014-01-30_YB-BEq3",2014-01-29,2014-01-30,"YB","BE","3","CthD","Chthamalus_dalli (dead)","Type 4",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BEq6",2014-01-29,2014-01-30,"YB","BE","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BEq2",2014-01-29,2014-01-30,"YB","BE","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to algae coverage and underwater patches"
+"2014-01-30_YB-BEq3",2014-01-29,2014-01-30,"YB","BE","3","Emp","Emplectonema worm","Type 23",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BEq6",2014-01-29,2014-01-30,"YB","BE","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BEq2",2014-01-29,2014-01-30,"YB","BE","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to algae coverage and underwater patches"
+"2014-01-30_YB-BEq3",2014-01-29,2014-01-30,"YB","BE","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BEq6",2014-01-29,2014-01-30,"YB","BE","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BEq2",2014-01-29,2014-01-30,"YB","BE","2","Lim","Limpets","Type 12",19,0.0875,217.142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to algae coverage and underwater patches"
+"2014-01-30_YB-BEq3",2014-01-29,2014-01-30,"YB","BE","3","Lim","Limpets","Type 12",159,0.0875,1817.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BEq6",2014-01-29,2014-01-30,"YB","BE","6","Lim","Limpets","Type 12",252,0.0875,2880,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BEq2",2014-01-29,2014-01-30,"YB","BE","2","Ls","Littorina_sitkana","Type 13",119,0.0875,1360,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to algae coverage and underwater patches"
+"2014-01-30_YB-BEq3",2014-01-29,2014-01-30,"YB","BE","3","Ls","Littorina_sitkana","Type 13",136,0.0875,1554.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BEq6",2014-01-29,2014-01-30,"YB","BE","6","Ls","Littorina_sitkana","Type 13",213,0.0875,2434.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BEq2",2014-01-29,2014-01-30,"YB","BE","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to algae coverage and underwater patches"
+"2014-01-30_YB-BEq3",2014-01-29,2014-01-30,"YB","BE","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BEq6",2014-01-29,2014-01-30,"YB","BE","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BEq2",2014-01-29,2014-01-30,"YB","BE","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to algae coverage and underwater patches"
+"2014-01-30_YB-BEq3",2014-01-29,2014-01-30,"YB","BE","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BEq6",2014-01-29,2014-01-30,"YB","BE","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BEq2",2014-01-29,2014-01-30,"YB","BE","2","Myt","Mytilus_spp","Type 7",5,0.0875,57.1428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to algae coverage and underwater patches"
+"2014-01-30_YB-BEq3",2014-01-29,2014-01-30,"YB","BE","3","Myt","Mytilus_spp","Type 7",39,0.0875,445.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BEq6",2014-01-29,2014-01-30,"YB","BE","6","Myt","Mytilus_spp","Type 7",42,0.0875,480,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BEq2",2014-01-29,2014-01-30,"YB","BE","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to algae coverage and underwater patches"
+"2014-01-30_YB-BEq3",2014-01-29,2014-01-30,"YB","BE","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BEq6",2014-01-29,2014-01-30,"YB","BE","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BEq2",2014-01-29,2014-01-30,"YB","BE","2","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to algae coverage and underwater patches"
+"2014-01-30_YB-BEq3",2014-01-29,2014-01-30,"YB","BE","3","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BEq6",2014-01-29,2014-01-30,"YB","BE","6","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BEq2",2014-01-29,2014-01-30,"YB","BE","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to algae coverage and underwater patches"
+"2014-01-30_YB-BEq3",2014-01-29,2014-01-30,"YB","BE","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BEq6",2014-01-29,2014-01-30,"YB","BE","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BEq2",2014-01-29,2014-01-30,"YB","BE","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to algae coverage and underwater patches"
+"2014-01-30_YB-BEq3",2014-01-29,2014-01-30,"YB","BE","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BEq6",2014-01-29,2014-01-30,"YB","BE","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BEq2",2014-01-29,2014-01-30,"YB","BE","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to algae coverage and underwater patches"
+"2014-01-30_YB-BEq3",2014-01-29,2014-01-30,"YB","BE","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BEq6",2014-01-29,2014-01-30,"YB","BE","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BEq2",2014-01-29,2014-01-30,"YB","BE","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to algae coverage and underwater patches"
+"2014-01-30_YB-BEq3",2014-01-29,2014-01-30,"YB","BE","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BEq6",2014-01-29,2014-01-30,"YB","BE","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BEq2",2014-01-29,2014-01-30,"YB","BE","2","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to algae coverage and underwater patches"
+"2014-01-30_YB-BEq3",2014-01-29,2014-01-30,"YB","BE","3","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BEq6",2014-01-29,2014-01-30,"YB","BE","6","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BEq2",2014-01-29,2014-01-30,"YB","BE","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to algae coverage and underwater patches"
+"2014-01-30_YB-BEq3",2014-01-29,2014-01-30,"YB","BE","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BEq6",2014-01-29,2014-01-30,"YB","BE","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BEq2",2014-01-29,2014-01-30,"YB","BE","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to algae coverage and underwater patches"
+"2014-01-30_YB-BEq3",2014-01-29,2014-01-30,"YB","BE","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BEq6",2014-01-29,2014-01-30,"YB","BE","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BEq2",2014-01-29,2014-01-30,"YB","BE","2","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to algae coverage and underwater patches"
+"2014-01-30_YB-BEq3",2014-01-29,2014-01-30,"YB","BE","3","Pp","Pollicipes_polymerus","Type 11",17,0.0875,194.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BEq6",2014-01-29,2014-01-30,"YB","BE","6","Pp","Pollicipes_polymerus","Type 11",26,0.0875,297.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BEq2",2014-01-29,2014-01-30,"YB","BE","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to algae coverage and underwater patches"
+"2014-01-30_YB-BEq3",2014-01-29,2014-01-30,"YB","BE","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BEq6",2014-01-29,2014-01-30,"YB","BE","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BEq2",2014-01-29,2014-01-30,"YB","BE","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to algae coverage and underwater patches"
+"2014-01-30_YB-BEq3",2014-01-29,2014-01-30,"YB","BE","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BEq6",2014-01-29,2014-01-30,"YB","BE","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BEq2",2014-01-29,2014-01-30,"YB","BE","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to algae coverage and underwater patches"
+"2014-01-30_YB-BEq3",2014-01-29,2014-01-30,"YB","BE","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BEq6",2014-01-29,2014-01-30,"YB","BE","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BFq1",2014-01-29,2014-01-30,"YB","BF","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BFq4",2014-01-29,2014-01-30,"YB","BF","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BFq9",2014-01-29,2014-01-30,"YB","BF","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%","80% mussel and barnacle coverage from previous surveys gone - patch is at least 70% bare rock"
+"2014-01-30_YB-BFq1",2014-01-29,2014-01-30,"YB","BF","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BFq4",2014-01-29,2014-01-30,"YB","BF","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BFq9",2014-01-29,2014-01-30,"YB","BF","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%","80% mussel and barnacle coverage from previous surveys gone - patch is at least 70% bare rock"
+"2014-01-30_YB-BFq1",2014-01-29,2014-01-30,"YB","BF","1","Bg","Balanus_glandula","Type 1",3065,0.0875,35028.5714285714,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BFq4",2014-01-29,2014-01-30,"YB","BF","4","Bg","Balanus_glandula","Type 1",1538,0.0875,17577.1428571429,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BFq9",2014-01-29,2014-01-30,"YB","BF","9","Bg","Balanus_glandula","Type 1",756,0.0875,8640,NA,"Julia Bingham","Finished","Full","Full","8%","80% mussel and barnacle coverage from previous surveys gone - patch is at least 70% bare rock"
+"2014-01-30_YB-BFq1",2014-01-29,2014-01-30,"YB","BF","1","BgD","Balanus_glandula_(dead)","Type 2",261,0.0875,2982.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BFq4",2014-01-29,2014-01-30,"YB","BF","4","BgD","Balanus_glandula_(dead)","Type 2",42,0.0875,480,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BFq9",2014-01-29,2014-01-30,"YB","BF","9","BgD","Balanus_glandula_(dead)","Type 2",267,0.0875,3051.42857142857,NA,"Julia Bingham","Finished","Full","Full","8%","80% mussel and barnacle coverage from previous surveys gone - patch is at least 70% bare rock"
+"2014-01-30_YB-BFq1",2014-01-29,2014-01-30,"YB","BF","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BFq4",2014-01-29,2014-01-30,"YB","BF","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BFq9",2014-01-29,2014-01-30,"YB","BF","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%","80% mussel and barnacle coverage from previous surveys gone - patch is at least 70% bare rock"
+"2014-01-30_YB-BFq1",2014-01-29,2014-01-30,"YB","BF","1","Cth","Chthamalus_dalli","Type 3",23,0.0875,262.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BFq4",2014-01-29,2014-01-30,"YB","BF","4","Cth","Chthamalus_dalli","Type 3",11,0.0875,125.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BFq9",2014-01-29,2014-01-30,"YB","BF","9","Cth","Chthamalus_dalli","Type 3",14,0.0875,160,NA,"Julia Bingham","Finished","Full","Full","8%","80% mussel and barnacle coverage from previous surveys gone - patch is at least 70% bare rock"
+"2014-01-30_YB-BFq1",2014-01-29,2014-01-30,"YB","BF","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BFq4",2014-01-29,2014-01-30,"YB","BF","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BFq9",2014-01-29,2014-01-30,"YB","BF","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%","80% mussel and barnacle coverage from previous surveys gone - patch is at least 70% bare rock"
+"2014-01-30_YB-BFq1",2014-01-29,2014-01-30,"YB","BF","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BFq4",2014-01-29,2014-01-30,"YB","BF","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BFq9",2014-01-29,2014-01-30,"YB","BF","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%","80% mussel and barnacle coverage from previous surveys gone - patch is at least 70% bare rock"
+"2014-01-30_YB-BFq1",2014-01-29,2014-01-30,"YB","BF","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BFq4",2014-01-29,2014-01-30,"YB","BF","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BFq9",2014-01-29,2014-01-30,"YB","BF","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%","80% mussel and barnacle coverage from previous surveys gone - patch is at least 70% bare rock"
+"2014-01-30_YB-BFq1",2014-01-29,2014-01-30,"YB","BF","1","Lim","Limpets","Type 12",218,0.0875,2491.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BFq4",2014-01-29,2014-01-30,"YB","BF","4","Lim","Limpets","Type 12",188,0.0875,2148.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BFq9",2014-01-29,2014-01-30,"YB","BF","9","Lim","Limpets","Type 12",42,0.0875,480,NA,"Julia Bingham","Finished","Full","Full","8%","80% mussel and barnacle coverage from previous surveys gone - patch is at least 70% bare rock"
+"2014-01-30_YB-BFq1",2014-01-29,2014-01-30,"YB","BF","1","Ls","Littorina_sitkana","Type 13",383,0.0875,4377.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BFq4",2014-01-29,2014-01-30,"YB","BF","4","Ls","Littorina_sitkana","Type 13",156,0.0875,1782.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BFq9",2014-01-29,2014-01-30,"YB","BF","9","Ls","Littorina_sitkana","Type 13",100,0.0875,1142.85714285714,NA,"Julia Bingham","Finished","Full","Full","8%","80% mussel and barnacle coverage from previous surveys gone - patch is at least 70% bare rock"
+"2014-01-30_YB-BFq1",2014-01-29,2014-01-30,"YB","BF","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BFq4",2014-01-29,2014-01-30,"YB","BF","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BFq9",2014-01-29,2014-01-30,"YB","BF","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%","80% mussel and barnacle coverage from previous surveys gone - patch is at least 70% bare rock"
+"2014-01-30_YB-BFq1",2014-01-29,2014-01-30,"YB","BF","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BFq4",2014-01-29,2014-01-30,"YB","BF","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BFq9",2014-01-29,2014-01-30,"YB","BF","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%","80% mussel and barnacle coverage from previous surveys gone - patch is at least 70% bare rock"
+"2014-01-30_YB-BFq1",2014-01-29,2014-01-30,"YB","BF","1","Myt","Mytilus_spp","Type 7",129,0.0875,1474.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BFq4",2014-01-29,2014-01-30,"YB","BF","4","Myt","Mytilus_spp","Type 7",69,0.0875,788.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BFq9",2014-01-29,2014-01-30,"YB","BF","9","Myt","Mytilus_spp","Type 7",475,0.0875,5428.57142857143,NA,"Julia Bingham","Finished","Full","Full","8%","80% mussel and barnacle coverage from previous surveys gone - patch is at least 70% bare rock"
+"2014-01-30_YB-BFq1",2014-01-29,2014-01-30,"YB","BF","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BFq4",2014-01-29,2014-01-30,"YB","BF","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BFq9",2014-01-29,2014-01-30,"YB","BF","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%","80% mussel and barnacle coverage from previous surveys gone - patch is at least 70% bare rock"
+"2014-01-30_YB-BFq1",2014-01-29,2014-01-30,"YB","BF","1","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BFq4",2014-01-29,2014-01-30,"YB","BF","4","Mt","Mytilus_trossulus","Type 15",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BFq9",2014-01-29,2014-01-30,"YB","BF","9","Mt","Mytilus_trossulus","Type 15",21,0.0875,240,NA,"Julia Bingham","Finished","Full","Full","8%","80% mussel and barnacle coverage from previous surveys gone - patch is at least 70% bare rock"
+"2014-01-30_YB-BFq1",2014-01-29,2014-01-30,"YB","BF","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BFq4",2014-01-29,2014-01-30,"YB","BF","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BFq9",2014-01-29,2014-01-30,"YB","BF","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%","80% mussel and barnacle coverage from previous surveys gone - patch is at least 70% bare rock"
+"2014-01-30_YB-BFq1",2014-01-29,2014-01-30,"YB","BF","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BFq4",2014-01-29,2014-01-30,"YB","BF","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BFq9",2014-01-29,2014-01-30,"YB","BF","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%","80% mussel and barnacle coverage from previous surveys gone - patch is at least 70% bare rock"
+"2014-01-30_YB-BFq1",2014-01-29,2014-01-30,"YB","BF","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BFq4",2014-01-29,2014-01-30,"YB","BF","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BFq9",2014-01-29,2014-01-30,"YB","BF","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%","80% mussel and barnacle coverage from previous surveys gone - patch is at least 70% bare rock"
+"2014-01-30_YB-BFq1",2014-01-29,2014-01-30,"YB","BF","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BFq4",2014-01-29,2014-01-30,"YB","BF","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BFq9",2014-01-29,2014-01-30,"YB","BF","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%","80% mussel and barnacle coverage from previous surveys gone - patch is at least 70% bare rock"
+"2014-01-30_YB-BFq1",2014-01-29,2014-01-30,"YB","BF","1","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BFq4",2014-01-29,2014-01-30,"YB","BF","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BFq9",2014-01-29,2014-01-30,"YB","BF","9","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%","80% mussel and barnacle coverage from previous surveys gone - patch is at least 70% bare rock"
+"2014-01-30_YB-BFq1",2014-01-29,2014-01-30,"YB","BF","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BFq4",2014-01-29,2014-01-30,"YB","BF","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BFq9",2014-01-29,2014-01-30,"YB","BF","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%","80% mussel and barnacle coverage from previous surveys gone - patch is at least 70% bare rock"
+"2014-01-30_YB-BFq1",2014-01-29,2014-01-30,"YB","BF","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BFq4",2014-01-29,2014-01-30,"YB","BF","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BFq9",2014-01-29,2014-01-30,"YB","BF","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%","80% mussel and barnacle coverage from previous surveys gone - patch is at least 70% bare rock"
+"2014-01-30_YB-BFq1",2014-01-29,2014-01-30,"YB","BF","1","Pp","Pollicipes_polymerus","Type 11",26,0.0875,297.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BFq4",2014-01-29,2014-01-30,"YB","BF","4","Pp","Pollicipes_polymerus","Type 11",27,0.0875,308.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BFq9",2014-01-29,2014-01-30,"YB","BF","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%","80% mussel and barnacle coverage from previous surveys gone - patch is at least 70% bare rock"
+"2014-01-30_YB-BFq1",2014-01-29,2014-01-30,"YB","BF","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BFq4",2014-01-29,2014-01-30,"YB","BF","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BFq9",2014-01-29,2014-01-30,"YB","BF","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%","80% mussel and barnacle coverage from previous surveys gone - patch is at least 70% bare rock"
+"2014-01-30_YB-BFq1",2014-01-29,2014-01-30,"YB","BF","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BFq4",2014-01-29,2014-01-30,"YB","BF","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BFq9",2014-01-29,2014-01-30,"YB","BF","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%","80% mussel and barnacle coverage from previous surveys gone - patch is at least 70% bare rock"
+"2014-01-30_YB-BFq1",2014-01-29,2014-01-30,"YB","BF","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BFq4",2014-01-29,2014-01-30,"YB","BF","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-30_YB-BFq9",2014-01-29,2014-01-30,"YB","BF","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%","80% mussel and barnacle coverage from previous surveys gone - patch is at least 70% bare rock"
+"2014-01-29_YB-Cq2",2014-01-29,2014-01-29,"YB","C","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-01-29_YB-Cq4",2014-01-29,2014-01-29,"YB","C","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-01-29_YB-Cq6",2014-01-29,2014-01-29,"YB","C","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-01-29_YB-Cq2",2014-01-29,2014-01-29,"YB","C","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-01-29_YB-Cq4",2014-01-29,2014-01-29,"YB","C","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-01-29_YB-Cq6",2014-01-29,2014-01-29,"YB","C","6","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-01-29_YB-Cq2",2014-01-29,2014-01-29,"YB","C","2","Bg","Balanus_glandula","Type 1",737,0.015625,47168,"c","Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-01-29_YB-Cq4",2014-01-29,2014-01-29,"YB","C","4","Bg","Balanus_glandula","Type 1",449,0.015625,28736,"c","Beatriz Vaca","Finished","Full","Cropped","5%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-01-29_YB-Cq6",2014-01-29,2014-01-29,"YB","C","6","Bg","Balanus_glandula","Type 1",595,0.015625,38080,"c","Beatriz Vaca","Finished","Full","Cropped","10%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-01-29_YB-Cq2",2014-01-29,2014-01-29,"YB","C","2","BgD","Balanus_glandula_(dead)","Type 2",18,0.015625,1152,"c","Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-01-29_YB-Cq4",2014-01-29,2014-01-29,"YB","C","4","BgD","Balanus_glandula_(dead)","Type 2",10,0.015625,640,"c","Beatriz Vaca","Finished","Full","Cropped","5%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-01-29_YB-Cq6",2014-01-29,2014-01-29,"YB","C","6","BgD","Balanus_glandula_(dead)","Type 2",7,0.015625,448,"c","Beatriz Vaca","Finished","Full","Cropped","10%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-01-29_YB-Cq2",2014-01-29,2014-01-29,"YB","C","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-01-29_YB-Cq4",2014-01-29,2014-01-29,"YB","C","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-01-29_YB-Cq6",2014-01-29,2014-01-29,"YB","C","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-01-29_YB-Cq2",2014-01-29,2014-01-29,"YB","C","2","Cth","Chthamalus_dalli","Type 3",61,0.015625,3904,"c","Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-01-29_YB-Cq4",2014-01-29,2014-01-29,"YB","C","4","Cth","Chthamalus_dalli","Type 3",128,0.015625,8192,"c","Beatriz Vaca","Finished","Full","Cropped","5%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-01-29_YB-Cq6",2014-01-29,2014-01-29,"YB","C","6","Cth","Chthamalus_dalli","Type 3",34,0.015625,2176,"c","Beatriz Vaca","Finished","Full","Cropped","10%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-01-29_YB-Cq2",2014-01-29,2014-01-29,"YB","C","2","CthD","Chthamalus_dalli (dead)","Type 4",1,0.015625,64,"c","Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-01-29_YB-Cq4",2014-01-29,2014-01-29,"YB","C","4","CthD","Chthamalus_dalli (dead)","Type 4",1,0.015625,64,"c","Beatriz Vaca","Finished","Full","Cropped","5%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-01-29_YB-Cq6",2014-01-29,2014-01-29,"YB","C","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","10%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-01-29_YB-Cq2",2014-01-29,2014-01-29,"YB","C","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-01-29_YB-Cq4",2014-01-29,2014-01-29,"YB","C","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-01-29_YB-Cq6",2014-01-29,2014-01-29,"YB","C","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-01-29_YB-Cq2",2014-01-29,2014-01-29,"YB","C","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-01-29_YB-Cq4",2014-01-29,2014-01-29,"YB","C","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-01-29_YB-Cq6",2014-01-29,2014-01-29,"YB","C","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-01-29_YB-Cq2",2014-01-29,2014-01-29,"YB","C","2","Lim","Limpets","Type 12",44,0.0875,502.857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-01-29_YB-Cq4",2014-01-29,2014-01-29,"YB","C","4","Lim","Limpets","Type 12",100,0.0875,1142.85714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-01-29_YB-Cq6",2014-01-29,2014-01-29,"YB","C","6","Lim","Limpets","Type 12",132,0.0875,1508.57142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-01-29_YB-Cq2",2014-01-29,2014-01-29,"YB","C","2","Ls","Littorina_sitkana","Type 13",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-01-29_YB-Cq4",2014-01-29,2014-01-29,"YB","C","4","Ls","Littorina_sitkana","Type 13",23,0.0875,262.857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-01-29_YB-Cq6",2014-01-29,2014-01-29,"YB","C","6","Ls","Littorina_sitkana","Type 13",13,0.0875,148.571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-01-29_YB-Cq2",2014-01-29,2014-01-29,"YB","C","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-01-29_YB-Cq4",2014-01-29,2014-01-29,"YB","C","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-01-29_YB-Cq6",2014-01-29,2014-01-29,"YB","C","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-01-29_YB-Cq2",2014-01-29,2014-01-29,"YB","C","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-01-29_YB-Cq4",2014-01-29,2014-01-29,"YB","C","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-01-29_YB-Cq6",2014-01-29,2014-01-29,"YB","C","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-01-29_YB-Cq2",2014-01-29,2014-01-29,"YB","C","2","Myt","Mytilus_spp","Type 7",524,0.0875,5988.57142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-01-29_YB-Cq4",2014-01-29,2014-01-29,"YB","C","4","Myt","Mytilus_spp","Type 7",437,0.0875,4994.28571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-01-29_YB-Cq6",2014-01-29,2014-01-29,"YB","C","6","Myt","Mytilus_spp","Type 7",348,0.0875,3977.14285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-01-29_YB-Cq2",2014-01-29,2014-01-29,"YB","C","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-01-29_YB-Cq4",2014-01-29,2014-01-29,"YB","C","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-01-29_YB-Cq6",2014-01-29,2014-01-29,"YB","C","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-01-29_YB-Cq2",2014-01-29,2014-01-29,"YB","C","2","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-01-29_YB-Cq4",2014-01-29,2014-01-29,"YB","C","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-01-29_YB-Cq6",2014-01-29,2014-01-29,"YB","C","6","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-01-29_YB-Cq2",2014-01-29,2014-01-29,"YB","C","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-01-29_YB-Cq4",2014-01-29,2014-01-29,"YB","C","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-01-29_YB-Cq6",2014-01-29,2014-01-29,"YB","C","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-01-29_YB-Cq2",2014-01-29,2014-01-29,"YB","C","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-01-29_YB-Cq4",2014-01-29,2014-01-29,"YB","C","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-01-29_YB-Cq6",2014-01-29,2014-01-29,"YB","C","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-01-29_YB-Cq2",2014-01-29,2014-01-29,"YB","C","2","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-01-29_YB-Cq4",2014-01-29,2014-01-29,"YB","C","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-01-29_YB-Cq6",2014-01-29,2014-01-29,"YB","C","6","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-01-29_YB-Cq2",2014-01-29,2014-01-29,"YB","C","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-01-29_YB-Cq4",2014-01-29,2014-01-29,"YB","C","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-01-29_YB-Cq6",2014-01-29,2014-01-29,"YB","C","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-01-29_YB-Cq2",2014-01-29,2014-01-29,"YB","C","2","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-01-29_YB-Cq4",2014-01-29,2014-01-29,"YB","C","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-01-29_YB-Cq6",2014-01-29,2014-01-29,"YB","C","6","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-01-29_YB-Cq2",2014-01-29,2014-01-29,"YB","C","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-01-29_YB-Cq4",2014-01-29,2014-01-29,"YB","C","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-01-29_YB-Cq6",2014-01-29,2014-01-29,"YB","C","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-01-29_YB-Cq2",2014-01-29,2014-01-29,"YB","C","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-01-29_YB-Cq4",2014-01-29,2014-01-29,"YB","C","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-01-29_YB-Cq6",2014-01-29,2014-01-29,"YB","C","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-01-29_YB-Cq2",2014-01-29,2014-01-29,"YB","C","2","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-01-29_YB-Cq4",2014-01-29,2014-01-29,"YB","C","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-01-29_YB-Cq6",2014-01-29,2014-01-29,"YB","C","6","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-01-29_YB-Cq2",2014-01-29,2014-01-29,"YB","C","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-01-29_YB-Cq4",2014-01-29,2014-01-29,"YB","C","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-01-29_YB-Cq6",2014-01-29,2014-01-29,"YB","C","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-01-29_YB-Cq2",2014-01-29,2014-01-29,"YB","C","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-01-29_YB-Cq4",2014-01-29,2014-01-29,"YB","C","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-01-29_YB-Cq6",2014-01-29,2014-01-29,"YB","C","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-01-29_YB-Cq2",2014-01-29,2014-01-29,"YB","C","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-01-29_YB-Cq4",2014-01-29,2014-01-29,"YB","C","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-01-29_YB-Cq6",2014-01-29,2014-01-29,"YB","C","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-01-29_YB-Dq3",2014-01-29,2014-01-29,"YB","D","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Algae is a thin film."
+"2014-01-29_YB-Dq4",2014-01-29,2014-01-29,"YB","D","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts may be low due to glare."
+"2014-01-29_YB-Dq5",2014-01-29,2014-01-29,"YB","D","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-29_YB-Dq3",2014-01-29,2014-01-29,"YB","D","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Algae is a thin film."
+"2014-01-29_YB-Dq4",2014-01-29,2014-01-29,"YB","D","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts may be low due to glare."
+"2014-01-29_YB-Dq5",2014-01-29,2014-01-29,"YB","D","5","Ae","Anemones","Type 14",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-29_YB-Dq3",2014-01-29,2014-01-29,"YB","D","3","Bg","Balanus_glandula","Type 1",602,0.015625,38528,"c","Beatriz Vaca","Finished","Full","Cropped","10%","Algae is a thin film."
+"2014-01-29_YB-Dq4",2014-01-29,2014-01-29,"YB","D","4","Bg","Balanus_glandula","Type 1",2208,0.0875,25234.2857142857,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts may be low due to glare."
+"2014-01-29_YB-Dq5",2014-01-29,2014-01-29,"YB","D","5","Bg","Balanus_glandula","Type 1",2533,0.0875,28948.5714285714,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-29_YB-Dq3",2014-01-29,2014-01-29,"YB","D","3","BgD","Balanus_glandula_(dead)","Type 2",4,0.015625,256,"c","Beatriz Vaca","Finished","Full","Cropped","10%","Algae is a thin film."
+"2014-01-29_YB-Dq4",2014-01-29,2014-01-29,"YB","D","4","BgD","Balanus_glandula_(dead)","Type 2",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts may be low due to glare."
+"2014-01-29_YB-Dq5",2014-01-29,2014-01-29,"YB","D","5","BgD","Balanus_glandula_(dead)","Type 2",21,0.0875,240,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-29_YB-Dq3",2014-01-29,2014-01-29,"YB","D","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Algae is a thin film."
+"2014-01-29_YB-Dq4",2014-01-29,2014-01-29,"YB","D","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts may be low due to glare."
+"2014-01-29_YB-Dq5",2014-01-29,2014-01-29,"YB","D","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-29_YB-Dq3",2014-01-29,2014-01-29,"YB","D","3","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","10%","Algae is a thin film."
+"2014-01-29_YB-Dq4",2014-01-29,2014-01-29,"YB","D","4","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts may be low due to glare."
+"2014-01-29_YB-Dq5",2014-01-29,2014-01-29,"YB","D","5","Cth","Chthamalus_dalli","Type 3",9,0.0875,102.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-29_YB-Dq3",2014-01-29,2014-01-29,"YB","D","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","10%","Algae is a thin film."
+"2014-01-29_YB-Dq4",2014-01-29,2014-01-29,"YB","D","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts may be low due to glare."
+"2014-01-29_YB-Dq5",2014-01-29,2014-01-29,"YB","D","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-29_YB-Dq3",2014-01-29,2014-01-29,"YB","D","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Algae is a thin film."
+"2014-01-29_YB-Dq4",2014-01-29,2014-01-29,"YB","D","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts may be low due to glare."
+"2014-01-29_YB-Dq5",2014-01-29,2014-01-29,"YB","D","5","Emp","Emplectonema worm","Type 23",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-29_YB-Dq3",2014-01-29,2014-01-29,"YB","D","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Algae is a thin film."
+"2014-01-29_YB-Dq4",2014-01-29,2014-01-29,"YB","D","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts may be low due to glare."
+"2014-01-29_YB-Dq5",2014-01-29,2014-01-29,"YB","D","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-29_YB-Dq3",2014-01-29,2014-01-29,"YB","D","3","Lim","Limpets","Type 12",87,0.0875,994.285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Algae is a thin film."
+"2014-01-29_YB-Dq4",2014-01-29,2014-01-29,"YB","D","4","Lim","Limpets","Type 12",9,0.0875,102.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts may be low due to glare."
+"2014-01-29_YB-Dq5",2014-01-29,2014-01-29,"YB","D","5","Lim","Limpets","Type 12",224,0.0875,2560,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-29_YB-Dq3",2014-01-29,2014-01-29,"YB","D","3","Ls","Littorina_sitkana","Type 13",424,0.0875,4845.71428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Algae is a thin film."
+"2014-01-29_YB-Dq4",2014-01-29,2014-01-29,"YB","D","4","Ls","Littorina_sitkana","Type 13",55,0.0875,628.571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts may be low due to glare."
+"2014-01-29_YB-Dq5",2014-01-29,2014-01-29,"YB","D","5","Ls","Littorina_sitkana","Type 13",507,0.0875,5794.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-29_YB-Dq3",2014-01-29,2014-01-29,"YB","D","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Algae is a thin film."
+"2014-01-29_YB-Dq4",2014-01-29,2014-01-29,"YB","D","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts may be low due to glare."
+"2014-01-29_YB-Dq5",2014-01-29,2014-01-29,"YB","D","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-29_YB-Dq3",2014-01-29,2014-01-29,"YB","D","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Algae is a thin film."
+"2014-01-29_YB-Dq4",2014-01-29,2014-01-29,"YB","D","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts may be low due to glare."
+"2014-01-29_YB-Dq5",2014-01-29,2014-01-29,"YB","D","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-29_YB-Dq3",2014-01-29,2014-01-29,"YB","D","3","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Algae is a thin film."
+"2014-01-29_YB-Dq4",2014-01-29,2014-01-29,"YB","D","4","Myt","Mytilus_spp","Type 7",150,0.0875,1714.28571428571,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts may be low due to glare."
+"2014-01-29_YB-Dq5",2014-01-29,2014-01-29,"YB","D","5","Myt","Mytilus_spp","Type 7",186,0.0875,2125.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-29_YB-Dq3",2014-01-29,2014-01-29,"YB","D","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Algae is a thin film."
+"2014-01-29_YB-Dq4",2014-01-29,2014-01-29,"YB","D","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts may be low due to glare."
+"2014-01-29_YB-Dq5",2014-01-29,2014-01-29,"YB","D","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-29_YB-Dq3",2014-01-29,2014-01-29,"YB","D","3","Mt","Mytilus_trossulus","Type 15",407,0.0875,4651.42857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Algae is a thin film."
+"2014-01-29_YB-Dq4",2014-01-29,2014-01-29,"YB","D","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts may be low due to glare."
+"2014-01-29_YB-Dq5",2014-01-29,2014-01-29,"YB","D","5","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-29_YB-Dq3",2014-01-29,2014-01-29,"YB","D","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Algae is a thin film."
+"2014-01-29_YB-Dq4",2014-01-29,2014-01-29,"YB","D","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts may be low due to glare."
+"2014-01-29_YB-Dq5",2014-01-29,2014-01-29,"YB","D","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-29_YB-Dq3",2014-01-29,2014-01-29,"YB","D","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Algae is a thin film."
+"2014-01-29_YB-Dq4",2014-01-29,2014-01-29,"YB","D","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts may be low due to glare."
+"2014-01-29_YB-Dq5",2014-01-29,2014-01-29,"YB","D","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-29_YB-Dq3",2014-01-29,2014-01-29,"YB","D","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Algae is a thin film."
+"2014-01-29_YB-Dq4",2014-01-29,2014-01-29,"YB","D","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts may be low due to glare."
+"2014-01-29_YB-Dq5",2014-01-29,2014-01-29,"YB","D","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-29_YB-Dq3",2014-01-29,2014-01-29,"YB","D","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Algae is a thin film."
+"2014-01-29_YB-Dq4",2014-01-29,2014-01-29,"YB","D","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts may be low due to glare."
+"2014-01-29_YB-Dq5",2014-01-29,2014-01-29,"YB","D","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-29_YB-Dq3",2014-01-29,2014-01-29,"YB","D","3","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Algae is a thin film."
+"2014-01-29_YB-Dq4",2014-01-29,2014-01-29,"YB","D","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts may be low due to glare."
+"2014-01-29_YB-Dq5",2014-01-29,2014-01-29,"YB","D","5","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-29_YB-Dq3",2014-01-29,2014-01-29,"YB","D","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Algae is a thin film."
+"2014-01-29_YB-Dq4",2014-01-29,2014-01-29,"YB","D","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts may be low due to glare."
+"2014-01-29_YB-Dq5",2014-01-29,2014-01-29,"YB","D","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-29_YB-Dq3",2014-01-29,2014-01-29,"YB","D","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Algae is a thin film."
+"2014-01-29_YB-Dq4",2014-01-29,2014-01-29,"YB","D","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts may be low due to glare."
+"2014-01-29_YB-Dq5",2014-01-29,2014-01-29,"YB","D","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-29_YB-Dq3",2014-01-29,2014-01-29,"YB","D","3","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Algae is a thin film."
+"2014-01-29_YB-Dq4",2014-01-29,2014-01-29,"YB","D","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts may be low due to glare."
+"2014-01-29_YB-Dq5",2014-01-29,2014-01-29,"YB","D","5","Pp","Pollicipes_polymerus","Type 11",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-29_YB-Dq3",2014-01-29,2014-01-29,"YB","D","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Algae is a thin film."
+"2014-01-29_YB-Dq4",2014-01-29,2014-01-29,"YB","D","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts may be low due to glare."
+"2014-01-29_YB-Dq5",2014-01-29,2014-01-29,"YB","D","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-29_YB-Dq3",2014-01-29,2014-01-29,"YB","D","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Algae is a thin film."
+"2014-01-29_YB-Dq4",2014-01-29,2014-01-29,"YB","D","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts may be low due to glare."
+"2014-01-29_YB-Dq5",2014-01-29,2014-01-29,"YB","D","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-29_YB-Dq3",2014-01-29,2014-01-29,"YB","D","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Algae is a thin film."
+"2014-01-29_YB-Dq4",2014-01-29,2014-01-29,"YB","D","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts may be low due to glare."
+"2014-01-29_YB-Dq5",2014-01-29,2014-01-29,"YB","D","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-01-29_YB-Eq3",2014-01-29,2014-01-29,"YB","E","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","counts may be low due to glare"
+"2014-01-29_YB-Eq4",2014-01-29,2014-01-29,"YB","E","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-01-29_YB-Eq8",2014-01-29,2014-01-29,"YB","E","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","counts may be low due to glare"
+"2014-01-29_YB-Eq3",2014-01-29,2014-01-29,"YB","E","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","counts may be low due to glare"
+"2014-01-29_YB-Eq4",2014-01-29,2014-01-29,"YB","E","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-01-29_YB-Eq8",2014-01-29,2014-01-29,"YB","E","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","counts may be low due to glare"
+"2014-01-29_YB-Eq3",2014-01-29,2014-01-29,"YB","E","3","Bg","Balanus_glandula","Type 1",464,0.015625,29696,"c","Stephanie Merhoff","Finished","Full","Cropped","30%","counts may be low due to glare"
+"2014-01-29_YB-Eq4",2014-01-29,2014-01-29,"YB","E","4","Bg","Balanus_glandula","Type 1",722,0.015625,46208,"c","Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-01-29_YB-Eq8",2014-01-29,2014-01-29,"YB","E","8","Bg","Balanus_glandula","Type 1",518,0.015625,33152,"c","Stephanie Merhoff","Finished","Full","Cropped","15%","counts may be low due to glare"
+"2014-01-29_YB-Eq3",2014-01-29,2014-01-29,"YB","E","3","BgD","Balanus_glandula_(dead)","Type 2",11,0.015625,704,"c","Stephanie Merhoff","Finished","Full","Cropped","30%","counts may be low due to glare"
+"2014-01-29_YB-Eq4",2014-01-29,2014-01-29,"YB","E","4","BgD","Balanus_glandula_(dead)","Type 2",4,0.015625,256,"c","Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-01-29_YB-Eq8",2014-01-29,2014-01-29,"YB","E","8","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","15%","counts may be low due to glare"
+"2014-01-29_YB-Eq3",2014-01-29,2014-01-29,"YB","E","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","counts may be low due to glare"
+"2014-01-29_YB-Eq4",2014-01-29,2014-01-29,"YB","E","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-01-29_YB-Eq8",2014-01-29,2014-01-29,"YB","E","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","counts may be low due to glare"
+"2014-01-29_YB-Eq3",2014-01-29,2014-01-29,"YB","E","3","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","30%","counts may be low due to glare"
+"2014-01-29_YB-Eq4",2014-01-29,2014-01-29,"YB","E","4","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-01-29_YB-Eq8",2014-01-29,2014-01-29,"YB","E","8","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","15%","counts may be low due to glare"
+"2014-01-29_YB-Eq3",2014-01-29,2014-01-29,"YB","E","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","30%","counts may be low due to glare"
+"2014-01-29_YB-Eq4",2014-01-29,2014-01-29,"YB","E","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-01-29_YB-Eq8",2014-01-29,2014-01-29,"YB","E","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","15%","counts may be low due to glare"
+"2014-01-29_YB-Eq3",2014-01-29,2014-01-29,"YB","E","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","counts may be low due to glare"
+"2014-01-29_YB-Eq4",2014-01-29,2014-01-29,"YB","E","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-01-29_YB-Eq8",2014-01-29,2014-01-29,"YB","E","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","counts may be low due to glare"
+"2014-01-29_YB-Eq3",2014-01-29,2014-01-29,"YB","E","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","counts may be low due to glare"
+"2014-01-29_YB-Eq4",2014-01-29,2014-01-29,"YB","E","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-01-29_YB-Eq8",2014-01-29,2014-01-29,"YB","E","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","counts may be low due to glare"
+"2014-01-29_YB-Eq3",2014-01-29,2014-01-29,"YB","E","3","Lim","Limpets","Type 12",5,0.0875,57.1428571428571,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","counts may be low due to glare"
+"2014-01-29_YB-Eq4",2014-01-29,2014-01-29,"YB","E","4","Lim","Limpets","Type 12",6,0.0875,68.5714285714286,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-01-29_YB-Eq8",2014-01-29,2014-01-29,"YB","E","8","Lim","Limpets","Type 12",8,0.0875,91.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","counts may be low due to glare"
+"2014-01-29_YB-Eq3",2014-01-29,2014-01-29,"YB","E","3","Ls","Littorina_sitkana","Type 13",18,0.0875,205.714285714286,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","counts may be low due to glare"
+"2014-01-29_YB-Eq4",2014-01-29,2014-01-29,"YB","E","4","Ls","Littorina_sitkana","Type 13",26,0.0875,297.142857142857,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-01-29_YB-Eq8",2014-01-29,2014-01-29,"YB","E","8","Ls","Littorina_sitkana","Type 13",43,0.0875,491.428571428571,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","counts may be low due to glare"
+"2014-01-29_YB-Eq3",2014-01-29,2014-01-29,"YB","E","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","counts may be low due to glare"
+"2014-01-29_YB-Eq4",2014-01-29,2014-01-29,"YB","E","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-01-29_YB-Eq8",2014-01-29,2014-01-29,"YB","E","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","counts may be low due to glare"
+"2014-01-29_YB-Eq3",2014-01-29,2014-01-29,"YB","E","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","counts may be low due to glare"
+"2014-01-29_YB-Eq4",2014-01-29,2014-01-29,"YB","E","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-01-29_YB-Eq8",2014-01-29,2014-01-29,"YB","E","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","counts may be low due to glare"
+"2014-01-29_YB-Eq3",2014-01-29,2014-01-29,"YB","E","3","Myt","Mytilus_spp","Type 7",238,0.0875,2720,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","counts may be low due to glare"
+"2014-01-29_YB-Eq4",2014-01-29,2014-01-29,"YB","E","4","Myt","Mytilus_spp","Type 7",370,0.0875,4228.57142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-01-29_YB-Eq8",2014-01-29,2014-01-29,"YB","E","8","Myt","Mytilus_spp","Type 7",480,0.0875,5485.71428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","counts may be low due to glare"
+"2014-01-29_YB-Eq3",2014-01-29,2014-01-29,"YB","E","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","counts may be low due to glare"
+"2014-01-29_YB-Eq4",2014-01-29,2014-01-29,"YB","E","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-01-29_YB-Eq8",2014-01-29,2014-01-29,"YB","E","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","counts may be low due to glare"
+"2014-01-29_YB-Eq3",2014-01-29,2014-01-29,"YB","E","3","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","counts may be low due to glare"
+"2014-01-29_YB-Eq4",2014-01-29,2014-01-29,"YB","E","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-01-29_YB-Eq8",2014-01-29,2014-01-29,"YB","E","8","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","counts may be low due to glare"
+"2014-01-29_YB-Eq3",2014-01-29,2014-01-29,"YB","E","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","counts may be low due to glare"
+"2014-01-29_YB-Eq4",2014-01-29,2014-01-29,"YB","E","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-01-29_YB-Eq8",2014-01-29,2014-01-29,"YB","E","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","counts may be low due to glare"
+"2014-01-29_YB-Eq3",2014-01-29,2014-01-29,"YB","E","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","counts may be low due to glare"
+"2014-01-29_YB-Eq4",2014-01-29,2014-01-29,"YB","E","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-01-29_YB-Eq8",2014-01-29,2014-01-29,"YB","E","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","counts may be low due to glare"
+"2014-01-29_YB-Eq3",2014-01-29,2014-01-29,"YB","E","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","counts may be low due to glare"
+"2014-01-29_YB-Eq4",2014-01-29,2014-01-29,"YB","E","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-01-29_YB-Eq8",2014-01-29,2014-01-29,"YB","E","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","counts may be low due to glare"
+"2014-01-29_YB-Eq3",2014-01-29,2014-01-29,"YB","E","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","counts may be low due to glare"
+"2014-01-29_YB-Eq4",2014-01-29,2014-01-29,"YB","E","4","Negg","Nucella_eggs","Type 26",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-01-29_YB-Eq8",2014-01-29,2014-01-29,"YB","E","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","counts may be low due to glare"
+"2014-01-29_YB-Eq3",2014-01-29,2014-01-29,"YB","E","3","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","counts may be low due to glare"
+"2014-01-29_YB-Eq4",2014-01-29,2014-01-29,"YB","E","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-01-29_YB-Eq8",2014-01-29,2014-01-29,"YB","E","8","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","counts may be low due to glare"
+"2014-01-29_YB-Eq3",2014-01-29,2014-01-29,"YB","E","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","counts may be low due to glare"
+"2014-01-29_YB-Eq4",2014-01-29,2014-01-29,"YB","E","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-01-29_YB-Eq8",2014-01-29,2014-01-29,"YB","E","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","counts may be low due to glare"
+"2014-01-29_YB-Eq3",2014-01-29,2014-01-29,"YB","E","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","counts may be low due to glare"
+"2014-01-29_YB-Eq4",2014-01-29,2014-01-29,"YB","E","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-01-29_YB-Eq8",2014-01-29,2014-01-29,"YB","E","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","counts may be low due to glare"
+"2014-01-29_YB-Eq3",2014-01-29,2014-01-29,"YB","E","3","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","counts may be low due to glare"
+"2014-01-29_YB-Eq4",2014-01-29,2014-01-29,"YB","E","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-01-29_YB-Eq8",2014-01-29,2014-01-29,"YB","E","8","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","counts may be low due to glare"
+"2014-01-29_YB-Eq3",2014-01-29,2014-01-29,"YB","E","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","counts may be low due to glare"
+"2014-01-29_YB-Eq4",2014-01-29,2014-01-29,"YB","E","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-01-29_YB-Eq8",2014-01-29,2014-01-29,"YB","E","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","counts may be low due to glare"
+"2014-01-29_YB-Eq3",2014-01-29,2014-01-29,"YB","E","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","counts may be low due to glare"
+"2014-01-29_YB-Eq4",2014-01-29,2014-01-29,"YB","E","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-01-29_YB-Eq8",2014-01-29,2014-01-29,"YB","E","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","counts may be low due to glare"
+"2014-01-29_YB-Eq3",2014-01-29,2014-01-29,"YB","E","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","30%","counts may be low due to glare"
+"2014-01-29_YB-Eq4",2014-01-29,2014-01-29,"YB","E","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-01-29_YB-Eq8",2014-01-29,2014-01-29,"YB","E","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","counts may be low due to glare"
+"2014-01-29_YB-Fq4",2014-01-29,2014-01-29,"YB","F","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","algae is a thin layer on top of barnacle sheet"
+"2014-01-29_YB-Fq5",2014-01-29,2014-01-29,"YB","F","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","algae is a thin layer on top of barnacle sheet"
+"2014-01-29_YB-Fq6",2014-01-29,2014-01-29,"YB","F","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","algae is a thin layer on top of barnacle sheet"
+"2014-01-29_YB-Fq4",2014-01-29,2014-01-29,"YB","F","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","algae is a thin layer on top of barnacle sheet"
+"2014-01-29_YB-Fq5",2014-01-29,2014-01-29,"YB","F","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","algae is a thin layer on top of barnacle sheet"
+"2014-01-29_YB-Fq6",2014-01-29,2014-01-29,"YB","F","6","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","algae is a thin layer on top of barnacle sheet"
+"2014-01-29_YB-Fq4",2014-01-29,2014-01-29,"YB","F","4","Bg","Balanus_glandula","Type 1",1332,0.015625,85248,"c","Beatriz Vaca","Finished","Full","Cropped","25%","algae is a thin layer on top of barnacle sheet"
+"2014-01-29_YB-Fq5",2014-01-29,2014-01-29,"YB","F","5","Bg","Balanus_glandula","Type 1",822,0.015625,52608,"c","Beatriz Vaca","Finished","Full","Cropped","10%","algae is a thin layer on top of barnacle sheet"
+"2014-01-29_YB-Fq6",2014-01-29,2014-01-29,"YB","F","6","Bg","Balanus_glandula","Type 1",1173,0.015625,75072,"c","Beatriz Vaca","Finished","Full","Cropped","50%","algae is a thin layer on top of barnacle sheet"
+"2014-01-29_YB-Fq4",2014-01-29,2014-01-29,"YB","F","4","BgD","Balanus_glandula_(dead)","Type 2",35,0.015625,2240,"c","Beatriz Vaca","Finished","Full","Cropped","25%","algae is a thin layer on top of barnacle sheet"
+"2014-01-29_YB-Fq5",2014-01-29,2014-01-29,"YB","F","5","BgD","Balanus_glandula_(dead)","Type 2",8,0.015625,512,"c","Beatriz Vaca","Finished","Full","Cropped","10%","algae is a thin layer on top of barnacle sheet"
+"2014-01-29_YB-Fq6",2014-01-29,2014-01-29,"YB","F","6","BgD","Balanus_glandula_(dead)","Type 2",3,0.015625,192,"c","Beatriz Vaca","Finished","Full","Cropped","50%","algae is a thin layer on top of barnacle sheet"
+"2014-01-29_YB-Fq4",2014-01-29,2014-01-29,"YB","F","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","algae is a thin layer on top of barnacle sheet"
+"2014-01-29_YB-Fq5",2014-01-29,2014-01-29,"YB","F","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","algae is a thin layer on top of barnacle sheet"
+"2014-01-29_YB-Fq6",2014-01-29,2014-01-29,"YB","F","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","algae is a thin layer on top of barnacle sheet"
+"2014-01-29_YB-Fq4",2014-01-29,2014-01-29,"YB","F","4","Cth","Chthamalus_dalli","Type 3",8,0.015625,512,"c","Beatriz Vaca","Finished","Full","Cropped","25%","algae is a thin layer on top of barnacle sheet"
+"2014-01-29_YB-Fq5",2014-01-29,2014-01-29,"YB","F","5","Cth","Chthamalus_dalli","Type 3",2,0.015625,128,"c","Beatriz Vaca","Finished","Full","Cropped","10%","algae is a thin layer on top of barnacle sheet"
+"2014-01-29_YB-Fq6",2014-01-29,2014-01-29,"YB","F","6","Cth","Chthamalus_dalli","Type 3",3,0.015625,192,"c","Beatriz Vaca","Finished","Full","Cropped","50%","algae is a thin layer on top of barnacle sheet"
+"2014-01-29_YB-Fq4",2014-01-29,2014-01-29,"YB","F","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","25%","algae is a thin layer on top of barnacle sheet"
+"2014-01-29_YB-Fq5",2014-01-29,2014-01-29,"YB","F","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","10%","algae is a thin layer on top of barnacle sheet"
+"2014-01-29_YB-Fq6",2014-01-29,2014-01-29,"YB","F","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","50%","algae is a thin layer on top of barnacle sheet"
+"2014-01-29_YB-Fq4",2014-01-29,2014-01-29,"YB","F","4","Emp","Emplectonema worm","Type 23",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","algae is a thin layer on top of barnacle sheet"
+"2014-01-29_YB-Fq5",2014-01-29,2014-01-29,"YB","F","5","Emp","Emplectonema worm","Type 23",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","algae is a thin layer on top of barnacle sheet"
+"2014-01-29_YB-Fq6",2014-01-29,2014-01-29,"YB","F","6","Emp","Emplectonema worm","Type 23",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","algae is a thin layer on top of barnacle sheet"
+"2014-01-29_YB-Fq4",2014-01-29,2014-01-29,"YB","F","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","algae is a thin layer on top of barnacle sheet"
+"2014-01-29_YB-Fq5",2014-01-29,2014-01-29,"YB","F","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","algae is a thin layer on top of barnacle sheet"
+"2014-01-29_YB-Fq6",2014-01-29,2014-01-29,"YB","F","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","algae is a thin layer on top of barnacle sheet"
+"2014-01-29_YB-Fq4",2014-01-29,2014-01-29,"YB","F","4","Lim","Limpets","Type 12",488,0.0875,5577.14285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","algae is a thin layer on top of barnacle sheet"
+"2014-01-29_YB-Fq5",2014-01-29,2014-01-29,"YB","F","5","Lim","Limpets","Type 12",1036,0.0875,11840,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","algae is a thin layer on top of barnacle sheet"
+"2014-01-29_YB-Fq6",2014-01-29,2014-01-29,"YB","F","6","Lim","Limpets","Type 12",813,0.0875,9291.42857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","algae is a thin layer on top of barnacle sheet"
+"2014-01-29_YB-Fq4",2014-01-29,2014-01-29,"YB","F","4","Ls","Littorina_sitkana","Type 13",388,0.0875,4434.28571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","algae is a thin layer on top of barnacle sheet"
+"2014-01-29_YB-Fq5",2014-01-29,2014-01-29,"YB","F","5","Ls","Littorina_sitkana","Type 13",462,0.0875,5280,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","algae is a thin layer on top of barnacle sheet"
+"2014-01-29_YB-Fq6",2014-01-29,2014-01-29,"YB","F","6","Ls","Littorina_sitkana","Type 13",295,0.0875,3371.42857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","algae is a thin layer on top of barnacle sheet"
+"2014-01-29_YB-Fq4",2014-01-29,2014-01-29,"YB","F","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","algae is a thin layer on top of barnacle sheet"
+"2014-01-29_YB-Fq5",2014-01-29,2014-01-29,"YB","F","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","algae is a thin layer on top of barnacle sheet"
+"2014-01-29_YB-Fq6",2014-01-29,2014-01-29,"YB","F","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","algae is a thin layer on top of barnacle sheet"
+"2014-01-29_YB-Fq4",2014-01-29,2014-01-29,"YB","F","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","algae is a thin layer on top of barnacle sheet"
+"2014-01-29_YB-Fq5",2014-01-29,2014-01-29,"YB","F","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","algae is a thin layer on top of barnacle sheet"
+"2014-01-29_YB-Fq6",2014-01-29,2014-01-29,"YB","F","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","algae is a thin layer on top of barnacle sheet"
+"2014-01-29_YB-Fq4",2014-01-29,2014-01-29,"YB","F","4","Myt","Mytilus_spp","Type 7",623,0.0875,7120,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","algae is a thin layer on top of barnacle sheet"
+"2014-01-29_YB-Fq5",2014-01-29,2014-01-29,"YB","F","5","Myt","Mytilus_spp","Type 7",874,0.0875,9988.57142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","algae is a thin layer on top of barnacle sheet"
+"2014-01-29_YB-Fq6",2014-01-29,2014-01-29,"YB","F","6","Myt","Mytilus_spp","Type 7",359,0.0875,4102.85714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","algae is a thin layer on top of barnacle sheet"
+"2014-01-29_YB-Fq4",2014-01-29,2014-01-29,"YB","F","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","algae is a thin layer on top of barnacle sheet"
+"2014-01-29_YB-Fq5",2014-01-29,2014-01-29,"YB","F","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","algae is a thin layer on top of barnacle sheet"
+"2014-01-29_YB-Fq6",2014-01-29,2014-01-29,"YB","F","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","algae is a thin layer on top of barnacle sheet"
+"2014-01-29_YB-Fq4",2014-01-29,2014-01-29,"YB","F","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","algae is a thin layer on top of barnacle sheet"
+"2014-01-29_YB-Fq5",2014-01-29,2014-01-29,"YB","F","5","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","algae is a thin layer on top of barnacle sheet"
+"2014-01-29_YB-Fq6",2014-01-29,2014-01-29,"YB","F","6","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","algae is a thin layer on top of barnacle sheet"
+"2014-01-29_YB-Fq4",2014-01-29,2014-01-29,"YB","F","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","algae is a thin layer on top of barnacle sheet"
+"2014-01-29_YB-Fq5",2014-01-29,2014-01-29,"YB","F","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","algae is a thin layer on top of barnacle sheet"
+"2014-01-29_YB-Fq6",2014-01-29,2014-01-29,"YB","F","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","algae is a thin layer on top of barnacle sheet"
+"2014-01-29_YB-Fq4",2014-01-29,2014-01-29,"YB","F","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","algae is a thin layer on top of barnacle sheet"
+"2014-01-29_YB-Fq5",2014-01-29,2014-01-29,"YB","F","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","algae is a thin layer on top of barnacle sheet"
+"2014-01-29_YB-Fq6",2014-01-29,2014-01-29,"YB","F","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","algae is a thin layer on top of barnacle sheet"
+"2014-01-29_YB-Fq4",2014-01-29,2014-01-29,"YB","F","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","algae is a thin layer on top of barnacle sheet"
+"2014-01-29_YB-Fq5",2014-01-29,2014-01-29,"YB","F","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","algae is a thin layer on top of barnacle sheet"
+"2014-01-29_YB-Fq6",2014-01-29,2014-01-29,"YB","F","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","algae is a thin layer on top of barnacle sheet"
+"2014-01-29_YB-Fq4",2014-01-29,2014-01-29,"YB","F","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","algae is a thin layer on top of barnacle sheet"
+"2014-01-29_YB-Fq5",2014-01-29,2014-01-29,"YB","F","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","algae is a thin layer on top of barnacle sheet"
+"2014-01-29_YB-Fq6",2014-01-29,2014-01-29,"YB","F","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","algae is a thin layer on top of barnacle sheet"
+"2014-01-29_YB-Fq4",2014-01-29,2014-01-29,"YB","F","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","algae is a thin layer on top of barnacle sheet"
+"2014-01-29_YB-Fq5",2014-01-29,2014-01-29,"YB","F","5","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","algae is a thin layer on top of barnacle sheet"
+"2014-01-29_YB-Fq6",2014-01-29,2014-01-29,"YB","F","6","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","algae is a thin layer on top of barnacle sheet"
+"2014-01-29_YB-Fq4",2014-01-29,2014-01-29,"YB","F","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","algae is a thin layer on top of barnacle sheet"
+"2014-01-29_YB-Fq5",2014-01-29,2014-01-29,"YB","F","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","algae is a thin layer on top of barnacle sheet"
+"2014-01-29_YB-Fq6",2014-01-29,2014-01-29,"YB","F","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","algae is a thin layer on top of barnacle sheet"
+"2014-01-29_YB-Fq4",2014-01-29,2014-01-29,"YB","F","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","algae is a thin layer on top of barnacle sheet"
+"2014-01-29_YB-Fq5",2014-01-29,2014-01-29,"YB","F","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","algae is a thin layer on top of barnacle sheet"
+"2014-01-29_YB-Fq6",2014-01-29,2014-01-29,"YB","F","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","algae is a thin layer on top of barnacle sheet"
+"2014-01-29_YB-Fq4",2014-01-29,2014-01-29,"YB","F","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","algae is a thin layer on top of barnacle sheet"
+"2014-01-29_YB-Fq5",2014-01-29,2014-01-29,"YB","F","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","algae is a thin layer on top of barnacle sheet"
+"2014-01-29_YB-Fq6",2014-01-29,2014-01-29,"YB","F","6","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","algae is a thin layer on top of barnacle sheet"
+"2014-01-29_YB-Fq4",2014-01-29,2014-01-29,"YB","F","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","algae is a thin layer on top of barnacle sheet"
+"2014-01-29_YB-Fq5",2014-01-29,2014-01-29,"YB","F","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","algae is a thin layer on top of barnacle sheet"
+"2014-01-29_YB-Fq6",2014-01-29,2014-01-29,"YB","F","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","algae is a thin layer on top of barnacle sheet"
+"2014-01-29_YB-Fq4",2014-01-29,2014-01-29,"YB","F","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","algae is a thin layer on top of barnacle sheet"
+"2014-01-29_YB-Fq5",2014-01-29,2014-01-29,"YB","F","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","algae is a thin layer on top of barnacle sheet"
+"2014-01-29_YB-Fq6",2014-01-29,2014-01-29,"YB","F","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","algae is a thin layer on top of barnacle sheet"
+"2014-01-29_YB-Fq4",2014-01-29,2014-01-29,"YB","F","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","algae is a thin layer on top of barnacle sheet"
+"2014-01-29_YB-Fq5",2014-01-29,2014-01-29,"YB","F","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","algae is a thin layer on top of barnacle sheet"
+"2014-01-29_YB-Fq6",2014-01-29,2014-01-29,"YB","F","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","algae is a thin layer on top of barnacle sheet"
+"2014-01-29_YB-Gq3",2014-01-29,2014-01-29,"YB","G","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","All counts likely low due to blur and glare"
+"2014-01-29_YB-Gq5",2014-01-29,2014-01-29,"YB","G","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to glare."
+"2014-01-29_YB-Gq8",2014-01-29,2014-01-29,"YB","G","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2014-01-29_YB-Gq3",2014-01-29,2014-01-29,"YB","G","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","All counts likely low due to blur and glare"
+"2014-01-29_YB-Gq5",2014-01-29,2014-01-29,"YB","G","5","Ae","Anemones","Type 14",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to glare."
+"2014-01-29_YB-Gq8",2014-01-29,2014-01-29,"YB","G","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2014-01-29_YB-Gq3",2014-01-29,2014-01-29,"YB","G","3","Bg","Balanus_glandula","Type 1",520,0.0875,5942.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","35%","All counts likely low due to blur and glare"
+"2014-01-29_YB-Gq5",2014-01-29,2014-01-29,"YB","G","5","Bg","Balanus_glandula","Type 1",1952,0.0875,22308.5714285714,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to glare."
+"2014-01-29_YB-Gq8",2014-01-29,2014-01-29,"YB","G","8","Bg","Balanus_glandula","Type 1",489,0.015625,31296,"c","Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2014-01-29_YB-Gq3",2014-01-29,2014-01-29,"YB","G","3","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","All counts likely low due to blur and glare"
+"2014-01-29_YB-Gq5",2014-01-29,2014-01-29,"YB","G","5","BgD","Balanus_glandula_(dead)","Type 2",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to glare."
+"2014-01-29_YB-Gq8",2014-01-29,2014-01-29,"YB","G","8","BgD","Balanus_glandula_(dead)","Type 2",1,0.015625,64,"c","Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2014-01-29_YB-Gq3",2014-01-29,2014-01-29,"YB","G","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","All counts likely low due to blur and glare"
+"2014-01-29_YB-Gq5",2014-01-29,2014-01-29,"YB","G","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to glare."
+"2014-01-29_YB-Gq8",2014-01-29,2014-01-29,"YB","G","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2014-01-29_YB-Gq3",2014-01-29,2014-01-29,"YB","G","3","Cth","Chthamalus_dalli","Type 3",158,0.0875,1805.71428571429,NA,"Stephanie Merhoff","Finished","Full","Full","35%","All counts likely low due to blur and glare"
+"2014-01-29_YB-Gq5",2014-01-29,2014-01-29,"YB","G","5","Cth","Chthamalus_dalli","Type 3",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to glare."
+"2014-01-29_YB-Gq8",2014-01-29,2014-01-29,"YB","G","8","Cth","Chthamalus_dalli","Type 3",33,0.015625,2112,"c","Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2014-01-29_YB-Gq3",2014-01-29,2014-01-29,"YB","G","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","All counts likely low due to blur and glare"
+"2014-01-29_YB-Gq5",2014-01-29,2014-01-29,"YB","G","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to glare."
+"2014-01-29_YB-Gq8",2014-01-29,2014-01-29,"YB","G","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2014-01-29_YB-Gq3",2014-01-29,2014-01-29,"YB","G","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","All counts likely low due to blur and glare"
+"2014-01-29_YB-Gq5",2014-01-29,2014-01-29,"YB","G","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to glare."
+"2014-01-29_YB-Gq8",2014-01-29,2014-01-29,"YB","G","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2014-01-29_YB-Gq3",2014-01-29,2014-01-29,"YB","G","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","All counts likely low due to blur and glare"
+"2014-01-29_YB-Gq5",2014-01-29,2014-01-29,"YB","G","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to glare."
+"2014-01-29_YB-Gq8",2014-01-29,2014-01-29,"YB","G","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2014-01-29_YB-Gq3",2014-01-29,2014-01-29,"YB","G","3","Lim","Limpets","Type 12",15,0.0875,171.428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","35%","All counts likely low due to blur and glare"
+"2014-01-29_YB-Gq5",2014-01-29,2014-01-29,"YB","G","5","Lim","Limpets","Type 12",173,0.0875,1977.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to glare."
+"2014-01-29_YB-Gq8",2014-01-29,2014-01-29,"YB","G","8","Lim","Limpets","Type 12",22,0.0875,251.428571428571,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2014-01-29_YB-Gq3",2014-01-29,2014-01-29,"YB","G","3","Ls","Littorina_sitkana","Type 13",25,0.0875,285.714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","35%","All counts likely low due to blur and glare"
+"2014-01-29_YB-Gq5",2014-01-29,2014-01-29,"YB","G","5","Ls","Littorina_sitkana","Type 13",136,0.0875,1554.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to glare."
+"2014-01-29_YB-Gq8",2014-01-29,2014-01-29,"YB","G","8","Ls","Littorina_sitkana","Type 13",34,0.0875,388.571428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2014-01-29_YB-Gq3",2014-01-29,2014-01-29,"YB","G","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","All counts likely low due to blur and glare"
+"2014-01-29_YB-Gq5",2014-01-29,2014-01-29,"YB","G","5","Mc","Mytilus_californianus","Type 17",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to glare."
+"2014-01-29_YB-Gq8",2014-01-29,2014-01-29,"YB","G","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2014-01-29_YB-Gq3",2014-01-29,2014-01-29,"YB","G","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","All counts likely low due to blur and glare"
+"2014-01-29_YB-Gq5",2014-01-29,2014-01-29,"YB","G","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to glare."
+"2014-01-29_YB-Gq8",2014-01-29,2014-01-29,"YB","G","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2014-01-29_YB-Gq3",2014-01-29,2014-01-29,"YB","G","3","Myt","Mytilus_spp","Type 7",1600,0.0875,18285.7142857143,NA,"Stephanie Merhoff","Finished","Full","Full","35%","All counts likely low due to blur and glare"
+"2014-01-29_YB-Gq5",2014-01-29,2014-01-29,"YB","G","5","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to glare."
+"2014-01-29_YB-Gq8",2014-01-29,2014-01-29,"YB","G","8","Myt","Mytilus_spp","Type 7",1806,0.0875,20640,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2014-01-29_YB-Gq3",2014-01-29,2014-01-29,"YB","G","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","All counts likely low due to blur and glare"
+"2014-01-29_YB-Gq5",2014-01-29,2014-01-29,"YB","G","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to glare."
+"2014-01-29_YB-Gq8",2014-01-29,2014-01-29,"YB","G","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2014-01-29_YB-Gq3",2014-01-29,2014-01-29,"YB","G","3","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","All counts likely low due to blur and glare"
+"2014-01-29_YB-Gq5",2014-01-29,2014-01-29,"YB","G","5","Mt","Mytilus_trossulus","Type 15",2250,0.0875,25714.2857142857,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to glare."
+"2014-01-29_YB-Gq8",2014-01-29,2014-01-29,"YB","G","8","Mt","Mytilus_trossulus","Type 15",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2014-01-29_YB-Gq3",2014-01-29,2014-01-29,"YB","G","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","All counts likely low due to blur and glare"
+"2014-01-29_YB-Gq5",2014-01-29,2014-01-29,"YB","G","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to glare."
+"2014-01-29_YB-Gq8",2014-01-29,2014-01-29,"YB","G","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2014-01-29_YB-Gq3",2014-01-29,2014-01-29,"YB","G","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","All counts likely low due to blur and glare"
+"2014-01-29_YB-Gq5",2014-01-29,2014-01-29,"YB","G","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to glare."
+"2014-01-29_YB-Gq8",2014-01-29,2014-01-29,"YB","G","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2014-01-29_YB-Gq3",2014-01-29,2014-01-29,"YB","G","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","All counts likely low due to blur and glare"
+"2014-01-29_YB-Gq5",2014-01-29,2014-01-29,"YB","G","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to glare."
+"2014-01-29_YB-Gq8",2014-01-29,2014-01-29,"YB","G","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2014-01-29_YB-Gq3",2014-01-29,2014-01-29,"YB","G","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","All counts likely low due to blur and glare"
+"2014-01-29_YB-Gq5",2014-01-29,2014-01-29,"YB","G","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to glare."
+"2014-01-29_YB-Gq8",2014-01-29,2014-01-29,"YB","G","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2014-01-29_YB-Gq3",2014-01-29,2014-01-29,"YB","G","3","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","All counts likely low due to blur and glare"
+"2014-01-29_YB-Gq5",2014-01-29,2014-01-29,"YB","G","5","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to glare."
+"2014-01-29_YB-Gq8",2014-01-29,2014-01-29,"YB","G","8","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2014-01-29_YB-Gq3",2014-01-29,2014-01-29,"YB","G","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","All counts likely low due to blur and glare"
+"2014-01-29_YB-Gq5",2014-01-29,2014-01-29,"YB","G","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to glare."
+"2014-01-29_YB-Gq8",2014-01-29,2014-01-29,"YB","G","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2014-01-29_YB-Gq3",2014-01-29,2014-01-29,"YB","G","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","All counts likely low due to blur and glare"
+"2014-01-29_YB-Gq5",2014-01-29,2014-01-29,"YB","G","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to glare."
+"2014-01-29_YB-Gq8",2014-01-29,2014-01-29,"YB","G","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2014-01-29_YB-Gq3",2014-01-29,2014-01-29,"YB","G","3","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","All counts likely low due to blur and glare"
+"2014-01-29_YB-Gq5",2014-01-29,2014-01-29,"YB","G","5","Pp","Pollicipes_polymerus","Type 11",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to glare."
+"2014-01-29_YB-Gq8",2014-01-29,2014-01-29,"YB","G","8","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2014-01-29_YB-Gq3",2014-01-29,2014-01-29,"YB","G","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","All counts likely low due to blur and glare"
+"2014-01-29_YB-Gq5",2014-01-29,2014-01-29,"YB","G","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to glare."
+"2014-01-29_YB-Gq8",2014-01-29,2014-01-29,"YB","G","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2014-01-29_YB-Gq3",2014-01-29,2014-01-29,"YB","G","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","All counts likely low due to blur and glare"
+"2014-01-29_YB-Gq5",2014-01-29,2014-01-29,"YB","G","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to glare."
+"2014-01-29_YB-Gq8",2014-01-29,2014-01-29,"YB","G","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2014-01-29_YB-Gq3",2014-01-29,2014-01-29,"YB","G","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","All counts likely low due to blur and glare"
+"2014-01-29_YB-Gq5",2014-01-29,2014-01-29,"YB","G","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to glare."
+"2014-01-29_YB-Gq8",2014-01-29,2014-01-29,"YB","G","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2014-02-26_YB-Aq6",2014-02-26,2014-02-26,"YB","A","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2014-02-26_YB-Aq7",2014-02-26,2014-02-26,"YB","A","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-02-26_YB-Aq9",2014-02-26,2014-02-26,"YB","A","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-Aq6",2014-02-26,2014-02-26,"YB","A","6","Ae","Anemones","Type 14",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2014-02-26_YB-Aq7",2014-02-26,2014-02-26,"YB","A","7","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-02-26_YB-Aq9",2014-02-26,2014-02-26,"YB","A","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-Aq6",2014-02-26,2014-02-26,"YB","A","6","Bg","Balanus_glandula","Type 1",3656,0.0875,41782.8571428571,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2014-02-26_YB-Aq7",2014-02-26,2014-02-26,"YB","A","7","Bg","Balanus_glandula","Type 1",1128,0.015625,72192,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-02-26_YB-Aq9",2014-02-26,2014-02-26,"YB","A","9","Bg","Balanus_glandula","Type 1",770,0.015625,49280,"c","Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-Aq6",2014-02-26,2014-02-26,"YB","A","6","BgD","Balanus_glandula_(dead)","Type 2",92,0.0875,1051.42857142857,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2014-02-26_YB-Aq7",2014-02-26,2014-02-26,"YB","A","7","BgD","Balanus_glandula_(dead)","Type 2",41,0.015625,2624,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-02-26_YB-Aq9",2014-02-26,2014-02-26,"YB","A","9","BgD","Balanus_glandula_(dead)","Type 2",9,0.015625,576,"c","Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-Aq6",2014-02-26,2014-02-26,"YB","A","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2014-02-26_YB-Aq7",2014-02-26,2014-02-26,"YB","A","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-02-26_YB-Aq9",2014-02-26,2014-02-26,"YB","A","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-Aq6",2014-02-26,2014-02-26,"YB","A","6","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2014-02-26_YB-Aq7",2014-02-26,2014-02-26,"YB","A","7","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-02-26_YB-Aq9",2014-02-26,2014-02-26,"YB","A","9","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-Aq6",2014-02-26,2014-02-26,"YB","A","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2014-02-26_YB-Aq7",2014-02-26,2014-02-26,"YB","A","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-02-26_YB-Aq9",2014-02-26,2014-02-26,"YB","A","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-Aq6",2014-02-26,2014-02-26,"YB","A","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2014-02-26_YB-Aq7",2014-02-26,2014-02-26,"YB","A","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-02-26_YB-Aq9",2014-02-26,2014-02-26,"YB","A","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-Aq6",2014-02-26,2014-02-26,"YB","A","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2014-02-26_YB-Aq7",2014-02-26,2014-02-26,"YB","A","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-02-26_YB-Aq9",2014-02-26,2014-02-26,"YB","A","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-Aq6",2014-02-26,2014-02-26,"YB","A","6","Lim","Limpets","Type 12",4,0.0875,45.7142857142857,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2014-02-26_YB-Aq7",2014-02-26,2014-02-26,"YB","A","7","Lim","Limpets","Type 12",193,0.0875,2205.71428571429,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-02-26_YB-Aq9",2014-02-26,2014-02-26,"YB","A","9","Lim","Limpets","Type 12",36,0.0875,411.428571428571,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-Aq6",2014-02-26,2014-02-26,"YB","A","6","Ls","Littorina_sitkana","Type 13",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2014-02-26_YB-Aq7",2014-02-26,2014-02-26,"YB","A","7","Ls","Littorina_sitkana","Type 13",117,0.0875,1337.14285714286,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-02-26_YB-Aq9",2014-02-26,2014-02-26,"YB","A","9","Ls","Littorina_sitkana","Type 13",100,0.0875,1142.85714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-Aq6",2014-02-26,2014-02-26,"YB","A","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2014-02-26_YB-Aq7",2014-02-26,2014-02-26,"YB","A","7","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-02-26_YB-Aq9",2014-02-26,2014-02-26,"YB","A","9","Mc","Mytilus_californianus","Type 17",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-Aq6",2014-02-26,2014-02-26,"YB","A","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2014-02-26_YB-Aq7",2014-02-26,2014-02-26,"YB","A","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-02-26_YB-Aq9",2014-02-26,2014-02-26,"YB","A","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-Aq6",2014-02-26,2014-02-26,"YB","A","6","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2014-02-26_YB-Aq7",2014-02-26,2014-02-26,"YB","A","7","Myt","Mytilus_spp","Type 7",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-02-26_YB-Aq9",2014-02-26,2014-02-26,"YB","A","9","Myt","Mytilus_spp","Type 7",351,0.0875,4011.42857142857,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-Aq6",2014-02-26,2014-02-26,"YB","A","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2014-02-26_YB-Aq7",2014-02-26,2014-02-26,"YB","A","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-02-26_YB-Aq9",2014-02-26,2014-02-26,"YB","A","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-Aq6",2014-02-26,2014-02-26,"YB","A","6","Mt","Mytilus_trossulus","Type 15",538,0.0875,6148.57142857143,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2014-02-26_YB-Aq7",2014-02-26,2014-02-26,"YB","A","7","Mt","Mytilus_trossulus","Type 15",145,0.015625,9280,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-02-26_YB-Aq9",2014-02-26,2014-02-26,"YB","A","9","Mt","Mytilus_trossulus","Type 15",306,0.0875,3497.14285714286,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-Aq6",2014-02-26,2014-02-26,"YB","A","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2014-02-26_YB-Aq7",2014-02-26,2014-02-26,"YB","A","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-02-26_YB-Aq9",2014-02-26,2014-02-26,"YB","A","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-Aq6",2014-02-26,2014-02-26,"YB","A","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2014-02-26_YB-Aq7",2014-02-26,2014-02-26,"YB","A","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-02-26_YB-Aq9",2014-02-26,2014-02-26,"YB","A","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-Aq6",2014-02-26,2014-02-26,"YB","A","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2014-02-26_YB-Aq7",2014-02-26,2014-02-26,"YB","A","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-02-26_YB-Aq9",2014-02-26,2014-02-26,"YB","A","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-Aq6",2014-02-26,2014-02-26,"YB","A","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2014-02-26_YB-Aq7",2014-02-26,2014-02-26,"YB","A","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-02-26_YB-Aq9",2014-02-26,2014-02-26,"YB","A","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-Aq6",2014-02-26,2014-02-26,"YB","A","6","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2014-02-26_YB-Aq7",2014-02-26,2014-02-26,"YB","A","7","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-02-26_YB-Aq9",2014-02-26,2014-02-26,"YB","A","9","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-Aq6",2014-02-26,2014-02-26,"YB","A","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2014-02-26_YB-Aq7",2014-02-26,2014-02-26,"YB","A","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-02-26_YB-Aq9",2014-02-26,2014-02-26,"YB","A","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-Aq6",2014-02-26,2014-02-26,"YB","A","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2014-02-26_YB-Aq7",2014-02-26,2014-02-26,"YB","A","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-02-26_YB-Aq9",2014-02-26,2014-02-26,"YB","A","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-Aq6",2014-02-26,2014-02-26,"YB","A","6","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2014-02-26_YB-Aq7",2014-02-26,2014-02-26,"YB","A","7","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-02-26_YB-Aq9",2014-02-26,2014-02-26,"YB","A","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-Aq6",2014-02-26,2014-02-26,"YB","A","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2014-02-26_YB-Aq7",2014-02-26,2014-02-26,"YB","A","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-02-26_YB-Aq9",2014-02-26,2014-02-26,"YB","A","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-Aq6",2014-02-26,2014-02-26,"YB","A","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2014-02-26_YB-Aq7",2014-02-26,2014-02-26,"YB","A","7","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-02-26_YB-Aq9",2014-02-26,2014-02-26,"YB","A","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-Aq6",2014-02-26,2014-02-26,"YB","A","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2014-02-26_YB-Aq7",2014-02-26,2014-02-26,"YB","A","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-02-26_YB-Aq9",2014-02-26,2014-02-26,"YB","A","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-ABq1",2014-02-26,2014-02-26,"YB","AB","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-02-26_YB-ABq2",2014-02-26,2014-02-26,"YB","AB","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-ABq4",2014-02-26,2014-02-26,"YB","AB","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-02-26_YB-ABq1",2014-02-26,2014-02-26,"YB","AB","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-02-26_YB-ABq2",2014-02-26,2014-02-26,"YB","AB","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-ABq4",2014-02-26,2014-02-26,"YB","AB","4","Ae","Anemones","Type 14",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-02-26_YB-ABq1",2014-02-26,2014-02-26,"YB","AB","1","Bg","Balanus_glandula","Type 1",633,0.0875,7234.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","2%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-02-26_YB-ABq2",2014-02-26,2014-02-26,"YB","AB","2","Bg","Balanus_glandula","Type 1",701,0.015625,44864,"c","Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-ABq4",2014-02-26,2014-02-26,"YB","AB","4","Bg","Balanus_glandula","Type 1",2797,0.0875,31965.7142857143,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-02-26_YB-ABq1",2014-02-26,2014-02-26,"YB","AB","1","BgD","Balanus_glandula_(dead)","Type 2",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","2%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-02-26_YB-ABq2",2014-02-26,2014-02-26,"YB","AB","2","BgD","Balanus_glandula_(dead)","Type 2",10,0.015625,640,"c","Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-ABq4",2014-02-26,2014-02-26,"YB","AB","4","BgD","Balanus_glandula_(dead)","Type 2",25,0.0875,285.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-02-26_YB-ABq1",2014-02-26,2014-02-26,"YB","AB","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-02-26_YB-ABq2",2014-02-26,2014-02-26,"YB","AB","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-ABq4",2014-02-26,2014-02-26,"YB","AB","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-02-26_YB-ABq1",2014-02-26,2014-02-26,"YB","AB","1","Cth","Chthamalus_dalli","Type 3",14,0.0875,160,NA,"Beatriz Vaca","Finished","Full","Full","2%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-02-26_YB-ABq2",2014-02-26,2014-02-26,"YB","AB","2","Cth","Chthamalus_dalli","Type 3",11,0.015625,704,"c","Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-ABq4",2014-02-26,2014-02-26,"YB","AB","4","Cth","Chthamalus_dalli","Type 3",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-02-26_YB-ABq1",2014-02-26,2014-02-26,"YB","AB","1","CthD","Chthamalus_dalli (dead)","Type 4",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","2%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-02-26_YB-ABq2",2014-02-26,2014-02-26,"YB","AB","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-ABq4",2014-02-26,2014-02-26,"YB","AB","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-02-26_YB-ABq1",2014-02-26,2014-02-26,"YB","AB","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-02-26_YB-ABq2",2014-02-26,2014-02-26,"YB","AB","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-ABq4",2014-02-26,2014-02-26,"YB","AB","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-02-26_YB-ABq1",2014-02-26,2014-02-26,"YB","AB","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-02-26_YB-ABq2",2014-02-26,2014-02-26,"YB","AB","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-ABq4",2014-02-26,2014-02-26,"YB","AB","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-02-26_YB-ABq1",2014-02-26,2014-02-26,"YB","AB","1","Lim","Limpets","Type 12",10,0.0875,114.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","2%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-02-26_YB-ABq2",2014-02-26,2014-02-26,"YB","AB","2","Lim","Limpets","Type 12",116,0.0875,1325.71428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-ABq4",2014-02-26,2014-02-26,"YB","AB","4","Lim","Limpets","Type 12",553,0.0875,6320,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-02-26_YB-ABq1",2014-02-26,2014-02-26,"YB","AB","1","Ls","Littorina_sitkana","Type 13",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","2%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-02-26_YB-ABq2",2014-02-26,2014-02-26,"YB","AB","2","Ls","Littorina_sitkana","Type 13",14,0.0875,160,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-ABq4",2014-02-26,2014-02-26,"YB","AB","4","Ls","Littorina_sitkana","Type 13",93,0.0875,1062.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-02-26_YB-ABq1",2014-02-26,2014-02-26,"YB","AB","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-02-26_YB-ABq2",2014-02-26,2014-02-26,"YB","AB","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-ABq4",2014-02-26,2014-02-26,"YB","AB","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-02-26_YB-ABq1",2014-02-26,2014-02-26,"YB","AB","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-02-26_YB-ABq2",2014-02-26,2014-02-26,"YB","AB","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-ABq4",2014-02-26,2014-02-26,"YB","AB","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-02-26_YB-ABq1",2014-02-26,2014-02-26,"YB","AB","1","Myt","Mytilus_spp","Type 7",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","2%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-02-26_YB-ABq2",2014-02-26,2014-02-26,"YB","AB","2","Myt","Mytilus_spp","Type 7",310,0.0875,3542.85714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-ABq4",2014-02-26,2014-02-26,"YB","AB","4","Myt","Mytilus_spp","Type 7",131,0.0875,1497.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-02-26_YB-ABq1",2014-02-26,2014-02-26,"YB","AB","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-02-26_YB-ABq2",2014-02-26,2014-02-26,"YB","AB","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-ABq4",2014-02-26,2014-02-26,"YB","AB","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-02-26_YB-ABq1",2014-02-26,2014-02-26,"YB","AB","1","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-02-26_YB-ABq2",2014-02-26,2014-02-26,"YB","AB","2","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-ABq4",2014-02-26,2014-02-26,"YB","AB","4","Mt","Mytilus_trossulus","Type 15",170,0.0875,1942.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-02-26_YB-ABq1",2014-02-26,2014-02-26,"YB","AB","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-02-26_YB-ABq2",2014-02-26,2014-02-26,"YB","AB","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-ABq4",2014-02-26,2014-02-26,"YB","AB","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-02-26_YB-ABq1",2014-02-26,2014-02-26,"YB","AB","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-02-26_YB-ABq2",2014-02-26,2014-02-26,"YB","AB","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-ABq4",2014-02-26,2014-02-26,"YB","AB","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-02-26_YB-ABq1",2014-02-26,2014-02-26,"YB","AB","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-02-26_YB-ABq2",2014-02-26,2014-02-26,"YB","AB","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-ABq4",2014-02-26,2014-02-26,"YB","AB","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-02-26_YB-ABq1",2014-02-26,2014-02-26,"YB","AB","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-02-26_YB-ABq2",2014-02-26,2014-02-26,"YB","AB","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-ABq4",2014-02-26,2014-02-26,"YB","AB","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-02-26_YB-ABq1",2014-02-26,2014-02-26,"YB","AB","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-02-26_YB-ABq2",2014-02-26,2014-02-26,"YB","AB","2","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-ABq4",2014-02-26,2014-02-26,"YB","AB","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-02-26_YB-ABq1",2014-02-26,2014-02-26,"YB","AB","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-02-26_YB-ABq2",2014-02-26,2014-02-26,"YB","AB","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-ABq4",2014-02-26,2014-02-26,"YB","AB","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-02-26_YB-ABq1",2014-02-26,2014-02-26,"YB","AB","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-02-26_YB-ABq2",2014-02-26,2014-02-26,"YB","AB","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-ABq4",2014-02-26,2014-02-26,"YB","AB","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-02-26_YB-ABq1",2014-02-26,2014-02-26,"YB","AB","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-02-26_YB-ABq2",2014-02-26,2014-02-26,"YB","AB","2","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-ABq4",2014-02-26,2014-02-26,"YB","AB","4","Pp","Pollicipes_polymerus","Type 11",49,0.0875,560,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-02-26_YB-ABq1",2014-02-26,2014-02-26,"YB","AB","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-02-26_YB-ABq2",2014-02-26,2014-02-26,"YB","AB","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-ABq4",2014-02-26,2014-02-26,"YB","AB","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-02-26_YB-ABq1",2014-02-26,2014-02-26,"YB","AB","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-02-26_YB-ABq2",2014-02-26,2014-02-26,"YB","AB","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-ABq4",2014-02-26,2014-02-26,"YB","AB","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-02-26_YB-ABq1",2014-02-26,2014-02-26,"YB","AB","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-02-26_YB-ABq2",2014-02-26,2014-02-26,"YB","AB","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-ABq4",2014-02-26,2014-02-26,"YB","AB","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-02-26_YB-ACq1",2014-02-26,2014-02-26,"YB","AC","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%","All counts may be low due to algal cover"
+"2014-02-26_YB-ACq4",2014-02-26,2014-02-26,"YB","AC","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare."
+"2014-02-26_YB-ACq7",2014-02-26,2014-02-26,"YB","AC","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare and water coverage. About 25% water coverage."
+"2014-02-26_YB-ACq8",2014-02-26,2014-02-26,"YB","AC","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-02-26_YB-ACq1",2014-02-26,2014-02-26,"YB","AC","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%","All counts may be low due to algal cover"
+"2014-02-26_YB-ACq4",2014-02-26,2014-02-26,"YB","AC","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare."
+"2014-02-26_YB-ACq7",2014-02-26,2014-02-26,"YB","AC","7","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare and water coverage. About 25% water coverage."
+"2014-02-26_YB-ACq8",2014-02-26,2014-02-26,"YB","AC","8","Ae","Anemones","Type 14",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-02-26_YB-ACq1",2014-02-26,2014-02-26,"YB","AC","1","Bg","Balanus_glandula","Type 1",1855,0.0875,21200,NA,"Beatriz Vaca","Finished","Full","Full","12%","All counts may be low due to algal cover"
+"2014-02-26_YB-ACq4",2014-02-26,2014-02-26,"YB","AC","4","Bg","Balanus_glandula","Type 1",176,0.0875,2011.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare."
+"2014-02-26_YB-ACq7",2014-02-26,2014-02-26,"YB","AC","7","Bg","Balanus_glandula","Type 1",160,0.0875,1828.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare and water coverage. About 25% water coverage."
+"2014-02-26_YB-ACq8",2014-02-26,2014-02-26,"YB","AC","8","Bg","Balanus_glandula","Type 1",708,0.0875,8091.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-02-26_YB-ACq1",2014-02-26,2014-02-26,"YB","AC","1","BgD","Balanus_glandula_(dead)","Type 2",436,0.0875,4982.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","12%","All counts may be low due to algal cover"
+"2014-02-26_YB-ACq4",2014-02-26,2014-02-26,"YB","AC","4","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare."
+"2014-02-26_YB-ACq7",2014-02-26,2014-02-26,"YB","AC","7","BgD","Balanus_glandula_(dead)","Type 2",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare and water coverage. About 25% water coverage."
+"2014-02-26_YB-ACq8",2014-02-26,2014-02-26,"YB","AC","8","BgD","Balanus_glandula_(dead)","Type 2",112,0.0875,1280,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-02-26_YB-ACq1",2014-02-26,2014-02-26,"YB","AC","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%","All counts may be low due to algal cover"
+"2014-02-26_YB-ACq4",2014-02-26,2014-02-26,"YB","AC","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare."
+"2014-02-26_YB-ACq7",2014-02-26,2014-02-26,"YB","AC","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare and water coverage. About 25% water coverage."
+"2014-02-26_YB-ACq8",2014-02-26,2014-02-26,"YB","AC","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-02-26_YB-ACq1",2014-02-26,2014-02-26,"YB","AC","1","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%","All counts may be low due to algal cover"
+"2014-02-26_YB-ACq4",2014-02-26,2014-02-26,"YB","AC","4","Cth","Chthamalus_dalli","Type 3",40,0.0875,457.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare."
+"2014-02-26_YB-ACq7",2014-02-26,2014-02-26,"YB","AC","7","Cth","Chthamalus_dalli","Type 3",165,0.0875,1885.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare and water coverage. About 25% water coverage."
+"2014-02-26_YB-ACq8",2014-02-26,2014-02-26,"YB","AC","8","Cth","Chthamalus_dalli","Type 3",110,0.0875,1257.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-02-26_YB-ACq1",2014-02-26,2014-02-26,"YB","AC","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%","All counts may be low due to algal cover"
+"2014-02-26_YB-ACq4",2014-02-26,2014-02-26,"YB","AC","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare."
+"2014-02-26_YB-ACq7",2014-02-26,2014-02-26,"YB","AC","7","CthD","Chthamalus_dalli (dead)","Type 4",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare and water coverage. About 25% water coverage."
+"2014-02-26_YB-ACq8",2014-02-26,2014-02-26,"YB","AC","8","CthD","Chthamalus_dalli (dead)","Type 4",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-02-26_YB-ACq1",2014-02-26,2014-02-26,"YB","AC","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%","All counts may be low due to algal cover"
+"2014-02-26_YB-ACq4",2014-02-26,2014-02-26,"YB","AC","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare."
+"2014-02-26_YB-ACq7",2014-02-26,2014-02-26,"YB","AC","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare and water coverage. About 25% water coverage."
+"2014-02-26_YB-ACq8",2014-02-26,2014-02-26,"YB","AC","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-02-26_YB-ACq1",2014-02-26,2014-02-26,"YB","AC","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%","All counts may be low due to algal cover"
+"2014-02-26_YB-ACq4",2014-02-26,2014-02-26,"YB","AC","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare."
+"2014-02-26_YB-ACq7",2014-02-26,2014-02-26,"YB","AC","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare and water coverage. About 25% water coverage."
+"2014-02-26_YB-ACq8",2014-02-26,2014-02-26,"YB","AC","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-02-26_YB-ACq1",2014-02-26,2014-02-26,"YB","AC","1","Lim","Limpets","Type 12",27,0.0875,308.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","12%","All counts may be low due to algal cover"
+"2014-02-26_YB-ACq4",2014-02-26,2014-02-26,"YB","AC","4","Lim","Limpets","Type 12",81,0.0875,925.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare."
+"2014-02-26_YB-ACq7",2014-02-26,2014-02-26,"YB","AC","7","Lim","Limpets","Type 12",50,0.0875,571.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare and water coverage. About 25% water coverage."
+"2014-02-26_YB-ACq8",2014-02-26,2014-02-26,"YB","AC","8","Lim","Limpets","Type 12",76,0.0875,868.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-02-26_YB-ACq1",2014-02-26,2014-02-26,"YB","AC","1","Ls","Littorina_sitkana","Type 13",12,0.0875,137.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","12%","All counts may be low due to algal cover"
+"2014-02-26_YB-ACq4",2014-02-26,2014-02-26,"YB","AC","4","Ls","Littorina_sitkana","Type 13",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare."
+"2014-02-26_YB-ACq7",2014-02-26,2014-02-26,"YB","AC","7","Ls","Littorina_sitkana","Type 13",36,0.0875,411.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare and water coverage. About 25% water coverage."
+"2014-02-26_YB-ACq8",2014-02-26,2014-02-26,"YB","AC","8","Ls","Littorina_sitkana","Type 13",63,0.0875,720,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-02-26_YB-ACq1",2014-02-26,2014-02-26,"YB","AC","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%","All counts may be low due to algal cover"
+"2014-02-26_YB-ACq4",2014-02-26,2014-02-26,"YB","AC","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare."
+"2014-02-26_YB-ACq7",2014-02-26,2014-02-26,"YB","AC","7","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare and water coverage. About 25% water coverage."
+"2014-02-26_YB-ACq8",2014-02-26,2014-02-26,"YB","AC","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-02-26_YB-ACq1",2014-02-26,2014-02-26,"YB","AC","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%","All counts may be low due to algal cover"
+"2014-02-26_YB-ACq4",2014-02-26,2014-02-26,"YB","AC","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare."
+"2014-02-26_YB-ACq7",2014-02-26,2014-02-26,"YB","AC","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare and water coverage. About 25% water coverage."
+"2014-02-26_YB-ACq8",2014-02-26,2014-02-26,"YB","AC","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-02-26_YB-ACq1",2014-02-26,2014-02-26,"YB","AC","1","Myt","Mytilus_spp","Type 7",20,0.0875,228.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","12%","All counts may be low due to algal cover"
+"2014-02-26_YB-ACq4",2014-02-26,2014-02-26,"YB","AC","4","Myt","Mytilus_spp","Type 7",15,0.0875,171.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare."
+"2014-02-26_YB-ACq7",2014-02-26,2014-02-26,"YB","AC","7","Myt","Mytilus_spp","Type 7",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare and water coverage. About 25% water coverage."
+"2014-02-26_YB-ACq8",2014-02-26,2014-02-26,"YB","AC","8","Myt","Mytilus_spp","Type 7",52,0.0875,594.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-02-26_YB-ACq1",2014-02-26,2014-02-26,"YB","AC","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%","All counts may be low due to algal cover"
+"2014-02-26_YB-ACq4",2014-02-26,2014-02-26,"YB","AC","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare."
+"2014-02-26_YB-ACq7",2014-02-26,2014-02-26,"YB","AC","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare and water coverage. About 25% water coverage."
+"2014-02-26_YB-ACq8",2014-02-26,2014-02-26,"YB","AC","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-02-26_YB-ACq1",2014-02-26,2014-02-26,"YB","AC","1","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%","All counts may be low due to algal cover"
+"2014-02-26_YB-ACq4",2014-02-26,2014-02-26,"YB","AC","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare."
+"2014-02-26_YB-ACq7",2014-02-26,2014-02-26,"YB","AC","7","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare and water coverage. About 25% water coverage."
+"2014-02-26_YB-ACq8",2014-02-26,2014-02-26,"YB","AC","8","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-02-26_YB-ACq1",2014-02-26,2014-02-26,"YB","AC","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%","All counts may be low due to algal cover"
+"2014-02-26_YB-ACq4",2014-02-26,2014-02-26,"YB","AC","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare."
+"2014-02-26_YB-ACq7",2014-02-26,2014-02-26,"YB","AC","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare and water coverage. About 25% water coverage."
+"2014-02-26_YB-ACq8",2014-02-26,2014-02-26,"YB","AC","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-02-26_YB-ACq1",2014-02-26,2014-02-26,"YB","AC","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%","All counts may be low due to algal cover"
+"2014-02-26_YB-ACq4",2014-02-26,2014-02-26,"YB","AC","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare."
+"2014-02-26_YB-ACq7",2014-02-26,2014-02-26,"YB","AC","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare and water coverage. About 25% water coverage."
+"2014-02-26_YB-ACq8",2014-02-26,2014-02-26,"YB","AC","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-02-26_YB-ACq1",2014-02-26,2014-02-26,"YB","AC","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%","All counts may be low due to algal cover"
+"2014-02-26_YB-ACq4",2014-02-26,2014-02-26,"YB","AC","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare."
+"2014-02-26_YB-ACq7",2014-02-26,2014-02-26,"YB","AC","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare and water coverage. About 25% water coverage."
+"2014-02-26_YB-ACq8",2014-02-26,2014-02-26,"YB","AC","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-02-26_YB-ACq1",2014-02-26,2014-02-26,"YB","AC","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%","All counts may be low due to algal cover"
+"2014-02-26_YB-ACq4",2014-02-26,2014-02-26,"YB","AC","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare."
+"2014-02-26_YB-ACq7",2014-02-26,2014-02-26,"YB","AC","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare and water coverage. About 25% water coverage."
+"2014-02-26_YB-ACq8",2014-02-26,2014-02-26,"YB","AC","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-02-26_YB-ACq1",2014-02-26,2014-02-26,"YB","AC","1","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","12%","All counts may be low due to algal cover"
+"2014-02-26_YB-ACq4",2014-02-26,2014-02-26,"YB","AC","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare."
+"2014-02-26_YB-ACq7",2014-02-26,2014-02-26,"YB","AC","7","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare and water coverage. About 25% water coverage."
+"2014-02-26_YB-ACq8",2014-02-26,2014-02-26,"YB","AC","8","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-02-26_YB-ACq1",2014-02-26,2014-02-26,"YB","AC","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%","All counts may be low due to algal cover"
+"2014-02-26_YB-ACq4",2014-02-26,2014-02-26,"YB","AC","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare."
+"2014-02-26_YB-ACq7",2014-02-26,2014-02-26,"YB","AC","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare and water coverage. About 25% water coverage."
+"2014-02-26_YB-ACq8",2014-02-26,2014-02-26,"YB","AC","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-02-26_YB-ACq1",2014-02-26,2014-02-26,"YB","AC","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%","All counts may be low due to algal cover"
+"2014-02-26_YB-ACq4",2014-02-26,2014-02-26,"YB","AC","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare."
+"2014-02-26_YB-ACq7",2014-02-26,2014-02-26,"YB","AC","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare and water coverage. About 25% water coverage."
+"2014-02-26_YB-ACq8",2014-02-26,2014-02-26,"YB","AC","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-02-26_YB-ACq1",2014-02-26,2014-02-26,"YB","AC","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%","All counts may be low due to algal cover"
+"2014-02-26_YB-ACq4",2014-02-26,2014-02-26,"YB","AC","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare."
+"2014-02-26_YB-ACq7",2014-02-26,2014-02-26,"YB","AC","7","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare and water coverage. About 25% water coverage."
+"2014-02-26_YB-ACq8",2014-02-26,2014-02-26,"YB","AC","8","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-02-26_YB-ACq1",2014-02-26,2014-02-26,"YB","AC","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%","All counts may be low due to algal cover"
+"2014-02-26_YB-ACq4",2014-02-26,2014-02-26,"YB","AC","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare."
+"2014-02-26_YB-ACq7",2014-02-26,2014-02-26,"YB","AC","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare and water coverage. About 25% water coverage."
+"2014-02-26_YB-ACq8",2014-02-26,2014-02-26,"YB","AC","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-02-26_YB-ACq1",2014-02-26,2014-02-26,"YB","AC","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%","All counts may be low due to algal cover"
+"2014-02-26_YB-ACq4",2014-02-26,2014-02-26,"YB","AC","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare."
+"2014-02-26_YB-ACq7",2014-02-26,2014-02-26,"YB","AC","7","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare and water coverage. About 25% water coverage."
+"2014-02-26_YB-ACq8",2014-02-26,2014-02-26,"YB","AC","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-02-26_YB-ACq1",2014-02-26,2014-02-26,"YB","AC","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%","All counts may be low due to algal cover"
+"2014-02-26_YB-ACq4",2014-02-26,2014-02-26,"YB","AC","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare."
+"2014-02-26_YB-ACq7",2014-02-26,2014-02-26,"YB","AC","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare and water coverage. About 25% water coverage."
+"2014-02-26_YB-ACq8",2014-02-26,2014-02-26,"YB","AC","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-02-26_YB-ADq1",2014-02-26,2014-02-26,"YB","AD","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-ADq5",2014-02-26,2014-02-26,"YB","AD","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","30% Underwater; counts likely low due to water coverage"
+"2014-02-26_YB-ADq8",2014-02-26,2014-02-26,"YB","AD","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Counts may be low due to water coverage and glare; 40% underwater."
+"2014-02-26_YB-ADq1",2014-02-26,2014-02-26,"YB","AD","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-ADq5",2014-02-26,2014-02-26,"YB","AD","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","30% Underwater; counts likely low due to water coverage"
+"2014-02-26_YB-ADq8",2014-02-26,2014-02-26,"YB","AD","8","Ae","Anemones","Type 14",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Counts may be low due to water coverage and glare; 40% underwater."
+"2014-02-26_YB-ADq1",2014-02-26,2014-02-26,"YB","AD","1","Bg","Balanus_glandula","Type 1",500,0.015625,32000,"c","Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-ADq5",2014-02-26,2014-02-26,"YB","AD","5","Bg","Balanus_glandula","Type 1",548,0.015625,35072,"c","Beatriz Vaca","Finished","Full","Cropped","0%","30% Underwater; counts likely low due to water coverage"
+"2014-02-26_YB-ADq8",2014-02-26,2014-02-26,"YB","AD","8","Bg","Balanus_glandula","Type 1",407,0.015625,26048,"c","Beatriz Vaca","Finished","Full","Cropped","5%","Counts may be low due to water coverage and glare; 40% underwater."
+"2014-02-26_YB-ADq1",2014-02-26,2014-02-26,"YB","AD","1","BgD","Balanus_glandula_(dead)","Type 2",69,0.015625,4416,"c","Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-ADq5",2014-02-26,2014-02-26,"YB","AD","5","BgD","Balanus_glandula_(dead)","Type 2",21,0.015625,1344,"c","Beatriz Vaca","Finished","Full","Cropped","0%","30% Underwater; counts likely low due to water coverage"
+"2014-02-26_YB-ADq8",2014-02-26,2014-02-26,"YB","AD","8","BgD","Balanus_glandula_(dead)","Type 2",15,0.015625,960,"c","Beatriz Vaca","Finished","Full","Cropped","5%","Counts may be low due to water coverage and glare; 40% underwater."
+"2014-02-26_YB-ADq1",2014-02-26,2014-02-26,"YB","AD","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-ADq5",2014-02-26,2014-02-26,"YB","AD","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","30% Underwater; counts likely low due to water coverage"
+"2014-02-26_YB-ADq8",2014-02-26,2014-02-26,"YB","AD","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Counts may be low due to water coverage and glare; 40% underwater."
+"2014-02-26_YB-ADq1",2014-02-26,2014-02-26,"YB","AD","1","Cth","Chthamalus_dalli","Type 3",227,0.015625,14528,"c","Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-ADq5",2014-02-26,2014-02-26,"YB","AD","5","Cth","Chthamalus_dalli","Type 3",158,0.015625,10112,"c","Beatriz Vaca","Finished","Full","Cropped","0%","30% Underwater; counts likely low due to water coverage"
+"2014-02-26_YB-ADq8",2014-02-26,2014-02-26,"YB","AD","8","Cth","Chthamalus_dalli","Type 3",3,0.015625,192,"c","Beatriz Vaca","Finished","Full","Cropped","5%","Counts may be low due to water coverage and glare; 40% underwater."
+"2014-02-26_YB-ADq1",2014-02-26,2014-02-26,"YB","AD","1","CthD","Chthamalus_dalli (dead)","Type 4",4,0.015625,256,"c","Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-ADq5",2014-02-26,2014-02-26,"YB","AD","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","0%","30% Underwater; counts likely low due to water coverage"
+"2014-02-26_YB-ADq8",2014-02-26,2014-02-26,"YB","AD","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","5%","Counts may be low due to water coverage and glare; 40% underwater."
+"2014-02-26_YB-ADq1",2014-02-26,2014-02-26,"YB","AD","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-ADq5",2014-02-26,2014-02-26,"YB","AD","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","30% Underwater; counts likely low due to water coverage"
+"2014-02-26_YB-ADq8",2014-02-26,2014-02-26,"YB","AD","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Counts may be low due to water coverage and glare; 40% underwater."
+"2014-02-26_YB-ADq1",2014-02-26,2014-02-26,"YB","AD","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-ADq5",2014-02-26,2014-02-26,"YB","AD","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","30% Underwater; counts likely low due to water coverage"
+"2014-02-26_YB-ADq8",2014-02-26,2014-02-26,"YB","AD","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Counts may be low due to water coverage and glare; 40% underwater."
+"2014-02-26_YB-ADq1",2014-02-26,2014-02-26,"YB","AD","1","Lim","Limpets","Type 12",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-ADq5",2014-02-26,2014-02-26,"YB","AD","5","Lim","Limpets","Type 12",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","30% Underwater; counts likely low due to water coverage"
+"2014-02-26_YB-ADq8",2014-02-26,2014-02-26,"YB","AD","8","Lim","Limpets","Type 12",185,0.0875,2114.28571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Counts may be low due to water coverage and glare; 40% underwater."
+"2014-02-26_YB-ADq1",2014-02-26,2014-02-26,"YB","AD","1","Ls","Littorina_sitkana","Type 13",493,0.0875,5634.28571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-ADq5",2014-02-26,2014-02-26,"YB","AD","5","Ls","Littorina_sitkana","Type 13",147,0.0875,1680,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","30% Underwater; counts likely low due to water coverage"
+"2014-02-26_YB-ADq8",2014-02-26,2014-02-26,"YB","AD","8","Ls","Littorina_sitkana","Type 13",188,0.0875,2148.57142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Counts may be low due to water coverage and glare; 40% underwater."
+"2014-02-26_YB-ADq1",2014-02-26,2014-02-26,"YB","AD","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-ADq5",2014-02-26,2014-02-26,"YB","AD","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","30% Underwater; counts likely low due to water coverage"
+"2014-02-26_YB-ADq8",2014-02-26,2014-02-26,"YB","AD","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Counts may be low due to water coverage and glare; 40% underwater."
+"2014-02-26_YB-ADq1",2014-02-26,2014-02-26,"YB","AD","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-ADq5",2014-02-26,2014-02-26,"YB","AD","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","30% Underwater; counts likely low due to water coverage"
+"2014-02-26_YB-ADq8",2014-02-26,2014-02-26,"YB","AD","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Counts may be low due to water coverage and glare; 40% underwater."
+"2014-02-26_YB-ADq1",2014-02-26,2014-02-26,"YB","AD","1","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-ADq5",2014-02-26,2014-02-26,"YB","AD","5","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","30% Underwater; counts likely low due to water coverage"
+"2014-02-26_YB-ADq8",2014-02-26,2014-02-26,"YB","AD","8","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Counts may be low due to water coverage and glare; 40% underwater."
+"2014-02-26_YB-ADq1",2014-02-26,2014-02-26,"YB","AD","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-ADq5",2014-02-26,2014-02-26,"YB","AD","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","30% Underwater; counts likely low due to water coverage"
+"2014-02-26_YB-ADq8",2014-02-26,2014-02-26,"YB","AD","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Counts may be low due to water coverage and glare; 40% underwater."
+"2014-02-26_YB-ADq1",2014-02-26,2014-02-26,"YB","AD","1","Mt","Mytilus_trossulus","Type 15",553,0.0875,6320,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-ADq5",2014-02-26,2014-02-26,"YB","AD","5","Mt","Mytilus_trossulus","Type 15",302,0.0875,3451.42857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","30% Underwater; counts likely low due to water coverage"
+"2014-02-26_YB-ADq8",2014-02-26,2014-02-26,"YB","AD","8","Mt","Mytilus_trossulus","Type 15",771,0.0875,8811.42857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Counts may be low due to water coverage and glare; 40% underwater."
+"2014-02-26_YB-ADq1",2014-02-26,2014-02-26,"YB","AD","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-ADq5",2014-02-26,2014-02-26,"YB","AD","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","30% Underwater; counts likely low due to water coverage"
+"2014-02-26_YB-ADq8",2014-02-26,2014-02-26,"YB","AD","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Counts may be low due to water coverage and glare; 40% underwater."
+"2014-02-26_YB-ADq1",2014-02-26,2014-02-26,"YB","AD","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-ADq5",2014-02-26,2014-02-26,"YB","AD","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","30% Underwater; counts likely low due to water coverage"
+"2014-02-26_YB-ADq8",2014-02-26,2014-02-26,"YB","AD","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Counts may be low due to water coverage and glare; 40% underwater."
+"2014-02-26_YB-ADq1",2014-02-26,2014-02-26,"YB","AD","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-ADq5",2014-02-26,2014-02-26,"YB","AD","5","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","30% Underwater; counts likely low due to water coverage"
+"2014-02-26_YB-ADq8",2014-02-26,2014-02-26,"YB","AD","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Counts may be low due to water coverage and glare; 40% underwater."
+"2014-02-26_YB-ADq1",2014-02-26,2014-02-26,"YB","AD","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-ADq5",2014-02-26,2014-02-26,"YB","AD","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","30% Underwater; counts likely low due to water coverage"
+"2014-02-26_YB-ADq8",2014-02-26,2014-02-26,"YB","AD","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Counts may be low due to water coverage and glare; 40% underwater."
+"2014-02-26_YB-ADq1",2014-02-26,2014-02-26,"YB","AD","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-ADq5",2014-02-26,2014-02-26,"YB","AD","5","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","30% Underwater; counts likely low due to water coverage"
+"2014-02-26_YB-ADq8",2014-02-26,2014-02-26,"YB","AD","8","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Counts may be low due to water coverage and glare; 40% underwater."
+"2014-02-26_YB-ADq1",2014-02-26,2014-02-26,"YB","AD","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-ADq5",2014-02-26,2014-02-26,"YB","AD","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","30% Underwater; counts likely low due to water coverage"
+"2014-02-26_YB-ADq8",2014-02-26,2014-02-26,"YB","AD","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Counts may be low due to water coverage and glare; 40% underwater."
+"2014-02-26_YB-ADq1",2014-02-26,2014-02-26,"YB","AD","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-ADq5",2014-02-26,2014-02-26,"YB","AD","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","30% Underwater; counts likely low due to water coverage"
+"2014-02-26_YB-ADq8",2014-02-26,2014-02-26,"YB","AD","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Counts may be low due to water coverage and glare; 40% underwater."
+"2014-02-26_YB-ADq1",2014-02-26,2014-02-26,"YB","AD","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-ADq5",2014-02-26,2014-02-26,"YB","AD","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","30% Underwater; counts likely low due to water coverage"
+"2014-02-26_YB-ADq8",2014-02-26,2014-02-26,"YB","AD","8","Pp","Pollicipes_polymerus","Type 11",9,0.0875,102.857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Counts may be low due to water coverage and glare; 40% underwater."
+"2014-02-26_YB-ADq1",2014-02-26,2014-02-26,"YB","AD","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-ADq5",2014-02-26,2014-02-26,"YB","AD","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","30% Underwater; counts likely low due to water coverage"
+"2014-02-26_YB-ADq8",2014-02-26,2014-02-26,"YB","AD","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Counts may be low due to water coverage and glare; 40% underwater."
+"2014-02-26_YB-ADq1",2014-02-26,2014-02-26,"YB","AD","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-ADq5",2014-02-26,2014-02-26,"YB","AD","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","30% Underwater; counts likely low due to water coverage"
+"2014-02-26_YB-ADq8",2014-02-26,2014-02-26,"YB","AD","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Counts may be low due to water coverage and glare; 40% underwater."
+"2014-02-26_YB-ADq1",2014-02-26,2014-02-26,"YB","AD","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-ADq5",2014-02-26,2014-02-26,"YB","AD","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","30% Underwater; counts likely low due to water coverage"
+"2014-02-26_YB-ADq8",2014-02-26,2014-02-26,"YB","AD","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Counts may be low due to water coverage and glare; 40% underwater."
+"2014-02-26_YB-AEq1",2014-02-26,2014-02-26,"YB","AE","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-AEq4",2014-02-26,2014-02-26,"YB","AE","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-AEq8",2014-02-26,2014-02-26,"YB","AE","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-AEq1",2014-02-26,2014-02-26,"YB","AE","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-AEq4",2014-02-26,2014-02-26,"YB","AE","4","Ae","Anemones","Type 14",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-AEq8",2014-02-26,2014-02-26,"YB","AE","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-AEq1",2014-02-26,2014-02-26,"YB","AE","1","Bg","Balanus_glandula","Type 1",924,0.015625,59136,"c","Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-AEq4",2014-02-26,2014-02-26,"YB","AE","4","Bg","Balanus_glandula","Type 1",1052,0.015625,67328,"c","Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-AEq8",2014-02-26,2014-02-26,"YB","AE","8","Bg","Balanus_glandula","Type 1",620,0.015625,39680,"c","Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-AEq1",2014-02-26,2014-02-26,"YB","AE","1","BgD","Balanus_glandula_(dead)","Type 2",188,0.015625,12032,"c","Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-AEq4",2014-02-26,2014-02-26,"YB","AE","4","BgD","Balanus_glandula_(dead)","Type 2",122,0.015625,7808,"c","Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-AEq8",2014-02-26,2014-02-26,"YB","AE","8","BgD","Balanus_glandula_(dead)","Type 2",39,0.015625,2496,"c","Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-AEq1",2014-02-26,2014-02-26,"YB","AE","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-AEq4",2014-02-26,2014-02-26,"YB","AE","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-AEq8",2014-02-26,2014-02-26,"YB","AE","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-AEq1",2014-02-26,2014-02-26,"YB","AE","1","Cth","Chthamalus_dalli","Type 3",199,0.015625,12736,"c","Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-AEq4",2014-02-26,2014-02-26,"YB","AE","4","Cth","Chthamalus_dalli","Type 3",19,0.015625,1216,"c","Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-AEq8",2014-02-26,2014-02-26,"YB","AE","8","Cth","Chthamalus_dalli","Type 3",27,0.015625,1728,"c","Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-AEq1",2014-02-26,2014-02-26,"YB","AE","1","CthD","Chthamalus_dalli (dead)","Type 4",9,0.015625,576,"c","Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-AEq4",2014-02-26,2014-02-26,"YB","AE","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-AEq8",2014-02-26,2014-02-26,"YB","AE","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-AEq1",2014-02-26,2014-02-26,"YB","AE","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-AEq4",2014-02-26,2014-02-26,"YB","AE","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-AEq8",2014-02-26,2014-02-26,"YB","AE","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-AEq1",2014-02-26,2014-02-26,"YB","AE","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-AEq4",2014-02-26,2014-02-26,"YB","AE","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-AEq8",2014-02-26,2014-02-26,"YB","AE","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-AEq1",2014-02-26,2014-02-26,"YB","AE","1","Lim","Limpets","Type 12",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-AEq4",2014-02-26,2014-02-26,"YB","AE","4","Lim","Limpets","Type 12",187,0.0875,2137.14285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-AEq8",2014-02-26,2014-02-26,"YB","AE","8","Lim","Limpets","Type 12",266,0.0875,3040,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-AEq1",2014-02-26,2014-02-26,"YB","AE","1","Ls","Littorina_sitkana","Type 13",263,0.0875,3005.71428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-AEq4",2014-02-26,2014-02-26,"YB","AE","4","Ls","Littorina_sitkana","Type 13",164,0.0875,1874.28571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-AEq8",2014-02-26,2014-02-26,"YB","AE","8","Ls","Littorina_sitkana","Type 13",147,0.0875,1680,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-AEq1",2014-02-26,2014-02-26,"YB","AE","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-AEq4",2014-02-26,2014-02-26,"YB","AE","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-AEq8",2014-02-26,2014-02-26,"YB","AE","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-AEq1",2014-02-26,2014-02-26,"YB","AE","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-AEq4",2014-02-26,2014-02-26,"YB","AE","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-AEq8",2014-02-26,2014-02-26,"YB","AE","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-AEq1",2014-02-26,2014-02-26,"YB","AE","1","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-AEq4",2014-02-26,2014-02-26,"YB","AE","4","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-AEq8",2014-02-26,2014-02-26,"YB","AE","8","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-AEq1",2014-02-26,2014-02-26,"YB","AE","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-AEq4",2014-02-26,2014-02-26,"YB","AE","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-AEq8",2014-02-26,2014-02-26,"YB","AE","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-AEq1",2014-02-26,2014-02-26,"YB","AE","1","Mt","Mytilus_trossulus","Type 15",218,0.0875,2491.42857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-AEq4",2014-02-26,2014-02-26,"YB","AE","4","Mt","Mytilus_trossulus","Type 15",164,0.0875,1874.28571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-AEq8",2014-02-26,2014-02-26,"YB","AE","8","Mt","Mytilus_trossulus","Type 15",257,0.0875,2937.14285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-AEq1",2014-02-26,2014-02-26,"YB","AE","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-AEq4",2014-02-26,2014-02-26,"YB","AE","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-AEq8",2014-02-26,2014-02-26,"YB","AE","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-AEq1",2014-02-26,2014-02-26,"YB","AE","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-AEq4",2014-02-26,2014-02-26,"YB","AE","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-AEq8",2014-02-26,2014-02-26,"YB","AE","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-AEq1",2014-02-26,2014-02-26,"YB","AE","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-AEq4",2014-02-26,2014-02-26,"YB","AE","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-AEq8",2014-02-26,2014-02-26,"YB","AE","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-AEq1",2014-02-26,2014-02-26,"YB","AE","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-AEq4",2014-02-26,2014-02-26,"YB","AE","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-AEq8",2014-02-26,2014-02-26,"YB","AE","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-AEq1",2014-02-26,2014-02-26,"YB","AE","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-AEq4",2014-02-26,2014-02-26,"YB","AE","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-AEq8",2014-02-26,2014-02-26,"YB","AE","8","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-AEq1",2014-02-26,2014-02-26,"YB","AE","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-AEq4",2014-02-26,2014-02-26,"YB","AE","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-AEq8",2014-02-26,2014-02-26,"YB","AE","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-AEq1",2014-02-26,2014-02-26,"YB","AE","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-AEq4",2014-02-26,2014-02-26,"YB","AE","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-AEq8",2014-02-26,2014-02-26,"YB","AE","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-AEq1",2014-02-26,2014-02-26,"YB","AE","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-AEq4",2014-02-26,2014-02-26,"YB","AE","4","Pp","Pollicipes_polymerus","Type 11",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-AEq8",2014-02-26,2014-02-26,"YB","AE","8","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-AEq1",2014-02-26,2014-02-26,"YB","AE","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-AEq4",2014-02-26,2014-02-26,"YB","AE","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-AEq8",2014-02-26,2014-02-26,"YB","AE","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-AEq1",2014-02-26,2014-02-26,"YB","AE","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-AEq4",2014-02-26,2014-02-26,"YB","AE","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-AEq8",2014-02-26,2014-02-26,"YB","AE","8","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-AEq1",2014-02-26,2014-02-26,"YB","AE","1","ScD","Semibalanus_cariosus_(dead)","Type 6",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-AEq4",2014-02-26,2014-02-26,"YB","AE","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-AEq8",2014-02-26,2014-02-26,"YB","AE","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-AFq5",2014-02-26,2014-02-26,"YB","AF","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Counts likely low due to glare."
+"2014-02-26_YB-AFq8",2014-02-26,2014-02-26,"YB","AF","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2014-02-26_YB-AFq9",2014-02-26,2014-02-26,"YB","AF","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","","Counts may be low due to blur and glare"
+"2014-02-26_YB-AFq5",2014-02-26,2014-02-26,"YB","AF","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Counts likely low due to glare."
+"2014-02-26_YB-AFq8",2014-02-26,2014-02-26,"YB","AF","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2014-02-26_YB-AFq9",2014-02-26,2014-02-26,"YB","AF","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","","Counts may be low due to blur and glare"
+"2014-02-26_YB-AFq5",2014-02-26,2014-02-26,"YB","AF","5","Bg","Balanus_glandula","Type 1",1124,0.015625,71936,"c","Beatriz Vaca","Finished","Full","Cropped","40%","Counts likely low due to glare."
+"2014-02-26_YB-AFq8",2014-02-26,2014-02-26,"YB","AF","8","Bg","Balanus_glandula","Type 1",1702,0.0875,19451.4285714286,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2014-02-26_YB-AFq9",2014-02-26,2014-02-26,"YB","AF","9","Bg","Balanus_glandula","Type 1",703,0.015625,44992,"c","Stephanie Merhoff","Finished","Full","Cropped","","Counts may be low due to blur and glare"
+"2014-02-26_YB-AFq5",2014-02-26,2014-02-26,"YB","AF","5","BgD","Balanus_glandula_(dead)","Type 2",12,0.015625,768,"c","Beatriz Vaca","Finished","Full","Cropped","40%","Counts likely low due to glare."
+"2014-02-26_YB-AFq8",2014-02-26,2014-02-26,"YB","AF","8","BgD","Balanus_glandula_(dead)","Type 2",51,0.0875,582.857142857143,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2014-02-26_YB-AFq9",2014-02-26,2014-02-26,"YB","AF","9","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","","Counts may be low due to blur and glare"
+"2014-02-26_YB-AFq5",2014-02-26,2014-02-26,"YB","AF","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Counts likely low due to glare."
+"2014-02-26_YB-AFq8",2014-02-26,2014-02-26,"YB","AF","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2014-02-26_YB-AFq9",2014-02-26,2014-02-26,"YB","AF","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","","Counts may be low due to blur and glare"
+"2014-02-26_YB-AFq5",2014-02-26,2014-02-26,"YB","AF","5","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","40%","Counts likely low due to glare."
+"2014-02-26_YB-AFq8",2014-02-26,2014-02-26,"YB","AF","8","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2014-02-26_YB-AFq9",2014-02-26,2014-02-26,"YB","AF","9","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","","Counts may be low due to blur and glare"
+"2014-02-26_YB-AFq5",2014-02-26,2014-02-26,"YB","AF","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","40%","Counts likely low due to glare."
+"2014-02-26_YB-AFq8",2014-02-26,2014-02-26,"YB","AF","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2014-02-26_YB-AFq9",2014-02-26,2014-02-26,"YB","AF","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","","Counts may be low due to blur and glare"
+"2014-02-26_YB-AFq5",2014-02-26,2014-02-26,"YB","AF","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Counts likely low due to glare."
+"2014-02-26_YB-AFq8",2014-02-26,2014-02-26,"YB","AF","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2014-02-26_YB-AFq9",2014-02-26,2014-02-26,"YB","AF","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","","Counts may be low due to blur and glare"
+"2014-02-26_YB-AFq5",2014-02-26,2014-02-26,"YB","AF","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Counts likely low due to glare."
+"2014-02-26_YB-AFq8",2014-02-26,2014-02-26,"YB","AF","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2014-02-26_YB-AFq9",2014-02-26,2014-02-26,"YB","AF","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","","Counts may be low due to blur and glare"
+"2014-02-26_YB-AFq5",2014-02-26,2014-02-26,"YB","AF","5","Lim","Limpets","Type 12",264,0.0875,3017.14285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Counts likely low due to glare."
+"2014-02-26_YB-AFq8",2014-02-26,2014-02-26,"YB","AF","8","Lim","Limpets","Type 12",2,0.0875,22.8571428571429,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2014-02-26_YB-AFq9",2014-02-26,2014-02-26,"YB","AF","9","Lim","Limpets","Type 12",8,0.0875,91.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","","Counts may be low due to blur and glare"
+"2014-02-26_YB-AFq5",2014-02-26,2014-02-26,"YB","AF","5","Ls","Littorina_sitkana","Type 13",732,0.0875,8365.71428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Counts likely low due to glare."
+"2014-02-26_YB-AFq8",2014-02-26,2014-02-26,"YB","AF","8","Ls","Littorina_sitkana","Type 13",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2014-02-26_YB-AFq9",2014-02-26,2014-02-26,"YB","AF","9","Ls","Littorina_sitkana","Type 13",70,0.0875,800,NA,"Stephanie Merhoff","Finished","Full","Cropped","","Counts may be low due to blur and glare"
+"2014-02-26_YB-AFq5",2014-02-26,2014-02-26,"YB","AF","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Counts likely low due to glare."
+"2014-02-26_YB-AFq8",2014-02-26,2014-02-26,"YB","AF","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2014-02-26_YB-AFq9",2014-02-26,2014-02-26,"YB","AF","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","","Counts may be low due to blur and glare"
+"2014-02-26_YB-AFq5",2014-02-26,2014-02-26,"YB","AF","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Counts likely low due to glare."
+"2014-02-26_YB-AFq8",2014-02-26,2014-02-26,"YB","AF","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2014-02-26_YB-AFq9",2014-02-26,2014-02-26,"YB","AF","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","","Counts may be low due to blur and glare"
+"2014-02-26_YB-AFq5",2014-02-26,2014-02-26,"YB","AF","5","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Counts likely low due to glare."
+"2014-02-26_YB-AFq8",2014-02-26,2014-02-26,"YB","AF","8","Myt","Mytilus_spp","Type 7",166,0.0875,1897.14285714286,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2014-02-26_YB-AFq9",2014-02-26,2014-02-26,"YB","AF","9","Myt","Mytilus_spp","Type 7",865,0.0875,9885.71428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","","Counts may be low due to blur and glare"
+"2014-02-26_YB-AFq5",2014-02-26,2014-02-26,"YB","AF","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Counts likely low due to glare."
+"2014-02-26_YB-AFq8",2014-02-26,2014-02-26,"YB","AF","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2014-02-26_YB-AFq9",2014-02-26,2014-02-26,"YB","AF","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","","Counts may be low due to blur and glare"
+"2014-02-26_YB-AFq5",2014-02-26,2014-02-26,"YB","AF","5","Mt","Mytilus_trossulus","Type 15",525,0.0875,6000,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Counts likely low due to glare."
+"2014-02-26_YB-AFq8",2014-02-26,2014-02-26,"YB","AF","8","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2014-02-26_YB-AFq9",2014-02-26,2014-02-26,"YB","AF","9","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","","Counts may be low due to blur and glare"
+"2014-02-26_YB-AFq5",2014-02-26,2014-02-26,"YB","AF","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Counts likely low due to glare."
+"2014-02-26_YB-AFq8",2014-02-26,2014-02-26,"YB","AF","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2014-02-26_YB-AFq9",2014-02-26,2014-02-26,"YB","AF","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","","Counts may be low due to blur and glare"
+"2014-02-26_YB-AFq5",2014-02-26,2014-02-26,"YB","AF","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Counts likely low due to glare."
+"2014-02-26_YB-AFq8",2014-02-26,2014-02-26,"YB","AF","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2014-02-26_YB-AFq9",2014-02-26,2014-02-26,"YB","AF","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","","Counts may be low due to blur and glare"
+"2014-02-26_YB-AFq5",2014-02-26,2014-02-26,"YB","AF","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Counts likely low due to glare."
+"2014-02-26_YB-AFq8",2014-02-26,2014-02-26,"YB","AF","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2014-02-26_YB-AFq9",2014-02-26,2014-02-26,"YB","AF","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","","Counts may be low due to blur and glare"
+"2014-02-26_YB-AFq5",2014-02-26,2014-02-26,"YB","AF","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Counts likely low due to glare."
+"2014-02-26_YB-AFq8",2014-02-26,2014-02-26,"YB","AF","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2014-02-26_YB-AFq9",2014-02-26,2014-02-26,"YB","AF","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","","Counts may be low due to blur and glare"
+"2014-02-26_YB-AFq5",2014-02-26,2014-02-26,"YB","AF","5","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Counts likely low due to glare."
+"2014-02-26_YB-AFq8",2014-02-26,2014-02-26,"YB","AF","8","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2014-02-26_YB-AFq9",2014-02-26,2014-02-26,"YB","AF","9","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","","Counts may be low due to blur and glare"
+"2014-02-26_YB-AFq5",2014-02-26,2014-02-26,"YB","AF","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Counts likely low due to glare."
+"2014-02-26_YB-AFq8",2014-02-26,2014-02-26,"YB","AF","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2014-02-26_YB-AFq9",2014-02-26,2014-02-26,"YB","AF","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","","Counts may be low due to blur and glare"
+"2014-02-26_YB-AFq5",2014-02-26,2014-02-26,"YB","AF","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Counts likely low due to glare."
+"2014-02-26_YB-AFq8",2014-02-26,2014-02-26,"YB","AF","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2014-02-26_YB-AFq9",2014-02-26,2014-02-26,"YB","AF","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","","Counts may be low due to blur and glare"
+"2014-02-26_YB-AFq5",2014-02-26,2014-02-26,"YB","AF","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Counts likely low due to glare."
+"2014-02-26_YB-AFq8",2014-02-26,2014-02-26,"YB","AF","8","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2014-02-26_YB-AFq9",2014-02-26,2014-02-26,"YB","AF","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","","Counts may be low due to blur and glare"
+"2014-02-26_YB-AFq5",2014-02-26,2014-02-26,"YB","AF","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Counts likely low due to glare."
+"2014-02-26_YB-AFq8",2014-02-26,2014-02-26,"YB","AF","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2014-02-26_YB-AFq9",2014-02-26,2014-02-26,"YB","AF","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","","Counts may be low due to blur and glare"
+"2014-02-26_YB-AFq5",2014-02-26,2014-02-26,"YB","AF","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Counts likely low due to glare."
+"2014-02-26_YB-AFq8",2014-02-26,2014-02-26,"YB","AF","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2014-02-26_YB-AFq9",2014-02-26,2014-02-26,"YB","AF","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","","Counts may be low due to blur and glare"
+"2014-02-26_YB-AFq5",2014-02-26,2014-02-26,"YB","AF","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Counts likely low due to glare."
+"2014-02-26_YB-AFq8",2014-02-26,2014-02-26,"YB","AF","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2014-02-26_YB-AFq9",2014-02-26,2014-02-26,"YB","AF","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","","Counts may be low due to blur and glare"
+"2014-02-26_YB-AGq1",2014-02-26,2014-02-26,"YB","AG","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2014-02-26_YB-AGq2",2014-02-26,2014-02-26,"YB","AG","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Mussels, limpet, and littorine densities likely higher but shadows and glare made counting difficult"
+"2014-02-26_YB-AGq3",2014-02-26,2014-02-26,"YB","AG","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-AGq7",2014-02-26,2014-02-26,"YB","AG","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2014-02-26_YB-AGq9",2014-02-26,2014-02-26,"YB","AG","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2014-02-26_YB-AGq1",2014-02-26,2014-02-26,"YB","AG","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2014-02-26_YB-AGq2",2014-02-26,2014-02-26,"YB","AG","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Mussels, limpet, and littorine densities likely higher but shadows and glare made counting difficult"
+"2014-02-26_YB-AGq3",2014-02-26,2014-02-26,"YB","AG","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-AGq7",2014-02-26,2014-02-26,"YB","AG","7","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2014-02-26_YB-AGq9",2014-02-26,2014-02-26,"YB","AG","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2014-02-26_YB-AGq1",2014-02-26,2014-02-26,"YB","AG","1","Bg","Balanus_glandula","Type 1",564,0.015625,36096,"c","Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2014-02-26_YB-AGq2",2014-02-26,2014-02-26,"YB","AG","2","Bg","Balanus_glandula","Type 1",711,0.015625,45504,"c","Isaac Shepard","Finished","Full","Cropped","0%","Mussels, limpet, and littorine densities likely higher but shadows and glare made counting difficult"
+"2014-02-26_YB-AGq3",2014-02-26,2014-02-26,"YB","AG","3","Bg","Balanus_glandula","Type 1",712,0.015625,45568,"c","Isaac Shepard","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-AGq7",2014-02-26,2014-02-26,"YB","AG","7","Bg","Balanus_glandula","Type 1",2251,0.0875,25725.7142857143,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2014-02-26_YB-AGq9",2014-02-26,2014-02-26,"YB","AG","9","Bg","Balanus_glandula","Type 1",2155,0.0875,24628.5714285714,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2014-02-26_YB-AGq1",2014-02-26,2014-02-26,"YB","AG","1","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2014-02-26_YB-AGq2",2014-02-26,2014-02-26,"YB","AG","2","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","0%","Mussels, limpet, and littorine densities likely higher but shadows and glare made counting difficult"
+"2014-02-26_YB-AGq3",2014-02-26,2014-02-26,"YB","AG","3","BgD","Balanus_glandula_(dead)","Type 2",10,0.015625,640,"c","Isaac Shepard","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-AGq7",2014-02-26,2014-02-26,"YB","AG","7","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2014-02-26_YB-AGq9",2014-02-26,2014-02-26,"YB","AG","9","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2014-02-26_YB-AGq1",2014-02-26,2014-02-26,"YB","AG","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2014-02-26_YB-AGq2",2014-02-26,2014-02-26,"YB","AG","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Mussels, limpet, and littorine densities likely higher but shadows and glare made counting difficult"
+"2014-02-26_YB-AGq3",2014-02-26,2014-02-26,"YB","AG","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-AGq7",2014-02-26,2014-02-26,"YB","AG","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2014-02-26_YB-AGq9",2014-02-26,2014-02-26,"YB","AG","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2014-02-26_YB-AGq1",2014-02-26,2014-02-26,"YB","AG","1","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2014-02-26_YB-AGq2",2014-02-26,2014-02-26,"YB","AG","2","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","0%","Mussels, limpet, and littorine densities likely higher but shadows and glare made counting difficult"
+"2014-02-26_YB-AGq3",2014-02-26,2014-02-26,"YB","AG","3","Cth","Chthamalus_dalli","Type 3",30,0.015625,1920,"c","Isaac Shepard","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-AGq7",2014-02-26,2014-02-26,"YB","AG","7","Cth","Chthamalus_dalli","Type 3",35,0.0875,400,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2014-02-26_YB-AGq9",2014-02-26,2014-02-26,"YB","AG","9","Cth","Chthamalus_dalli","Type 3",106,0.0875,1211.42857142857,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2014-02-26_YB-AGq1",2014-02-26,2014-02-26,"YB","AG","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2014-02-26_YB-AGq2",2014-02-26,2014-02-26,"YB","AG","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","0%","Mussels, limpet, and littorine densities likely higher but shadows and glare made counting difficult"
+"2014-02-26_YB-AGq3",2014-02-26,2014-02-26,"YB","AG","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-AGq7",2014-02-26,2014-02-26,"YB","AG","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2014-02-26_YB-AGq9",2014-02-26,2014-02-26,"YB","AG","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2014-02-26_YB-AGq1",2014-02-26,2014-02-26,"YB","AG","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2014-02-26_YB-AGq2",2014-02-26,2014-02-26,"YB","AG","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Mussels, limpet, and littorine densities likely higher but shadows and glare made counting difficult"
+"2014-02-26_YB-AGq3",2014-02-26,2014-02-26,"YB","AG","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-AGq7",2014-02-26,2014-02-26,"YB","AG","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2014-02-26_YB-AGq9",2014-02-26,2014-02-26,"YB","AG","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2014-02-26_YB-AGq1",2014-02-26,2014-02-26,"YB","AG","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2014-02-26_YB-AGq2",2014-02-26,2014-02-26,"YB","AG","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Mussels, limpet, and littorine densities likely higher but shadows and glare made counting difficult"
+"2014-02-26_YB-AGq3",2014-02-26,2014-02-26,"YB","AG","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-AGq7",2014-02-26,2014-02-26,"YB","AG","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2014-02-26_YB-AGq9",2014-02-26,2014-02-26,"YB","AG","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2014-02-26_YB-AGq1",2014-02-26,2014-02-26,"YB","AG","1","Lim","Limpets","Type 12",39,0.0875,445.714285714286,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2014-02-26_YB-AGq2",2014-02-26,2014-02-26,"YB","AG","2","Lim","Limpets","Type 12",9,0.0875,102.857142857143,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Mussels, limpet, and littorine densities likely higher but shadows and glare made counting difficult"
+"2014-02-26_YB-AGq3",2014-02-26,2014-02-26,"YB","AG","3","Lim","Limpets","Type 12",35,0.0875,400,NA,"Isaac Shepard","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-AGq7",2014-02-26,2014-02-26,"YB","AG","7","Lim","Limpets","Type 12",37,0.0875,422.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2014-02-26_YB-AGq9",2014-02-26,2014-02-26,"YB","AG","9","Lim","Limpets","Type 12",29,0.0875,331.428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2014-02-26_YB-AGq1",2014-02-26,2014-02-26,"YB","AG","1","Ls","Littorina_sitkana","Type 13",44,0.0875,502.857142857143,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2014-02-26_YB-AGq2",2014-02-26,2014-02-26,"YB","AG","2","Ls","Littorina_sitkana","Type 13",26,0.0875,297.142857142857,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Mussels, limpet, and littorine densities likely higher but shadows and glare made counting difficult"
+"2014-02-26_YB-AGq3",2014-02-26,2014-02-26,"YB","AG","3","Ls","Littorina_sitkana","Type 13",84,0.0875,960,NA,"Isaac Shepard","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-AGq7",2014-02-26,2014-02-26,"YB","AG","7","Ls","Littorina_sitkana","Type 13",41,0.0875,468.571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2014-02-26_YB-AGq9",2014-02-26,2014-02-26,"YB","AG","9","Ls","Littorina_sitkana","Type 13",59,0.0875,674.285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2014-02-26_YB-AGq1",2014-02-26,2014-02-26,"YB","AG","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2014-02-26_YB-AGq2",2014-02-26,2014-02-26,"YB","AG","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Mussels, limpet, and littorine densities likely higher but shadows and glare made counting difficult"
+"2014-02-26_YB-AGq3",2014-02-26,2014-02-26,"YB","AG","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-AGq7",2014-02-26,2014-02-26,"YB","AG","7","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2014-02-26_YB-AGq9",2014-02-26,2014-02-26,"YB","AG","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2014-02-26_YB-AGq1",2014-02-26,2014-02-26,"YB","AG","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2014-02-26_YB-AGq2",2014-02-26,2014-02-26,"YB","AG","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Mussels, limpet, and littorine densities likely higher but shadows and glare made counting difficult"
+"2014-02-26_YB-AGq3",2014-02-26,2014-02-26,"YB","AG","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-AGq7",2014-02-26,2014-02-26,"YB","AG","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2014-02-26_YB-AGq9",2014-02-26,2014-02-26,"YB","AG","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2014-02-26_YB-AGq1",2014-02-26,2014-02-26,"YB","AG","1","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2014-02-26_YB-AGq2",2014-02-26,2014-02-26,"YB","AG","2","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Mussels, limpet, and littorine densities likely higher but shadows and glare made counting difficult"
+"2014-02-26_YB-AGq3",2014-02-26,2014-02-26,"YB","AG","3","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-AGq7",2014-02-26,2014-02-26,"YB","AG","7","Myt","Mytilus_spp","Type 7",362,0.0875,4137.14285714286,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2014-02-26_YB-AGq9",2014-02-26,2014-02-26,"YB","AG","9","Myt","Mytilus_spp","Type 7",583,0.0875,6662.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2014-02-26_YB-AGq1",2014-02-26,2014-02-26,"YB","AG","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2014-02-26_YB-AGq2",2014-02-26,2014-02-26,"YB","AG","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Mussels, limpet, and littorine densities likely higher but shadows and glare made counting difficult"
+"2014-02-26_YB-AGq3",2014-02-26,2014-02-26,"YB","AG","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-AGq7",2014-02-26,2014-02-26,"YB","AG","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2014-02-26_YB-AGq9",2014-02-26,2014-02-26,"YB","AG","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2014-02-26_YB-AGq1",2014-02-26,2014-02-26,"YB","AG","1","Mt","Mytilus_trossulus","Type 15",55,0.0875,628.571428571429,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2014-02-26_YB-AGq2",2014-02-26,2014-02-26,"YB","AG","2","Mt","Mytilus_trossulus","Type 15",23,0.0875,262.857142857143,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Mussels, limpet, and littorine densities likely higher but shadows and glare made counting difficult"
+"2014-02-26_YB-AGq3",2014-02-26,2014-02-26,"YB","AG","3","Mt","Mytilus_trossulus","Type 15",180,0.0875,2057.14285714286,NA,"Isaac Shepard","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-AGq7",2014-02-26,2014-02-26,"YB","AG","7","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2014-02-26_YB-AGq9",2014-02-26,2014-02-26,"YB","AG","9","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2014-02-26_YB-AGq1",2014-02-26,2014-02-26,"YB","AG","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2014-02-26_YB-AGq2",2014-02-26,2014-02-26,"YB","AG","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Mussels, limpet, and littorine densities likely higher but shadows and glare made counting difficult"
+"2014-02-26_YB-AGq3",2014-02-26,2014-02-26,"YB","AG","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-AGq7",2014-02-26,2014-02-26,"YB","AG","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2014-02-26_YB-AGq9",2014-02-26,2014-02-26,"YB","AG","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2014-02-26_YB-AGq1",2014-02-26,2014-02-26,"YB","AG","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2014-02-26_YB-AGq2",2014-02-26,2014-02-26,"YB","AG","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Mussels, limpet, and littorine densities likely higher but shadows and glare made counting difficult"
+"2014-02-26_YB-AGq3",2014-02-26,2014-02-26,"YB","AG","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-AGq7",2014-02-26,2014-02-26,"YB","AG","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2014-02-26_YB-AGq9",2014-02-26,2014-02-26,"YB","AG","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2014-02-26_YB-AGq1",2014-02-26,2014-02-26,"YB","AG","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2014-02-26_YB-AGq2",2014-02-26,2014-02-26,"YB","AG","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Mussels, limpet, and littorine densities likely higher but shadows and glare made counting difficult"
+"2014-02-26_YB-AGq3",2014-02-26,2014-02-26,"YB","AG","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-AGq7",2014-02-26,2014-02-26,"YB","AG","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2014-02-26_YB-AGq9",2014-02-26,2014-02-26,"YB","AG","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2014-02-26_YB-AGq1",2014-02-26,2014-02-26,"YB","AG","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2014-02-26_YB-AGq2",2014-02-26,2014-02-26,"YB","AG","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Mussels, limpet, and littorine densities likely higher but shadows and glare made counting difficult"
+"2014-02-26_YB-AGq3",2014-02-26,2014-02-26,"YB","AG","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-AGq7",2014-02-26,2014-02-26,"YB","AG","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2014-02-26_YB-AGq9",2014-02-26,2014-02-26,"YB","AG","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2014-02-26_YB-AGq1",2014-02-26,2014-02-26,"YB","AG","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2014-02-26_YB-AGq2",2014-02-26,2014-02-26,"YB","AG","2","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Mussels, limpet, and littorine densities likely higher but shadows and glare made counting difficult"
+"2014-02-26_YB-AGq3",2014-02-26,2014-02-26,"YB","AG","3","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-AGq7",2014-02-26,2014-02-26,"YB","AG","7","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2014-02-26_YB-AGq9",2014-02-26,2014-02-26,"YB","AG","9","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2014-02-26_YB-AGq1",2014-02-26,2014-02-26,"YB","AG","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2014-02-26_YB-AGq2",2014-02-26,2014-02-26,"YB","AG","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Mussels, limpet, and littorine densities likely higher but shadows and glare made counting difficult"
+"2014-02-26_YB-AGq3",2014-02-26,2014-02-26,"YB","AG","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-AGq7",2014-02-26,2014-02-26,"YB","AG","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2014-02-26_YB-AGq9",2014-02-26,2014-02-26,"YB","AG","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2014-02-26_YB-AGq1",2014-02-26,2014-02-26,"YB","AG","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2014-02-26_YB-AGq2",2014-02-26,2014-02-26,"YB","AG","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Mussels, limpet, and littorine densities likely higher but shadows and glare made counting difficult"
+"2014-02-26_YB-AGq3",2014-02-26,2014-02-26,"YB","AG","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-AGq7",2014-02-26,2014-02-26,"YB","AG","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2014-02-26_YB-AGq9",2014-02-26,2014-02-26,"YB","AG","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2014-02-26_YB-AGq1",2014-02-26,2014-02-26,"YB","AG","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2014-02-26_YB-AGq2",2014-02-26,2014-02-26,"YB","AG","2","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Mussels, limpet, and littorine densities likely higher but shadows and glare made counting difficult"
+"2014-02-26_YB-AGq3",2014-02-26,2014-02-26,"YB","AG","3","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-AGq7",2014-02-26,2014-02-26,"YB","AG","7","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2014-02-26_YB-AGq9",2014-02-26,2014-02-26,"YB","AG","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2014-02-26_YB-AGq1",2014-02-26,2014-02-26,"YB","AG","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2014-02-26_YB-AGq2",2014-02-26,2014-02-26,"YB","AG","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Mussels, limpet, and littorine densities likely higher but shadows and glare made counting difficult"
+"2014-02-26_YB-AGq3",2014-02-26,2014-02-26,"YB","AG","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-AGq7",2014-02-26,2014-02-26,"YB","AG","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2014-02-26_YB-AGq9",2014-02-26,2014-02-26,"YB","AG","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2014-02-26_YB-AGq1",2014-02-26,2014-02-26,"YB","AG","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2014-02-26_YB-AGq2",2014-02-26,2014-02-26,"YB","AG","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Mussels, limpet, and littorine densities likely higher but shadows and glare made counting difficult"
+"2014-02-26_YB-AGq3",2014-02-26,2014-02-26,"YB","AG","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-AGq7",2014-02-26,2014-02-26,"YB","AG","7","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2014-02-26_YB-AGq9",2014-02-26,2014-02-26,"YB","AG","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2014-02-26_YB-AGq1",2014-02-26,2014-02-26,"YB","AG","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","","Barnacle Densities likely higher but glare made counting difficult"
+"2014-02-26_YB-AGq2",2014-02-26,2014-02-26,"YB","AG","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Mussels, limpet, and littorine densities likely higher but shadows and glare made counting difficult"
+"2014-02-26_YB-AGq3",2014-02-26,2014-02-26,"YB","AG","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-AGq7",2014-02-26,2014-02-26,"YB","AG","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2014-02-26_YB-AGq9",2014-02-26,2014-02-26,"YB","AG","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2014-02-26_YB-Bq1",2014-02-26,2014-02-26,"YB","B","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","8%",""
+"2014-02-26_YB-Bq2",2014-02-26,2014-02-26,"YB","B","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Bq3",2014-02-26,2014-02-26,"YB","B","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","12%",""
+"2014-02-26_YB-Bq4",2014-02-26,2014-02-26,"YB","B","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","6%",""
+"2014-02-26_YB-Bq5",2014-02-26,2014-02-26,"YB","B","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","4%","All counts may be low due to underwater sections; about 25% underwater"
+"2014-02-26_YB-Bq6",2014-02-26,2014-02-26,"YB","B","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Bq7",2014-02-26,2014-02-26,"YB","B","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-02-26_YB-Bq8",2014-02-26,2014-02-26,"YB","B","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Bq9",2014-02-26,2014-02-26,"YB","B","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-Bq1",2014-02-26,2014-02-26,"YB","B","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","8%",""
+"2014-02-26_YB-Bq2",2014-02-26,2014-02-26,"YB","B","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Bq3",2014-02-26,2014-02-26,"YB","B","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","12%",""
+"2014-02-26_YB-Bq4",2014-02-26,2014-02-26,"YB","B","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","6%",""
+"2014-02-26_YB-Bq5",2014-02-26,2014-02-26,"YB","B","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","4%","All counts may be low due to underwater sections; about 25% underwater"
+"2014-02-26_YB-Bq6",2014-02-26,2014-02-26,"YB","B","6","Ae","Anemones","Type 14",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Bq7",2014-02-26,2014-02-26,"YB","B","7","Ae","Anemones","Type 14",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-02-26_YB-Bq8",2014-02-26,2014-02-26,"YB","B","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Bq9",2014-02-26,2014-02-26,"YB","B","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-Bq1",2014-02-26,2014-02-26,"YB","B","1","Bg","Balanus_glandula","Type 1",1003,0.015625,64192,"c","Beatriz Vaca","Finished","Cropped","Cropped","8%",""
+"2014-02-26_YB-Bq2",2014-02-26,2014-02-26,"YB","B","2","Bg","Balanus_glandula","Type 1",1363,0.015625,87232,"c","Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Bq3",2014-02-26,2014-02-26,"YB","B","3","Bg","Balanus_glandula","Type 1",822,0.015625,52608,"c","Beatriz Vaca","Finished","Full","Cropped","12%",""
+"2014-02-26_YB-Bq4",2014-02-26,2014-02-26,"YB","B","4","Bg","Balanus_glandula","Type 1",1495,0.015625,95680,"c","Beatriz Vaca","Finished","Full","Cropped","6%",""
+"2014-02-26_YB-Bq5",2014-02-26,2014-02-26,"YB","B","5","Bg","Balanus_glandula","Type 1",771,0.015625,49344,"c","Beatriz Vaca","Finished","Full","Cropped","4%","All counts may be low due to underwater sections; about 25% underwater"
+"2014-02-26_YB-Bq6",2014-02-26,2014-02-26,"YB","B","6","Bg","Balanus_glandula","Type 1",1253,0.015625,80192,"c","Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Bq7",2014-02-26,2014-02-26,"YB","B","7","Bg","Balanus_glandula","Type 1",635,0.0875,7257.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-02-26_YB-Bq8",2014-02-26,2014-02-26,"YB","B","8","Bg","Balanus_glandula","Type 1",1053,0.015625,67392,"c","Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Bq9",2014-02-26,2014-02-26,"YB","B","9","Bg","Balanus_glandula","Type 1",383,0.015625,24512,"c","Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-Bq1",2014-02-26,2014-02-26,"YB","B","1","BgD","Balanus_glandula_(dead)","Type 2",43,0.015625,2752,"c","Beatriz Vaca","Finished","Cropped","Cropped","8%",""
+"2014-02-26_YB-Bq2",2014-02-26,2014-02-26,"YB","B","2","BgD","Balanus_glandula_(dead)","Type 2",43,0.015625,2752,"c","Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Bq3",2014-02-26,2014-02-26,"YB","B","3","BgD","Balanus_glandula_(dead)","Type 2",17,0.015625,1088,"c","Beatriz Vaca","Finished","Full","Cropped","12%",""
+"2014-02-26_YB-Bq4",2014-02-26,2014-02-26,"YB","B","4","BgD","Balanus_glandula_(dead)","Type 2",83,0.015625,5312,"c","Beatriz Vaca","Finished","Full","Cropped","6%",""
+"2014-02-26_YB-Bq5",2014-02-26,2014-02-26,"YB","B","5","BgD","Balanus_glandula_(dead)","Type 2",11,0.015625,704,"c","Beatriz Vaca","Finished","Full","Cropped","4%","All counts may be low due to underwater sections; about 25% underwater"
+"2014-02-26_YB-Bq6",2014-02-26,2014-02-26,"YB","B","6","BgD","Balanus_glandula_(dead)","Type 2",20,0.015625,1280,"c","Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Bq7",2014-02-26,2014-02-26,"YB","B","7","BgD","Balanus_glandula_(dead)","Type 2",11,0.0875,125.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-02-26_YB-Bq8",2014-02-26,2014-02-26,"YB","B","8","BgD","Balanus_glandula_(dead)","Type 2",20,0.015625,1280,"c","Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Bq9",2014-02-26,2014-02-26,"YB","B","9","BgD","Balanus_glandula_(dead)","Type 2",9,0.015625,576,"c","Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-Bq1",2014-02-26,2014-02-26,"YB","B","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","8%",""
+"2014-02-26_YB-Bq2",2014-02-26,2014-02-26,"YB","B","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Bq3",2014-02-26,2014-02-26,"YB","B","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","12%",""
+"2014-02-26_YB-Bq4",2014-02-26,2014-02-26,"YB","B","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","6%",""
+"2014-02-26_YB-Bq5",2014-02-26,2014-02-26,"YB","B","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","4%","All counts may be low due to underwater sections; about 25% underwater"
+"2014-02-26_YB-Bq6",2014-02-26,2014-02-26,"YB","B","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Bq7",2014-02-26,2014-02-26,"YB","B","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-02-26_YB-Bq8",2014-02-26,2014-02-26,"YB","B","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Bq9",2014-02-26,2014-02-26,"YB","B","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-Bq1",2014-02-26,2014-02-26,"YB","B","1","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","8%",""
+"2014-02-26_YB-Bq2",2014-02-26,2014-02-26,"YB","B","2","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Bq3",2014-02-26,2014-02-26,"YB","B","3","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","12%",""
+"2014-02-26_YB-Bq4",2014-02-26,2014-02-26,"YB","B","4","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","6%",""
+"2014-02-26_YB-Bq5",2014-02-26,2014-02-26,"YB","B","5","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","4%","All counts may be low due to underwater sections; about 25% underwater"
+"2014-02-26_YB-Bq6",2014-02-26,2014-02-26,"YB","B","6","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Bq7",2014-02-26,2014-02-26,"YB","B","7","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-02-26_YB-Bq8",2014-02-26,2014-02-26,"YB","B","8","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Bq9",2014-02-26,2014-02-26,"YB","B","9","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-Bq1",2014-02-26,2014-02-26,"YB","B","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","8%",""
+"2014-02-26_YB-Bq2",2014-02-26,2014-02-26,"YB","B","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Bq3",2014-02-26,2014-02-26,"YB","B","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","12%",""
+"2014-02-26_YB-Bq4",2014-02-26,2014-02-26,"YB","B","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","6%",""
+"2014-02-26_YB-Bq5",2014-02-26,2014-02-26,"YB","B","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","4%","All counts may be low due to underwater sections; about 25% underwater"
+"2014-02-26_YB-Bq6",2014-02-26,2014-02-26,"YB","B","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Bq7",2014-02-26,2014-02-26,"YB","B","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-02-26_YB-Bq8",2014-02-26,2014-02-26,"YB","B","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Bq9",2014-02-26,2014-02-26,"YB","B","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-Bq1",2014-02-26,2014-02-26,"YB","B","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","8%",""
+"2014-02-26_YB-Bq2",2014-02-26,2014-02-26,"YB","B","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Bq3",2014-02-26,2014-02-26,"YB","B","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","12%",""
+"2014-02-26_YB-Bq4",2014-02-26,2014-02-26,"YB","B","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","6%",""
+"2014-02-26_YB-Bq5",2014-02-26,2014-02-26,"YB","B","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","4%","All counts may be low due to underwater sections; about 25% underwater"
+"2014-02-26_YB-Bq6",2014-02-26,2014-02-26,"YB","B","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Bq7",2014-02-26,2014-02-26,"YB","B","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-02-26_YB-Bq8",2014-02-26,2014-02-26,"YB","B","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Bq9",2014-02-26,2014-02-26,"YB","B","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-Bq1",2014-02-26,2014-02-26,"YB","B","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","8%",""
+"2014-02-26_YB-Bq2",2014-02-26,2014-02-26,"YB","B","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Bq3",2014-02-26,2014-02-26,"YB","B","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","12%",""
+"2014-02-26_YB-Bq4",2014-02-26,2014-02-26,"YB","B","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","6%",""
+"2014-02-26_YB-Bq5",2014-02-26,2014-02-26,"YB","B","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","4%","All counts may be low due to underwater sections; about 25% underwater"
+"2014-02-26_YB-Bq6",2014-02-26,2014-02-26,"YB","B","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Bq7",2014-02-26,2014-02-26,"YB","B","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-02-26_YB-Bq8",2014-02-26,2014-02-26,"YB","B","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Bq9",2014-02-26,2014-02-26,"YB","B","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-Bq1",2014-02-26,2014-02-26,"YB","B","1","Lim","Limpets","Type 12",120,0.0875,1371.42857142857,NA,"Beatriz Vaca","Finished","Cropped","Cropped","8%",""
+"2014-02-26_YB-Bq2",2014-02-26,2014-02-26,"YB","B","2","Lim","Limpets","Type 12",260,0.0875,2971.42857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Bq3",2014-02-26,2014-02-26,"YB","B","3","Lim","Limpets","Type 12",79,0.0875,902.857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","12%",""
+"2014-02-26_YB-Bq4",2014-02-26,2014-02-26,"YB","B","4","Lim","Limpets","Type 12",61,0.0875,697.142857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","6%",""
+"2014-02-26_YB-Bq5",2014-02-26,2014-02-26,"YB","B","5","Lim","Limpets","Type 12",51,0.0875,582.857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","4%","All counts may be low due to underwater sections; about 25% underwater"
+"2014-02-26_YB-Bq6",2014-02-26,2014-02-26,"YB","B","6","Lim","Limpets","Type 12",35,0.0875,400,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Bq7",2014-02-26,2014-02-26,"YB","B","7","Lim","Limpets","Type 12",59,0.0875,674.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-02-26_YB-Bq8",2014-02-26,2014-02-26,"YB","B","8","Lim","Limpets","Type 12",24,0.0875,274.285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Bq9",2014-02-26,2014-02-26,"YB","B","9","Lim","Limpets","Type 12",55,0.0875,628.571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-Bq1",2014-02-26,2014-02-26,"YB","B","1","Ls","Littorina_sitkana","Type 13",21,0.0875,240,NA,"Beatriz Vaca","Finished","Cropped","Cropped","8%",""
+"2014-02-26_YB-Bq2",2014-02-26,2014-02-26,"YB","B","2","Ls","Littorina_sitkana","Type 13",30,0.0875,342.857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Bq3",2014-02-26,2014-02-26,"YB","B","3","Ls","Littorina_sitkana","Type 13",19,0.0875,217.142857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","12%",""
+"2014-02-26_YB-Bq4",2014-02-26,2014-02-26,"YB","B","4","Ls","Littorina_sitkana","Type 13",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","6%",""
+"2014-02-26_YB-Bq5",2014-02-26,2014-02-26,"YB","B","5","Ls","Littorina_sitkana","Type 13",23,0.0875,262.857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","4%","All counts may be low due to underwater sections; about 25% underwater"
+"2014-02-26_YB-Bq6",2014-02-26,2014-02-26,"YB","B","6","Ls","Littorina_sitkana","Type 13",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Bq7",2014-02-26,2014-02-26,"YB","B","7","Ls","Littorina_sitkana","Type 13",38,0.0875,434.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-02-26_YB-Bq8",2014-02-26,2014-02-26,"YB","B","8","Ls","Littorina_sitkana","Type 13",11,0.0875,125.714285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Bq9",2014-02-26,2014-02-26,"YB","B","9","Ls","Littorina_sitkana","Type 13",16,0.0875,182.857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-Bq1",2014-02-26,2014-02-26,"YB","B","1","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","8%",""
+"2014-02-26_YB-Bq2",2014-02-26,2014-02-26,"YB","B","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Bq3",2014-02-26,2014-02-26,"YB","B","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","12%",""
+"2014-02-26_YB-Bq4",2014-02-26,2014-02-26,"YB","B","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","6%",""
+"2014-02-26_YB-Bq5",2014-02-26,2014-02-26,"YB","B","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","4%","All counts may be low due to underwater sections; about 25% underwater"
+"2014-02-26_YB-Bq6",2014-02-26,2014-02-26,"YB","B","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Bq7",2014-02-26,2014-02-26,"YB","B","7","Mc","Mytilus_californianus","Type 17",10,0.0875,114.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-02-26_YB-Bq8",2014-02-26,2014-02-26,"YB","B","8","Mc","Mytilus_californianus","Type 17",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Bq9",2014-02-26,2014-02-26,"YB","B","9","Mc","Mytilus_californianus","Type 17",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-Bq1",2014-02-26,2014-02-26,"YB","B","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","8%",""
+"2014-02-26_YB-Bq2",2014-02-26,2014-02-26,"YB","B","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Bq3",2014-02-26,2014-02-26,"YB","B","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","12%",""
+"2014-02-26_YB-Bq4",2014-02-26,2014-02-26,"YB","B","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","6%",""
+"2014-02-26_YB-Bq5",2014-02-26,2014-02-26,"YB","B","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","4%","All counts may be low due to underwater sections; about 25% underwater"
+"2014-02-26_YB-Bq6",2014-02-26,2014-02-26,"YB","B","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Bq7",2014-02-26,2014-02-26,"YB","B","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-02-26_YB-Bq8",2014-02-26,2014-02-26,"YB","B","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Bq9",2014-02-26,2014-02-26,"YB","B","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-Bq1",2014-02-26,2014-02-26,"YB","B","1","Myt","Mytilus_spp","Type 7",122,0.015625,7808,"c","Beatriz Vaca","Finished","Cropped","Cropped","8%",""
+"2014-02-26_YB-Bq2",2014-02-26,2014-02-26,"YB","B","2","Myt","Mytilus_spp","Type 7",373,0.0875,4262.85714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Bq3",2014-02-26,2014-02-26,"YB","B","3","Myt","Mytilus_spp","Type 7",218,0.0875,2491.42857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","12%",""
+"2014-02-26_YB-Bq4",2014-02-26,2014-02-26,"YB","B","4","Myt","Mytilus_spp","Type 7",83,0.0875,948.571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","6%",""
+"2014-02-26_YB-Bq5",2014-02-26,2014-02-26,"YB","B","5","Myt","Mytilus_spp","Type 7",52,0.0875,594.285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","4%","All counts may be low due to underwater sections; about 25% underwater"
+"2014-02-26_YB-Bq6",2014-02-26,2014-02-26,"YB","B","6","Myt","Mytilus_spp","Type 7",106,0.0875,1211.42857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Bq7",2014-02-26,2014-02-26,"YB","B","7","Myt","Mytilus_spp","Type 7",23,0.0875,262.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-02-26_YB-Bq8",2014-02-26,2014-02-26,"YB","B","8","Myt","Mytilus_spp","Type 7",125,0.0875,1428.57142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Bq9",2014-02-26,2014-02-26,"YB","B","9","Myt","Mytilus_spp","Type 7",143,0.0875,1634.28571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-Bq1",2014-02-26,2014-02-26,"YB","B","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","8%",""
+"2014-02-26_YB-Bq2",2014-02-26,2014-02-26,"YB","B","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Bq3",2014-02-26,2014-02-26,"YB","B","3","MytD","Mytilus_spp_(dead)","Type 8",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","12%",""
+"2014-02-26_YB-Bq4",2014-02-26,2014-02-26,"YB","B","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","6%",""
+"2014-02-26_YB-Bq5",2014-02-26,2014-02-26,"YB","B","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","4%","All counts may be low due to underwater sections; about 25% underwater"
+"2014-02-26_YB-Bq6",2014-02-26,2014-02-26,"YB","B","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Bq7",2014-02-26,2014-02-26,"YB","B","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-02-26_YB-Bq8",2014-02-26,2014-02-26,"YB","B","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Bq9",2014-02-26,2014-02-26,"YB","B","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-Bq1",2014-02-26,2014-02-26,"YB","B","1","Mt","Mytilus_trossulus","Type 15",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","8%",""
+"2014-02-26_YB-Bq2",2014-02-26,2014-02-26,"YB","B","2","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Bq3",2014-02-26,2014-02-26,"YB","B","3","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","12%",""
+"2014-02-26_YB-Bq4",2014-02-26,2014-02-26,"YB","B","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","6%",""
+"2014-02-26_YB-Bq5",2014-02-26,2014-02-26,"YB","B","5","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","4%","All counts may be low due to underwater sections; about 25% underwater"
+"2014-02-26_YB-Bq6",2014-02-26,2014-02-26,"YB","B","6","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Bq7",2014-02-26,2014-02-26,"YB","B","7","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-02-26_YB-Bq8",2014-02-26,2014-02-26,"YB","B","8","Mt","Mytilus_trossulus","Type 15",95,0.0875,1085.71428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Bq9",2014-02-26,2014-02-26,"YB","B","9","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-Bq1",2014-02-26,2014-02-26,"YB","B","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","8%",""
+"2014-02-26_YB-Bq2",2014-02-26,2014-02-26,"YB","B","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Bq3",2014-02-26,2014-02-26,"YB","B","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","12%",""
+"2014-02-26_YB-Bq4",2014-02-26,2014-02-26,"YB","B","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","6%",""
+"2014-02-26_YB-Bq5",2014-02-26,2014-02-26,"YB","B","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","4%","All counts may be low due to underwater sections; about 25% underwater"
+"2014-02-26_YB-Bq6",2014-02-26,2014-02-26,"YB","B","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Bq7",2014-02-26,2014-02-26,"YB","B","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-02-26_YB-Bq8",2014-02-26,2014-02-26,"YB","B","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Bq9",2014-02-26,2014-02-26,"YB","B","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-Bq1",2014-02-26,2014-02-26,"YB","B","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","8%",""
+"2014-02-26_YB-Bq2",2014-02-26,2014-02-26,"YB","B","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Bq3",2014-02-26,2014-02-26,"YB","B","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","12%",""
+"2014-02-26_YB-Bq4",2014-02-26,2014-02-26,"YB","B","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","6%",""
+"2014-02-26_YB-Bq5",2014-02-26,2014-02-26,"YB","B","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","4%","All counts may be low due to underwater sections; about 25% underwater"
+"2014-02-26_YB-Bq6",2014-02-26,2014-02-26,"YB","B","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Bq7",2014-02-26,2014-02-26,"YB","B","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-02-26_YB-Bq8",2014-02-26,2014-02-26,"YB","B","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Bq9",2014-02-26,2014-02-26,"YB","B","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-Bq1",2014-02-26,2014-02-26,"YB","B","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","8%",""
+"2014-02-26_YB-Bq2",2014-02-26,2014-02-26,"YB","B","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Bq3",2014-02-26,2014-02-26,"YB","B","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","12%",""
+"2014-02-26_YB-Bq4",2014-02-26,2014-02-26,"YB","B","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","6%",""
+"2014-02-26_YB-Bq5",2014-02-26,2014-02-26,"YB","B","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","4%","All counts may be low due to underwater sections; about 25% underwater"
+"2014-02-26_YB-Bq6",2014-02-26,2014-02-26,"YB","B","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Bq7",2014-02-26,2014-02-26,"YB","B","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-02-26_YB-Bq8",2014-02-26,2014-02-26,"YB","B","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Bq9",2014-02-26,2014-02-26,"YB","B","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-Bq1",2014-02-26,2014-02-26,"YB","B","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","8%",""
+"2014-02-26_YB-Bq2",2014-02-26,2014-02-26,"YB","B","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Bq3",2014-02-26,2014-02-26,"YB","B","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","12%",""
+"2014-02-26_YB-Bq4",2014-02-26,2014-02-26,"YB","B","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","6%",""
+"2014-02-26_YB-Bq5",2014-02-26,2014-02-26,"YB","B","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","4%","All counts may be low due to underwater sections; about 25% underwater"
+"2014-02-26_YB-Bq6",2014-02-26,2014-02-26,"YB","B","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Bq7",2014-02-26,2014-02-26,"YB","B","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-02-26_YB-Bq8",2014-02-26,2014-02-26,"YB","B","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Bq9",2014-02-26,2014-02-26,"YB","B","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-Bq1",2014-02-26,2014-02-26,"YB","B","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","8%",""
+"2014-02-26_YB-Bq2",2014-02-26,2014-02-26,"YB","B","2","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Bq3",2014-02-26,2014-02-26,"YB","B","3","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","12%",""
+"2014-02-26_YB-Bq4",2014-02-26,2014-02-26,"YB","B","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","6%",""
+"2014-02-26_YB-Bq5",2014-02-26,2014-02-26,"YB","B","5","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","4%","All counts may be low due to underwater sections; about 25% underwater"
+"2014-02-26_YB-Bq6",2014-02-26,2014-02-26,"YB","B","6","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Bq7",2014-02-26,2014-02-26,"YB","B","7","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-02-26_YB-Bq8",2014-02-26,2014-02-26,"YB","B","8","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Bq9",2014-02-26,2014-02-26,"YB","B","9","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-Bq1",2014-02-26,2014-02-26,"YB","B","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","8%",""
+"2014-02-26_YB-Bq2",2014-02-26,2014-02-26,"YB","B","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Bq3",2014-02-26,2014-02-26,"YB","B","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","12%",""
+"2014-02-26_YB-Bq4",2014-02-26,2014-02-26,"YB","B","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","6%",""
+"2014-02-26_YB-Bq5",2014-02-26,2014-02-26,"YB","B","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","4%","All counts may be low due to underwater sections; about 25% underwater"
+"2014-02-26_YB-Bq6",2014-02-26,2014-02-26,"YB","B","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Bq7",2014-02-26,2014-02-26,"YB","B","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-02-26_YB-Bq8",2014-02-26,2014-02-26,"YB","B","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Bq9",2014-02-26,2014-02-26,"YB","B","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-Bq1",2014-02-26,2014-02-26,"YB","B","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","8%",""
+"2014-02-26_YB-Bq2",2014-02-26,2014-02-26,"YB","B","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Bq3",2014-02-26,2014-02-26,"YB","B","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","12%",""
+"2014-02-26_YB-Bq4",2014-02-26,2014-02-26,"YB","B","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","6%",""
+"2014-02-26_YB-Bq5",2014-02-26,2014-02-26,"YB","B","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","4%","All counts may be low due to underwater sections; about 25% underwater"
+"2014-02-26_YB-Bq6",2014-02-26,2014-02-26,"YB","B","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Bq7",2014-02-26,2014-02-26,"YB","B","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-02-26_YB-Bq8",2014-02-26,2014-02-26,"YB","B","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Bq9",2014-02-26,2014-02-26,"YB","B","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-Bq1",2014-02-26,2014-02-26,"YB","B","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","8%",""
+"2014-02-26_YB-Bq2",2014-02-26,2014-02-26,"YB","B","2","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Bq3",2014-02-26,2014-02-26,"YB","B","3","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","12%",""
+"2014-02-26_YB-Bq4",2014-02-26,2014-02-26,"YB","B","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","6%",""
+"2014-02-26_YB-Bq5",2014-02-26,2014-02-26,"YB","B","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","4%","All counts may be low due to underwater sections; about 25% underwater"
+"2014-02-26_YB-Bq6",2014-02-26,2014-02-26,"YB","B","6","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Bq7",2014-02-26,2014-02-26,"YB","B","7","Pp","Pollicipes_polymerus","Type 11",19,0.0875,217.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-02-26_YB-Bq8",2014-02-26,2014-02-26,"YB","B","8","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Bq9",2014-02-26,2014-02-26,"YB","B","9","Pp","Pollicipes_polymerus","Type 11",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-Bq1",2014-02-26,2014-02-26,"YB","B","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","8%",""
+"2014-02-26_YB-Bq2",2014-02-26,2014-02-26,"YB","B","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Bq3",2014-02-26,2014-02-26,"YB","B","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","12%",""
+"2014-02-26_YB-Bq4",2014-02-26,2014-02-26,"YB","B","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","6%",""
+"2014-02-26_YB-Bq5",2014-02-26,2014-02-26,"YB","B","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","4%","All counts may be low due to underwater sections; about 25% underwater"
+"2014-02-26_YB-Bq6",2014-02-26,2014-02-26,"YB","B","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Bq7",2014-02-26,2014-02-26,"YB","B","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-02-26_YB-Bq8",2014-02-26,2014-02-26,"YB","B","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Bq9",2014-02-26,2014-02-26,"YB","B","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-Bq1",2014-02-26,2014-02-26,"YB","B","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","8%",""
+"2014-02-26_YB-Bq2",2014-02-26,2014-02-26,"YB","B","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Bq3",2014-02-26,2014-02-26,"YB","B","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","12%",""
+"2014-02-26_YB-Bq4",2014-02-26,2014-02-26,"YB","B","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","6%",""
+"2014-02-26_YB-Bq5",2014-02-26,2014-02-26,"YB","B","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","4%","All counts may be low due to underwater sections; about 25% underwater"
+"2014-02-26_YB-Bq6",2014-02-26,2014-02-26,"YB","B","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Bq7",2014-02-26,2014-02-26,"YB","B","7","Sc","Semibalanus_cariosus","Type 5",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-02-26_YB-Bq8",2014-02-26,2014-02-26,"YB","B","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Bq9",2014-02-26,2014-02-26,"YB","B","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-Bq1",2014-02-26,2014-02-26,"YB","B","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","8%",""
+"2014-02-26_YB-Bq2",2014-02-26,2014-02-26,"YB","B","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Bq3",2014-02-26,2014-02-26,"YB","B","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","12%",""
+"2014-02-26_YB-Bq4",2014-02-26,2014-02-26,"YB","B","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","6%",""
+"2014-02-26_YB-Bq5",2014-02-26,2014-02-26,"YB","B","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","4%","All counts may be low due to underwater sections; about 25% underwater"
+"2014-02-26_YB-Bq6",2014-02-26,2014-02-26,"YB","B","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Bq7",2014-02-26,2014-02-26,"YB","B","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-02-26_YB-Bq8",2014-02-26,2014-02-26,"YB","B","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Bq9",2014-02-26,2014-02-26,"YB","B","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-BBq1",2014-02-26,2014-02-26,"YB","BB","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to blur"
+"2014-02-26_YB-BBq2",2014-02-26,2014-02-26,"YB","BB","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-02-26_YB-BBq9",2014-02-26,2014-02-26,"YB","BB","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-BBq1",2014-02-26,2014-02-26,"YB","BB","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to blur"
+"2014-02-26_YB-BBq2",2014-02-26,2014-02-26,"YB","BB","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-02-26_YB-BBq9",2014-02-26,2014-02-26,"YB","BB","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-BBq1",2014-02-26,2014-02-26,"YB","BB","1","Bg","Balanus_glandula","Type 1",858,0.015625,54912,"c","Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to blur"
+"2014-02-26_YB-BBq2",2014-02-26,2014-02-26,"YB","BB","2","Bg","Balanus_glandula","Type 1",820,0.015625,52480,"c","Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-02-26_YB-BBq9",2014-02-26,2014-02-26,"YB","BB","9","Bg","Balanus_glandula","Type 1",781,0.015625,49984,"c","Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-BBq1",2014-02-26,2014-02-26,"YB","BB","1","BgD","Balanus_glandula_(dead)","Type 2",1,0.015625,64,"c","Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to blur"
+"2014-02-26_YB-BBq2",2014-02-26,2014-02-26,"YB","BB","2","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-02-26_YB-BBq9",2014-02-26,2014-02-26,"YB","BB","9","BgD","Balanus_glandula_(dead)","Type 2",2,0.015625,128,"c","Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-BBq1",2014-02-26,2014-02-26,"YB","BB","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to blur"
+"2014-02-26_YB-BBq2",2014-02-26,2014-02-26,"YB","BB","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-02-26_YB-BBq9",2014-02-26,2014-02-26,"YB","BB","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-BBq1",2014-02-26,2014-02-26,"YB","BB","1","Cth","Chthamalus_dalli","Type 3",9,0.015625,576,"c","Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to blur"
+"2014-02-26_YB-BBq2",2014-02-26,2014-02-26,"YB","BB","2","Cth","Chthamalus_dalli","Type 3",6,0.015625,384,"c","Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-02-26_YB-BBq9",2014-02-26,2014-02-26,"YB","BB","9","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-BBq1",2014-02-26,2014-02-26,"YB","BB","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to blur"
+"2014-02-26_YB-BBq2",2014-02-26,2014-02-26,"YB","BB","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-02-26_YB-BBq9",2014-02-26,2014-02-26,"YB","BB","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-BBq1",2014-02-26,2014-02-26,"YB","BB","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to blur"
+"2014-02-26_YB-BBq2",2014-02-26,2014-02-26,"YB","BB","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-02-26_YB-BBq9",2014-02-26,2014-02-26,"YB","BB","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-BBq1",2014-02-26,2014-02-26,"YB","BB","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to blur"
+"2014-02-26_YB-BBq2",2014-02-26,2014-02-26,"YB","BB","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-02-26_YB-BBq9",2014-02-26,2014-02-26,"YB","BB","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-BBq1",2014-02-26,2014-02-26,"YB","BB","1","Lim","Limpets","Type 12",8,0.0875,91.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to blur"
+"2014-02-26_YB-BBq2",2014-02-26,2014-02-26,"YB","BB","2","Lim","Limpets","Type 12",18,0.0875,205.714285714286,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-02-26_YB-BBq9",2014-02-26,2014-02-26,"YB","BB","9","Lim","Limpets","Type 12",8,0.0875,91.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-BBq1",2014-02-26,2014-02-26,"YB","BB","1","Ls","Littorina_sitkana","Type 13",162,0.0875,1851.42857142857,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to blur"
+"2014-02-26_YB-BBq2",2014-02-26,2014-02-26,"YB","BB","2","Ls","Littorina_sitkana","Type 13",160,0.0875,1828.57142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-02-26_YB-BBq9",2014-02-26,2014-02-26,"YB","BB","9","Ls","Littorina_sitkana","Type 13",163,0.0875,1862.85714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-BBq1",2014-02-26,2014-02-26,"YB","BB","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to blur"
+"2014-02-26_YB-BBq2",2014-02-26,2014-02-26,"YB","BB","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-02-26_YB-BBq9",2014-02-26,2014-02-26,"YB","BB","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-BBq1",2014-02-26,2014-02-26,"YB","BB","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to blur"
+"2014-02-26_YB-BBq2",2014-02-26,2014-02-26,"YB","BB","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-02-26_YB-BBq9",2014-02-26,2014-02-26,"YB","BB","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-BBq1",2014-02-26,2014-02-26,"YB","BB","1","Myt","Mytilus_spp","Type 7",494,0.0875,5645.71428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to blur"
+"2014-02-26_YB-BBq2",2014-02-26,2014-02-26,"YB","BB","2","Myt","Mytilus_spp","Type 7",492,0.0875,5622.85714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-02-26_YB-BBq9",2014-02-26,2014-02-26,"YB","BB","9","Myt","Mytilus_spp","Type 7",223,0.0875,2548.57142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-BBq1",2014-02-26,2014-02-26,"YB","BB","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to blur"
+"2014-02-26_YB-BBq2",2014-02-26,2014-02-26,"YB","BB","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-02-26_YB-BBq9",2014-02-26,2014-02-26,"YB","BB","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-BBq1",2014-02-26,2014-02-26,"YB","BB","1","Mt","Mytilus_trossulus","Type 15",21,0.0875,240,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to blur"
+"2014-02-26_YB-BBq2",2014-02-26,2014-02-26,"YB","BB","2","Mt","Mytilus_trossulus","Type 15",16,0.0875,182.857142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-02-26_YB-BBq9",2014-02-26,2014-02-26,"YB","BB","9","Mt","Mytilus_trossulus","Type 15",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-BBq1",2014-02-26,2014-02-26,"YB","BB","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to blur"
+"2014-02-26_YB-BBq2",2014-02-26,2014-02-26,"YB","BB","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-02-26_YB-BBq9",2014-02-26,2014-02-26,"YB","BB","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-BBq1",2014-02-26,2014-02-26,"YB","BB","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to blur"
+"2014-02-26_YB-BBq2",2014-02-26,2014-02-26,"YB","BB","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-02-26_YB-BBq9",2014-02-26,2014-02-26,"YB","BB","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-BBq1",2014-02-26,2014-02-26,"YB","BB","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to blur"
+"2014-02-26_YB-BBq2",2014-02-26,2014-02-26,"YB","BB","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-02-26_YB-BBq9",2014-02-26,2014-02-26,"YB","BB","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-BBq1",2014-02-26,2014-02-26,"YB","BB","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to blur"
+"2014-02-26_YB-BBq2",2014-02-26,2014-02-26,"YB","BB","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-02-26_YB-BBq9",2014-02-26,2014-02-26,"YB","BB","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-BBq1",2014-02-26,2014-02-26,"YB","BB","1","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to blur"
+"2014-02-26_YB-BBq2",2014-02-26,2014-02-26,"YB","BB","2","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-02-26_YB-BBq9",2014-02-26,2014-02-26,"YB","BB","9","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-BBq1",2014-02-26,2014-02-26,"YB","BB","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to blur"
+"2014-02-26_YB-BBq2",2014-02-26,2014-02-26,"YB","BB","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-02-26_YB-BBq9",2014-02-26,2014-02-26,"YB","BB","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-BBq1",2014-02-26,2014-02-26,"YB","BB","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to blur"
+"2014-02-26_YB-BBq2",2014-02-26,2014-02-26,"YB","BB","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-02-26_YB-BBq9",2014-02-26,2014-02-26,"YB","BB","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-BBq1",2014-02-26,2014-02-26,"YB","BB","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to blur"
+"2014-02-26_YB-BBq2",2014-02-26,2014-02-26,"YB","BB","2","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-02-26_YB-BBq9",2014-02-26,2014-02-26,"YB","BB","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-BBq1",2014-02-26,2014-02-26,"YB","BB","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to blur"
+"2014-02-26_YB-BBq2",2014-02-26,2014-02-26,"YB","BB","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-02-26_YB-BBq9",2014-02-26,2014-02-26,"YB","BB","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-BBq1",2014-02-26,2014-02-26,"YB","BB","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to blur"
+"2014-02-26_YB-BBq2",2014-02-26,2014-02-26,"YB","BB","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-02-26_YB-BBq9",2014-02-26,2014-02-26,"YB","BB","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-BBq1",2014-02-26,2014-02-26,"YB","BB","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to blur"
+"2014-02-26_YB-BBq2",2014-02-26,2014-02-26,"YB","BB","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-02-26_YB-BBq9",2014-02-26,2014-02-26,"YB","BB","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-BCq3",2014-02-26,2014-02-26,"YB","BC","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","7%","Counts likely low due to algae film on part of patch"
+"2014-02-26_YB-BCq5",2014-02-26,2014-02-26,"YB","BC","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%",""
+"2014-02-26_YB-BCq9",2014-02-26,2014-02-26,"YB","BC","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-BCq3",2014-02-26,2014-02-26,"YB","BC","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","7%","Counts likely low due to algae film on part of patch"
+"2014-02-26_YB-BCq5",2014-02-26,2014-02-26,"YB","BC","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%",""
+"2014-02-26_YB-BCq9",2014-02-26,2014-02-26,"YB","BC","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-BCq3",2014-02-26,2014-02-26,"YB","BC","3","Bg","Balanus_glandula","Type 1",1410,0.015625,90240,"c","Stephanie Merhoff","Finished","Full","Cropped","7%","Counts likely low due to algae film on part of patch"
+"2014-02-26_YB-BCq5",2014-02-26,2014-02-26,"YB","BC","5","Bg","Balanus_glandula","Type 1",974,0.015625,62336,"c","Stephanie Merhoff","Finished","Full","Cropped","3%",""
+"2014-02-26_YB-BCq9",2014-02-26,2014-02-26,"YB","BC","9","Bg","Balanus_glandula","Type 1",1229,0.015625,78656,"c","Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-BCq3",2014-02-26,2014-02-26,"YB","BC","3","BgD","Balanus_glandula_(dead)","Type 2",7,0.015625,448,"c","Stephanie Merhoff","Finished","Full","Cropped","7%","Counts likely low due to algae film on part of patch"
+"2014-02-26_YB-BCq5",2014-02-26,2014-02-26,"YB","BC","5","BgD","Balanus_glandula_(dead)","Type 2",4,0.015625,256,"c","Stephanie Merhoff","Finished","Full","Cropped","3%",""
+"2014-02-26_YB-BCq9",2014-02-26,2014-02-26,"YB","BC","9","BgD","Balanus_glandula_(dead)","Type 2",2,0.015625,128,"c","Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-BCq3",2014-02-26,2014-02-26,"YB","BC","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","7%","Counts likely low due to algae film on part of patch"
+"2014-02-26_YB-BCq5",2014-02-26,2014-02-26,"YB","BC","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%",""
+"2014-02-26_YB-BCq9",2014-02-26,2014-02-26,"YB","BC","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-BCq3",2014-02-26,2014-02-26,"YB","BC","3","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","7%","Counts likely low due to algae film on part of patch"
+"2014-02-26_YB-BCq5",2014-02-26,2014-02-26,"YB","BC","5","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","3%",""
+"2014-02-26_YB-BCq9",2014-02-26,2014-02-26,"YB","BC","9","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-BCq3",2014-02-26,2014-02-26,"YB","BC","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","7%","Counts likely low due to algae film on part of patch"
+"2014-02-26_YB-BCq5",2014-02-26,2014-02-26,"YB","BC","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","3%",""
+"2014-02-26_YB-BCq9",2014-02-26,2014-02-26,"YB","BC","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-BCq3",2014-02-26,2014-02-26,"YB","BC","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","7%","Counts likely low due to algae film on part of patch"
+"2014-02-26_YB-BCq5",2014-02-26,2014-02-26,"YB","BC","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%",""
+"2014-02-26_YB-BCq9",2014-02-26,2014-02-26,"YB","BC","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-BCq3",2014-02-26,2014-02-26,"YB","BC","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","7%","Counts likely low due to algae film on part of patch"
+"2014-02-26_YB-BCq5",2014-02-26,2014-02-26,"YB","BC","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%",""
+"2014-02-26_YB-BCq9",2014-02-26,2014-02-26,"YB","BC","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-BCq3",2014-02-26,2014-02-26,"YB","BC","3","Lim","Limpets","Type 12",20,0.0875,228.571428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","7%","Counts likely low due to algae film on part of patch"
+"2014-02-26_YB-BCq5",2014-02-26,2014-02-26,"YB","BC","5","Lim","Limpets","Type 12",12,0.0875,137.142857142857,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%",""
+"2014-02-26_YB-BCq9",2014-02-26,2014-02-26,"YB","BC","9","Lim","Limpets","Type 12",18,0.0875,205.714285714286,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-BCq3",2014-02-26,2014-02-26,"YB","BC","3","Ls","Littorina_sitkana","Type 13",181,0.0875,2068.57142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","7%","Counts likely low due to algae film on part of patch"
+"2014-02-26_YB-BCq5",2014-02-26,2014-02-26,"YB","BC","5","Ls","Littorina_sitkana","Type 13",179,0.0875,2045.71428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%",""
+"2014-02-26_YB-BCq9",2014-02-26,2014-02-26,"YB","BC","9","Ls","Littorina_sitkana","Type 13",180,0.0875,2057.14285714286,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-BCq3",2014-02-26,2014-02-26,"YB","BC","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","7%","Counts likely low due to algae film on part of patch"
+"2014-02-26_YB-BCq5",2014-02-26,2014-02-26,"YB","BC","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%",""
+"2014-02-26_YB-BCq9",2014-02-26,2014-02-26,"YB","BC","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-BCq3",2014-02-26,2014-02-26,"YB","BC","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","7%","Counts likely low due to algae film on part of patch"
+"2014-02-26_YB-BCq5",2014-02-26,2014-02-26,"YB","BC","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%",""
+"2014-02-26_YB-BCq9",2014-02-26,2014-02-26,"YB","BC","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-BCq3",2014-02-26,2014-02-26,"YB","BC","3","Myt","Mytilus_spp","Type 7",276,0.0875,3154.28571428571,NA,"Stephanie Merhoff","Finished","Full","Cropped","7%","Counts likely low due to algae film on part of patch"
+"2014-02-26_YB-BCq5",2014-02-26,2014-02-26,"YB","BC","5","Myt","Mytilus_spp","Type 7",386,0.0875,4411.42857142857,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%",""
+"2014-02-26_YB-BCq9",2014-02-26,2014-02-26,"YB","BC","9","Myt","Mytilus_spp","Type 7",371,0.0875,4240,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-BCq3",2014-02-26,2014-02-26,"YB","BC","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","7%","Counts likely low due to algae film on part of patch"
+"2014-02-26_YB-BCq5",2014-02-26,2014-02-26,"YB","BC","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%",""
+"2014-02-26_YB-BCq9",2014-02-26,2014-02-26,"YB","BC","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-BCq3",2014-02-26,2014-02-26,"YB","BC","3","Mt","Mytilus_trossulus","Type 15",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","7%","Counts likely low due to algae film on part of patch"
+"2014-02-26_YB-BCq5",2014-02-26,2014-02-26,"YB","BC","5","Mt","Mytilus_trossulus","Type 15",19,0.0875,217.142857142857,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%",""
+"2014-02-26_YB-BCq9",2014-02-26,2014-02-26,"YB","BC","9","Mt","Mytilus_trossulus","Type 15",20,0.0875,228.571428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-BCq3",2014-02-26,2014-02-26,"YB","BC","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","7%","Counts likely low due to algae film on part of patch"
+"2014-02-26_YB-BCq5",2014-02-26,2014-02-26,"YB","BC","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%",""
+"2014-02-26_YB-BCq9",2014-02-26,2014-02-26,"YB","BC","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-BCq3",2014-02-26,2014-02-26,"YB","BC","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","7%","Counts likely low due to algae film on part of patch"
+"2014-02-26_YB-BCq5",2014-02-26,2014-02-26,"YB","BC","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%",""
+"2014-02-26_YB-BCq9",2014-02-26,2014-02-26,"YB","BC","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-BCq3",2014-02-26,2014-02-26,"YB","BC","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","7%","Counts likely low due to algae film on part of patch"
+"2014-02-26_YB-BCq5",2014-02-26,2014-02-26,"YB","BC","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%",""
+"2014-02-26_YB-BCq9",2014-02-26,2014-02-26,"YB","BC","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-BCq3",2014-02-26,2014-02-26,"YB","BC","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","7%","Counts likely low due to algae film on part of patch"
+"2014-02-26_YB-BCq5",2014-02-26,2014-02-26,"YB","BC","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%",""
+"2014-02-26_YB-BCq9",2014-02-26,2014-02-26,"YB","BC","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-BCq3",2014-02-26,2014-02-26,"YB","BC","3","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","7%","Counts likely low due to algae film on part of patch"
+"2014-02-26_YB-BCq5",2014-02-26,2014-02-26,"YB","BC","5","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%",""
+"2014-02-26_YB-BCq9",2014-02-26,2014-02-26,"YB","BC","9","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-BCq3",2014-02-26,2014-02-26,"YB","BC","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","7%","Counts likely low due to algae film on part of patch"
+"2014-02-26_YB-BCq5",2014-02-26,2014-02-26,"YB","BC","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%",""
+"2014-02-26_YB-BCq9",2014-02-26,2014-02-26,"YB","BC","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-BCq3",2014-02-26,2014-02-26,"YB","BC","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","7%","Counts likely low due to algae film on part of patch"
+"2014-02-26_YB-BCq5",2014-02-26,2014-02-26,"YB","BC","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%",""
+"2014-02-26_YB-BCq9",2014-02-26,2014-02-26,"YB","BC","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-BCq3",2014-02-26,2014-02-26,"YB","BC","3","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","7%","Counts likely low due to algae film on part of patch"
+"2014-02-26_YB-BCq5",2014-02-26,2014-02-26,"YB","BC","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%",""
+"2014-02-26_YB-BCq9",2014-02-26,2014-02-26,"YB","BC","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-BCq3",2014-02-26,2014-02-26,"YB","BC","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","7%","Counts likely low due to algae film on part of patch"
+"2014-02-26_YB-BCq5",2014-02-26,2014-02-26,"YB","BC","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%",""
+"2014-02-26_YB-BCq9",2014-02-26,2014-02-26,"YB","BC","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-BCq3",2014-02-26,2014-02-26,"YB","BC","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","7%","Counts likely low due to algae film on part of patch"
+"2014-02-26_YB-BCq5",2014-02-26,2014-02-26,"YB","BC","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%",""
+"2014-02-26_YB-BCq9",2014-02-26,2014-02-26,"YB","BC","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-BCq3",2014-02-26,2014-02-26,"YB","BC","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","7%","Counts likely low due to algae film on part of patch"
+"2014-02-26_YB-BCq5",2014-02-26,2014-02-26,"YB","BC","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%",""
+"2014-02-26_YB-BCq9",2014-02-26,2014-02-26,"YB","BC","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-BDq1",2014-02-26,2014-02-26,"YB","BD","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2014-02-26_YB-BDq5",2014-02-26,2014-02-26,"YB","BD","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2014-02-26_YB-BDq7",2014-02-26,2014-02-26,"YB","BD","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2014-02-26_YB-BDq1",2014-02-26,2014-02-26,"YB","BD","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2014-02-26_YB-BDq5",2014-02-26,2014-02-26,"YB","BD","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2014-02-26_YB-BDq7",2014-02-26,2014-02-26,"YB","BD","7","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2014-02-26_YB-BDq1",2014-02-26,2014-02-26,"YB","BD","1","Bg","Balanus_glandula","Type 1",4952,0.0875,56594.2857142857,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2014-02-26_YB-BDq5",2014-02-26,2014-02-26,"YB","BD","5","Bg","Balanus_glandula","Type 1",3513,0.0875,40148.5714285714,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2014-02-26_YB-BDq7",2014-02-26,2014-02-26,"YB","BD","7","Bg","Balanus_glandula","Type 1",4504,0.0875,51474.2857142857,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2014-02-26_YB-BDq1",2014-02-26,2014-02-26,"YB","BD","1","BgD","Balanus_glandula_(dead)","Type 2",351,0.0875,4011.42857142857,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2014-02-26_YB-BDq5",2014-02-26,2014-02-26,"YB","BD","5","BgD","Balanus_glandula_(dead)","Type 2",110,0.0875,1257.14285714286,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2014-02-26_YB-BDq7",2014-02-26,2014-02-26,"YB","BD","7","BgD","Balanus_glandula_(dead)","Type 2",244,0.0875,2788.57142857143,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2014-02-26_YB-BDq1",2014-02-26,2014-02-26,"YB","BD","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2014-02-26_YB-BDq5",2014-02-26,2014-02-26,"YB","BD","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2014-02-26_YB-BDq7",2014-02-26,2014-02-26,"YB","BD","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2014-02-26_YB-BDq1",2014-02-26,2014-02-26,"YB","BD","1","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2014-02-26_YB-BDq5",2014-02-26,2014-02-26,"YB","BD","5","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2014-02-26_YB-BDq7",2014-02-26,2014-02-26,"YB","BD","7","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2014-02-26_YB-BDq1",2014-02-26,2014-02-26,"YB","BD","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2014-02-26_YB-BDq5",2014-02-26,2014-02-26,"YB","BD","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2014-02-26_YB-BDq7",2014-02-26,2014-02-26,"YB","BD","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2014-02-26_YB-BDq1",2014-02-26,2014-02-26,"YB","BD","1","Emp","Emplectonema worm","Type 23",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2014-02-26_YB-BDq5",2014-02-26,2014-02-26,"YB","BD","5","Emp","Emplectonema worm","Type 23",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2014-02-26_YB-BDq7",2014-02-26,2014-02-26,"YB","BD","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2014-02-26_YB-BDq1",2014-02-26,2014-02-26,"YB","BD","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2014-02-26_YB-BDq5",2014-02-26,2014-02-26,"YB","BD","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2014-02-26_YB-BDq7",2014-02-26,2014-02-26,"YB","BD","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2014-02-26_YB-BDq1",2014-02-26,2014-02-26,"YB","BD","1","Lim","Limpets","Type 12",484,0.0875,5531.42857142857,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2014-02-26_YB-BDq5",2014-02-26,2014-02-26,"YB","BD","5","Lim","Limpets","Type 12",186,0.0875,2125.71428571429,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2014-02-26_YB-BDq7",2014-02-26,2014-02-26,"YB","BD","7","Lim","Limpets","Type 12",336,0.0875,3840,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2014-02-26_YB-BDq1",2014-02-26,2014-02-26,"YB","BD","1","Ls","Littorina_sitkana","Type 13",347,0.0875,3965.71428571429,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2014-02-26_YB-BDq5",2014-02-26,2014-02-26,"YB","BD","5","Ls","Littorina_sitkana","Type 13",267,0.0875,3051.42857142857,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2014-02-26_YB-BDq7",2014-02-26,2014-02-26,"YB","BD","7","Ls","Littorina_sitkana","Type 13",243,0.0875,2777.14285714286,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2014-02-26_YB-BDq1",2014-02-26,2014-02-26,"YB","BD","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2014-02-26_YB-BDq5",2014-02-26,2014-02-26,"YB","BD","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2014-02-26_YB-BDq7",2014-02-26,2014-02-26,"YB","BD","7","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2014-02-26_YB-BDq1",2014-02-26,2014-02-26,"YB","BD","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2014-02-26_YB-BDq5",2014-02-26,2014-02-26,"YB","BD","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2014-02-26_YB-BDq7",2014-02-26,2014-02-26,"YB","BD","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2014-02-26_YB-BDq1",2014-02-26,2014-02-26,"YB","BD","1","Myt","Mytilus_spp","Type 7",876,0.0875,10011.4285714286,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2014-02-26_YB-BDq5",2014-02-26,2014-02-26,"YB","BD","5","Myt","Mytilus_spp","Type 7",637,0.0875,7280,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2014-02-26_YB-BDq7",2014-02-26,2014-02-26,"YB","BD","7","Myt","Mytilus_spp","Type 7",833,0.0875,9520,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2014-02-26_YB-BDq1",2014-02-26,2014-02-26,"YB","BD","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2014-02-26_YB-BDq5",2014-02-26,2014-02-26,"YB","BD","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2014-02-26_YB-BDq7",2014-02-26,2014-02-26,"YB","BD","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2014-02-26_YB-BDq1",2014-02-26,2014-02-26,"YB","BD","1","Mt","Mytilus_trossulus","Type 15",31,0.0875,354.285714285714,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2014-02-26_YB-BDq5",2014-02-26,2014-02-26,"YB","BD","5","Mt","Mytilus_trossulus","Type 15",96,0.0875,1097.14285714286,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2014-02-26_YB-BDq7",2014-02-26,2014-02-26,"YB","BD","7","Mt","Mytilus_trossulus","Type 15",84,0.0875,960,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2014-02-26_YB-BDq1",2014-02-26,2014-02-26,"YB","BD","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2014-02-26_YB-BDq5",2014-02-26,2014-02-26,"YB","BD","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2014-02-26_YB-BDq7",2014-02-26,2014-02-26,"YB","BD","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2014-02-26_YB-BDq1",2014-02-26,2014-02-26,"YB","BD","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2014-02-26_YB-BDq5",2014-02-26,2014-02-26,"YB","BD","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2014-02-26_YB-BDq7",2014-02-26,2014-02-26,"YB","BD","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2014-02-26_YB-BDq1",2014-02-26,2014-02-26,"YB","BD","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2014-02-26_YB-BDq5",2014-02-26,2014-02-26,"YB","BD","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2014-02-26_YB-BDq7",2014-02-26,2014-02-26,"YB","BD","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2014-02-26_YB-BDq1",2014-02-26,2014-02-26,"YB","BD","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2014-02-26_YB-BDq5",2014-02-26,2014-02-26,"YB","BD","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2014-02-26_YB-BDq7",2014-02-26,2014-02-26,"YB","BD","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2014-02-26_YB-BDq1",2014-02-26,2014-02-26,"YB","BD","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2014-02-26_YB-BDq5",2014-02-26,2014-02-26,"YB","BD","5","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2014-02-26_YB-BDq7",2014-02-26,2014-02-26,"YB","BD","7","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2014-02-26_YB-BDq1",2014-02-26,2014-02-26,"YB","BD","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2014-02-26_YB-BDq5",2014-02-26,2014-02-26,"YB","BD","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2014-02-26_YB-BDq7",2014-02-26,2014-02-26,"YB","BD","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2014-02-26_YB-BDq1",2014-02-26,2014-02-26,"YB","BD","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2014-02-26_YB-BDq5",2014-02-26,2014-02-26,"YB","BD","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2014-02-26_YB-BDq7",2014-02-26,2014-02-26,"YB","BD","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2014-02-26_YB-BDq1",2014-02-26,2014-02-26,"YB","BD","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2014-02-26_YB-BDq5",2014-02-26,2014-02-26,"YB","BD","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2014-02-26_YB-BDq7",2014-02-26,2014-02-26,"YB","BD","7","Pp","Pollicipes_polymerus","Type 11",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2014-02-26_YB-BDq1",2014-02-26,2014-02-26,"YB","BD","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2014-02-26_YB-BDq5",2014-02-26,2014-02-26,"YB","BD","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2014-02-26_YB-BDq7",2014-02-26,2014-02-26,"YB","BD","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2014-02-26_YB-BDq1",2014-02-26,2014-02-26,"YB","BD","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2014-02-26_YB-BDq5",2014-02-26,2014-02-26,"YB","BD","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2014-02-26_YB-BDq7",2014-02-26,2014-02-26,"YB","BD","7","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2014-02-26_YB-BDq1",2014-02-26,2014-02-26,"YB","BD","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2014-02-26_YB-BDq5",2014-02-26,2014-02-26,"YB","BD","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2014-02-26_YB-BDq7",2014-02-26,2014-02-26,"YB","BD","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2014-02-26_YB-BEq2",2014-02-26,2014-02-26,"YB","BE","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts may be low due to glare from water cover"
+"2014-02-26_YB-BEq3",2014-02-26,2014-02-26,"YB","BE","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-02-26_YB-BEq6",2014-02-26,2014-02-26,"YB","BE","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-02-26_YB-BEq2",2014-02-26,2014-02-26,"YB","BE","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts may be low due to glare from water cover"
+"2014-02-26_YB-BEq3",2014-02-26,2014-02-26,"YB","BE","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-02-26_YB-BEq6",2014-02-26,2014-02-26,"YB","BE","6","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-02-26_YB-BEq2",2014-02-26,2014-02-26,"YB","BE","2","Bg","Balanus_glandula","Type 1",163,0.0875,1862.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts may be low due to glare from water cover"
+"2014-02-26_YB-BEq3",2014-02-26,2014-02-26,"YB","BE","3","Bg","Balanus_glandula","Type 1",615,0.0875,7028.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-02-26_YB-BEq6",2014-02-26,2014-02-26,"YB","BE","6","Bg","Balanus_glandula","Type 1",855,0.0875,9771.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-02-26_YB-BEq2",2014-02-26,2014-02-26,"YB","BE","2","BgD","Balanus_glandula_(dead)","Type 2",4,0.0875,45.7142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts may be low due to glare from water cover"
+"2014-02-26_YB-BEq3",2014-02-26,2014-02-26,"YB","BE","3","BgD","Balanus_glandula_(dead)","Type 2",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-02-26_YB-BEq6",2014-02-26,2014-02-26,"YB","BE","6","BgD","Balanus_glandula_(dead)","Type 2",17,0.0875,194.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-02-26_YB-BEq2",2014-02-26,2014-02-26,"YB","BE","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts may be low due to glare from water cover"
+"2014-02-26_YB-BEq3",2014-02-26,2014-02-26,"YB","BE","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-02-26_YB-BEq6",2014-02-26,2014-02-26,"YB","BE","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-02-26_YB-BEq2",2014-02-26,2014-02-26,"YB","BE","2","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts may be low due to glare from water cover"
+"2014-02-26_YB-BEq3",2014-02-26,2014-02-26,"YB","BE","3","Cth","Chthamalus_dalli","Type 3",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-02-26_YB-BEq6",2014-02-26,2014-02-26,"YB","BE","6","Cth","Chthamalus_dalli","Type 3",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-02-26_YB-BEq2",2014-02-26,2014-02-26,"YB","BE","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts may be low due to glare from water cover"
+"2014-02-26_YB-BEq3",2014-02-26,2014-02-26,"YB","BE","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-02-26_YB-BEq6",2014-02-26,2014-02-26,"YB","BE","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-02-26_YB-BEq2",2014-02-26,2014-02-26,"YB","BE","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts may be low due to glare from water cover"
+"2014-02-26_YB-BEq3",2014-02-26,2014-02-26,"YB","BE","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-02-26_YB-BEq6",2014-02-26,2014-02-26,"YB","BE","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-02-26_YB-BEq2",2014-02-26,2014-02-26,"YB","BE","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts may be low due to glare from water cover"
+"2014-02-26_YB-BEq3",2014-02-26,2014-02-26,"YB","BE","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-02-26_YB-BEq6",2014-02-26,2014-02-26,"YB","BE","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-02-26_YB-BEq2",2014-02-26,2014-02-26,"YB","BE","2","Lim","Limpets","Type 12",42,0.0875,480,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts may be low due to glare from water cover"
+"2014-02-26_YB-BEq3",2014-02-26,2014-02-26,"YB","BE","3","Lim","Limpets","Type 12",274,0.0875,3131.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-02-26_YB-BEq6",2014-02-26,2014-02-26,"YB","BE","6","Lim","Limpets","Type 12",378,0.0875,4320,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-02-26_YB-BEq2",2014-02-26,2014-02-26,"YB","BE","2","Ls","Littorina_sitkana","Type 13",93,0.0875,1062.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts may be low due to glare from water cover"
+"2014-02-26_YB-BEq3",2014-02-26,2014-02-26,"YB","BE","3","Ls","Littorina_sitkana","Type 13",9,0.0875,102.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-02-26_YB-BEq6",2014-02-26,2014-02-26,"YB","BE","6","Ls","Littorina_sitkana","Type 13",48,0.0875,548.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-02-26_YB-BEq2",2014-02-26,2014-02-26,"YB","BE","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts may be low due to glare from water cover"
+"2014-02-26_YB-BEq3",2014-02-26,2014-02-26,"YB","BE","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-02-26_YB-BEq6",2014-02-26,2014-02-26,"YB","BE","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-02-26_YB-BEq2",2014-02-26,2014-02-26,"YB","BE","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts may be low due to glare from water cover"
+"2014-02-26_YB-BEq3",2014-02-26,2014-02-26,"YB","BE","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-02-26_YB-BEq6",2014-02-26,2014-02-26,"YB","BE","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-02-26_YB-BEq2",2014-02-26,2014-02-26,"YB","BE","2","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts may be low due to glare from water cover"
+"2014-02-26_YB-BEq3",2014-02-26,2014-02-26,"YB","BE","3","Myt","Mytilus_spp","Type 7",110,0.0875,1257.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-02-26_YB-BEq6",2014-02-26,2014-02-26,"YB","BE","6","Myt","Mytilus_spp","Type 7",81,0.0875,925.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-02-26_YB-BEq2",2014-02-26,2014-02-26,"YB","BE","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts may be low due to glare from water cover"
+"2014-02-26_YB-BEq3",2014-02-26,2014-02-26,"YB","BE","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-02-26_YB-BEq6",2014-02-26,2014-02-26,"YB","BE","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-02-26_YB-BEq2",2014-02-26,2014-02-26,"YB","BE","2","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts may be low due to glare from water cover"
+"2014-02-26_YB-BEq3",2014-02-26,2014-02-26,"YB","BE","3","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-02-26_YB-BEq6",2014-02-26,2014-02-26,"YB","BE","6","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-02-26_YB-BEq2",2014-02-26,2014-02-26,"YB","BE","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts may be low due to glare from water cover"
+"2014-02-26_YB-BEq3",2014-02-26,2014-02-26,"YB","BE","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-02-26_YB-BEq6",2014-02-26,2014-02-26,"YB","BE","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-02-26_YB-BEq2",2014-02-26,2014-02-26,"YB","BE","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts may be low due to glare from water cover"
+"2014-02-26_YB-BEq3",2014-02-26,2014-02-26,"YB","BE","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-02-26_YB-BEq6",2014-02-26,2014-02-26,"YB","BE","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-02-26_YB-BEq2",2014-02-26,2014-02-26,"YB","BE","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts may be low due to glare from water cover"
+"2014-02-26_YB-BEq3",2014-02-26,2014-02-26,"YB","BE","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-02-26_YB-BEq6",2014-02-26,2014-02-26,"YB","BE","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-02-26_YB-BEq2",2014-02-26,2014-02-26,"YB","BE","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts may be low due to glare from water cover"
+"2014-02-26_YB-BEq3",2014-02-26,2014-02-26,"YB","BE","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-02-26_YB-BEq6",2014-02-26,2014-02-26,"YB","BE","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-02-26_YB-BEq2",2014-02-26,2014-02-26,"YB","BE","2","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts may be low due to glare from water cover"
+"2014-02-26_YB-BEq3",2014-02-26,2014-02-26,"YB","BE","3","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-02-26_YB-BEq6",2014-02-26,2014-02-26,"YB","BE","6","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-02-26_YB-BEq2",2014-02-26,2014-02-26,"YB","BE","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts may be low due to glare from water cover"
+"2014-02-26_YB-BEq3",2014-02-26,2014-02-26,"YB","BE","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-02-26_YB-BEq6",2014-02-26,2014-02-26,"YB","BE","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-02-26_YB-BEq2",2014-02-26,2014-02-26,"YB","BE","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts may be low due to glare from water cover"
+"2014-02-26_YB-BEq3",2014-02-26,2014-02-26,"YB","BE","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-02-26_YB-BEq6",2014-02-26,2014-02-26,"YB","BE","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-02-26_YB-BEq2",2014-02-26,2014-02-26,"YB","BE","2","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts may be low due to glare from water cover"
+"2014-02-26_YB-BEq3",2014-02-26,2014-02-26,"YB","BE","3","Pp","Pollicipes_polymerus","Type 11",37,0.0875,422.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-02-26_YB-BEq6",2014-02-26,2014-02-26,"YB","BE","6","Pp","Pollicipes_polymerus","Type 11",18,0.0875,205.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-02-26_YB-BEq2",2014-02-26,2014-02-26,"YB","BE","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts may be low due to glare from water cover"
+"2014-02-26_YB-BEq3",2014-02-26,2014-02-26,"YB","BE","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-02-26_YB-BEq6",2014-02-26,2014-02-26,"YB","BE","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-02-26_YB-BEq2",2014-02-26,2014-02-26,"YB","BE","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts may be low due to glare from water cover"
+"2014-02-26_YB-BEq3",2014-02-26,2014-02-26,"YB","BE","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-02-26_YB-BEq6",2014-02-26,2014-02-26,"YB","BE","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-02-26_YB-BEq2",2014-02-26,2014-02-26,"YB","BE","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts may be low due to glare from water cover"
+"2014-02-26_YB-BEq3",2014-02-26,2014-02-26,"YB","BE","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-02-26_YB-BEq6",2014-02-26,2014-02-26,"YB","BE","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-02-26_YB-BFq1",2014-02-26,2014-02-26,"YB","BF","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2014-02-26_YB-BFq4",2014-02-26,2014-02-26,"YB","BF","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2014-02-26_YB-BFq9",2014-02-26,2014-02-26,"YB","BF","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","30%","glare/reflection"
+"2014-02-26_YB-BFq1",2014-02-26,2014-02-26,"YB","BF","1","Ae","Anemones","Type 14",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2014-02-26_YB-BFq4",2014-02-26,2014-02-26,"YB","BF","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2014-02-26_YB-BFq9",2014-02-26,2014-02-26,"YB","BF","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","30%","glare/reflection"
+"2014-02-26_YB-BFq1",2014-02-26,2014-02-26,"YB","BF","1","Bg","Balanus_glandula","Type 1",3113,0.0875,35577.1428571429,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2014-02-26_YB-BFq4",2014-02-26,2014-02-26,"YB","BF","4","Bg","Balanus_glandula","Type 1",1766,0.0875,20182.8571428571,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2014-02-26_YB-BFq9",2014-02-26,2014-02-26,"YB","BF","9","Bg","Balanus_glandula","Type 1",622,0.0875,7108.57142857143,NA,"Julia Bingham","Finished","Full","Full","30%","glare/reflection"
+"2014-02-26_YB-BFq1",2014-02-26,2014-02-26,"YB","BF","1","BgD","Balanus_glandula_(dead)","Type 2",260,0.0875,2971.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2014-02-26_YB-BFq4",2014-02-26,2014-02-26,"YB","BF","4","BgD","Balanus_glandula_(dead)","Type 2",63,0.0875,720,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2014-02-26_YB-BFq9",2014-02-26,2014-02-26,"YB","BF","9","BgD","Balanus_glandula_(dead)","Type 2",217,0.0875,2480,NA,"Julia Bingham","Finished","Full","Full","30%","glare/reflection"
+"2014-02-26_YB-BFq1",2014-02-26,2014-02-26,"YB","BF","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2014-02-26_YB-BFq4",2014-02-26,2014-02-26,"YB","BF","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2014-02-26_YB-BFq9",2014-02-26,2014-02-26,"YB","BF","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","30%","glare/reflection"
+"2014-02-26_YB-BFq1",2014-02-26,2014-02-26,"YB","BF","1","Cth","Chthamalus_dalli","Type 3",31,0.0875,354.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2014-02-26_YB-BFq4",2014-02-26,2014-02-26,"YB","BF","4","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2014-02-26_YB-BFq9",2014-02-26,2014-02-26,"YB","BF","9","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","30%","glare/reflection"
+"2014-02-26_YB-BFq1",2014-02-26,2014-02-26,"YB","BF","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2014-02-26_YB-BFq4",2014-02-26,2014-02-26,"YB","BF","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2014-02-26_YB-BFq9",2014-02-26,2014-02-26,"YB","BF","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","30%","glare/reflection"
+"2014-02-26_YB-BFq1",2014-02-26,2014-02-26,"YB","BF","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2014-02-26_YB-BFq4",2014-02-26,2014-02-26,"YB","BF","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2014-02-26_YB-BFq9",2014-02-26,2014-02-26,"YB","BF","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","30%","glare/reflection"
+"2014-02-26_YB-BFq1",2014-02-26,2014-02-26,"YB","BF","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2014-02-26_YB-BFq4",2014-02-26,2014-02-26,"YB","BF","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2014-02-26_YB-BFq9",2014-02-26,2014-02-26,"YB","BF","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","30%","glare/reflection"
+"2014-02-26_YB-BFq1",2014-02-26,2014-02-26,"YB","BF","1","Lim","Limpets","Type 12",474,0.0875,5417.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2014-02-26_YB-BFq4",2014-02-26,2014-02-26,"YB","BF","4","Lim","Limpets","Type 12",362,0.0875,4137.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2014-02-26_YB-BFq9",2014-02-26,2014-02-26,"YB","BF","9","Lim","Limpets","Type 12",59,0.0875,674.285714285714,NA,"Julia Bingham","Finished","Full","Full","30%","glare/reflection"
+"2014-02-26_YB-BFq1",2014-02-26,2014-02-26,"YB","BF","1","Ls","Littorina_sitkana","Type 13",150,0.0875,1714.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2014-02-26_YB-BFq4",2014-02-26,2014-02-26,"YB","BF","4","Ls","Littorina_sitkana","Type 13",135,0.0875,1542.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2014-02-26_YB-BFq9",2014-02-26,2014-02-26,"YB","BF","9","Ls","Littorina_sitkana","Type 13",83,0.0875,948.571428571429,NA,"Julia Bingham","Finished","Full","Full","30%","glare/reflection"
+"2014-02-26_YB-BFq1",2014-02-26,2014-02-26,"YB","BF","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2014-02-26_YB-BFq4",2014-02-26,2014-02-26,"YB","BF","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2014-02-26_YB-BFq9",2014-02-26,2014-02-26,"YB","BF","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","30%","glare/reflection"
+"2014-02-26_YB-BFq1",2014-02-26,2014-02-26,"YB","BF","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2014-02-26_YB-BFq4",2014-02-26,2014-02-26,"YB","BF","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2014-02-26_YB-BFq9",2014-02-26,2014-02-26,"YB","BF","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","30%","glare/reflection"
+"2014-02-26_YB-BFq1",2014-02-26,2014-02-26,"YB","BF","1","Myt","Mytilus_spp","Type 7",298,0.0875,3405.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2014-02-26_YB-BFq4",2014-02-26,2014-02-26,"YB","BF","4","Myt","Mytilus_spp","Type 7",82,0.0875,937.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2014-02-26_YB-BFq9",2014-02-26,2014-02-26,"YB","BF","9","Myt","Mytilus_spp","Type 7",438,0.0875,5005.71428571429,NA,"Julia Bingham","Finished","Full","Full","30%","glare/reflection"
+"2014-02-26_YB-BFq1",2014-02-26,2014-02-26,"YB","BF","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2014-02-26_YB-BFq4",2014-02-26,2014-02-26,"YB","BF","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2014-02-26_YB-BFq9",2014-02-26,2014-02-26,"YB","BF","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","30%","glare/reflection"
+"2014-02-26_YB-BFq1",2014-02-26,2014-02-26,"YB","BF","1","Mt","Mytilus_trossulus","Type 15",26,0.0875,297.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2014-02-26_YB-BFq4",2014-02-26,2014-02-26,"YB","BF","4","Mt","Mytilus_trossulus","Type 15",52,0.0875,594.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2014-02-26_YB-BFq9",2014-02-26,2014-02-26,"YB","BF","9","Mt","Mytilus_trossulus","Type 15",58,0.0875,662.857142857143,NA,"Julia Bingham","Finished","Full","Full","30%","glare/reflection"
+"2014-02-26_YB-BFq1",2014-02-26,2014-02-26,"YB","BF","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2014-02-26_YB-BFq4",2014-02-26,2014-02-26,"YB","BF","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2014-02-26_YB-BFq9",2014-02-26,2014-02-26,"YB","BF","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","30%","glare/reflection"
+"2014-02-26_YB-BFq1",2014-02-26,2014-02-26,"YB","BF","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2014-02-26_YB-BFq4",2014-02-26,2014-02-26,"YB","BF","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2014-02-26_YB-BFq9",2014-02-26,2014-02-26,"YB","BF","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","30%","glare/reflection"
+"2014-02-26_YB-BFq1",2014-02-26,2014-02-26,"YB","BF","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2014-02-26_YB-BFq4",2014-02-26,2014-02-26,"YB","BF","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2014-02-26_YB-BFq9",2014-02-26,2014-02-26,"YB","BF","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","30%","glare/reflection"
+"2014-02-26_YB-BFq1",2014-02-26,2014-02-26,"YB","BF","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2014-02-26_YB-BFq4",2014-02-26,2014-02-26,"YB","BF","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2014-02-26_YB-BFq9",2014-02-26,2014-02-26,"YB","BF","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","30%","glare/reflection"
+"2014-02-26_YB-BFq1",2014-02-26,2014-02-26,"YB","BF","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2014-02-26_YB-BFq4",2014-02-26,2014-02-26,"YB","BF","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2014-02-26_YB-BFq9",2014-02-26,2014-02-26,"YB","BF","9","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","30%","glare/reflection"
+"2014-02-26_YB-BFq1",2014-02-26,2014-02-26,"YB","BF","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2014-02-26_YB-BFq4",2014-02-26,2014-02-26,"YB","BF","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2014-02-26_YB-BFq9",2014-02-26,2014-02-26,"YB","BF","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","30%","glare/reflection"
+"2014-02-26_YB-BFq1",2014-02-26,2014-02-26,"YB","BF","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2014-02-26_YB-BFq4",2014-02-26,2014-02-26,"YB","BF","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2014-02-26_YB-BFq9",2014-02-26,2014-02-26,"YB","BF","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","30%","glare/reflection"
+"2014-02-26_YB-BFq1",2014-02-26,2014-02-26,"YB","BF","1","Pp","Pollicipes_polymerus","Type 11",10,0.0875,114.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2014-02-26_YB-BFq4",2014-02-26,2014-02-26,"YB","BF","4","Pp","Pollicipes_polymerus","Type 11",45,0.0875,514.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2014-02-26_YB-BFq9",2014-02-26,2014-02-26,"YB","BF","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","30%","glare/reflection"
+"2014-02-26_YB-BFq1",2014-02-26,2014-02-26,"YB","BF","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2014-02-26_YB-BFq4",2014-02-26,2014-02-26,"YB","BF","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2014-02-26_YB-BFq9",2014-02-26,2014-02-26,"YB","BF","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","30%","glare/reflection"
+"2014-02-26_YB-BFq1",2014-02-26,2014-02-26,"YB","BF","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2014-02-26_YB-BFq4",2014-02-26,2014-02-26,"YB","BF","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2014-02-26_YB-BFq9",2014-02-26,2014-02-26,"YB","BF","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","30%","glare/reflection"
+"2014-02-26_YB-BFq1",2014-02-26,2014-02-26,"YB","BF","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2014-02-26_YB-BFq4",2014-02-26,2014-02-26,"YB","BF","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2014-02-26_YB-BFq9",2014-02-26,2014-02-26,"YB","BF","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","30%","glare/reflection"
+"2014-02-26_YB-Cq2",2014-02-26,2014-02-26,"YB","C","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-02-26_YB-Cq4",2014-02-26,2014-02-26,"YB","C","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-Cq6",2014-02-26,2014-02-26,"YB","C","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-Cq2",2014-02-26,2014-02-26,"YB","C","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-02-26_YB-Cq4",2014-02-26,2014-02-26,"YB","C","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-Cq6",2014-02-26,2014-02-26,"YB","C","6","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-Cq2",2014-02-26,2014-02-26,"YB","C","2","Bg","Balanus_glandula","Type 1",759,0.015625,48576,"c","Beatriz Vaca","Finished","Full","Cropped","0%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-02-26_YB-Cq4",2014-02-26,2014-02-26,"YB","C","4","Bg","Balanus_glandula","Type 1",546,0.015625,34944,"c","Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-Cq6",2014-02-26,2014-02-26,"YB","C","6","Bg","Balanus_glandula","Type 1",628,0.015625,40192,"c","Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-Cq2",2014-02-26,2014-02-26,"YB","C","2","BgD","Balanus_glandula_(dead)","Type 2",57,0.015625,3648,"c","Beatriz Vaca","Finished","Full","Cropped","0%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-02-26_YB-Cq4",2014-02-26,2014-02-26,"YB","C","4","BgD","Balanus_glandula_(dead)","Type 2",9,0.015625,576,"c","Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-Cq6",2014-02-26,2014-02-26,"YB","C","6","BgD","Balanus_glandula_(dead)","Type 2",21,0.015625,1344,"c","Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-Cq2",2014-02-26,2014-02-26,"YB","C","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-02-26_YB-Cq4",2014-02-26,2014-02-26,"YB","C","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-Cq6",2014-02-26,2014-02-26,"YB","C","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-Cq2",2014-02-26,2014-02-26,"YB","C","2","Cth","Chthamalus_dalli","Type 3",16,0.015625,1024,"c","Beatriz Vaca","Finished","Full","Cropped","0%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-02-26_YB-Cq4",2014-02-26,2014-02-26,"YB","C","4","Cth","Chthamalus_dalli","Type 3",24,0.015625,1536,"c","Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-Cq6",2014-02-26,2014-02-26,"YB","C","6","Cth","Chthamalus_dalli","Type 3",29,0.015625,1856,"c","Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-Cq2",2014-02-26,2014-02-26,"YB","C","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","0%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-02-26_YB-Cq4",2014-02-26,2014-02-26,"YB","C","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-Cq6",2014-02-26,2014-02-26,"YB","C","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-Cq2",2014-02-26,2014-02-26,"YB","C","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-02-26_YB-Cq4",2014-02-26,2014-02-26,"YB","C","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-Cq6",2014-02-26,2014-02-26,"YB","C","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-Cq2",2014-02-26,2014-02-26,"YB","C","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-02-26_YB-Cq4",2014-02-26,2014-02-26,"YB","C","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-Cq6",2014-02-26,2014-02-26,"YB","C","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-Cq2",2014-02-26,2014-02-26,"YB","C","2","Lim","Limpets","Type 12",108,0.0875,1234.28571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-02-26_YB-Cq4",2014-02-26,2014-02-26,"YB","C","4","Lim","Limpets","Type 12",154,0.0875,1760,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-Cq6",2014-02-26,2014-02-26,"YB","C","6","Lim","Limpets","Type 12",146,0.0875,1668.57142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-Cq2",2014-02-26,2014-02-26,"YB","C","2","Ls","Littorina_sitkana","Type 13",16,0.0875,182.857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-02-26_YB-Cq4",2014-02-26,2014-02-26,"YB","C","4","Ls","Littorina_sitkana","Type 13",10,0.0875,114.285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-Cq6",2014-02-26,2014-02-26,"YB","C","6","Ls","Littorina_sitkana","Type 13",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-Cq2",2014-02-26,2014-02-26,"YB","C","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-02-26_YB-Cq4",2014-02-26,2014-02-26,"YB","C","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-Cq6",2014-02-26,2014-02-26,"YB","C","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-Cq2",2014-02-26,2014-02-26,"YB","C","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-02-26_YB-Cq4",2014-02-26,2014-02-26,"YB","C","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-Cq6",2014-02-26,2014-02-26,"YB","C","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-Cq2",2014-02-26,2014-02-26,"YB","C","2","Myt","Mytilus_spp","Type 7",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-02-26_YB-Cq4",2014-02-26,2014-02-26,"YB","C","4","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-Cq6",2014-02-26,2014-02-26,"YB","C","6","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-Cq2",2014-02-26,2014-02-26,"YB","C","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-02-26_YB-Cq4",2014-02-26,2014-02-26,"YB","C","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-Cq6",2014-02-26,2014-02-26,"YB","C","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-Cq2",2014-02-26,2014-02-26,"YB","C","2","Mt","Mytilus_trossulus","Type 15",381,0.0875,4354.28571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-02-26_YB-Cq4",2014-02-26,2014-02-26,"YB","C","4","Mt","Mytilus_trossulus","Type 15",308,0.0875,3520,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-Cq6",2014-02-26,2014-02-26,"YB","C","6","Mt","Mytilus_trossulus","Type 15",178,0.0875,2034.28571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-Cq2",2014-02-26,2014-02-26,"YB","C","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-02-26_YB-Cq4",2014-02-26,2014-02-26,"YB","C","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-Cq6",2014-02-26,2014-02-26,"YB","C","6","MtD","Mytilus_trossulus_(dead)","Type 16",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-Cq2",2014-02-26,2014-02-26,"YB","C","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-02-26_YB-Cq4",2014-02-26,2014-02-26,"YB","C","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-Cq6",2014-02-26,2014-02-26,"YB","C","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-Cq2",2014-02-26,2014-02-26,"YB","C","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-02-26_YB-Cq4",2014-02-26,2014-02-26,"YB","C","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-Cq6",2014-02-26,2014-02-26,"YB","C","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-Cq2",2014-02-26,2014-02-26,"YB","C","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-02-26_YB-Cq4",2014-02-26,2014-02-26,"YB","C","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-Cq6",2014-02-26,2014-02-26,"YB","C","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-Cq2",2014-02-26,2014-02-26,"YB","C","2","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-02-26_YB-Cq4",2014-02-26,2014-02-26,"YB","C","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-Cq6",2014-02-26,2014-02-26,"YB","C","6","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-Cq2",2014-02-26,2014-02-26,"YB","C","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-02-26_YB-Cq4",2014-02-26,2014-02-26,"YB","C","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-Cq6",2014-02-26,2014-02-26,"YB","C","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-Cq2",2014-02-26,2014-02-26,"YB","C","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-02-26_YB-Cq4",2014-02-26,2014-02-26,"YB","C","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-Cq6",2014-02-26,2014-02-26,"YB","C","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-Cq2",2014-02-26,2014-02-26,"YB","C","2","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-02-26_YB-Cq4",2014-02-26,2014-02-26,"YB","C","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-Cq6",2014-02-26,2014-02-26,"YB","C","6","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-Cq2",2014-02-26,2014-02-26,"YB","C","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-02-26_YB-Cq4",2014-02-26,2014-02-26,"YB","C","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-Cq6",2014-02-26,2014-02-26,"YB","C","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-Cq2",2014-02-26,2014-02-26,"YB","C","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-02-26_YB-Cq4",2014-02-26,2014-02-26,"YB","C","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-Cq6",2014-02-26,2014-02-26,"YB","C","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-Cq2",2014-02-26,2014-02-26,"YB","C","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-02-26_YB-Cq4",2014-02-26,2014-02-26,"YB","C","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-Cq6",2014-02-26,2014-02-26,"YB","C","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-02-26_YB-Dq3",2014-02-26,2014-02-26,"YB","D","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-Dq4",2014-02-26,2014-02-26,"YB","D","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","0%",""
+"2014-02-26_YB-Dq5",2014-02-26,2014-02-26,"YB","D","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-Dq3",2014-02-26,2014-02-26,"YB","D","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-Dq4",2014-02-26,2014-02-26,"YB","D","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","0%",""
+"2014-02-26_YB-Dq5",2014-02-26,2014-02-26,"YB","D","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-Dq3",2014-02-26,2014-02-26,"YB","D","3","Bg","Balanus_glandula","Type 1",577,0.015625,36928,"c","Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-Dq4",2014-02-26,2014-02-26,"YB","D","4","Bg","Balanus_glandula","Type 1",2673,0.0875,30548.5714285714,NA,"Stephanie Merhoff","Finished","Full","Full","0%",""
+"2014-02-26_YB-Dq5",2014-02-26,2014-02-26,"YB","D","5","Bg","Balanus_glandula","Type 1",589,0.015625,37696,"c","Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-Dq3",2014-02-26,2014-02-26,"YB","D","3","BgD","Balanus_glandula_(dead)","Type 2",25,0.015625,1600,"c","Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-Dq4",2014-02-26,2014-02-26,"YB","D","4","BgD","Balanus_glandula_(dead)","Type 2",16,0.0875,182.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","0%",""
+"2014-02-26_YB-Dq5",2014-02-26,2014-02-26,"YB","D","5","BgD","Balanus_glandula_(dead)","Type 2",5,0.015625,320,"c","Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-Dq3",2014-02-26,2014-02-26,"YB","D","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-Dq4",2014-02-26,2014-02-26,"YB","D","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","0%",""
+"2014-02-26_YB-Dq5",2014-02-26,2014-02-26,"YB","D","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-Dq3",2014-02-26,2014-02-26,"YB","D","3","Cth","Chthamalus_dalli","Type 3",22,0.015625,1408,"c","Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-Dq4",2014-02-26,2014-02-26,"YB","D","4","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","0%",""
+"2014-02-26_YB-Dq5",2014-02-26,2014-02-26,"YB","D","5","Cth","Chthamalus_dalli","Type 3",4,0.015625,256,"c","Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-Dq3",2014-02-26,2014-02-26,"YB","D","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-Dq4",2014-02-26,2014-02-26,"YB","D","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","0%",""
+"2014-02-26_YB-Dq5",2014-02-26,2014-02-26,"YB","D","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-Dq3",2014-02-26,2014-02-26,"YB","D","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-Dq4",2014-02-26,2014-02-26,"YB","D","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","0%",""
+"2014-02-26_YB-Dq5",2014-02-26,2014-02-26,"YB","D","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-Dq3",2014-02-26,2014-02-26,"YB","D","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-Dq4",2014-02-26,2014-02-26,"YB","D","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","0%",""
+"2014-02-26_YB-Dq5",2014-02-26,2014-02-26,"YB","D","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-Dq3",2014-02-26,2014-02-26,"YB","D","3","Lim","Limpets","Type 12",132,0.0875,1508.57142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-Dq4",2014-02-26,2014-02-26,"YB","D","4","Lim","Limpets","Type 12",21,0.0875,240,NA,"Stephanie Merhoff","Finished","Full","Full","0%",""
+"2014-02-26_YB-Dq5",2014-02-26,2014-02-26,"YB","D","5","Lim","Limpets","Type 12",270,0.0875,3085.71428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-Dq3",2014-02-26,2014-02-26,"YB","D","3","Ls","Littorina_sitkana","Type 13",137,0.0875,1565.71428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-Dq4",2014-02-26,2014-02-26,"YB","D","4","Ls","Littorina_sitkana","Type 13",63,0.0875,720,NA,"Stephanie Merhoff","Finished","Full","Full","0%",""
+"2014-02-26_YB-Dq5",2014-02-26,2014-02-26,"YB","D","5","Ls","Littorina_sitkana","Type 13",198,0.0875,2262.85714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-Dq3",2014-02-26,2014-02-26,"YB","D","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-Dq4",2014-02-26,2014-02-26,"YB","D","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","0%",""
+"2014-02-26_YB-Dq5",2014-02-26,2014-02-26,"YB","D","5","Mc","Mytilus_californianus","Type 17",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-Dq3",2014-02-26,2014-02-26,"YB","D","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-Dq4",2014-02-26,2014-02-26,"YB","D","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","0%",""
+"2014-02-26_YB-Dq5",2014-02-26,2014-02-26,"YB","D","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-Dq3",2014-02-26,2014-02-26,"YB","D","3","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-Dq4",2014-02-26,2014-02-26,"YB","D","4","Myt","Mytilus_spp","Type 7",211,0.0875,2411.42857142857,NA,"Stephanie Merhoff","Finished","Full","Full","0%",""
+"2014-02-26_YB-Dq5",2014-02-26,2014-02-26,"YB","D","5","Myt","Mytilus_spp","Type 7",88,0.0875,1005.71428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-Dq3",2014-02-26,2014-02-26,"YB","D","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-Dq4",2014-02-26,2014-02-26,"YB","D","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","0%",""
+"2014-02-26_YB-Dq5",2014-02-26,2014-02-26,"YB","D","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-Dq3",2014-02-26,2014-02-26,"YB","D","3","Mt","Mytilus_trossulus","Type 15",316,0.0875,3611.42857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-Dq4",2014-02-26,2014-02-26,"YB","D","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","0%",""
+"2014-02-26_YB-Dq5",2014-02-26,2014-02-26,"YB","D","5","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-Dq3",2014-02-26,2014-02-26,"YB","D","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-Dq4",2014-02-26,2014-02-26,"YB","D","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","0%",""
+"2014-02-26_YB-Dq5",2014-02-26,2014-02-26,"YB","D","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-Dq3",2014-02-26,2014-02-26,"YB","D","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-Dq4",2014-02-26,2014-02-26,"YB","D","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","0%",""
+"2014-02-26_YB-Dq5",2014-02-26,2014-02-26,"YB","D","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-Dq3",2014-02-26,2014-02-26,"YB","D","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-Dq4",2014-02-26,2014-02-26,"YB","D","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","0%",""
+"2014-02-26_YB-Dq5",2014-02-26,2014-02-26,"YB","D","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-Dq3",2014-02-26,2014-02-26,"YB","D","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-Dq4",2014-02-26,2014-02-26,"YB","D","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","0%",""
+"2014-02-26_YB-Dq5",2014-02-26,2014-02-26,"YB","D","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-Dq3",2014-02-26,2014-02-26,"YB","D","3","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-Dq4",2014-02-26,2014-02-26,"YB","D","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","0%",""
+"2014-02-26_YB-Dq5",2014-02-26,2014-02-26,"YB","D","5","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-Dq3",2014-02-26,2014-02-26,"YB","D","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-Dq4",2014-02-26,2014-02-26,"YB","D","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","0%",""
+"2014-02-26_YB-Dq5",2014-02-26,2014-02-26,"YB","D","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-Dq3",2014-02-26,2014-02-26,"YB","D","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-Dq4",2014-02-26,2014-02-26,"YB","D","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","0%",""
+"2014-02-26_YB-Dq5",2014-02-26,2014-02-26,"YB","D","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-Dq3",2014-02-26,2014-02-26,"YB","D","3","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-Dq4",2014-02-26,2014-02-26,"YB","D","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","0%",""
+"2014-02-26_YB-Dq5",2014-02-26,2014-02-26,"YB","D","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-Dq3",2014-02-26,2014-02-26,"YB","D","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-Dq4",2014-02-26,2014-02-26,"YB","D","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","0%",""
+"2014-02-26_YB-Dq5",2014-02-26,2014-02-26,"YB","D","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-Dq3",2014-02-26,2014-02-26,"YB","D","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-Dq4",2014-02-26,2014-02-26,"YB","D","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","0%",""
+"2014-02-26_YB-Dq5",2014-02-26,2014-02-26,"YB","D","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-Dq3",2014-02-26,2014-02-26,"YB","D","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-02-26_YB-Dq4",2014-02-26,2014-02-26,"YB","D","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","0%",""
+"2014-02-26_YB-Dq5",2014-02-26,2014-02-26,"YB","D","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-02-26_YB-Eq3",2014-02-26,2014-02-26,"YB","E","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","counts may be low due to glare and algae coverage"
+"2014-02-26_YB-Eq4",2014-02-26,2014-02-26,"YB","E","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Eq8",2014-02-26,2014-02-26,"YB","E","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","counts may be low due to algae and water patches"
+"2014-02-26_YB-Eq3",2014-02-26,2014-02-26,"YB","E","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","counts may be low due to glare and algae coverage"
+"2014-02-26_YB-Eq4",2014-02-26,2014-02-26,"YB","E","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Eq8",2014-02-26,2014-02-26,"YB","E","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","counts may be low due to algae and water patches"
+"2014-02-26_YB-Eq3",2014-02-26,2014-02-26,"YB","E","3","Bg","Balanus_glandula","Type 1",1971,0.0875,22525.7142857143,NA,"Stephanie Merhoff","Finished","Full","Full","40%","counts may be low due to glare and algae coverage"
+"2014-02-26_YB-Eq4",2014-02-26,2014-02-26,"YB","E","4","Bg","Balanus_glandula","Type 1",870,0.015625,55680,"c","Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Eq8",2014-02-26,2014-02-26,"YB","E","8","Bg","Balanus_glandula","Type 1",701,0.015625,44864,"c","Stephanie Merhoff","Finished","Full","Cropped","25%","counts may be low due to algae and water patches"
+"2014-02-26_YB-Eq3",2014-02-26,2014-02-26,"YB","E","3","BgD","Balanus_glandula_(dead)","Type 2",16,0.0875,182.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","40%","counts may be low due to glare and algae coverage"
+"2014-02-26_YB-Eq4",2014-02-26,2014-02-26,"YB","E","4","BgD","Balanus_glandula_(dead)","Type 2",59,0.015625,3776,"c","Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Eq8",2014-02-26,2014-02-26,"YB","E","8","BgD","Balanus_glandula_(dead)","Type 2",7,0.015625,448,"c","Stephanie Merhoff","Finished","Full","Cropped","25%","counts may be low due to algae and water patches"
+"2014-02-26_YB-Eq3",2014-02-26,2014-02-26,"YB","E","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","counts may be low due to glare and algae coverage"
+"2014-02-26_YB-Eq4",2014-02-26,2014-02-26,"YB","E","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Eq8",2014-02-26,2014-02-26,"YB","E","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","counts may be low due to algae and water patches"
+"2014-02-26_YB-Eq3",2014-02-26,2014-02-26,"YB","E","3","Cth","Chthamalus_dalli","Type 3",89,0.0875,1017.14285714286,NA,"Stephanie Merhoff","Finished","Full","Full","40%","counts may be low due to glare and algae coverage"
+"2014-02-26_YB-Eq4",2014-02-26,2014-02-26,"YB","E","4","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Eq8",2014-02-26,2014-02-26,"YB","E","8","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","25%","counts may be low due to algae and water patches"
+"2014-02-26_YB-Eq3",2014-02-26,2014-02-26,"YB","E","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","counts may be low due to glare and algae coverage"
+"2014-02-26_YB-Eq4",2014-02-26,2014-02-26,"YB","E","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Eq8",2014-02-26,2014-02-26,"YB","E","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","25%","counts may be low due to algae and water patches"
+"2014-02-26_YB-Eq3",2014-02-26,2014-02-26,"YB","E","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","counts may be low due to glare and algae coverage"
+"2014-02-26_YB-Eq4",2014-02-26,2014-02-26,"YB","E","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Eq8",2014-02-26,2014-02-26,"YB","E","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","counts may be low due to algae and water patches"
+"2014-02-26_YB-Eq3",2014-02-26,2014-02-26,"YB","E","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","counts may be low due to glare and algae coverage"
+"2014-02-26_YB-Eq4",2014-02-26,2014-02-26,"YB","E","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Eq8",2014-02-26,2014-02-26,"YB","E","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","counts may be low due to algae and water patches"
+"2014-02-26_YB-Eq3",2014-02-26,2014-02-26,"YB","E","3","Lim","Limpets","Type 12",5,0.0875,57.1428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","40%","counts may be low due to glare and algae coverage"
+"2014-02-26_YB-Eq4",2014-02-26,2014-02-26,"YB","E","4","Lim","Limpets","Type 12",10,0.0875,114.285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Eq8",2014-02-26,2014-02-26,"YB","E","8","Lim","Limpets","Type 12",10,0.0875,114.285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","counts may be low due to algae and water patches"
+"2014-02-26_YB-Eq3",2014-02-26,2014-02-26,"YB","E","3","Ls","Littorina_sitkana","Type 13",15,0.0875,171.428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","40%","counts may be low due to glare and algae coverage"
+"2014-02-26_YB-Eq4",2014-02-26,2014-02-26,"YB","E","4","Ls","Littorina_sitkana","Type 13",32,0.0875,365.714285714286,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Eq8",2014-02-26,2014-02-26,"YB","E","8","Ls","Littorina_sitkana","Type 13",32,0.0875,365.714285714286,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","counts may be low due to algae and water patches"
+"2014-02-26_YB-Eq3",2014-02-26,2014-02-26,"YB","E","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","counts may be low due to glare and algae coverage"
+"2014-02-26_YB-Eq4",2014-02-26,2014-02-26,"YB","E","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Eq8",2014-02-26,2014-02-26,"YB","E","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","counts may be low due to algae and water patches"
+"2014-02-26_YB-Eq3",2014-02-26,2014-02-26,"YB","E","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","counts may be low due to glare and algae coverage"
+"2014-02-26_YB-Eq4",2014-02-26,2014-02-26,"YB","E","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Eq8",2014-02-26,2014-02-26,"YB","E","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","counts may be low due to algae and water patches"
+"2014-02-26_YB-Eq3",2014-02-26,2014-02-26,"YB","E","3","Myt","Mytilus_spp","Type 7",282,0.0875,3222.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","40%","counts may be low due to glare and algae coverage"
+"2014-02-26_YB-Eq4",2014-02-26,2014-02-26,"YB","E","4","Myt","Mytilus_spp","Type 7",309,0.0875,3531.42857142857,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Eq8",2014-02-26,2014-02-26,"YB","E","8","Myt","Mytilus_spp","Type 7",417,0.0875,4765.71428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","counts may be low due to algae and water patches"
+"2014-02-26_YB-Eq3",2014-02-26,2014-02-26,"YB","E","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","counts may be low due to glare and algae coverage"
+"2014-02-26_YB-Eq4",2014-02-26,2014-02-26,"YB","E","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Eq8",2014-02-26,2014-02-26,"YB","E","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","counts may be low due to algae and water patches"
+"2014-02-26_YB-Eq3",2014-02-26,2014-02-26,"YB","E","3","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","counts may be low due to glare and algae coverage"
+"2014-02-26_YB-Eq4",2014-02-26,2014-02-26,"YB","E","4","Mt","Mytilus_trossulus","Type 15",18,0.0875,205.714285714286,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Eq8",2014-02-26,2014-02-26,"YB","E","8","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","counts may be low due to algae and water patches"
+"2014-02-26_YB-Eq3",2014-02-26,2014-02-26,"YB","E","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","counts may be low due to glare and algae coverage"
+"2014-02-26_YB-Eq4",2014-02-26,2014-02-26,"YB","E","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Eq8",2014-02-26,2014-02-26,"YB","E","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","counts may be low due to algae and water patches"
+"2014-02-26_YB-Eq3",2014-02-26,2014-02-26,"YB","E","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","counts may be low due to glare and algae coverage"
+"2014-02-26_YB-Eq4",2014-02-26,2014-02-26,"YB","E","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Eq8",2014-02-26,2014-02-26,"YB","E","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","counts may be low due to algae and water patches"
+"2014-02-26_YB-Eq3",2014-02-26,2014-02-26,"YB","E","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","counts may be low due to glare and algae coverage"
+"2014-02-26_YB-Eq4",2014-02-26,2014-02-26,"YB","E","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Eq8",2014-02-26,2014-02-26,"YB","E","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","counts may be low due to algae and water patches"
+"2014-02-26_YB-Eq3",2014-02-26,2014-02-26,"YB","E","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","counts may be low due to glare and algae coverage"
+"2014-02-26_YB-Eq4",2014-02-26,2014-02-26,"YB","E","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Eq8",2014-02-26,2014-02-26,"YB","E","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","counts may be low due to algae and water patches"
+"2014-02-26_YB-Eq3",2014-02-26,2014-02-26,"YB","E","3","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","counts may be low due to glare and algae coverage"
+"2014-02-26_YB-Eq4",2014-02-26,2014-02-26,"YB","E","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Eq8",2014-02-26,2014-02-26,"YB","E","8","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","counts may be low due to algae and water patches"
+"2014-02-26_YB-Eq3",2014-02-26,2014-02-26,"YB","E","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","counts may be low due to glare and algae coverage"
+"2014-02-26_YB-Eq4",2014-02-26,2014-02-26,"YB","E","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Eq8",2014-02-26,2014-02-26,"YB","E","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","counts may be low due to algae and water patches"
+"2014-02-26_YB-Eq3",2014-02-26,2014-02-26,"YB","E","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","counts may be low due to glare and algae coverage"
+"2014-02-26_YB-Eq4",2014-02-26,2014-02-26,"YB","E","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Eq8",2014-02-26,2014-02-26,"YB","E","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","counts may be low due to algae and water patches"
+"2014-02-26_YB-Eq3",2014-02-26,2014-02-26,"YB","E","3","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","counts may be low due to glare and algae coverage"
+"2014-02-26_YB-Eq4",2014-02-26,2014-02-26,"YB","E","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Eq8",2014-02-26,2014-02-26,"YB","E","8","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","counts may be low due to algae and water patches"
+"2014-02-26_YB-Eq3",2014-02-26,2014-02-26,"YB","E","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","counts may be low due to glare and algae coverage"
+"2014-02-26_YB-Eq4",2014-02-26,2014-02-26,"YB","E","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Eq8",2014-02-26,2014-02-26,"YB","E","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","counts may be low due to algae and water patches"
+"2014-02-26_YB-Eq3",2014-02-26,2014-02-26,"YB","E","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","counts may be low due to glare and algae coverage"
+"2014-02-26_YB-Eq4",2014-02-26,2014-02-26,"YB","E","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Eq8",2014-02-26,2014-02-26,"YB","E","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","counts may be low due to algae and water patches"
+"2014-02-26_YB-Eq3",2014-02-26,2014-02-26,"YB","E","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","counts may be low due to glare and algae coverage"
+"2014-02-26_YB-Eq4",2014-02-26,2014-02-26,"YB","E","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2014-02-26_YB-Eq8",2014-02-26,2014-02-26,"YB","E","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%","counts may be low due to algae and water patches"
+"2014-02-26_YB-Gq3",2014-02-26,2014-02-26,"YB","G","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to water patches and algae film"
+"2014-02-26_YB-Gq5",2014-02-26,2014-02-26,"YB","G","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%","Counts low due to water coverage. ~75% underwater."
+"2014-02-26_YB-Gq8",2014-02-26,2014-02-26,"YB","G","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patches"
+"2014-02-26_YB-Gq3",2014-02-26,2014-02-26,"YB","G","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to water patches and algae film"
+"2014-02-26_YB-Gq5",2014-02-26,2014-02-26,"YB","G","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%","Counts low due to water coverage. ~75% underwater."
+"2014-02-26_YB-Gq8",2014-02-26,2014-02-26,"YB","G","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patches"
+"2014-02-26_YB-Gq3",2014-02-26,2014-02-26,"YB","G","3","Bg","Balanus_glandula","Type 1",408,0.0875,4662.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to water patches and algae film"
+"2014-02-26_YB-Gq5",2014-02-26,2014-02-26,"YB","G","5","Bg","Balanus_glandula","Type 1",2102,0.0875,24022.8571428571,NA,"Beatriz Vaca","Finished","Full","Full","0%","Counts low due to water coverage. ~75% underwater."
+"2014-02-26_YB-Gq8",2014-02-26,2014-02-26,"YB","G","8","Bg","Balanus_glandula","Type 1",1219,0.0875,13931.4285714286,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patches"
+"2014-02-26_YB-Gq3",2014-02-26,2014-02-26,"YB","G","3","BgD","Balanus_glandula_(dead)","Type 2",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to water patches and algae film"
+"2014-02-26_YB-Gq5",2014-02-26,2014-02-26,"YB","G","5","BgD","Balanus_glandula_(dead)","Type 2",15,0.0875,171.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","0%","Counts low due to water coverage. ~75% underwater."
+"2014-02-26_YB-Gq8",2014-02-26,2014-02-26,"YB","G","8","BgD","Balanus_glandula_(dead)","Type 2",38,0.0875,434.285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patches"
+"2014-02-26_YB-Gq3",2014-02-26,2014-02-26,"YB","G","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to water patches and algae film"
+"2014-02-26_YB-Gq5",2014-02-26,2014-02-26,"YB","G","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%","Counts low due to water coverage. ~75% underwater."
+"2014-02-26_YB-Gq8",2014-02-26,2014-02-26,"YB","G","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patches"
+"2014-02-26_YB-Gq3",2014-02-26,2014-02-26,"YB","G","3","Cth","Chthamalus_dalli","Type 3",567,0.0875,6480,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to water patches and algae film"
+"2014-02-26_YB-Gq5",2014-02-26,2014-02-26,"YB","G","5","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%","Counts low due to water coverage. ~75% underwater."
+"2014-02-26_YB-Gq8",2014-02-26,2014-02-26,"YB","G","8","Cth","Chthamalus_dalli","Type 3",392,0.0875,4480,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patches"
+"2014-02-26_YB-Gq3",2014-02-26,2014-02-26,"YB","G","3","CthD","Chthamalus_dalli (dead)","Type 4",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to water patches and algae film"
+"2014-02-26_YB-Gq5",2014-02-26,2014-02-26,"YB","G","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%","Counts low due to water coverage. ~75% underwater."
+"2014-02-26_YB-Gq8",2014-02-26,2014-02-26,"YB","G","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patches"
+"2014-02-26_YB-Gq3",2014-02-26,2014-02-26,"YB","G","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to water patches and algae film"
+"2014-02-26_YB-Gq5",2014-02-26,2014-02-26,"YB","G","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%","Counts low due to water coverage. ~75% underwater."
+"2014-02-26_YB-Gq8",2014-02-26,2014-02-26,"YB","G","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patches"
+"2014-02-26_YB-Gq3",2014-02-26,2014-02-26,"YB","G","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to water patches and algae film"
+"2014-02-26_YB-Gq5",2014-02-26,2014-02-26,"YB","G","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%","Counts low due to water coverage. ~75% underwater."
+"2014-02-26_YB-Gq8",2014-02-26,2014-02-26,"YB","G","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patches"
+"2014-02-26_YB-Gq3",2014-02-26,2014-02-26,"YB","G","3","Lim","Limpets","Type 12",11,0.0875,125.714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to water patches and algae film"
+"2014-02-26_YB-Gq5",2014-02-26,2014-02-26,"YB","G","5","Lim","Limpets","Type 12",205,0.0875,2342.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","0%","Counts low due to water coverage. ~75% underwater."
+"2014-02-26_YB-Gq8",2014-02-26,2014-02-26,"YB","G","8","Lim","Limpets","Type 12",12,0.0875,137.142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patches"
+"2014-02-26_YB-Gq3",2014-02-26,2014-02-26,"YB","G","3","Ls","Littorina_sitkana","Type 13",83,0.0875,948.571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to water patches and algae film"
+"2014-02-26_YB-Gq5",2014-02-26,2014-02-26,"YB","G","5","Ls","Littorina_sitkana","Type 13",95,0.0875,1085.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","0%","Counts low due to water coverage. ~75% underwater."
+"2014-02-26_YB-Gq8",2014-02-26,2014-02-26,"YB","G","8","Ls","Littorina_sitkana","Type 13",23,0.0875,262.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patches"
+"2014-02-26_YB-Gq3",2014-02-26,2014-02-26,"YB","G","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to water patches and algae film"
+"2014-02-26_YB-Gq5",2014-02-26,2014-02-26,"YB","G","5","Mc","Mytilus_californianus","Type 17",35,0.0875,400,NA,"Beatriz Vaca","Finished","Full","Full","0%","Counts low due to water coverage. ~75% underwater."
+"2014-02-26_YB-Gq8",2014-02-26,2014-02-26,"YB","G","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patches"
+"2014-02-26_YB-Gq3",2014-02-26,2014-02-26,"YB","G","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to water patches and algae film"
+"2014-02-26_YB-Gq5",2014-02-26,2014-02-26,"YB","G","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%","Counts low due to water coverage. ~75% underwater."
+"2014-02-26_YB-Gq8",2014-02-26,2014-02-26,"YB","G","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patches"
+"2014-02-26_YB-Gq3",2014-02-26,2014-02-26,"YB","G","3","Myt","Mytilus_spp","Type 7",777,0.0875,8880,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to water patches and algae film"
+"2014-02-26_YB-Gq5",2014-02-26,2014-02-26,"YB","G","5","Myt","Mytilus_spp","Type 7",811,0.0875,9268.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","0%","Counts low due to water coverage. ~75% underwater."
+"2014-02-26_YB-Gq8",2014-02-26,2014-02-26,"YB","G","8","Myt","Mytilus_spp","Type 7",756,0.0875,8640,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patches"
+"2014-02-26_YB-Gq3",2014-02-26,2014-02-26,"YB","G","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to water patches and algae film"
+"2014-02-26_YB-Gq5",2014-02-26,2014-02-26,"YB","G","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%","Counts low due to water coverage. ~75% underwater."
+"2014-02-26_YB-Gq8",2014-02-26,2014-02-26,"YB","G","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patches"
+"2014-02-26_YB-Gq3",2014-02-26,2014-02-26,"YB","G","3","Mt","Mytilus_trossulus","Type 15",28,0.0875,320,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to water patches and algae film"
+"2014-02-26_YB-Gq5",2014-02-26,2014-02-26,"YB","G","5","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%","Counts low due to water coverage. ~75% underwater."
+"2014-02-26_YB-Gq8",2014-02-26,2014-02-26,"YB","G","8","Mt","Mytilus_trossulus","Type 15",76,0.0875,868.571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patches"
+"2014-02-26_YB-Gq3",2014-02-26,2014-02-26,"YB","G","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to water patches and algae film"
+"2014-02-26_YB-Gq5",2014-02-26,2014-02-26,"YB","G","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%","Counts low due to water coverage. ~75% underwater."
+"2014-02-26_YB-Gq8",2014-02-26,2014-02-26,"YB","G","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patches"
+"2014-02-26_YB-Gq3",2014-02-26,2014-02-26,"YB","G","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to water patches and algae film"
+"2014-02-26_YB-Gq5",2014-02-26,2014-02-26,"YB","G","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%","Counts low due to water coverage. ~75% underwater."
+"2014-02-26_YB-Gq8",2014-02-26,2014-02-26,"YB","G","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patches"
+"2014-02-26_YB-Gq3",2014-02-26,2014-02-26,"YB","G","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to water patches and algae film"
+"2014-02-26_YB-Gq5",2014-02-26,2014-02-26,"YB","G","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%","Counts low due to water coverage. ~75% underwater."
+"2014-02-26_YB-Gq8",2014-02-26,2014-02-26,"YB","G","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patches"
+"2014-02-26_YB-Gq3",2014-02-26,2014-02-26,"YB","G","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to water patches and algae film"
+"2014-02-26_YB-Gq5",2014-02-26,2014-02-26,"YB","G","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%","Counts low due to water coverage. ~75% underwater."
+"2014-02-26_YB-Gq8",2014-02-26,2014-02-26,"YB","G","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patches"
+"2014-02-26_YB-Gq3",2014-02-26,2014-02-26,"YB","G","3","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to water patches and algae film"
+"2014-02-26_YB-Gq5",2014-02-26,2014-02-26,"YB","G","5","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%","Counts low due to water coverage. ~75% underwater."
+"2014-02-26_YB-Gq8",2014-02-26,2014-02-26,"YB","G","8","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patches"
+"2014-02-26_YB-Gq3",2014-02-26,2014-02-26,"YB","G","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to water patches and algae film"
+"2014-02-26_YB-Gq5",2014-02-26,2014-02-26,"YB","G","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%","Counts low due to water coverage. ~75% underwater."
+"2014-02-26_YB-Gq8",2014-02-26,2014-02-26,"YB","G","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patches"
+"2014-02-26_YB-Gq3",2014-02-26,2014-02-26,"YB","G","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to water patches and algae film"
+"2014-02-26_YB-Gq5",2014-02-26,2014-02-26,"YB","G","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%","Counts low due to water coverage. ~75% underwater."
+"2014-02-26_YB-Gq8",2014-02-26,2014-02-26,"YB","G","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patches"
+"2014-02-26_YB-Gq3",2014-02-26,2014-02-26,"YB","G","3","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to water patches and algae film"
+"2014-02-26_YB-Gq5",2014-02-26,2014-02-26,"YB","G","5","Pp","Pollicipes_polymerus","Type 11",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","0%","Counts low due to water coverage. ~75% underwater."
+"2014-02-26_YB-Gq8",2014-02-26,2014-02-26,"YB","G","8","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patches"
+"2014-02-26_YB-Gq3",2014-02-26,2014-02-26,"YB","G","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to water patches and algae film"
+"2014-02-26_YB-Gq5",2014-02-26,2014-02-26,"YB","G","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%","Counts low due to water coverage. ~75% underwater."
+"2014-02-26_YB-Gq8",2014-02-26,2014-02-26,"YB","G","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patches"
+"2014-02-26_YB-Gq3",2014-02-26,2014-02-26,"YB","G","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to water patches and algae film"
+"2014-02-26_YB-Gq5",2014-02-26,2014-02-26,"YB","G","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%","Counts low due to water coverage. ~75% underwater."
+"2014-02-26_YB-Gq8",2014-02-26,2014-02-26,"YB","G","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patches"
+"2014-02-26_YB-Gq3",2014-02-26,2014-02-26,"YB","G","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to water patches and algae film"
+"2014-02-26_YB-Gq5",2014-02-26,2014-02-26,"YB","G","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%","Counts low due to water coverage. ~75% underwater."
+"2014-02-26_YB-Gq8",2014-02-26,2014-02-26,"YB","G","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patches"
+"2014-04-01_YB-Aq6",2014-04-01,2014-04-01,"YB","A","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","1%",""
+"2014-04-01_YB-Aq7",2014-04-01,2014-04-01,"YB","A","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-04-01_YB-Aq9",2014-04-01,2014-04-01,"YB","A","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-Aq6",2014-04-01,2014-04-01,"YB","A","6","Ae","Anemones","Type 14",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","1%",""
+"2014-04-01_YB-Aq7",2014-04-01,2014-04-01,"YB","A","7","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-04-01_YB-Aq9",2014-04-01,2014-04-01,"YB","A","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-Aq6",2014-04-01,2014-04-01,"YB","A","6","Bg","Balanus_glandula","Type 1",2907,0.0875,33222.8571428571,NA,"Celeste Moen","Finished","Full","Full","1%",""
+"2014-04-01_YB-Aq7",2014-04-01,2014-04-01,"YB","A","7","Bg","Balanus_glandula","Type 1",838,0.015625,53632,"c","Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-04-01_YB-Aq9",2014-04-01,2014-04-01,"YB","A","9","Bg","Balanus_glandula","Type 1",660,0.015625,42240,"c","Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-Aq6",2014-04-01,2014-04-01,"YB","A","6","BgD","Balanus_glandula_(dead)","Type 2",59,0.0875,674.285714285714,NA,"Celeste Moen","Finished","Full","Full","1%",""
+"2014-04-01_YB-Aq7",2014-04-01,2014-04-01,"YB","A","7","BgD","Balanus_glandula_(dead)","Type 2",13,0.015625,832,"c","Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-04-01_YB-Aq9",2014-04-01,2014-04-01,"YB","A","9","BgD","Balanus_glandula_(dead)","Type 2",4,0.015625,256,"c","Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-Aq6",2014-04-01,2014-04-01,"YB","A","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","1%",""
+"2014-04-01_YB-Aq7",2014-04-01,2014-04-01,"YB","A","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-04-01_YB-Aq9",2014-04-01,2014-04-01,"YB","A","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-Aq6",2014-04-01,2014-04-01,"YB","A","6","Cth","Chthamalus_dalli","Type 3",31,0.0875,354.285714285714,NA,"Celeste Moen","Finished","Full","Full","1%",""
+"2014-04-01_YB-Aq7",2014-04-01,2014-04-01,"YB","A","7","Cth","Chthamalus_dalli","Type 3",1,0.015625,64,"c","Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-04-01_YB-Aq9",2014-04-01,2014-04-01,"YB","A","9","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-Aq6",2014-04-01,2014-04-01,"YB","A","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","1%",""
+"2014-04-01_YB-Aq7",2014-04-01,2014-04-01,"YB","A","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-04-01_YB-Aq9",2014-04-01,2014-04-01,"YB","A","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-Aq6",2014-04-01,2014-04-01,"YB","A","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","1%",""
+"2014-04-01_YB-Aq7",2014-04-01,2014-04-01,"YB","A","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-04-01_YB-Aq9",2014-04-01,2014-04-01,"YB","A","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-Aq6",2014-04-01,2014-04-01,"YB","A","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","1%",""
+"2014-04-01_YB-Aq7",2014-04-01,2014-04-01,"YB","A","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-04-01_YB-Aq9",2014-04-01,2014-04-01,"YB","A","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-Aq6",2014-04-01,2014-04-01,"YB","A","6","Lim","Limpets","Type 12",6,0.0875,68.5714285714286,NA,"Celeste Moen","Finished","Full","Full","1%",""
+"2014-04-01_YB-Aq7",2014-04-01,2014-04-01,"YB","A","7","Lim","Limpets","Type 12",121,0.0875,1382.85714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-04-01_YB-Aq9",2014-04-01,2014-04-01,"YB","A","9","Lim","Limpets","Type 12",55,0.0875,628.571428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-Aq6",2014-04-01,2014-04-01,"YB","A","6","Ls","Littorina_sitkana","Type 13",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","1%",""
+"2014-04-01_YB-Aq7",2014-04-01,2014-04-01,"YB","A","7","Ls","Littorina_sitkana","Type 13",141,0.0875,1611.42857142857,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-04-01_YB-Aq9",2014-04-01,2014-04-01,"YB","A","9","Ls","Littorina_sitkana","Type 13",89,0.0875,1017.14285714286,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-Aq6",2014-04-01,2014-04-01,"YB","A","6","Mc","Mytilus_californianus","Type 17",1,0.0875,11.4285714285714,NA,"Celeste Moen","Finished","Full","Full","1%",""
+"2014-04-01_YB-Aq7",2014-04-01,2014-04-01,"YB","A","7","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-04-01_YB-Aq9",2014-04-01,2014-04-01,"YB","A","9","Mc","Mytilus_californianus","Type 17",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-Aq6",2014-04-01,2014-04-01,"YB","A","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","1%",""
+"2014-04-01_YB-Aq7",2014-04-01,2014-04-01,"YB","A","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-04-01_YB-Aq9",2014-04-01,2014-04-01,"YB","A","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-Aq6",2014-04-01,2014-04-01,"YB","A","6","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","1%",""
+"2014-04-01_YB-Aq7",2014-04-01,2014-04-01,"YB","A","7","Myt","Mytilus_spp","Type 7",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-04-01_YB-Aq9",2014-04-01,2014-04-01,"YB","A","9","Myt","Mytilus_spp","Type 7",549,0.0875,6274.28571428571,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-Aq6",2014-04-01,2014-04-01,"YB","A","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","1%",""
+"2014-04-01_YB-Aq7",2014-04-01,2014-04-01,"YB","A","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-04-01_YB-Aq9",2014-04-01,2014-04-01,"YB","A","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-Aq6",2014-04-01,2014-04-01,"YB","A","6","Mt","Mytilus_trossulus","Type 15",646,0.0875,7382.85714285714,NA,"Celeste Moen","Finished","Full","Full","1%",""
+"2014-04-01_YB-Aq7",2014-04-01,2014-04-01,"YB","A","7","Mt","Mytilus_trossulus","Type 15",130,0.015625,8320,"c","Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-04-01_YB-Aq9",2014-04-01,2014-04-01,"YB","A","9","Mt","Mytilus_trossulus","Type 15",448,0.0875,5120,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-Aq6",2014-04-01,2014-04-01,"YB","A","6","MtD","Mytilus_trossulus_(dead)","Type 16",2,0.0875,22.8571428571429,NA,"Celeste Moen","Finished","Full","Full","1%",""
+"2014-04-01_YB-Aq7",2014-04-01,2014-04-01,"YB","A","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-04-01_YB-Aq9",2014-04-01,2014-04-01,"YB","A","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-Aq6",2014-04-01,2014-04-01,"YB","A","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","1%",""
+"2014-04-01_YB-Aq7",2014-04-01,2014-04-01,"YB","A","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-04-01_YB-Aq9",2014-04-01,2014-04-01,"YB","A","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-Aq6",2014-04-01,2014-04-01,"YB","A","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","1%",""
+"2014-04-01_YB-Aq7",2014-04-01,2014-04-01,"YB","A","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-04-01_YB-Aq9",2014-04-01,2014-04-01,"YB","A","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-Aq6",2014-04-01,2014-04-01,"YB","A","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","1%",""
+"2014-04-01_YB-Aq7",2014-04-01,2014-04-01,"YB","A","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-04-01_YB-Aq9",2014-04-01,2014-04-01,"YB","A","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-Aq6",2014-04-01,2014-04-01,"YB","A","6","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","1%",""
+"2014-04-01_YB-Aq7",2014-04-01,2014-04-01,"YB","A","7","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-04-01_YB-Aq9",2014-04-01,2014-04-01,"YB","A","9","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-Aq6",2014-04-01,2014-04-01,"YB","A","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","1%",""
+"2014-04-01_YB-Aq7",2014-04-01,2014-04-01,"YB","A","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-04-01_YB-Aq9",2014-04-01,2014-04-01,"YB","A","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-Aq6",2014-04-01,2014-04-01,"YB","A","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","1%",""
+"2014-04-01_YB-Aq7",2014-04-01,2014-04-01,"YB","A","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-04-01_YB-Aq9",2014-04-01,2014-04-01,"YB","A","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-Aq6",2014-04-01,2014-04-01,"YB","A","6","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","1%",""
+"2014-04-01_YB-Aq7",2014-04-01,2014-04-01,"YB","A","7","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-04-01_YB-Aq9",2014-04-01,2014-04-01,"YB","A","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-Aq6",2014-04-01,2014-04-01,"YB","A","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","1%",""
+"2014-04-01_YB-Aq7",2014-04-01,2014-04-01,"YB","A","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-04-01_YB-Aq9",2014-04-01,2014-04-01,"YB","A","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-Aq6",2014-04-01,2014-04-01,"YB","A","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","1%",""
+"2014-04-01_YB-Aq7",2014-04-01,2014-04-01,"YB","A","7","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-04-01_YB-Aq9",2014-04-01,2014-04-01,"YB","A","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-Aq6",2014-04-01,2014-04-01,"YB","A","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","1%",""
+"2014-04-01_YB-Aq7",2014-04-01,2014-04-01,"YB","A","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-04-01_YB-Aq9",2014-04-01,2014-04-01,"YB","A","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-ABq1",2014-04-01,2014-04-01,"YB","AB","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-ABq2",2014-04-01,2014-04-01,"YB","AB","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-01_YB-ABq4",2014-04-01,2014-04-01,"YB","AB","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-04-01_YB-ABq1",2014-04-01,2014-04-01,"YB","AB","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-ABq2",2014-04-01,2014-04-01,"YB","AB","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-01_YB-ABq4",2014-04-01,2014-04-01,"YB","AB","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-04-01_YB-ABq1",2014-04-01,2014-04-01,"YB","AB","1","Bg","Balanus_glandula","Type 1",560,0.0875,6400,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-ABq2",2014-04-01,2014-04-01,"YB","AB","2","Bg","Balanus_glandula","Type 1",532,0.015625,34048,"c","Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-01_YB-ABq4",2014-04-01,2014-04-01,"YB","AB","4","Bg","Balanus_glandula","Type 1",2010,0.0875,22971.4285714286,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-04-01_YB-ABq1",2014-04-01,2014-04-01,"YB","AB","1","BgD","Balanus_glandula_(dead)","Type 2",24,0.0875,274.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-ABq2",2014-04-01,2014-04-01,"YB","AB","2","BgD","Balanus_glandula_(dead)","Type 2",20,0.015625,1280,"c","Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-01_YB-ABq4",2014-04-01,2014-04-01,"YB","AB","4","BgD","Balanus_glandula_(dead)","Type 2",15,0.0875,171.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-04-01_YB-ABq1",2014-04-01,2014-04-01,"YB","AB","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-ABq2",2014-04-01,2014-04-01,"YB","AB","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-01_YB-ABq4",2014-04-01,2014-04-01,"YB","AB","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-04-01_YB-ABq1",2014-04-01,2014-04-01,"YB","AB","1","Cth","Chthamalus_dalli","Type 3",51,0.0875,582.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-ABq2",2014-04-01,2014-04-01,"YB","AB","2","Cth","Chthamalus_dalli","Type 3",7,0.015625,448,"c","Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-01_YB-ABq4",2014-04-01,2014-04-01,"YB","AB","4","Cth","Chthamalus_dalli","Type 3",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-04-01_YB-ABq1",2014-04-01,2014-04-01,"YB","AB","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-ABq2",2014-04-01,2014-04-01,"YB","AB","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-01_YB-ABq4",2014-04-01,2014-04-01,"YB","AB","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-04-01_YB-ABq1",2014-04-01,2014-04-01,"YB","AB","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-ABq2",2014-04-01,2014-04-01,"YB","AB","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-01_YB-ABq4",2014-04-01,2014-04-01,"YB","AB","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-04-01_YB-ABq1",2014-04-01,2014-04-01,"YB","AB","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-ABq2",2014-04-01,2014-04-01,"YB","AB","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-01_YB-ABq4",2014-04-01,2014-04-01,"YB","AB","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-04-01_YB-ABq1",2014-04-01,2014-04-01,"YB","AB","1","Lim","Limpets","Type 12",40,0.0875,457.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-ABq2",2014-04-01,2014-04-01,"YB","AB","2","Lim","Limpets","Type 12",147,0.0875,1680,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-01_YB-ABq4",2014-04-01,2014-04-01,"YB","AB","4","Lim","Limpets","Type 12",224,0.0875,2560,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-04-01_YB-ABq1",2014-04-01,2014-04-01,"YB","AB","1","Ls","Littorina_sitkana","Type 13",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-ABq2",2014-04-01,2014-04-01,"YB","AB","2","Ls","Littorina_sitkana","Type 13",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-01_YB-ABq4",2014-04-01,2014-04-01,"YB","AB","4","Ls","Littorina_sitkana","Type 13",27,0.0875,308.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-04-01_YB-ABq1",2014-04-01,2014-04-01,"YB","AB","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-ABq2",2014-04-01,2014-04-01,"YB","AB","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-01_YB-ABq4",2014-04-01,2014-04-01,"YB","AB","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-04-01_YB-ABq1",2014-04-01,2014-04-01,"YB","AB","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-ABq2",2014-04-01,2014-04-01,"YB","AB","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-01_YB-ABq4",2014-04-01,2014-04-01,"YB","AB","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-04-01_YB-ABq1",2014-04-01,2014-04-01,"YB","AB","1","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-ABq2",2014-04-01,2014-04-01,"YB","AB","2","Myt","Mytilus_spp","Type 7",255,0.0875,2914.28571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-01_YB-ABq4",2014-04-01,2014-04-01,"YB","AB","4","Myt","Mytilus_spp","Type 7",187,0.0875,2137.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-04-01_YB-ABq1",2014-04-01,2014-04-01,"YB","AB","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-ABq2",2014-04-01,2014-04-01,"YB","AB","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-01_YB-ABq4",2014-04-01,2014-04-01,"YB","AB","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-04-01_YB-ABq1",2014-04-01,2014-04-01,"YB","AB","1","Mt","Mytilus_trossulus","Type 15",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-ABq2",2014-04-01,2014-04-01,"YB","AB","2","Mt","Mytilus_trossulus","Type 15",130,0.0875,1485.71428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-01_YB-ABq4",2014-04-01,2014-04-01,"YB","AB","4","Mt","Mytilus_trossulus","Type 15",11,0.0875,125.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-04-01_YB-ABq1",2014-04-01,2014-04-01,"YB","AB","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-ABq2",2014-04-01,2014-04-01,"YB","AB","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-01_YB-ABq4",2014-04-01,2014-04-01,"YB","AB","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-04-01_YB-ABq1",2014-04-01,2014-04-01,"YB","AB","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-ABq2",2014-04-01,2014-04-01,"YB","AB","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-01_YB-ABq4",2014-04-01,2014-04-01,"YB","AB","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-04-01_YB-ABq1",2014-04-01,2014-04-01,"YB","AB","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-ABq2",2014-04-01,2014-04-01,"YB","AB","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-01_YB-ABq4",2014-04-01,2014-04-01,"YB","AB","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-04-01_YB-ABq1",2014-04-01,2014-04-01,"YB","AB","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-ABq2",2014-04-01,2014-04-01,"YB","AB","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-01_YB-ABq4",2014-04-01,2014-04-01,"YB","AB","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-04-01_YB-ABq1",2014-04-01,2014-04-01,"YB","AB","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-ABq2",2014-04-01,2014-04-01,"YB","AB","2","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-01_YB-ABq4",2014-04-01,2014-04-01,"YB","AB","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-04-01_YB-ABq1",2014-04-01,2014-04-01,"YB","AB","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-ABq2",2014-04-01,2014-04-01,"YB","AB","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-01_YB-ABq4",2014-04-01,2014-04-01,"YB","AB","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-04-01_YB-ABq1",2014-04-01,2014-04-01,"YB","AB","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-ABq2",2014-04-01,2014-04-01,"YB","AB","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-01_YB-ABq4",2014-04-01,2014-04-01,"YB","AB","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-04-01_YB-ABq1",2014-04-01,2014-04-01,"YB","AB","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-ABq2",2014-04-01,2014-04-01,"YB","AB","2","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-01_YB-ABq4",2014-04-01,2014-04-01,"YB","AB","4","Pp","Pollicipes_polymerus","Type 11",60,0.0875,685.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-04-01_YB-ABq1",2014-04-01,2014-04-01,"YB","AB","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-ABq2",2014-04-01,2014-04-01,"YB","AB","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-01_YB-ABq4",2014-04-01,2014-04-01,"YB","AB","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-04-01_YB-ABq1",2014-04-01,2014-04-01,"YB","AB","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-ABq2",2014-04-01,2014-04-01,"YB","AB","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-01_YB-ABq4",2014-04-01,2014-04-01,"YB","AB","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-04-01_YB-ABq1",2014-04-01,2014-04-01,"YB","AB","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-ABq2",2014-04-01,2014-04-01,"YB","AB","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-01_YB-ABq4",2014-04-01,2014-04-01,"YB","AB","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-04-01_YB-ACq4",2014-04-01,2014-04-01,"YB","AC","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-ACq7",2014-04-01,2014-04-01,"YB","AC","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","25% underwater; counts likely low due to blur, glare, and shallow water cover"
+"2014-04-01_YB-ACq8",2014-04-01,2014-04-01,"YB","AC","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to algae and water cover. ~20% Underwater"
+"2014-04-01_YB-ACq4",2014-04-01,2014-04-01,"YB","AC","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-ACq7",2014-04-01,2014-04-01,"YB","AC","7","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","25% underwater; counts likely low due to blur, glare, and shallow water cover"
+"2014-04-01_YB-ACq8",2014-04-01,2014-04-01,"YB","AC","8","Ae","Anemones","Type 14",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to algae and water cover. ~20% Underwater"
+"2014-04-01_YB-ACq4",2014-04-01,2014-04-01,"YB","AC","4","Bg","Balanus_glandula","Type 1",214,0.0875,2445.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-ACq7",2014-04-01,2014-04-01,"YB","AC","7","Bg","Balanus_glandula","Type 1",451,0.0875,5154.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","2%","25% underwater; counts likely low due to blur, glare, and shallow water cover"
+"2014-04-01_YB-ACq8",2014-04-01,2014-04-01,"YB","AC","8","Bg","Balanus_glandula","Type 1",463,0.0875,5291.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to algae and water cover. ~20% Underwater"
+"2014-04-01_YB-ACq4",2014-04-01,2014-04-01,"YB","AC","4","BgD","Balanus_glandula_(dead)","Type 2",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-ACq7",2014-04-01,2014-04-01,"YB","AC","7","BgD","Balanus_glandula_(dead)","Type 2",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","2%","25% underwater; counts likely low due to blur, glare, and shallow water cover"
+"2014-04-01_YB-ACq8",2014-04-01,2014-04-01,"YB","AC","8","BgD","Balanus_glandula_(dead)","Type 2",80,0.0875,914.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to algae and water cover. ~20% Underwater"
+"2014-04-01_YB-ACq4",2014-04-01,2014-04-01,"YB","AC","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-ACq7",2014-04-01,2014-04-01,"YB","AC","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","25% underwater; counts likely low due to blur, glare, and shallow water cover"
+"2014-04-01_YB-ACq8",2014-04-01,2014-04-01,"YB","AC","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to algae and water cover. ~20% Underwater"
+"2014-04-01_YB-ACq4",2014-04-01,2014-04-01,"YB","AC","4","Cth","Chthamalus_dalli","Type 3",19,0.0875,217.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-ACq7",2014-04-01,2014-04-01,"YB","AC","7","Cth","Chthamalus_dalli","Type 3",73,0.0875,834.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","2%","25% underwater; counts likely low due to blur, glare, and shallow water cover"
+"2014-04-01_YB-ACq8",2014-04-01,2014-04-01,"YB","AC","8","Cth","Chthamalus_dalli","Type 3",47,0.0875,537.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to algae and water cover. ~20% Underwater"
+"2014-04-01_YB-ACq4",2014-04-01,2014-04-01,"YB","AC","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-ACq7",2014-04-01,2014-04-01,"YB","AC","7","CthD","Chthamalus_dalli (dead)","Type 4",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","2%","25% underwater; counts likely low due to blur, glare, and shallow water cover"
+"2014-04-01_YB-ACq8",2014-04-01,2014-04-01,"YB","AC","8","CthD","Chthamalus_dalli (dead)","Type 4",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to algae and water cover. ~20% Underwater"
+"2014-04-01_YB-ACq4",2014-04-01,2014-04-01,"YB","AC","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-ACq7",2014-04-01,2014-04-01,"YB","AC","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","25% underwater; counts likely low due to blur, glare, and shallow water cover"
+"2014-04-01_YB-ACq8",2014-04-01,2014-04-01,"YB","AC","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to algae and water cover. ~20% Underwater"
+"2014-04-01_YB-ACq4",2014-04-01,2014-04-01,"YB","AC","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-ACq7",2014-04-01,2014-04-01,"YB","AC","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","25% underwater; counts likely low due to blur, glare, and shallow water cover"
+"2014-04-01_YB-ACq8",2014-04-01,2014-04-01,"YB","AC","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to algae and water cover. ~20% Underwater"
+"2014-04-01_YB-ACq4",2014-04-01,2014-04-01,"YB","AC","4","Lim","Limpets","Type 12",22,0.0875,251.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-ACq7",2014-04-01,2014-04-01,"YB","AC","7","Lim","Limpets","Type 12",86,0.0875,982.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","2%","25% underwater; counts likely low due to blur, glare, and shallow water cover"
+"2014-04-01_YB-ACq8",2014-04-01,2014-04-01,"YB","AC","8","Lim","Limpets","Type 12",60,0.0875,685.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to algae and water cover. ~20% Underwater"
+"2014-04-01_YB-ACq4",2014-04-01,2014-04-01,"YB","AC","4","Ls","Littorina_sitkana","Type 13",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-ACq7",2014-04-01,2014-04-01,"YB","AC","7","Ls","Littorina_sitkana","Type 13",57,0.0875,651.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","2%","25% underwater; counts likely low due to blur, glare, and shallow water cover"
+"2014-04-01_YB-ACq8",2014-04-01,2014-04-01,"YB","AC","8","Ls","Littorina_sitkana","Type 13",110,0.0875,1257.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to algae and water cover. ~20% Underwater"
+"2014-04-01_YB-ACq4",2014-04-01,2014-04-01,"YB","AC","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-ACq7",2014-04-01,2014-04-01,"YB","AC","7","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","25% underwater; counts likely low due to blur, glare, and shallow water cover"
+"2014-04-01_YB-ACq8",2014-04-01,2014-04-01,"YB","AC","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to algae and water cover. ~20% Underwater"
+"2014-04-01_YB-ACq4",2014-04-01,2014-04-01,"YB","AC","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-ACq7",2014-04-01,2014-04-01,"YB","AC","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","25% underwater; counts likely low due to blur, glare, and shallow water cover"
+"2014-04-01_YB-ACq8",2014-04-01,2014-04-01,"YB","AC","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to algae and water cover. ~20% Underwater"
+"2014-04-01_YB-ACq4",2014-04-01,2014-04-01,"YB","AC","4","Myt","Mytilus_spp","Type 7",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-ACq7",2014-04-01,2014-04-01,"YB","AC","7","Myt","Mytilus_spp","Type 7",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","2%","25% underwater; counts likely low due to blur, glare, and shallow water cover"
+"2014-04-01_YB-ACq8",2014-04-01,2014-04-01,"YB","AC","8","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to algae and water cover. ~20% Underwater"
+"2014-04-01_YB-ACq4",2014-04-01,2014-04-01,"YB","AC","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-ACq7",2014-04-01,2014-04-01,"YB","AC","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","25% underwater; counts likely low due to blur, glare, and shallow water cover"
+"2014-04-01_YB-ACq8",2014-04-01,2014-04-01,"YB","AC","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to algae and water cover. ~20% Underwater"
+"2014-04-01_YB-ACq4",2014-04-01,2014-04-01,"YB","AC","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-ACq7",2014-04-01,2014-04-01,"YB","AC","7","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","25% underwater; counts likely low due to blur, glare, and shallow water cover"
+"2014-04-01_YB-ACq8",2014-04-01,2014-04-01,"YB","AC","8","Mt","Mytilus_trossulus","Type 15",28,0.0875,320,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to algae and water cover. ~20% Underwater"
+"2014-04-01_YB-ACq4",2014-04-01,2014-04-01,"YB","AC","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-ACq7",2014-04-01,2014-04-01,"YB","AC","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","25% underwater; counts likely low due to blur, glare, and shallow water cover"
+"2014-04-01_YB-ACq8",2014-04-01,2014-04-01,"YB","AC","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to algae and water cover. ~20% Underwater"
+"2014-04-01_YB-ACq4",2014-04-01,2014-04-01,"YB","AC","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-ACq7",2014-04-01,2014-04-01,"YB","AC","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","25% underwater; counts likely low due to blur, glare, and shallow water cover"
+"2014-04-01_YB-ACq8",2014-04-01,2014-04-01,"YB","AC","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to algae and water cover. ~20% Underwater"
+"2014-04-01_YB-ACq4",2014-04-01,2014-04-01,"YB","AC","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-ACq7",2014-04-01,2014-04-01,"YB","AC","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","25% underwater; counts likely low due to blur, glare, and shallow water cover"
+"2014-04-01_YB-ACq8",2014-04-01,2014-04-01,"YB","AC","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to algae and water cover. ~20% Underwater"
+"2014-04-01_YB-ACq4",2014-04-01,2014-04-01,"YB","AC","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-ACq7",2014-04-01,2014-04-01,"YB","AC","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","25% underwater; counts likely low due to blur, glare, and shallow water cover"
+"2014-04-01_YB-ACq8",2014-04-01,2014-04-01,"YB","AC","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to algae and water cover. ~20% Underwater"
+"2014-04-01_YB-ACq4",2014-04-01,2014-04-01,"YB","AC","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-ACq7",2014-04-01,2014-04-01,"YB","AC","7","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","25% underwater; counts likely low due to blur, glare, and shallow water cover"
+"2014-04-01_YB-ACq8",2014-04-01,2014-04-01,"YB","AC","8","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to algae and water cover. ~20% Underwater"
+"2014-04-01_YB-ACq4",2014-04-01,2014-04-01,"YB","AC","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-ACq7",2014-04-01,2014-04-01,"YB","AC","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","25% underwater; counts likely low due to blur, glare, and shallow water cover"
+"2014-04-01_YB-ACq8",2014-04-01,2014-04-01,"YB","AC","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to algae and water cover. ~20% Underwater"
+"2014-04-01_YB-ACq4",2014-04-01,2014-04-01,"YB","AC","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-ACq7",2014-04-01,2014-04-01,"YB","AC","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","25% underwater; counts likely low due to blur, glare, and shallow water cover"
+"2014-04-01_YB-ACq8",2014-04-01,2014-04-01,"YB","AC","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to algae and water cover. ~20% Underwater"
+"2014-04-01_YB-ACq4",2014-04-01,2014-04-01,"YB","AC","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-ACq7",2014-04-01,2014-04-01,"YB","AC","7","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","25% underwater; counts likely low due to blur, glare, and shallow water cover"
+"2014-04-01_YB-ACq8",2014-04-01,2014-04-01,"YB","AC","8","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to algae and water cover. ~20% Underwater"
+"2014-04-01_YB-ACq4",2014-04-01,2014-04-01,"YB","AC","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-ACq7",2014-04-01,2014-04-01,"YB","AC","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","25% underwater; counts likely low due to blur, glare, and shallow water cover"
+"2014-04-01_YB-ACq8",2014-04-01,2014-04-01,"YB","AC","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to algae and water cover. ~20% Underwater"
+"2014-04-01_YB-ACq4",2014-04-01,2014-04-01,"YB","AC","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-ACq7",2014-04-01,2014-04-01,"YB","AC","7","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","25% underwater; counts likely low due to blur, glare, and shallow water cover"
+"2014-04-01_YB-ACq8",2014-04-01,2014-04-01,"YB","AC","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to algae and water cover. ~20% Underwater"
+"2014-04-01_YB-ACq4",2014-04-01,2014-04-01,"YB","AC","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-ACq7",2014-04-01,2014-04-01,"YB","AC","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","25% underwater; counts likely low due to blur, glare, and shallow water cover"
+"2014-04-01_YB-ACq8",2014-04-01,2014-04-01,"YB","AC","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to algae and water cover. ~20% Underwater"
+"2014-04-01_YB-ADq1",2014-04-01,2014-04-01,"YB","AD","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-01_YB-ADq5",2014-04-01,2014-04-01,"YB","AD","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare and water cover; 25% underwater"
+"2014-04-01_YB-ADq8",2014-04-01,2014-04-01,"YB","AD","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","0%",""
+"2014-04-01_YB-ADq1",2014-04-01,2014-04-01,"YB","AD","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-01_YB-ADq5",2014-04-01,2014-04-01,"YB","AD","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare and water cover; 25% underwater"
+"2014-04-01_YB-ADq8",2014-04-01,2014-04-01,"YB","AD","8","Ae","Anemones","Type 14",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Cropped","Full","0%",""
+"2014-04-01_YB-ADq1",2014-04-01,2014-04-01,"YB","AD","1","Bg","Balanus_glandula","Type 1",507,0.015625,32448,"c","Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-01_YB-ADq5",2014-04-01,2014-04-01,"YB","AD","5","Bg","Balanus_glandula","Type 1",964,0.0875,11017.1428571429,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare and water cover; 25% underwater"
+"2014-04-01_YB-ADq8",2014-04-01,2014-04-01,"YB","AD","8","Bg","Balanus_glandula","Type 1",1347,0.0875,15394.2857142857,NA,"Beatriz Vaca","Finished","Cropped","Full","0%",""
+"2014-04-01_YB-ADq1",2014-04-01,2014-04-01,"YB","AD","1","BgD","Balanus_glandula_(dead)","Type 2",34,0.015625,2176,"c","Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-01_YB-ADq5",2014-04-01,2014-04-01,"YB","AD","5","BgD","Balanus_glandula_(dead)","Type 2",46,0.0875,525.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare and water cover; 25% underwater"
+"2014-04-01_YB-ADq8",2014-04-01,2014-04-01,"YB","AD","8","BgD","Balanus_glandula_(dead)","Type 2",65,0.0875,742.857142857143,NA,"Beatriz Vaca","Finished","Cropped","Full","0%",""
+"2014-04-01_YB-ADq1",2014-04-01,2014-04-01,"YB","AD","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-01_YB-ADq5",2014-04-01,2014-04-01,"YB","AD","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare and water cover; 25% underwater"
+"2014-04-01_YB-ADq8",2014-04-01,2014-04-01,"YB","AD","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","0%",""
+"2014-04-01_YB-ADq1",2014-04-01,2014-04-01,"YB","AD","1","Cth","Chthamalus_dalli","Type 3",59,0.015625,3776,"c","Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-01_YB-ADq5",2014-04-01,2014-04-01,"YB","AD","5","Cth","Chthamalus_dalli","Type 3",481,0.0875,5497.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare and water cover; 25% underwater"
+"2014-04-01_YB-ADq8",2014-04-01,2014-04-01,"YB","AD","8","Cth","Chthamalus_dalli","Type 3",20,0.0875,228.571428571429,NA,"Beatriz Vaca","Finished","Cropped","Full","0%",""
+"2014-04-01_YB-ADq1",2014-04-01,2014-04-01,"YB","AD","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-01_YB-ADq5",2014-04-01,2014-04-01,"YB","AD","5","CthD","Chthamalus_dalli (dead)","Type 4",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare and water cover; 25% underwater"
+"2014-04-01_YB-ADq8",2014-04-01,2014-04-01,"YB","AD","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","0%",""
+"2014-04-01_YB-ADq1",2014-04-01,2014-04-01,"YB","AD","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-01_YB-ADq5",2014-04-01,2014-04-01,"YB","AD","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare and water cover; 25% underwater"
+"2014-04-01_YB-ADq8",2014-04-01,2014-04-01,"YB","AD","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","0%",""
+"2014-04-01_YB-ADq1",2014-04-01,2014-04-01,"YB","AD","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-01_YB-ADq5",2014-04-01,2014-04-01,"YB","AD","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare and water cover; 25% underwater"
+"2014-04-01_YB-ADq8",2014-04-01,2014-04-01,"YB","AD","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","0%",""
+"2014-04-01_YB-ADq1",2014-04-01,2014-04-01,"YB","AD","1","Lim","Limpets","Type 12",84,0.0875,960,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-01_YB-ADq5",2014-04-01,2014-04-01,"YB","AD","5","Lim","Limpets","Type 12",54,0.0875,617.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare and water cover; 25% underwater"
+"2014-04-01_YB-ADq8",2014-04-01,2014-04-01,"YB","AD","8","Lim","Limpets","Type 12",152,0.0875,1737.14285714286,NA,"Beatriz Vaca","Finished","Cropped","Full","0%",""
+"2014-04-01_YB-ADq1",2014-04-01,2014-04-01,"YB","AD","1","Ls","Littorina_sitkana","Type 13",229,0.0875,2617.14285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-01_YB-ADq5",2014-04-01,2014-04-01,"YB","AD","5","Ls","Littorina_sitkana","Type 13",93,0.0875,1062.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare and water cover; 25% underwater"
+"2014-04-01_YB-ADq8",2014-04-01,2014-04-01,"YB","AD","8","Ls","Littorina_sitkana","Type 13",84,0.0875,960,NA,"Beatriz Vaca","Finished","Cropped","Full","0%",""
+"2014-04-01_YB-ADq1",2014-04-01,2014-04-01,"YB","AD","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-01_YB-ADq5",2014-04-01,2014-04-01,"YB","AD","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare and water cover; 25% underwater"
+"2014-04-01_YB-ADq8",2014-04-01,2014-04-01,"YB","AD","8","Mc","Mytilus_californianus","Type 17",3,0.015625,192,"c","Beatriz Vaca","Finished","Cropped","Full","0%",""
+"2014-04-01_YB-ADq1",2014-04-01,2014-04-01,"YB","AD","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-01_YB-ADq5",2014-04-01,2014-04-01,"YB","AD","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare and water cover; 25% underwater"
+"2014-04-01_YB-ADq8",2014-04-01,2014-04-01,"YB","AD","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","0%",""
+"2014-04-01_YB-ADq1",2014-04-01,2014-04-01,"YB","AD","1","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-01_YB-ADq5",2014-04-01,2014-04-01,"YB","AD","5","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare and water cover; 25% underwater"
+"2014-04-01_YB-ADq8",2014-04-01,2014-04-01,"YB","AD","8","Myt","Mytilus_spp","Type 7",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","0%",""
+"2014-04-01_YB-ADq1",2014-04-01,2014-04-01,"YB","AD","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-01_YB-ADq5",2014-04-01,2014-04-01,"YB","AD","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare and water cover; 25% underwater"
+"2014-04-01_YB-ADq8",2014-04-01,2014-04-01,"YB","AD","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","0%",""
+"2014-04-01_YB-ADq1",2014-04-01,2014-04-01,"YB","AD","1","Mt","Mytilus_trossulus","Type 15",635,0.0875,7257.14285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-01_YB-ADq5",2014-04-01,2014-04-01,"YB","AD","5","Mt","Mytilus_trossulus","Type 15",266,0.0875,3040,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare and water cover; 25% underwater"
+"2014-04-01_YB-ADq8",2014-04-01,2014-04-01,"YB","AD","8","Mt","Mytilus_trossulus","Type 15",211,0.015625,13504,"c","Beatriz Vaca","Finished","Cropped","Full","0%",""
+"2014-04-01_YB-ADq1",2014-04-01,2014-04-01,"YB","AD","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-01_YB-ADq5",2014-04-01,2014-04-01,"YB","AD","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare and water cover; 25% underwater"
+"2014-04-01_YB-ADq8",2014-04-01,2014-04-01,"YB","AD","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","0%",""
+"2014-04-01_YB-ADq1",2014-04-01,2014-04-01,"YB","AD","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-01_YB-ADq5",2014-04-01,2014-04-01,"YB","AD","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare and water cover; 25% underwater"
+"2014-04-01_YB-ADq8",2014-04-01,2014-04-01,"YB","AD","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","0%",""
+"2014-04-01_YB-ADq1",2014-04-01,2014-04-01,"YB","AD","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-01_YB-ADq5",2014-04-01,2014-04-01,"YB","AD","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare and water cover; 25% underwater"
+"2014-04-01_YB-ADq8",2014-04-01,2014-04-01,"YB","AD","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","0%",""
+"2014-04-01_YB-ADq1",2014-04-01,2014-04-01,"YB","AD","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-01_YB-ADq5",2014-04-01,2014-04-01,"YB","AD","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare and water cover; 25% underwater"
+"2014-04-01_YB-ADq8",2014-04-01,2014-04-01,"YB","AD","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","0%",""
+"2014-04-01_YB-ADq1",2014-04-01,2014-04-01,"YB","AD","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-01_YB-ADq5",2014-04-01,2014-04-01,"YB","AD","5","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare and water cover; 25% underwater"
+"2014-04-01_YB-ADq8",2014-04-01,2014-04-01,"YB","AD","8","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Cropped","Full","0%",""
+"2014-04-01_YB-ADq1",2014-04-01,2014-04-01,"YB","AD","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-01_YB-ADq5",2014-04-01,2014-04-01,"YB","AD","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare and water cover; 25% underwater"
+"2014-04-01_YB-ADq8",2014-04-01,2014-04-01,"YB","AD","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","0%",""
+"2014-04-01_YB-ADq1",2014-04-01,2014-04-01,"YB","AD","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-01_YB-ADq5",2014-04-01,2014-04-01,"YB","AD","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare and water cover; 25% underwater"
+"2014-04-01_YB-ADq8",2014-04-01,2014-04-01,"YB","AD","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","0%",""
+"2014-04-01_YB-ADq1",2014-04-01,2014-04-01,"YB","AD","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-01_YB-ADq5",2014-04-01,2014-04-01,"YB","AD","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare and water cover; 25% underwater"
+"2014-04-01_YB-ADq8",2014-04-01,2014-04-01,"YB","AD","8","Pp","Pollicipes_polymerus","Type 11",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Cropped","Full","0%",""
+"2014-04-01_YB-ADq1",2014-04-01,2014-04-01,"YB","AD","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-01_YB-ADq5",2014-04-01,2014-04-01,"YB","AD","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare and water cover; 25% underwater"
+"2014-04-01_YB-ADq8",2014-04-01,2014-04-01,"YB","AD","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","0%",""
+"2014-04-01_YB-ADq1",2014-04-01,2014-04-01,"YB","AD","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-01_YB-ADq5",2014-04-01,2014-04-01,"YB","AD","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare and water cover; 25% underwater"
+"2014-04-01_YB-ADq8",2014-04-01,2014-04-01,"YB","AD","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","0%",""
+"2014-04-01_YB-ADq1",2014-04-01,2014-04-01,"YB","AD","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-01_YB-ADq5",2014-04-01,2014-04-01,"YB","AD","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare and water cover; 25% underwater"
+"2014-04-01_YB-ADq8",2014-04-01,2014-04-01,"YB","AD","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","0%",""
+"2014-04-01_YB-AEq1",2014-04-01,2014-04-01,"YB","AE","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-01_YB-AEq4",2014-04-01,2014-04-01,"YB","AE","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-AEq8",2014-04-01,2014-04-01,"YB","AE","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to glare."
+"2014-04-01_YB-AEq1",2014-04-01,2014-04-01,"YB","AE","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-01_YB-AEq4",2014-04-01,2014-04-01,"YB","AE","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-AEq8",2014-04-01,2014-04-01,"YB","AE","8","Ae","Anemones","Type 14",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to glare."
+"2014-04-01_YB-AEq1",2014-04-01,2014-04-01,"YB","AE","1","Bg","Balanus_glandula","Type 1",463,0.015625,29632,"c","Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-01_YB-AEq4",2014-04-01,2014-04-01,"YB","AE","4","Bg","Balanus_glandula","Type 1",450,0.015625,28800,"c","Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-AEq8",2014-04-01,2014-04-01,"YB","AE","8","Bg","Balanus_glandula","Type 1",738,0.0875,8434.28571428572,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to glare."
+"2014-04-01_YB-AEq1",2014-04-01,2014-04-01,"YB","AE","1","BgD","Balanus_glandula_(dead)","Type 2",84,0.015625,5376,"c","Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-01_YB-AEq4",2014-04-01,2014-04-01,"YB","AE","4","BgD","Balanus_glandula_(dead)","Type 2",14,0.015625,896,"c","Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-AEq8",2014-04-01,2014-04-01,"YB","AE","8","BgD","Balanus_glandula_(dead)","Type 2",16,0.0875,182.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to glare."
+"2014-04-01_YB-AEq1",2014-04-01,2014-04-01,"YB","AE","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-01_YB-AEq4",2014-04-01,2014-04-01,"YB","AE","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-AEq8",2014-04-01,2014-04-01,"YB","AE","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to glare."
+"2014-04-01_YB-AEq1",2014-04-01,2014-04-01,"YB","AE","1","Cth","Chthamalus_dalli","Type 3",177,0.015625,11328,"c","Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-01_YB-AEq4",2014-04-01,2014-04-01,"YB","AE","4","Cth","Chthamalus_dalli","Type 3",3,0.015625,192,"c","Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-AEq8",2014-04-01,2014-04-01,"YB","AE","8","Cth","Chthamalus_dalli","Type 3",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to glare."
+"2014-04-01_YB-AEq1",2014-04-01,2014-04-01,"YB","AE","1","CthD","Chthamalus_dalli (dead)","Type 4",1,0.015625,64,"c","Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-01_YB-AEq4",2014-04-01,2014-04-01,"YB","AE","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-AEq8",2014-04-01,2014-04-01,"YB","AE","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to glare."
+"2014-04-01_YB-AEq1",2014-04-01,2014-04-01,"YB","AE","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-01_YB-AEq4",2014-04-01,2014-04-01,"YB","AE","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-AEq8",2014-04-01,2014-04-01,"YB","AE","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to glare."
+"2014-04-01_YB-AEq1",2014-04-01,2014-04-01,"YB","AE","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-01_YB-AEq4",2014-04-01,2014-04-01,"YB","AE","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-AEq8",2014-04-01,2014-04-01,"YB","AE","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to glare."
+"2014-04-01_YB-AEq1",2014-04-01,2014-04-01,"YB","AE","1","Lim","Limpets","Type 12",64,0.0875,731.428571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-01_YB-AEq4",2014-04-01,2014-04-01,"YB","AE","4","Lim","Limpets","Type 12",229,0.0875,2617.14285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-AEq8",2014-04-01,2014-04-01,"YB","AE","8","Lim","Limpets","Type 12",203,0.0875,2320,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to glare."
+"2014-04-01_YB-AEq1",2014-04-01,2014-04-01,"YB","AE","1","Ls","Littorina_sitkana","Type 13",137,0.0875,1565.71428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-01_YB-AEq4",2014-04-01,2014-04-01,"YB","AE","4","Ls","Littorina_sitkana","Type 13",86,0.0875,982.857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-AEq8",2014-04-01,2014-04-01,"YB","AE","8","Ls","Littorina_sitkana","Type 13",121,0.0875,1382.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to glare."
+"2014-04-01_YB-AEq1",2014-04-01,2014-04-01,"YB","AE","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-01_YB-AEq4",2014-04-01,2014-04-01,"YB","AE","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-AEq8",2014-04-01,2014-04-01,"YB","AE","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to glare."
+"2014-04-01_YB-AEq1",2014-04-01,2014-04-01,"YB","AE","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-01_YB-AEq4",2014-04-01,2014-04-01,"YB","AE","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-AEq8",2014-04-01,2014-04-01,"YB","AE","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to glare."
+"2014-04-01_YB-AEq1",2014-04-01,2014-04-01,"YB","AE","1","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-01_YB-AEq4",2014-04-01,2014-04-01,"YB","AE","4","Myt","Mytilus_spp","Type 7",93,0.0875,1062.85714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-AEq8",2014-04-01,2014-04-01,"YB","AE","8","Myt","Mytilus_spp","Type 7",80,0.0875,914.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to glare."
+"2014-04-01_YB-AEq1",2014-04-01,2014-04-01,"YB","AE","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-01_YB-AEq4",2014-04-01,2014-04-01,"YB","AE","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-AEq8",2014-04-01,2014-04-01,"YB","AE","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to glare."
+"2014-04-01_YB-AEq1",2014-04-01,2014-04-01,"YB","AE","1","Mt","Mytilus_trossulus","Type 15",301,0.0875,3440,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-01_YB-AEq4",2014-04-01,2014-04-01,"YB","AE","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-AEq8",2014-04-01,2014-04-01,"YB","AE","8","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to glare."
+"2014-04-01_YB-AEq1",2014-04-01,2014-04-01,"YB","AE","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-01_YB-AEq4",2014-04-01,2014-04-01,"YB","AE","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-AEq8",2014-04-01,2014-04-01,"YB","AE","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to glare."
+"2014-04-01_YB-AEq1",2014-04-01,2014-04-01,"YB","AE","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-01_YB-AEq4",2014-04-01,2014-04-01,"YB","AE","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-AEq8",2014-04-01,2014-04-01,"YB","AE","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to glare."
+"2014-04-01_YB-AEq1",2014-04-01,2014-04-01,"YB","AE","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-01_YB-AEq4",2014-04-01,2014-04-01,"YB","AE","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-AEq8",2014-04-01,2014-04-01,"YB","AE","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to glare."
+"2014-04-01_YB-AEq1",2014-04-01,2014-04-01,"YB","AE","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-01_YB-AEq4",2014-04-01,2014-04-01,"YB","AE","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-AEq8",2014-04-01,2014-04-01,"YB","AE","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to glare."
+"2014-04-01_YB-AEq1",2014-04-01,2014-04-01,"YB","AE","1","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-01_YB-AEq4",2014-04-01,2014-04-01,"YB","AE","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-AEq8",2014-04-01,2014-04-01,"YB","AE","8","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to glare."
+"2014-04-01_YB-AEq1",2014-04-01,2014-04-01,"YB","AE","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-01_YB-AEq4",2014-04-01,2014-04-01,"YB","AE","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-AEq8",2014-04-01,2014-04-01,"YB","AE","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to glare."
+"2014-04-01_YB-AEq1",2014-04-01,2014-04-01,"YB","AE","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-01_YB-AEq4",2014-04-01,2014-04-01,"YB","AE","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-AEq8",2014-04-01,2014-04-01,"YB","AE","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to glare."
+"2014-04-01_YB-AEq1",2014-04-01,2014-04-01,"YB","AE","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-01_YB-AEq4",2014-04-01,2014-04-01,"YB","AE","4","Pp","Pollicipes_polymerus","Type 11",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-AEq8",2014-04-01,2014-04-01,"YB","AE","8","Pp","Pollicipes_polymerus","Type 11",24,0.0875,274.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to glare."
+"2014-04-01_YB-AEq1",2014-04-01,2014-04-01,"YB","AE","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-01_YB-AEq4",2014-04-01,2014-04-01,"YB","AE","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-AEq8",2014-04-01,2014-04-01,"YB","AE","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to glare."
+"2014-04-01_YB-AEq1",2014-04-01,2014-04-01,"YB","AE","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-01_YB-AEq4",2014-04-01,2014-04-01,"YB","AE","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-AEq8",2014-04-01,2014-04-01,"YB","AE","8","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to glare."
+"2014-04-01_YB-AEq1",2014-04-01,2014-04-01,"YB","AE","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-01_YB-AEq4",2014-04-01,2014-04-01,"YB","AE","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-AEq8",2014-04-01,2014-04-01,"YB","AE","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to glare."
+"2014-04-01_YB-AFq5",2014-04-01,2014-04-01,"YB","AF","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-AFq8",2014-04-01,2014-04-01,"YB","AF","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-04-01_YB-AFq9",2014-04-01,2014-04-01,"YB","AF","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts likely low due to water patches"
+"2014-04-01_YB-AFq5",2014-04-01,2014-04-01,"YB","AF","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-AFq8",2014-04-01,2014-04-01,"YB","AF","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-04-01_YB-AFq9",2014-04-01,2014-04-01,"YB","AF","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts likely low due to water patches"
+"2014-04-01_YB-AFq5",2014-04-01,2014-04-01,"YB","AF","5","Bg","Balanus_glandula","Type 1",1060,0.015625,67840,"c","Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-AFq8",2014-04-01,2014-04-01,"YB","AF","8","Bg","Balanus_glandula","Type 1",746,0.0875,8525.71428571429,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-04-01_YB-AFq9",2014-04-01,2014-04-01,"YB","AF","9","Bg","Balanus_glandula","Type 1",504,0.015625,32256,"c","Stephanie Merhoff","Finished","Full","Cropped","10%","Counts likely low due to water patches"
+"2014-04-01_YB-AFq5",2014-04-01,2014-04-01,"YB","AF","5","BgD","Balanus_glandula_(dead)","Type 2",30,0.015625,1920,"c","Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-AFq8",2014-04-01,2014-04-01,"YB","AF","8","BgD","Balanus_glandula_(dead)","Type 2",28,0.0875,320,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-04-01_YB-AFq9",2014-04-01,2014-04-01,"YB","AF","9","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","10%","Counts likely low due to water patches"
+"2014-04-01_YB-AFq5",2014-04-01,2014-04-01,"YB","AF","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-AFq8",2014-04-01,2014-04-01,"YB","AF","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-04-01_YB-AFq9",2014-04-01,2014-04-01,"YB","AF","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts likely low due to water patches"
+"2014-04-01_YB-AFq5",2014-04-01,2014-04-01,"YB","AF","5","Cth","Chthamalus_dalli","Type 3",5,0.015625,320,"c","Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-AFq8",2014-04-01,2014-04-01,"YB","AF","8","Cth","Chthamalus_dalli","Type 3",426,0.0875,4868.57142857143,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-04-01_YB-AFq9",2014-04-01,2014-04-01,"YB","AF","9","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","10%","Counts likely low due to water patches"
+"2014-04-01_YB-AFq5",2014-04-01,2014-04-01,"YB","AF","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-AFq8",2014-04-01,2014-04-01,"YB","AF","8","CthD","Chthamalus_dalli (dead)","Type 4",3,0.0875,34.2857142857143,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-04-01_YB-AFq9",2014-04-01,2014-04-01,"YB","AF","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","10%","Counts likely low due to water patches"
+"2014-04-01_YB-AFq5",2014-04-01,2014-04-01,"YB","AF","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-AFq8",2014-04-01,2014-04-01,"YB","AF","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-04-01_YB-AFq9",2014-04-01,2014-04-01,"YB","AF","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts likely low due to water patches"
+"2014-04-01_YB-AFq5",2014-04-01,2014-04-01,"YB","AF","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-AFq8",2014-04-01,2014-04-01,"YB","AF","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-04-01_YB-AFq9",2014-04-01,2014-04-01,"YB","AF","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts likely low due to water patches"
+"2014-04-01_YB-AFq5",2014-04-01,2014-04-01,"YB","AF","5","Lim","Limpets","Type 12",213,0.0875,2434.28571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-AFq8",2014-04-01,2014-04-01,"YB","AF","8","Lim","Limpets","Type 12",3,0.0875,34.2857142857143,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-04-01_YB-AFq9",2014-04-01,2014-04-01,"YB","AF","9","Lim","Limpets","Type 12",77,0.0875,880,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts likely low due to water patches"
+"2014-04-01_YB-AFq5",2014-04-01,2014-04-01,"YB","AF","5","Ls","Littorina_sitkana","Type 13",445,0.0875,5085.71428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-AFq8",2014-04-01,2014-04-01,"YB","AF","8","Ls","Littorina_sitkana","Type 13",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-04-01_YB-AFq9",2014-04-01,2014-04-01,"YB","AF","9","Ls","Littorina_sitkana","Type 13",236,0.0875,2697.14285714286,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts likely low due to water patches"
+"2014-04-01_YB-AFq5",2014-04-01,2014-04-01,"YB","AF","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-AFq8",2014-04-01,2014-04-01,"YB","AF","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-04-01_YB-AFq9",2014-04-01,2014-04-01,"YB","AF","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts likely low due to water patches"
+"2014-04-01_YB-AFq5",2014-04-01,2014-04-01,"YB","AF","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-AFq8",2014-04-01,2014-04-01,"YB","AF","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-04-01_YB-AFq9",2014-04-01,2014-04-01,"YB","AF","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts likely low due to water patches"
+"2014-04-01_YB-AFq5",2014-04-01,2014-04-01,"YB","AF","5","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-AFq8",2014-04-01,2014-04-01,"YB","AF","8","Myt","Mytilus_spp","Type 7",25,0.0875,285.714285714286,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-04-01_YB-AFq9",2014-04-01,2014-04-01,"YB","AF","9","Myt","Mytilus_spp","Type 7",111,0.0875,1268.57142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts likely low due to water patches"
+"2014-04-01_YB-AFq5",2014-04-01,2014-04-01,"YB","AF","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-AFq8",2014-04-01,2014-04-01,"YB","AF","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-04-01_YB-AFq9",2014-04-01,2014-04-01,"YB","AF","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts likely low due to water patches"
+"2014-04-01_YB-AFq5",2014-04-01,2014-04-01,"YB","AF","5","Mt","Mytilus_trossulus","Type 15",355,0.0875,4057.14285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-AFq8",2014-04-01,2014-04-01,"YB","AF","8","Mt","Mytilus_trossulus","Type 15",45,0.0875,514.285714285714,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-04-01_YB-AFq9",2014-04-01,2014-04-01,"YB","AF","9","Mt","Mytilus_trossulus","Type 15",17,0.0875,194.285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts likely low due to water patches"
+"2014-04-01_YB-AFq5",2014-04-01,2014-04-01,"YB","AF","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-AFq8",2014-04-01,2014-04-01,"YB","AF","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-04-01_YB-AFq9",2014-04-01,2014-04-01,"YB","AF","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts likely low due to water patches"
+"2014-04-01_YB-AFq5",2014-04-01,2014-04-01,"YB","AF","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-AFq8",2014-04-01,2014-04-01,"YB","AF","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-04-01_YB-AFq9",2014-04-01,2014-04-01,"YB","AF","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts likely low due to water patches"
+"2014-04-01_YB-AFq5",2014-04-01,2014-04-01,"YB","AF","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-AFq8",2014-04-01,2014-04-01,"YB","AF","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-04-01_YB-AFq9",2014-04-01,2014-04-01,"YB","AF","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts likely low due to water patches"
+"2014-04-01_YB-AFq5",2014-04-01,2014-04-01,"YB","AF","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-AFq8",2014-04-01,2014-04-01,"YB","AF","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-04-01_YB-AFq9",2014-04-01,2014-04-01,"YB","AF","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts likely low due to water patches"
+"2014-04-01_YB-AFq5",2014-04-01,2014-04-01,"YB","AF","5","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-AFq8",2014-04-01,2014-04-01,"YB","AF","8","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-04-01_YB-AFq9",2014-04-01,2014-04-01,"YB","AF","9","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts likely low due to water patches"
+"2014-04-01_YB-AFq5",2014-04-01,2014-04-01,"YB","AF","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-AFq8",2014-04-01,2014-04-01,"YB","AF","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-04-01_YB-AFq9",2014-04-01,2014-04-01,"YB","AF","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts likely low due to water patches"
+"2014-04-01_YB-AFq5",2014-04-01,2014-04-01,"YB","AF","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-AFq8",2014-04-01,2014-04-01,"YB","AF","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-04-01_YB-AFq9",2014-04-01,2014-04-01,"YB","AF","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts likely low due to water patches"
+"2014-04-01_YB-AFq5",2014-04-01,2014-04-01,"YB","AF","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-AFq8",2014-04-01,2014-04-01,"YB","AF","8","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-04-01_YB-AFq9",2014-04-01,2014-04-01,"YB","AF","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts likely low due to water patches"
+"2014-04-01_YB-AFq5",2014-04-01,2014-04-01,"YB","AF","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-AFq8",2014-04-01,2014-04-01,"YB","AF","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-04-01_YB-AFq9",2014-04-01,2014-04-01,"YB","AF","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts likely low due to water patches"
+"2014-04-01_YB-AFq5",2014-04-01,2014-04-01,"YB","AF","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-AFq8",2014-04-01,2014-04-01,"YB","AF","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-04-01_YB-AFq9",2014-04-01,2014-04-01,"YB","AF","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts likely low due to water patches"
+"2014-04-01_YB-AFq5",2014-04-01,2014-04-01,"YB","AF","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-AFq8",2014-04-01,2014-04-01,"YB","AF","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-04-01_YB-AFq9",2014-04-01,2014-04-01,"YB","AF","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%","Counts likely low due to water patches"
+"2014-04-01_YB-AGq2",2014-04-01,2014-04-01,"YB","AG","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Cropped","2%","Corners blurry."
+"2014-04-01_YB-AGq7",2014-04-01,2014-04-01,"YB","AG","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-04-01_YB-AGq9",2014-04-01,2014-04-01,"YB","AG","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2014-04-01_YB-AGq2",2014-04-01,2014-04-01,"YB","AG","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Cropped","2%","Corners blurry."
+"2014-04-01_YB-AGq7",2014-04-01,2014-04-01,"YB","AG","7","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-04-01_YB-AGq9",2014-04-01,2014-04-01,"YB","AG","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2014-04-01_YB-AGq2",2014-04-01,2014-04-01,"YB","AG","2","Bg","Balanus_glandula","Type 1",784,0.015625,50176,"c","Rebecca Friedrich","Finished","Full","Cropped","2%","Corners blurry."
+"2014-04-01_YB-AGq7",2014-04-01,2014-04-01,"YB","AG","7","Bg","Balanus_glandula","Type 1",1863,0.0875,21291.4285714286,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-04-01_YB-AGq9",2014-04-01,2014-04-01,"YB","AG","9","Bg","Balanus_glandula","Type 1",1303,0.0875,14891.4285714286,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2014-04-01_YB-AGq2",2014-04-01,2014-04-01,"YB","AG","2","BgD","Balanus_glandula_(dead)","Type 2",18,0.015625,1152,"c","Rebecca Friedrich","Finished","Full","Cropped","2%","Corners blurry."
+"2014-04-01_YB-AGq7",2014-04-01,2014-04-01,"YB","AG","7","BgD","Balanus_glandula_(dead)","Type 2",11,0.0875,125.714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-04-01_YB-AGq9",2014-04-01,2014-04-01,"YB","AG","9","BgD","Balanus_glandula_(dead)","Type 2",13,0.0875,148.571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2014-04-01_YB-AGq2",2014-04-01,2014-04-01,"YB","AG","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Cropped","2%","Corners blurry."
+"2014-04-01_YB-AGq7",2014-04-01,2014-04-01,"YB","AG","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-04-01_YB-AGq9",2014-04-01,2014-04-01,"YB","AG","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2014-04-01_YB-AGq2",2014-04-01,2014-04-01,"YB","AG","2","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Rebecca Friedrich","Finished","Full","Cropped","2%","Corners blurry."
+"2014-04-01_YB-AGq7",2014-04-01,2014-04-01,"YB","AG","7","Cth","Chthamalus_dalli","Type 3",308,0.0875,3520,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-04-01_YB-AGq9",2014-04-01,2014-04-01,"YB","AG","9","Cth","Chthamalus_dalli","Type 3",445,0.0875,5085.71428571429,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2014-04-01_YB-AGq2",2014-04-01,2014-04-01,"YB","AG","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Rebecca Friedrich","Finished","Full","Cropped","2%","Corners blurry."
+"2014-04-01_YB-AGq7",2014-04-01,2014-04-01,"YB","AG","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-04-01_YB-AGq9",2014-04-01,2014-04-01,"YB","AG","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2014-04-01_YB-AGq2",2014-04-01,2014-04-01,"YB","AG","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Cropped","2%","Corners blurry."
+"2014-04-01_YB-AGq7",2014-04-01,2014-04-01,"YB","AG","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-04-01_YB-AGq9",2014-04-01,2014-04-01,"YB","AG","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2014-04-01_YB-AGq2",2014-04-01,2014-04-01,"YB","AG","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Cropped","2%","Corners blurry."
+"2014-04-01_YB-AGq7",2014-04-01,2014-04-01,"YB","AG","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-04-01_YB-AGq9",2014-04-01,2014-04-01,"YB","AG","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2014-04-01_YB-AGq2",2014-04-01,2014-04-01,"YB","AG","2","Lim","Limpets","Type 12",261,0.0875,2982.85714285714,NA,"Rebecca Friedrich","Finished","Full","Cropped","2%","Corners blurry."
+"2014-04-01_YB-AGq7",2014-04-01,2014-04-01,"YB","AG","7","Lim","Limpets","Type 12",52,0.0875,594.285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-04-01_YB-AGq9",2014-04-01,2014-04-01,"YB","AG","9","Lim","Limpets","Type 12",77,0.0875,880,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2014-04-01_YB-AGq2",2014-04-01,2014-04-01,"YB","AG","2","Ls","Littorina_sitkana","Type 13",20,0.0875,228.571428571429,NA,"Rebecca Friedrich","Finished","Full","Cropped","2%","Corners blurry."
+"2014-04-01_YB-AGq7",2014-04-01,2014-04-01,"YB","AG","7","Ls","Littorina_sitkana","Type 13",66,0.0875,754.285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-04-01_YB-AGq9",2014-04-01,2014-04-01,"YB","AG","9","Ls","Littorina_sitkana","Type 13",39,0.0875,445.714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2014-04-01_YB-AGq2",2014-04-01,2014-04-01,"YB","AG","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Cropped","2%","Corners blurry."
+"2014-04-01_YB-AGq7",2014-04-01,2014-04-01,"YB","AG","7","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-04-01_YB-AGq9",2014-04-01,2014-04-01,"YB","AG","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2014-04-01_YB-AGq2",2014-04-01,2014-04-01,"YB","AG","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Cropped","2%","Corners blurry."
+"2014-04-01_YB-AGq7",2014-04-01,2014-04-01,"YB","AG","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-04-01_YB-AGq9",2014-04-01,2014-04-01,"YB","AG","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2014-04-01_YB-AGq2",2014-04-01,2014-04-01,"YB","AG","2","Myt","Mytilus_spp","Type 7",203,0.0875,2320,NA,"Rebecca Friedrich","Finished","Full","Cropped","2%","Corners blurry."
+"2014-04-01_YB-AGq7",2014-04-01,2014-04-01,"YB","AG","7","Myt","Mytilus_spp","Type 7",352,0.0875,4022.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-04-01_YB-AGq9",2014-04-01,2014-04-01,"YB","AG","9","Myt","Mytilus_spp","Type 7",222,0.0875,2537.14285714286,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2014-04-01_YB-AGq2",2014-04-01,2014-04-01,"YB","AG","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Cropped","2%","Corners blurry."
+"2014-04-01_YB-AGq7",2014-04-01,2014-04-01,"YB","AG","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-04-01_YB-AGq9",2014-04-01,2014-04-01,"YB","AG","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2014-04-01_YB-AGq2",2014-04-01,2014-04-01,"YB","AG","2","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Cropped","2%","Corners blurry."
+"2014-04-01_YB-AGq7",2014-04-01,2014-04-01,"YB","AG","7","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-04-01_YB-AGq9",2014-04-01,2014-04-01,"YB","AG","9","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2014-04-01_YB-AGq2",2014-04-01,2014-04-01,"YB","AG","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Cropped","2%","Corners blurry."
+"2014-04-01_YB-AGq7",2014-04-01,2014-04-01,"YB","AG","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-04-01_YB-AGq9",2014-04-01,2014-04-01,"YB","AG","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2014-04-01_YB-AGq2",2014-04-01,2014-04-01,"YB","AG","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Cropped","2%","Corners blurry."
+"2014-04-01_YB-AGq7",2014-04-01,2014-04-01,"YB","AG","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-04-01_YB-AGq9",2014-04-01,2014-04-01,"YB","AG","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2014-04-01_YB-AGq2",2014-04-01,2014-04-01,"YB","AG","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Cropped","2%","Corners blurry."
+"2014-04-01_YB-AGq7",2014-04-01,2014-04-01,"YB","AG","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-04-01_YB-AGq9",2014-04-01,2014-04-01,"YB","AG","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2014-04-01_YB-AGq2",2014-04-01,2014-04-01,"YB","AG","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Cropped","2%","Corners blurry."
+"2014-04-01_YB-AGq7",2014-04-01,2014-04-01,"YB","AG","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-04-01_YB-AGq9",2014-04-01,2014-04-01,"YB","AG","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2014-04-01_YB-AGq2",2014-04-01,2014-04-01,"YB","AG","2","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Cropped","2%","Corners blurry."
+"2014-04-01_YB-AGq7",2014-04-01,2014-04-01,"YB","AG","7","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-04-01_YB-AGq9",2014-04-01,2014-04-01,"YB","AG","9","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2014-04-01_YB-AGq2",2014-04-01,2014-04-01,"YB","AG","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Cropped","2%","Corners blurry."
+"2014-04-01_YB-AGq7",2014-04-01,2014-04-01,"YB","AG","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-04-01_YB-AGq9",2014-04-01,2014-04-01,"YB","AG","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2014-04-01_YB-AGq2",2014-04-01,2014-04-01,"YB","AG","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Cropped","2%","Corners blurry."
+"2014-04-01_YB-AGq7",2014-04-01,2014-04-01,"YB","AG","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-04-01_YB-AGq9",2014-04-01,2014-04-01,"YB","AG","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2014-04-01_YB-AGq2",2014-04-01,2014-04-01,"YB","AG","2","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Cropped","2%","Corners blurry."
+"2014-04-01_YB-AGq7",2014-04-01,2014-04-01,"YB","AG","7","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-04-01_YB-AGq9",2014-04-01,2014-04-01,"YB","AG","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2014-04-01_YB-AGq2",2014-04-01,2014-04-01,"YB","AG","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Cropped","2%","Corners blurry."
+"2014-04-01_YB-AGq7",2014-04-01,2014-04-01,"YB","AG","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-04-01_YB-AGq9",2014-04-01,2014-04-01,"YB","AG","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2014-04-01_YB-AGq2",2014-04-01,2014-04-01,"YB","AG","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Cropped","2%","Corners blurry."
+"2014-04-01_YB-AGq7",2014-04-01,2014-04-01,"YB","AG","7","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-04-01_YB-AGq9",2014-04-01,2014-04-01,"YB","AG","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2014-04-01_YB-AGq2",2014-04-01,2014-04-01,"YB","AG","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Cropped","2%","Corners blurry."
+"2014-04-01_YB-AGq7",2014-04-01,2014-04-01,"YB","AG","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-04-01_YB-AGq9",2014-04-01,2014-04-01,"YB","AG","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2014-04-01_YB-Bq1",2014-04-01,2014-04-01,"YB","B","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-04-01_YB-Bq2",2014-04-01,2014-04-01,"YB","B","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-01_YB-Bq3",2014-04-01,2014-04-01,"YB","B","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-01_YB-Bq4",2014-04-01,2014-04-01,"YB","B","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-Bq5",2014-04-01,2014-04-01,"YB","B","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-01_YB-Bq6",2014-04-01,2014-04-01,"YB","B","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Bq7",2014-04-01,2014-04-01,"YB","B","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-04-01_YB-Bq8",2014-04-01,2014-04-01,"YB","B","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-01_YB-Bq9",2014-04-01,2014-04-01,"YB","B","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Bq1",2014-04-01,2014-04-01,"YB","B","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-04-01_YB-Bq2",2014-04-01,2014-04-01,"YB","B","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-01_YB-Bq3",2014-04-01,2014-04-01,"YB","B","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-01_YB-Bq4",2014-04-01,2014-04-01,"YB","B","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-Bq5",2014-04-01,2014-04-01,"YB","B","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-01_YB-Bq6",2014-04-01,2014-04-01,"YB","B","6","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Bq7",2014-04-01,2014-04-01,"YB","B","7","Ae","Anemones","Type 14",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-04-01_YB-Bq8",2014-04-01,2014-04-01,"YB","B","8","Ae","Anemones","Type 14",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-01_YB-Bq9",2014-04-01,2014-04-01,"YB","B","9","Ae","Anemones","Type 14",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Bq1",2014-04-01,2014-04-01,"YB","B","1","Bg","Balanus_glandula","Type 1",742,0.015625,47488,"c","Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-04-01_YB-Bq2",2014-04-01,2014-04-01,"YB","B","2","Bg","Balanus_glandula","Type 1",1098,0.015625,70272,"c","Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-01_YB-Bq3",2014-04-01,2014-04-01,"YB","B","3","Bg","Balanus_glandula","Type 1",763,0.015625,48832,"c","Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-01_YB-Bq4",2014-04-01,2014-04-01,"YB","B","4","Bg","Balanus_glandula","Type 1",1154,0.015625,73856,"c","Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-Bq5",2014-04-01,2014-04-01,"YB","B","5","Bg","Balanus_glandula","Type 1",961,0.015625,61504,"c","Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-01_YB-Bq6",2014-04-01,2014-04-01,"YB","B","6","Bg","Balanus_glandula","Type 1",982,0.015625,62848,"c","Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Bq7",2014-04-01,2014-04-01,"YB","B","7","Bg","Balanus_glandula","Type 1",494,0.0875,5645.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-04-01_YB-Bq8",2014-04-01,2014-04-01,"YB","B","8","Bg","Balanus_glandula","Type 1",856,0.015625,54784,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-01_YB-Bq9",2014-04-01,2014-04-01,"YB","B","9","Bg","Balanus_glandula","Type 1",286,0.015625,18304,"c","Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Bq1",2014-04-01,2014-04-01,"YB","B","1","BgD","Balanus_glandula_(dead)","Type 2",42,0.015625,2688,"c","Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-04-01_YB-Bq2",2014-04-01,2014-04-01,"YB","B","2","BgD","Balanus_glandula_(dead)","Type 2",52,0.015625,3328,"c","Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-01_YB-Bq3",2014-04-01,2014-04-01,"YB","B","3","BgD","Balanus_glandula_(dead)","Type 2",34,0.015625,2176,"c","Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-01_YB-Bq4",2014-04-01,2014-04-01,"YB","B","4","BgD","Balanus_glandula_(dead)","Type 2",84,0.015625,5376,"c","Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-Bq5",2014-04-01,2014-04-01,"YB","B","5","BgD","Balanus_glandula_(dead)","Type 2",21,0.015625,1344,"c","Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-01_YB-Bq6",2014-04-01,2014-04-01,"YB","B","6","BgD","Balanus_glandula_(dead)","Type 2",54,0.015625,3456,"c","Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Bq7",2014-04-01,2014-04-01,"YB","B","7","BgD","Balanus_glandula_(dead)","Type 2",78,0.0875,891.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-04-01_YB-Bq8",2014-04-01,2014-04-01,"YB","B","8","BgD","Balanus_glandula_(dead)","Type 2",29,0.015625,1856,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-01_YB-Bq9",2014-04-01,2014-04-01,"YB","B","9","BgD","Balanus_glandula_(dead)","Type 2",38,0.015625,2432,"c","Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Bq1",2014-04-01,2014-04-01,"YB","B","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-04-01_YB-Bq2",2014-04-01,2014-04-01,"YB","B","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-01_YB-Bq3",2014-04-01,2014-04-01,"YB","B","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-01_YB-Bq4",2014-04-01,2014-04-01,"YB","B","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-Bq5",2014-04-01,2014-04-01,"YB","B","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-01_YB-Bq6",2014-04-01,2014-04-01,"YB","B","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Bq7",2014-04-01,2014-04-01,"YB","B","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-04-01_YB-Bq8",2014-04-01,2014-04-01,"YB","B","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-01_YB-Bq9",2014-04-01,2014-04-01,"YB","B","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Bq1",2014-04-01,2014-04-01,"YB","B","1","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-04-01_YB-Bq2",2014-04-01,2014-04-01,"YB","B","2","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-01_YB-Bq3",2014-04-01,2014-04-01,"YB","B","3","Cth","Chthamalus_dalli","Type 3",25,0.015625,1600,"c","Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-01_YB-Bq4",2014-04-01,2014-04-01,"YB","B","4","Cth","Chthamalus_dalli","Type 3",21,0.015625,1344,"c","Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-Bq5",2014-04-01,2014-04-01,"YB","B","5","Cth","Chthamalus_dalli","Type 3",31,0.015625,1984,"c","Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-01_YB-Bq6",2014-04-01,2014-04-01,"YB","B","6","Cth","Chthamalus_dalli","Type 3",14,0.015625,896,"c","Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Bq7",2014-04-01,2014-04-01,"YB","B","7","Cth","Chthamalus_dalli","Type 3",205,0.0875,2342.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-04-01_YB-Bq8",2014-04-01,2014-04-01,"YB","B","8","Cth","Chthamalus_dalli","Type 3",52,0.015625,3328,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-01_YB-Bq9",2014-04-01,2014-04-01,"YB","B","9","Cth","Chthamalus_dalli","Type 3",57,0.015625,3648,"c","Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Bq1",2014-04-01,2014-04-01,"YB","B","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-04-01_YB-Bq2",2014-04-01,2014-04-01,"YB","B","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-01_YB-Bq3",2014-04-01,2014-04-01,"YB","B","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-01_YB-Bq4",2014-04-01,2014-04-01,"YB","B","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-Bq5",2014-04-01,2014-04-01,"YB","B","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-01_YB-Bq6",2014-04-01,2014-04-01,"YB","B","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Bq7",2014-04-01,2014-04-01,"YB","B","7","CthD","Chthamalus_dalli (dead)","Type 4",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-04-01_YB-Bq8",2014-04-01,2014-04-01,"YB","B","8","CthD","Chthamalus_dalli (dead)","Type 4",1,0.015625,64,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-01_YB-Bq9",2014-04-01,2014-04-01,"YB","B","9","CthD","Chthamalus_dalli (dead)","Type 4",7,0.015625,448,"c","Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Bq1",2014-04-01,2014-04-01,"YB","B","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-04-01_YB-Bq2",2014-04-01,2014-04-01,"YB","B","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-01_YB-Bq3",2014-04-01,2014-04-01,"YB","B","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-01_YB-Bq4",2014-04-01,2014-04-01,"YB","B","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-Bq5",2014-04-01,2014-04-01,"YB","B","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-01_YB-Bq6",2014-04-01,2014-04-01,"YB","B","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Bq7",2014-04-01,2014-04-01,"YB","B","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-04-01_YB-Bq8",2014-04-01,2014-04-01,"YB","B","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-01_YB-Bq9",2014-04-01,2014-04-01,"YB","B","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Bq1",2014-04-01,2014-04-01,"YB","B","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-04-01_YB-Bq2",2014-04-01,2014-04-01,"YB","B","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-01_YB-Bq3",2014-04-01,2014-04-01,"YB","B","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-01_YB-Bq4",2014-04-01,2014-04-01,"YB","B","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-Bq5",2014-04-01,2014-04-01,"YB","B","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-01_YB-Bq6",2014-04-01,2014-04-01,"YB","B","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Bq7",2014-04-01,2014-04-01,"YB","B","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-04-01_YB-Bq8",2014-04-01,2014-04-01,"YB","B","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-01_YB-Bq9",2014-04-01,2014-04-01,"YB","B","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Bq1",2014-04-01,2014-04-01,"YB","B","1","Lim","Limpets","Type 12",41,0.0875,468.571428571429,NA,"Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-04-01_YB-Bq2",2014-04-01,2014-04-01,"YB","B","2","Lim","Limpets","Type 12",112,0.0875,1280,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-01_YB-Bq3",2014-04-01,2014-04-01,"YB","B","3","Lim","Limpets","Type 12",108,0.0875,1234.28571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-01_YB-Bq4",2014-04-01,2014-04-01,"YB","B","4","Lim","Limpets","Type 12",83,0.0875,948.571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-Bq5",2014-04-01,2014-04-01,"YB","B","5","Lim","Limpets","Type 12",106,0.0875,1211.42857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-01_YB-Bq6",2014-04-01,2014-04-01,"YB","B","6","Lim","Limpets","Type 12",73,0.0875,834.285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Bq7",2014-04-01,2014-04-01,"YB","B","7","Lim","Limpets","Type 12",29,0.0875,331.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-04-01_YB-Bq8",2014-04-01,2014-04-01,"YB","B","8","Lim","Limpets","Type 12",152,0.0875,1737.14285714286,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-01_YB-Bq9",2014-04-01,2014-04-01,"YB","B","9","Lim","Limpets","Type 12",131,0.0875,1497.14285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Bq1",2014-04-01,2014-04-01,"YB","B","1","Ls","Littorina_sitkana","Type 13",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-04-01_YB-Bq2",2014-04-01,2014-04-01,"YB","B","2","Ls","Littorina_sitkana","Type 13",38,0.0875,434.285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-01_YB-Bq3",2014-04-01,2014-04-01,"YB","B","3","Ls","Littorina_sitkana","Type 13",26,0.0875,297.142857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-01_YB-Bq4",2014-04-01,2014-04-01,"YB","B","4","Ls","Littorina_sitkana","Type 13",9,0.0875,102.857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-Bq5",2014-04-01,2014-04-01,"YB","B","5","Ls","Littorina_sitkana","Type 13",71,0.0875,811.428571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-01_YB-Bq6",2014-04-01,2014-04-01,"YB","B","6","Ls","Littorina_sitkana","Type 13",13,0.0875,148.571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Bq7",2014-04-01,2014-04-01,"YB","B","7","Ls","Littorina_sitkana","Type 13",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-04-01_YB-Bq8",2014-04-01,2014-04-01,"YB","B","8","Ls","Littorina_sitkana","Type 13",50,0.0875,571.428571428571,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-01_YB-Bq9",2014-04-01,2014-04-01,"YB","B","9","Ls","Littorina_sitkana","Type 13",28,0.0875,320,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Bq1",2014-04-01,2014-04-01,"YB","B","1","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-04-01_YB-Bq2",2014-04-01,2014-04-01,"YB","B","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-01_YB-Bq3",2014-04-01,2014-04-01,"YB","B","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-01_YB-Bq4",2014-04-01,2014-04-01,"YB","B","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-Bq5",2014-04-01,2014-04-01,"YB","B","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-01_YB-Bq6",2014-04-01,2014-04-01,"YB","B","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Bq7",2014-04-01,2014-04-01,"YB","B","7","Mc","Mytilus_californianus","Type 17",17,0.0875,194.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-04-01_YB-Bq8",2014-04-01,2014-04-01,"YB","B","8","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-01_YB-Bq9",2014-04-01,2014-04-01,"YB","B","9","Mc","Mytilus_californianus","Type 17",10,0.0875,114.285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Bq1",2014-04-01,2014-04-01,"YB","B","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-04-01_YB-Bq2",2014-04-01,2014-04-01,"YB","B","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-01_YB-Bq3",2014-04-01,2014-04-01,"YB","B","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-01_YB-Bq4",2014-04-01,2014-04-01,"YB","B","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-Bq5",2014-04-01,2014-04-01,"YB","B","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-01_YB-Bq6",2014-04-01,2014-04-01,"YB","B","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Bq7",2014-04-01,2014-04-01,"YB","B","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-04-01_YB-Bq8",2014-04-01,2014-04-01,"YB","B","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-01_YB-Bq9",2014-04-01,2014-04-01,"YB","B","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Bq1",2014-04-01,2014-04-01,"YB","B","1","Myt","Mytilus_spp","Type 7",102,0.015625,6528,"c","Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-04-01_YB-Bq2",2014-04-01,2014-04-01,"YB","B","2","Myt","Mytilus_spp","Type 7",435,0.0875,4971.42857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-01_YB-Bq3",2014-04-01,2014-04-01,"YB","B","3","Myt","Mytilus_spp","Type 7",513,0.0875,5862.85714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-01_YB-Bq4",2014-04-01,2014-04-01,"YB","B","4","Myt","Mytilus_spp","Type 7",218,0.0875,2491.42857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-Bq5",2014-04-01,2014-04-01,"YB","B","5","Myt","Mytilus_spp","Type 7",402,0.0875,4594.28571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-01_YB-Bq6",2014-04-01,2014-04-01,"YB","B","6","Myt","Mytilus_spp","Type 7",399,0.0875,4560,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Bq7",2014-04-01,2014-04-01,"YB","B","7","Myt","Mytilus_spp","Type 7",109,0.0875,1245.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-04-01_YB-Bq8",2014-04-01,2014-04-01,"YB","B","8","Myt","Mytilus_spp","Type 7",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-01_YB-Bq9",2014-04-01,2014-04-01,"YB","B","9","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Bq1",2014-04-01,2014-04-01,"YB","B","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-04-01_YB-Bq2",2014-04-01,2014-04-01,"YB","B","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-01_YB-Bq3",2014-04-01,2014-04-01,"YB","B","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-01_YB-Bq4",2014-04-01,2014-04-01,"YB","B","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-Bq5",2014-04-01,2014-04-01,"YB","B","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-01_YB-Bq6",2014-04-01,2014-04-01,"YB","B","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Bq7",2014-04-01,2014-04-01,"YB","B","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-04-01_YB-Bq8",2014-04-01,2014-04-01,"YB","B","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-01_YB-Bq9",2014-04-01,2014-04-01,"YB","B","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Bq1",2014-04-01,2014-04-01,"YB","B","1","Mt","Mytilus_trossulus","Type 15",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-04-01_YB-Bq2",2014-04-01,2014-04-01,"YB","B","2","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-01_YB-Bq3",2014-04-01,2014-04-01,"YB","B","3","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-01_YB-Bq4",2014-04-01,2014-04-01,"YB","B","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-Bq5",2014-04-01,2014-04-01,"YB","B","5","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-01_YB-Bq6",2014-04-01,2014-04-01,"YB","B","6","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Bq7",2014-04-01,2014-04-01,"YB","B","7","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-04-01_YB-Bq8",2014-04-01,2014-04-01,"YB","B","8","Mt","Mytilus_trossulus","Type 15",77,0.015625,4928,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-01_YB-Bq9",2014-04-01,2014-04-01,"YB","B","9","Mt","Mytilus_trossulus","Type 15",123,0.0875,1405.71428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Bq1",2014-04-01,2014-04-01,"YB","B","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-04-01_YB-Bq2",2014-04-01,2014-04-01,"YB","B","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-01_YB-Bq3",2014-04-01,2014-04-01,"YB","B","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-01_YB-Bq4",2014-04-01,2014-04-01,"YB","B","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-Bq5",2014-04-01,2014-04-01,"YB","B","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-01_YB-Bq6",2014-04-01,2014-04-01,"YB","B","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Bq7",2014-04-01,2014-04-01,"YB","B","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-04-01_YB-Bq8",2014-04-01,2014-04-01,"YB","B","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-01_YB-Bq9",2014-04-01,2014-04-01,"YB","B","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Bq1",2014-04-01,2014-04-01,"YB","B","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-04-01_YB-Bq2",2014-04-01,2014-04-01,"YB","B","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-01_YB-Bq3",2014-04-01,2014-04-01,"YB","B","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-01_YB-Bq4",2014-04-01,2014-04-01,"YB","B","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-Bq5",2014-04-01,2014-04-01,"YB","B","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-01_YB-Bq6",2014-04-01,2014-04-01,"YB","B","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Bq7",2014-04-01,2014-04-01,"YB","B","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-04-01_YB-Bq8",2014-04-01,2014-04-01,"YB","B","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-01_YB-Bq9",2014-04-01,2014-04-01,"YB","B","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Bq1",2014-04-01,2014-04-01,"YB","B","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-04-01_YB-Bq2",2014-04-01,2014-04-01,"YB","B","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-01_YB-Bq3",2014-04-01,2014-04-01,"YB","B","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-01_YB-Bq4",2014-04-01,2014-04-01,"YB","B","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-Bq5",2014-04-01,2014-04-01,"YB","B","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-01_YB-Bq6",2014-04-01,2014-04-01,"YB","B","6","Nc","Nucella_canaliculata","Type 10",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Bq7",2014-04-01,2014-04-01,"YB","B","7","Nc","Nucella_canaliculata","Type 10",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-04-01_YB-Bq8",2014-04-01,2014-04-01,"YB","B","8","Nc","Nucella_canaliculata","Type 10",22,0.0875,251.428571428571,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-01_YB-Bq9",2014-04-01,2014-04-01,"YB","B","9","Nc","Nucella_canaliculata","Type 10",26,0.0875,297.142857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Bq1",2014-04-01,2014-04-01,"YB","B","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-04-01_YB-Bq2",2014-04-01,2014-04-01,"YB","B","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-01_YB-Bq3",2014-04-01,2014-04-01,"YB","B","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-01_YB-Bq4",2014-04-01,2014-04-01,"YB","B","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-Bq5",2014-04-01,2014-04-01,"YB","B","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-01_YB-Bq6",2014-04-01,2014-04-01,"YB","B","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Bq7",2014-04-01,2014-04-01,"YB","B","7","Negg","Nucella_eggs","Type 26",18,0.0875,205.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-04-01_YB-Bq8",2014-04-01,2014-04-01,"YB","B","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-01_YB-Bq9",2014-04-01,2014-04-01,"YB","B","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Bq1",2014-04-01,2014-04-01,"YB","B","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-04-01_YB-Bq2",2014-04-01,2014-04-01,"YB","B","2","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-01_YB-Bq3",2014-04-01,2014-04-01,"YB","B","3","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-01_YB-Bq4",2014-04-01,2014-04-01,"YB","B","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-Bq5",2014-04-01,2014-04-01,"YB","B","5","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-01_YB-Bq6",2014-04-01,2014-04-01,"YB","B","6","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Bq7",2014-04-01,2014-04-01,"YB","B","7","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-04-01_YB-Bq8",2014-04-01,2014-04-01,"YB","B","8","No","Nucella_ostrina","Type 9",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-01_YB-Bq9",2014-04-01,2014-04-01,"YB","B","9","No","Nucella_ostrina","Type 9",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Bq1",2014-04-01,2014-04-01,"YB","B","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-04-01_YB-Bq2",2014-04-01,2014-04-01,"YB","B","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-01_YB-Bq3",2014-04-01,2014-04-01,"YB","B","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-01_YB-Bq4",2014-04-01,2014-04-01,"YB","B","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-Bq5",2014-04-01,2014-04-01,"YB","B","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-01_YB-Bq6",2014-04-01,2014-04-01,"YB","B","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Bq7",2014-04-01,2014-04-01,"YB","B","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-04-01_YB-Bq8",2014-04-01,2014-04-01,"YB","B","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-01_YB-Bq9",2014-04-01,2014-04-01,"YB","B","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Bq1",2014-04-01,2014-04-01,"YB","B","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-04-01_YB-Bq2",2014-04-01,2014-04-01,"YB","B","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-01_YB-Bq3",2014-04-01,2014-04-01,"YB","B","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-01_YB-Bq4",2014-04-01,2014-04-01,"YB","B","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-Bq5",2014-04-01,2014-04-01,"YB","B","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-01_YB-Bq6",2014-04-01,2014-04-01,"YB","B","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Bq7",2014-04-01,2014-04-01,"YB","B","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-04-01_YB-Bq8",2014-04-01,2014-04-01,"YB","B","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-01_YB-Bq9",2014-04-01,2014-04-01,"YB","B","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Bq1",2014-04-01,2014-04-01,"YB","B","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-04-01_YB-Bq2",2014-04-01,2014-04-01,"YB","B","2","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-01_YB-Bq3",2014-04-01,2014-04-01,"YB","B","3","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-01_YB-Bq4",2014-04-01,2014-04-01,"YB","B","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-Bq5",2014-04-01,2014-04-01,"YB","B","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-01_YB-Bq6",2014-04-01,2014-04-01,"YB","B","6","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Bq7",2014-04-01,2014-04-01,"YB","B","7","Pp","Pollicipes_polymerus","Type 11",17,0.0875,194.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-04-01_YB-Bq8",2014-04-01,2014-04-01,"YB","B","8","Pp","Pollicipes_polymerus","Type 11",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-01_YB-Bq9",2014-04-01,2014-04-01,"YB","B","9","Pp","Pollicipes_polymerus","Type 11",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Bq1",2014-04-01,2014-04-01,"YB","B","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-04-01_YB-Bq2",2014-04-01,2014-04-01,"YB","B","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-01_YB-Bq3",2014-04-01,2014-04-01,"YB","B","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-01_YB-Bq4",2014-04-01,2014-04-01,"YB","B","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-Bq5",2014-04-01,2014-04-01,"YB","B","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-01_YB-Bq6",2014-04-01,2014-04-01,"YB","B","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Bq7",2014-04-01,2014-04-01,"YB","B","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-04-01_YB-Bq8",2014-04-01,2014-04-01,"YB","B","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-01_YB-Bq9",2014-04-01,2014-04-01,"YB","B","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Bq1",2014-04-01,2014-04-01,"YB","B","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-04-01_YB-Bq2",2014-04-01,2014-04-01,"YB","B","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-01_YB-Bq3",2014-04-01,2014-04-01,"YB","B","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-01_YB-Bq4",2014-04-01,2014-04-01,"YB","B","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-Bq5",2014-04-01,2014-04-01,"YB","B","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-01_YB-Bq6",2014-04-01,2014-04-01,"YB","B","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Bq7",2014-04-01,2014-04-01,"YB","B","7","Sc","Semibalanus_cariosus","Type 5",27,0.0875,308.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-04-01_YB-Bq8",2014-04-01,2014-04-01,"YB","B","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-01_YB-Bq9",2014-04-01,2014-04-01,"YB","B","9","Sc","Semibalanus_cariosus","Type 5",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Bq1",2014-04-01,2014-04-01,"YB","B","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-04-01_YB-Bq2",2014-04-01,2014-04-01,"YB","B","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-01_YB-Bq3",2014-04-01,2014-04-01,"YB","B","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-01_YB-Bq4",2014-04-01,2014-04-01,"YB","B","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-Bq5",2014-04-01,2014-04-01,"YB","B","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-01_YB-Bq6",2014-04-01,2014-04-01,"YB","B","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Bq7",2014-04-01,2014-04-01,"YB","B","7","ScD","Semibalanus_cariosus_(dead)","Type 6",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-04-01_YB-Bq8",2014-04-01,2014-04-01,"YB","B","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-01_YB-Bq9",2014-04-01,2014-04-01,"YB","B","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-BBq1",2014-04-01,2014-04-01,"YB","BB","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-04-01_YB-BBq2",2014-04-01,2014-04-01,"YB","BB","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patches"
+"2014-04-01_YB-BBq9",2014-04-01,2014-04-01,"YB","BB","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BBq1",2014-04-01,2014-04-01,"YB","BB","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-04-01_YB-BBq2",2014-04-01,2014-04-01,"YB","BB","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patches"
+"2014-04-01_YB-BBq9",2014-04-01,2014-04-01,"YB","BB","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BBq1",2014-04-01,2014-04-01,"YB","BB","1","Bg","Balanus_glandula","Type 1",2127,0.0875,24308.5714285714,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-04-01_YB-BBq2",2014-04-01,2014-04-01,"YB","BB","2","Bg","Balanus_glandula","Type 1",1837,0.0875,20994.2857142857,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patches"
+"2014-04-01_YB-BBq9",2014-04-01,2014-04-01,"YB","BB","9","Bg","Balanus_glandula","Type 1",631,0.015625,40384,"c","Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BBq1",2014-04-01,2014-04-01,"YB","BB","1","BgD","Balanus_glandula_(dead)","Type 2",88,0.0875,1005.71428571429,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-04-01_YB-BBq2",2014-04-01,2014-04-01,"YB","BB","2","BgD","Balanus_glandula_(dead)","Type 2",54,0.0875,617.142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patches"
+"2014-04-01_YB-BBq9",2014-04-01,2014-04-01,"YB","BB","9","BgD","Balanus_glandula_(dead)","Type 2",13,0.015625,832,"c","Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BBq1",2014-04-01,2014-04-01,"YB","BB","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-04-01_YB-BBq2",2014-04-01,2014-04-01,"YB","BB","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patches"
+"2014-04-01_YB-BBq9",2014-04-01,2014-04-01,"YB","BB","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BBq1",2014-04-01,2014-04-01,"YB","BB","1","Cth","Chthamalus_dalli","Type 3",220,0.0875,2514.28571428571,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-04-01_YB-BBq2",2014-04-01,2014-04-01,"YB","BB","2","Cth","Chthamalus_dalli","Type 3",607,0.0875,6937.14285714286,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patches"
+"2014-04-01_YB-BBq9",2014-04-01,2014-04-01,"YB","BB","9","Cth","Chthamalus_dalli","Type 3",91,0.015625,5824,"c","Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BBq1",2014-04-01,2014-04-01,"YB","BB","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-04-01_YB-BBq2",2014-04-01,2014-04-01,"YB","BB","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patches"
+"2014-04-01_YB-BBq9",2014-04-01,2014-04-01,"YB","BB","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BBq1",2014-04-01,2014-04-01,"YB","BB","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-04-01_YB-BBq2",2014-04-01,2014-04-01,"YB","BB","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patches"
+"2014-04-01_YB-BBq9",2014-04-01,2014-04-01,"YB","BB","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BBq1",2014-04-01,2014-04-01,"YB","BB","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-04-01_YB-BBq2",2014-04-01,2014-04-01,"YB","BB","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patches"
+"2014-04-01_YB-BBq9",2014-04-01,2014-04-01,"YB","BB","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BBq1",2014-04-01,2014-04-01,"YB","BB","1","Lim","Limpets","Type 12",35,0.0875,400,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-04-01_YB-BBq2",2014-04-01,2014-04-01,"YB","BB","2","Lim","Limpets","Type 12",32,0.0875,365.714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patches"
+"2014-04-01_YB-BBq9",2014-04-01,2014-04-01,"YB","BB","9","Lim","Limpets","Type 12",32,0.0875,365.714285714286,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BBq1",2014-04-01,2014-04-01,"YB","BB","1","Ls","Littorina_sitkana","Type 13",199,0.0875,2274.28571428571,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-04-01_YB-BBq2",2014-04-01,2014-04-01,"YB","BB","2","Ls","Littorina_sitkana","Type 13",186,0.0875,2125.71428571429,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patches"
+"2014-04-01_YB-BBq9",2014-04-01,2014-04-01,"YB","BB","9","Ls","Littorina_sitkana","Type 13",99,0.0875,1131.42857142857,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BBq1",2014-04-01,2014-04-01,"YB","BB","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-04-01_YB-BBq2",2014-04-01,2014-04-01,"YB","BB","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patches"
+"2014-04-01_YB-BBq9",2014-04-01,2014-04-01,"YB","BB","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BBq1",2014-04-01,2014-04-01,"YB","BB","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-04-01_YB-BBq2",2014-04-01,2014-04-01,"YB","BB","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patches"
+"2014-04-01_YB-BBq9",2014-04-01,2014-04-01,"YB","BB","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BBq1",2014-04-01,2014-04-01,"YB","BB","1","Myt","Mytilus_spp","Type 7",272,0.0875,3108.57142857143,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-04-01_YB-BBq2",2014-04-01,2014-04-01,"YB","BB","2","Myt","Mytilus_spp","Type 7",301,0.0875,3440,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patches"
+"2014-04-01_YB-BBq9",2014-04-01,2014-04-01,"YB","BB","9","Myt","Mytilus_spp","Type 7",304,0.0875,3474.28571428571,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BBq1",2014-04-01,2014-04-01,"YB","BB","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-04-01_YB-BBq2",2014-04-01,2014-04-01,"YB","BB","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patches"
+"2014-04-01_YB-BBq9",2014-04-01,2014-04-01,"YB","BB","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BBq1",2014-04-01,2014-04-01,"YB","BB","1","Mt","Mytilus_trossulus","Type 15",16,0.0875,182.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-04-01_YB-BBq2",2014-04-01,2014-04-01,"YB","BB","2","Mt","Mytilus_trossulus","Type 15",21,0.0875,240,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patches"
+"2014-04-01_YB-BBq9",2014-04-01,2014-04-01,"YB","BB","9","Mt","Mytilus_trossulus","Type 15",6,0.0875,68.5714285714286,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BBq1",2014-04-01,2014-04-01,"YB","BB","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-04-01_YB-BBq2",2014-04-01,2014-04-01,"YB","BB","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patches"
+"2014-04-01_YB-BBq9",2014-04-01,2014-04-01,"YB","BB","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BBq1",2014-04-01,2014-04-01,"YB","BB","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-04-01_YB-BBq2",2014-04-01,2014-04-01,"YB","BB","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patches"
+"2014-04-01_YB-BBq9",2014-04-01,2014-04-01,"YB","BB","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BBq1",2014-04-01,2014-04-01,"YB","BB","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-04-01_YB-BBq2",2014-04-01,2014-04-01,"YB","BB","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patches"
+"2014-04-01_YB-BBq9",2014-04-01,2014-04-01,"YB","BB","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BBq1",2014-04-01,2014-04-01,"YB","BB","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-04-01_YB-BBq2",2014-04-01,2014-04-01,"YB","BB","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patches"
+"2014-04-01_YB-BBq9",2014-04-01,2014-04-01,"YB","BB","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BBq1",2014-04-01,2014-04-01,"YB","BB","1","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-04-01_YB-BBq2",2014-04-01,2014-04-01,"YB","BB","2","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patches"
+"2014-04-01_YB-BBq9",2014-04-01,2014-04-01,"YB","BB","9","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BBq1",2014-04-01,2014-04-01,"YB","BB","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-04-01_YB-BBq2",2014-04-01,2014-04-01,"YB","BB","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patches"
+"2014-04-01_YB-BBq9",2014-04-01,2014-04-01,"YB","BB","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BBq1",2014-04-01,2014-04-01,"YB","BB","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-04-01_YB-BBq2",2014-04-01,2014-04-01,"YB","BB","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patches"
+"2014-04-01_YB-BBq9",2014-04-01,2014-04-01,"YB","BB","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BBq1",2014-04-01,2014-04-01,"YB","BB","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-04-01_YB-BBq2",2014-04-01,2014-04-01,"YB","BB","2","Pp","Pollicipes_polymerus","Type 11",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patches"
+"2014-04-01_YB-BBq9",2014-04-01,2014-04-01,"YB","BB","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BBq1",2014-04-01,2014-04-01,"YB","BB","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-04-01_YB-BBq2",2014-04-01,2014-04-01,"YB","BB","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patches"
+"2014-04-01_YB-BBq9",2014-04-01,2014-04-01,"YB","BB","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BBq1",2014-04-01,2014-04-01,"YB","BB","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-04-01_YB-BBq2",2014-04-01,2014-04-01,"YB","BB","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patches"
+"2014-04-01_YB-BBq9",2014-04-01,2014-04-01,"YB","BB","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BBq1",2014-04-01,2014-04-01,"YB","BB","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-04-01_YB-BBq2",2014-04-01,2014-04-01,"YB","BB","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patches"
+"2014-04-01_YB-BBq9",2014-04-01,2014-04-01,"YB","BB","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BCq3",2014-04-01,2014-04-01,"YB","BC","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BCq7",2014-04-01,2014-04-01,"YB","BC","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BCq9",2014-04-01,2014-04-01,"YB","BC","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BCq3",2014-04-01,2014-04-01,"YB","BC","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BCq7",2014-04-01,2014-04-01,"YB","BC","7","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BCq9",2014-04-01,2014-04-01,"YB","BC","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BCq3",2014-04-01,2014-04-01,"YB","BC","3","Bg","Balanus_glandula","Type 1",1061,0.015625,67904,"c","Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BCq7",2014-04-01,2014-04-01,"YB","BC","7","Bg","Balanus_glandula","Type 1",891,0.015625,57024,"c","Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BCq9",2014-04-01,2014-04-01,"YB","BC","9","Bg","Balanus_glandula","Type 1",740,0.015625,47360,"c","Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BCq3",2014-04-01,2014-04-01,"YB","BC","3","BgD","Balanus_glandula_(dead)","Type 2",71,0.015625,4544,"c","Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BCq7",2014-04-01,2014-04-01,"YB","BC","7","BgD","Balanus_glandula_(dead)","Type 2",98,0.015625,6272,"c","Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BCq9",2014-04-01,2014-04-01,"YB","BC","9","BgD","Balanus_glandula_(dead)","Type 2",63,0.015625,4032,"c","Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BCq3",2014-04-01,2014-04-01,"YB","BC","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BCq7",2014-04-01,2014-04-01,"YB","BC","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BCq9",2014-04-01,2014-04-01,"YB","BC","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BCq3",2014-04-01,2014-04-01,"YB","BC","3","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BCq7",2014-04-01,2014-04-01,"YB","BC","7","Cth","Chthamalus_dalli","Type 3",21,0.015625,1344,"c","Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BCq9",2014-04-01,2014-04-01,"YB","BC","9","Cth","Chthamalus_dalli","Type 3",26,0.015625,1664,"c","Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BCq3",2014-04-01,2014-04-01,"YB","BC","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BCq7",2014-04-01,2014-04-01,"YB","BC","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BCq9",2014-04-01,2014-04-01,"YB","BC","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BCq3",2014-04-01,2014-04-01,"YB","BC","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BCq7",2014-04-01,2014-04-01,"YB","BC","7","Emp","Emplectonema worm","Type 23",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BCq9",2014-04-01,2014-04-01,"YB","BC","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BCq3",2014-04-01,2014-04-01,"YB","BC","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BCq7",2014-04-01,2014-04-01,"YB","BC","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BCq9",2014-04-01,2014-04-01,"YB","BC","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BCq3",2014-04-01,2014-04-01,"YB","BC","3","Lim","Limpets","Type 12",17,0.0875,194.285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BCq7",2014-04-01,2014-04-01,"YB","BC","7","Lim","Limpets","Type 12",378,0.0875,4320,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BCq9",2014-04-01,2014-04-01,"YB","BC","9","Lim","Limpets","Type 12",29,0.0875,331.428571428571,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BCq3",2014-04-01,2014-04-01,"YB","BC","3","Ls","Littorina_sitkana","Type 13",72,0.0875,822.857142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BCq7",2014-04-01,2014-04-01,"YB","BC","7","Ls","Littorina_sitkana","Type 13",172,0.0875,1965.71428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BCq9",2014-04-01,2014-04-01,"YB","BC","9","Ls","Littorina_sitkana","Type 13",127,0.0875,1451.42857142857,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BCq3",2014-04-01,2014-04-01,"YB","BC","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BCq7",2014-04-01,2014-04-01,"YB","BC","7","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BCq9",2014-04-01,2014-04-01,"YB","BC","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BCq3",2014-04-01,2014-04-01,"YB","BC","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BCq7",2014-04-01,2014-04-01,"YB","BC","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BCq9",2014-04-01,2014-04-01,"YB","BC","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BCq3",2014-04-01,2014-04-01,"YB","BC","3","Myt","Mytilus_spp","Type 7",229,0.0875,2617.14285714286,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BCq7",2014-04-01,2014-04-01,"YB","BC","7","Myt","Mytilus_spp","Type 7",95,0.0875,1085.71428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BCq9",2014-04-01,2014-04-01,"YB","BC","9","Myt","Mytilus_spp","Type 7",288,0.0875,3291.42857142857,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BCq3",2014-04-01,2014-04-01,"YB","BC","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BCq7",2014-04-01,2014-04-01,"YB","BC","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BCq9",2014-04-01,2014-04-01,"YB","BC","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BCq3",2014-04-01,2014-04-01,"YB","BC","3","Mt","Mytilus_trossulus","Type 15",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BCq7",2014-04-01,2014-04-01,"YB","BC","7","Mt","Mytilus_trossulus","Type 15",110,0.0875,1257.14285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BCq9",2014-04-01,2014-04-01,"YB","BC","9","Mt","Mytilus_trossulus","Type 15",45,0.0875,514.285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BCq3",2014-04-01,2014-04-01,"YB","BC","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BCq7",2014-04-01,2014-04-01,"YB","BC","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BCq9",2014-04-01,2014-04-01,"YB","BC","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BCq3",2014-04-01,2014-04-01,"YB","BC","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BCq7",2014-04-01,2014-04-01,"YB","BC","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BCq9",2014-04-01,2014-04-01,"YB","BC","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BCq3",2014-04-01,2014-04-01,"YB","BC","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BCq7",2014-04-01,2014-04-01,"YB","BC","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BCq9",2014-04-01,2014-04-01,"YB","BC","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BCq3",2014-04-01,2014-04-01,"YB","BC","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BCq7",2014-04-01,2014-04-01,"YB","BC","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BCq9",2014-04-01,2014-04-01,"YB","BC","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BCq3",2014-04-01,2014-04-01,"YB","BC","3","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BCq7",2014-04-01,2014-04-01,"YB","BC","7","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BCq9",2014-04-01,2014-04-01,"YB","BC","9","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BCq3",2014-04-01,2014-04-01,"YB","BC","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BCq7",2014-04-01,2014-04-01,"YB","BC","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BCq9",2014-04-01,2014-04-01,"YB","BC","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BCq3",2014-04-01,2014-04-01,"YB","BC","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BCq7",2014-04-01,2014-04-01,"YB","BC","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BCq9",2014-04-01,2014-04-01,"YB","BC","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BCq3",2014-04-01,2014-04-01,"YB","BC","3","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BCq7",2014-04-01,2014-04-01,"YB","BC","7","Pp","Pollicipes_polymerus","Type 11",13,0.0875,148.571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BCq9",2014-04-01,2014-04-01,"YB","BC","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BCq3",2014-04-01,2014-04-01,"YB","BC","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BCq7",2014-04-01,2014-04-01,"YB","BC","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BCq9",2014-04-01,2014-04-01,"YB","BC","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BCq3",2014-04-01,2014-04-01,"YB","BC","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BCq7",2014-04-01,2014-04-01,"YB","BC","7","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BCq9",2014-04-01,2014-04-01,"YB","BC","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BCq3",2014-04-01,2014-04-01,"YB","BC","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BCq7",2014-04-01,2014-04-01,"YB","BC","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BCq9",2014-04-01,2014-04-01,"YB","BC","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-BDq1",2014-04-01,2014-04-01,"YB","BD","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-01_YB-BDq5",2014-04-01,2014-04-01,"YB","BD","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-01_YB-BDq7",2014-04-01,2014-04-01,"YB","BD","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-01_YB-BDq1",2014-04-01,2014-04-01,"YB","BD","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-01_YB-BDq5",2014-04-01,2014-04-01,"YB","BD","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-01_YB-BDq7",2014-04-01,2014-04-01,"YB","BD","7","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-01_YB-BDq1",2014-04-01,2014-04-01,"YB","BD","1","Bg","Balanus_glandula","Type 1",2823,0.0875,32262.8571428571,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-01_YB-BDq5",2014-04-01,2014-04-01,"YB","BD","5","Bg","Balanus_glandula","Type 1",3012,0.0875,34422.8571428571,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-01_YB-BDq7",2014-04-01,2014-04-01,"YB","BD","7","Bg","Balanus_glandula","Type 1",3368,0.0875,38491.4285714286,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-01_YB-BDq1",2014-04-01,2014-04-01,"YB","BD","1","BgD","Balanus_glandula_(dead)","Type 2",76,0.0875,868.571428571429,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-01_YB-BDq5",2014-04-01,2014-04-01,"YB","BD","5","BgD","Balanus_glandula_(dead)","Type 2",40,0.0875,457.142857142857,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-01_YB-BDq7",2014-04-01,2014-04-01,"YB","BD","7","BgD","Balanus_glandula_(dead)","Type 2",72,0.0875,822.857142857143,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-01_YB-BDq1",2014-04-01,2014-04-01,"YB","BD","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-01_YB-BDq5",2014-04-01,2014-04-01,"YB","BD","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-01_YB-BDq7",2014-04-01,2014-04-01,"YB","BD","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-01_YB-BDq1",2014-04-01,2014-04-01,"YB","BD","1","Cth","Chthamalus_dalli","Type 3",33,0.0875,377.142857142857,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-01_YB-BDq5",2014-04-01,2014-04-01,"YB","BD","5","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-01_YB-BDq7",2014-04-01,2014-04-01,"YB","BD","7","Cth","Chthamalus_dalli","Type 3",5,0.0875,57.1428571428571,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-01_YB-BDq1",2014-04-01,2014-04-01,"YB","BD","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-01_YB-BDq5",2014-04-01,2014-04-01,"YB","BD","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-01_YB-BDq7",2014-04-01,2014-04-01,"YB","BD","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-01_YB-BDq1",2014-04-01,2014-04-01,"YB","BD","1","Emp","Emplectonema worm","Type 23",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-01_YB-BDq5",2014-04-01,2014-04-01,"YB","BD","5","Emp","Emplectonema worm","Type 23",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-01_YB-BDq7",2014-04-01,2014-04-01,"YB","BD","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-01_YB-BDq1",2014-04-01,2014-04-01,"YB","BD","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-01_YB-BDq5",2014-04-01,2014-04-01,"YB","BD","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-01_YB-BDq7",2014-04-01,2014-04-01,"YB","BD","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-01_YB-BDq1",2014-04-01,2014-04-01,"YB","BD","1","Lim","Limpets","Type 12",446,0.0875,5097.14285714286,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-01_YB-BDq5",2014-04-01,2014-04-01,"YB","BD","5","Lim","Limpets","Type 12",374,0.0875,4274.28571428571,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-01_YB-BDq7",2014-04-01,2014-04-01,"YB","BD","7","Lim","Limpets","Type 12",305,0.0875,3485.71428571429,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-01_YB-BDq1",2014-04-01,2014-04-01,"YB","BD","1","Ls","Littorina_sitkana","Type 13",221,0.0875,2525.71428571429,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-01_YB-BDq5",2014-04-01,2014-04-01,"YB","BD","5","Ls","Littorina_sitkana","Type 13",488,0.0875,5577.14285714286,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-01_YB-BDq7",2014-04-01,2014-04-01,"YB","BD","7","Ls","Littorina_sitkana","Type 13",269,0.0875,3074.28571428571,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-01_YB-BDq1",2014-04-01,2014-04-01,"YB","BD","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-01_YB-BDq5",2014-04-01,2014-04-01,"YB","BD","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-01_YB-BDq7",2014-04-01,2014-04-01,"YB","BD","7","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-01_YB-BDq1",2014-04-01,2014-04-01,"YB","BD","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-01_YB-BDq5",2014-04-01,2014-04-01,"YB","BD","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-01_YB-BDq7",2014-04-01,2014-04-01,"YB","BD","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-01_YB-BDq1",2014-04-01,2014-04-01,"YB","BD","1","Myt","Mytilus_spp","Type 7",638,0.0875,7291.42857142857,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-01_YB-BDq5",2014-04-01,2014-04-01,"YB","BD","5","Myt","Mytilus_spp","Type 7",619,0.0875,7074.28571428571,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-01_YB-BDq7",2014-04-01,2014-04-01,"YB","BD","7","Myt","Mytilus_spp","Type 7",670,0.0875,7657.14285714286,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-01_YB-BDq1",2014-04-01,2014-04-01,"YB","BD","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-01_YB-BDq5",2014-04-01,2014-04-01,"YB","BD","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-01_YB-BDq7",2014-04-01,2014-04-01,"YB","BD","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-01_YB-BDq1",2014-04-01,2014-04-01,"YB","BD","1","Mt","Mytilus_trossulus","Type 15",66,0.0875,754.285714285714,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-01_YB-BDq5",2014-04-01,2014-04-01,"YB","BD","5","Mt","Mytilus_trossulus","Type 15",82,0.0875,937.142857142857,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-01_YB-BDq7",2014-04-01,2014-04-01,"YB","BD","7","Mt","Mytilus_trossulus","Type 15",132,0.0875,1508.57142857143,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-01_YB-BDq1",2014-04-01,2014-04-01,"YB","BD","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-01_YB-BDq5",2014-04-01,2014-04-01,"YB","BD","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-01_YB-BDq7",2014-04-01,2014-04-01,"YB","BD","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-01_YB-BDq1",2014-04-01,2014-04-01,"YB","BD","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-01_YB-BDq5",2014-04-01,2014-04-01,"YB","BD","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-01_YB-BDq7",2014-04-01,2014-04-01,"YB","BD","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-01_YB-BDq1",2014-04-01,2014-04-01,"YB","BD","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-01_YB-BDq5",2014-04-01,2014-04-01,"YB","BD","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-01_YB-BDq7",2014-04-01,2014-04-01,"YB","BD","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-01_YB-BDq1",2014-04-01,2014-04-01,"YB","BD","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-01_YB-BDq5",2014-04-01,2014-04-01,"YB","BD","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-01_YB-BDq7",2014-04-01,2014-04-01,"YB","BD","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-01_YB-BDq1",2014-04-01,2014-04-01,"YB","BD","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-01_YB-BDq5",2014-04-01,2014-04-01,"YB","BD","5","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-01_YB-BDq7",2014-04-01,2014-04-01,"YB","BD","7","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-01_YB-BDq1",2014-04-01,2014-04-01,"YB","BD","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-01_YB-BDq5",2014-04-01,2014-04-01,"YB","BD","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-01_YB-BDq7",2014-04-01,2014-04-01,"YB","BD","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-01_YB-BDq1",2014-04-01,2014-04-01,"YB","BD","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-01_YB-BDq5",2014-04-01,2014-04-01,"YB","BD","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-01_YB-BDq7",2014-04-01,2014-04-01,"YB","BD","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-01_YB-BDq1",2014-04-01,2014-04-01,"YB","BD","1","Pp","Pollicipes_polymerus","Type 11",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-01_YB-BDq5",2014-04-01,2014-04-01,"YB","BD","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-01_YB-BDq7",2014-04-01,2014-04-01,"YB","BD","7","Pp","Pollicipes_polymerus","Type 11",7,0.0875,80,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-01_YB-BDq1",2014-04-01,2014-04-01,"YB","BD","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-01_YB-BDq5",2014-04-01,2014-04-01,"YB","BD","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-01_YB-BDq7",2014-04-01,2014-04-01,"YB","BD","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-01_YB-BDq1",2014-04-01,2014-04-01,"YB","BD","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-01_YB-BDq5",2014-04-01,2014-04-01,"YB","BD","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-01_YB-BDq7",2014-04-01,2014-04-01,"YB","BD","7","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-01_YB-BDq1",2014-04-01,2014-04-01,"YB","BD","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-01_YB-BDq5",2014-04-01,2014-04-01,"YB","BD","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-01_YB-BDq7",2014-04-01,2014-04-01,"YB","BD","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-01_YB-BEq2",2014-04-01,2014-04-01,"YB","BE","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to glare from water cover"
+"2014-04-01_YB-BEq3",2014-04-01,2014-04-01,"YB","BE","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-BEq6",2014-04-01,2014-04-01,"YB","BE","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-BEq2",2014-04-01,2014-04-01,"YB","BE","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to glare from water cover"
+"2014-04-01_YB-BEq3",2014-04-01,2014-04-01,"YB","BE","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-BEq6",2014-04-01,2014-04-01,"YB","BE","6","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-BEq2",2014-04-01,2014-04-01,"YB","BE","2","Bg","Balanus_glandula","Type 1",158,0.0875,1805.71428571429,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to glare from water cover"
+"2014-04-01_YB-BEq3",2014-04-01,2014-04-01,"YB","BE","3","Bg","Balanus_glandula","Type 1",152,0.0875,1737.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-BEq6",2014-04-01,2014-04-01,"YB","BE","6","Bg","Balanus_glandula","Type 1",176,0.0875,2011.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-BEq2",2014-04-01,2014-04-01,"YB","BE","2","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to glare from water cover"
+"2014-04-01_YB-BEq3",2014-04-01,2014-04-01,"YB","BE","3","BgD","Balanus_glandula_(dead)","Type 2",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-BEq6",2014-04-01,2014-04-01,"YB","BE","6","BgD","Balanus_glandula_(dead)","Type 2",9,0.0875,102.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-BEq2",2014-04-01,2014-04-01,"YB","BE","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to glare from water cover"
+"2014-04-01_YB-BEq3",2014-04-01,2014-04-01,"YB","BE","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-BEq6",2014-04-01,2014-04-01,"YB","BE","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-BEq2",2014-04-01,2014-04-01,"YB","BE","2","Cth","Chthamalus_dalli","Type 3",12,0.0875,137.142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to glare from water cover"
+"2014-04-01_YB-BEq3",2014-04-01,2014-04-01,"YB","BE","3","Cth","Chthamalus_dalli","Type 3",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-BEq6",2014-04-01,2014-04-01,"YB","BE","6","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-BEq2",2014-04-01,2014-04-01,"YB","BE","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to glare from water cover"
+"2014-04-01_YB-BEq3",2014-04-01,2014-04-01,"YB","BE","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-BEq6",2014-04-01,2014-04-01,"YB","BE","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-BEq2",2014-04-01,2014-04-01,"YB","BE","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to glare from water cover"
+"2014-04-01_YB-BEq3",2014-04-01,2014-04-01,"YB","BE","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-BEq6",2014-04-01,2014-04-01,"YB","BE","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-BEq2",2014-04-01,2014-04-01,"YB","BE","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to glare from water cover"
+"2014-04-01_YB-BEq3",2014-04-01,2014-04-01,"YB","BE","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-BEq6",2014-04-01,2014-04-01,"YB","BE","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-BEq2",2014-04-01,2014-04-01,"YB","BE","2","Lim","Limpets","Type 12",25,0.0875,285.714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to glare from water cover"
+"2014-04-01_YB-BEq3",2014-04-01,2014-04-01,"YB","BE","3","Lim","Limpets","Type 12",102,0.0875,1165.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-BEq6",2014-04-01,2014-04-01,"YB","BE","6","Lim","Limpets","Type 12",122,0.0875,1394.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-BEq2",2014-04-01,2014-04-01,"YB","BE","2","Ls","Littorina_sitkana","Type 13",118,0.0875,1348.57142857143,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to glare from water cover"
+"2014-04-01_YB-BEq3",2014-04-01,2014-04-01,"YB","BE","3","Ls","Littorina_sitkana","Type 13",11,0.0875,125.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-BEq6",2014-04-01,2014-04-01,"YB","BE","6","Ls","Littorina_sitkana","Type 13",20,0.0875,228.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-BEq2",2014-04-01,2014-04-01,"YB","BE","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to glare from water cover"
+"2014-04-01_YB-BEq3",2014-04-01,2014-04-01,"YB","BE","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-BEq6",2014-04-01,2014-04-01,"YB","BE","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-BEq2",2014-04-01,2014-04-01,"YB","BE","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to glare from water cover"
+"2014-04-01_YB-BEq3",2014-04-01,2014-04-01,"YB","BE","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-BEq6",2014-04-01,2014-04-01,"YB","BE","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-BEq2",2014-04-01,2014-04-01,"YB","BE","2","Myt","Mytilus_spp","Type 7",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to glare from water cover"
+"2014-04-01_YB-BEq3",2014-04-01,2014-04-01,"YB","BE","3","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-BEq6",2014-04-01,2014-04-01,"YB","BE","6","Myt","Mytilus_spp","Type 7",10,0.0875,114.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-BEq2",2014-04-01,2014-04-01,"YB","BE","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to glare from water cover"
+"2014-04-01_YB-BEq3",2014-04-01,2014-04-01,"YB","BE","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-BEq6",2014-04-01,2014-04-01,"YB","BE","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-BEq2",2014-04-01,2014-04-01,"YB","BE","2","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to glare from water cover"
+"2014-04-01_YB-BEq3",2014-04-01,2014-04-01,"YB","BE","3","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-BEq6",2014-04-01,2014-04-01,"YB","BE","6","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-BEq2",2014-04-01,2014-04-01,"YB","BE","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to glare from water cover"
+"2014-04-01_YB-BEq3",2014-04-01,2014-04-01,"YB","BE","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-BEq6",2014-04-01,2014-04-01,"YB","BE","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-BEq2",2014-04-01,2014-04-01,"YB","BE","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to glare from water cover"
+"2014-04-01_YB-BEq3",2014-04-01,2014-04-01,"YB","BE","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-BEq6",2014-04-01,2014-04-01,"YB","BE","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-BEq2",2014-04-01,2014-04-01,"YB","BE","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to glare from water cover"
+"2014-04-01_YB-BEq3",2014-04-01,2014-04-01,"YB","BE","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-BEq6",2014-04-01,2014-04-01,"YB","BE","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-BEq2",2014-04-01,2014-04-01,"YB","BE","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to glare from water cover"
+"2014-04-01_YB-BEq3",2014-04-01,2014-04-01,"YB","BE","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-BEq6",2014-04-01,2014-04-01,"YB","BE","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-BEq2",2014-04-01,2014-04-01,"YB","BE","2","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to glare from water cover"
+"2014-04-01_YB-BEq3",2014-04-01,2014-04-01,"YB","BE","3","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-BEq6",2014-04-01,2014-04-01,"YB","BE","6","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-BEq2",2014-04-01,2014-04-01,"YB","BE","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to glare from water cover"
+"2014-04-01_YB-BEq3",2014-04-01,2014-04-01,"YB","BE","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-BEq6",2014-04-01,2014-04-01,"YB","BE","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-BEq2",2014-04-01,2014-04-01,"YB","BE","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to glare from water cover"
+"2014-04-01_YB-BEq3",2014-04-01,2014-04-01,"YB","BE","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-BEq6",2014-04-01,2014-04-01,"YB","BE","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-BEq2",2014-04-01,2014-04-01,"YB","BE","2","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to glare from water cover"
+"2014-04-01_YB-BEq3",2014-04-01,2014-04-01,"YB","BE","3","Pp","Pollicipes_polymerus","Type 11",21,0.0875,240,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-BEq6",2014-04-01,2014-04-01,"YB","BE","6","Pp","Pollicipes_polymerus","Type 11",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-BEq2",2014-04-01,2014-04-01,"YB","BE","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to glare from water cover"
+"2014-04-01_YB-BEq3",2014-04-01,2014-04-01,"YB","BE","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-BEq6",2014-04-01,2014-04-01,"YB","BE","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-BEq2",2014-04-01,2014-04-01,"YB","BE","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to glare from water cover"
+"2014-04-01_YB-BEq3",2014-04-01,2014-04-01,"YB","BE","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-BEq6",2014-04-01,2014-04-01,"YB","BE","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-BEq2",2014-04-01,2014-04-01,"YB","BE","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to glare from water cover"
+"2014-04-01_YB-BEq3",2014-04-01,2014-04-01,"YB","BE","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-BEq6",2014-04-01,2014-04-01,"YB","BE","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-01_YB-BFq1",2014-04-01,2014-04-01,"YB","BF","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-04-01_YB-BFq4",2014-04-01,2014-04-01,"YB","BF","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-04-01_YB-BFq9",2014-04-01,2014-04-01,"YB","BF","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","40%",""
+"2014-04-01_YB-BFq1",2014-04-01,2014-04-01,"YB","BF","1","Ae","Anemones","Type 14",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-04-01_YB-BFq4",2014-04-01,2014-04-01,"YB","BF","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-04-01_YB-BFq9",2014-04-01,2014-04-01,"YB","BF","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","40%",""
+"2014-04-01_YB-BFq1",2014-04-01,2014-04-01,"YB","BF","1","Bg","Balanus_glandula","Type 1",740,0.0875,8457.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-04-01_YB-BFq4",2014-04-01,2014-04-01,"YB","BF","4","Bg","Balanus_glandula","Type 1",396,0.0875,4525.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-04-01_YB-BFq9",2014-04-01,2014-04-01,"YB","BF","9","Bg","Balanus_glandula","Type 1",317,0.0875,3622.85714285714,NA,"Julia Bingham","Finished","Full","Full","40%",""
+"2014-04-01_YB-BFq1",2014-04-01,2014-04-01,"YB","BF","1","BgD","Balanus_glandula_(dead)","Type 2",61,0.0875,697.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-04-01_YB-BFq4",2014-04-01,2014-04-01,"YB","BF","4","BgD","Balanus_glandula_(dead)","Type 2",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-04-01_YB-BFq9",2014-04-01,2014-04-01,"YB","BF","9","BgD","Balanus_glandula_(dead)","Type 2",148,0.0875,1691.42857142857,NA,"Julia Bingham","Finished","Full","Full","40%",""
+"2014-04-01_YB-BFq1",2014-04-01,2014-04-01,"YB","BF","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-04-01_YB-BFq4",2014-04-01,2014-04-01,"YB","BF","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-04-01_YB-BFq9",2014-04-01,2014-04-01,"YB","BF","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","40%",""
+"2014-04-01_YB-BFq1",2014-04-01,2014-04-01,"YB","BF","1","Cth","Chthamalus_dalli","Type 3",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-04-01_YB-BFq4",2014-04-01,2014-04-01,"YB","BF","4","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-04-01_YB-BFq9",2014-04-01,2014-04-01,"YB","BF","9","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","40%",""
+"2014-04-01_YB-BFq1",2014-04-01,2014-04-01,"YB","BF","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-04-01_YB-BFq4",2014-04-01,2014-04-01,"YB","BF","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-04-01_YB-BFq9",2014-04-01,2014-04-01,"YB","BF","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","40%",""
+"2014-04-01_YB-BFq1",2014-04-01,2014-04-01,"YB","BF","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-04-01_YB-BFq4",2014-04-01,2014-04-01,"YB","BF","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-04-01_YB-BFq9",2014-04-01,2014-04-01,"YB","BF","9","Emp","Emplectonema worm","Type 23",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Full","40%",""
+"2014-04-01_YB-BFq1",2014-04-01,2014-04-01,"YB","BF","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-04-01_YB-BFq4",2014-04-01,2014-04-01,"YB","BF","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-04-01_YB-BFq9",2014-04-01,2014-04-01,"YB","BF","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","40%",""
+"2014-04-01_YB-BFq1",2014-04-01,2014-04-01,"YB","BF","1","Lim","Limpets","Type 12",278,0.0875,3177.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-04-01_YB-BFq4",2014-04-01,2014-04-01,"YB","BF","4","Lim","Limpets","Type 12",56,0.0875,640,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-04-01_YB-BFq9",2014-04-01,2014-04-01,"YB","BF","9","Lim","Limpets","Type 12",49,0.0875,560,NA,"Julia Bingham","Finished","Full","Full","40%",""
+"2014-04-01_YB-BFq1",2014-04-01,2014-04-01,"YB","BF","1","Ls","Littorina_sitkana","Type 13",20,0.0875,228.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-04-01_YB-BFq4",2014-04-01,2014-04-01,"YB","BF","4","Ls","Littorina_sitkana","Type 13",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-04-01_YB-BFq9",2014-04-01,2014-04-01,"YB","BF","9","Ls","Littorina_sitkana","Type 13",124,0.0875,1417.14285714286,NA,"Julia Bingham","Finished","Full","Full","40%",""
+"2014-04-01_YB-BFq1",2014-04-01,2014-04-01,"YB","BF","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-04-01_YB-BFq4",2014-04-01,2014-04-01,"YB","BF","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-04-01_YB-BFq9",2014-04-01,2014-04-01,"YB","BF","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","40%",""
+"2014-04-01_YB-BFq1",2014-04-01,2014-04-01,"YB","BF","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-04-01_YB-BFq4",2014-04-01,2014-04-01,"YB","BF","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-04-01_YB-BFq9",2014-04-01,2014-04-01,"YB","BF","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","40%",""
+"2014-04-01_YB-BFq1",2014-04-01,2014-04-01,"YB","BF","1","Myt","Mytilus_spp","Type 7",132,0.0875,1508.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-04-01_YB-BFq4",2014-04-01,2014-04-01,"YB","BF","4","Myt","Mytilus_spp","Type 7",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-04-01_YB-BFq9",2014-04-01,2014-04-01,"YB","BF","9","Myt","Mytilus_spp","Type 7",217,0.0875,2480,NA,"Julia Bingham","Finished","Full","Full","40%",""
+"2014-04-01_YB-BFq1",2014-04-01,2014-04-01,"YB","BF","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-04-01_YB-BFq4",2014-04-01,2014-04-01,"YB","BF","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-04-01_YB-BFq9",2014-04-01,2014-04-01,"YB","BF","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","40%",""
+"2014-04-01_YB-BFq1",2014-04-01,2014-04-01,"YB","BF","1","Mt","Mytilus_trossulus","Type 15",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-04-01_YB-BFq4",2014-04-01,2014-04-01,"YB","BF","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-04-01_YB-BFq9",2014-04-01,2014-04-01,"YB","BF","9","Mt","Mytilus_trossulus","Type 15",36,0.0875,411.428571428571,NA,"Julia Bingham","Finished","Full","Full","40%",""
+"2014-04-01_YB-BFq1",2014-04-01,2014-04-01,"YB","BF","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-04-01_YB-BFq4",2014-04-01,2014-04-01,"YB","BF","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-04-01_YB-BFq9",2014-04-01,2014-04-01,"YB","BF","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","40%",""
+"2014-04-01_YB-BFq1",2014-04-01,2014-04-01,"YB","BF","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-04-01_YB-BFq4",2014-04-01,2014-04-01,"YB","BF","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-04-01_YB-BFq9",2014-04-01,2014-04-01,"YB","BF","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","40%",""
+"2014-04-01_YB-BFq1",2014-04-01,2014-04-01,"YB","BF","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-04-01_YB-BFq4",2014-04-01,2014-04-01,"YB","BF","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-04-01_YB-BFq9",2014-04-01,2014-04-01,"YB","BF","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","40%",""
+"2014-04-01_YB-BFq1",2014-04-01,2014-04-01,"YB","BF","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-04-01_YB-BFq4",2014-04-01,2014-04-01,"YB","BF","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-04-01_YB-BFq9",2014-04-01,2014-04-01,"YB","BF","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","40%",""
+"2014-04-01_YB-BFq1",2014-04-01,2014-04-01,"YB","BF","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-04-01_YB-BFq4",2014-04-01,2014-04-01,"YB","BF","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-04-01_YB-BFq9",2014-04-01,2014-04-01,"YB","BF","9","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","40%",""
+"2014-04-01_YB-BFq1",2014-04-01,2014-04-01,"YB","BF","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-04-01_YB-BFq4",2014-04-01,2014-04-01,"YB","BF","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-04-01_YB-BFq9",2014-04-01,2014-04-01,"YB","BF","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","40%",""
+"2014-04-01_YB-BFq1",2014-04-01,2014-04-01,"YB","BF","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-04-01_YB-BFq4",2014-04-01,2014-04-01,"YB","BF","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-04-01_YB-BFq9",2014-04-01,2014-04-01,"YB","BF","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","40%",""
+"2014-04-01_YB-BFq1",2014-04-01,2014-04-01,"YB","BF","1","Pp","Pollicipes_polymerus","Type 11",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-04-01_YB-BFq4",2014-04-01,2014-04-01,"YB","BF","4","Pp","Pollicipes_polymerus","Type 11",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-04-01_YB-BFq9",2014-04-01,2014-04-01,"YB","BF","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","40%",""
+"2014-04-01_YB-BFq1",2014-04-01,2014-04-01,"YB","BF","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-04-01_YB-BFq4",2014-04-01,2014-04-01,"YB","BF","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-04-01_YB-BFq9",2014-04-01,2014-04-01,"YB","BF","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","40%",""
+"2014-04-01_YB-BFq1",2014-04-01,2014-04-01,"YB","BF","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-04-01_YB-BFq4",2014-04-01,2014-04-01,"YB","BF","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-04-01_YB-BFq9",2014-04-01,2014-04-01,"YB","BF","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","40%",""
+"2014-04-01_YB-BFq1",2014-04-01,2014-04-01,"YB","BF","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-04-01_YB-BFq4",2014-04-01,2014-04-01,"YB","BF","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-04-01_YB-BFq9",2014-04-01,2014-04-01,"YB","BF","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","40%",""
+"2014-04-01_YB-Cq2",2014-04-01,2014-04-01,"YB","C","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Cq4",2014-04-01,2014-04-01,"YB","C","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-01_YB-Cq6",2014-04-01,2014-04-01,"YB","C","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-01_YB-Cq2",2014-04-01,2014-04-01,"YB","C","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Cq4",2014-04-01,2014-04-01,"YB","C","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-01_YB-Cq6",2014-04-01,2014-04-01,"YB","C","6","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-01_YB-Cq2",2014-04-01,2014-04-01,"YB","C","2","Bg","Balanus_glandula","Type 1",585,0.015625,37440,"c","Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Cq4",2014-04-01,2014-04-01,"YB","C","4","Bg","Balanus_glandula","Type 1",510,0.015625,32640,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-01_YB-Cq6",2014-04-01,2014-04-01,"YB","C","6","Bg","Balanus_glandula","Type 1",595,0.015625,38080,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-01_YB-Cq2",2014-04-01,2014-04-01,"YB","C","2","BgD","Balanus_glandula_(dead)","Type 2",16,0.015625,1024,"c","Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Cq4",2014-04-01,2014-04-01,"YB","C","4","BgD","Balanus_glandula_(dead)","Type 2",9,0.015625,576,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-01_YB-Cq6",2014-04-01,2014-04-01,"YB","C","6","BgD","Balanus_glandula_(dead)","Type 2",19,0.015625,1216,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-01_YB-Cq2",2014-04-01,2014-04-01,"YB","C","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Cq4",2014-04-01,2014-04-01,"YB","C","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-01_YB-Cq6",2014-04-01,2014-04-01,"YB","C","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-01_YB-Cq2",2014-04-01,2014-04-01,"YB","C","2","Cth","Chthamalus_dalli","Type 3",14,0.015625,896,"c","Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Cq4",2014-04-01,2014-04-01,"YB","C","4","Cth","Chthamalus_dalli","Type 3",8,0.015625,512,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-01_YB-Cq6",2014-04-01,2014-04-01,"YB","C","6","Cth","Chthamalus_dalli","Type 3",1,0.015625,64,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-01_YB-Cq2",2014-04-01,2014-04-01,"YB","C","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Cq4",2014-04-01,2014-04-01,"YB","C","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-01_YB-Cq6",2014-04-01,2014-04-01,"YB","C","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-01_YB-Cq2",2014-04-01,2014-04-01,"YB","C","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Cq4",2014-04-01,2014-04-01,"YB","C","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-01_YB-Cq6",2014-04-01,2014-04-01,"YB","C","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-01_YB-Cq2",2014-04-01,2014-04-01,"YB","C","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Cq4",2014-04-01,2014-04-01,"YB","C","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-01_YB-Cq6",2014-04-01,2014-04-01,"YB","C","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-01_YB-Cq2",2014-04-01,2014-04-01,"YB","C","2","Lim","Limpets","Type 12",167,0.0875,1908.57142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Cq4",2014-04-01,2014-04-01,"YB","C","4","Lim","Limpets","Type 12",104,0.0875,1188.57142857143,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-01_YB-Cq6",2014-04-01,2014-04-01,"YB","C","6","Lim","Limpets","Type 12",84,0.0875,960,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-01_YB-Cq2",2014-04-01,2014-04-01,"YB","C","2","Ls","Littorina_sitkana","Type 13",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Cq4",2014-04-01,2014-04-01,"YB","C","4","Ls","Littorina_sitkana","Type 13",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-01_YB-Cq6",2014-04-01,2014-04-01,"YB","C","6","Ls","Littorina_sitkana","Type 13",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-01_YB-Cq2",2014-04-01,2014-04-01,"YB","C","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Cq4",2014-04-01,2014-04-01,"YB","C","4","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-01_YB-Cq6",2014-04-01,2014-04-01,"YB","C","6","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-01_YB-Cq2",2014-04-01,2014-04-01,"YB","C","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Cq4",2014-04-01,2014-04-01,"YB","C","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-01_YB-Cq6",2014-04-01,2014-04-01,"YB","C","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-01_YB-Cq2",2014-04-01,2014-04-01,"YB","C","2","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Cq4",2014-04-01,2014-04-01,"YB","C","4","Myt","Mytilus_spp","Type 7",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-01_YB-Cq6",2014-04-01,2014-04-01,"YB","C","6","Myt","Mytilus_spp","Type 7",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-01_YB-Cq2",2014-04-01,2014-04-01,"YB","C","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Cq4",2014-04-01,2014-04-01,"YB","C","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-01_YB-Cq6",2014-04-01,2014-04-01,"YB","C","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-01_YB-Cq2",2014-04-01,2014-04-01,"YB","C","2","Mt","Mytilus_trossulus","Type 15",432,0.0875,4937.14285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Cq4",2014-04-01,2014-04-01,"YB","C","4","Mt","Mytilus_trossulus","Type 15",67,0.015625,4288,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-01_YB-Cq6",2014-04-01,2014-04-01,"YB","C","6","Mt","Mytilus_trossulus","Type 15",65,0.015625,4160,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-01_YB-Cq2",2014-04-01,2014-04-01,"YB","C","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Cq4",2014-04-01,2014-04-01,"YB","C","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-01_YB-Cq6",2014-04-01,2014-04-01,"YB","C","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-01_YB-Cq2",2014-04-01,2014-04-01,"YB","C","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Cq4",2014-04-01,2014-04-01,"YB","C","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-01_YB-Cq6",2014-04-01,2014-04-01,"YB","C","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-01_YB-Cq2",2014-04-01,2014-04-01,"YB","C","2","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Cq4",2014-04-01,2014-04-01,"YB","C","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-01_YB-Cq6",2014-04-01,2014-04-01,"YB","C","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-01_YB-Cq2",2014-04-01,2014-04-01,"YB","C","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Cq4",2014-04-01,2014-04-01,"YB","C","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-01_YB-Cq6",2014-04-01,2014-04-01,"YB","C","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-01_YB-Cq2",2014-04-01,2014-04-01,"YB","C","2","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Cq4",2014-04-01,2014-04-01,"YB","C","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-01_YB-Cq6",2014-04-01,2014-04-01,"YB","C","6","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-01_YB-Cq2",2014-04-01,2014-04-01,"YB","C","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Cq4",2014-04-01,2014-04-01,"YB","C","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-01_YB-Cq6",2014-04-01,2014-04-01,"YB","C","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-01_YB-Cq2",2014-04-01,2014-04-01,"YB","C","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Cq4",2014-04-01,2014-04-01,"YB","C","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-01_YB-Cq6",2014-04-01,2014-04-01,"YB","C","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-01_YB-Cq2",2014-04-01,2014-04-01,"YB","C","2","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Cq4",2014-04-01,2014-04-01,"YB","C","4","Pp","Pollicipes_polymerus","Type 11",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-01_YB-Cq6",2014-04-01,2014-04-01,"YB","C","6","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-01_YB-Cq2",2014-04-01,2014-04-01,"YB","C","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Cq4",2014-04-01,2014-04-01,"YB","C","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-01_YB-Cq6",2014-04-01,2014-04-01,"YB","C","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-01_YB-Cq2",2014-04-01,2014-04-01,"YB","C","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Cq4",2014-04-01,2014-04-01,"YB","C","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-01_YB-Cq6",2014-04-01,2014-04-01,"YB","C","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-01_YB-Cq2",2014-04-01,2014-04-01,"YB","C","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Cq4",2014-04-01,2014-04-01,"YB","C","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-01_YB-Cq6",2014-04-01,2014-04-01,"YB","C","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-01_YB-Dq3",2014-04-01,2014-04-01,"YB","D","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2014-04-01_YB-Dq4",2014-04-01,2014-04-01,"YB","D","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","1%",""
+"2014-04-01_YB-Dq5",2014-04-01,2014-04-01,"YB","D","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-Dq3",2014-04-01,2014-04-01,"YB","D","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2014-04-01_YB-Dq4",2014-04-01,2014-04-01,"YB","D","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","1%",""
+"2014-04-01_YB-Dq5",2014-04-01,2014-04-01,"YB","D","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-Dq3",2014-04-01,2014-04-01,"YB","D","3","Bg","Balanus_glandula","Type 1",382,0.015625,24448,"c","Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2014-04-01_YB-Dq4",2014-04-01,2014-04-01,"YB","D","4","Bg","Balanus_glandula","Type 1",2466,0.0875,28182.8571428571,NA,"Stephanie Merhoff","Finished","Full","Full","1%",""
+"2014-04-01_YB-Dq5",2014-04-01,2014-04-01,"YB","D","5","Bg","Balanus_glandula","Type 1",551,0.015625,35264,"c","Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-Dq3",2014-04-01,2014-04-01,"YB","D","3","BgD","Balanus_glandula_(dead)","Type 2",15,0.015625,960,"c","Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2014-04-01_YB-Dq4",2014-04-01,2014-04-01,"YB","D","4","BgD","Balanus_glandula_(dead)","Type 2",8,0.0875,91.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","1%",""
+"2014-04-01_YB-Dq5",2014-04-01,2014-04-01,"YB","D","5","BgD","Balanus_glandula_(dead)","Type 2",10,0.015625,640,"c","Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-Dq3",2014-04-01,2014-04-01,"YB","D","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2014-04-01_YB-Dq4",2014-04-01,2014-04-01,"YB","D","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","1%",""
+"2014-04-01_YB-Dq5",2014-04-01,2014-04-01,"YB","D","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-Dq3",2014-04-01,2014-04-01,"YB","D","3","Cth","Chthamalus_dalli","Type 3",4,0.015625,256,"c","Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2014-04-01_YB-Dq4",2014-04-01,2014-04-01,"YB","D","4","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","1%",""
+"2014-04-01_YB-Dq5",2014-04-01,2014-04-01,"YB","D","5","Cth","Chthamalus_dalli","Type 3",5,0.015625,320,"c","Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-Dq3",2014-04-01,2014-04-01,"YB","D","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2014-04-01_YB-Dq4",2014-04-01,2014-04-01,"YB","D","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","1%",""
+"2014-04-01_YB-Dq5",2014-04-01,2014-04-01,"YB","D","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-Dq3",2014-04-01,2014-04-01,"YB","D","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2014-04-01_YB-Dq4",2014-04-01,2014-04-01,"YB","D","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","1%",""
+"2014-04-01_YB-Dq5",2014-04-01,2014-04-01,"YB","D","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-Dq3",2014-04-01,2014-04-01,"YB","D","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2014-04-01_YB-Dq4",2014-04-01,2014-04-01,"YB","D","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","1%",""
+"2014-04-01_YB-Dq5",2014-04-01,2014-04-01,"YB","D","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-Dq3",2014-04-01,2014-04-01,"YB","D","3","Lim","Limpets","Type 12",104,0.0875,1188.57142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2014-04-01_YB-Dq4",2014-04-01,2014-04-01,"YB","D","4","Lim","Limpets","Type 12",42,0.0875,480,NA,"Stephanie Merhoff","Finished","Full","Full","1%",""
+"2014-04-01_YB-Dq5",2014-04-01,2014-04-01,"YB","D","5","Lim","Limpets","Type 12",241,0.0875,2754.28571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-Dq3",2014-04-01,2014-04-01,"YB","D","3","Ls","Littorina_sitkana","Type 13",127,0.0875,1451.42857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2014-04-01_YB-Dq4",2014-04-01,2014-04-01,"YB","D","4","Ls","Littorina_sitkana","Type 13",30,0.0875,342.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","1%",""
+"2014-04-01_YB-Dq5",2014-04-01,2014-04-01,"YB","D","5","Ls","Littorina_sitkana","Type 13",187,0.0875,2137.14285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-Dq3",2014-04-01,2014-04-01,"YB","D","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2014-04-01_YB-Dq4",2014-04-01,2014-04-01,"YB","D","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","1%",""
+"2014-04-01_YB-Dq5",2014-04-01,2014-04-01,"YB","D","5","Mc","Mytilus_californianus","Type 17",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-Dq3",2014-04-01,2014-04-01,"YB","D","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2014-04-01_YB-Dq4",2014-04-01,2014-04-01,"YB","D","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","1%",""
+"2014-04-01_YB-Dq5",2014-04-01,2014-04-01,"YB","D","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-Dq3",2014-04-01,2014-04-01,"YB","D","3","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2014-04-01_YB-Dq4",2014-04-01,2014-04-01,"YB","D","4","Myt","Mytilus_spp","Type 7",88,0.0875,1005.71428571429,NA,"Stephanie Merhoff","Finished","Full","Full","1%",""
+"2014-04-01_YB-Dq5",2014-04-01,2014-04-01,"YB","D","5","Myt","Mytilus_spp","Type 7",161,0.0875,1840,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-Dq3",2014-04-01,2014-04-01,"YB","D","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2014-04-01_YB-Dq4",2014-04-01,2014-04-01,"YB","D","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","1%",""
+"2014-04-01_YB-Dq5",2014-04-01,2014-04-01,"YB","D","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-Dq3",2014-04-01,2014-04-01,"YB","D","3","Mt","Mytilus_trossulus","Type 15",204,0.0875,2331.42857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2014-04-01_YB-Dq4",2014-04-01,2014-04-01,"YB","D","4","Mt","Mytilus_trossulus","Type 15",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","1%",""
+"2014-04-01_YB-Dq5",2014-04-01,2014-04-01,"YB","D","5","Mt","Mytilus_trossulus","Type 15",34,0.0875,388.571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-Dq3",2014-04-01,2014-04-01,"YB","D","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2014-04-01_YB-Dq4",2014-04-01,2014-04-01,"YB","D","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","1%",""
+"2014-04-01_YB-Dq5",2014-04-01,2014-04-01,"YB","D","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-Dq3",2014-04-01,2014-04-01,"YB","D","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2014-04-01_YB-Dq4",2014-04-01,2014-04-01,"YB","D","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","1%",""
+"2014-04-01_YB-Dq5",2014-04-01,2014-04-01,"YB","D","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-Dq3",2014-04-01,2014-04-01,"YB","D","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2014-04-01_YB-Dq4",2014-04-01,2014-04-01,"YB","D","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","1%",""
+"2014-04-01_YB-Dq5",2014-04-01,2014-04-01,"YB","D","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-Dq3",2014-04-01,2014-04-01,"YB","D","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2014-04-01_YB-Dq4",2014-04-01,2014-04-01,"YB","D","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","1%",""
+"2014-04-01_YB-Dq5",2014-04-01,2014-04-01,"YB","D","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-Dq3",2014-04-01,2014-04-01,"YB","D","3","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2014-04-01_YB-Dq4",2014-04-01,2014-04-01,"YB","D","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","1%",""
+"2014-04-01_YB-Dq5",2014-04-01,2014-04-01,"YB","D","5","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-Dq3",2014-04-01,2014-04-01,"YB","D","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2014-04-01_YB-Dq4",2014-04-01,2014-04-01,"YB","D","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","1%",""
+"2014-04-01_YB-Dq5",2014-04-01,2014-04-01,"YB","D","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-Dq3",2014-04-01,2014-04-01,"YB","D","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2014-04-01_YB-Dq4",2014-04-01,2014-04-01,"YB","D","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","1%",""
+"2014-04-01_YB-Dq5",2014-04-01,2014-04-01,"YB","D","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-Dq3",2014-04-01,2014-04-01,"YB","D","3","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2014-04-01_YB-Dq4",2014-04-01,2014-04-01,"YB","D","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","1%",""
+"2014-04-01_YB-Dq5",2014-04-01,2014-04-01,"YB","D","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-Dq3",2014-04-01,2014-04-01,"YB","D","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2014-04-01_YB-Dq4",2014-04-01,2014-04-01,"YB","D","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","1%",""
+"2014-04-01_YB-Dq5",2014-04-01,2014-04-01,"YB","D","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-Dq3",2014-04-01,2014-04-01,"YB","D","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2014-04-01_YB-Dq4",2014-04-01,2014-04-01,"YB","D","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","1%",""
+"2014-04-01_YB-Dq5",2014-04-01,2014-04-01,"YB","D","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-Dq3",2014-04-01,2014-04-01,"YB","D","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2014-04-01_YB-Dq4",2014-04-01,2014-04-01,"YB","D","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","1%",""
+"2014-04-01_YB-Dq5",2014-04-01,2014-04-01,"YB","D","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-04-01_YB-Eq3",2014-04-01,2014-04-01,"YB","E","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","counts may be low due to patches of water and high algae coverage"
+"2014-04-01_YB-Eq4",2014-04-01,2014-04-01,"YB","E","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%",""
+"2014-04-01_YB-Eq8",2014-04-01,2014-04-01,"YB","E","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to blur/glare patches"
+"2014-04-01_YB-Eq3",2014-04-01,2014-04-01,"YB","E","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","counts may be low due to patches of water and high algae coverage"
+"2014-04-01_YB-Eq4",2014-04-01,2014-04-01,"YB","E","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%",""
+"2014-04-01_YB-Eq8",2014-04-01,2014-04-01,"YB","E","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to blur/glare patches"
+"2014-04-01_YB-Eq3",2014-04-01,2014-04-01,"YB","E","3","Bg","Balanus_glandula","Type 1",1754,0.0875,20045.7142857143,NA,"Stephanie Merhoff","Finished","Full","Full","50%","counts may be low due to patches of water and high algae coverage"
+"2014-04-01_YB-Eq4",2014-04-01,2014-04-01,"YB","E","4","Bg","Balanus_glandula","Type 1",721,0.015625,46144,"c","Stephanie Merhoff","Finished","Full","Cropped","20%",""
+"2014-04-01_YB-Eq8",2014-04-01,2014-04-01,"YB","E","8","Bg","Balanus_glandula","Type 1",731,0.015625,46784,"c","Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to blur/glare patches"
+"2014-04-01_YB-Eq3",2014-04-01,2014-04-01,"YB","E","3","BgD","Balanus_glandula_(dead)","Type 2",13,0.0875,148.571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","50%","counts may be low due to patches of water and high algae coverage"
+"2014-04-01_YB-Eq4",2014-04-01,2014-04-01,"YB","E","4","BgD","Balanus_glandula_(dead)","Type 2",27,0.015625,1728,"c","Stephanie Merhoff","Finished","Full","Cropped","20%",""
+"2014-04-01_YB-Eq8",2014-04-01,2014-04-01,"YB","E","8","BgD","Balanus_glandula_(dead)","Type 2",6,0.015625,384,"c","Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to blur/glare patches"
+"2014-04-01_YB-Eq3",2014-04-01,2014-04-01,"YB","E","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","counts may be low due to patches of water and high algae coverage"
+"2014-04-01_YB-Eq4",2014-04-01,2014-04-01,"YB","E","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%",""
+"2014-04-01_YB-Eq8",2014-04-01,2014-04-01,"YB","E","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to blur/glare patches"
+"2014-04-01_YB-Eq3",2014-04-01,2014-04-01,"YB","E","3","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","counts may be low due to patches of water and high algae coverage"
+"2014-04-01_YB-Eq4",2014-04-01,2014-04-01,"YB","E","4","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","20%",""
+"2014-04-01_YB-Eq8",2014-04-01,2014-04-01,"YB","E","8","Cth","Chthamalus_dalli","Type 3",12,0.015625,768,"c","Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to blur/glare patches"
+"2014-04-01_YB-Eq3",2014-04-01,2014-04-01,"YB","E","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","counts may be low due to patches of water and high algae coverage"
+"2014-04-01_YB-Eq4",2014-04-01,2014-04-01,"YB","E","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","20%",""
+"2014-04-01_YB-Eq8",2014-04-01,2014-04-01,"YB","E","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to blur/glare patches"
+"2014-04-01_YB-Eq3",2014-04-01,2014-04-01,"YB","E","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","counts may be low due to patches of water and high algae coverage"
+"2014-04-01_YB-Eq4",2014-04-01,2014-04-01,"YB","E","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%",""
+"2014-04-01_YB-Eq8",2014-04-01,2014-04-01,"YB","E","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to blur/glare patches"
+"2014-04-01_YB-Eq3",2014-04-01,2014-04-01,"YB","E","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","counts may be low due to patches of water and high algae coverage"
+"2014-04-01_YB-Eq4",2014-04-01,2014-04-01,"YB","E","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%",""
+"2014-04-01_YB-Eq8",2014-04-01,2014-04-01,"YB","E","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to blur/glare patches"
+"2014-04-01_YB-Eq3",2014-04-01,2014-04-01,"YB","E","3","Lim","Limpets","Type 12",26,0.0875,297.142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","50%","counts may be low due to patches of water and high algae coverage"
+"2014-04-01_YB-Eq4",2014-04-01,2014-04-01,"YB","E","4","Lim","Limpets","Type 12",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%",""
+"2014-04-01_YB-Eq8",2014-04-01,2014-04-01,"YB","E","8","Lim","Limpets","Type 12",28,0.0875,320,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to blur/glare patches"
+"2014-04-01_YB-Eq3",2014-04-01,2014-04-01,"YB","E","3","Ls","Littorina_sitkana","Type 13",38,0.0875,434.285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","50%","counts may be low due to patches of water and high algae coverage"
+"2014-04-01_YB-Eq4",2014-04-01,2014-04-01,"YB","E","4","Ls","Littorina_sitkana","Type 13",33,0.0875,377.142857142857,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%",""
+"2014-04-01_YB-Eq8",2014-04-01,2014-04-01,"YB","E","8","Ls","Littorina_sitkana","Type 13",108,0.0875,1234.28571428571,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to blur/glare patches"
+"2014-04-01_YB-Eq3",2014-04-01,2014-04-01,"YB","E","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","counts may be low due to patches of water and high algae coverage"
+"2014-04-01_YB-Eq4",2014-04-01,2014-04-01,"YB","E","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%",""
+"2014-04-01_YB-Eq8",2014-04-01,2014-04-01,"YB","E","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to blur/glare patches"
+"2014-04-01_YB-Eq3",2014-04-01,2014-04-01,"YB","E","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","counts may be low due to patches of water and high algae coverage"
+"2014-04-01_YB-Eq4",2014-04-01,2014-04-01,"YB","E","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%",""
+"2014-04-01_YB-Eq8",2014-04-01,2014-04-01,"YB","E","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to blur/glare patches"
+"2014-04-01_YB-Eq3",2014-04-01,2014-04-01,"YB","E","3","Myt","Mytilus_spp","Type 7",296,0.0875,3382.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","50%","counts may be low due to patches of water and high algae coverage"
+"2014-04-01_YB-Eq4",2014-04-01,2014-04-01,"YB","E","4","Myt","Mytilus_spp","Type 7",388,0.0875,4434.28571428571,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%",""
+"2014-04-01_YB-Eq8",2014-04-01,2014-04-01,"YB","E","8","Myt","Mytilus_spp","Type 7",663,0.0875,7577.14285714286,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to blur/glare patches"
+"2014-04-01_YB-Eq3",2014-04-01,2014-04-01,"YB","E","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","counts may be low due to patches of water and high algae coverage"
+"2014-04-01_YB-Eq4",2014-04-01,2014-04-01,"YB","E","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%",""
+"2014-04-01_YB-Eq8",2014-04-01,2014-04-01,"YB","E","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to blur/glare patches"
+"2014-04-01_YB-Eq3",2014-04-01,2014-04-01,"YB","E","3","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","counts may be low due to patches of water and high algae coverage"
+"2014-04-01_YB-Eq4",2014-04-01,2014-04-01,"YB","E","4","Mt","Mytilus_trossulus","Type 15",38,0.0875,434.285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%",""
+"2014-04-01_YB-Eq8",2014-04-01,2014-04-01,"YB","E","8","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to blur/glare patches"
+"2014-04-01_YB-Eq3",2014-04-01,2014-04-01,"YB","E","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","counts may be low due to patches of water and high algae coverage"
+"2014-04-01_YB-Eq4",2014-04-01,2014-04-01,"YB","E","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%",""
+"2014-04-01_YB-Eq8",2014-04-01,2014-04-01,"YB","E","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to blur/glare patches"
+"2014-04-01_YB-Eq3",2014-04-01,2014-04-01,"YB","E","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","counts may be low due to patches of water and high algae coverage"
+"2014-04-01_YB-Eq4",2014-04-01,2014-04-01,"YB","E","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%",""
+"2014-04-01_YB-Eq8",2014-04-01,2014-04-01,"YB","E","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to blur/glare patches"
+"2014-04-01_YB-Eq3",2014-04-01,2014-04-01,"YB","E","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","counts may be low due to patches of water and high algae coverage"
+"2014-04-01_YB-Eq4",2014-04-01,2014-04-01,"YB","E","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%",""
+"2014-04-01_YB-Eq8",2014-04-01,2014-04-01,"YB","E","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to blur/glare patches"
+"2014-04-01_YB-Eq3",2014-04-01,2014-04-01,"YB","E","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","counts may be low due to patches of water and high algae coverage"
+"2014-04-01_YB-Eq4",2014-04-01,2014-04-01,"YB","E","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%",""
+"2014-04-01_YB-Eq8",2014-04-01,2014-04-01,"YB","E","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to blur/glare patches"
+"2014-04-01_YB-Eq3",2014-04-01,2014-04-01,"YB","E","3","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","counts may be low due to patches of water and high algae coverage"
+"2014-04-01_YB-Eq4",2014-04-01,2014-04-01,"YB","E","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%",""
+"2014-04-01_YB-Eq8",2014-04-01,2014-04-01,"YB","E","8","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to blur/glare patches"
+"2014-04-01_YB-Eq3",2014-04-01,2014-04-01,"YB","E","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","counts may be low due to patches of water and high algae coverage"
+"2014-04-01_YB-Eq4",2014-04-01,2014-04-01,"YB","E","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%",""
+"2014-04-01_YB-Eq8",2014-04-01,2014-04-01,"YB","E","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to blur/glare patches"
+"2014-04-01_YB-Eq3",2014-04-01,2014-04-01,"YB","E","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","counts may be low due to patches of water and high algae coverage"
+"2014-04-01_YB-Eq4",2014-04-01,2014-04-01,"YB","E","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%",""
+"2014-04-01_YB-Eq8",2014-04-01,2014-04-01,"YB","E","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to blur/glare patches"
+"2014-04-01_YB-Eq3",2014-04-01,2014-04-01,"YB","E","3","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","counts may be low due to patches of water and high algae coverage"
+"2014-04-01_YB-Eq4",2014-04-01,2014-04-01,"YB","E","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%",""
+"2014-04-01_YB-Eq8",2014-04-01,2014-04-01,"YB","E","8","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to blur/glare patches"
+"2014-04-01_YB-Eq3",2014-04-01,2014-04-01,"YB","E","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","counts may be low due to patches of water and high algae coverage"
+"2014-04-01_YB-Eq4",2014-04-01,2014-04-01,"YB","E","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%",""
+"2014-04-01_YB-Eq8",2014-04-01,2014-04-01,"YB","E","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to blur/glare patches"
+"2014-04-01_YB-Eq3",2014-04-01,2014-04-01,"YB","E","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","counts may be low due to patches of water and high algae coverage"
+"2014-04-01_YB-Eq4",2014-04-01,2014-04-01,"YB","E","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%",""
+"2014-04-01_YB-Eq8",2014-04-01,2014-04-01,"YB","E","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to blur/glare patches"
+"2014-04-01_YB-Eq3",2014-04-01,2014-04-01,"YB","E","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","counts may be low due to patches of water and high algae coverage"
+"2014-04-01_YB-Eq4",2014-04-01,2014-04-01,"YB","E","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%",""
+"2014-04-01_YB-Eq8",2014-04-01,2014-04-01,"YB","E","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to blur/glare patches"
+"2014-04-01_YB-Fq4",2014-04-01,2014-04-01,"YB","F","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-Fq5",2014-04-01,2014-04-01,"YB","F","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Fq6",2014-04-01,2014-04-01,"YB","F","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Fq4",2014-04-01,2014-04-01,"YB","F","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-Fq5",2014-04-01,2014-04-01,"YB","F","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Fq6",2014-04-01,2014-04-01,"YB","F","6","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Fq4",2014-04-01,2014-04-01,"YB","F","4","Bg","Balanus_glandula","Type 1",727,0.015625,46528,"c","Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-Fq5",2014-04-01,2014-04-01,"YB","F","5","Bg","Balanus_glandula","Type 1",495,0.015625,31680,"c","Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Fq6",2014-04-01,2014-04-01,"YB","F","6","Bg","Balanus_glandula","Type 1",866,0.015625,55424,"c","Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Fq4",2014-04-01,2014-04-01,"YB","F","4","BgD","Balanus_glandula_(dead)","Type 2",15,0.015625,960,"c","Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-Fq5",2014-04-01,2014-04-01,"YB","F","5","BgD","Balanus_glandula_(dead)","Type 2",11,0.015625,704,"c","Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Fq6",2014-04-01,2014-04-01,"YB","F","6","BgD","Balanus_glandula_(dead)","Type 2",80,0.015625,5120,"c","Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Fq4",2014-04-01,2014-04-01,"YB","F","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-Fq5",2014-04-01,2014-04-01,"YB","F","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Fq6",2014-04-01,2014-04-01,"YB","F","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Fq4",2014-04-01,2014-04-01,"YB","F","4","Cth","Chthamalus_dalli","Type 3",33,0.015625,2112,"c","Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-Fq5",2014-04-01,2014-04-01,"YB","F","5","Cth","Chthamalus_dalli","Type 3",2,0.015625,128,"c","Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Fq6",2014-04-01,2014-04-01,"YB","F","6","Cth","Chthamalus_dalli","Type 3",25,0.015625,1600,"c","Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Fq4",2014-04-01,2014-04-01,"YB","F","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-Fq5",2014-04-01,2014-04-01,"YB","F","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Fq6",2014-04-01,2014-04-01,"YB","F","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Fq4",2014-04-01,2014-04-01,"YB","F","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-Fq5",2014-04-01,2014-04-01,"YB","F","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Fq6",2014-04-01,2014-04-01,"YB","F","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Fq4",2014-04-01,2014-04-01,"YB","F","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-Fq5",2014-04-01,2014-04-01,"YB","F","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Fq6",2014-04-01,2014-04-01,"YB","F","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Fq4",2014-04-01,2014-04-01,"YB","F","4","Lim","Limpets","Type 12",548,0.0875,6262.85714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-Fq5",2014-04-01,2014-04-01,"YB","F","5","Lim","Limpets","Type 12",409,0.0875,4674.28571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Fq6",2014-04-01,2014-04-01,"YB","F","6","Lim","Limpets","Type 12",588,0.0875,6720,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Fq4",2014-04-01,2014-04-01,"YB","F","4","Ls","Littorina_sitkana","Type 13",255,0.0875,2914.28571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-Fq5",2014-04-01,2014-04-01,"YB","F","5","Ls","Littorina_sitkana","Type 13",191,0.0875,2182.85714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Fq6",2014-04-01,2014-04-01,"YB","F","6","Ls","Littorina_sitkana","Type 13",197,0.0875,2251.42857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Fq4",2014-04-01,2014-04-01,"YB","F","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-Fq5",2014-04-01,2014-04-01,"YB","F","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Fq6",2014-04-01,2014-04-01,"YB","F","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Fq4",2014-04-01,2014-04-01,"YB","F","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-Fq5",2014-04-01,2014-04-01,"YB","F","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Fq6",2014-04-01,2014-04-01,"YB","F","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Fq4",2014-04-01,2014-04-01,"YB","F","4","Myt","Mytilus_spp","Type 7",408,0.0875,4662.85714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-Fq5",2014-04-01,2014-04-01,"YB","F","5","Myt","Mytilus_spp","Type 7",316,0.0875,3611.42857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Fq6",2014-04-01,2014-04-01,"YB","F","6","Myt","Mytilus_spp","Type 7",369,0.0875,4217.14285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Fq4",2014-04-01,2014-04-01,"YB","F","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-Fq5",2014-04-01,2014-04-01,"YB","F","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Fq6",2014-04-01,2014-04-01,"YB","F","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Fq4",2014-04-01,2014-04-01,"YB","F","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-Fq5",2014-04-01,2014-04-01,"YB","F","5","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Fq6",2014-04-01,2014-04-01,"YB","F","6","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Fq4",2014-04-01,2014-04-01,"YB","F","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-Fq5",2014-04-01,2014-04-01,"YB","F","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Fq6",2014-04-01,2014-04-01,"YB","F","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Fq4",2014-04-01,2014-04-01,"YB","F","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-Fq5",2014-04-01,2014-04-01,"YB","F","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Fq6",2014-04-01,2014-04-01,"YB","F","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Fq4",2014-04-01,2014-04-01,"YB","F","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-Fq5",2014-04-01,2014-04-01,"YB","F","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Fq6",2014-04-01,2014-04-01,"YB","F","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Fq4",2014-04-01,2014-04-01,"YB","F","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-Fq5",2014-04-01,2014-04-01,"YB","F","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Fq6",2014-04-01,2014-04-01,"YB","F","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Fq4",2014-04-01,2014-04-01,"YB","F","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-Fq5",2014-04-01,2014-04-01,"YB","F","5","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Fq6",2014-04-01,2014-04-01,"YB","F","6","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Fq4",2014-04-01,2014-04-01,"YB","F","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-Fq5",2014-04-01,2014-04-01,"YB","F","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Fq6",2014-04-01,2014-04-01,"YB","F","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Fq4",2014-04-01,2014-04-01,"YB","F","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-Fq5",2014-04-01,2014-04-01,"YB","F","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Fq6",2014-04-01,2014-04-01,"YB","F","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Fq4",2014-04-01,2014-04-01,"YB","F","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-Fq5",2014-04-01,2014-04-01,"YB","F","5","Pp","Pollicipes_polymerus","Type 11",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Fq6",2014-04-01,2014-04-01,"YB","F","6","Pp","Pollicipes_polymerus","Type 11",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Fq4",2014-04-01,2014-04-01,"YB","F","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-Fq5",2014-04-01,2014-04-01,"YB","F","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Fq6",2014-04-01,2014-04-01,"YB","F","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Fq4",2014-04-01,2014-04-01,"YB","F","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-Fq5",2014-04-01,2014-04-01,"YB","F","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Fq6",2014-04-01,2014-04-01,"YB","F","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Fq4",2014-04-01,2014-04-01,"YB","F","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-01_YB-Fq5",2014-04-01,2014-04-01,"YB","F","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Fq6",2014-04-01,2014-04-01,"YB","F","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-01_YB-Gq3",2014-04-01,2014-04-01,"YB","G","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to water patches and algae film"
+"2014-04-01_YB-Gq5",2014-04-01,2014-04-01,"YB","G","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to glare, water cover, & byssal threads. ~40% underwater"
+"2014-04-01_YB-Gq8",2014-04-01,2014-04-01,"YB","G","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts may be low due to water patches"
+"2014-04-01_YB-Gq3",2014-04-01,2014-04-01,"YB","G","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to water patches and algae film"
+"2014-04-01_YB-Gq5",2014-04-01,2014-04-01,"YB","G","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to glare, water cover, & byssal threads. ~40% underwater"
+"2014-04-01_YB-Gq8",2014-04-01,2014-04-01,"YB","G","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts may be low due to water patches"
+"2014-04-01_YB-Gq3",2014-04-01,2014-04-01,"YB","G","3","Bg","Balanus_glandula","Type 1",303,0.0875,3462.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to water patches and algae film"
+"2014-04-01_YB-Gq5",2014-04-01,2014-04-01,"YB","G","5","Bg","Balanus_glandula","Type 1",1263,0.0875,14434.2857142857,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to glare, water cover, & byssal threads. ~40% underwater"
+"2014-04-01_YB-Gq8",2014-04-01,2014-04-01,"YB","G","8","Bg","Balanus_glandula","Type 1",1071,0.0875,12240,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts may be low due to water patches"
+"2014-04-01_YB-Gq3",2014-04-01,2014-04-01,"YB","G","3","BgD","Balanus_glandula_(dead)","Type 2",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to water patches and algae film"
+"2014-04-01_YB-Gq5",2014-04-01,2014-04-01,"YB","G","5","BgD","Balanus_glandula_(dead)","Type 2",34,0.0875,388.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to glare, water cover, & byssal threads. ~40% underwater"
+"2014-04-01_YB-Gq8",2014-04-01,2014-04-01,"YB","G","8","BgD","Balanus_glandula_(dead)","Type 2",27,0.0875,308.571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts may be low due to water patches"
+"2014-04-01_YB-Gq3",2014-04-01,2014-04-01,"YB","G","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to water patches and algae film"
+"2014-04-01_YB-Gq5",2014-04-01,2014-04-01,"YB","G","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to glare, water cover, & byssal threads. ~40% underwater"
+"2014-04-01_YB-Gq8",2014-04-01,2014-04-01,"YB","G","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts may be low due to water patches"
+"2014-04-01_YB-Gq3",2014-04-01,2014-04-01,"YB","G","3","Cth","Chthamalus_dalli","Type 3",579,0.0875,6617.14285714286,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to water patches and algae film"
+"2014-04-01_YB-Gq5",2014-04-01,2014-04-01,"YB","G","5","Cth","Chthamalus_dalli","Type 3",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to glare, water cover, & byssal threads. ~40% underwater"
+"2014-04-01_YB-Gq8",2014-04-01,2014-04-01,"YB","G","8","Cth","Chthamalus_dalli","Type 3",286,0.0875,3268.57142857143,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts may be low due to water patches"
+"2014-04-01_YB-Gq3",2014-04-01,2014-04-01,"YB","G","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to water patches and algae film"
+"2014-04-01_YB-Gq5",2014-04-01,2014-04-01,"YB","G","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to glare, water cover, & byssal threads. ~40% underwater"
+"2014-04-01_YB-Gq8",2014-04-01,2014-04-01,"YB","G","8","CthD","Chthamalus_dalli (dead)","Type 4",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts may be low due to water patches"
+"2014-04-01_YB-Gq3",2014-04-01,2014-04-01,"YB","G","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to water patches and algae film"
+"2014-04-01_YB-Gq5",2014-04-01,2014-04-01,"YB","G","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to glare, water cover, & byssal threads. ~40% underwater"
+"2014-04-01_YB-Gq8",2014-04-01,2014-04-01,"YB","G","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts may be low due to water patches"
+"2014-04-01_YB-Gq3",2014-04-01,2014-04-01,"YB","G","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to water patches and algae film"
+"2014-04-01_YB-Gq5",2014-04-01,2014-04-01,"YB","G","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to glare, water cover, & byssal threads. ~40% underwater"
+"2014-04-01_YB-Gq8",2014-04-01,2014-04-01,"YB","G","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts may be low due to water patches"
+"2014-04-01_YB-Gq3",2014-04-01,2014-04-01,"YB","G","3","Lim","Limpets","Type 12",15,0.0875,171.428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to water patches and algae film"
+"2014-04-01_YB-Gq5",2014-04-01,2014-04-01,"YB","G","5","Lim","Limpets","Type 12",137,0.0875,1565.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to glare, water cover, & byssal threads. ~40% underwater"
+"2014-04-01_YB-Gq8",2014-04-01,2014-04-01,"YB","G","8","Lim","Limpets","Type 12",9,0.0875,102.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts may be low due to water patches"
+"2014-04-01_YB-Gq3",2014-04-01,2014-04-01,"YB","G","3","Ls","Littorina_sitkana","Type 13",85,0.0875,971.428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to water patches and algae film"
+"2014-04-01_YB-Gq5",2014-04-01,2014-04-01,"YB","G","5","Ls","Littorina_sitkana","Type 13",50,0.0875,571.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to glare, water cover, & byssal threads. ~40% underwater"
+"2014-04-01_YB-Gq8",2014-04-01,2014-04-01,"YB","G","8","Ls","Littorina_sitkana","Type 13",52,0.0875,594.285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts may be low due to water patches"
+"2014-04-01_YB-Gq3",2014-04-01,2014-04-01,"YB","G","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to water patches and algae film"
+"2014-04-01_YB-Gq5",2014-04-01,2014-04-01,"YB","G","5","Mc","Mytilus_californianus","Type 17",63,0.0875,720,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to glare, water cover, & byssal threads. ~40% underwater"
+"2014-04-01_YB-Gq8",2014-04-01,2014-04-01,"YB","G","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts may be low due to water patches"
+"2014-04-01_YB-Gq3",2014-04-01,2014-04-01,"YB","G","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to water patches and algae film"
+"2014-04-01_YB-Gq5",2014-04-01,2014-04-01,"YB","G","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to glare, water cover, & byssal threads. ~40% underwater"
+"2014-04-01_YB-Gq8",2014-04-01,2014-04-01,"YB","G","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts may be low due to water patches"
+"2014-04-01_YB-Gq3",2014-04-01,2014-04-01,"YB","G","3","Myt","Mytilus_spp","Type 7",687,0.0875,7851.42857142857,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to water patches and algae film"
+"2014-04-01_YB-Gq5",2014-04-01,2014-04-01,"YB","G","5","Myt","Mytilus_spp","Type 7",265,0.0875,3028.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to glare, water cover, & byssal threads. ~40% underwater"
+"2014-04-01_YB-Gq8",2014-04-01,2014-04-01,"YB","G","8","Myt","Mytilus_spp","Type 7",767,0.0875,8765.71428571429,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts may be low due to water patches"
+"2014-04-01_YB-Gq3",2014-04-01,2014-04-01,"YB","G","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to water patches and algae film"
+"2014-04-01_YB-Gq5",2014-04-01,2014-04-01,"YB","G","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to glare, water cover, & byssal threads. ~40% underwater"
+"2014-04-01_YB-Gq8",2014-04-01,2014-04-01,"YB","G","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts may be low due to water patches"
+"2014-04-01_YB-Gq3",2014-04-01,2014-04-01,"YB","G","3","Mt","Mytilus_trossulus","Type 15",56,0.0875,640,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to water patches and algae film"
+"2014-04-01_YB-Gq5",2014-04-01,2014-04-01,"YB","G","5","Mt","Mytilus_trossulus","Type 15",633,0.0875,7234.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to glare, water cover, & byssal threads. ~40% underwater"
+"2014-04-01_YB-Gq8",2014-04-01,2014-04-01,"YB","G","8","Mt","Mytilus_trossulus","Type 15",113,0.0875,1291.42857142857,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts may be low due to water patches"
+"2014-04-01_YB-Gq3",2014-04-01,2014-04-01,"YB","G","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to water patches and algae film"
+"2014-04-01_YB-Gq5",2014-04-01,2014-04-01,"YB","G","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to glare, water cover, & byssal threads. ~40% underwater"
+"2014-04-01_YB-Gq8",2014-04-01,2014-04-01,"YB","G","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts may be low due to water patches"
+"2014-04-01_YB-Gq3",2014-04-01,2014-04-01,"YB","G","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to water patches and algae film"
+"2014-04-01_YB-Gq5",2014-04-01,2014-04-01,"YB","G","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to glare, water cover, & byssal threads. ~40% underwater"
+"2014-04-01_YB-Gq8",2014-04-01,2014-04-01,"YB","G","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts may be low due to water patches"
+"2014-04-01_YB-Gq3",2014-04-01,2014-04-01,"YB","G","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to water patches and algae film"
+"2014-04-01_YB-Gq5",2014-04-01,2014-04-01,"YB","G","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to glare, water cover, & byssal threads. ~40% underwater"
+"2014-04-01_YB-Gq8",2014-04-01,2014-04-01,"YB","G","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts may be low due to water patches"
+"2014-04-01_YB-Gq3",2014-04-01,2014-04-01,"YB","G","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to water patches and algae film"
+"2014-04-01_YB-Gq5",2014-04-01,2014-04-01,"YB","G","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to glare, water cover, & byssal threads. ~40% underwater"
+"2014-04-01_YB-Gq8",2014-04-01,2014-04-01,"YB","G","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts may be low due to water patches"
+"2014-04-01_YB-Gq3",2014-04-01,2014-04-01,"YB","G","3","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to water patches and algae film"
+"2014-04-01_YB-Gq5",2014-04-01,2014-04-01,"YB","G","5","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to glare, water cover, & byssal threads. ~40% underwater"
+"2014-04-01_YB-Gq8",2014-04-01,2014-04-01,"YB","G","8","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts may be low due to water patches"
+"2014-04-01_YB-Gq3",2014-04-01,2014-04-01,"YB","G","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to water patches and algae film"
+"2014-04-01_YB-Gq5",2014-04-01,2014-04-01,"YB","G","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to glare, water cover, & byssal threads. ~40% underwater"
+"2014-04-01_YB-Gq8",2014-04-01,2014-04-01,"YB","G","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts may be low due to water patches"
+"2014-04-01_YB-Gq3",2014-04-01,2014-04-01,"YB","G","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to water patches and algae film"
+"2014-04-01_YB-Gq5",2014-04-01,2014-04-01,"YB","G","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to glare, water cover, & byssal threads. ~40% underwater"
+"2014-04-01_YB-Gq8",2014-04-01,2014-04-01,"YB","G","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts may be low due to water patches"
+"2014-04-01_YB-Gq3",2014-04-01,2014-04-01,"YB","G","3","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to water patches and algae film"
+"2014-04-01_YB-Gq5",2014-04-01,2014-04-01,"YB","G","5","Pp","Pollicipes_polymerus","Type 11",28,0.0875,320,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to glare, water cover, & byssal threads. ~40% underwater"
+"2014-04-01_YB-Gq8",2014-04-01,2014-04-01,"YB","G","8","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts may be low due to water patches"
+"2014-04-01_YB-Gq3",2014-04-01,2014-04-01,"YB","G","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to water patches and algae film"
+"2014-04-01_YB-Gq5",2014-04-01,2014-04-01,"YB","G","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to glare, water cover, & byssal threads. ~40% underwater"
+"2014-04-01_YB-Gq8",2014-04-01,2014-04-01,"YB","G","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts may be low due to water patches"
+"2014-04-01_YB-Gq3",2014-04-01,2014-04-01,"YB","G","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to water patches and algae film"
+"2014-04-01_YB-Gq5",2014-04-01,2014-04-01,"YB","G","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to glare, water cover, & byssal threads. ~40% underwater"
+"2014-04-01_YB-Gq8",2014-04-01,2014-04-01,"YB","G","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts may be low due to water patches"
+"2014-04-01_YB-Gq3",2014-04-01,2014-04-01,"YB","G","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to water patches and algae film"
+"2014-04-01_YB-Gq5",2014-04-01,2014-04-01,"YB","G","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to glare, water cover, & byssal threads. ~40% underwater"
+"2014-04-01_YB-Gq8",2014-04-01,2014-04-01,"YB","G","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts may be low due to water patches"
+"2014-04-29_YB-Aq6",2014-04-29,2014-04-29,"YB","A","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-04-29_YB-Aq7",2014-04-29,2014-04-29,"YB","A","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-04-29_YB-Aq9",2014-04-29,2014-04-29,"YB","A","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","0%",""
+"2014-04-29_YB-Aq6",2014-04-29,2014-04-29,"YB","A","6","Ae","Anemones","Type 14",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-04-29_YB-Aq7",2014-04-29,2014-04-29,"YB","A","7","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-04-29_YB-Aq9",2014-04-29,2014-04-29,"YB","A","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","0%",""
+"2014-04-29_YB-Aq6",2014-04-29,2014-04-29,"YB","A","6","Bg","Balanus_glandula","Type 1",1664,0.0875,19017.1428571429,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-04-29_YB-Aq7",2014-04-29,2014-04-29,"YB","A","7","Bg","Balanus_glandula","Type 1",438,0.015625,28032,"c","Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-04-29_YB-Aq9",2014-04-29,2014-04-29,"YB","A","9","Bg","Balanus_glandula","Type 1",1448,0.0875,16548.5714285714,NA,"Beatriz Vaca","Finished","Cropped","Full","0%",""
+"2014-04-29_YB-Aq6",2014-04-29,2014-04-29,"YB","A","6","BgD","Balanus_glandula_(dead)","Type 2",38,0.0875,434.285714285714,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-04-29_YB-Aq7",2014-04-29,2014-04-29,"YB","A","7","BgD","Balanus_glandula_(dead)","Type 2",11,0.015625,704,"c","Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-04-29_YB-Aq9",2014-04-29,2014-04-29,"YB","A","9","BgD","Balanus_glandula_(dead)","Type 2",14,0.0875,160,NA,"Beatriz Vaca","Finished","Cropped","Full","0%",""
+"2014-04-29_YB-Aq6",2014-04-29,2014-04-29,"YB","A","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-04-29_YB-Aq7",2014-04-29,2014-04-29,"YB","A","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-04-29_YB-Aq9",2014-04-29,2014-04-29,"YB","A","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","0%",""
+"2014-04-29_YB-Aq6",2014-04-29,2014-04-29,"YB","A","6","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-04-29_YB-Aq7",2014-04-29,2014-04-29,"YB","A","7","Cth","Chthamalus_dalli","Type 3",1,0.015625,64,"c","Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-04-29_YB-Aq9",2014-04-29,2014-04-29,"YB","A","9","Cth","Chthamalus_dalli","Type 3",12,0.0875,137.142857142857,NA,"Beatriz Vaca","Finished","Cropped","Full","0%",""
+"2014-04-29_YB-Aq6",2014-04-29,2014-04-29,"YB","A","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-04-29_YB-Aq7",2014-04-29,2014-04-29,"YB","A","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-04-29_YB-Aq9",2014-04-29,2014-04-29,"YB","A","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","0%",""
+"2014-04-29_YB-Aq6",2014-04-29,2014-04-29,"YB","A","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-04-29_YB-Aq7",2014-04-29,2014-04-29,"YB","A","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-04-29_YB-Aq9",2014-04-29,2014-04-29,"YB","A","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","0%",""
+"2014-04-29_YB-Aq6",2014-04-29,2014-04-29,"YB","A","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-04-29_YB-Aq7",2014-04-29,2014-04-29,"YB","A","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-04-29_YB-Aq9",2014-04-29,2014-04-29,"YB","A","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","0%",""
+"2014-04-29_YB-Aq6",2014-04-29,2014-04-29,"YB","A","6","Lim","Limpets","Type 12",8,0.0875,91.4285714285714,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-04-29_YB-Aq7",2014-04-29,2014-04-29,"YB","A","7","Lim","Limpets","Type 12",181,0.0875,2068.57142857143,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-04-29_YB-Aq9",2014-04-29,2014-04-29,"YB","A","9","Lim","Limpets","Type 12",256,0.0875,2925.71428571429,NA,"Beatriz Vaca","Finished","Cropped","Full","0%",""
+"2014-04-29_YB-Aq6",2014-04-29,2014-04-29,"YB","A","6","Ls","Littorina_sitkana","Type 13",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-04-29_YB-Aq7",2014-04-29,2014-04-29,"YB","A","7","Ls","Littorina_sitkana","Type 13",145,0.0875,1657.14285714286,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-04-29_YB-Aq9",2014-04-29,2014-04-29,"YB","A","9","Ls","Littorina_sitkana","Type 13",129,0.0875,1474.28571428571,NA,"Beatriz Vaca","Finished","Cropped","Full","0%",""
+"2014-04-29_YB-Aq6",2014-04-29,2014-04-29,"YB","A","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-04-29_YB-Aq7",2014-04-29,2014-04-29,"YB","A","7","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-04-29_YB-Aq9",2014-04-29,2014-04-29,"YB","A","9","Mc","Mytilus_californianus","Type 17",1,0.015625,64,"c","Beatriz Vaca","Finished","Cropped","Full","0%",""
+"2014-04-29_YB-Aq6",2014-04-29,2014-04-29,"YB","A","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-04-29_YB-Aq7",2014-04-29,2014-04-29,"YB","A","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-04-29_YB-Aq9",2014-04-29,2014-04-29,"YB","A","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","0%",""
+"2014-04-29_YB-Aq6",2014-04-29,2014-04-29,"YB","A","6","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-04-29_YB-Aq7",2014-04-29,2014-04-29,"YB","A","7","Myt","Mytilus_spp","Type 7",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-04-29_YB-Aq9",2014-04-29,2014-04-29,"YB","A","9","Myt","Mytilus_spp","Type 7",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","0%",""
+"2014-04-29_YB-Aq6",2014-04-29,2014-04-29,"YB","A","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-04-29_YB-Aq7",2014-04-29,2014-04-29,"YB","A","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-04-29_YB-Aq9",2014-04-29,2014-04-29,"YB","A","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","0%",""
+"2014-04-29_YB-Aq6",2014-04-29,2014-04-29,"YB","A","6","Mt","Mytilus_trossulus","Type 15",899,0.0875,10274.2857142857,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-04-29_YB-Aq7",2014-04-29,2014-04-29,"YB","A","7","Mt","Mytilus_trossulus","Type 15",235,0.015625,15040,"c","Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-04-29_YB-Aq9",2014-04-29,2014-04-29,"YB","A","9","Mt","Mytilus_trossulus","Type 15",260,0.015625,16640,"c","Beatriz Vaca","Finished","Cropped","Full","0%",""
+"2014-04-29_YB-Aq6",2014-04-29,2014-04-29,"YB","A","6","MtD","Mytilus_trossulus_(dead)","Type 16",1,0.0875,11.4285714285714,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-04-29_YB-Aq7",2014-04-29,2014-04-29,"YB","A","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-04-29_YB-Aq9",2014-04-29,2014-04-29,"YB","A","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","0%",""
+"2014-04-29_YB-Aq6",2014-04-29,2014-04-29,"YB","A","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-04-29_YB-Aq7",2014-04-29,2014-04-29,"YB","A","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-04-29_YB-Aq9",2014-04-29,2014-04-29,"YB","A","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","0%",""
+"2014-04-29_YB-Aq6",2014-04-29,2014-04-29,"YB","A","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-04-29_YB-Aq7",2014-04-29,2014-04-29,"YB","A","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-04-29_YB-Aq9",2014-04-29,2014-04-29,"YB","A","9","Nc","Nucella_canaliculata","Type 10",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Cropped","Full","0%",""
+"2014-04-29_YB-Aq6",2014-04-29,2014-04-29,"YB","A","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-04-29_YB-Aq7",2014-04-29,2014-04-29,"YB","A","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-04-29_YB-Aq9",2014-04-29,2014-04-29,"YB","A","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","0%",""
+"2014-04-29_YB-Aq6",2014-04-29,2014-04-29,"YB","A","6","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-04-29_YB-Aq7",2014-04-29,2014-04-29,"YB","A","7","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-04-29_YB-Aq9",2014-04-29,2014-04-29,"YB","A","9","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","0%",""
+"2014-04-29_YB-Aq6",2014-04-29,2014-04-29,"YB","A","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-04-29_YB-Aq7",2014-04-29,2014-04-29,"YB","A","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-04-29_YB-Aq9",2014-04-29,2014-04-29,"YB","A","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","0%",""
+"2014-04-29_YB-Aq6",2014-04-29,2014-04-29,"YB","A","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-04-29_YB-Aq7",2014-04-29,2014-04-29,"YB","A","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-04-29_YB-Aq9",2014-04-29,2014-04-29,"YB","A","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","0%",""
+"2014-04-29_YB-Aq6",2014-04-29,2014-04-29,"YB","A","6","Pp","Pollicipes_polymerus","Type 11",6,0.0875,68.5714285714286,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-04-29_YB-Aq7",2014-04-29,2014-04-29,"YB","A","7","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-04-29_YB-Aq9",2014-04-29,2014-04-29,"YB","A","9","Pp","Pollicipes_polymerus","Type 11",9,0.0875,102.857142857143,NA,"Beatriz Vaca","Finished","Cropped","Full","0%",""
+"2014-04-29_YB-Aq6",2014-04-29,2014-04-29,"YB","A","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-04-29_YB-Aq7",2014-04-29,2014-04-29,"YB","A","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-04-29_YB-Aq9",2014-04-29,2014-04-29,"YB","A","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","0%",""
+"2014-04-29_YB-Aq6",2014-04-29,2014-04-29,"YB","A","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-04-29_YB-Aq7",2014-04-29,2014-04-29,"YB","A","7","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-04-29_YB-Aq9",2014-04-29,2014-04-29,"YB","A","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","0%",""
+"2014-04-29_YB-Aq6",2014-04-29,2014-04-29,"YB","A","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-04-29_YB-Aq7",2014-04-29,2014-04-29,"YB","A","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-04-29_YB-Aq9",2014-04-29,2014-04-29,"YB","A","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","0%",""
+"2014-04-29_YB-ABq1",2014-04-29,2014-04-29,"YB","AB","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","4%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-04-29_YB-ABq2",2014-04-29,2014-04-29,"YB","AB","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","15%",""
+"2014-04-29_YB-ABq4",2014-04-29,2014-04-29,"YB","AB","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-04-29_YB-ABq6",2014-04-29,2014-04-29,"YB","AB","6","Alg","Algae","Type 19",4,0.0875,45.7142857142857,NA,"Stephanie Merhoff","Finished","Full","Cropped","7%",""
+"2014-04-29_YB-ABq1",2014-04-29,2014-04-29,"YB","AB","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","4%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-04-29_YB-ABq2",2014-04-29,2014-04-29,"YB","AB","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","15%",""
+"2014-04-29_YB-ABq4",2014-04-29,2014-04-29,"YB","AB","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-04-29_YB-ABq6",2014-04-29,2014-04-29,"YB","AB","6","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","7%",""
+"2014-04-29_YB-ABq1",2014-04-29,2014-04-29,"YB","AB","1","Bg","Balanus_glandula","Type 1",674,0.0875,7702.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","4%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-04-29_YB-ABq2",2014-04-29,2014-04-29,"YB","AB","2","Bg","Balanus_glandula","Type 1",416,0.015625,26624,"c","Beatriz Vaca","Finished","Cropped","Cropped","15%",""
+"2014-04-29_YB-ABq4",2014-04-29,2014-04-29,"YB","AB","4","Bg","Balanus_glandula","Type 1",1401,0.0875,16011.4285714286,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-04-29_YB-ABq6",2014-04-29,2014-04-29,"YB","AB","6","Bg","Balanus_glandula","Type 1",76,0.015625,4864,"c","Stephanie Merhoff","Finished","Full","Cropped","7%",""
+"2014-04-29_YB-ABq1",2014-04-29,2014-04-29,"YB","AB","1","BgD","Balanus_glandula_(dead)","Type 2",21,0.0875,240,NA,"Beatriz Vaca","Finished","Full","Full","4%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-04-29_YB-ABq2",2014-04-29,2014-04-29,"YB","AB","2","BgD","Balanus_glandula_(dead)","Type 2",7,0.015625,448,"c","Beatriz Vaca","Finished","Cropped","Cropped","15%",""
+"2014-04-29_YB-ABq4",2014-04-29,2014-04-29,"YB","AB","4","BgD","Balanus_glandula_(dead)","Type 2",9,0.0875,102.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-04-29_YB-ABq6",2014-04-29,2014-04-29,"YB","AB","6","BgD","Balanus_glandula_(dead)","Type 2",12,0.015625,768,"c","Stephanie Merhoff","Finished","Full","Cropped","7%",""
+"2014-04-29_YB-ABq1",2014-04-29,2014-04-29,"YB","AB","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","4%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-04-29_YB-ABq2",2014-04-29,2014-04-29,"YB","AB","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","15%",""
+"2014-04-29_YB-ABq4",2014-04-29,2014-04-29,"YB","AB","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-04-29_YB-ABq6",2014-04-29,2014-04-29,"YB","AB","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","7%",""
+"2014-04-29_YB-ABq1",2014-04-29,2014-04-29,"YB","AB","1","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","4%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-04-29_YB-ABq2",2014-04-29,2014-04-29,"YB","AB","2","Cth","Chthamalus_dalli","Type 3",4,0.015625,256,"c","Beatriz Vaca","Finished","Cropped","Cropped","15%",""
+"2014-04-29_YB-ABq4",2014-04-29,2014-04-29,"YB","AB","4","Cth","Chthamalus_dalli","Type 3",21,0.0875,240,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-04-29_YB-ABq6",2014-04-29,2014-04-29,"YB","AB","6","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","7%",""
+"2014-04-29_YB-ABq1",2014-04-29,2014-04-29,"YB","AB","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","4%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-04-29_YB-ABq2",2014-04-29,2014-04-29,"YB","AB","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","15%",""
+"2014-04-29_YB-ABq4",2014-04-29,2014-04-29,"YB","AB","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-04-29_YB-ABq6",2014-04-29,2014-04-29,"YB","AB","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","7%",""
+"2014-04-29_YB-ABq1",2014-04-29,2014-04-29,"YB","AB","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","4%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-04-29_YB-ABq2",2014-04-29,2014-04-29,"YB","AB","2","Emp","Emplectonema worm","Type 23",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","15%",""
+"2014-04-29_YB-ABq4",2014-04-29,2014-04-29,"YB","AB","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-04-29_YB-ABq6",2014-04-29,2014-04-29,"YB","AB","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","7%",""
+"2014-04-29_YB-ABq1",2014-04-29,2014-04-29,"YB","AB","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","4%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-04-29_YB-ABq2",2014-04-29,2014-04-29,"YB","AB","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","15%",""
+"2014-04-29_YB-ABq4",2014-04-29,2014-04-29,"YB","AB","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-04-29_YB-ABq6",2014-04-29,2014-04-29,"YB","AB","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","7%",""
+"2014-04-29_YB-ABq1",2014-04-29,2014-04-29,"YB","AB","1","Lim","Limpets","Type 12",44,0.0875,502.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","4%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-04-29_YB-ABq2",2014-04-29,2014-04-29,"YB","AB","2","Lim","Limpets","Type 12",122,0.0875,1394.28571428571,NA,"Beatriz Vaca","Finished","Cropped","Cropped","15%",""
+"2014-04-29_YB-ABq4",2014-04-29,2014-04-29,"YB","AB","4","Lim","Limpets","Type 12",232,0.0875,2651.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-04-29_YB-ABq6",2014-04-29,2014-04-29,"YB","AB","6","Lim","Limpets","Type 12",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","7%",""
+"2014-04-29_YB-ABq1",2014-04-29,2014-04-29,"YB","AB","1","Ls","Littorina_sitkana","Type 13",23,0.0875,262.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","4%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-04-29_YB-ABq2",2014-04-29,2014-04-29,"YB","AB","2","Ls","Littorina_sitkana","Type 13",50,0.0875,571.428571428571,NA,"Beatriz Vaca","Finished","Cropped","Cropped","15%",""
+"2014-04-29_YB-ABq4",2014-04-29,2014-04-29,"YB","AB","4","Ls","Littorina_sitkana","Type 13",68,0.0875,777.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-04-29_YB-ABq6",2014-04-29,2014-04-29,"YB","AB","6","Ls","Littorina_sitkana","Type 13",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","7%",""
+"2014-04-29_YB-ABq1",2014-04-29,2014-04-29,"YB","AB","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","4%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-04-29_YB-ABq2",2014-04-29,2014-04-29,"YB","AB","2","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","15%",""
+"2014-04-29_YB-ABq4",2014-04-29,2014-04-29,"YB","AB","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-04-29_YB-ABq6",2014-04-29,2014-04-29,"YB","AB","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","7%",""
+"2014-04-29_YB-ABq1",2014-04-29,2014-04-29,"YB","AB","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","4%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-04-29_YB-ABq2",2014-04-29,2014-04-29,"YB","AB","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","15%",""
+"2014-04-29_YB-ABq4",2014-04-29,2014-04-29,"YB","AB","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-04-29_YB-ABq6",2014-04-29,2014-04-29,"YB","AB","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","7%",""
+"2014-04-29_YB-ABq1",2014-04-29,2014-04-29,"YB","AB","1","Myt","Mytilus_spp","Type 7",20,0.0875,228.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","4%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-04-29_YB-ABq2",2014-04-29,2014-04-29,"YB","AB","2","Myt","Mytilus_spp","Type 7",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","15%",""
+"2014-04-29_YB-ABq4",2014-04-29,2014-04-29,"YB","AB","4","Myt","Mytilus_spp","Type 7",239,0.0875,2731.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-04-29_YB-ABq6",2014-04-29,2014-04-29,"YB","AB","6","Myt","Mytilus_spp","Type 7",63,0.0875,720,NA,"Stephanie Merhoff","Finished","Full","Cropped","7%",""
+"2014-04-29_YB-ABq1",2014-04-29,2014-04-29,"YB","AB","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","4%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-04-29_YB-ABq2",2014-04-29,2014-04-29,"YB","AB","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","15%",""
+"2014-04-29_YB-ABq4",2014-04-29,2014-04-29,"YB","AB","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-04-29_YB-ABq6",2014-04-29,2014-04-29,"YB","AB","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","7%",""
+"2014-04-29_YB-ABq1",2014-04-29,2014-04-29,"YB","AB","1","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","4%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-04-29_YB-ABq2",2014-04-29,2014-04-29,"YB","AB","2","Mt","Mytilus_trossulus","Type 15",84,0.015625,5376,"c","Beatriz Vaca","Finished","Cropped","Cropped","15%",""
+"2014-04-29_YB-ABq4",2014-04-29,2014-04-29,"YB","AB","4","Mt","Mytilus_trossulus","Type 15",113,0.0875,1291.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-04-29_YB-ABq6",2014-04-29,2014-04-29,"YB","AB","6","Mt","Mytilus_trossulus","Type 15",392,0.0875,4480,NA,"Stephanie Merhoff","Finished","Full","Cropped","7%",""
+"2014-04-29_YB-ABq1",2014-04-29,2014-04-29,"YB","AB","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","4%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-04-29_YB-ABq2",2014-04-29,2014-04-29,"YB","AB","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","15%",""
+"2014-04-29_YB-ABq4",2014-04-29,2014-04-29,"YB","AB","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-04-29_YB-ABq6",2014-04-29,2014-04-29,"YB","AB","6","MtD","Mytilus_trossulus_(dead)","Type 16",9,0.0875,102.857142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","7%",""
+"2014-04-29_YB-ABq1",2014-04-29,2014-04-29,"YB","AB","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","4%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-04-29_YB-ABq2",2014-04-29,2014-04-29,"YB","AB","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","15%",""
+"2014-04-29_YB-ABq4",2014-04-29,2014-04-29,"YB","AB","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-04-29_YB-ABq6",2014-04-29,2014-04-29,"YB","AB","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","7%",""
+"2014-04-29_YB-ABq1",2014-04-29,2014-04-29,"YB","AB","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","4%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-04-29_YB-ABq2",2014-04-29,2014-04-29,"YB","AB","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","15%",""
+"2014-04-29_YB-ABq4",2014-04-29,2014-04-29,"YB","AB","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-04-29_YB-ABq6",2014-04-29,2014-04-29,"YB","AB","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","7%",""
+"2014-04-29_YB-ABq1",2014-04-29,2014-04-29,"YB","AB","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","4%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-04-29_YB-ABq2",2014-04-29,2014-04-29,"YB","AB","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","15%",""
+"2014-04-29_YB-ABq4",2014-04-29,2014-04-29,"YB","AB","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-04-29_YB-ABq6",2014-04-29,2014-04-29,"YB","AB","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","7%",""
+"2014-04-29_YB-ABq1",2014-04-29,2014-04-29,"YB","AB","1","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","4%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-04-29_YB-ABq2",2014-04-29,2014-04-29,"YB","AB","2","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","15%",""
+"2014-04-29_YB-ABq4",2014-04-29,2014-04-29,"YB","AB","4","No","Nucella_ostrina","Type 9",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-04-29_YB-ABq6",2014-04-29,2014-04-29,"YB","AB","6","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","7%",""
+"2014-04-29_YB-ABq1",2014-04-29,2014-04-29,"YB","AB","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","4%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-04-29_YB-ABq2",2014-04-29,2014-04-29,"YB","AB","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","15%",""
+"2014-04-29_YB-ABq4",2014-04-29,2014-04-29,"YB","AB","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-04-29_YB-ABq6",2014-04-29,2014-04-29,"YB","AB","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","7%",""
+"2014-04-29_YB-ABq1",2014-04-29,2014-04-29,"YB","AB","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","4%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-04-29_YB-ABq2",2014-04-29,2014-04-29,"YB","AB","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","15%",""
+"2014-04-29_YB-ABq4",2014-04-29,2014-04-29,"YB","AB","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-04-29_YB-ABq6",2014-04-29,2014-04-29,"YB","AB","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","7%",""
+"2014-04-29_YB-ABq1",2014-04-29,2014-04-29,"YB","AB","1","Pp","Pollicipes_polymerus","Type 11",39,0.0875,445.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","4%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-04-29_YB-ABq2",2014-04-29,2014-04-29,"YB","AB","2","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","15%",""
+"2014-04-29_YB-ABq4",2014-04-29,2014-04-29,"YB","AB","4","Pp","Pollicipes_polymerus","Type 11",115,0.0875,1314.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-04-29_YB-ABq6",2014-04-29,2014-04-29,"YB","AB","6","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","7%",""
+"2014-04-29_YB-ABq1",2014-04-29,2014-04-29,"YB","AB","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","4%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-04-29_YB-ABq2",2014-04-29,2014-04-29,"YB","AB","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","15%",""
+"2014-04-29_YB-ABq4",2014-04-29,2014-04-29,"YB","AB","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-04-29_YB-ABq6",2014-04-29,2014-04-29,"YB","AB","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","7%",""
+"2014-04-29_YB-ABq1",2014-04-29,2014-04-29,"YB","AB","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","4%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-04-29_YB-ABq2",2014-04-29,2014-04-29,"YB","AB","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","15%",""
+"2014-04-29_YB-ABq4",2014-04-29,2014-04-29,"YB","AB","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-04-29_YB-ABq6",2014-04-29,2014-04-29,"YB","AB","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","7%",""
+"2014-04-29_YB-ABq1",2014-04-29,2014-04-29,"YB","AB","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","4%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-04-29_YB-ABq2",2014-04-29,2014-04-29,"YB","AB","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","15%",""
+"2014-04-29_YB-ABq4",2014-04-29,2014-04-29,"YB","AB","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-04-29_YB-ABq6",2014-04-29,2014-04-29,"YB","AB","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","7%",""
+"2014-04-29_YB-ACq1",2014-04-29,2014-04-29,"YB","AC","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","9%",""
+"2014-04-29_YB-ACq4",2014-04-29,2014-04-29,"YB","AC","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Mussel, limpet, and littorine counts likely low due to glare and about 60% of quadrat is under a shallow layer of water"
+"2014-04-29_YB-ACq7",2014-04-29,2014-04-29,"YB","AC","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts likely low due to water coverage and glare"
+"2014-04-29_YB-ACq8",2014-04-29,2014-04-29,"YB","AC","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts possibly low due to glare."
+"2014-04-29_YB-ACq1",2014-04-29,2014-04-29,"YB","AC","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","9%",""
+"2014-04-29_YB-ACq4",2014-04-29,2014-04-29,"YB","AC","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Mussel, limpet, and littorine counts likely low due to glare and about 60% of quadrat is under a shallow layer of water"
+"2014-04-29_YB-ACq7",2014-04-29,2014-04-29,"YB","AC","7","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts likely low due to water coverage and glare"
+"2014-04-29_YB-ACq8",2014-04-29,2014-04-29,"YB","AC","8","Ae","Anemones","Type 14",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts possibly low due to glare."
+"2014-04-29_YB-ACq1",2014-04-29,2014-04-29,"YB","AC","1","Bg","Balanus_glandula","Type 1",661,0.0875,7554.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","9%",""
+"2014-04-29_YB-ACq4",2014-04-29,2014-04-29,"YB","AC","4","Bg","Balanus_glandula","Type 1",274,0.0875,3131.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","3%","Mussel, limpet, and littorine counts likely low due to glare and about 60% of quadrat is under a shallow layer of water"
+"2014-04-29_YB-ACq7",2014-04-29,2014-04-29,"YB","AC","7","Bg","Balanus_glandula","Type 1",292,0.0875,3337.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts likely low due to water coverage and glare"
+"2014-04-29_YB-ACq8",2014-04-29,2014-04-29,"YB","AC","8","Bg","Balanus_glandula","Type 1",311,0.0875,3554.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts possibly low due to glare."
+"2014-04-29_YB-ACq1",2014-04-29,2014-04-29,"YB","AC","1","BgD","Balanus_glandula_(dead)","Type 2",142,0.0875,1622.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","9%",""
+"2014-04-29_YB-ACq4",2014-04-29,2014-04-29,"YB","AC","4","BgD","Balanus_glandula_(dead)","Type 2",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","3%","Mussel, limpet, and littorine counts likely low due to glare and about 60% of quadrat is under a shallow layer of water"
+"2014-04-29_YB-ACq7",2014-04-29,2014-04-29,"YB","AC","7","BgD","Balanus_glandula_(dead)","Type 2",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts likely low due to water coverage and glare"
+"2014-04-29_YB-ACq8",2014-04-29,2014-04-29,"YB","AC","8","BgD","Balanus_glandula_(dead)","Type 2",145,0.0875,1657.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts possibly low due to glare."
+"2014-04-29_YB-ACq1",2014-04-29,2014-04-29,"YB","AC","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","9%",""
+"2014-04-29_YB-ACq4",2014-04-29,2014-04-29,"YB","AC","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Mussel, limpet, and littorine counts likely low due to glare and about 60% of quadrat is under a shallow layer of water"
+"2014-04-29_YB-ACq7",2014-04-29,2014-04-29,"YB","AC","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts likely low due to water coverage and glare"
+"2014-04-29_YB-ACq8",2014-04-29,2014-04-29,"YB","AC","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts possibly low due to glare."
+"2014-04-29_YB-ACq1",2014-04-29,2014-04-29,"YB","AC","1","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","9%",""
+"2014-04-29_YB-ACq4",2014-04-29,2014-04-29,"YB","AC","4","Cth","Chthamalus_dalli","Type 3",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","3%","Mussel, limpet, and littorine counts likely low due to glare and about 60% of quadrat is under a shallow layer of water"
+"2014-04-29_YB-ACq7",2014-04-29,2014-04-29,"YB","AC","7","Cth","Chthamalus_dalli","Type 3",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts likely low due to water coverage and glare"
+"2014-04-29_YB-ACq8",2014-04-29,2014-04-29,"YB","AC","8","Cth","Chthamalus_dalli","Type 3",54,0.0875,617.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts possibly low due to glare."
+"2014-04-29_YB-ACq1",2014-04-29,2014-04-29,"YB","AC","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","9%",""
+"2014-04-29_YB-ACq4",2014-04-29,2014-04-29,"YB","AC","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Mussel, limpet, and littorine counts likely low due to glare and about 60% of quadrat is under a shallow layer of water"
+"2014-04-29_YB-ACq7",2014-04-29,2014-04-29,"YB","AC","7","CthD","Chthamalus_dalli (dead)","Type 4",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts likely low due to water coverage and glare"
+"2014-04-29_YB-ACq8",2014-04-29,2014-04-29,"YB","AC","8","CthD","Chthamalus_dalli (dead)","Type 4",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts possibly low due to glare."
+"2014-04-29_YB-ACq1",2014-04-29,2014-04-29,"YB","AC","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","9%",""
+"2014-04-29_YB-ACq4",2014-04-29,2014-04-29,"YB","AC","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Mussel, limpet, and littorine counts likely low due to glare and about 60% of quadrat is under a shallow layer of water"
+"2014-04-29_YB-ACq7",2014-04-29,2014-04-29,"YB","AC","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts likely low due to water coverage and glare"
+"2014-04-29_YB-ACq8",2014-04-29,2014-04-29,"YB","AC","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts possibly low due to glare."
+"2014-04-29_YB-ACq1",2014-04-29,2014-04-29,"YB","AC","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","9%",""
+"2014-04-29_YB-ACq4",2014-04-29,2014-04-29,"YB","AC","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Mussel, limpet, and littorine counts likely low due to glare and about 60% of quadrat is under a shallow layer of water"
+"2014-04-29_YB-ACq7",2014-04-29,2014-04-29,"YB","AC","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts likely low due to water coverage and glare"
+"2014-04-29_YB-ACq8",2014-04-29,2014-04-29,"YB","AC","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts possibly low due to glare."
+"2014-04-29_YB-ACq1",2014-04-29,2014-04-29,"YB","AC","1","Lim","Limpets","Type 12",59,0.0875,674.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","9%",""
+"2014-04-29_YB-ACq4",2014-04-29,2014-04-29,"YB","AC","4","Lim","Limpets","Type 12",19,0.0875,217.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","3%","Mussel, limpet, and littorine counts likely low due to glare and about 60% of quadrat is under a shallow layer of water"
+"2014-04-29_YB-ACq7",2014-04-29,2014-04-29,"YB","AC","7","Lim","Limpets","Type 12",15,0.0875,171.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts likely low due to water coverage and glare"
+"2014-04-29_YB-ACq8",2014-04-29,2014-04-29,"YB","AC","8","Lim","Limpets","Type 12",43,0.0875,491.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts possibly low due to glare."
+"2014-04-29_YB-ACq1",2014-04-29,2014-04-29,"YB","AC","1","Ls","Littorina_sitkana","Type 13",36,0.0875,411.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","9%",""
+"2014-04-29_YB-ACq4",2014-04-29,2014-04-29,"YB","AC","4","Ls","Littorina_sitkana","Type 13",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","3%","Mussel, limpet, and littorine counts likely low due to glare and about 60% of quadrat is under a shallow layer of water"
+"2014-04-29_YB-ACq7",2014-04-29,2014-04-29,"YB","AC","7","Ls","Littorina_sitkana","Type 13",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts likely low due to water coverage and glare"
+"2014-04-29_YB-ACq8",2014-04-29,2014-04-29,"YB","AC","8","Ls","Littorina_sitkana","Type 13",35,0.0875,400,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts possibly low due to glare."
+"2014-04-29_YB-ACq1",2014-04-29,2014-04-29,"YB","AC","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","9%",""
+"2014-04-29_YB-ACq4",2014-04-29,2014-04-29,"YB","AC","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Mussel, limpet, and littorine counts likely low due to glare and about 60% of quadrat is under a shallow layer of water"
+"2014-04-29_YB-ACq7",2014-04-29,2014-04-29,"YB","AC","7","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts likely low due to water coverage and glare"
+"2014-04-29_YB-ACq8",2014-04-29,2014-04-29,"YB","AC","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts possibly low due to glare."
+"2014-04-29_YB-ACq1",2014-04-29,2014-04-29,"YB","AC","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","9%",""
+"2014-04-29_YB-ACq4",2014-04-29,2014-04-29,"YB","AC","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Mussel, limpet, and littorine counts likely low due to glare and about 60% of quadrat is under a shallow layer of water"
+"2014-04-29_YB-ACq7",2014-04-29,2014-04-29,"YB","AC","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts likely low due to water coverage and glare"
+"2014-04-29_YB-ACq8",2014-04-29,2014-04-29,"YB","AC","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts possibly low due to glare."
+"2014-04-29_YB-ACq1",2014-04-29,2014-04-29,"YB","AC","1","Myt","Mytilus_spp","Type 7",54,0.0875,617.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","9%",""
+"2014-04-29_YB-ACq4",2014-04-29,2014-04-29,"YB","AC","4","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Mussel, limpet, and littorine counts likely low due to glare and about 60% of quadrat is under a shallow layer of water"
+"2014-04-29_YB-ACq7",2014-04-29,2014-04-29,"YB","AC","7","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts likely low due to water coverage and glare"
+"2014-04-29_YB-ACq8",2014-04-29,2014-04-29,"YB","AC","8","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts possibly low due to glare."
+"2014-04-29_YB-ACq1",2014-04-29,2014-04-29,"YB","AC","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","9%",""
+"2014-04-29_YB-ACq4",2014-04-29,2014-04-29,"YB","AC","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Mussel, limpet, and littorine counts likely low due to glare and about 60% of quadrat is under a shallow layer of water"
+"2014-04-29_YB-ACq7",2014-04-29,2014-04-29,"YB","AC","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts likely low due to water coverage and glare"
+"2014-04-29_YB-ACq8",2014-04-29,2014-04-29,"YB","AC","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts possibly low due to glare."
+"2014-04-29_YB-ACq1",2014-04-29,2014-04-29,"YB","AC","1","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","9%",""
+"2014-04-29_YB-ACq4",2014-04-29,2014-04-29,"YB","AC","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Mussel, limpet, and littorine counts likely low due to glare and about 60% of quadrat is under a shallow layer of water"
+"2014-04-29_YB-ACq7",2014-04-29,2014-04-29,"YB","AC","7","Mt","Mytilus_trossulus","Type 15",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts likely low due to water coverage and glare"
+"2014-04-29_YB-ACq8",2014-04-29,2014-04-29,"YB","AC","8","Mt","Mytilus_trossulus","Type 15",114,0.0875,1302.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts possibly low due to glare."
+"2014-04-29_YB-ACq1",2014-04-29,2014-04-29,"YB","AC","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","9%",""
+"2014-04-29_YB-ACq4",2014-04-29,2014-04-29,"YB","AC","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Mussel, limpet, and littorine counts likely low due to glare and about 60% of quadrat is under a shallow layer of water"
+"2014-04-29_YB-ACq7",2014-04-29,2014-04-29,"YB","AC","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts likely low due to water coverage and glare"
+"2014-04-29_YB-ACq8",2014-04-29,2014-04-29,"YB","AC","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts possibly low due to glare."
+"2014-04-29_YB-ACq1",2014-04-29,2014-04-29,"YB","AC","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","9%",""
+"2014-04-29_YB-ACq4",2014-04-29,2014-04-29,"YB","AC","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Mussel, limpet, and littorine counts likely low due to glare and about 60% of quadrat is under a shallow layer of water"
+"2014-04-29_YB-ACq7",2014-04-29,2014-04-29,"YB","AC","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts likely low due to water coverage and glare"
+"2014-04-29_YB-ACq8",2014-04-29,2014-04-29,"YB","AC","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts possibly low due to glare."
+"2014-04-29_YB-ACq1",2014-04-29,2014-04-29,"YB","AC","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","9%",""
+"2014-04-29_YB-ACq4",2014-04-29,2014-04-29,"YB","AC","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Mussel, limpet, and littorine counts likely low due to glare and about 60% of quadrat is under a shallow layer of water"
+"2014-04-29_YB-ACq7",2014-04-29,2014-04-29,"YB","AC","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts likely low due to water coverage and glare"
+"2014-04-29_YB-ACq8",2014-04-29,2014-04-29,"YB","AC","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts possibly low due to glare."
+"2014-04-29_YB-ACq1",2014-04-29,2014-04-29,"YB","AC","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","9%",""
+"2014-04-29_YB-ACq4",2014-04-29,2014-04-29,"YB","AC","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Mussel, limpet, and littorine counts likely low due to glare and about 60% of quadrat is under a shallow layer of water"
+"2014-04-29_YB-ACq7",2014-04-29,2014-04-29,"YB","AC","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts likely low due to water coverage and glare"
+"2014-04-29_YB-ACq8",2014-04-29,2014-04-29,"YB","AC","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts possibly low due to glare."
+"2014-04-29_YB-ACq1",2014-04-29,2014-04-29,"YB","AC","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","9%",""
+"2014-04-29_YB-ACq4",2014-04-29,2014-04-29,"YB","AC","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Mussel, limpet, and littorine counts likely low due to glare and about 60% of quadrat is under a shallow layer of water"
+"2014-04-29_YB-ACq7",2014-04-29,2014-04-29,"YB","AC","7","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts likely low due to water coverage and glare"
+"2014-04-29_YB-ACq8",2014-04-29,2014-04-29,"YB","AC","8","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts possibly low due to glare."
+"2014-04-29_YB-ACq1",2014-04-29,2014-04-29,"YB","AC","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","9%",""
+"2014-04-29_YB-ACq4",2014-04-29,2014-04-29,"YB","AC","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Mussel, limpet, and littorine counts likely low due to glare and about 60% of quadrat is under a shallow layer of water"
+"2014-04-29_YB-ACq7",2014-04-29,2014-04-29,"YB","AC","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts likely low due to water coverage and glare"
+"2014-04-29_YB-ACq8",2014-04-29,2014-04-29,"YB","AC","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts possibly low due to glare."
+"2014-04-29_YB-ACq1",2014-04-29,2014-04-29,"YB","AC","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","9%",""
+"2014-04-29_YB-ACq4",2014-04-29,2014-04-29,"YB","AC","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Mussel, limpet, and littorine counts likely low due to glare and about 60% of quadrat is under a shallow layer of water"
+"2014-04-29_YB-ACq7",2014-04-29,2014-04-29,"YB","AC","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts likely low due to water coverage and glare"
+"2014-04-29_YB-ACq8",2014-04-29,2014-04-29,"YB","AC","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts possibly low due to glare."
+"2014-04-29_YB-ACq1",2014-04-29,2014-04-29,"YB","AC","1","Pp","Pollicipes_polymerus","Type 11",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","9%",""
+"2014-04-29_YB-ACq4",2014-04-29,2014-04-29,"YB","AC","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Mussel, limpet, and littorine counts likely low due to glare and about 60% of quadrat is under a shallow layer of water"
+"2014-04-29_YB-ACq7",2014-04-29,2014-04-29,"YB","AC","7","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts likely low due to water coverage and glare"
+"2014-04-29_YB-ACq8",2014-04-29,2014-04-29,"YB","AC","8","Pp","Pollicipes_polymerus","Type 11",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts possibly low due to glare."
+"2014-04-29_YB-ACq1",2014-04-29,2014-04-29,"YB","AC","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","9%",""
+"2014-04-29_YB-ACq4",2014-04-29,2014-04-29,"YB","AC","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Mussel, limpet, and littorine counts likely low due to glare and about 60% of quadrat is under a shallow layer of water"
+"2014-04-29_YB-ACq7",2014-04-29,2014-04-29,"YB","AC","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts likely low due to water coverage and glare"
+"2014-04-29_YB-ACq8",2014-04-29,2014-04-29,"YB","AC","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts possibly low due to glare."
+"2014-04-29_YB-ACq1",2014-04-29,2014-04-29,"YB","AC","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","9%",""
+"2014-04-29_YB-ACq4",2014-04-29,2014-04-29,"YB","AC","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Mussel, limpet, and littorine counts likely low due to glare and about 60% of quadrat is under a shallow layer of water"
+"2014-04-29_YB-ACq7",2014-04-29,2014-04-29,"YB","AC","7","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts likely low due to water coverage and glare"
+"2014-04-29_YB-ACq8",2014-04-29,2014-04-29,"YB","AC","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts possibly low due to glare."
+"2014-04-29_YB-ACq1",2014-04-29,2014-04-29,"YB","AC","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","9%",""
+"2014-04-29_YB-ACq4",2014-04-29,2014-04-29,"YB","AC","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Mussel, limpet, and littorine counts likely low due to glare and about 60% of quadrat is under a shallow layer of water"
+"2014-04-29_YB-ACq7",2014-04-29,2014-04-29,"YB","AC","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts likely low due to water coverage and glare"
+"2014-04-29_YB-ACq8",2014-04-29,2014-04-29,"YB","AC","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts possibly low due to glare."
+"2014-04-29_YB-ADq1",2014-04-29,2014-04-29,"YB","AD","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Barnacle counts may be low due to algae cover."
+"2014-04-29_YB-ADq5",2014-04-29,2014-04-29,"YB","AD","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-04-29_YB-ADq8",2014-04-29,2014-04-29,"YB","AD","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","2%",""
+"2014-04-29_YB-ADq1",2014-04-29,2014-04-29,"YB","AD","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Barnacle counts may be low due to algae cover."
+"2014-04-29_YB-ADq5",2014-04-29,2014-04-29,"YB","AD","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-04-29_YB-ADq8",2014-04-29,2014-04-29,"YB","AD","8","Ae","Anemones","Type 14",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Cropped","Full","2%",""
+"2014-04-29_YB-ADq1",2014-04-29,2014-04-29,"YB","AD","1","Bg","Balanus_glandula","Type 1",321,0.015625,20544,"c","Beatriz Vaca","Finished","Full","Cropped","15%","Barnacle counts may be low due to algae cover."
+"2014-04-29_YB-ADq5",2014-04-29,2014-04-29,"YB","AD","5","Bg","Balanus_glandula","Type 1",1390,0.0875,15885.7142857143,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-04-29_YB-ADq8",2014-04-29,2014-04-29,"YB","AD","8","Bg","Balanus_glandula","Type 1",517,0.0875,5908.57142857143,NA,"Beatriz Vaca","Finished","Cropped","Full","2%",""
+"2014-04-29_YB-ADq1",2014-04-29,2014-04-29,"YB","AD","1","BgD","Balanus_glandula_(dead)","Type 2",16,0.015625,1024,"c","Beatriz Vaca","Finished","Full","Cropped","15%","Barnacle counts may be low due to algae cover."
+"2014-04-29_YB-ADq5",2014-04-29,2014-04-29,"YB","AD","5","BgD","Balanus_glandula_(dead)","Type 2",23,0.0875,262.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-04-29_YB-ADq8",2014-04-29,2014-04-29,"YB","AD","8","BgD","Balanus_glandula_(dead)","Type 2",19,0.0875,217.142857142857,NA,"Beatriz Vaca","Finished","Cropped","Full","2%",""
+"2014-04-29_YB-ADq1",2014-04-29,2014-04-29,"YB","AD","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Barnacle counts may be low due to algae cover."
+"2014-04-29_YB-ADq5",2014-04-29,2014-04-29,"YB","AD","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-04-29_YB-ADq8",2014-04-29,2014-04-29,"YB","AD","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","2%",""
+"2014-04-29_YB-ADq1",2014-04-29,2014-04-29,"YB","AD","1","Cth","Chthamalus_dalli","Type 3",21,0.015625,1344,"c","Beatriz Vaca","Finished","Full","Cropped","15%","Barnacle counts may be low due to algae cover."
+"2014-04-29_YB-ADq5",2014-04-29,2014-04-29,"YB","AD","5","Cth","Chthamalus_dalli","Type 3",21,0.0875,240,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-04-29_YB-ADq8",2014-04-29,2014-04-29,"YB","AD","8","Cth","Chthamalus_dalli","Type 3",13,0.0875,148.571428571429,NA,"Beatriz Vaca","Finished","Cropped","Full","2%",""
+"2014-04-29_YB-ADq1",2014-04-29,2014-04-29,"YB","AD","1","CthD","Chthamalus_dalli (dead)","Type 4",1,0.015625,64,"c","Beatriz Vaca","Finished","Full","Cropped","15%","Barnacle counts may be low due to algae cover."
+"2014-04-29_YB-ADq5",2014-04-29,2014-04-29,"YB","AD","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-04-29_YB-ADq8",2014-04-29,2014-04-29,"YB","AD","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","2%",""
+"2014-04-29_YB-ADq1",2014-04-29,2014-04-29,"YB","AD","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Barnacle counts may be low due to algae cover."
+"2014-04-29_YB-ADq5",2014-04-29,2014-04-29,"YB","AD","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-04-29_YB-ADq8",2014-04-29,2014-04-29,"YB","AD","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","2%",""
+"2014-04-29_YB-ADq1",2014-04-29,2014-04-29,"YB","AD","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Barnacle counts may be low due to algae cover."
+"2014-04-29_YB-ADq5",2014-04-29,2014-04-29,"YB","AD","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-04-29_YB-ADq8",2014-04-29,2014-04-29,"YB","AD","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","2%",""
+"2014-04-29_YB-ADq1",2014-04-29,2014-04-29,"YB","AD","1","Lim","Limpets","Type 12",147,0.0875,1680,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Barnacle counts may be low due to algae cover."
+"2014-04-29_YB-ADq5",2014-04-29,2014-04-29,"YB","AD","5","Lim","Limpets","Type 12",158,0.0875,1805.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-04-29_YB-ADq8",2014-04-29,2014-04-29,"YB","AD","8","Lim","Limpets","Type 12",48,0.0875,548.571428571429,NA,"Beatriz Vaca","Finished","Cropped","Full","2%",""
+"2014-04-29_YB-ADq1",2014-04-29,2014-04-29,"YB","AD","1","Ls","Littorina_sitkana","Type 13",141,0.0875,1611.42857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Barnacle counts may be low due to algae cover."
+"2014-04-29_YB-ADq5",2014-04-29,2014-04-29,"YB","AD","5","Ls","Littorina_sitkana","Type 13",100,0.0875,1142.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-04-29_YB-ADq8",2014-04-29,2014-04-29,"YB","AD","8","Ls","Littorina_sitkana","Type 13",118,0.0875,1348.57142857143,NA,"Beatriz Vaca","Finished","Cropped","Full","2%",""
+"2014-04-29_YB-ADq1",2014-04-29,2014-04-29,"YB","AD","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Barnacle counts may be low due to algae cover."
+"2014-04-29_YB-ADq5",2014-04-29,2014-04-29,"YB","AD","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-04-29_YB-ADq8",2014-04-29,2014-04-29,"YB","AD","8","Mc","Mytilus_californianus","Type 17",6,0.015625,384,"c","Beatriz Vaca","Finished","Cropped","Full","2%",""
+"2014-04-29_YB-ADq1",2014-04-29,2014-04-29,"YB","AD","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Barnacle counts may be low due to algae cover."
+"2014-04-29_YB-ADq5",2014-04-29,2014-04-29,"YB","AD","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-04-29_YB-ADq8",2014-04-29,2014-04-29,"YB","AD","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","2%",""
+"2014-04-29_YB-ADq1",2014-04-29,2014-04-29,"YB","AD","1","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Barnacle counts may be low due to algae cover."
+"2014-04-29_YB-ADq5",2014-04-29,2014-04-29,"YB","AD","5","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-04-29_YB-ADq8",2014-04-29,2014-04-29,"YB","AD","8","Myt","Mytilus_spp","Type 7",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","2%",""
+"2014-04-29_YB-ADq1",2014-04-29,2014-04-29,"YB","AD","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Barnacle counts may be low due to algae cover."
+"2014-04-29_YB-ADq5",2014-04-29,2014-04-29,"YB","AD","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-04-29_YB-ADq8",2014-04-29,2014-04-29,"YB","AD","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","2%",""
+"2014-04-29_YB-ADq1",2014-04-29,2014-04-29,"YB","AD","1","Mt","Mytilus_trossulus","Type 15",752,0.0875,8594.28571428572,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Barnacle counts may be low due to algae cover."
+"2014-04-29_YB-ADq5",2014-04-29,2014-04-29,"YB","AD","5","Mt","Mytilus_trossulus","Type 15",401,0.0875,4582.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-04-29_YB-ADq8",2014-04-29,2014-04-29,"YB","AD","8","Mt","Mytilus_trossulus","Type 15",221,0.015625,14144,"c","Beatriz Vaca","Finished","Cropped","Full","2%",""
+"2014-04-29_YB-ADq1",2014-04-29,2014-04-29,"YB","AD","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Barnacle counts may be low due to algae cover."
+"2014-04-29_YB-ADq5",2014-04-29,2014-04-29,"YB","AD","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-04-29_YB-ADq8",2014-04-29,2014-04-29,"YB","AD","8","MtD","Mytilus_trossulus_(dead)","Type 16",1,0.015625,64,"c","Beatriz Vaca","Finished","Cropped","Full","2%",""
+"2014-04-29_YB-ADq1",2014-04-29,2014-04-29,"YB","AD","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Barnacle counts may be low due to algae cover."
+"2014-04-29_YB-ADq5",2014-04-29,2014-04-29,"YB","AD","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-04-29_YB-ADq8",2014-04-29,2014-04-29,"YB","AD","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","2%",""
+"2014-04-29_YB-ADq1",2014-04-29,2014-04-29,"YB","AD","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Barnacle counts may be low due to algae cover."
+"2014-04-29_YB-ADq5",2014-04-29,2014-04-29,"YB","AD","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-04-29_YB-ADq8",2014-04-29,2014-04-29,"YB","AD","8","Nc","Nucella_canaliculata","Type 10",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Cropped","Full","2%",""
+"2014-04-29_YB-ADq1",2014-04-29,2014-04-29,"YB","AD","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Barnacle counts may be low due to algae cover."
+"2014-04-29_YB-ADq5",2014-04-29,2014-04-29,"YB","AD","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-04-29_YB-ADq8",2014-04-29,2014-04-29,"YB","AD","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","2%",""
+"2014-04-29_YB-ADq1",2014-04-29,2014-04-29,"YB","AD","1","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Barnacle counts may be low due to algae cover."
+"2014-04-29_YB-ADq5",2014-04-29,2014-04-29,"YB","AD","5","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-04-29_YB-ADq8",2014-04-29,2014-04-29,"YB","AD","8","No","Nucella_ostrina","Type 9",16,0.0875,182.857142857143,NA,"Beatriz Vaca","Finished","Cropped","Full","2%",""
+"2014-04-29_YB-ADq1",2014-04-29,2014-04-29,"YB","AD","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Barnacle counts may be low due to algae cover."
+"2014-04-29_YB-ADq5",2014-04-29,2014-04-29,"YB","AD","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-04-29_YB-ADq8",2014-04-29,2014-04-29,"YB","AD","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","2%",""
+"2014-04-29_YB-ADq1",2014-04-29,2014-04-29,"YB","AD","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Barnacle counts may be low due to algae cover."
+"2014-04-29_YB-ADq5",2014-04-29,2014-04-29,"YB","AD","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-04-29_YB-ADq8",2014-04-29,2014-04-29,"YB","AD","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","2%",""
+"2014-04-29_YB-ADq1",2014-04-29,2014-04-29,"YB","AD","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Barnacle counts may be low due to algae cover."
+"2014-04-29_YB-ADq5",2014-04-29,2014-04-29,"YB","AD","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-04-29_YB-ADq8",2014-04-29,2014-04-29,"YB","AD","8","Pp","Pollicipes_polymerus","Type 11",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Cropped","Full","2%",""
+"2014-04-29_YB-ADq1",2014-04-29,2014-04-29,"YB","AD","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Barnacle counts may be low due to algae cover."
+"2014-04-29_YB-ADq5",2014-04-29,2014-04-29,"YB","AD","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-04-29_YB-ADq8",2014-04-29,2014-04-29,"YB","AD","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","2%",""
+"2014-04-29_YB-ADq1",2014-04-29,2014-04-29,"YB","AD","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Barnacle counts may be low due to algae cover."
+"2014-04-29_YB-ADq5",2014-04-29,2014-04-29,"YB","AD","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-04-29_YB-ADq8",2014-04-29,2014-04-29,"YB","AD","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","2%",""
+"2014-04-29_YB-ADq1",2014-04-29,2014-04-29,"YB","AD","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Barnacle counts may be low due to algae cover."
+"2014-04-29_YB-ADq5",2014-04-29,2014-04-29,"YB","AD","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-04-29_YB-ADq8",2014-04-29,2014-04-29,"YB","AD","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","2%",""
+"2014-04-29_YB-AEq1",2014-04-29,2014-04-29,"YB","AE","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-29_YB-AEq4",2014-04-29,2014-04-29,"YB","AE","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-04-29_YB-AEq8",2014-04-29,2014-04-29,"YB","AE","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2014-04-29_YB-AEq1",2014-04-29,2014-04-29,"YB","AE","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-29_YB-AEq4",2014-04-29,2014-04-29,"YB","AE","4","Ae","Anemones","Type 14",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-04-29_YB-AEq8",2014-04-29,2014-04-29,"YB","AE","8","Ae","Anemones","Type 14",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2014-04-29_YB-AEq1",2014-04-29,2014-04-29,"YB","AE","1","Bg","Balanus_glandula","Type 1",570,0.015625,36480,"c","Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-29_YB-AEq4",2014-04-29,2014-04-29,"YB","AE","4","Bg","Balanus_glandula","Type 1",1902,0.0875,21737.1428571429,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-04-29_YB-AEq8",2014-04-29,2014-04-29,"YB","AE","8","Bg","Balanus_glandula","Type 1",498,0.0875,5691.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2014-04-29_YB-AEq1",2014-04-29,2014-04-29,"YB","AE","1","BgD","Balanus_glandula_(dead)","Type 2",45,0.015625,2880,"c","Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-29_YB-AEq4",2014-04-29,2014-04-29,"YB","AE","4","BgD","Balanus_glandula_(dead)","Type 2",16,0.0875,182.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-04-29_YB-AEq8",2014-04-29,2014-04-29,"YB","AE","8","BgD","Balanus_glandula_(dead)","Type 2",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2014-04-29_YB-AEq1",2014-04-29,2014-04-29,"YB","AE","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-29_YB-AEq4",2014-04-29,2014-04-29,"YB","AE","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-04-29_YB-AEq8",2014-04-29,2014-04-29,"YB","AE","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2014-04-29_YB-AEq1",2014-04-29,2014-04-29,"YB","AE","1","Cth","Chthamalus_dalli","Type 3",37,0.015625,2368,"c","Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-29_YB-AEq4",2014-04-29,2014-04-29,"YB","AE","4","Cth","Chthamalus_dalli","Type 3",23,0.0875,262.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-04-29_YB-AEq8",2014-04-29,2014-04-29,"YB","AE","8","Cth","Chthamalus_dalli","Type 3",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2014-04-29_YB-AEq1",2014-04-29,2014-04-29,"YB","AE","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-29_YB-AEq4",2014-04-29,2014-04-29,"YB","AE","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-04-29_YB-AEq8",2014-04-29,2014-04-29,"YB","AE","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2014-04-29_YB-AEq1",2014-04-29,2014-04-29,"YB","AE","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-29_YB-AEq4",2014-04-29,2014-04-29,"YB","AE","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-04-29_YB-AEq8",2014-04-29,2014-04-29,"YB","AE","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2014-04-29_YB-AEq1",2014-04-29,2014-04-29,"YB","AE","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-29_YB-AEq4",2014-04-29,2014-04-29,"YB","AE","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-04-29_YB-AEq8",2014-04-29,2014-04-29,"YB","AE","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2014-04-29_YB-AEq1",2014-04-29,2014-04-29,"YB","AE","1","Lim","Limpets","Type 12",58,0.0875,662.857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-29_YB-AEq4",2014-04-29,2014-04-29,"YB","AE","4","Lim","Limpets","Type 12",120,0.0875,1371.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-04-29_YB-AEq8",2014-04-29,2014-04-29,"YB","AE","8","Lim","Limpets","Type 12",197,0.0875,2251.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2014-04-29_YB-AEq1",2014-04-29,2014-04-29,"YB","AE","1","Ls","Littorina_sitkana","Type 13",77,0.0875,880,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-29_YB-AEq4",2014-04-29,2014-04-29,"YB","AE","4","Ls","Littorina_sitkana","Type 13",186,0.0875,2125.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-04-29_YB-AEq8",2014-04-29,2014-04-29,"YB","AE","8","Ls","Littorina_sitkana","Type 13",57,0.0875,651.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2014-04-29_YB-AEq1",2014-04-29,2014-04-29,"YB","AE","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-29_YB-AEq4",2014-04-29,2014-04-29,"YB","AE","4","Mc","Mytilus_californianus","Type 17",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-04-29_YB-AEq8",2014-04-29,2014-04-29,"YB","AE","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2014-04-29_YB-AEq1",2014-04-29,2014-04-29,"YB","AE","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-29_YB-AEq4",2014-04-29,2014-04-29,"YB","AE","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-04-29_YB-AEq8",2014-04-29,2014-04-29,"YB","AE","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2014-04-29_YB-AEq1",2014-04-29,2014-04-29,"YB","AE","1","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-29_YB-AEq4",2014-04-29,2014-04-29,"YB","AE","4","Myt","Mytilus_spp","Type 7",45,0.0875,514.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-04-29_YB-AEq8",2014-04-29,2014-04-29,"YB","AE","8","Myt","Mytilus_spp","Type 7",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2014-04-29_YB-AEq1",2014-04-29,2014-04-29,"YB","AE","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-29_YB-AEq4",2014-04-29,2014-04-29,"YB","AE","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-04-29_YB-AEq8",2014-04-29,2014-04-29,"YB","AE","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2014-04-29_YB-AEq1",2014-04-29,2014-04-29,"YB","AE","1","Mt","Mytilus_trossulus","Type 15",294,0.0875,3360,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-29_YB-AEq4",2014-04-29,2014-04-29,"YB","AE","4","Mt","Mytilus_trossulus","Type 15",142,0.0875,1622.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-04-29_YB-AEq8",2014-04-29,2014-04-29,"YB","AE","8","Mt","Mytilus_trossulus","Type 15",84,0.0875,960,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2014-04-29_YB-AEq1",2014-04-29,2014-04-29,"YB","AE","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-29_YB-AEq4",2014-04-29,2014-04-29,"YB","AE","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-04-29_YB-AEq8",2014-04-29,2014-04-29,"YB","AE","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2014-04-29_YB-AEq1",2014-04-29,2014-04-29,"YB","AE","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-29_YB-AEq4",2014-04-29,2014-04-29,"YB","AE","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-04-29_YB-AEq8",2014-04-29,2014-04-29,"YB","AE","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2014-04-29_YB-AEq1",2014-04-29,2014-04-29,"YB","AE","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-29_YB-AEq4",2014-04-29,2014-04-29,"YB","AE","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-04-29_YB-AEq8",2014-04-29,2014-04-29,"YB","AE","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2014-04-29_YB-AEq1",2014-04-29,2014-04-29,"YB","AE","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-29_YB-AEq4",2014-04-29,2014-04-29,"YB","AE","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-04-29_YB-AEq8",2014-04-29,2014-04-29,"YB","AE","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2014-04-29_YB-AEq1",2014-04-29,2014-04-29,"YB","AE","1","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-29_YB-AEq4",2014-04-29,2014-04-29,"YB","AE","4","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-04-29_YB-AEq8",2014-04-29,2014-04-29,"YB","AE","8","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2014-04-29_YB-AEq1",2014-04-29,2014-04-29,"YB","AE","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-29_YB-AEq4",2014-04-29,2014-04-29,"YB","AE","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-04-29_YB-AEq8",2014-04-29,2014-04-29,"YB","AE","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2014-04-29_YB-AEq1",2014-04-29,2014-04-29,"YB","AE","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-29_YB-AEq4",2014-04-29,2014-04-29,"YB","AE","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-04-29_YB-AEq8",2014-04-29,2014-04-29,"YB","AE","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2014-04-29_YB-AEq1",2014-04-29,2014-04-29,"YB","AE","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-29_YB-AEq4",2014-04-29,2014-04-29,"YB","AE","4","Pp","Pollicipes_polymerus","Type 11",11,0.0875,125.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-04-29_YB-AEq8",2014-04-29,2014-04-29,"YB","AE","8","Pp","Pollicipes_polymerus","Type 11",29,0.0875,331.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2014-04-29_YB-AEq1",2014-04-29,2014-04-29,"YB","AE","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-29_YB-AEq4",2014-04-29,2014-04-29,"YB","AE","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-04-29_YB-AEq8",2014-04-29,2014-04-29,"YB","AE","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2014-04-29_YB-AEq1",2014-04-29,2014-04-29,"YB","AE","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-29_YB-AEq4",2014-04-29,2014-04-29,"YB","AE","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-04-29_YB-AEq8",2014-04-29,2014-04-29,"YB","AE","8","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2014-04-29_YB-AEq1",2014-04-29,2014-04-29,"YB","AE","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-04-29_YB-AEq4",2014-04-29,2014-04-29,"YB","AE","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-04-29_YB-AEq8",2014-04-29,2014-04-29,"YB","AE","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2014-04-29_YB-AFq5",2014-04-29,2014-04-29,"YB","AF","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-AFq8",2014-04-29,2014-04-29,"YB","AF","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-04-29_YB-AFq9",2014-04-29,2014-04-29,"YB","AF","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2014-04-29_YB-AFq5",2014-04-29,2014-04-29,"YB","AF","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-AFq8",2014-04-29,2014-04-29,"YB","AF","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-04-29_YB-AFq9",2014-04-29,2014-04-29,"YB","AF","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2014-04-29_YB-AFq5",2014-04-29,2014-04-29,"YB","AF","5","Bg","Balanus_glandula","Type 1",1021,0.015625,65344,"c","Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-AFq8",2014-04-29,2014-04-29,"YB","AF","8","Bg","Balanus_glandula","Type 1",931,0.0875,10640,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-04-29_YB-AFq9",2014-04-29,2014-04-29,"YB","AF","9","Bg","Balanus_glandula","Type 1",1268,0.0875,14491.4285714286,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2014-04-29_YB-AFq5",2014-04-29,2014-04-29,"YB","AF","5","BgD","Balanus_glandula_(dead)","Type 2",12,0.015625,768,"c","Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-AFq8",2014-04-29,2014-04-29,"YB","AF","8","BgD","Balanus_glandula_(dead)","Type 2",72,0.0875,822.857142857143,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-04-29_YB-AFq9",2014-04-29,2014-04-29,"YB","AF","9","BgD","Balanus_glandula_(dead)","Type 2",18,0.0875,205.714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2014-04-29_YB-AFq5",2014-04-29,2014-04-29,"YB","AF","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-AFq8",2014-04-29,2014-04-29,"YB","AF","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-04-29_YB-AFq9",2014-04-29,2014-04-29,"YB","AF","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2014-04-29_YB-AFq5",2014-04-29,2014-04-29,"YB","AF","5","Cth","Chthamalus_dalli","Type 3",6,0.015625,384,"c","Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-AFq8",2014-04-29,2014-04-29,"YB","AF","8","Cth","Chthamalus_dalli","Type 3",619,0.0875,7074.28571428571,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-04-29_YB-AFq9",2014-04-29,2014-04-29,"YB","AF","9","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2014-04-29_YB-AFq5",2014-04-29,2014-04-29,"YB","AF","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-AFq8",2014-04-29,2014-04-29,"YB","AF","8","CthD","Chthamalus_dalli (dead)","Type 4",4,0.0875,45.7142857142857,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-04-29_YB-AFq9",2014-04-29,2014-04-29,"YB","AF","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2014-04-29_YB-AFq5",2014-04-29,2014-04-29,"YB","AF","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-AFq8",2014-04-29,2014-04-29,"YB","AF","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-04-29_YB-AFq9",2014-04-29,2014-04-29,"YB","AF","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2014-04-29_YB-AFq5",2014-04-29,2014-04-29,"YB","AF","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-AFq8",2014-04-29,2014-04-29,"YB","AF","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-04-29_YB-AFq9",2014-04-29,2014-04-29,"YB","AF","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2014-04-29_YB-AFq5",2014-04-29,2014-04-29,"YB","AF","5","Lim","Limpets","Type 12",255,0.0875,2914.28571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-AFq8",2014-04-29,2014-04-29,"YB","AF","8","Lim","Limpets","Type 12",4,0.0875,45.7142857142857,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-04-29_YB-AFq9",2014-04-29,2014-04-29,"YB","AF","9","Lim","Limpets","Type 12",84,0.0875,960,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2014-04-29_YB-AFq5",2014-04-29,2014-04-29,"YB","AF","5","Ls","Littorina_sitkana","Type 13",414,0.0875,4731.42857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-AFq8",2014-04-29,2014-04-29,"YB","AF","8","Ls","Littorina_sitkana","Type 13",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-04-29_YB-AFq9",2014-04-29,2014-04-29,"YB","AF","9","Ls","Littorina_sitkana","Type 13",148,0.0875,1691.42857142857,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2014-04-29_YB-AFq5",2014-04-29,2014-04-29,"YB","AF","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-AFq8",2014-04-29,2014-04-29,"YB","AF","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-04-29_YB-AFq9",2014-04-29,2014-04-29,"YB","AF","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2014-04-29_YB-AFq5",2014-04-29,2014-04-29,"YB","AF","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-AFq8",2014-04-29,2014-04-29,"YB","AF","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-04-29_YB-AFq9",2014-04-29,2014-04-29,"YB","AF","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2014-04-29_YB-AFq5",2014-04-29,2014-04-29,"YB","AF","5","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-AFq8",2014-04-29,2014-04-29,"YB","AF","8","Myt","Mytilus_spp","Type 7",80,0.0875,914.285714285714,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-04-29_YB-AFq9",2014-04-29,2014-04-29,"YB","AF","9","Myt","Mytilus_spp","Type 7",101,0.0875,1154.28571428571,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2014-04-29_YB-AFq5",2014-04-29,2014-04-29,"YB","AF","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-AFq8",2014-04-29,2014-04-29,"YB","AF","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-04-29_YB-AFq9",2014-04-29,2014-04-29,"YB","AF","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2014-04-29_YB-AFq5",2014-04-29,2014-04-29,"YB","AF","5","Mt","Mytilus_trossulus","Type 15",337,0.0875,3851.42857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-AFq8",2014-04-29,2014-04-29,"YB","AF","8","Mt","Mytilus_trossulus","Type 15",83,0.0875,948.571428571429,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-04-29_YB-AFq9",2014-04-29,2014-04-29,"YB","AF","9","Mt","Mytilus_trossulus","Type 15",13,0.0875,148.571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2014-04-29_YB-AFq5",2014-04-29,2014-04-29,"YB","AF","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-AFq8",2014-04-29,2014-04-29,"YB","AF","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-04-29_YB-AFq9",2014-04-29,2014-04-29,"YB","AF","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2014-04-29_YB-AFq5",2014-04-29,2014-04-29,"YB","AF","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-AFq8",2014-04-29,2014-04-29,"YB","AF","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-04-29_YB-AFq9",2014-04-29,2014-04-29,"YB","AF","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2014-04-29_YB-AFq5",2014-04-29,2014-04-29,"YB","AF","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-AFq8",2014-04-29,2014-04-29,"YB","AF","8","Nc","Nucella_canaliculata","Type 10",2,0.0875,22.8571428571429,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-04-29_YB-AFq9",2014-04-29,2014-04-29,"YB","AF","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2014-04-29_YB-AFq5",2014-04-29,2014-04-29,"YB","AF","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-AFq8",2014-04-29,2014-04-29,"YB","AF","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-04-29_YB-AFq9",2014-04-29,2014-04-29,"YB","AF","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2014-04-29_YB-AFq5",2014-04-29,2014-04-29,"YB","AF","5","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-AFq8",2014-04-29,2014-04-29,"YB","AF","8","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-04-29_YB-AFq9",2014-04-29,2014-04-29,"YB","AF","9","No","Nucella_ostrina","Type 9",4,0.0875,45.7142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2014-04-29_YB-AFq5",2014-04-29,2014-04-29,"YB","AF","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-AFq8",2014-04-29,2014-04-29,"YB","AF","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-04-29_YB-AFq9",2014-04-29,2014-04-29,"YB","AF","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2014-04-29_YB-AFq5",2014-04-29,2014-04-29,"YB","AF","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-AFq8",2014-04-29,2014-04-29,"YB","AF","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-04-29_YB-AFq9",2014-04-29,2014-04-29,"YB","AF","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2014-04-29_YB-AFq5",2014-04-29,2014-04-29,"YB","AF","5","Pp","Pollicipes_polymerus","Type 11",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-AFq8",2014-04-29,2014-04-29,"YB","AF","8","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-04-29_YB-AFq9",2014-04-29,2014-04-29,"YB","AF","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2014-04-29_YB-AFq5",2014-04-29,2014-04-29,"YB","AF","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-AFq8",2014-04-29,2014-04-29,"YB","AF","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-04-29_YB-AFq9",2014-04-29,2014-04-29,"YB","AF","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2014-04-29_YB-AFq5",2014-04-29,2014-04-29,"YB","AF","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-AFq8",2014-04-29,2014-04-29,"YB","AF","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-04-29_YB-AFq9",2014-04-29,2014-04-29,"YB","AF","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2014-04-29_YB-AFq5",2014-04-29,2014-04-29,"YB","AF","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-AFq8",2014-04-29,2014-04-29,"YB","AF","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-04-29_YB-AFq9",2014-04-29,2014-04-29,"YB","AF","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2014-04-29_YB-AGq1",2014-04-29,2014-04-29,"YB","AG","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Waves had cleared out many of the barnacles in the patch"
+"2014-04-29_YB-AGq2",2014-04-29,2014-04-29,"YB","AG","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Recent wave action had cleared some of the barnacles and mussels from last survey"
+"2014-04-29_YB-AGq3",2014-04-29,2014-04-29,"YB","AG","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","10%",""
+"2014-04-29_YB-AGq7",2014-04-29,2014-04-29,"YB","AG","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-04-29_YB-AGq9",2014-04-29,2014-04-29,"YB","AG","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2014-04-29_YB-AGq1",2014-04-29,2014-04-29,"YB","AG","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Waves had cleared out many of the barnacles in the patch"
+"2014-04-29_YB-AGq2",2014-04-29,2014-04-29,"YB","AG","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Recent wave action had cleared some of the barnacles and mussels from last survey"
+"2014-04-29_YB-AGq3",2014-04-29,2014-04-29,"YB","AG","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","10%",""
+"2014-04-29_YB-AGq7",2014-04-29,2014-04-29,"YB","AG","7","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-04-29_YB-AGq9",2014-04-29,2014-04-29,"YB","AG","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2014-04-29_YB-AGq1",2014-04-29,2014-04-29,"YB","AG","1","Bg","Balanus_glandula","Type 1",161,0.015625,10304,"c","Isaac Shepard","Finished","Full","Cropped","0%","Waves had cleared out many of the barnacles in the patch"
+"2014-04-29_YB-AGq2",2014-04-29,2014-04-29,"YB","AG","2","Bg","Balanus_glandula","Type 1",514,0.015625,32896,"c","Isaac Shepard","Finished","Full","Cropped","0%","Recent wave action had cleared some of the barnacles and mussels from last survey"
+"2014-04-29_YB-AGq3",2014-04-29,2014-04-29,"YB","AG","3","Bg","Balanus_glandula","Type 1",425,0.015625,27200,"c","Isaac Shepard","Finished","Full","Cropped","10%",""
+"2014-04-29_YB-AGq7",2014-04-29,2014-04-29,"YB","AG","7","Bg","Balanus_glandula","Type 1",1911,0.0875,21840,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-04-29_YB-AGq9",2014-04-29,2014-04-29,"YB","AG","9","Bg","Balanus_glandula","Type 1",1678,0.0875,19177.1428571429,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2014-04-29_YB-AGq1",2014-04-29,2014-04-29,"YB","AG","1","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","0%","Waves had cleared out many of the barnacles in the patch"
+"2014-04-29_YB-AGq2",2014-04-29,2014-04-29,"YB","AG","2","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","0%","Recent wave action had cleared some of the barnacles and mussels from last survey"
+"2014-04-29_YB-AGq3",2014-04-29,2014-04-29,"YB","AG","3","BgD","Balanus_glandula_(dead)","Type 2",19,0.015625,1216,"c","Isaac Shepard","Finished","Full","Cropped","10%",""
+"2014-04-29_YB-AGq7",2014-04-29,2014-04-29,"YB","AG","7","BgD","Balanus_glandula_(dead)","Type 2",41,0.0875,468.571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-04-29_YB-AGq9",2014-04-29,2014-04-29,"YB","AG","9","BgD","Balanus_glandula_(dead)","Type 2",45,0.0875,514.285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2014-04-29_YB-AGq1",2014-04-29,2014-04-29,"YB","AG","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Waves had cleared out many of the barnacles in the patch"
+"2014-04-29_YB-AGq2",2014-04-29,2014-04-29,"YB","AG","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Recent wave action had cleared some of the barnacles and mussels from last survey"
+"2014-04-29_YB-AGq3",2014-04-29,2014-04-29,"YB","AG","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","10%",""
+"2014-04-29_YB-AGq7",2014-04-29,2014-04-29,"YB","AG","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-04-29_YB-AGq9",2014-04-29,2014-04-29,"YB","AG","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2014-04-29_YB-AGq1",2014-04-29,2014-04-29,"YB","AG","1","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","0%","Waves had cleared out many of the barnacles in the patch"
+"2014-04-29_YB-AGq2",2014-04-29,2014-04-29,"YB","AG","2","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","0%","Recent wave action had cleared some of the barnacles and mussels from last survey"
+"2014-04-29_YB-AGq3",2014-04-29,2014-04-29,"YB","AG","3","Cth","Chthamalus_dalli","Type 3",32,0.015625,2048,"c","Isaac Shepard","Finished","Full","Cropped","10%",""
+"2014-04-29_YB-AGq7",2014-04-29,2014-04-29,"YB","AG","7","Cth","Chthamalus_dalli","Type 3",15,0.0875,171.428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-04-29_YB-AGq9",2014-04-29,2014-04-29,"YB","AG","9","Cth","Chthamalus_dalli","Type 3",13,0.0875,148.571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2014-04-29_YB-AGq1",2014-04-29,2014-04-29,"YB","AG","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","0%","Waves had cleared out many of the barnacles in the patch"
+"2014-04-29_YB-AGq2",2014-04-29,2014-04-29,"YB","AG","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","0%","Recent wave action had cleared some of the barnacles and mussels from last survey"
+"2014-04-29_YB-AGq3",2014-04-29,2014-04-29,"YB","AG","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","10%",""
+"2014-04-29_YB-AGq7",2014-04-29,2014-04-29,"YB","AG","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-04-29_YB-AGq9",2014-04-29,2014-04-29,"YB","AG","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2014-04-29_YB-AGq1",2014-04-29,2014-04-29,"YB","AG","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Waves had cleared out many of the barnacles in the patch"
+"2014-04-29_YB-AGq2",2014-04-29,2014-04-29,"YB","AG","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Recent wave action had cleared some of the barnacles and mussels from last survey"
+"2014-04-29_YB-AGq3",2014-04-29,2014-04-29,"YB","AG","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","10%",""
+"2014-04-29_YB-AGq7",2014-04-29,2014-04-29,"YB","AG","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-04-29_YB-AGq9",2014-04-29,2014-04-29,"YB","AG","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2014-04-29_YB-AGq1",2014-04-29,2014-04-29,"YB","AG","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Waves had cleared out many of the barnacles in the patch"
+"2014-04-29_YB-AGq2",2014-04-29,2014-04-29,"YB","AG","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Recent wave action had cleared some of the barnacles and mussels from last survey"
+"2014-04-29_YB-AGq3",2014-04-29,2014-04-29,"YB","AG","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","10%",""
+"2014-04-29_YB-AGq7",2014-04-29,2014-04-29,"YB","AG","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-04-29_YB-AGq9",2014-04-29,2014-04-29,"YB","AG","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2014-04-29_YB-AGq1",2014-04-29,2014-04-29,"YB","AG","1","Lim","Limpets","Type 12",21,0.0875,240,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Waves had cleared out many of the barnacles in the patch"
+"2014-04-29_YB-AGq2",2014-04-29,2014-04-29,"YB","AG","2","Lim","Limpets","Type 12",18,0.0875,205.714285714286,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Recent wave action had cleared some of the barnacles and mussels from last survey"
+"2014-04-29_YB-AGq3",2014-04-29,2014-04-29,"YB","AG","3","Lim","Limpets","Type 12",22,0.0875,251.428571428571,NA,"Isaac Shepard","Finished","Full","Cropped","10%",""
+"2014-04-29_YB-AGq7",2014-04-29,2014-04-29,"YB","AG","7","Lim","Limpets","Type 12",32,0.0875,365.714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-04-29_YB-AGq9",2014-04-29,2014-04-29,"YB","AG","9","Lim","Limpets","Type 12",61,0.0875,697.142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2014-04-29_YB-AGq1",2014-04-29,2014-04-29,"YB","AG","1","Ls","Littorina_sitkana","Type 13",21,0.0875,240,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Waves had cleared out many of the barnacles in the patch"
+"2014-04-29_YB-AGq2",2014-04-29,2014-04-29,"YB","AG","2","Ls","Littorina_sitkana","Type 13",23,0.0875,262.857142857143,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Recent wave action had cleared some of the barnacles and mussels from last survey"
+"2014-04-29_YB-AGq3",2014-04-29,2014-04-29,"YB","AG","3","Ls","Littorina_sitkana","Type 13",23,0.0875,262.857142857143,NA,"Isaac Shepard","Finished","Full","Cropped","10%",""
+"2014-04-29_YB-AGq7",2014-04-29,2014-04-29,"YB","AG","7","Ls","Littorina_sitkana","Type 13",23,0.0875,262.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-04-29_YB-AGq9",2014-04-29,2014-04-29,"YB","AG","9","Ls","Littorina_sitkana","Type 13",42,0.0875,480,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2014-04-29_YB-AGq1",2014-04-29,2014-04-29,"YB","AG","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Waves had cleared out many of the barnacles in the patch"
+"2014-04-29_YB-AGq2",2014-04-29,2014-04-29,"YB","AG","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Recent wave action had cleared some of the barnacles and mussels from last survey"
+"2014-04-29_YB-AGq3",2014-04-29,2014-04-29,"YB","AG","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","10%",""
+"2014-04-29_YB-AGq7",2014-04-29,2014-04-29,"YB","AG","7","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-04-29_YB-AGq9",2014-04-29,2014-04-29,"YB","AG","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2014-04-29_YB-AGq1",2014-04-29,2014-04-29,"YB","AG","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Waves had cleared out many of the barnacles in the patch"
+"2014-04-29_YB-AGq2",2014-04-29,2014-04-29,"YB","AG","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Recent wave action had cleared some of the barnacles and mussels from last survey"
+"2014-04-29_YB-AGq3",2014-04-29,2014-04-29,"YB","AG","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","10%",""
+"2014-04-29_YB-AGq7",2014-04-29,2014-04-29,"YB","AG","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-04-29_YB-AGq9",2014-04-29,2014-04-29,"YB","AG","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2014-04-29_YB-AGq1",2014-04-29,2014-04-29,"YB","AG","1","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Waves had cleared out many of the barnacles in the patch"
+"2014-04-29_YB-AGq2",2014-04-29,2014-04-29,"YB","AG","2","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Recent wave action had cleared some of the barnacles and mussels from last survey"
+"2014-04-29_YB-AGq3",2014-04-29,2014-04-29,"YB","AG","3","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","10%",""
+"2014-04-29_YB-AGq7",2014-04-29,2014-04-29,"YB","AG","7","Myt","Mytilus_spp","Type 7",365,0.0875,4171.42857142857,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-04-29_YB-AGq9",2014-04-29,2014-04-29,"YB","AG","9","Myt","Mytilus_spp","Type 7",280,0.0875,3200,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2014-04-29_YB-AGq1",2014-04-29,2014-04-29,"YB","AG","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Waves had cleared out many of the barnacles in the patch"
+"2014-04-29_YB-AGq2",2014-04-29,2014-04-29,"YB","AG","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Recent wave action had cleared some of the barnacles and mussels from last survey"
+"2014-04-29_YB-AGq3",2014-04-29,2014-04-29,"YB","AG","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","10%",""
+"2014-04-29_YB-AGq7",2014-04-29,2014-04-29,"YB","AG","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-04-29_YB-AGq9",2014-04-29,2014-04-29,"YB","AG","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2014-04-29_YB-AGq1",2014-04-29,2014-04-29,"YB","AG","1","Mt","Mytilus_trossulus","Type 15",66,0.0875,754.285714285714,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Waves had cleared out many of the barnacles in the patch"
+"2014-04-29_YB-AGq2",2014-04-29,2014-04-29,"YB","AG","2","Mt","Mytilus_trossulus","Type 15",32,0.0875,365.714285714286,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Recent wave action had cleared some of the barnacles and mussels from last survey"
+"2014-04-29_YB-AGq3",2014-04-29,2014-04-29,"YB","AG","3","Mt","Mytilus_trossulus","Type 15",135,0.0875,1542.85714285714,NA,"Isaac Shepard","Finished","Full","Cropped","10%",""
+"2014-04-29_YB-AGq7",2014-04-29,2014-04-29,"YB","AG","7","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-04-29_YB-AGq9",2014-04-29,2014-04-29,"YB","AG","9","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2014-04-29_YB-AGq1",2014-04-29,2014-04-29,"YB","AG","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Waves had cleared out many of the barnacles in the patch"
+"2014-04-29_YB-AGq2",2014-04-29,2014-04-29,"YB","AG","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Recent wave action had cleared some of the barnacles and mussels from last survey"
+"2014-04-29_YB-AGq3",2014-04-29,2014-04-29,"YB","AG","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","10%",""
+"2014-04-29_YB-AGq7",2014-04-29,2014-04-29,"YB","AG","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-04-29_YB-AGq9",2014-04-29,2014-04-29,"YB","AG","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2014-04-29_YB-AGq1",2014-04-29,2014-04-29,"YB","AG","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Waves had cleared out many of the barnacles in the patch"
+"2014-04-29_YB-AGq2",2014-04-29,2014-04-29,"YB","AG","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Recent wave action had cleared some of the barnacles and mussels from last survey"
+"2014-04-29_YB-AGq3",2014-04-29,2014-04-29,"YB","AG","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","10%",""
+"2014-04-29_YB-AGq7",2014-04-29,2014-04-29,"YB","AG","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-04-29_YB-AGq9",2014-04-29,2014-04-29,"YB","AG","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2014-04-29_YB-AGq1",2014-04-29,2014-04-29,"YB","AG","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Waves had cleared out many of the barnacles in the patch"
+"2014-04-29_YB-AGq2",2014-04-29,2014-04-29,"YB","AG","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Recent wave action had cleared some of the barnacles and mussels from last survey"
+"2014-04-29_YB-AGq3",2014-04-29,2014-04-29,"YB","AG","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","10%",""
+"2014-04-29_YB-AGq7",2014-04-29,2014-04-29,"YB","AG","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-04-29_YB-AGq9",2014-04-29,2014-04-29,"YB","AG","9","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2014-04-29_YB-AGq1",2014-04-29,2014-04-29,"YB","AG","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Waves had cleared out many of the barnacles in the patch"
+"2014-04-29_YB-AGq2",2014-04-29,2014-04-29,"YB","AG","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Recent wave action had cleared some of the barnacles and mussels from last survey"
+"2014-04-29_YB-AGq3",2014-04-29,2014-04-29,"YB","AG","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","10%",""
+"2014-04-29_YB-AGq7",2014-04-29,2014-04-29,"YB","AG","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-04-29_YB-AGq9",2014-04-29,2014-04-29,"YB","AG","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2014-04-29_YB-AGq1",2014-04-29,2014-04-29,"YB","AG","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Waves had cleared out many of the barnacles in the patch"
+"2014-04-29_YB-AGq2",2014-04-29,2014-04-29,"YB","AG","2","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Recent wave action had cleared some of the barnacles and mussels from last survey"
+"2014-04-29_YB-AGq3",2014-04-29,2014-04-29,"YB","AG","3","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","10%",""
+"2014-04-29_YB-AGq7",2014-04-29,2014-04-29,"YB","AG","7","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-04-29_YB-AGq9",2014-04-29,2014-04-29,"YB","AG","9","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2014-04-29_YB-AGq1",2014-04-29,2014-04-29,"YB","AG","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Waves had cleared out many of the barnacles in the patch"
+"2014-04-29_YB-AGq2",2014-04-29,2014-04-29,"YB","AG","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Recent wave action had cleared some of the barnacles and mussels from last survey"
+"2014-04-29_YB-AGq3",2014-04-29,2014-04-29,"YB","AG","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","10%",""
+"2014-04-29_YB-AGq7",2014-04-29,2014-04-29,"YB","AG","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-04-29_YB-AGq9",2014-04-29,2014-04-29,"YB","AG","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2014-04-29_YB-AGq1",2014-04-29,2014-04-29,"YB","AG","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Waves had cleared out many of the barnacles in the patch"
+"2014-04-29_YB-AGq2",2014-04-29,2014-04-29,"YB","AG","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Recent wave action had cleared some of the barnacles and mussels from last survey"
+"2014-04-29_YB-AGq3",2014-04-29,2014-04-29,"YB","AG","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","10%",""
+"2014-04-29_YB-AGq7",2014-04-29,2014-04-29,"YB","AG","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-04-29_YB-AGq9",2014-04-29,2014-04-29,"YB","AG","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2014-04-29_YB-AGq1",2014-04-29,2014-04-29,"YB","AG","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Waves had cleared out many of the barnacles in the patch"
+"2014-04-29_YB-AGq2",2014-04-29,2014-04-29,"YB","AG","2","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Recent wave action had cleared some of the barnacles and mussels from last survey"
+"2014-04-29_YB-AGq3",2014-04-29,2014-04-29,"YB","AG","3","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","10%",""
+"2014-04-29_YB-AGq7",2014-04-29,2014-04-29,"YB","AG","7","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-04-29_YB-AGq9",2014-04-29,2014-04-29,"YB","AG","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2014-04-29_YB-AGq1",2014-04-29,2014-04-29,"YB","AG","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Waves had cleared out many of the barnacles in the patch"
+"2014-04-29_YB-AGq2",2014-04-29,2014-04-29,"YB","AG","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Recent wave action had cleared some of the barnacles and mussels from last survey"
+"2014-04-29_YB-AGq3",2014-04-29,2014-04-29,"YB","AG","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","10%",""
+"2014-04-29_YB-AGq7",2014-04-29,2014-04-29,"YB","AG","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-04-29_YB-AGq9",2014-04-29,2014-04-29,"YB","AG","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2014-04-29_YB-AGq1",2014-04-29,2014-04-29,"YB","AG","1","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Waves had cleared out many of the barnacles in the patch"
+"2014-04-29_YB-AGq2",2014-04-29,2014-04-29,"YB","AG","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Recent wave action had cleared some of the barnacles and mussels from last survey"
+"2014-04-29_YB-AGq3",2014-04-29,2014-04-29,"YB","AG","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","10%",""
+"2014-04-29_YB-AGq7",2014-04-29,2014-04-29,"YB","AG","7","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-04-29_YB-AGq9",2014-04-29,2014-04-29,"YB","AG","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2014-04-29_YB-AGq1",2014-04-29,2014-04-29,"YB","AG","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Waves had cleared out many of the barnacles in the patch"
+"2014-04-29_YB-AGq2",2014-04-29,2014-04-29,"YB","AG","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Recent wave action had cleared some of the barnacles and mussels from last survey"
+"2014-04-29_YB-AGq3",2014-04-29,2014-04-29,"YB","AG","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","10%",""
+"2014-04-29_YB-AGq7",2014-04-29,2014-04-29,"YB","AG","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-04-29_YB-AGq9",2014-04-29,2014-04-29,"YB","AG","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2014-04-29_YB-Bq1",2014-04-29,2014-04-29,"YB","B","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","20%",""
+"2014-04-29_YB-Bq2",2014-04-29,2014-04-29,"YB","B","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-29_YB-Bq3",2014-04-29,2014-04-29,"YB","B","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-04-29_YB-Bq4",2014-04-29,2014-04-29,"YB","B","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Bq5",2014-04-29,2014-04-29,"YB","B","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-29_YB-Bq6",2014-04-29,2014-04-29,"YB","B","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Bq7",2014-04-29,2014-04-29,"YB","B","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-29_YB-Bq8",2014-04-29,2014-04-29,"YB","B","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-29_YB-Bq9",2014-04-29,2014-04-29,"YB","B","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-04-29_YB-Bq1",2014-04-29,2014-04-29,"YB","B","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","20%",""
+"2014-04-29_YB-Bq2",2014-04-29,2014-04-29,"YB","B","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-29_YB-Bq3",2014-04-29,2014-04-29,"YB","B","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-04-29_YB-Bq4",2014-04-29,2014-04-29,"YB","B","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Bq5",2014-04-29,2014-04-29,"YB","B","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-29_YB-Bq6",2014-04-29,2014-04-29,"YB","B","6","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Bq7",2014-04-29,2014-04-29,"YB","B","7","Ae","Anemones","Type 14",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-29_YB-Bq8",2014-04-29,2014-04-29,"YB","B","8","Ae","Anemones","Type 14",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-29_YB-Bq9",2014-04-29,2014-04-29,"YB","B","9","Ae","Anemones","Type 14",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-04-29_YB-Bq1",2014-04-29,2014-04-29,"YB","B","1","Bg","Balanus_glandula","Type 1",386,0.015625,24704,"c","Beatriz Vaca","Finished","Cropped","Cropped","20%",""
+"2014-04-29_YB-Bq2",2014-04-29,2014-04-29,"YB","B","2","Bg","Balanus_glandula","Type 1",549,0.015625,35136,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-29_YB-Bq3",2014-04-29,2014-04-29,"YB","B","3","Bg","Balanus_glandula","Type 1",648,0.015625,41472,"c","Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-04-29_YB-Bq4",2014-04-29,2014-04-29,"YB","B","4","Bg","Balanus_glandula","Type 1",830,0.015625,53120,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Bq5",2014-04-29,2014-04-29,"YB","B","5","Bg","Balanus_glandula","Type 1",529,0.015625,33856,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-29_YB-Bq6",2014-04-29,2014-04-29,"YB","B","6","Bg","Balanus_glandula","Type 1",795,0.015625,50880,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Bq7",2014-04-29,2014-04-29,"YB","B","7","Bg","Balanus_glandula","Type 1",214,0.0875,2445.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-29_YB-Bq8",2014-04-29,2014-04-29,"YB","B","8","Bg","Balanus_glandula","Type 1",252,0.015625,16128,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-29_YB-Bq9",2014-04-29,2014-04-29,"YB","B","9","Bg","Balanus_glandula","Type 1",374,0.0875,4274.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-04-29_YB-Bq1",2014-04-29,2014-04-29,"YB","B","1","BgD","Balanus_glandula_(dead)","Type 2",27,0.015625,1728,"c","Beatriz Vaca","Finished","Cropped","Cropped","20%",""
+"2014-04-29_YB-Bq2",2014-04-29,2014-04-29,"YB","B","2","BgD","Balanus_glandula_(dead)","Type 2",30,0.015625,1920,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-29_YB-Bq3",2014-04-29,2014-04-29,"YB","B","3","BgD","Balanus_glandula_(dead)","Type 2",24,0.015625,1536,"c","Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-04-29_YB-Bq4",2014-04-29,2014-04-29,"YB","B","4","BgD","Balanus_glandula_(dead)","Type 2",47,0.015625,3008,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Bq5",2014-04-29,2014-04-29,"YB","B","5","BgD","Balanus_glandula_(dead)","Type 2",23,0.015625,1472,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-29_YB-Bq6",2014-04-29,2014-04-29,"YB","B","6","BgD","Balanus_glandula_(dead)","Type 2",30,0.015625,1920,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Bq7",2014-04-29,2014-04-29,"YB","B","7","BgD","Balanus_glandula_(dead)","Type 2",104,0.0875,1188.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-29_YB-Bq8",2014-04-29,2014-04-29,"YB","B","8","BgD","Balanus_glandula_(dead)","Type 2",223,0.015625,14272,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-29_YB-Bq9",2014-04-29,2014-04-29,"YB","B","9","BgD","Balanus_glandula_(dead)","Type 2",583,0.0875,6662.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-04-29_YB-Bq1",2014-04-29,2014-04-29,"YB","B","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","20%",""
+"2014-04-29_YB-Bq2",2014-04-29,2014-04-29,"YB","B","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-29_YB-Bq3",2014-04-29,2014-04-29,"YB","B","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-04-29_YB-Bq4",2014-04-29,2014-04-29,"YB","B","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Bq5",2014-04-29,2014-04-29,"YB","B","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-29_YB-Bq6",2014-04-29,2014-04-29,"YB","B","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Bq7",2014-04-29,2014-04-29,"YB","B","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-29_YB-Bq8",2014-04-29,2014-04-29,"YB","B","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-29_YB-Bq9",2014-04-29,2014-04-29,"YB","B","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-04-29_YB-Bq1",2014-04-29,2014-04-29,"YB","B","1","Cth","Chthamalus_dalli","Type 3",17,0.015625,1088,"c","Beatriz Vaca","Finished","Cropped","Cropped","20%",""
+"2014-04-29_YB-Bq2",2014-04-29,2014-04-29,"YB","B","2","Cth","Chthamalus_dalli","Type 3",7,0.015625,448,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-29_YB-Bq3",2014-04-29,2014-04-29,"YB","B","3","Cth","Chthamalus_dalli","Type 3",31,0.015625,1984,"c","Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-04-29_YB-Bq4",2014-04-29,2014-04-29,"YB","B","4","Cth","Chthamalus_dalli","Type 3",25,0.015625,1600,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Bq5",2014-04-29,2014-04-29,"YB","B","5","Cth","Chthamalus_dalli","Type 3",21,0.015625,1344,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-29_YB-Bq6",2014-04-29,2014-04-29,"YB","B","6","Cth","Chthamalus_dalli","Type 3",17,0.015625,1088,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Bq7",2014-04-29,2014-04-29,"YB","B","7","Cth","Chthamalus_dalli","Type 3",293,0.0875,3348.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-29_YB-Bq8",2014-04-29,2014-04-29,"YB","B","8","Cth","Chthamalus_dalli","Type 3",46,0.015625,2944,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-29_YB-Bq9",2014-04-29,2014-04-29,"YB","B","9","Cth","Chthamalus_dalli","Type 3",257,0.0875,2937.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-04-29_YB-Bq1",2014-04-29,2014-04-29,"YB","B","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","20%",""
+"2014-04-29_YB-Bq2",2014-04-29,2014-04-29,"YB","B","2","CthD","Chthamalus_dalli (dead)","Type 4",2,0.015625,128,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-29_YB-Bq3",2014-04-29,2014-04-29,"YB","B","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-04-29_YB-Bq4",2014-04-29,2014-04-29,"YB","B","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Bq5",2014-04-29,2014-04-29,"YB","B","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-29_YB-Bq6",2014-04-29,2014-04-29,"YB","B","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Bq7",2014-04-29,2014-04-29,"YB","B","7","CthD","Chthamalus_dalli (dead)","Type 4",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-29_YB-Bq8",2014-04-29,2014-04-29,"YB","B","8","CthD","Chthamalus_dalli (dead)","Type 4",5,0.015625,320,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-29_YB-Bq9",2014-04-29,2014-04-29,"YB","B","9","CthD","Chthamalus_dalli (dead)","Type 4",18,0.0875,205.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-04-29_YB-Bq1",2014-04-29,2014-04-29,"YB","B","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","20%",""
+"2014-04-29_YB-Bq2",2014-04-29,2014-04-29,"YB","B","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-29_YB-Bq3",2014-04-29,2014-04-29,"YB","B","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-04-29_YB-Bq4",2014-04-29,2014-04-29,"YB","B","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Bq5",2014-04-29,2014-04-29,"YB","B","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-29_YB-Bq6",2014-04-29,2014-04-29,"YB","B","6","Emp","Emplectonema worm","Type 23",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Bq7",2014-04-29,2014-04-29,"YB","B","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-29_YB-Bq8",2014-04-29,2014-04-29,"YB","B","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-29_YB-Bq9",2014-04-29,2014-04-29,"YB","B","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-04-29_YB-Bq1",2014-04-29,2014-04-29,"YB","B","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","20%",""
+"2014-04-29_YB-Bq2",2014-04-29,2014-04-29,"YB","B","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-29_YB-Bq3",2014-04-29,2014-04-29,"YB","B","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-04-29_YB-Bq4",2014-04-29,2014-04-29,"YB","B","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Bq5",2014-04-29,2014-04-29,"YB","B","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-29_YB-Bq6",2014-04-29,2014-04-29,"YB","B","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Bq7",2014-04-29,2014-04-29,"YB","B","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-29_YB-Bq8",2014-04-29,2014-04-29,"YB","B","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-29_YB-Bq9",2014-04-29,2014-04-29,"YB","B","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-04-29_YB-Bq1",2014-04-29,2014-04-29,"YB","B","1","Lim","Limpets","Type 12",126,0.0875,1440,NA,"Beatriz Vaca","Finished","Cropped","Cropped","20%",""
+"2014-04-29_YB-Bq2",2014-04-29,2014-04-29,"YB","B","2","Lim","Limpets","Type 12",110,0.0875,1257.14285714286,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-29_YB-Bq3",2014-04-29,2014-04-29,"YB","B","3","Lim","Limpets","Type 12",122,0.0875,1394.28571428571,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-04-29_YB-Bq4",2014-04-29,2014-04-29,"YB","B","4","Lim","Limpets","Type 12",68,0.0875,777.142857142857,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Bq5",2014-04-29,2014-04-29,"YB","B","5","Lim","Limpets","Type 12",130,0.0875,1485.71428571429,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-29_YB-Bq6",2014-04-29,2014-04-29,"YB","B","6","Lim","Limpets","Type 12",133,0.0875,1520,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Bq7",2014-04-29,2014-04-29,"YB","B","7","Lim","Limpets","Type 12",105,0.0875,1200,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-29_YB-Bq8",2014-04-29,2014-04-29,"YB","B","8","Lim","Limpets","Type 12",116,0.0875,1325.71428571429,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-29_YB-Bq9",2014-04-29,2014-04-29,"YB","B","9","Lim","Limpets","Type 12",173,0.0875,1977.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-04-29_YB-Bq1",2014-04-29,2014-04-29,"YB","B","1","Ls","Littorina_sitkana","Type 13",46,0.0875,525.714285714286,NA,"Beatriz Vaca","Finished","Cropped","Cropped","20%",""
+"2014-04-29_YB-Bq2",2014-04-29,2014-04-29,"YB","B","2","Ls","Littorina_sitkana","Type 13",35,0.0875,400,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-29_YB-Bq3",2014-04-29,2014-04-29,"YB","B","3","Ls","Littorina_sitkana","Type 13",18,0.0875,205.714285714286,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-04-29_YB-Bq4",2014-04-29,2014-04-29,"YB","B","4","Ls","Littorina_sitkana","Type 13",105,0.0875,1200,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Bq5",2014-04-29,2014-04-29,"YB","B","5","Ls","Littorina_sitkana","Type 13",31,0.0875,354.285714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-29_YB-Bq6",2014-04-29,2014-04-29,"YB","B","6","Ls","Littorina_sitkana","Type 13",24,0.0875,274.285714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Bq7",2014-04-29,2014-04-29,"YB","B","7","Ls","Littorina_sitkana","Type 13",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-29_YB-Bq8",2014-04-29,2014-04-29,"YB","B","8","Ls","Littorina_sitkana","Type 13",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-29_YB-Bq9",2014-04-29,2014-04-29,"YB","B","9","Ls","Littorina_sitkana","Type 13",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-04-29_YB-Bq1",2014-04-29,2014-04-29,"YB","B","1","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","20%",""
+"2014-04-29_YB-Bq2",2014-04-29,2014-04-29,"YB","B","2","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-29_YB-Bq3",2014-04-29,2014-04-29,"YB","B","3","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-04-29_YB-Bq4",2014-04-29,2014-04-29,"YB","B","4","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Bq5",2014-04-29,2014-04-29,"YB","B","5","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-29_YB-Bq6",2014-04-29,2014-04-29,"YB","B","6","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Bq7",2014-04-29,2014-04-29,"YB","B","7","Mc","Mytilus_californianus","Type 17",18,0.0875,205.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-29_YB-Bq8",2014-04-29,2014-04-29,"YB","B","8","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-29_YB-Bq9",2014-04-29,2014-04-29,"YB","B","9","Mc","Mytilus_californianus","Type 17",18,0.0875,205.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-04-29_YB-Bq1",2014-04-29,2014-04-29,"YB","B","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","20%",""
+"2014-04-29_YB-Bq2",2014-04-29,2014-04-29,"YB","B","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-29_YB-Bq3",2014-04-29,2014-04-29,"YB","B","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-04-29_YB-Bq4",2014-04-29,2014-04-29,"YB","B","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Bq5",2014-04-29,2014-04-29,"YB","B","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-29_YB-Bq6",2014-04-29,2014-04-29,"YB","B","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Bq7",2014-04-29,2014-04-29,"YB","B","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-29_YB-Bq8",2014-04-29,2014-04-29,"YB","B","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-29_YB-Bq9",2014-04-29,2014-04-29,"YB","B","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-04-29_YB-Bq1",2014-04-29,2014-04-29,"YB","B","1","Myt","Mytilus_spp","Type 7",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","20%",""
+"2014-04-29_YB-Bq2",2014-04-29,2014-04-29,"YB","B","2","Myt","Mytilus_spp","Type 7",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-29_YB-Bq3",2014-04-29,2014-04-29,"YB","B","3","Myt","Mytilus_spp","Type 7",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-04-29_YB-Bq4",2014-04-29,2014-04-29,"YB","B","4","Myt","Mytilus_spp","Type 7",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Bq5",2014-04-29,2014-04-29,"YB","B","5","Myt","Mytilus_spp","Type 7",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-29_YB-Bq6",2014-04-29,2014-04-29,"YB","B","6","Myt","Mytilus_spp","Type 7",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Bq7",2014-04-29,2014-04-29,"YB","B","7","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-29_YB-Bq8",2014-04-29,2014-04-29,"YB","B","8","Myt","Mytilus_spp","Type 7",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-29_YB-Bq9",2014-04-29,2014-04-29,"YB","B","9","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-04-29_YB-Bq1",2014-04-29,2014-04-29,"YB","B","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","20%",""
+"2014-04-29_YB-Bq2",2014-04-29,2014-04-29,"YB","B","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-29_YB-Bq3",2014-04-29,2014-04-29,"YB","B","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-04-29_YB-Bq4",2014-04-29,2014-04-29,"YB","B","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Bq5",2014-04-29,2014-04-29,"YB","B","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-29_YB-Bq6",2014-04-29,2014-04-29,"YB","B","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Bq7",2014-04-29,2014-04-29,"YB","B","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-29_YB-Bq8",2014-04-29,2014-04-29,"YB","B","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-29_YB-Bq9",2014-04-29,2014-04-29,"YB","B","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-04-29_YB-Bq1",2014-04-29,2014-04-29,"YB","B","1","Mt","Mytilus_trossulus","Type 15",194,0.015625,12416,"c","Beatriz Vaca","Finished","Cropped","Cropped","20%",""
+"2014-04-29_YB-Bq2",2014-04-29,2014-04-29,"YB","B","2","Mt","Mytilus_trossulus","Type 15",229,0.015625,14656,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-29_YB-Bq3",2014-04-29,2014-04-29,"YB","B","3","Mt","Mytilus_trossulus","Type 15",67,0.015625,4288,"c","Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-04-29_YB-Bq4",2014-04-29,2014-04-29,"YB","B","4","Mt","Mytilus_trossulus","Type 15",102,0.015625,6528,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Bq5",2014-04-29,2014-04-29,"YB","B","5","Mt","Mytilus_trossulus","Type 15",164,0.015625,10496,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-29_YB-Bq6",2014-04-29,2014-04-29,"YB","B","6","Mt","Mytilus_trossulus","Type 15",95,0.015625,6080,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Bq7",2014-04-29,2014-04-29,"YB","B","7","Mt","Mytilus_trossulus","Type 15",151,0.0875,1725.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-29_YB-Bq8",2014-04-29,2014-04-29,"YB","B","8","Mt","Mytilus_trossulus","Type 15",120,0.015625,7680,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-29_YB-Bq9",2014-04-29,2014-04-29,"YB","B","9","Mt","Mytilus_trossulus","Type 15",101,0.0875,1154.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-04-29_YB-Bq1",2014-04-29,2014-04-29,"YB","B","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","20%",""
+"2014-04-29_YB-Bq2",2014-04-29,2014-04-29,"YB","B","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-29_YB-Bq3",2014-04-29,2014-04-29,"YB","B","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-04-29_YB-Bq4",2014-04-29,2014-04-29,"YB","B","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Bq5",2014-04-29,2014-04-29,"YB","B","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-29_YB-Bq6",2014-04-29,2014-04-29,"YB","B","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Bq7",2014-04-29,2014-04-29,"YB","B","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-29_YB-Bq8",2014-04-29,2014-04-29,"YB","B","8","MtD","Mytilus_trossulus_(dead)","Type 16",1,0.015625,64,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-29_YB-Bq9",2014-04-29,2014-04-29,"YB","B","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-04-29_YB-Bq1",2014-04-29,2014-04-29,"YB","B","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","20%",""
+"2014-04-29_YB-Bq2",2014-04-29,2014-04-29,"YB","B","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-29_YB-Bq3",2014-04-29,2014-04-29,"YB","B","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-04-29_YB-Bq4",2014-04-29,2014-04-29,"YB","B","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Bq5",2014-04-29,2014-04-29,"YB","B","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-29_YB-Bq6",2014-04-29,2014-04-29,"YB","B","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Bq7",2014-04-29,2014-04-29,"YB","B","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-29_YB-Bq8",2014-04-29,2014-04-29,"YB","B","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-29_YB-Bq9",2014-04-29,2014-04-29,"YB","B","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-04-29_YB-Bq1",2014-04-29,2014-04-29,"YB","B","1","Nc","Nucella_canaliculata","Type 10",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Cropped","Cropped","20%",""
+"2014-04-29_YB-Bq2",2014-04-29,2014-04-29,"YB","B","2","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-29_YB-Bq3",2014-04-29,2014-04-29,"YB","B","3","Nc","Nucella_canaliculata","Type 10",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-04-29_YB-Bq4",2014-04-29,2014-04-29,"YB","B","4","Nc","Nucella_canaliculata","Type 10",14,0.0875,160,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Bq5",2014-04-29,2014-04-29,"YB","B","5","Nc","Nucella_canaliculata","Type 10",18,0.0875,205.714285714286,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-29_YB-Bq6",2014-04-29,2014-04-29,"YB","B","6","Nc","Nucella_canaliculata","Type 10",22,0.0875,251.428571428571,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Bq7",2014-04-29,2014-04-29,"YB","B","7","Nc","Nucella_canaliculata","Type 10",9,0.0875,102.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-29_YB-Bq8",2014-04-29,2014-04-29,"YB","B","8","Nc","Nucella_canaliculata","Type 10",75,0.0875,857.142857142857,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-29_YB-Bq9",2014-04-29,2014-04-29,"YB","B","9","Nc","Nucella_canaliculata","Type 10",17,0.0875,194.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-04-29_YB-Bq1",2014-04-29,2014-04-29,"YB","B","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","20%",""
+"2014-04-29_YB-Bq2",2014-04-29,2014-04-29,"YB","B","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-29_YB-Bq3",2014-04-29,2014-04-29,"YB","B","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-04-29_YB-Bq4",2014-04-29,2014-04-29,"YB","B","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Bq5",2014-04-29,2014-04-29,"YB","B","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-29_YB-Bq6",2014-04-29,2014-04-29,"YB","B","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Bq7",2014-04-29,2014-04-29,"YB","B","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-29_YB-Bq8",2014-04-29,2014-04-29,"YB","B","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-29_YB-Bq9",2014-04-29,2014-04-29,"YB","B","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-04-29_YB-Bq1",2014-04-29,2014-04-29,"YB","B","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","20%",""
+"2014-04-29_YB-Bq2",2014-04-29,2014-04-29,"YB","B","2","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-29_YB-Bq3",2014-04-29,2014-04-29,"YB","B","3","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-04-29_YB-Bq4",2014-04-29,2014-04-29,"YB","B","4","No","Nucella_ostrina","Type 9",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Bq5",2014-04-29,2014-04-29,"YB","B","5","No","Nucella_ostrina","Type 9",9,0.0875,102.857142857143,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-29_YB-Bq6",2014-04-29,2014-04-29,"YB","B","6","No","Nucella_ostrina","Type 9",13,0.0875,148.571428571429,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Bq7",2014-04-29,2014-04-29,"YB","B","7","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-29_YB-Bq8",2014-04-29,2014-04-29,"YB","B","8","No","Nucella_ostrina","Type 9",10,0.0875,114.285714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-29_YB-Bq9",2014-04-29,2014-04-29,"YB","B","9","No","Nucella_ostrina","Type 9",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-04-29_YB-Bq1",2014-04-29,2014-04-29,"YB","B","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","20%",""
+"2014-04-29_YB-Bq2",2014-04-29,2014-04-29,"YB","B","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-29_YB-Bq3",2014-04-29,2014-04-29,"YB","B","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-04-29_YB-Bq4",2014-04-29,2014-04-29,"YB","B","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Bq5",2014-04-29,2014-04-29,"YB","B","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-29_YB-Bq6",2014-04-29,2014-04-29,"YB","B","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Bq7",2014-04-29,2014-04-29,"YB","B","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-29_YB-Bq8",2014-04-29,2014-04-29,"YB","B","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-29_YB-Bq9",2014-04-29,2014-04-29,"YB","B","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-04-29_YB-Bq1",2014-04-29,2014-04-29,"YB","B","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","20%",""
+"2014-04-29_YB-Bq2",2014-04-29,2014-04-29,"YB","B","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-29_YB-Bq3",2014-04-29,2014-04-29,"YB","B","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-04-29_YB-Bq4",2014-04-29,2014-04-29,"YB","B","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Bq5",2014-04-29,2014-04-29,"YB","B","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-29_YB-Bq6",2014-04-29,2014-04-29,"YB","B","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Bq7",2014-04-29,2014-04-29,"YB","B","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-29_YB-Bq8",2014-04-29,2014-04-29,"YB","B","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-29_YB-Bq9",2014-04-29,2014-04-29,"YB","B","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-04-29_YB-Bq1",2014-04-29,2014-04-29,"YB","B","1","Pp","Pollicipes_polymerus","Type 11",26,0.0875,297.142857142857,NA,"Beatriz Vaca","Finished","Cropped","Cropped","20%",""
+"2014-04-29_YB-Bq2",2014-04-29,2014-04-29,"YB","B","2","Pp","Pollicipes_polymerus","Type 11",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-29_YB-Bq3",2014-04-29,2014-04-29,"YB","B","3","Pp","Pollicipes_polymerus","Type 11",21,0.0875,240,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-04-29_YB-Bq4",2014-04-29,2014-04-29,"YB","B","4","Pp","Pollicipes_polymerus","Type 11",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Bq5",2014-04-29,2014-04-29,"YB","B","5","Pp","Pollicipes_polymerus","Type 11",11,0.0875,125.714285714286,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-29_YB-Bq6",2014-04-29,2014-04-29,"YB","B","6","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Bq7",2014-04-29,2014-04-29,"YB","B","7","Pp","Pollicipes_polymerus","Type 11",26,0.0875,297.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-29_YB-Bq8",2014-04-29,2014-04-29,"YB","B","8","Pp","Pollicipes_polymerus","Type 11",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-29_YB-Bq9",2014-04-29,2014-04-29,"YB","B","9","Pp","Pollicipes_polymerus","Type 11",9,0.0875,102.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-04-29_YB-Bq1",2014-04-29,2014-04-29,"YB","B","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","20%",""
+"2014-04-29_YB-Bq2",2014-04-29,2014-04-29,"YB","B","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-29_YB-Bq3",2014-04-29,2014-04-29,"YB","B","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-04-29_YB-Bq4",2014-04-29,2014-04-29,"YB","B","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Bq5",2014-04-29,2014-04-29,"YB","B","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-29_YB-Bq6",2014-04-29,2014-04-29,"YB","B","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Bq7",2014-04-29,2014-04-29,"YB","B","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-29_YB-Bq8",2014-04-29,2014-04-29,"YB","B","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-29_YB-Bq9",2014-04-29,2014-04-29,"YB","B","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-04-29_YB-Bq1",2014-04-29,2014-04-29,"YB","B","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","20%",""
+"2014-04-29_YB-Bq2",2014-04-29,2014-04-29,"YB","B","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-29_YB-Bq3",2014-04-29,2014-04-29,"YB","B","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-04-29_YB-Bq4",2014-04-29,2014-04-29,"YB","B","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Bq5",2014-04-29,2014-04-29,"YB","B","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-29_YB-Bq6",2014-04-29,2014-04-29,"YB","B","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Bq7",2014-04-29,2014-04-29,"YB","B","7","Sc","Semibalanus_cariosus","Type 5",26,0.0875,297.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-29_YB-Bq8",2014-04-29,2014-04-29,"YB","B","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-29_YB-Bq9",2014-04-29,2014-04-29,"YB","B","9","Sc","Semibalanus_cariosus","Type 5",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-04-29_YB-Bq1",2014-04-29,2014-04-29,"YB","B","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","20%",""
+"2014-04-29_YB-Bq2",2014-04-29,2014-04-29,"YB","B","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-29_YB-Bq3",2014-04-29,2014-04-29,"YB","B","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-04-29_YB-Bq4",2014-04-29,2014-04-29,"YB","B","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Bq5",2014-04-29,2014-04-29,"YB","B","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-29_YB-Bq6",2014-04-29,2014-04-29,"YB","B","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Bq7",2014-04-29,2014-04-29,"YB","B","7","ScD","Semibalanus_cariosus_(dead)","Type 6",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-29_YB-Bq8",2014-04-29,2014-04-29,"YB","B","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-04-29_YB-Bq9",2014-04-29,2014-04-29,"YB","B","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-04-29_YB-BBq1",2014-04-29,2014-04-29,"YB","BB","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-04-29_YB-BBq2",2014-04-29,2014-04-29,"YB","BB","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-04-29_YB-BBq9",2014-04-29,2014-04-29,"YB","BB","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-29_YB-BBq1",2014-04-29,2014-04-29,"YB","BB","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-04-29_YB-BBq2",2014-04-29,2014-04-29,"YB","BB","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-04-29_YB-BBq9",2014-04-29,2014-04-29,"YB","BB","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-29_YB-BBq1",2014-04-29,2014-04-29,"YB","BB","1","Bg","Balanus_glandula","Type 1",1849,0.0875,21131.4285714286,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-04-29_YB-BBq2",2014-04-29,2014-04-29,"YB","BB","2","Bg","Balanus_glandula","Type 1",1805,0.0875,20628.5714285714,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-04-29_YB-BBq9",2014-04-29,2014-04-29,"YB","BB","9","Bg","Balanus_glandula","Type 1",601,0.015625,38464,"c","Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-29_YB-BBq1",2014-04-29,2014-04-29,"YB","BB","1","BgD","Balanus_glandula_(dead)","Type 2",45,0.0875,514.285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-04-29_YB-BBq2",2014-04-29,2014-04-29,"YB","BB","2","BgD","Balanus_glandula_(dead)","Type 2",29,0.0875,331.428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-04-29_YB-BBq9",2014-04-29,2014-04-29,"YB","BB","9","BgD","Balanus_glandula_(dead)","Type 2",5,0.015625,320,"c","Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-29_YB-BBq1",2014-04-29,2014-04-29,"YB","BB","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-04-29_YB-BBq2",2014-04-29,2014-04-29,"YB","BB","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-04-29_YB-BBq9",2014-04-29,2014-04-29,"YB","BB","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-29_YB-BBq1",2014-04-29,2014-04-29,"YB","BB","1","Cth","Chthamalus_dalli","Type 3",83,0.0875,948.571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-04-29_YB-BBq2",2014-04-29,2014-04-29,"YB","BB","2","Cth","Chthamalus_dalli","Type 3",396,0.0875,4525.71428571429,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-04-29_YB-BBq9",2014-04-29,2014-04-29,"YB","BB","9","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-29_YB-BBq1",2014-04-29,2014-04-29,"YB","BB","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-04-29_YB-BBq2",2014-04-29,2014-04-29,"YB","BB","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-04-29_YB-BBq9",2014-04-29,2014-04-29,"YB","BB","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-29_YB-BBq1",2014-04-29,2014-04-29,"YB","BB","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-04-29_YB-BBq2",2014-04-29,2014-04-29,"YB","BB","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-04-29_YB-BBq9",2014-04-29,2014-04-29,"YB","BB","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-29_YB-BBq1",2014-04-29,2014-04-29,"YB","BB","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-04-29_YB-BBq2",2014-04-29,2014-04-29,"YB","BB","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-04-29_YB-BBq9",2014-04-29,2014-04-29,"YB","BB","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-29_YB-BBq1",2014-04-29,2014-04-29,"YB","BB","1","Lim","Limpets","Type 12",49,0.0875,560,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-04-29_YB-BBq2",2014-04-29,2014-04-29,"YB","BB","2","Lim","Limpets","Type 12",52,0.0875,594.285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-04-29_YB-BBq9",2014-04-29,2014-04-29,"YB","BB","9","Lim","Limpets","Type 12",58,0.0875,662.857142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-29_YB-BBq1",2014-04-29,2014-04-29,"YB","BB","1","Ls","Littorina_sitkana","Type 13",125,0.0875,1428.57142857143,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-04-29_YB-BBq2",2014-04-29,2014-04-29,"YB","BB","2","Ls","Littorina_sitkana","Type 13",166,0.0875,1897.14285714286,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-04-29_YB-BBq9",2014-04-29,2014-04-29,"YB","BB","9","Ls","Littorina_sitkana","Type 13",137,0.0875,1565.71428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-29_YB-BBq1",2014-04-29,2014-04-29,"YB","BB","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-04-29_YB-BBq2",2014-04-29,2014-04-29,"YB","BB","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-04-29_YB-BBq9",2014-04-29,2014-04-29,"YB","BB","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-29_YB-BBq1",2014-04-29,2014-04-29,"YB","BB","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-04-29_YB-BBq2",2014-04-29,2014-04-29,"YB","BB","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-04-29_YB-BBq9",2014-04-29,2014-04-29,"YB","BB","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-29_YB-BBq1",2014-04-29,2014-04-29,"YB","BB","1","Myt","Mytilus_spp","Type 7",487,0.0875,5565.71428571429,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-04-29_YB-BBq2",2014-04-29,2014-04-29,"YB","BB","2","Myt","Mytilus_spp","Type 7",477,0.0875,5451.42857142857,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-04-29_YB-BBq9",2014-04-29,2014-04-29,"YB","BB","9","Myt","Mytilus_spp","Type 7",295,0.0875,3371.42857142857,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-29_YB-BBq1",2014-04-29,2014-04-29,"YB","BB","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-04-29_YB-BBq2",2014-04-29,2014-04-29,"YB","BB","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-04-29_YB-BBq9",2014-04-29,2014-04-29,"YB","BB","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-29_YB-BBq1",2014-04-29,2014-04-29,"YB","BB","1","Mt","Mytilus_trossulus","Type 15",31,0.0875,354.285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-04-29_YB-BBq2",2014-04-29,2014-04-29,"YB","BB","2","Mt","Mytilus_trossulus","Type 15",61,0.0875,697.142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-04-29_YB-BBq9",2014-04-29,2014-04-29,"YB","BB","9","Mt","Mytilus_trossulus","Type 15",93,0.0875,1062.85714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-29_YB-BBq1",2014-04-29,2014-04-29,"YB","BB","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-04-29_YB-BBq2",2014-04-29,2014-04-29,"YB","BB","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-04-29_YB-BBq9",2014-04-29,2014-04-29,"YB","BB","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-29_YB-BBq1",2014-04-29,2014-04-29,"YB","BB","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-04-29_YB-BBq2",2014-04-29,2014-04-29,"YB","BB","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-04-29_YB-BBq9",2014-04-29,2014-04-29,"YB","BB","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-29_YB-BBq1",2014-04-29,2014-04-29,"YB","BB","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-04-29_YB-BBq2",2014-04-29,2014-04-29,"YB","BB","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-04-29_YB-BBq9",2014-04-29,2014-04-29,"YB","BB","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-29_YB-BBq1",2014-04-29,2014-04-29,"YB","BB","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-04-29_YB-BBq2",2014-04-29,2014-04-29,"YB","BB","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-04-29_YB-BBq9",2014-04-29,2014-04-29,"YB","BB","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-29_YB-BBq1",2014-04-29,2014-04-29,"YB","BB","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-04-29_YB-BBq2",2014-04-29,2014-04-29,"YB","BB","2","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-04-29_YB-BBq9",2014-04-29,2014-04-29,"YB","BB","9","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-29_YB-BBq1",2014-04-29,2014-04-29,"YB","BB","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-04-29_YB-BBq2",2014-04-29,2014-04-29,"YB","BB","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-04-29_YB-BBq9",2014-04-29,2014-04-29,"YB","BB","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-29_YB-BBq1",2014-04-29,2014-04-29,"YB","BB","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-04-29_YB-BBq2",2014-04-29,2014-04-29,"YB","BB","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-04-29_YB-BBq9",2014-04-29,2014-04-29,"YB","BB","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-29_YB-BBq1",2014-04-29,2014-04-29,"YB","BB","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-04-29_YB-BBq2",2014-04-29,2014-04-29,"YB","BB","2","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-04-29_YB-BBq9",2014-04-29,2014-04-29,"YB","BB","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-29_YB-BBq1",2014-04-29,2014-04-29,"YB","BB","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-04-29_YB-BBq2",2014-04-29,2014-04-29,"YB","BB","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-04-29_YB-BBq9",2014-04-29,2014-04-29,"YB","BB","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-29_YB-BBq1",2014-04-29,2014-04-29,"YB","BB","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-04-29_YB-BBq2",2014-04-29,2014-04-29,"YB","BB","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-04-29_YB-BBq9",2014-04-29,2014-04-29,"YB","BB","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-29_YB-BBq1",2014-04-29,2014-04-29,"YB","BB","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-04-29_YB-BBq2",2014-04-29,2014-04-29,"YB","BB","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-04-29_YB-BBq9",2014-04-29,2014-04-29,"YB","BB","9","ScD","Semibalanus_cariosus_(dead)","Type 6",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-29_YB-BCq3",2014-04-29,2014-04-29,"YB","BC","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-29_YB-BCq5",2014-04-29,2014-04-29,"YB","BC","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-BCq9",2014-04-29,2014-04-29,"YB","BC","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2014-04-29_YB-BCq3",2014-04-29,2014-04-29,"YB","BC","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-29_YB-BCq5",2014-04-29,2014-04-29,"YB","BC","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-BCq9",2014-04-29,2014-04-29,"YB","BC","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2014-04-29_YB-BCq3",2014-04-29,2014-04-29,"YB","BC","3","Bg","Balanus_glandula","Type 1",858,0.015625,54912,"c","Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-29_YB-BCq5",2014-04-29,2014-04-29,"YB","BC","5","Bg","Balanus_glandula","Type 1",554,0.015625,35456,"c","Stephanie Merhoff","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-BCq9",2014-04-29,2014-04-29,"YB","BC","9","Bg","Balanus_glandula","Type 1",619,0.015625,39616,"c","Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2014-04-29_YB-BCq3",2014-04-29,2014-04-29,"YB","BC","3","BgD","Balanus_glandula_(dead)","Type 2",34,0.015625,2176,"c","Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-29_YB-BCq5",2014-04-29,2014-04-29,"YB","BC","5","BgD","Balanus_glandula_(dead)","Type 2",10,0.015625,640,"c","Stephanie Merhoff","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-BCq9",2014-04-29,2014-04-29,"YB","BC","9","BgD","Balanus_glandula_(dead)","Type 2",19,0.015625,1216,"c","Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2014-04-29_YB-BCq3",2014-04-29,2014-04-29,"YB","BC","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-29_YB-BCq5",2014-04-29,2014-04-29,"YB","BC","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-BCq9",2014-04-29,2014-04-29,"YB","BC","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2014-04-29_YB-BCq3",2014-04-29,2014-04-29,"YB","BC","3","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-29_YB-BCq5",2014-04-29,2014-04-29,"YB","BC","5","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-BCq9",2014-04-29,2014-04-29,"YB","BC","9","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2014-04-29_YB-BCq3",2014-04-29,2014-04-29,"YB","BC","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-29_YB-BCq5",2014-04-29,2014-04-29,"YB","BC","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-BCq9",2014-04-29,2014-04-29,"YB","BC","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2014-04-29_YB-BCq3",2014-04-29,2014-04-29,"YB","BC","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-29_YB-BCq5",2014-04-29,2014-04-29,"YB","BC","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-BCq9",2014-04-29,2014-04-29,"YB","BC","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2014-04-29_YB-BCq3",2014-04-29,2014-04-29,"YB","BC","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-29_YB-BCq5",2014-04-29,2014-04-29,"YB","BC","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-BCq9",2014-04-29,2014-04-29,"YB","BC","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2014-04-29_YB-BCq3",2014-04-29,2014-04-29,"YB","BC","3","Lim","Limpets","Type 12",35,0.0875,400,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-29_YB-BCq5",2014-04-29,2014-04-29,"YB","BC","5","Lim","Limpets","Type 12",32,0.0875,365.714285714286,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-BCq9",2014-04-29,2014-04-29,"YB","BC","9","Lim","Limpets","Type 12",46,0.0875,525.714285714286,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2014-04-29_YB-BCq3",2014-04-29,2014-04-29,"YB","BC","3","Ls","Littorina_sitkana","Type 13",125,0.0875,1428.57142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-29_YB-BCq5",2014-04-29,2014-04-29,"YB","BC","5","Ls","Littorina_sitkana","Type 13",121,0.0875,1382.85714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-BCq9",2014-04-29,2014-04-29,"YB","BC","9","Ls","Littorina_sitkana","Type 13",124,0.0875,1417.14285714286,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2014-04-29_YB-BCq3",2014-04-29,2014-04-29,"YB","BC","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-29_YB-BCq5",2014-04-29,2014-04-29,"YB","BC","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-BCq9",2014-04-29,2014-04-29,"YB","BC","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2014-04-29_YB-BCq3",2014-04-29,2014-04-29,"YB","BC","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-29_YB-BCq5",2014-04-29,2014-04-29,"YB","BC","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-BCq9",2014-04-29,2014-04-29,"YB","BC","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2014-04-29_YB-BCq3",2014-04-29,2014-04-29,"YB","BC","3","Myt","Mytilus_spp","Type 7",259,0.0875,2960,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-29_YB-BCq5",2014-04-29,2014-04-29,"YB","BC","5","Myt","Mytilus_spp","Type 7",425,0.0875,4857.14285714286,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-BCq9",2014-04-29,2014-04-29,"YB","BC","9","Myt","Mytilus_spp","Type 7",427,0.0875,4880,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2014-04-29_YB-BCq3",2014-04-29,2014-04-29,"YB","BC","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-29_YB-BCq5",2014-04-29,2014-04-29,"YB","BC","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-BCq9",2014-04-29,2014-04-29,"YB","BC","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2014-04-29_YB-BCq3",2014-04-29,2014-04-29,"YB","BC","3","Mt","Mytilus_trossulus","Type 15",51,0.0875,582.857142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-29_YB-BCq5",2014-04-29,2014-04-29,"YB","BC","5","Mt","Mytilus_trossulus","Type 15",135,0.0875,1542.85714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-BCq9",2014-04-29,2014-04-29,"YB","BC","9","Mt","Mytilus_trossulus","Type 15",126,0.0875,1440,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2014-04-29_YB-BCq3",2014-04-29,2014-04-29,"YB","BC","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-29_YB-BCq5",2014-04-29,2014-04-29,"YB","BC","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-BCq9",2014-04-29,2014-04-29,"YB","BC","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2014-04-29_YB-BCq3",2014-04-29,2014-04-29,"YB","BC","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-29_YB-BCq5",2014-04-29,2014-04-29,"YB","BC","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-BCq9",2014-04-29,2014-04-29,"YB","BC","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2014-04-29_YB-BCq3",2014-04-29,2014-04-29,"YB","BC","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-29_YB-BCq5",2014-04-29,2014-04-29,"YB","BC","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-BCq9",2014-04-29,2014-04-29,"YB","BC","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2014-04-29_YB-BCq3",2014-04-29,2014-04-29,"YB","BC","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-29_YB-BCq5",2014-04-29,2014-04-29,"YB","BC","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-BCq9",2014-04-29,2014-04-29,"YB","BC","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2014-04-29_YB-BCq3",2014-04-29,2014-04-29,"YB","BC","3","No","Nucella_ostrina","Type 9",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-29_YB-BCq5",2014-04-29,2014-04-29,"YB","BC","5","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-BCq9",2014-04-29,2014-04-29,"YB","BC","9","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2014-04-29_YB-BCq3",2014-04-29,2014-04-29,"YB","BC","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-29_YB-BCq5",2014-04-29,2014-04-29,"YB","BC","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-BCq9",2014-04-29,2014-04-29,"YB","BC","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2014-04-29_YB-BCq3",2014-04-29,2014-04-29,"YB","BC","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-29_YB-BCq5",2014-04-29,2014-04-29,"YB","BC","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-BCq9",2014-04-29,2014-04-29,"YB","BC","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2014-04-29_YB-BCq3",2014-04-29,2014-04-29,"YB","BC","3","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-29_YB-BCq5",2014-04-29,2014-04-29,"YB","BC","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-BCq9",2014-04-29,2014-04-29,"YB","BC","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2014-04-29_YB-BCq3",2014-04-29,2014-04-29,"YB","BC","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-29_YB-BCq5",2014-04-29,2014-04-29,"YB","BC","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-BCq9",2014-04-29,2014-04-29,"YB","BC","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2014-04-29_YB-BCq3",2014-04-29,2014-04-29,"YB","BC","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-29_YB-BCq5",2014-04-29,2014-04-29,"YB","BC","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-BCq9",2014-04-29,2014-04-29,"YB","BC","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2014-04-29_YB-BCq3",2014-04-29,2014-04-29,"YB","BC","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2014-04-29_YB-BCq5",2014-04-29,2014-04-29,"YB","BC","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-BCq9",2014-04-29,2014-04-29,"YB","BC","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%",""
+"2014-04-29_YB-BDq1",2014-04-29,2014-04-29,"YB","BD","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","32%","some blur"
+"2014-04-29_YB-BDq5",2014-04-29,2014-04-29,"YB","BD","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-29_YB-BDq7",2014-04-29,2014-04-29,"YB","BD","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-29_YB-BDq1",2014-04-29,2014-04-29,"YB","BD","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","32%","some blur"
+"2014-04-29_YB-BDq5",2014-04-29,2014-04-29,"YB","BD","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-29_YB-BDq7",2014-04-29,2014-04-29,"YB","BD","7","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-29_YB-BDq1",2014-04-29,2014-04-29,"YB","BD","1","Bg","Balanus_glandula","Type 1",2233,0.0875,25520,NA,"Julia Bingham","Finished","Full","Full","32%","some blur"
+"2014-04-29_YB-BDq5",2014-04-29,2014-04-29,"YB","BD","5","Bg","Balanus_glandula","Type 1",1721,0.0875,19668.5714285714,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-29_YB-BDq7",2014-04-29,2014-04-29,"YB","BD","7","Bg","Balanus_glandula","Type 1",2581,0.0875,29497.1428571429,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-29_YB-BDq1",2014-04-29,2014-04-29,"YB","BD","1","BgD","Balanus_glandula_(dead)","Type 2",76,0.0875,868.571428571429,NA,"Julia Bingham","Finished","Full","Full","32%","some blur"
+"2014-04-29_YB-BDq5",2014-04-29,2014-04-29,"YB","BD","5","BgD","Balanus_glandula_(dead)","Type 2",99,0.0875,1131.42857142857,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-29_YB-BDq7",2014-04-29,2014-04-29,"YB","BD","7","BgD","Balanus_glandula_(dead)","Type 2",116,0.0875,1325.71428571429,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-29_YB-BDq1",2014-04-29,2014-04-29,"YB","BD","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","32%","some blur"
+"2014-04-29_YB-BDq5",2014-04-29,2014-04-29,"YB","BD","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-29_YB-BDq7",2014-04-29,2014-04-29,"YB","BD","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-29_YB-BDq1",2014-04-29,2014-04-29,"YB","BD","1","Cth","Chthamalus_dalli","Type 3",32,0.0875,365.714285714286,NA,"Julia Bingham","Finished","Full","Full","32%","some blur"
+"2014-04-29_YB-BDq5",2014-04-29,2014-04-29,"YB","BD","5","Cth","Chthamalus_dalli","Type 3",11,0.0875,125.714285714286,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-29_YB-BDq7",2014-04-29,2014-04-29,"YB","BD","7","Cth","Chthamalus_dalli","Type 3",36,0.0875,411.428571428571,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-29_YB-BDq1",2014-04-29,2014-04-29,"YB","BD","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","32%","some blur"
+"2014-04-29_YB-BDq5",2014-04-29,2014-04-29,"YB","BD","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-29_YB-BDq7",2014-04-29,2014-04-29,"YB","BD","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-29_YB-BDq1",2014-04-29,2014-04-29,"YB","BD","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","32%","some blur"
+"2014-04-29_YB-BDq5",2014-04-29,2014-04-29,"YB","BD","5","Emp","Emplectonema worm","Type 23",6,0.0875,68.5714285714286,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-29_YB-BDq7",2014-04-29,2014-04-29,"YB","BD","7","Emp","Emplectonema worm","Type 23",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-29_YB-BDq1",2014-04-29,2014-04-29,"YB","BD","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","32%","some blur"
+"2014-04-29_YB-BDq5",2014-04-29,2014-04-29,"YB","BD","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-29_YB-BDq7",2014-04-29,2014-04-29,"YB","BD","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-29_YB-BDq1",2014-04-29,2014-04-29,"YB","BD","1","Lim","Limpets","Type 12",317,0.0875,3622.85714285714,NA,"Julia Bingham","Finished","Full","Full","32%","some blur"
+"2014-04-29_YB-BDq5",2014-04-29,2014-04-29,"YB","BD","5","Lim","Limpets","Type 12",469,0.0875,5360,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-29_YB-BDq7",2014-04-29,2014-04-29,"YB","BD","7","Lim","Limpets","Type 12",883,0.0875,10091.4285714286,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-29_YB-BDq1",2014-04-29,2014-04-29,"YB","BD","1","Ls","Littorina_sitkana","Type 13",215,0.0875,2457.14285714286,NA,"Julia Bingham","Finished","Full","Full","32%","some blur"
+"2014-04-29_YB-BDq5",2014-04-29,2014-04-29,"YB","BD","5","Ls","Littorina_sitkana","Type 13",633,0.0875,7234.28571428571,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-29_YB-BDq7",2014-04-29,2014-04-29,"YB","BD","7","Ls","Littorina_sitkana","Type 13",524,0.0875,5988.57142857143,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-29_YB-BDq1",2014-04-29,2014-04-29,"YB","BD","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","32%","some blur"
+"2014-04-29_YB-BDq5",2014-04-29,2014-04-29,"YB","BD","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-29_YB-BDq7",2014-04-29,2014-04-29,"YB","BD","7","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-29_YB-BDq1",2014-04-29,2014-04-29,"YB","BD","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","32%","some blur"
+"2014-04-29_YB-BDq5",2014-04-29,2014-04-29,"YB","BD","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-29_YB-BDq7",2014-04-29,2014-04-29,"YB","BD","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-29_YB-BDq1",2014-04-29,2014-04-29,"YB","BD","1","Myt","Mytilus_spp","Type 7",533,0.0875,6091.42857142857,NA,"Julia Bingham","Finished","Full","Full","32%","some blur"
+"2014-04-29_YB-BDq5",2014-04-29,2014-04-29,"YB","BD","5","Myt","Mytilus_spp","Type 7",1183,0.0875,13520,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-29_YB-BDq7",2014-04-29,2014-04-29,"YB","BD","7","Myt","Mytilus_spp","Type 7",758,0.0875,8662.85714285714,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-29_YB-BDq1",2014-04-29,2014-04-29,"YB","BD","1","MytD","Mytilus_spp_(dead)","Type 8",3,0.0875,34.2857142857143,NA,"Julia Bingham","Finished","Full","Full","32%","some blur"
+"2014-04-29_YB-BDq5",2014-04-29,2014-04-29,"YB","BD","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-29_YB-BDq7",2014-04-29,2014-04-29,"YB","BD","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-29_YB-BDq1",2014-04-29,2014-04-29,"YB","BD","1","Mt","Mytilus_trossulus","Type 15",112,0.0875,1280,NA,"Julia Bingham","Finished","Full","Full","32%","some blur"
+"2014-04-29_YB-BDq5",2014-04-29,2014-04-29,"YB","BD","5","Mt","Mytilus_trossulus","Type 15",292,0.0875,3337.14285714286,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-29_YB-BDq7",2014-04-29,2014-04-29,"YB","BD","7","Mt","Mytilus_trossulus","Type 15",205,0.0875,2342.85714285714,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-29_YB-BDq1",2014-04-29,2014-04-29,"YB","BD","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","32%","some blur"
+"2014-04-29_YB-BDq5",2014-04-29,2014-04-29,"YB","BD","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-29_YB-BDq7",2014-04-29,2014-04-29,"YB","BD","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-29_YB-BDq1",2014-04-29,2014-04-29,"YB","BD","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","32%","some blur"
+"2014-04-29_YB-BDq5",2014-04-29,2014-04-29,"YB","BD","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-29_YB-BDq7",2014-04-29,2014-04-29,"YB","BD","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-29_YB-BDq1",2014-04-29,2014-04-29,"YB","BD","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","32%","some blur"
+"2014-04-29_YB-BDq5",2014-04-29,2014-04-29,"YB","BD","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-29_YB-BDq7",2014-04-29,2014-04-29,"YB","BD","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-29_YB-BDq1",2014-04-29,2014-04-29,"YB","BD","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","32%","some blur"
+"2014-04-29_YB-BDq5",2014-04-29,2014-04-29,"YB","BD","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-29_YB-BDq7",2014-04-29,2014-04-29,"YB","BD","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-29_YB-BDq1",2014-04-29,2014-04-29,"YB","BD","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","32%","some blur"
+"2014-04-29_YB-BDq5",2014-04-29,2014-04-29,"YB","BD","5","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-29_YB-BDq7",2014-04-29,2014-04-29,"YB","BD","7","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-29_YB-BDq1",2014-04-29,2014-04-29,"YB","BD","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","32%","some blur"
+"2014-04-29_YB-BDq5",2014-04-29,2014-04-29,"YB","BD","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-29_YB-BDq7",2014-04-29,2014-04-29,"YB","BD","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-29_YB-BDq1",2014-04-29,2014-04-29,"YB","BD","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","32%","some blur"
+"2014-04-29_YB-BDq5",2014-04-29,2014-04-29,"YB","BD","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-29_YB-BDq7",2014-04-29,2014-04-29,"YB","BD","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-29_YB-BDq1",2014-04-29,2014-04-29,"YB","BD","1","Pp","Pollicipes_polymerus","Type 11",17,0.0875,194.285714285714,NA,"Julia Bingham","Finished","Full","Full","32%","some blur"
+"2014-04-29_YB-BDq5",2014-04-29,2014-04-29,"YB","BD","5","Pp","Pollicipes_polymerus","Type 11",229,0.0875,2617.14285714286,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-29_YB-BDq7",2014-04-29,2014-04-29,"YB","BD","7","Pp","Pollicipes_polymerus","Type 11",147,0.0875,1680,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-29_YB-BDq1",2014-04-29,2014-04-29,"YB","BD","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","32%","some blur"
+"2014-04-29_YB-BDq5",2014-04-29,2014-04-29,"YB","BD","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-29_YB-BDq7",2014-04-29,2014-04-29,"YB","BD","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-29_YB-BDq1",2014-04-29,2014-04-29,"YB","BD","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","32%","some blur"
+"2014-04-29_YB-BDq5",2014-04-29,2014-04-29,"YB","BD","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-29_YB-BDq7",2014-04-29,2014-04-29,"YB","BD","7","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-29_YB-BDq1",2014-04-29,2014-04-29,"YB","BD","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","32%","some blur"
+"2014-04-29_YB-BDq5",2014-04-29,2014-04-29,"YB","BD","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-29_YB-BDq7",2014-04-29,2014-04-29,"YB","BD","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2014-04-29_YB-BEq2",2014-04-29,2014-04-29,"YB","BE","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to glare from water cover"
+"2014-04-29_YB-BEq3",2014-04-29,2014-04-29,"YB","BE","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-29_YB-BEq6",2014-04-29,2014-04-29,"YB","BE","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-04-29_YB-BEq2",2014-04-29,2014-04-29,"YB","BE","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to glare from water cover"
+"2014-04-29_YB-BEq3",2014-04-29,2014-04-29,"YB","BE","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-29_YB-BEq6",2014-04-29,2014-04-29,"YB","BE","6","Ae","Anemones","Type 14",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-04-29_YB-BEq2",2014-04-29,2014-04-29,"YB","BE","2","Bg","Balanus_glandula","Type 1",97,0.0875,1108.57142857143,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to glare from water cover"
+"2014-04-29_YB-BEq3",2014-04-29,2014-04-29,"YB","BE","3","Bg","Balanus_glandula","Type 1",240,0.0875,2742.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-29_YB-BEq6",2014-04-29,2014-04-29,"YB","BE","6","Bg","Balanus_glandula","Type 1",171,0.0875,1954.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-04-29_YB-BEq2",2014-04-29,2014-04-29,"YB","BE","2","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to glare from water cover"
+"2014-04-29_YB-BEq3",2014-04-29,2014-04-29,"YB","BE","3","BgD","Balanus_glandula_(dead)","Type 2",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-29_YB-BEq6",2014-04-29,2014-04-29,"YB","BE","6","BgD","Balanus_glandula_(dead)","Type 2",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-04-29_YB-BEq2",2014-04-29,2014-04-29,"YB","BE","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to glare from water cover"
+"2014-04-29_YB-BEq3",2014-04-29,2014-04-29,"YB","BE","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-29_YB-BEq6",2014-04-29,2014-04-29,"YB","BE","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-04-29_YB-BEq2",2014-04-29,2014-04-29,"YB","BE","2","Cth","Chthamalus_dalli","Type 3",4,0.0875,45.7142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to glare from water cover"
+"2014-04-29_YB-BEq3",2014-04-29,2014-04-29,"YB","BE","3","Cth","Chthamalus_dalli","Type 3",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-29_YB-BEq6",2014-04-29,2014-04-29,"YB","BE","6","Cth","Chthamalus_dalli","Type 3",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-04-29_YB-BEq2",2014-04-29,2014-04-29,"YB","BE","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to glare from water cover"
+"2014-04-29_YB-BEq3",2014-04-29,2014-04-29,"YB","BE","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-29_YB-BEq6",2014-04-29,2014-04-29,"YB","BE","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-04-29_YB-BEq2",2014-04-29,2014-04-29,"YB","BE","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to glare from water cover"
+"2014-04-29_YB-BEq3",2014-04-29,2014-04-29,"YB","BE","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-29_YB-BEq6",2014-04-29,2014-04-29,"YB","BE","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-04-29_YB-BEq2",2014-04-29,2014-04-29,"YB","BE","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to glare from water cover"
+"2014-04-29_YB-BEq3",2014-04-29,2014-04-29,"YB","BE","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-29_YB-BEq6",2014-04-29,2014-04-29,"YB","BE","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-04-29_YB-BEq2",2014-04-29,2014-04-29,"YB","BE","2","Lim","Limpets","Type 12",46,0.0875,525.714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to glare from water cover"
+"2014-04-29_YB-BEq3",2014-04-29,2014-04-29,"YB","BE","3","Lim","Limpets","Type 12",186,0.0875,2125.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-29_YB-BEq6",2014-04-29,2014-04-29,"YB","BE","6","Lim","Limpets","Type 12",138,0.0875,1577.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-04-29_YB-BEq2",2014-04-29,2014-04-29,"YB","BE","2","Ls","Littorina_sitkana","Type 13",108,0.0875,1234.28571428571,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to glare from water cover"
+"2014-04-29_YB-BEq3",2014-04-29,2014-04-29,"YB","BE","3","Ls","Littorina_sitkana","Type 13",31,0.0875,354.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-29_YB-BEq6",2014-04-29,2014-04-29,"YB","BE","6","Ls","Littorina_sitkana","Type 13",29,0.0875,331.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-04-29_YB-BEq2",2014-04-29,2014-04-29,"YB","BE","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to glare from water cover"
+"2014-04-29_YB-BEq3",2014-04-29,2014-04-29,"YB","BE","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-29_YB-BEq6",2014-04-29,2014-04-29,"YB","BE","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-04-29_YB-BEq2",2014-04-29,2014-04-29,"YB","BE","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to glare from water cover"
+"2014-04-29_YB-BEq3",2014-04-29,2014-04-29,"YB","BE","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-29_YB-BEq6",2014-04-29,2014-04-29,"YB","BE","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-04-29_YB-BEq2",2014-04-29,2014-04-29,"YB","BE","2","Myt","Mytilus_spp","Type 7",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to glare from water cover"
+"2014-04-29_YB-BEq3",2014-04-29,2014-04-29,"YB","BE","3","Myt","Mytilus_spp","Type 7",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-29_YB-BEq6",2014-04-29,2014-04-29,"YB","BE","6","Myt","Mytilus_spp","Type 7",28,0.0875,320,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-04-29_YB-BEq2",2014-04-29,2014-04-29,"YB","BE","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to glare from water cover"
+"2014-04-29_YB-BEq3",2014-04-29,2014-04-29,"YB","BE","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-29_YB-BEq6",2014-04-29,2014-04-29,"YB","BE","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-04-29_YB-BEq2",2014-04-29,2014-04-29,"YB","BE","2","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to glare from water cover"
+"2014-04-29_YB-BEq3",2014-04-29,2014-04-29,"YB","BE","3","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-29_YB-BEq6",2014-04-29,2014-04-29,"YB","BE","6","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-04-29_YB-BEq2",2014-04-29,2014-04-29,"YB","BE","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to glare from water cover"
+"2014-04-29_YB-BEq3",2014-04-29,2014-04-29,"YB","BE","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-29_YB-BEq6",2014-04-29,2014-04-29,"YB","BE","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-04-29_YB-BEq2",2014-04-29,2014-04-29,"YB","BE","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to glare from water cover"
+"2014-04-29_YB-BEq3",2014-04-29,2014-04-29,"YB","BE","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-29_YB-BEq6",2014-04-29,2014-04-29,"YB","BE","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-04-29_YB-BEq2",2014-04-29,2014-04-29,"YB","BE","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to glare from water cover"
+"2014-04-29_YB-BEq3",2014-04-29,2014-04-29,"YB","BE","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-29_YB-BEq6",2014-04-29,2014-04-29,"YB","BE","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-04-29_YB-BEq2",2014-04-29,2014-04-29,"YB","BE","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to glare from water cover"
+"2014-04-29_YB-BEq3",2014-04-29,2014-04-29,"YB","BE","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-29_YB-BEq6",2014-04-29,2014-04-29,"YB","BE","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-04-29_YB-BEq2",2014-04-29,2014-04-29,"YB","BE","2","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to glare from water cover"
+"2014-04-29_YB-BEq3",2014-04-29,2014-04-29,"YB","BE","3","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-29_YB-BEq6",2014-04-29,2014-04-29,"YB","BE","6","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-04-29_YB-BEq2",2014-04-29,2014-04-29,"YB","BE","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to glare from water cover"
+"2014-04-29_YB-BEq3",2014-04-29,2014-04-29,"YB","BE","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-29_YB-BEq6",2014-04-29,2014-04-29,"YB","BE","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-04-29_YB-BEq2",2014-04-29,2014-04-29,"YB","BE","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to glare from water cover"
+"2014-04-29_YB-BEq3",2014-04-29,2014-04-29,"YB","BE","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-29_YB-BEq6",2014-04-29,2014-04-29,"YB","BE","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-04-29_YB-BEq2",2014-04-29,2014-04-29,"YB","BE","2","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to glare from water cover"
+"2014-04-29_YB-BEq3",2014-04-29,2014-04-29,"YB","BE","3","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-29_YB-BEq6",2014-04-29,2014-04-29,"YB","BE","6","Pp","Pollicipes_polymerus","Type 11",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-04-29_YB-BEq2",2014-04-29,2014-04-29,"YB","BE","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to glare from water cover"
+"2014-04-29_YB-BEq3",2014-04-29,2014-04-29,"YB","BE","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-29_YB-BEq6",2014-04-29,2014-04-29,"YB","BE","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-04-29_YB-BEq2",2014-04-29,2014-04-29,"YB","BE","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to glare from water cover"
+"2014-04-29_YB-BEq3",2014-04-29,2014-04-29,"YB","BE","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-29_YB-BEq6",2014-04-29,2014-04-29,"YB","BE","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-04-29_YB-BEq2",2014-04-29,2014-04-29,"YB","BE","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to glare from water cover"
+"2014-04-29_YB-BEq3",2014-04-29,2014-04-29,"YB","BE","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-29_YB-BEq6",2014-04-29,2014-04-29,"YB","BE","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-04-29_YB-BFq1",2014-04-29,2014-04-29,"YB","BF","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2014-04-29_YB-BFq4",2014-04-29,2014-04-29,"YB","BF","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-29_YB-BFq9",2014-04-29,2014-04-29,"YB","BF","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","65%",""
+"2014-04-29_YB-BFq1",2014-04-29,2014-04-29,"YB","BF","1","Ae","Anemones","Type 14",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2014-04-29_YB-BFq4",2014-04-29,2014-04-29,"YB","BF","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-29_YB-BFq9",2014-04-29,2014-04-29,"YB","BF","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","65%",""
+"2014-04-29_YB-BFq1",2014-04-29,2014-04-29,"YB","BF","1","Bg","Balanus_glandula","Type 1",825,0.0875,9428.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2014-04-29_YB-BFq4",2014-04-29,2014-04-29,"YB","BF","4","Bg","Balanus_glandula","Type 1",389,0.0875,4445.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-29_YB-BFq9",2014-04-29,2014-04-29,"YB","BF","9","Bg","Balanus_glandula","Type 1",344,0.0875,3931.42857142857,NA,"Julia Bingham","Finished","Full","Full","65%",""
+"2014-04-29_YB-BFq1",2014-04-29,2014-04-29,"YB","BF","1","BgD","Balanus_glandula_(dead)","Type 2",23,0.0875,262.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2014-04-29_YB-BFq4",2014-04-29,2014-04-29,"YB","BF","4","BgD","Balanus_glandula_(dead)","Type 2",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-29_YB-BFq9",2014-04-29,2014-04-29,"YB","BF","9","BgD","Balanus_glandula_(dead)","Type 2",88,0.0875,1005.71428571429,NA,"Julia Bingham","Finished","Full","Full","65%",""
+"2014-04-29_YB-BFq1",2014-04-29,2014-04-29,"YB","BF","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2014-04-29_YB-BFq4",2014-04-29,2014-04-29,"YB","BF","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-29_YB-BFq9",2014-04-29,2014-04-29,"YB","BF","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","65%",""
+"2014-04-29_YB-BFq1",2014-04-29,2014-04-29,"YB","BF","1","Cth","Chthamalus_dalli","Type 3",22,0.0875,251.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2014-04-29_YB-BFq4",2014-04-29,2014-04-29,"YB","BF","4","Cth","Chthamalus_dalli","Type 3",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-29_YB-BFq9",2014-04-29,2014-04-29,"YB","BF","9","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","65%",""
+"2014-04-29_YB-BFq1",2014-04-29,2014-04-29,"YB","BF","1","CthD","Chthamalus_dalli (dead)","Type 4",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2014-04-29_YB-BFq4",2014-04-29,2014-04-29,"YB","BF","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-29_YB-BFq9",2014-04-29,2014-04-29,"YB","BF","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","65%",""
+"2014-04-29_YB-BFq1",2014-04-29,2014-04-29,"YB","BF","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2014-04-29_YB-BFq4",2014-04-29,2014-04-29,"YB","BF","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-29_YB-BFq9",2014-04-29,2014-04-29,"YB","BF","9","Emp","Emplectonema worm","Type 23",3,0.0875,34.2857142857143,NA,"Julia Bingham","Finished","Full","Full","65%",""
+"2014-04-29_YB-BFq1",2014-04-29,2014-04-29,"YB","BF","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2014-04-29_YB-BFq4",2014-04-29,2014-04-29,"YB","BF","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-29_YB-BFq9",2014-04-29,2014-04-29,"YB","BF","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","65%",""
+"2014-04-29_YB-BFq1",2014-04-29,2014-04-29,"YB","BF","1","Lim","Limpets","Type 12",268,0.0875,3062.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2014-04-29_YB-BFq4",2014-04-29,2014-04-29,"YB","BF","4","Lim","Limpets","Type 12",73,0.0875,834.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-29_YB-BFq9",2014-04-29,2014-04-29,"YB","BF","9","Lim","Limpets","Type 12",53,0.0875,605.714285714286,NA,"Julia Bingham","Finished","Full","Full","65%",""
+"2014-04-29_YB-BFq1",2014-04-29,2014-04-29,"YB","BF","1","Ls","Littorina_sitkana","Type 13",156,0.0875,1782.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2014-04-29_YB-BFq4",2014-04-29,2014-04-29,"YB","BF","4","Ls","Littorina_sitkana","Type 13",30,0.0875,342.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-29_YB-BFq9",2014-04-29,2014-04-29,"YB","BF","9","Ls","Littorina_sitkana","Type 13",149,0.0875,1702.85714285714,NA,"Julia Bingham","Finished","Full","Full","65%",""
+"2014-04-29_YB-BFq1",2014-04-29,2014-04-29,"YB","BF","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2014-04-29_YB-BFq4",2014-04-29,2014-04-29,"YB","BF","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-29_YB-BFq9",2014-04-29,2014-04-29,"YB","BF","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","65%",""
+"2014-04-29_YB-BFq1",2014-04-29,2014-04-29,"YB","BF","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2014-04-29_YB-BFq4",2014-04-29,2014-04-29,"YB","BF","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-29_YB-BFq9",2014-04-29,2014-04-29,"YB","BF","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","65%",""
+"2014-04-29_YB-BFq1",2014-04-29,2014-04-29,"YB","BF","1","Myt","Mytilus_spp","Type 7",278,0.0875,3177.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2014-04-29_YB-BFq4",2014-04-29,2014-04-29,"YB","BF","4","Myt","Mytilus_spp","Type 7",25,0.0875,285.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-29_YB-BFq9",2014-04-29,2014-04-29,"YB","BF","9","Myt","Mytilus_spp","Type 7",342,0.0875,3908.57142857143,NA,"Julia Bingham","Finished","Full","Full","65%",""
+"2014-04-29_YB-BFq1",2014-04-29,2014-04-29,"YB","BF","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2014-04-29_YB-BFq4",2014-04-29,2014-04-29,"YB","BF","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-29_YB-BFq9",2014-04-29,2014-04-29,"YB","BF","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","65%",""
+"2014-04-29_YB-BFq1",2014-04-29,2014-04-29,"YB","BF","1","Mt","Mytilus_trossulus","Type 15",11,0.0875,125.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2014-04-29_YB-BFq4",2014-04-29,2014-04-29,"YB","BF","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-29_YB-BFq9",2014-04-29,2014-04-29,"YB","BF","9","Mt","Mytilus_trossulus","Type 15",31,0.0875,354.285714285714,NA,"Julia Bingham","Finished","Full","Full","65%",""
+"2014-04-29_YB-BFq1",2014-04-29,2014-04-29,"YB","BF","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2014-04-29_YB-BFq4",2014-04-29,2014-04-29,"YB","BF","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-29_YB-BFq9",2014-04-29,2014-04-29,"YB","BF","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","65%",""
+"2014-04-29_YB-BFq1",2014-04-29,2014-04-29,"YB","BF","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2014-04-29_YB-BFq4",2014-04-29,2014-04-29,"YB","BF","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-29_YB-BFq9",2014-04-29,2014-04-29,"YB","BF","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","65%",""
+"2014-04-29_YB-BFq1",2014-04-29,2014-04-29,"YB","BF","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2014-04-29_YB-BFq4",2014-04-29,2014-04-29,"YB","BF","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-29_YB-BFq9",2014-04-29,2014-04-29,"YB","BF","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","65%",""
+"2014-04-29_YB-BFq1",2014-04-29,2014-04-29,"YB","BF","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2014-04-29_YB-BFq4",2014-04-29,2014-04-29,"YB","BF","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-29_YB-BFq9",2014-04-29,2014-04-29,"YB","BF","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","65%",""
+"2014-04-29_YB-BFq1",2014-04-29,2014-04-29,"YB","BF","1","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2014-04-29_YB-BFq4",2014-04-29,2014-04-29,"YB","BF","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-29_YB-BFq9",2014-04-29,2014-04-29,"YB","BF","9","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","65%",""
+"2014-04-29_YB-BFq1",2014-04-29,2014-04-29,"YB","BF","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2014-04-29_YB-BFq4",2014-04-29,2014-04-29,"YB","BF","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-29_YB-BFq9",2014-04-29,2014-04-29,"YB","BF","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","65%",""
+"2014-04-29_YB-BFq1",2014-04-29,2014-04-29,"YB","BF","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2014-04-29_YB-BFq4",2014-04-29,2014-04-29,"YB","BF","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-29_YB-BFq9",2014-04-29,2014-04-29,"YB","BF","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","65%",""
+"2014-04-29_YB-BFq1",2014-04-29,2014-04-29,"YB","BF","1","Pp","Pollicipes_polymerus","Type 11",14,0.0875,160,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2014-04-29_YB-BFq4",2014-04-29,2014-04-29,"YB","BF","4","Pp","Pollicipes_polymerus","Type 11",16,0.0875,182.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-29_YB-BFq9",2014-04-29,2014-04-29,"YB","BF","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","65%",""
+"2014-04-29_YB-BFq1",2014-04-29,2014-04-29,"YB","BF","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2014-04-29_YB-BFq4",2014-04-29,2014-04-29,"YB","BF","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-29_YB-BFq9",2014-04-29,2014-04-29,"YB","BF","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","65%",""
+"2014-04-29_YB-BFq1",2014-04-29,2014-04-29,"YB","BF","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2014-04-29_YB-BFq4",2014-04-29,2014-04-29,"YB","BF","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-29_YB-BFq9",2014-04-29,2014-04-29,"YB","BF","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","65%",""
+"2014-04-29_YB-BFq1",2014-04-29,2014-04-29,"YB","BF","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2014-04-29_YB-BFq4",2014-04-29,2014-04-29,"YB","BF","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-04-29_YB-BFq9",2014-04-29,2014-04-29,"YB","BF","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","65%",""
+"2014-04-29_YB-Cq2",2014-04-29,2014-04-29,"YB","C","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Cq4",2014-04-29,2014-04-29,"YB","C","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-04-29_YB-Cq6",2014-04-29,2014-04-29,"YB","C","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Cq2",2014-04-29,2014-04-29,"YB","C","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Cq4",2014-04-29,2014-04-29,"YB","C","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-04-29_YB-Cq6",2014-04-29,2014-04-29,"YB","C","6","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Cq2",2014-04-29,2014-04-29,"YB","C","2","Bg","Balanus_glandula","Type 1",496,0.015625,31744,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Cq4",2014-04-29,2014-04-29,"YB","C","4","Bg","Balanus_glandula","Type 1",420,0.015625,26880,"c","Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-04-29_YB-Cq6",2014-04-29,2014-04-29,"YB","C","6","Bg","Balanus_glandula","Type 1",514,0.015625,32896,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Cq2",2014-04-29,2014-04-29,"YB","C","2","BgD","Balanus_glandula_(dead)","Type 2",23,0.015625,1472,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Cq4",2014-04-29,2014-04-29,"YB","C","4","BgD","Balanus_glandula_(dead)","Type 2",9,0.015625,576,"c","Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-04-29_YB-Cq6",2014-04-29,2014-04-29,"YB","C","6","BgD","Balanus_glandula_(dead)","Type 2",7,0.015625,448,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Cq2",2014-04-29,2014-04-29,"YB","C","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Cq4",2014-04-29,2014-04-29,"YB","C","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-04-29_YB-Cq6",2014-04-29,2014-04-29,"YB","C","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Cq2",2014-04-29,2014-04-29,"YB","C","2","Cth","Chthamalus_dalli","Type 3",18,0.015625,1152,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Cq4",2014-04-29,2014-04-29,"YB","C","4","Cth","Chthamalus_dalli","Type 3",2,0.015625,128,"c","Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-04-29_YB-Cq6",2014-04-29,2014-04-29,"YB","C","6","Cth","Chthamalus_dalli","Type 3",2,0.015625,128,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Cq2",2014-04-29,2014-04-29,"YB","C","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Cq4",2014-04-29,2014-04-29,"YB","C","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-04-29_YB-Cq6",2014-04-29,2014-04-29,"YB","C","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Cq2",2014-04-29,2014-04-29,"YB","C","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Cq4",2014-04-29,2014-04-29,"YB","C","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-04-29_YB-Cq6",2014-04-29,2014-04-29,"YB","C","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Cq2",2014-04-29,2014-04-29,"YB","C","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Cq4",2014-04-29,2014-04-29,"YB","C","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-04-29_YB-Cq6",2014-04-29,2014-04-29,"YB","C","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Cq2",2014-04-29,2014-04-29,"YB","C","2","Lim","Limpets","Type 12",66,0.0875,754.285714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Cq4",2014-04-29,2014-04-29,"YB","C","4","Lim","Limpets","Type 12",142,0.0875,1622.85714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-04-29_YB-Cq6",2014-04-29,2014-04-29,"YB","C","6","Lim","Limpets","Type 12",140,0.0875,1600,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Cq2",2014-04-29,2014-04-29,"YB","C","2","Ls","Littorina_sitkana","Type 13",22,0.0875,251.428571428571,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Cq4",2014-04-29,2014-04-29,"YB","C","4","Ls","Littorina_sitkana","Type 13",62,0.0875,708.571428571429,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-04-29_YB-Cq6",2014-04-29,2014-04-29,"YB","C","6","Ls","Littorina_sitkana","Type 13",11,0.0875,125.714285714286,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Cq2",2014-04-29,2014-04-29,"YB","C","2","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Cq4",2014-04-29,2014-04-29,"YB","C","4","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-04-29_YB-Cq6",2014-04-29,2014-04-29,"YB","C","6","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Cq2",2014-04-29,2014-04-29,"YB","C","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Cq4",2014-04-29,2014-04-29,"YB","C","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-04-29_YB-Cq6",2014-04-29,2014-04-29,"YB","C","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Cq2",2014-04-29,2014-04-29,"YB","C","2","Myt","Mytilus_spp","Type 7",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Cq4",2014-04-29,2014-04-29,"YB","C","4","Myt","Mytilus_spp","Type 7",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-04-29_YB-Cq6",2014-04-29,2014-04-29,"YB","C","6","Myt","Mytilus_spp","Type 7",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Cq2",2014-04-29,2014-04-29,"YB","C","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Cq4",2014-04-29,2014-04-29,"YB","C","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-04-29_YB-Cq6",2014-04-29,2014-04-29,"YB","C","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Cq2",2014-04-29,2014-04-29,"YB","C","2","Mt","Mytilus_trossulus","Type 15",117,0.015625,7488,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Cq4",2014-04-29,2014-04-29,"YB","C","4","Mt","Mytilus_trossulus","Type 15",100,0.015625,6400,"c","Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-04-29_YB-Cq6",2014-04-29,2014-04-29,"YB","C","6","Mt","Mytilus_trossulus","Type 15",103,0.015625,6592,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Cq2",2014-04-29,2014-04-29,"YB","C","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Cq4",2014-04-29,2014-04-29,"YB","C","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-04-29_YB-Cq6",2014-04-29,2014-04-29,"YB","C","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Cq2",2014-04-29,2014-04-29,"YB","C","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Cq4",2014-04-29,2014-04-29,"YB","C","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-04-29_YB-Cq6",2014-04-29,2014-04-29,"YB","C","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Cq2",2014-04-29,2014-04-29,"YB","C","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Cq4",2014-04-29,2014-04-29,"YB","C","4","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-04-29_YB-Cq6",2014-04-29,2014-04-29,"YB","C","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Cq2",2014-04-29,2014-04-29,"YB","C","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Cq4",2014-04-29,2014-04-29,"YB","C","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-04-29_YB-Cq6",2014-04-29,2014-04-29,"YB","C","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Cq2",2014-04-29,2014-04-29,"YB","C","2","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Cq4",2014-04-29,2014-04-29,"YB","C","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-04-29_YB-Cq6",2014-04-29,2014-04-29,"YB","C","6","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Cq2",2014-04-29,2014-04-29,"YB","C","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Cq4",2014-04-29,2014-04-29,"YB","C","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-04-29_YB-Cq6",2014-04-29,2014-04-29,"YB","C","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Cq2",2014-04-29,2014-04-29,"YB","C","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Cq4",2014-04-29,2014-04-29,"YB","C","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-04-29_YB-Cq6",2014-04-29,2014-04-29,"YB","C","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Cq2",2014-04-29,2014-04-29,"YB","C","2","Pp","Pollicipes_polymerus","Type 11",9,0.0875,102.857142857143,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Cq4",2014-04-29,2014-04-29,"YB","C","4","Pp","Pollicipes_polymerus","Type 11",33,0.0875,377.142857142857,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-04-29_YB-Cq6",2014-04-29,2014-04-29,"YB","C","6","Pp","Pollicipes_polymerus","Type 11",9,0.0875,102.857142857143,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Cq2",2014-04-29,2014-04-29,"YB","C","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Cq4",2014-04-29,2014-04-29,"YB","C","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-04-29_YB-Cq6",2014-04-29,2014-04-29,"YB","C","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Cq2",2014-04-29,2014-04-29,"YB","C","2","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Cq4",2014-04-29,2014-04-29,"YB","C","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-04-29_YB-Cq6",2014-04-29,2014-04-29,"YB","C","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Cq2",2014-04-29,2014-04-29,"YB","C","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Cq4",2014-04-29,2014-04-29,"YB","C","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-04-29_YB-Cq6",2014-04-29,2014-04-29,"YB","C","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-04-29_YB-Dq3",2014-04-29,2014-04-29,"YB","D","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-04-29_YB-Dq4",2014-04-29,2014-04-29,"YB","D","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2014-04-29_YB-Dq5",2014-04-29,2014-04-29,"YB","D","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-29_YB-Dq3",2014-04-29,2014-04-29,"YB","D","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-04-29_YB-Dq4",2014-04-29,2014-04-29,"YB","D","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2014-04-29_YB-Dq5",2014-04-29,2014-04-29,"YB","D","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-29_YB-Dq3",2014-04-29,2014-04-29,"YB","D","3","Bg","Balanus_glandula","Type 1",274,0.015625,17536,"c","Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-04-29_YB-Dq4",2014-04-29,2014-04-29,"YB","D","4","Bg","Balanus_glandula","Type 1",2388,0.0875,27291.4285714286,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2014-04-29_YB-Dq5",2014-04-29,2014-04-29,"YB","D","5","Bg","Balanus_glandula","Type 1",475,0.015625,30400,"c","Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-29_YB-Dq3",2014-04-29,2014-04-29,"YB","D","3","BgD","Balanus_glandula_(dead)","Type 2",12,0.015625,768,"c","Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-04-29_YB-Dq4",2014-04-29,2014-04-29,"YB","D","4","BgD","Balanus_glandula_(dead)","Type 2",16,0.0875,182.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2014-04-29_YB-Dq5",2014-04-29,2014-04-29,"YB","D","5","BgD","Balanus_glandula_(dead)","Type 2",17,0.015625,1088,"c","Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-29_YB-Dq3",2014-04-29,2014-04-29,"YB","D","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-04-29_YB-Dq4",2014-04-29,2014-04-29,"YB","D","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2014-04-29_YB-Dq5",2014-04-29,2014-04-29,"YB","D","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-29_YB-Dq3",2014-04-29,2014-04-29,"YB","D","3","Cth","Chthamalus_dalli","Type 3",2,0.015625,128,"c","Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-04-29_YB-Dq4",2014-04-29,2014-04-29,"YB","D","4","Cth","Chthamalus_dalli","Type 3",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2014-04-29_YB-Dq5",2014-04-29,2014-04-29,"YB","D","5","Cth","Chthamalus_dalli","Type 3",4,0.015625,256,"c","Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-29_YB-Dq3",2014-04-29,2014-04-29,"YB","D","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-04-29_YB-Dq4",2014-04-29,2014-04-29,"YB","D","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2014-04-29_YB-Dq5",2014-04-29,2014-04-29,"YB","D","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-29_YB-Dq3",2014-04-29,2014-04-29,"YB","D","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-04-29_YB-Dq4",2014-04-29,2014-04-29,"YB","D","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2014-04-29_YB-Dq5",2014-04-29,2014-04-29,"YB","D","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-29_YB-Dq3",2014-04-29,2014-04-29,"YB","D","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-04-29_YB-Dq4",2014-04-29,2014-04-29,"YB","D","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2014-04-29_YB-Dq5",2014-04-29,2014-04-29,"YB","D","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-29_YB-Dq3",2014-04-29,2014-04-29,"YB","D","3","Lim","Limpets","Type 12",139,0.0875,1588.57142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-04-29_YB-Dq4",2014-04-29,2014-04-29,"YB","D","4","Lim","Limpets","Type 12",52,0.0875,594.285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2014-04-29_YB-Dq5",2014-04-29,2014-04-29,"YB","D","5","Lim","Limpets","Type 12",253,0.0875,2891.42857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-29_YB-Dq3",2014-04-29,2014-04-29,"YB","D","3","Ls","Littorina_sitkana","Type 13",172,0.0875,1965.71428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-04-29_YB-Dq4",2014-04-29,2014-04-29,"YB","D","4","Ls","Littorina_sitkana","Type 13",58,0.0875,662.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2014-04-29_YB-Dq5",2014-04-29,2014-04-29,"YB","D","5","Ls","Littorina_sitkana","Type 13",192,0.0875,2194.28571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-29_YB-Dq3",2014-04-29,2014-04-29,"YB","D","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-04-29_YB-Dq4",2014-04-29,2014-04-29,"YB","D","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2014-04-29_YB-Dq5",2014-04-29,2014-04-29,"YB","D","5","Mc","Mytilus_californianus","Type 17",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-29_YB-Dq3",2014-04-29,2014-04-29,"YB","D","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-04-29_YB-Dq4",2014-04-29,2014-04-29,"YB","D","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2014-04-29_YB-Dq5",2014-04-29,2014-04-29,"YB","D","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-29_YB-Dq3",2014-04-29,2014-04-29,"YB","D","3","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-04-29_YB-Dq4",2014-04-29,2014-04-29,"YB","D","4","Myt","Mytilus_spp","Type 7",173,0.0875,1977.14285714286,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2014-04-29_YB-Dq5",2014-04-29,2014-04-29,"YB","D","5","Myt","Mytilus_spp","Type 7",59,0.0875,674.285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-29_YB-Dq3",2014-04-29,2014-04-29,"YB","D","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-04-29_YB-Dq4",2014-04-29,2014-04-29,"YB","D","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2014-04-29_YB-Dq5",2014-04-29,2014-04-29,"YB","D","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-29_YB-Dq3",2014-04-29,2014-04-29,"YB","D","3","Mt","Mytilus_trossulus","Type 15",479,0.0875,5474.28571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-04-29_YB-Dq4",2014-04-29,2014-04-29,"YB","D","4","Mt","Mytilus_trossulus","Type 15",31,0.0875,354.285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2014-04-29_YB-Dq5",2014-04-29,2014-04-29,"YB","D","5","Mt","Mytilus_trossulus","Type 15",231,0.0875,2640,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-29_YB-Dq3",2014-04-29,2014-04-29,"YB","D","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-04-29_YB-Dq4",2014-04-29,2014-04-29,"YB","D","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2014-04-29_YB-Dq5",2014-04-29,2014-04-29,"YB","D","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-29_YB-Dq3",2014-04-29,2014-04-29,"YB","D","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-04-29_YB-Dq4",2014-04-29,2014-04-29,"YB","D","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2014-04-29_YB-Dq5",2014-04-29,2014-04-29,"YB","D","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-29_YB-Dq3",2014-04-29,2014-04-29,"YB","D","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-04-29_YB-Dq4",2014-04-29,2014-04-29,"YB","D","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2014-04-29_YB-Dq5",2014-04-29,2014-04-29,"YB","D","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-29_YB-Dq3",2014-04-29,2014-04-29,"YB","D","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-04-29_YB-Dq4",2014-04-29,2014-04-29,"YB","D","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2014-04-29_YB-Dq5",2014-04-29,2014-04-29,"YB","D","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-29_YB-Dq3",2014-04-29,2014-04-29,"YB","D","3","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-04-29_YB-Dq4",2014-04-29,2014-04-29,"YB","D","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2014-04-29_YB-Dq5",2014-04-29,2014-04-29,"YB","D","5","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-29_YB-Dq3",2014-04-29,2014-04-29,"YB","D","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-04-29_YB-Dq4",2014-04-29,2014-04-29,"YB","D","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2014-04-29_YB-Dq5",2014-04-29,2014-04-29,"YB","D","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-29_YB-Dq3",2014-04-29,2014-04-29,"YB","D","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-04-29_YB-Dq4",2014-04-29,2014-04-29,"YB","D","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2014-04-29_YB-Dq5",2014-04-29,2014-04-29,"YB","D","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-29_YB-Dq3",2014-04-29,2014-04-29,"YB","D","3","Pp","Pollicipes_polymerus","Type 11",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-04-29_YB-Dq4",2014-04-29,2014-04-29,"YB","D","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2014-04-29_YB-Dq5",2014-04-29,2014-04-29,"YB","D","5","Pp","Pollicipes_polymerus","Type 11",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-29_YB-Dq3",2014-04-29,2014-04-29,"YB","D","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-04-29_YB-Dq4",2014-04-29,2014-04-29,"YB","D","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2014-04-29_YB-Dq5",2014-04-29,2014-04-29,"YB","D","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-29_YB-Dq3",2014-04-29,2014-04-29,"YB","D","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-04-29_YB-Dq4",2014-04-29,2014-04-29,"YB","D","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2014-04-29_YB-Dq5",2014-04-29,2014-04-29,"YB","D","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-29_YB-Dq3",2014-04-29,2014-04-29,"YB","D","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-04-29_YB-Dq4",2014-04-29,2014-04-29,"YB","D","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2014-04-29_YB-Dq5",2014-04-29,2014-04-29,"YB","D","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-04-29_YB-Eq3",2014-04-29,2014-04-29,"YB","E","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","counts may be low due to patches of water, blur and high algae coverage"
+"2014-04-29_YB-Eq4",2014-04-29,2014-04-29,"YB","E","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","counts may be low due to glare"
+"2014-04-29_YB-Eq8",2014-04-29,2014-04-29,"YB","E","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts may be low due to blur/glare patches"
+"2014-04-29_YB-Eq3",2014-04-29,2014-04-29,"YB","E","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","counts may be low due to patches of water, blur and high algae coverage"
+"2014-04-29_YB-Eq4",2014-04-29,2014-04-29,"YB","E","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","counts may be low due to glare"
+"2014-04-29_YB-Eq8",2014-04-29,2014-04-29,"YB","E","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts may be low due to blur/glare patches"
+"2014-04-29_YB-Eq3",2014-04-29,2014-04-29,"YB","E","3","Bg","Balanus_glandula","Type 1",1290,0.0875,14742.8571428571,NA,"Stephanie Merhoff","Finished","Full","Full","50%","counts may be low due to patches of water, blur and high algae coverage"
+"2014-04-29_YB-Eq4",2014-04-29,2014-04-29,"YB","E","4","Bg","Balanus_glandula","Type 1",430,0.015625,27520,"c","Stephanie Merhoff","Finished","Full","Cropped","15%","counts may be low due to glare"
+"2014-04-29_YB-Eq8",2014-04-29,2014-04-29,"YB","E","8","Bg","Balanus_glandula","Type 1",2027,0.0875,23165.7142857143,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts may be low due to blur/glare patches"
+"2014-04-29_YB-Eq3",2014-04-29,2014-04-29,"YB","E","3","BgD","Balanus_glandula_(dead)","Type 2",23,0.0875,262.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","50%","counts may be low due to patches of water, blur and high algae coverage"
+"2014-04-29_YB-Eq4",2014-04-29,2014-04-29,"YB","E","4","BgD","Balanus_glandula_(dead)","Type 2",10,0.015625,640,"c","Stephanie Merhoff","Finished","Full","Cropped","15%","counts may be low due to glare"
+"2014-04-29_YB-Eq8",2014-04-29,2014-04-29,"YB","E","8","BgD","Balanus_glandula_(dead)","Type 2",28,0.0875,320,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts may be low due to blur/glare patches"
+"2014-04-29_YB-Eq3",2014-04-29,2014-04-29,"YB","E","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","counts may be low due to patches of water, blur and high algae coverage"
+"2014-04-29_YB-Eq4",2014-04-29,2014-04-29,"YB","E","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","counts may be low due to glare"
+"2014-04-29_YB-Eq8",2014-04-29,2014-04-29,"YB","E","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts may be low due to blur/glare patches"
+"2014-04-29_YB-Eq3",2014-04-29,2014-04-29,"YB","E","3","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","counts may be low due to patches of water, blur and high algae coverage"
+"2014-04-29_YB-Eq4",2014-04-29,2014-04-29,"YB","E","4","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","15%","counts may be low due to glare"
+"2014-04-29_YB-Eq8",2014-04-29,2014-04-29,"YB","E","8","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts may be low due to blur/glare patches"
+"2014-04-29_YB-Eq3",2014-04-29,2014-04-29,"YB","E","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","counts may be low due to patches of water, blur and high algae coverage"
+"2014-04-29_YB-Eq4",2014-04-29,2014-04-29,"YB","E","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","15%","counts may be low due to glare"
+"2014-04-29_YB-Eq8",2014-04-29,2014-04-29,"YB","E","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts may be low due to blur/glare patches"
+"2014-04-29_YB-Eq3",2014-04-29,2014-04-29,"YB","E","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","counts may be low due to patches of water, blur and high algae coverage"
+"2014-04-29_YB-Eq4",2014-04-29,2014-04-29,"YB","E","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","counts may be low due to glare"
+"2014-04-29_YB-Eq8",2014-04-29,2014-04-29,"YB","E","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts may be low due to blur/glare patches"
+"2014-04-29_YB-Eq3",2014-04-29,2014-04-29,"YB","E","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","counts may be low due to patches of water, blur and high algae coverage"
+"2014-04-29_YB-Eq4",2014-04-29,2014-04-29,"YB","E","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","counts may be low due to glare"
+"2014-04-29_YB-Eq8",2014-04-29,2014-04-29,"YB","E","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts may be low due to blur/glare patches"
+"2014-04-29_YB-Eq3",2014-04-29,2014-04-29,"YB","E","3","Lim","Limpets","Type 12",36,0.0875,411.428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","50%","counts may be low due to patches of water, blur and high algae coverage"
+"2014-04-29_YB-Eq4",2014-04-29,2014-04-29,"YB","E","4","Lim","Limpets","Type 12",8,0.0875,91.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","counts may be low due to glare"
+"2014-04-29_YB-Eq8",2014-04-29,2014-04-29,"YB","E","8","Lim","Limpets","Type 12",27,0.0875,308.571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts may be low due to blur/glare patches"
+"2014-04-29_YB-Eq3",2014-04-29,2014-04-29,"YB","E","3","Ls","Littorina_sitkana","Type 13",13,0.0875,148.571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","50%","counts may be low due to patches of water, blur and high algae coverage"
+"2014-04-29_YB-Eq4",2014-04-29,2014-04-29,"YB","E","4","Ls","Littorina_sitkana","Type 13",89,0.0875,1017.14285714286,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","counts may be low due to glare"
+"2014-04-29_YB-Eq8",2014-04-29,2014-04-29,"YB","E","8","Ls","Littorina_sitkana","Type 13",107,0.0875,1222.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts may be low due to blur/glare patches"
+"2014-04-29_YB-Eq3",2014-04-29,2014-04-29,"YB","E","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","counts may be low due to patches of water, blur and high algae coverage"
+"2014-04-29_YB-Eq4",2014-04-29,2014-04-29,"YB","E","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","counts may be low due to glare"
+"2014-04-29_YB-Eq8",2014-04-29,2014-04-29,"YB","E","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts may be low due to blur/glare patches"
+"2014-04-29_YB-Eq3",2014-04-29,2014-04-29,"YB","E","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","counts may be low due to patches of water, blur and high algae coverage"
+"2014-04-29_YB-Eq4",2014-04-29,2014-04-29,"YB","E","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","counts may be low due to glare"
+"2014-04-29_YB-Eq8",2014-04-29,2014-04-29,"YB","E","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts may be low due to blur/glare patches"
+"2014-04-29_YB-Eq3",2014-04-29,2014-04-29,"YB","E","3","Myt","Mytilus_spp","Type 7",386,0.0875,4411.42857142857,NA,"Stephanie Merhoff","Finished","Full","Full","50%","counts may be low due to patches of water, blur and high algae coverage"
+"2014-04-29_YB-Eq4",2014-04-29,2014-04-29,"YB","E","4","Myt","Mytilus_spp","Type 7",623,0.0875,7120,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","counts may be low due to glare"
+"2014-04-29_YB-Eq8",2014-04-29,2014-04-29,"YB","E","8","Myt","Mytilus_spp","Type 7",991,0.0875,11325.7142857143,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts may be low due to blur/glare patches"
+"2014-04-29_YB-Eq3",2014-04-29,2014-04-29,"YB","E","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","counts may be low due to patches of water, blur and high algae coverage"
+"2014-04-29_YB-Eq4",2014-04-29,2014-04-29,"YB","E","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","counts may be low due to glare"
+"2014-04-29_YB-Eq8",2014-04-29,2014-04-29,"YB","E","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts may be low due to blur/glare patches"
+"2014-04-29_YB-Eq3",2014-04-29,2014-04-29,"YB","E","3","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","counts may be low due to patches of water, blur and high algae coverage"
+"2014-04-29_YB-Eq4",2014-04-29,2014-04-29,"YB","E","4","Mt","Mytilus_trossulus","Type 15",30,0.0875,342.857142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","counts may be low due to glare"
+"2014-04-29_YB-Eq8",2014-04-29,2014-04-29,"YB","E","8","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts may be low due to blur/glare patches"
+"2014-04-29_YB-Eq3",2014-04-29,2014-04-29,"YB","E","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","counts may be low due to patches of water, blur and high algae coverage"
+"2014-04-29_YB-Eq4",2014-04-29,2014-04-29,"YB","E","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","counts may be low due to glare"
+"2014-04-29_YB-Eq8",2014-04-29,2014-04-29,"YB","E","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts may be low due to blur/glare patches"
+"2014-04-29_YB-Eq3",2014-04-29,2014-04-29,"YB","E","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","counts may be low due to patches of water, blur and high algae coverage"
+"2014-04-29_YB-Eq4",2014-04-29,2014-04-29,"YB","E","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","counts may be low due to glare"
+"2014-04-29_YB-Eq8",2014-04-29,2014-04-29,"YB","E","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts may be low due to blur/glare patches"
+"2014-04-29_YB-Eq3",2014-04-29,2014-04-29,"YB","E","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","counts may be low due to patches of water, blur and high algae coverage"
+"2014-04-29_YB-Eq4",2014-04-29,2014-04-29,"YB","E","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","counts may be low due to glare"
+"2014-04-29_YB-Eq8",2014-04-29,2014-04-29,"YB","E","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts may be low due to blur/glare patches"
+"2014-04-29_YB-Eq3",2014-04-29,2014-04-29,"YB","E","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","counts may be low due to patches of water, blur and high algae coverage"
+"2014-04-29_YB-Eq4",2014-04-29,2014-04-29,"YB","E","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","counts may be low due to glare"
+"2014-04-29_YB-Eq8",2014-04-29,2014-04-29,"YB","E","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts may be low due to blur/glare patches"
+"2014-04-29_YB-Eq3",2014-04-29,2014-04-29,"YB","E","3","No","Nucella_ostrina","Type 9",4,0.0875,45.7142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","50%","counts may be low due to patches of water, blur and high algae coverage"
+"2014-04-29_YB-Eq4",2014-04-29,2014-04-29,"YB","E","4","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","counts may be low due to glare"
+"2014-04-29_YB-Eq8",2014-04-29,2014-04-29,"YB","E","8","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts may be low due to blur/glare patches"
+"2014-04-29_YB-Eq3",2014-04-29,2014-04-29,"YB","E","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","counts may be low due to patches of water, blur and high algae coverage"
+"2014-04-29_YB-Eq4",2014-04-29,2014-04-29,"YB","E","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","counts may be low due to glare"
+"2014-04-29_YB-Eq8",2014-04-29,2014-04-29,"YB","E","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts may be low due to blur/glare patches"
+"2014-04-29_YB-Eq3",2014-04-29,2014-04-29,"YB","E","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","counts may be low due to patches of water, blur and high algae coverage"
+"2014-04-29_YB-Eq4",2014-04-29,2014-04-29,"YB","E","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","counts may be low due to glare"
+"2014-04-29_YB-Eq8",2014-04-29,2014-04-29,"YB","E","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts may be low due to blur/glare patches"
+"2014-04-29_YB-Eq3",2014-04-29,2014-04-29,"YB","E","3","Pp","Pollicipes_polymerus","Type 11",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","50%","counts may be low due to patches of water, blur and high algae coverage"
+"2014-04-29_YB-Eq4",2014-04-29,2014-04-29,"YB","E","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","counts may be low due to glare"
+"2014-04-29_YB-Eq8",2014-04-29,2014-04-29,"YB","E","8","Pp","Pollicipes_polymerus","Type 11",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts may be low due to blur/glare patches"
+"2014-04-29_YB-Eq3",2014-04-29,2014-04-29,"YB","E","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","counts may be low due to patches of water, blur and high algae coverage"
+"2014-04-29_YB-Eq4",2014-04-29,2014-04-29,"YB","E","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","counts may be low due to glare"
+"2014-04-29_YB-Eq8",2014-04-29,2014-04-29,"YB","E","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts may be low due to blur/glare patches"
+"2014-04-29_YB-Eq3",2014-04-29,2014-04-29,"YB","E","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","counts may be low due to patches of water, blur and high algae coverage"
+"2014-04-29_YB-Eq4",2014-04-29,2014-04-29,"YB","E","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","counts may be low due to glare"
+"2014-04-29_YB-Eq8",2014-04-29,2014-04-29,"YB","E","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts may be low due to blur/glare patches"
+"2014-04-29_YB-Eq3",2014-04-29,2014-04-29,"YB","E","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","counts may be low due to patches of water, blur and high algae coverage"
+"2014-04-29_YB-Eq4",2014-04-29,2014-04-29,"YB","E","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","counts may be low due to glare"
+"2014-04-29_YB-Eq8",2014-04-29,2014-04-29,"YB","E","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts may be low due to blur/glare patches"
+"2014-04-29_YB-Fq4",2014-04-29,2014-04-29,"YB","F","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-Fq5",2014-04-29,2014-04-29,"YB","F","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-29_YB-Fq6",2014-04-29,2014-04-29,"YB","F","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-Fq4",2014-04-29,2014-04-29,"YB","F","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-Fq5",2014-04-29,2014-04-29,"YB","F","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-29_YB-Fq6",2014-04-29,2014-04-29,"YB","F","6","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-Fq4",2014-04-29,2014-04-29,"YB","F","4","Bg","Balanus_glandula","Type 1",646,0.015625,41344,"c","Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-Fq5",2014-04-29,2014-04-29,"YB","F","5","Bg","Balanus_glandula","Type 1",413,0.015625,26432,"c","Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-29_YB-Fq6",2014-04-29,2014-04-29,"YB","F","6","Bg","Balanus_glandula","Type 1",693,0.015625,44352,"c","Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-Fq4",2014-04-29,2014-04-29,"YB","F","4","BgD","Balanus_glandula_(dead)","Type 2",7,0.015625,448,"c","Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-Fq5",2014-04-29,2014-04-29,"YB","F","5","BgD","Balanus_glandula_(dead)","Type 2",6,0.015625,384,"c","Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-29_YB-Fq6",2014-04-29,2014-04-29,"YB","F","6","BgD","Balanus_glandula_(dead)","Type 2",36,0.015625,2304,"c","Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-Fq4",2014-04-29,2014-04-29,"YB","F","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-Fq5",2014-04-29,2014-04-29,"YB","F","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-29_YB-Fq6",2014-04-29,2014-04-29,"YB","F","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-Fq4",2014-04-29,2014-04-29,"YB","F","4","Cth","Chthamalus_dalli","Type 3",13,0.015625,832,"c","Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-Fq5",2014-04-29,2014-04-29,"YB","F","5","Cth","Chthamalus_dalli","Type 3",3,0.015625,192,"c","Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-29_YB-Fq6",2014-04-29,2014-04-29,"YB","F","6","Cth","Chthamalus_dalli","Type 3",5,0.015625,320,"c","Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-Fq4",2014-04-29,2014-04-29,"YB","F","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-Fq5",2014-04-29,2014-04-29,"YB","F","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-29_YB-Fq6",2014-04-29,2014-04-29,"YB","F","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-Fq4",2014-04-29,2014-04-29,"YB","F","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-Fq5",2014-04-29,2014-04-29,"YB","F","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-29_YB-Fq6",2014-04-29,2014-04-29,"YB","F","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-Fq4",2014-04-29,2014-04-29,"YB","F","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-Fq5",2014-04-29,2014-04-29,"YB","F","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-29_YB-Fq6",2014-04-29,2014-04-29,"YB","F","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-Fq4",2014-04-29,2014-04-29,"YB","F","4","Lim","Limpets","Type 12",584,0.0875,6674.28571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-Fq5",2014-04-29,2014-04-29,"YB","F","5","Lim","Limpets","Type 12",643,0.0875,7348.57142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-29_YB-Fq6",2014-04-29,2014-04-29,"YB","F","6","Lim","Limpets","Type 12",704,0.0875,8045.71428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-Fq4",2014-04-29,2014-04-29,"YB","F","4","Ls","Littorina_sitkana","Type 13",210,0.0875,2400,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-Fq5",2014-04-29,2014-04-29,"YB","F","5","Ls","Littorina_sitkana","Type 13",204,0.0875,2331.42857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-29_YB-Fq6",2014-04-29,2014-04-29,"YB","F","6","Ls","Littorina_sitkana","Type 13",154,0.0875,1760,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-Fq4",2014-04-29,2014-04-29,"YB","F","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-Fq5",2014-04-29,2014-04-29,"YB","F","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-29_YB-Fq6",2014-04-29,2014-04-29,"YB","F","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-Fq4",2014-04-29,2014-04-29,"YB","F","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-Fq5",2014-04-29,2014-04-29,"YB","F","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-29_YB-Fq6",2014-04-29,2014-04-29,"YB","F","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-Fq4",2014-04-29,2014-04-29,"YB","F","4","Myt","Mytilus_spp","Type 7",532,0.0875,6080,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-Fq5",2014-04-29,2014-04-29,"YB","F","5","Myt","Mytilus_spp","Type 7",402,0.0875,4594.28571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-29_YB-Fq6",2014-04-29,2014-04-29,"YB","F","6","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-Fq4",2014-04-29,2014-04-29,"YB","F","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-Fq5",2014-04-29,2014-04-29,"YB","F","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-29_YB-Fq6",2014-04-29,2014-04-29,"YB","F","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-Fq4",2014-04-29,2014-04-29,"YB","F","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-Fq5",2014-04-29,2014-04-29,"YB","F","5","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-29_YB-Fq6",2014-04-29,2014-04-29,"YB","F","6","Mt","Mytilus_trossulus","Type 15",414,0.0875,4731.42857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-Fq4",2014-04-29,2014-04-29,"YB","F","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-Fq5",2014-04-29,2014-04-29,"YB","F","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-29_YB-Fq6",2014-04-29,2014-04-29,"YB","F","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-Fq4",2014-04-29,2014-04-29,"YB","F","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-Fq5",2014-04-29,2014-04-29,"YB","F","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-29_YB-Fq6",2014-04-29,2014-04-29,"YB","F","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-Fq4",2014-04-29,2014-04-29,"YB","F","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-Fq5",2014-04-29,2014-04-29,"YB","F","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-29_YB-Fq6",2014-04-29,2014-04-29,"YB","F","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-Fq4",2014-04-29,2014-04-29,"YB","F","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-Fq5",2014-04-29,2014-04-29,"YB","F","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-29_YB-Fq6",2014-04-29,2014-04-29,"YB","F","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-Fq4",2014-04-29,2014-04-29,"YB","F","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-Fq5",2014-04-29,2014-04-29,"YB","F","5","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-29_YB-Fq6",2014-04-29,2014-04-29,"YB","F","6","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-Fq4",2014-04-29,2014-04-29,"YB","F","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-Fq5",2014-04-29,2014-04-29,"YB","F","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-29_YB-Fq6",2014-04-29,2014-04-29,"YB","F","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-Fq4",2014-04-29,2014-04-29,"YB","F","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-Fq5",2014-04-29,2014-04-29,"YB","F","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-29_YB-Fq6",2014-04-29,2014-04-29,"YB","F","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-Fq4",2014-04-29,2014-04-29,"YB","F","4","Pp","Pollicipes_polymerus","Type 11",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-Fq5",2014-04-29,2014-04-29,"YB","F","5","Pp","Pollicipes_polymerus","Type 11",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-29_YB-Fq6",2014-04-29,2014-04-29,"YB","F","6","Pp","Pollicipes_polymerus","Type 11",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-Fq4",2014-04-29,2014-04-29,"YB","F","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-Fq5",2014-04-29,2014-04-29,"YB","F","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-29_YB-Fq6",2014-04-29,2014-04-29,"YB","F","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-Fq4",2014-04-29,2014-04-29,"YB","F","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-Fq5",2014-04-29,2014-04-29,"YB","F","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-29_YB-Fq6",2014-04-29,2014-04-29,"YB","F","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-Fq4",2014-04-29,2014-04-29,"YB","F","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-Fq5",2014-04-29,2014-04-29,"YB","F","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-04-29_YB-Fq6",2014-04-29,2014-04-29,"YB","F","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-04-29_YB-Gq3",2014-04-29,2014-04-29,"YB","G","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to high water"
+"2014-04-29_YB-Gq5",2014-04-29,2014-04-29,"YB","G","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","0%","Counts low due to glare and ~40% water cover."
+"2014-04-29_YB-Gq8",2014-04-29,2014-04-29,"YB","G","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts may be low due to glare"
+"2014-04-29_YB-Gq3",2014-04-29,2014-04-29,"YB","G","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to high water"
+"2014-04-29_YB-Gq5",2014-04-29,2014-04-29,"YB","G","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","0%","Counts low due to glare and ~40% water cover."
+"2014-04-29_YB-Gq8",2014-04-29,2014-04-29,"YB","G","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts may be low due to glare"
+"2014-04-29_YB-Gq3",2014-04-29,2014-04-29,"YB","G","3","Bg","Balanus_glandula","Type 1",441,0.0875,5040,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to high water"
+"2014-04-29_YB-Gq5",2014-04-29,2014-04-29,"YB","G","5","Bg","Balanus_glandula","Type 1",821,0.0875,9382.85714285714,NA,"Beatriz Vaca","Finished","Cropped","Full","0%","Counts low due to glare and ~40% water cover."
+"2014-04-29_YB-Gq8",2014-04-29,2014-04-29,"YB","G","8","Bg","Balanus_glandula","Type 1",677,0.0875,7737.14285714286,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts may be low due to glare"
+"2014-04-29_YB-Gq3",2014-04-29,2014-04-29,"YB","G","3","BgD","Balanus_glandula_(dead)","Type 2",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to high water"
+"2014-04-29_YB-Gq5",2014-04-29,2014-04-29,"YB","G","5","BgD","Balanus_glandula_(dead)","Type 2",39,0.0875,445.714285714286,NA,"Beatriz Vaca","Finished","Cropped","Full","0%","Counts low due to glare and ~40% water cover."
+"2014-04-29_YB-Gq8",2014-04-29,2014-04-29,"YB","G","8","BgD","Balanus_glandula_(dead)","Type 2",64,0.0875,731.428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts may be low due to glare"
+"2014-04-29_YB-Gq3",2014-04-29,2014-04-29,"YB","G","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to high water"
+"2014-04-29_YB-Gq5",2014-04-29,2014-04-29,"YB","G","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","0%","Counts low due to glare and ~40% water cover."
+"2014-04-29_YB-Gq8",2014-04-29,2014-04-29,"YB","G","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts may be low due to glare"
+"2014-04-29_YB-Gq3",2014-04-29,2014-04-29,"YB","G","3","Cth","Chthamalus_dalli","Type 3",81,0.0875,925.714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to high water"
+"2014-04-29_YB-Gq5",2014-04-29,2014-04-29,"YB","G","5","Cth","Chthamalus_dalli","Type 3",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Cropped","Full","0%","Counts low due to glare and ~40% water cover."
+"2014-04-29_YB-Gq8",2014-04-29,2014-04-29,"YB","G","8","Cth","Chthamalus_dalli","Type 3",98,0.0875,1120,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts may be low due to glare"
+"2014-04-29_YB-Gq3",2014-04-29,2014-04-29,"YB","G","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to high water"
+"2014-04-29_YB-Gq5",2014-04-29,2014-04-29,"YB","G","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","0%","Counts low due to glare and ~40% water cover."
+"2014-04-29_YB-Gq8",2014-04-29,2014-04-29,"YB","G","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts may be low due to glare"
+"2014-04-29_YB-Gq3",2014-04-29,2014-04-29,"YB","G","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to high water"
+"2014-04-29_YB-Gq5",2014-04-29,2014-04-29,"YB","G","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","0%","Counts low due to glare and ~40% water cover."
+"2014-04-29_YB-Gq8",2014-04-29,2014-04-29,"YB","G","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts may be low due to glare"
+"2014-04-29_YB-Gq3",2014-04-29,2014-04-29,"YB","G","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to high water"
+"2014-04-29_YB-Gq5",2014-04-29,2014-04-29,"YB","G","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","0%","Counts low due to glare and ~40% water cover."
+"2014-04-29_YB-Gq8",2014-04-29,2014-04-29,"YB","G","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts may be low due to glare"
+"2014-04-29_YB-Gq3",2014-04-29,2014-04-29,"YB","G","3","Lim","Limpets","Type 12",37,0.0875,422.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to high water"
+"2014-04-29_YB-Gq5",2014-04-29,2014-04-29,"YB","G","5","Lim","Limpets","Type 12",74,0.0875,845.714285714286,NA,"Beatriz Vaca","Finished","Cropped","Full","0%","Counts low due to glare and ~40% water cover."
+"2014-04-29_YB-Gq8",2014-04-29,2014-04-29,"YB","G","8","Lim","Limpets","Type 12",18,0.0875,205.714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts may be low due to glare"
+"2014-04-29_YB-Gq3",2014-04-29,2014-04-29,"YB","G","3","Ls","Littorina_sitkana","Type 13",104,0.0875,1188.57142857143,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to high water"
+"2014-04-29_YB-Gq5",2014-04-29,2014-04-29,"YB","G","5","Ls","Littorina_sitkana","Type 13",75,0.0875,857.142857142857,NA,"Beatriz Vaca","Finished","Cropped","Full","0%","Counts low due to glare and ~40% water cover."
+"2014-04-29_YB-Gq8",2014-04-29,2014-04-29,"YB","G","8","Ls","Littorina_sitkana","Type 13",68,0.0875,777.142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts may be low due to glare"
+"2014-04-29_YB-Gq3",2014-04-29,2014-04-29,"YB","G","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to high water"
+"2014-04-29_YB-Gq5",2014-04-29,2014-04-29,"YB","G","5","Mc","Mytilus_californianus","Type 17",6,0.015625,384,"c","Beatriz Vaca","Finished","Cropped","Full","0%","Counts low due to glare and ~40% water cover."
+"2014-04-29_YB-Gq8",2014-04-29,2014-04-29,"YB","G","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts may be low due to glare"
+"2014-04-29_YB-Gq3",2014-04-29,2014-04-29,"YB","G","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to high water"
+"2014-04-29_YB-Gq5",2014-04-29,2014-04-29,"YB","G","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","0%","Counts low due to glare and ~40% water cover."
+"2014-04-29_YB-Gq8",2014-04-29,2014-04-29,"YB","G","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts may be low due to glare"
+"2014-04-29_YB-Gq3",2014-04-29,2014-04-29,"YB","G","3","Myt","Mytilus_spp","Type 7",1070,0.0875,12228.5714285714,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to high water"
+"2014-04-29_YB-Gq5",2014-04-29,2014-04-29,"YB","G","5","Myt","Mytilus_spp","Type 7",267,0.015625,17088,"c","Beatriz Vaca","Finished","Cropped","Full","0%","Counts low due to glare and ~40% water cover."
+"2014-04-29_YB-Gq8",2014-04-29,2014-04-29,"YB","G","8","Myt","Mytilus_spp","Type 7",807,0.0875,9222.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts may be low due to glare"
+"2014-04-29_YB-Gq3",2014-04-29,2014-04-29,"YB","G","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to high water"
+"2014-04-29_YB-Gq5",2014-04-29,2014-04-29,"YB","G","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","0%","Counts low due to glare and ~40% water cover."
+"2014-04-29_YB-Gq8",2014-04-29,2014-04-29,"YB","G","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts may be low due to glare"
+"2014-04-29_YB-Gq3",2014-04-29,2014-04-29,"YB","G","3","Mt","Mytilus_trossulus","Type 15",148,0.0875,1691.42857142857,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to high water"
+"2014-04-29_YB-Gq5",2014-04-29,2014-04-29,"YB","G","5","Mt","Mytilus_trossulus","Type 15",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","0%","Counts low due to glare and ~40% water cover."
+"2014-04-29_YB-Gq8",2014-04-29,2014-04-29,"YB","G","8","Mt","Mytilus_trossulus","Type 15",184,0.0875,2102.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts may be low due to glare"
+"2014-04-29_YB-Gq3",2014-04-29,2014-04-29,"YB","G","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to high water"
+"2014-04-29_YB-Gq5",2014-04-29,2014-04-29,"YB","G","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","0%","Counts low due to glare and ~40% water cover."
+"2014-04-29_YB-Gq8",2014-04-29,2014-04-29,"YB","G","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts may be low due to glare"
+"2014-04-29_YB-Gq3",2014-04-29,2014-04-29,"YB","G","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to high water"
+"2014-04-29_YB-Gq5",2014-04-29,2014-04-29,"YB","G","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","0%","Counts low due to glare and ~40% water cover."
+"2014-04-29_YB-Gq8",2014-04-29,2014-04-29,"YB","G","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts may be low due to glare"
+"2014-04-29_YB-Gq3",2014-04-29,2014-04-29,"YB","G","3","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to high water"
+"2014-04-29_YB-Gq5",2014-04-29,2014-04-29,"YB","G","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","0%","Counts low due to glare and ~40% water cover."
+"2014-04-29_YB-Gq8",2014-04-29,2014-04-29,"YB","G","8","Nc","Nucella_canaliculata","Type 10",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts may be low due to glare"
+"2014-04-29_YB-Gq3",2014-04-29,2014-04-29,"YB","G","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to high water"
+"2014-04-29_YB-Gq5",2014-04-29,2014-04-29,"YB","G","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","0%","Counts low due to glare and ~40% water cover."
+"2014-04-29_YB-Gq8",2014-04-29,2014-04-29,"YB","G","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts may be low due to glare"
+"2014-04-29_YB-Gq3",2014-04-29,2014-04-29,"YB","G","3","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to high water"
+"2014-04-29_YB-Gq5",2014-04-29,2014-04-29,"YB","G","5","No","Nucella_ostrina","Type 9",14,0.0875,160,NA,"Beatriz Vaca","Finished","Cropped","Full","0%","Counts low due to glare and ~40% water cover."
+"2014-04-29_YB-Gq8",2014-04-29,2014-04-29,"YB","G","8","No","Nucella_ostrina","Type 9",27,0.0875,308.571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts may be low due to glare"
+"2014-04-29_YB-Gq3",2014-04-29,2014-04-29,"YB","G","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to high water"
+"2014-04-29_YB-Gq5",2014-04-29,2014-04-29,"YB","G","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","0%","Counts low due to glare and ~40% water cover."
+"2014-04-29_YB-Gq8",2014-04-29,2014-04-29,"YB","G","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts may be low due to glare"
+"2014-04-29_YB-Gq3",2014-04-29,2014-04-29,"YB","G","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to high water"
+"2014-04-29_YB-Gq5",2014-04-29,2014-04-29,"YB","G","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","0%","Counts low due to glare and ~40% water cover."
+"2014-04-29_YB-Gq8",2014-04-29,2014-04-29,"YB","G","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts may be low due to glare"
+"2014-04-29_YB-Gq3",2014-04-29,2014-04-29,"YB","G","3","Pp","Pollicipes_polymerus","Type 11",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to high water"
+"2014-04-29_YB-Gq5",2014-04-29,2014-04-29,"YB","G","5","Pp","Pollicipes_polymerus","Type 11",24,0.0875,274.285714285714,NA,"Beatriz Vaca","Finished","Cropped","Full","0%","Counts low due to glare and ~40% water cover."
+"2014-04-29_YB-Gq8",2014-04-29,2014-04-29,"YB","G","8","Pp","Pollicipes_polymerus","Type 11",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts may be low due to glare"
+"2014-04-29_YB-Gq3",2014-04-29,2014-04-29,"YB","G","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to high water"
+"2014-04-29_YB-Gq5",2014-04-29,2014-04-29,"YB","G","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","0%","Counts low due to glare and ~40% water cover."
+"2014-04-29_YB-Gq8",2014-04-29,2014-04-29,"YB","G","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts may be low due to glare"
+"2014-04-29_YB-Gq3",2014-04-29,2014-04-29,"YB","G","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to high water"
+"2014-04-29_YB-Gq5",2014-04-29,2014-04-29,"YB","G","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","0%","Counts low due to glare and ~40% water cover."
+"2014-04-29_YB-Gq8",2014-04-29,2014-04-29,"YB","G","8","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts may be low due to glare"
+"2014-04-29_YB-Gq3",2014-04-29,2014-04-29,"YB","G","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to high water"
+"2014-04-29_YB-Gq5",2014-04-29,2014-04-29,"YB","G","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","0%","Counts low due to glare and ~40% water cover."
+"2014-04-29_YB-Gq8",2014-04-29,2014-04-29,"YB","G","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts may be low due to glare"
+"2014-05-27_YB-Aq6",2014-05-27,2014-05-27,"YB","A","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-05-27_YB-Aq7",2014-05-27,2014-05-27,"YB","A","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","3%",""
+"2014-05-27_YB-Aq9",2014-05-27,2014-05-27,"YB","A","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","1%",""
+"2014-05-27_YB-Aq6",2014-05-27,2014-05-27,"YB","A","6","Ae","Anemones","Type 14",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-05-27_YB-Aq7",2014-05-27,2014-05-27,"YB","A","7","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","3%",""
+"2014-05-27_YB-Aq9",2014-05-27,2014-05-27,"YB","A","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","1%",""
+"2014-05-27_YB-Aq6",2014-05-27,2014-05-27,"YB","A","6","Bg","Balanus_glandula","Type 1",570,0.0875,6514.28571428571,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-05-27_YB-Aq7",2014-05-27,2014-05-27,"YB","A","7","Bg","Balanus_glandula","Type 1",665,0.0875,7600,NA,"Beatriz Vaca","Finished","Cropped","Full","3%",""
+"2014-05-27_YB-Aq9",2014-05-27,2014-05-27,"YB","A","9","Bg","Balanus_glandula","Type 1",720,0.0875,8228.57142857143,NA,"Julia Bingham","Finished","Cropped","Full","1%",""
+"2014-05-27_YB-Aq6",2014-05-27,2014-05-27,"YB","A","6","BgD","Balanus_glandula_(dead)","Type 2",9,0.0875,102.857142857143,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-05-27_YB-Aq7",2014-05-27,2014-05-27,"YB","A","7","BgD","Balanus_glandula_(dead)","Type 2",12,0.0875,137.142857142857,NA,"Beatriz Vaca","Finished","Cropped","Full","3%",""
+"2014-05-27_YB-Aq9",2014-05-27,2014-05-27,"YB","A","9","BgD","Balanus_glandula_(dead)","Type 2",79,0.0875,902.857142857143,NA,"Julia Bingham","Finished","Cropped","Full","1%",""
+"2014-05-27_YB-Aq6",2014-05-27,2014-05-27,"YB","A","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-05-27_YB-Aq7",2014-05-27,2014-05-27,"YB","A","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","3%",""
+"2014-05-27_YB-Aq9",2014-05-27,2014-05-27,"YB","A","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","1%",""
+"2014-05-27_YB-Aq6",2014-05-27,2014-05-27,"YB","A","6","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-05-27_YB-Aq7",2014-05-27,2014-05-27,"YB","A","7","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","3%",""
+"2014-05-27_YB-Aq9",2014-05-27,2014-05-27,"YB","A","9","Cth","Chthamalus_dalli","Type 3",4,0.0875,45.7142857142857,NA,"Julia Bingham","Finished","Cropped","Full","1%",""
+"2014-05-27_YB-Aq6",2014-05-27,2014-05-27,"YB","A","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-05-27_YB-Aq7",2014-05-27,2014-05-27,"YB","A","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","3%",""
+"2014-05-27_YB-Aq9",2014-05-27,2014-05-27,"YB","A","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","1%",""
+"2014-05-27_YB-Aq6",2014-05-27,2014-05-27,"YB","A","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-05-27_YB-Aq7",2014-05-27,2014-05-27,"YB","A","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","3%",""
+"2014-05-27_YB-Aq9",2014-05-27,2014-05-27,"YB","A","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","1%",""
+"2014-05-27_YB-Aq6",2014-05-27,2014-05-27,"YB","A","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-05-27_YB-Aq7",2014-05-27,2014-05-27,"YB","A","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","3%",""
+"2014-05-27_YB-Aq9",2014-05-27,2014-05-27,"YB","A","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","1%",""
+"2014-05-27_YB-Aq6",2014-05-27,2014-05-27,"YB","A","6","Lim","Limpets","Type 12",15,0.0875,171.428571428571,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-05-27_YB-Aq7",2014-05-27,2014-05-27,"YB","A","7","Lim","Limpets","Type 12",75,0.0875,857.142857142857,NA,"Beatriz Vaca","Finished","Cropped","Full","3%",""
+"2014-05-27_YB-Aq9",2014-05-27,2014-05-27,"YB","A","9","Lim","Limpets","Type 12",145,0.0875,1657.14285714286,NA,"Julia Bingham","Finished","Cropped","Full","1%",""
+"2014-05-27_YB-Aq6",2014-05-27,2014-05-27,"YB","A","6","Ls","Littorina_sitkana","Type 13",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-05-27_YB-Aq7",2014-05-27,2014-05-27,"YB","A","7","Ls","Littorina_sitkana","Type 13",192,0.0875,2194.28571428571,NA,"Beatriz Vaca","Finished","Cropped","Full","3%",""
+"2014-05-27_YB-Aq9",2014-05-27,2014-05-27,"YB","A","9","Ls","Littorina_sitkana","Type 13",231,0.0875,2640,NA,"Julia Bingham","Finished","Cropped","Full","1%",""
+"2014-05-27_YB-Aq6",2014-05-27,2014-05-27,"YB","A","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-05-27_YB-Aq7",2014-05-27,2014-05-27,"YB","A","7","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","3%",""
+"2014-05-27_YB-Aq9",2014-05-27,2014-05-27,"YB","A","9","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Julia Bingham","Finished","Cropped","Full","1%",""
+"2014-05-27_YB-Aq6",2014-05-27,2014-05-27,"YB","A","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-05-27_YB-Aq7",2014-05-27,2014-05-27,"YB","A","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","3%",""
+"2014-05-27_YB-Aq9",2014-05-27,2014-05-27,"YB","A","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Julia Bingham","Finished","Cropped","Full","1%",""
+"2014-05-27_YB-Aq6",2014-05-27,2014-05-27,"YB","A","6","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-05-27_YB-Aq7",2014-05-27,2014-05-27,"YB","A","7","Myt","Mytilus_spp","Type 7",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","3%",""
+"2014-05-27_YB-Aq9",2014-05-27,2014-05-27,"YB","A","9","Myt","Mytilus_spp","Type 7",269,0.015625,17216,"c","Julia Bingham","Finished","Cropped","Full","1%",""
+"2014-05-27_YB-Aq6",2014-05-27,2014-05-27,"YB","A","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-05-27_YB-Aq7",2014-05-27,2014-05-27,"YB","A","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","3%",""
+"2014-05-27_YB-Aq9",2014-05-27,2014-05-27,"YB","A","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Julia Bingham","Finished","Cropped","Full","1%",""
+"2014-05-27_YB-Aq6",2014-05-27,2014-05-27,"YB","A","6","Mt","Mytilus_trossulus","Type 15",1104,0.0875,12617.1428571429,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-05-27_YB-Aq7",2014-05-27,2014-05-27,"YB","A","7","Mt","Mytilus_trossulus","Type 15",274,0.015625,17536,"c","Beatriz Vaca","Finished","Cropped","Full","3%",""
+"2014-05-27_YB-Aq9",2014-05-27,2014-05-27,"YB","A","9","Mt","Mytilus_trossulus","Type 15",338,0.015625,21632,"c","Julia Bingham","Finished","Cropped","Full","1%",""
+"2014-05-27_YB-Aq6",2014-05-27,2014-05-27,"YB","A","6","MtD","Mytilus_trossulus_(dead)","Type 16",4,0.0875,45.7142857142857,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-05-27_YB-Aq7",2014-05-27,2014-05-27,"YB","A","7","MtD","Mytilus_trossulus_(dead)","Type 16",1,0.015625,64,"c","Beatriz Vaca","Finished","Cropped","Full","3%",""
+"2014-05-27_YB-Aq9",2014-05-27,2014-05-27,"YB","A","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Julia Bingham","Finished","Cropped","Full","1%",""
+"2014-05-27_YB-Aq6",2014-05-27,2014-05-27,"YB","A","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-05-27_YB-Aq7",2014-05-27,2014-05-27,"YB","A","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","3%",""
+"2014-05-27_YB-Aq9",2014-05-27,2014-05-27,"YB","A","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","1%",""
+"2014-05-27_YB-Aq6",2014-05-27,2014-05-27,"YB","A","6","Nc","Nucella_canaliculata","Type 10",3,0.0875,34.2857142857143,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-05-27_YB-Aq7",2014-05-27,2014-05-27,"YB","A","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","3%",""
+"2014-05-27_YB-Aq9",2014-05-27,2014-05-27,"YB","A","9","Nc","Nucella_canaliculata","Type 10",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Cropped","Full","1%",""
+"2014-05-27_YB-Aq6",2014-05-27,2014-05-27,"YB","A","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-05-27_YB-Aq7",2014-05-27,2014-05-27,"YB","A","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","3%",""
+"2014-05-27_YB-Aq9",2014-05-27,2014-05-27,"YB","A","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","1%",""
+"2014-05-27_YB-Aq6",2014-05-27,2014-05-27,"YB","A","6","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-05-27_YB-Aq7",2014-05-27,2014-05-27,"YB","A","7","No","Nucella_ostrina","Type 9",11,0.0875,125.714285714286,NA,"Beatriz Vaca","Finished","Cropped","Full","3%",""
+"2014-05-27_YB-Aq9",2014-05-27,2014-05-27,"YB","A","9","No","Nucella_ostrina","Type 9",18,0.0875,205.714285714286,NA,"Julia Bingham","Finished","Cropped","Full","1%",""
+"2014-05-27_YB-Aq6",2014-05-27,2014-05-27,"YB","A","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-05-27_YB-Aq7",2014-05-27,2014-05-27,"YB","A","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","3%",""
+"2014-05-27_YB-Aq9",2014-05-27,2014-05-27,"YB","A","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","1%",""
+"2014-05-27_YB-Aq6",2014-05-27,2014-05-27,"YB","A","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-05-27_YB-Aq7",2014-05-27,2014-05-27,"YB","A","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","3%",""
+"2014-05-27_YB-Aq9",2014-05-27,2014-05-27,"YB","A","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","1%",""
+"2014-05-27_YB-Aq6",2014-05-27,2014-05-27,"YB","A","6","Pp","Pollicipes_polymerus","Type 11",1,0.0875,11.4285714285714,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-05-27_YB-Aq7",2014-05-27,2014-05-27,"YB","A","7","Pp","Pollicipes_polymerus","Type 11",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Cropped","Full","3%",""
+"2014-05-27_YB-Aq9",2014-05-27,2014-05-27,"YB","A","9","Pp","Pollicipes_polymerus","Type 11",58,0.0875,662.857142857143,NA,"Julia Bingham","Finished","Cropped","Full","1%",""
+"2014-05-27_YB-Aq6",2014-05-27,2014-05-27,"YB","A","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-05-27_YB-Aq7",2014-05-27,2014-05-27,"YB","A","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","3%",""
+"2014-05-27_YB-Aq9",2014-05-27,2014-05-27,"YB","A","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","1%",""
+"2014-05-27_YB-Aq6",2014-05-27,2014-05-27,"YB","A","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-05-27_YB-Aq7",2014-05-27,2014-05-27,"YB","A","7","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","3%",""
+"2014-05-27_YB-Aq9",2014-05-27,2014-05-27,"YB","A","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","1%",""
+"2014-05-27_YB-Aq6",2014-05-27,2014-05-27,"YB","A","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-05-27_YB-Aq7",2014-05-27,2014-05-27,"YB","A","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","3%",""
+"2014-05-27_YB-Aq9",2014-05-27,2014-05-27,"YB","A","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","1%",""
+"2014-05-27_YB-ABq1",2014-05-27,2014-05-27,"YB","AB","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","13%","Mussel, limpet, littorine, and barnacle densities likely higher but glare and algal cover made counting difficult"
+"2014-05-27_YB-ABq2",2014-05-27,2014-05-27,"YB","AB","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","30%",""
+"2014-05-27_YB-ABq4",2014-05-27,2014-05-27,"YB","AB","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-05-27_YB-ABq1",2014-05-27,2014-05-27,"YB","AB","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","13%","Mussel, limpet, littorine, and barnacle densities likely higher but glare and algal cover made counting difficult"
+"2014-05-27_YB-ABq2",2014-05-27,2014-05-27,"YB","AB","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","30%",""
+"2014-05-27_YB-ABq4",2014-05-27,2014-05-27,"YB","AB","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-05-27_YB-ABq1",2014-05-27,2014-05-27,"YB","AB","1","Bg","Balanus_glandula","Type 1",629,0.0875,7188.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","13%","Mussel, limpet, littorine, and barnacle densities likely higher but glare and algal cover made counting difficult"
+"2014-05-27_YB-ABq2",2014-05-27,2014-05-27,"YB","AB","2","Bg","Balanus_glandula","Type 1",243,0.015625,15552,"c","Beatriz Vaca","Finished","Cropped","Cropped","30%",""
+"2014-05-27_YB-ABq4",2014-05-27,2014-05-27,"YB","AB","4","Bg","Balanus_glandula","Type 1",1256,0.0875,14354.2857142857,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-05-27_YB-ABq1",2014-05-27,2014-05-27,"YB","AB","1","BgD","Balanus_glandula_(dead)","Type 2",67,0.0875,765.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","13%","Mussel, limpet, littorine, and barnacle densities likely higher but glare and algal cover made counting difficult"
+"2014-05-27_YB-ABq2",2014-05-27,2014-05-27,"YB","AB","2","BgD","Balanus_glandula_(dead)","Type 2",29,0.015625,1856,"c","Beatriz Vaca","Finished","Cropped","Cropped","30%",""
+"2014-05-27_YB-ABq4",2014-05-27,2014-05-27,"YB","AB","4","BgD","Balanus_glandula_(dead)","Type 2",19,0.0875,217.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-05-27_YB-ABq1",2014-05-27,2014-05-27,"YB","AB","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","13%","Mussel, limpet, littorine, and barnacle densities likely higher but glare and algal cover made counting difficult"
+"2014-05-27_YB-ABq2",2014-05-27,2014-05-27,"YB","AB","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","30%",""
+"2014-05-27_YB-ABq4",2014-05-27,2014-05-27,"YB","AB","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-05-27_YB-ABq1",2014-05-27,2014-05-27,"YB","AB","1","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","13%","Mussel, limpet, littorine, and barnacle densities likely higher but glare and algal cover made counting difficult"
+"2014-05-27_YB-ABq2",2014-05-27,2014-05-27,"YB","AB","2","Cth","Chthamalus_dalli","Type 3",7,0.015625,448,"c","Beatriz Vaca","Finished","Cropped","Cropped","30%",""
+"2014-05-27_YB-ABq4",2014-05-27,2014-05-27,"YB","AB","4","Cth","Chthamalus_dalli","Type 3",43,0.0875,491.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-05-27_YB-ABq1",2014-05-27,2014-05-27,"YB","AB","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","13%","Mussel, limpet, littorine, and barnacle densities likely higher but glare and algal cover made counting difficult"
+"2014-05-27_YB-ABq2",2014-05-27,2014-05-27,"YB","AB","2","CthD","Chthamalus_dalli (dead)","Type 4",2,0.015625,128,"c","Beatriz Vaca","Finished","Cropped","Cropped","30%",""
+"2014-05-27_YB-ABq4",2014-05-27,2014-05-27,"YB","AB","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-05-27_YB-ABq1",2014-05-27,2014-05-27,"YB","AB","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","13%","Mussel, limpet, littorine, and barnacle densities likely higher but glare and algal cover made counting difficult"
+"2014-05-27_YB-ABq2",2014-05-27,2014-05-27,"YB","AB","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","30%",""
+"2014-05-27_YB-ABq4",2014-05-27,2014-05-27,"YB","AB","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-05-27_YB-ABq1",2014-05-27,2014-05-27,"YB","AB","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","13%","Mussel, limpet, littorine, and barnacle densities likely higher but glare and algal cover made counting difficult"
+"2014-05-27_YB-ABq2",2014-05-27,2014-05-27,"YB","AB","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","30%",""
+"2014-05-27_YB-ABq4",2014-05-27,2014-05-27,"YB","AB","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-05-27_YB-ABq1",2014-05-27,2014-05-27,"YB","AB","1","Lim","Limpets","Type 12",102,0.0875,1165.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","13%","Mussel, limpet, littorine, and barnacle densities likely higher but glare and algal cover made counting difficult"
+"2014-05-27_YB-ABq2",2014-05-27,2014-05-27,"YB","AB","2","Lim","Limpets","Type 12",144,0.0875,1645.71428571429,NA,"Beatriz Vaca","Finished","Cropped","Cropped","30%",""
+"2014-05-27_YB-ABq4",2014-05-27,2014-05-27,"YB","AB","4","Lim","Limpets","Type 12",408,0.0875,4662.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-05-27_YB-ABq1",2014-05-27,2014-05-27,"YB","AB","1","Ls","Littorina_sitkana","Type 13",28,0.0875,320,NA,"Beatriz Vaca","Finished","Full","Full","13%","Mussel, limpet, littorine, and barnacle densities likely higher but glare and algal cover made counting difficult"
+"2014-05-27_YB-ABq2",2014-05-27,2014-05-27,"YB","AB","2","Ls","Littorina_sitkana","Type 13",81,0.0875,925.714285714286,NA,"Beatriz Vaca","Finished","Cropped","Cropped","30%",""
+"2014-05-27_YB-ABq4",2014-05-27,2014-05-27,"YB","AB","4","Ls","Littorina_sitkana","Type 13",68,0.0875,777.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-05-27_YB-ABq1",2014-05-27,2014-05-27,"YB","AB","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","13%","Mussel, limpet, littorine, and barnacle densities likely higher but glare and algal cover made counting difficult"
+"2014-05-27_YB-ABq2",2014-05-27,2014-05-27,"YB","AB","2","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","30%",""
+"2014-05-27_YB-ABq4",2014-05-27,2014-05-27,"YB","AB","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-05-27_YB-ABq1",2014-05-27,2014-05-27,"YB","AB","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","13%","Mussel, limpet, littorine, and barnacle densities likely higher but glare and algal cover made counting difficult"
+"2014-05-27_YB-ABq2",2014-05-27,2014-05-27,"YB","AB","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","30%",""
+"2014-05-27_YB-ABq4",2014-05-27,2014-05-27,"YB","AB","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-05-27_YB-ABq1",2014-05-27,2014-05-27,"YB","AB","1","Myt","Mytilus_spp","Type 7",22,0.0875,251.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","13%","Mussel, limpet, littorine, and barnacle densities likely higher but glare and algal cover made counting difficult"
+"2014-05-27_YB-ABq2",2014-05-27,2014-05-27,"YB","AB","2","Myt","Mytilus_spp","Type 7",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","30%",""
+"2014-05-27_YB-ABq4",2014-05-27,2014-05-27,"YB","AB","4","Myt","Mytilus_spp","Type 7",93,0.0875,1062.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-05-27_YB-ABq1",2014-05-27,2014-05-27,"YB","AB","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","13%","Mussel, limpet, littorine, and barnacle densities likely higher but glare and algal cover made counting difficult"
+"2014-05-27_YB-ABq2",2014-05-27,2014-05-27,"YB","AB","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","30%",""
+"2014-05-27_YB-ABq4",2014-05-27,2014-05-27,"YB","AB","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-05-27_YB-ABq1",2014-05-27,2014-05-27,"YB","AB","1","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","13%","Mussel, limpet, littorine, and barnacle densities likely higher but glare and algal cover made counting difficult"
+"2014-05-27_YB-ABq2",2014-05-27,2014-05-27,"YB","AB","2","Mt","Mytilus_trossulus","Type 15",85,0.015625,5440,"c","Beatriz Vaca","Finished","Cropped","Cropped","30%",""
+"2014-05-27_YB-ABq4",2014-05-27,2014-05-27,"YB","AB","4","Mt","Mytilus_trossulus","Type 15",247,0.0875,2822.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-05-27_YB-ABq1",2014-05-27,2014-05-27,"YB","AB","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","13%","Mussel, limpet, littorine, and barnacle densities likely higher but glare and algal cover made counting difficult"
+"2014-05-27_YB-ABq2",2014-05-27,2014-05-27,"YB","AB","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","30%",""
+"2014-05-27_YB-ABq4",2014-05-27,2014-05-27,"YB","AB","4","MtD","Mytilus_trossulus_(dead)","Type 16",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-05-27_YB-ABq1",2014-05-27,2014-05-27,"YB","AB","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","13%","Mussel, limpet, littorine, and barnacle densities likely higher but glare and algal cover made counting difficult"
+"2014-05-27_YB-ABq2",2014-05-27,2014-05-27,"YB","AB","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","30%",""
+"2014-05-27_YB-ABq4",2014-05-27,2014-05-27,"YB","AB","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-05-27_YB-ABq1",2014-05-27,2014-05-27,"YB","AB","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","13%","Mussel, limpet, littorine, and barnacle densities likely higher but glare and algal cover made counting difficult"
+"2014-05-27_YB-ABq2",2014-05-27,2014-05-27,"YB","AB","2","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","30%",""
+"2014-05-27_YB-ABq4",2014-05-27,2014-05-27,"YB","AB","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-05-27_YB-ABq1",2014-05-27,2014-05-27,"YB","AB","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","13%","Mussel, limpet, littorine, and barnacle densities likely higher but glare and algal cover made counting difficult"
+"2014-05-27_YB-ABq2",2014-05-27,2014-05-27,"YB","AB","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","30%",""
+"2014-05-27_YB-ABq4",2014-05-27,2014-05-27,"YB","AB","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-05-27_YB-ABq1",2014-05-27,2014-05-27,"YB","AB","1","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","13%","Mussel, limpet, littorine, and barnacle densities likely higher but glare and algal cover made counting difficult"
+"2014-05-27_YB-ABq2",2014-05-27,2014-05-27,"YB","AB","2","No","Nucella_ostrina","Type 9",25,0.0875,285.714285714286,NA,"Beatriz Vaca","Finished","Cropped","Cropped","30%",""
+"2014-05-27_YB-ABq4",2014-05-27,2014-05-27,"YB","AB","4","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-05-27_YB-ABq1",2014-05-27,2014-05-27,"YB","AB","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","13%","Mussel, limpet, littorine, and barnacle densities likely higher but glare and algal cover made counting difficult"
+"2014-05-27_YB-ABq2",2014-05-27,2014-05-27,"YB","AB","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","30%",""
+"2014-05-27_YB-ABq4",2014-05-27,2014-05-27,"YB","AB","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-05-27_YB-ABq1",2014-05-27,2014-05-27,"YB","AB","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","13%","Mussel, limpet, littorine, and barnacle densities likely higher but glare and algal cover made counting difficult"
+"2014-05-27_YB-ABq2",2014-05-27,2014-05-27,"YB","AB","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","30%",""
+"2014-05-27_YB-ABq4",2014-05-27,2014-05-27,"YB","AB","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-05-27_YB-ABq1",2014-05-27,2014-05-27,"YB","AB","1","Pp","Pollicipes_polymerus","Type 11",57,0.0875,651.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","13%","Mussel, limpet, littorine, and barnacle densities likely higher but glare and algal cover made counting difficult"
+"2014-05-27_YB-ABq2",2014-05-27,2014-05-27,"YB","AB","2","Pp","Pollicipes_polymerus","Type 11",56,0.0875,640,NA,"Beatriz Vaca","Finished","Cropped","Cropped","30%",""
+"2014-05-27_YB-ABq4",2014-05-27,2014-05-27,"YB","AB","4","Pp","Pollicipes_polymerus","Type 11",152,0.0875,1737.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-05-27_YB-ABq1",2014-05-27,2014-05-27,"YB","AB","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","13%","Mussel, limpet, littorine, and barnacle densities likely higher but glare and algal cover made counting difficult"
+"2014-05-27_YB-ABq2",2014-05-27,2014-05-27,"YB","AB","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","30%",""
+"2014-05-27_YB-ABq4",2014-05-27,2014-05-27,"YB","AB","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-05-27_YB-ABq1",2014-05-27,2014-05-27,"YB","AB","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","13%","Mussel, limpet, littorine, and barnacle densities likely higher but glare and algal cover made counting difficult"
+"2014-05-27_YB-ABq2",2014-05-27,2014-05-27,"YB","AB","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","30%",""
+"2014-05-27_YB-ABq4",2014-05-27,2014-05-27,"YB","AB","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-05-27_YB-ABq1",2014-05-27,2014-05-27,"YB","AB","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","13%","Mussel, limpet, littorine, and barnacle densities likely higher but glare and algal cover made counting difficult"
+"2014-05-27_YB-ABq2",2014-05-27,2014-05-27,"YB","AB","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","30%",""
+"2014-05-27_YB-ABq4",2014-05-27,2014-05-27,"YB","AB","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-05-27_YB-ACq1",2014-05-27,2014-05-27,"YB","AC","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-05-27_YB-ACq4",2014-05-27,2014-05-27,"YB","AC","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Mussel, limpet, and littorine counts likely low due to glare."
+"2014-05-27_YB-ACq7",2014-05-27,2014-05-27,"YB","AC","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts likely low due to glare."
+"2014-05-27_YB-ACq8",2014-05-27,2014-05-27,"YB","AC","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts possibly low due to glare."
+"2014-05-27_YB-ACq1",2014-05-27,2014-05-27,"YB","AC","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-05-27_YB-ACq4",2014-05-27,2014-05-27,"YB","AC","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Mussel, limpet, and littorine counts likely low due to glare."
+"2014-05-27_YB-ACq7",2014-05-27,2014-05-27,"YB","AC","7","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts likely low due to glare."
+"2014-05-27_YB-ACq8",2014-05-27,2014-05-27,"YB","AC","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts possibly low due to glare."
+"2014-05-27_YB-ACq1",2014-05-27,2014-05-27,"YB","AC","1","Bg","Balanus_glandula","Type 1",699,0.0875,7988.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","8%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-05-27_YB-ACq4",2014-05-27,2014-05-27,"YB","AC","4","Bg","Balanus_glandula","Type 1",166,0.015625,10624,"c","Beatriz Vaca","Finished","Full","Cropped","1%","Mussel, limpet, and littorine counts likely low due to glare."
+"2014-05-27_YB-ACq7",2014-05-27,2014-05-27,"YB","AC","7","Bg","Balanus_glandula","Type 1",597,0.0875,6822.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts likely low due to glare."
+"2014-05-27_YB-ACq8",2014-05-27,2014-05-27,"YB","AC","8","Bg","Balanus_glandula","Type 1",355,0.0875,4057.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts possibly low due to glare."
+"2014-05-27_YB-ACq1",2014-05-27,2014-05-27,"YB","AC","1","BgD","Balanus_glandula_(dead)","Type 2",115,0.0875,1314.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","8%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-05-27_YB-ACq4",2014-05-27,2014-05-27,"YB","AC","4","BgD","Balanus_glandula_(dead)","Type 2",3,0.015625,192,"c","Beatriz Vaca","Finished","Full","Cropped","1%","Mussel, limpet, and littorine counts likely low due to glare."
+"2014-05-27_YB-ACq7",2014-05-27,2014-05-27,"YB","AC","7","BgD","Balanus_glandula_(dead)","Type 2",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts likely low due to glare."
+"2014-05-27_YB-ACq8",2014-05-27,2014-05-27,"YB","AC","8","BgD","Balanus_glandula_(dead)","Type 2",101,0.0875,1154.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts possibly low due to glare."
+"2014-05-27_YB-ACq1",2014-05-27,2014-05-27,"YB","AC","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-05-27_YB-ACq4",2014-05-27,2014-05-27,"YB","AC","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Mussel, limpet, and littorine counts likely low due to glare."
+"2014-05-27_YB-ACq7",2014-05-27,2014-05-27,"YB","AC","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts likely low due to glare."
+"2014-05-27_YB-ACq8",2014-05-27,2014-05-27,"YB","AC","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts possibly low due to glare."
+"2014-05-27_YB-ACq1",2014-05-27,2014-05-27,"YB","AC","1","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-05-27_YB-ACq4",2014-05-27,2014-05-27,"YB","AC","4","Cth","Chthamalus_dalli","Type 3",4,0.015625,256,"c","Beatriz Vaca","Finished","Full","Cropped","1%","Mussel, limpet, and littorine counts likely low due to glare."
+"2014-05-27_YB-ACq7",2014-05-27,2014-05-27,"YB","AC","7","Cth","Chthamalus_dalli","Type 3",42,0.0875,480,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts likely low due to glare."
+"2014-05-27_YB-ACq8",2014-05-27,2014-05-27,"YB","AC","8","Cth","Chthamalus_dalli","Type 3",20,0.0875,228.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts possibly low due to glare."
+"2014-05-27_YB-ACq1",2014-05-27,2014-05-27,"YB","AC","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-05-27_YB-ACq4",2014-05-27,2014-05-27,"YB","AC","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","1%","Mussel, limpet, and littorine counts likely low due to glare."
+"2014-05-27_YB-ACq7",2014-05-27,2014-05-27,"YB","AC","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts likely low due to glare."
+"2014-05-27_YB-ACq8",2014-05-27,2014-05-27,"YB","AC","8","CthD","Chthamalus_dalli (dead)","Type 4",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts possibly low due to glare."
+"2014-05-27_YB-ACq1",2014-05-27,2014-05-27,"YB","AC","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-05-27_YB-ACq4",2014-05-27,2014-05-27,"YB","AC","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Mussel, limpet, and littorine counts likely low due to glare."
+"2014-05-27_YB-ACq7",2014-05-27,2014-05-27,"YB","AC","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts likely low due to glare."
+"2014-05-27_YB-ACq8",2014-05-27,2014-05-27,"YB","AC","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts possibly low due to glare."
+"2014-05-27_YB-ACq1",2014-05-27,2014-05-27,"YB","AC","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-05-27_YB-ACq4",2014-05-27,2014-05-27,"YB","AC","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Mussel, limpet, and littorine counts likely low due to glare."
+"2014-05-27_YB-ACq7",2014-05-27,2014-05-27,"YB","AC","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts likely low due to glare."
+"2014-05-27_YB-ACq8",2014-05-27,2014-05-27,"YB","AC","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts possibly low due to glare."
+"2014-05-27_YB-ACq1",2014-05-27,2014-05-27,"YB","AC","1","Lim","Limpets","Type 12",70,0.0875,800,NA,"Beatriz Vaca","Finished","Full","Full","8%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-05-27_YB-ACq4",2014-05-27,2014-05-27,"YB","AC","4","Lim","Limpets","Type 12",54,0.0875,617.142857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Mussel, limpet, and littorine counts likely low due to glare."
+"2014-05-27_YB-ACq7",2014-05-27,2014-05-27,"YB","AC","7","Lim","Limpets","Type 12",60,0.0875,685.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts likely low due to glare."
+"2014-05-27_YB-ACq8",2014-05-27,2014-05-27,"YB","AC","8","Lim","Limpets","Type 12",62,0.0875,708.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts possibly low due to glare."
+"2014-05-27_YB-ACq1",2014-05-27,2014-05-27,"YB","AC","1","Ls","Littorina_sitkana","Type 13",70,0.0875,800,NA,"Beatriz Vaca","Finished","Full","Full","8%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-05-27_YB-ACq4",2014-05-27,2014-05-27,"YB","AC","4","Ls","Littorina_sitkana","Type 13",28,0.0875,320,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Mussel, limpet, and littorine counts likely low due to glare."
+"2014-05-27_YB-ACq7",2014-05-27,2014-05-27,"YB","AC","7","Ls","Littorina_sitkana","Type 13",41,0.0875,468.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts likely low due to glare."
+"2014-05-27_YB-ACq8",2014-05-27,2014-05-27,"YB","AC","8","Ls","Littorina_sitkana","Type 13",207,0.0875,2365.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts possibly low due to glare."
+"2014-05-27_YB-ACq1",2014-05-27,2014-05-27,"YB","AC","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-05-27_YB-ACq4",2014-05-27,2014-05-27,"YB","AC","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Mussel, limpet, and littorine counts likely low due to glare."
+"2014-05-27_YB-ACq7",2014-05-27,2014-05-27,"YB","AC","7","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts likely low due to glare."
+"2014-05-27_YB-ACq8",2014-05-27,2014-05-27,"YB","AC","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts possibly low due to glare."
+"2014-05-27_YB-ACq1",2014-05-27,2014-05-27,"YB","AC","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-05-27_YB-ACq4",2014-05-27,2014-05-27,"YB","AC","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Mussel, limpet, and littorine counts likely low due to glare."
+"2014-05-27_YB-ACq7",2014-05-27,2014-05-27,"YB","AC","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts likely low due to glare."
+"2014-05-27_YB-ACq8",2014-05-27,2014-05-27,"YB","AC","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts possibly low due to glare."
+"2014-05-27_YB-ACq1",2014-05-27,2014-05-27,"YB","AC","1","Myt","Mytilus_spp","Type 7",116,0.0875,1325.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","8%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-05-27_YB-ACq4",2014-05-27,2014-05-27,"YB","AC","4","Myt","Mytilus_spp","Type 7",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Mussel, limpet, and littorine counts likely low due to glare."
+"2014-05-27_YB-ACq7",2014-05-27,2014-05-27,"YB","AC","7","Myt","Mytilus_spp","Type 7",13,0.0875,148.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts likely low due to glare."
+"2014-05-27_YB-ACq8",2014-05-27,2014-05-27,"YB","AC","8","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts possibly low due to glare."
+"2014-05-27_YB-ACq1",2014-05-27,2014-05-27,"YB","AC","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-05-27_YB-ACq4",2014-05-27,2014-05-27,"YB","AC","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Mussel, limpet, and littorine counts likely low due to glare."
+"2014-05-27_YB-ACq7",2014-05-27,2014-05-27,"YB","AC","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts likely low due to glare."
+"2014-05-27_YB-ACq8",2014-05-27,2014-05-27,"YB","AC","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts possibly low due to glare."
+"2014-05-27_YB-ACq1",2014-05-27,2014-05-27,"YB","AC","1","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-05-27_YB-ACq4",2014-05-27,2014-05-27,"YB","AC","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Mussel, limpet, and littorine counts likely low due to glare."
+"2014-05-27_YB-ACq7",2014-05-27,2014-05-27,"YB","AC","7","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts likely low due to glare."
+"2014-05-27_YB-ACq8",2014-05-27,2014-05-27,"YB","AC","8","Mt","Mytilus_trossulus","Type 15",90,0.0875,1028.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts possibly low due to glare."
+"2014-05-27_YB-ACq1",2014-05-27,2014-05-27,"YB","AC","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-05-27_YB-ACq4",2014-05-27,2014-05-27,"YB","AC","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Mussel, limpet, and littorine counts likely low due to glare."
+"2014-05-27_YB-ACq7",2014-05-27,2014-05-27,"YB","AC","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts likely low due to glare."
+"2014-05-27_YB-ACq8",2014-05-27,2014-05-27,"YB","AC","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts possibly low due to glare."
+"2014-05-27_YB-ACq1",2014-05-27,2014-05-27,"YB","AC","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-05-27_YB-ACq4",2014-05-27,2014-05-27,"YB","AC","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Mussel, limpet, and littorine counts likely low due to glare."
+"2014-05-27_YB-ACq7",2014-05-27,2014-05-27,"YB","AC","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts likely low due to glare."
+"2014-05-27_YB-ACq8",2014-05-27,2014-05-27,"YB","AC","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts possibly low due to glare."
+"2014-05-27_YB-ACq1",2014-05-27,2014-05-27,"YB","AC","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-05-27_YB-ACq4",2014-05-27,2014-05-27,"YB","AC","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Mussel, limpet, and littorine counts likely low due to glare."
+"2014-05-27_YB-ACq7",2014-05-27,2014-05-27,"YB","AC","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts likely low due to glare."
+"2014-05-27_YB-ACq8",2014-05-27,2014-05-27,"YB","AC","8","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts possibly low due to glare."
+"2014-05-27_YB-ACq1",2014-05-27,2014-05-27,"YB","AC","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-05-27_YB-ACq4",2014-05-27,2014-05-27,"YB","AC","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Mussel, limpet, and littorine counts likely low due to glare."
+"2014-05-27_YB-ACq7",2014-05-27,2014-05-27,"YB","AC","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts likely low due to glare."
+"2014-05-27_YB-ACq8",2014-05-27,2014-05-27,"YB","AC","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts possibly low due to glare."
+"2014-05-27_YB-ACq1",2014-05-27,2014-05-27,"YB","AC","1","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","8%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-05-27_YB-ACq4",2014-05-27,2014-05-27,"YB","AC","4","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Mussel, limpet, and littorine counts likely low due to glare."
+"2014-05-27_YB-ACq7",2014-05-27,2014-05-27,"YB","AC","7","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts likely low due to glare."
+"2014-05-27_YB-ACq8",2014-05-27,2014-05-27,"YB","AC","8","No","Nucella_ostrina","Type 9",16,0.0875,182.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts possibly low due to glare."
+"2014-05-27_YB-ACq1",2014-05-27,2014-05-27,"YB","AC","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-05-27_YB-ACq4",2014-05-27,2014-05-27,"YB","AC","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Mussel, limpet, and littorine counts likely low due to glare."
+"2014-05-27_YB-ACq7",2014-05-27,2014-05-27,"YB","AC","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts likely low due to glare."
+"2014-05-27_YB-ACq8",2014-05-27,2014-05-27,"YB","AC","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts possibly low due to glare."
+"2014-05-27_YB-ACq1",2014-05-27,2014-05-27,"YB","AC","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-05-27_YB-ACq4",2014-05-27,2014-05-27,"YB","AC","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Mussel, limpet, and littorine counts likely low due to glare."
+"2014-05-27_YB-ACq7",2014-05-27,2014-05-27,"YB","AC","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts likely low due to glare."
+"2014-05-27_YB-ACq8",2014-05-27,2014-05-27,"YB","AC","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts possibly low due to glare."
+"2014-05-27_YB-ACq1",2014-05-27,2014-05-27,"YB","AC","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-05-27_YB-ACq4",2014-05-27,2014-05-27,"YB","AC","4","Pp","Pollicipes_polymerus","Type 11",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Mussel, limpet, and littorine counts likely low due to glare."
+"2014-05-27_YB-ACq7",2014-05-27,2014-05-27,"YB","AC","7","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts likely low due to glare."
+"2014-05-27_YB-ACq8",2014-05-27,2014-05-27,"YB","AC","8","Pp","Pollicipes_polymerus","Type 11",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts possibly low due to glare."
+"2014-05-27_YB-ACq1",2014-05-27,2014-05-27,"YB","AC","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-05-27_YB-ACq4",2014-05-27,2014-05-27,"YB","AC","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Mussel, limpet, and littorine counts likely low due to glare."
+"2014-05-27_YB-ACq7",2014-05-27,2014-05-27,"YB","AC","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts likely low due to glare."
+"2014-05-27_YB-ACq8",2014-05-27,2014-05-27,"YB","AC","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts possibly low due to glare."
+"2014-05-27_YB-ACq1",2014-05-27,2014-05-27,"YB","AC","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-05-27_YB-ACq4",2014-05-27,2014-05-27,"YB","AC","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Mussel, limpet, and littorine counts likely low due to glare."
+"2014-05-27_YB-ACq7",2014-05-27,2014-05-27,"YB","AC","7","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts likely low due to glare."
+"2014-05-27_YB-ACq8",2014-05-27,2014-05-27,"YB","AC","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts possibly low due to glare."
+"2014-05-27_YB-ACq1",2014-05-27,2014-05-27,"YB","AC","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-05-27_YB-ACq4",2014-05-27,2014-05-27,"YB","AC","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Mussel, limpet, and littorine counts likely low due to glare."
+"2014-05-27_YB-ACq7",2014-05-27,2014-05-27,"YB","AC","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts likely low due to glare."
+"2014-05-27_YB-ACq8",2014-05-27,2014-05-27,"YB","AC","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts possibly low due to glare."
+"2014-05-27_YB-ADq1",2014-05-27,2014-05-27,"YB","AD","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","20%",""
+"2014-05-27_YB-ADq5",2014-05-27,2014-05-27,"YB","AD","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2014-05-27_YB-ADq8",2014-05-27,2014-05-27,"YB","AD","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts may be low due to blur of barnacle recruits."
+"2014-05-27_YB-ADq1",2014-05-27,2014-05-27,"YB","AD","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","20%",""
+"2014-05-27_YB-ADq5",2014-05-27,2014-05-27,"YB","AD","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2014-05-27_YB-ADq8",2014-05-27,2014-05-27,"YB","AD","8","Ae","Anemones","Type 14",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts may be low due to blur of barnacle recruits."
+"2014-05-27_YB-ADq1",2014-05-27,2014-05-27,"YB","AD","1","Bg","Balanus_glandula","Type 1",240,0.015625,15360,"c","Beatriz Vaca","Finished","Cropped","Cropped","20%",""
+"2014-05-27_YB-ADq5",2014-05-27,2014-05-27,"YB","AD","5","Bg","Balanus_glandula","Type 1",1010,0.0875,11542.8571428571,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2014-05-27_YB-ADq8",2014-05-27,2014-05-27,"YB","AD","8","Bg","Balanus_glandula","Type 1",270,0.015625,17280,"c","Beatriz Vaca","Finished","Full","Cropped","1%","Counts may be low due to blur of barnacle recruits."
+"2014-05-27_YB-ADq1",2014-05-27,2014-05-27,"YB","AD","1","BgD","Balanus_glandula_(dead)","Type 2",8,0.015625,512,"c","Beatriz Vaca","Finished","Cropped","Cropped","20%",""
+"2014-05-27_YB-ADq5",2014-05-27,2014-05-27,"YB","AD","5","BgD","Balanus_glandula_(dead)","Type 2",40,0.0875,457.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2014-05-27_YB-ADq8",2014-05-27,2014-05-27,"YB","AD","8","BgD","Balanus_glandula_(dead)","Type 2",14,0.015625,896,"c","Beatriz Vaca","Finished","Full","Cropped","1%","Counts may be low due to blur of barnacle recruits."
+"2014-05-27_YB-ADq1",2014-05-27,2014-05-27,"YB","AD","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","20%",""
+"2014-05-27_YB-ADq5",2014-05-27,2014-05-27,"YB","AD","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2014-05-27_YB-ADq8",2014-05-27,2014-05-27,"YB","AD","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts may be low due to blur of barnacle recruits."
+"2014-05-27_YB-ADq1",2014-05-27,2014-05-27,"YB","AD","1","Cth","Chthamalus_dalli","Type 3",2,0.015625,128,"c","Beatriz Vaca","Finished","Cropped","Cropped","20%",""
+"2014-05-27_YB-ADq5",2014-05-27,2014-05-27,"YB","AD","5","Cth","Chthamalus_dalli","Type 3",12,0.0875,137.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2014-05-27_YB-ADq8",2014-05-27,2014-05-27,"YB","AD","8","Cth","Chthamalus_dalli","Type 3",2,0.015625,128,"c","Beatriz Vaca","Finished","Full","Cropped","1%","Counts may be low due to blur of barnacle recruits."
+"2014-05-27_YB-ADq1",2014-05-27,2014-05-27,"YB","AD","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","20%",""
+"2014-05-27_YB-ADq5",2014-05-27,2014-05-27,"YB","AD","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2014-05-27_YB-ADq8",2014-05-27,2014-05-27,"YB","AD","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","1%","Counts may be low due to blur of barnacle recruits."
+"2014-05-27_YB-ADq1",2014-05-27,2014-05-27,"YB","AD","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","20%",""
+"2014-05-27_YB-ADq5",2014-05-27,2014-05-27,"YB","AD","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2014-05-27_YB-ADq8",2014-05-27,2014-05-27,"YB","AD","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts may be low due to blur of barnacle recruits."
+"2014-05-27_YB-ADq1",2014-05-27,2014-05-27,"YB","AD","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","20%",""
+"2014-05-27_YB-ADq5",2014-05-27,2014-05-27,"YB","AD","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2014-05-27_YB-ADq8",2014-05-27,2014-05-27,"YB","AD","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts may be low due to blur of barnacle recruits."
+"2014-05-27_YB-ADq1",2014-05-27,2014-05-27,"YB","AD","1","Lim","Limpets","Type 12",79,0.0875,902.857142857143,NA,"Beatriz Vaca","Finished","Cropped","Cropped","20%",""
+"2014-05-27_YB-ADq5",2014-05-27,2014-05-27,"YB","AD","5","Lim","Limpets","Type 12",136,0.0875,1554.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2014-05-27_YB-ADq8",2014-05-27,2014-05-27,"YB","AD","8","Lim","Limpets","Type 12",88,0.0875,1005.71428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts may be low due to blur of barnacle recruits."
+"2014-05-27_YB-ADq1",2014-05-27,2014-05-27,"YB","AD","1","Ls","Littorina_sitkana","Type 13",200,0.0875,2285.71428571429,NA,"Beatriz Vaca","Finished","Cropped","Cropped","20%",""
+"2014-05-27_YB-ADq5",2014-05-27,2014-05-27,"YB","AD","5","Ls","Littorina_sitkana","Type 13",248,0.0875,2834.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2014-05-27_YB-ADq8",2014-05-27,2014-05-27,"YB","AD","8","Ls","Littorina_sitkana","Type 13",56,0.0875,640,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts may be low due to blur of barnacle recruits."
+"2014-05-27_YB-ADq1",2014-05-27,2014-05-27,"YB","AD","1","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","20%",""
+"2014-05-27_YB-ADq5",2014-05-27,2014-05-27,"YB","AD","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2014-05-27_YB-ADq8",2014-05-27,2014-05-27,"YB","AD","8","Mc","Mytilus_californianus","Type 17",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts may be low due to blur of barnacle recruits."
+"2014-05-27_YB-ADq1",2014-05-27,2014-05-27,"YB","AD","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","20%",""
+"2014-05-27_YB-ADq5",2014-05-27,2014-05-27,"YB","AD","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2014-05-27_YB-ADq8",2014-05-27,2014-05-27,"YB","AD","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts may be low due to blur of barnacle recruits."
+"2014-05-27_YB-ADq1",2014-05-27,2014-05-27,"YB","AD","1","Myt","Mytilus_spp","Type 7",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","20%",""
+"2014-05-27_YB-ADq5",2014-05-27,2014-05-27,"YB","AD","5","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2014-05-27_YB-ADq8",2014-05-27,2014-05-27,"YB","AD","8","Myt","Mytilus_spp","Type 7",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts may be low due to blur of barnacle recruits."
+"2014-05-27_YB-ADq1",2014-05-27,2014-05-27,"YB","AD","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","20%",""
+"2014-05-27_YB-ADq5",2014-05-27,2014-05-27,"YB","AD","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2014-05-27_YB-ADq8",2014-05-27,2014-05-27,"YB","AD","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts may be low due to blur of barnacle recruits."
+"2014-05-27_YB-ADq1",2014-05-27,2014-05-27,"YB","AD","1","Mt","Mytilus_trossulus","Type 15",173,0.015625,11072,"c","Beatriz Vaca","Finished","Cropped","Cropped","20%",""
+"2014-05-27_YB-ADq5",2014-05-27,2014-05-27,"YB","AD","5","Mt","Mytilus_trossulus","Type 15",359,0.0875,4102.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2014-05-27_YB-ADq8",2014-05-27,2014-05-27,"YB","AD","8","Mt","Mytilus_trossulus","Type 15",629,0.0875,7188.57142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts may be low due to blur of barnacle recruits."
+"2014-05-27_YB-ADq1",2014-05-27,2014-05-27,"YB","AD","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","20%",""
+"2014-05-27_YB-ADq5",2014-05-27,2014-05-27,"YB","AD","5","MtD","Mytilus_trossulus_(dead)","Type 16",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2014-05-27_YB-ADq8",2014-05-27,2014-05-27,"YB","AD","8","MtD","Mytilus_trossulus_(dead)","Type 16",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts may be low due to blur of barnacle recruits."
+"2014-05-27_YB-ADq1",2014-05-27,2014-05-27,"YB","AD","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","20%",""
+"2014-05-27_YB-ADq5",2014-05-27,2014-05-27,"YB","AD","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2014-05-27_YB-ADq8",2014-05-27,2014-05-27,"YB","AD","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts may be low due to blur of barnacle recruits."
+"2014-05-27_YB-ADq1",2014-05-27,2014-05-27,"YB","AD","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","20%",""
+"2014-05-27_YB-ADq5",2014-05-27,2014-05-27,"YB","AD","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2014-05-27_YB-ADq8",2014-05-27,2014-05-27,"YB","AD","8","Nc","Nucella_canaliculata","Type 10",20,0.0875,228.571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts may be low due to blur of barnacle recruits."
+"2014-05-27_YB-ADq1",2014-05-27,2014-05-27,"YB","AD","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","20%",""
+"2014-05-27_YB-ADq5",2014-05-27,2014-05-27,"YB","AD","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2014-05-27_YB-ADq8",2014-05-27,2014-05-27,"YB","AD","8","Negg","Nucella_eggs","Type 26",16,0.0875,182.857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts may be low due to blur of barnacle recruits."
+"2014-05-27_YB-ADq1",2014-05-27,2014-05-27,"YB","AD","1","No","Nucella_ostrina","Type 9",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Cropped","Cropped","20%",""
+"2014-05-27_YB-ADq5",2014-05-27,2014-05-27,"YB","AD","5","No","Nucella_ostrina","Type 9",20,0.0875,228.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2014-05-27_YB-ADq8",2014-05-27,2014-05-27,"YB","AD","8","No","Nucella_ostrina","Type 9",34,0.0875,388.571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts may be low due to blur of barnacle recruits."
+"2014-05-27_YB-ADq1",2014-05-27,2014-05-27,"YB","AD","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","20%",""
+"2014-05-27_YB-ADq5",2014-05-27,2014-05-27,"YB","AD","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2014-05-27_YB-ADq8",2014-05-27,2014-05-27,"YB","AD","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts may be low due to blur of barnacle recruits."
+"2014-05-27_YB-ADq1",2014-05-27,2014-05-27,"YB","AD","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","20%",""
+"2014-05-27_YB-ADq5",2014-05-27,2014-05-27,"YB","AD","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2014-05-27_YB-ADq8",2014-05-27,2014-05-27,"YB","AD","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts may be low due to blur of barnacle recruits."
+"2014-05-27_YB-ADq1",2014-05-27,2014-05-27,"YB","AD","1","Pp","Pollicipes_polymerus","Type 11",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Cropped","Cropped","20%",""
+"2014-05-27_YB-ADq5",2014-05-27,2014-05-27,"YB","AD","5","Pp","Pollicipes_polymerus","Type 11",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2014-05-27_YB-ADq8",2014-05-27,2014-05-27,"YB","AD","8","Pp","Pollicipes_polymerus","Type 11",10,0.0875,114.285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts may be low due to blur of barnacle recruits."
+"2014-05-27_YB-ADq1",2014-05-27,2014-05-27,"YB","AD","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","20%",""
+"2014-05-27_YB-ADq5",2014-05-27,2014-05-27,"YB","AD","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2014-05-27_YB-ADq8",2014-05-27,2014-05-27,"YB","AD","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts may be low due to blur of barnacle recruits."
+"2014-05-27_YB-ADq1",2014-05-27,2014-05-27,"YB","AD","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","20%",""
+"2014-05-27_YB-ADq5",2014-05-27,2014-05-27,"YB","AD","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2014-05-27_YB-ADq8",2014-05-27,2014-05-27,"YB","AD","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts may be low due to blur of barnacle recruits."
+"2014-05-27_YB-ADq1",2014-05-27,2014-05-27,"YB","AD","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","20%",""
+"2014-05-27_YB-ADq5",2014-05-27,2014-05-27,"YB","AD","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2014-05-27_YB-ADq8",2014-05-27,2014-05-27,"YB","AD","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts may be low due to blur of barnacle recruits."
+"2014-05-27_YB-AEq1",2014-05-27,2014-05-27,"YB","AE","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-AEq4",2014-05-27,2014-05-27,"YB","AE","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-05-27_YB-AEq8",2014-05-27,2014-05-27,"YB","AE","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2014-05-27_YB-AEq1",2014-05-27,2014-05-27,"YB","AE","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-AEq4",2014-05-27,2014-05-27,"YB","AE","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-05-27_YB-AEq8",2014-05-27,2014-05-27,"YB","AE","8","Ae","Anemones","Type 14",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2014-05-27_YB-AEq1",2014-05-27,2014-05-27,"YB","AE","1","Bg","Balanus_glandula","Type 1",532,0.015625,34048,"c","Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-AEq4",2014-05-27,2014-05-27,"YB","AE","4","Bg","Balanus_glandula","Type 1",418,0.015625,26752,"c","Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-05-27_YB-AEq8",2014-05-27,2014-05-27,"YB","AE","8","Bg","Balanus_glandula","Type 1",808,0.0875,9234.28571428572,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2014-05-27_YB-AEq1",2014-05-27,2014-05-27,"YB","AE","1","BgD","Balanus_glandula_(dead)","Type 2",16,0.015625,1024,"c","Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-AEq4",2014-05-27,2014-05-27,"YB","AE","4","BgD","Balanus_glandula_(dead)","Type 2",6,0.015625,384,"c","Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-05-27_YB-AEq8",2014-05-27,2014-05-27,"YB","AE","8","BgD","Balanus_glandula_(dead)","Type 2",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2014-05-27_YB-AEq1",2014-05-27,2014-05-27,"YB","AE","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-AEq4",2014-05-27,2014-05-27,"YB","AE","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-05-27_YB-AEq8",2014-05-27,2014-05-27,"YB","AE","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2014-05-27_YB-AEq1",2014-05-27,2014-05-27,"YB","AE","1","Cth","Chthamalus_dalli","Type 3",27,0.015625,1728,"c","Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-AEq4",2014-05-27,2014-05-27,"YB","AE","4","Cth","Chthamalus_dalli","Type 3",7,0.015625,448,"c","Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-05-27_YB-AEq8",2014-05-27,2014-05-27,"YB","AE","8","Cth","Chthamalus_dalli","Type 3",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2014-05-27_YB-AEq1",2014-05-27,2014-05-27,"YB","AE","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-AEq4",2014-05-27,2014-05-27,"YB","AE","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-05-27_YB-AEq8",2014-05-27,2014-05-27,"YB","AE","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2014-05-27_YB-AEq1",2014-05-27,2014-05-27,"YB","AE","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-AEq4",2014-05-27,2014-05-27,"YB","AE","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-05-27_YB-AEq8",2014-05-27,2014-05-27,"YB","AE","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2014-05-27_YB-AEq1",2014-05-27,2014-05-27,"YB","AE","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-AEq4",2014-05-27,2014-05-27,"YB","AE","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-05-27_YB-AEq8",2014-05-27,2014-05-27,"YB","AE","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2014-05-27_YB-AEq1",2014-05-27,2014-05-27,"YB","AE","1","Lim","Limpets","Type 12",73,0.0875,834.285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-AEq4",2014-05-27,2014-05-27,"YB","AE","4","Lim","Limpets","Type 12",202,0.0875,2308.57142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-05-27_YB-AEq8",2014-05-27,2014-05-27,"YB","AE","8","Lim","Limpets","Type 12",205,0.0875,2342.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2014-05-27_YB-AEq1",2014-05-27,2014-05-27,"YB","AE","1","Ls","Littorina_sitkana","Type 13",394,0.0875,4502.85714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-AEq4",2014-05-27,2014-05-27,"YB","AE","4","Ls","Littorina_sitkana","Type 13",247,0.0875,2822.85714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-05-27_YB-AEq8",2014-05-27,2014-05-27,"YB","AE","8","Ls","Littorina_sitkana","Type 13",35,0.0875,400,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2014-05-27_YB-AEq1",2014-05-27,2014-05-27,"YB","AE","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-AEq4",2014-05-27,2014-05-27,"YB","AE","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-05-27_YB-AEq8",2014-05-27,2014-05-27,"YB","AE","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2014-05-27_YB-AEq1",2014-05-27,2014-05-27,"YB","AE","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-AEq4",2014-05-27,2014-05-27,"YB","AE","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-05-27_YB-AEq8",2014-05-27,2014-05-27,"YB","AE","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2014-05-27_YB-AEq1",2014-05-27,2014-05-27,"YB","AE","1","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-AEq4",2014-05-27,2014-05-27,"YB","AE","4","Myt","Mytilus_spp","Type 7",17,0.0875,194.285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-05-27_YB-AEq8",2014-05-27,2014-05-27,"YB","AE","8","Myt","Mytilus_spp","Type 7",35,0.0875,400,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2014-05-27_YB-AEq1",2014-05-27,2014-05-27,"YB","AE","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-AEq4",2014-05-27,2014-05-27,"YB","AE","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-05-27_YB-AEq8",2014-05-27,2014-05-27,"YB","AE","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2014-05-27_YB-AEq1",2014-05-27,2014-05-27,"YB","AE","1","Mt","Mytilus_trossulus","Type 15",344,0.0875,3931.42857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-AEq4",2014-05-27,2014-05-27,"YB","AE","4","Mt","Mytilus_trossulus","Type 15",164,0.0875,1874.28571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-05-27_YB-AEq8",2014-05-27,2014-05-27,"YB","AE","8","Mt","Mytilus_trossulus","Type 15",64,0.0875,731.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2014-05-27_YB-AEq1",2014-05-27,2014-05-27,"YB","AE","1","MtD","Mytilus_trossulus_(dead)","Type 16",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-AEq4",2014-05-27,2014-05-27,"YB","AE","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-05-27_YB-AEq8",2014-05-27,2014-05-27,"YB","AE","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2014-05-27_YB-AEq1",2014-05-27,2014-05-27,"YB","AE","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-AEq4",2014-05-27,2014-05-27,"YB","AE","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-05-27_YB-AEq8",2014-05-27,2014-05-27,"YB","AE","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2014-05-27_YB-AEq1",2014-05-27,2014-05-27,"YB","AE","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-AEq4",2014-05-27,2014-05-27,"YB","AE","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-05-27_YB-AEq8",2014-05-27,2014-05-27,"YB","AE","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2014-05-27_YB-AEq1",2014-05-27,2014-05-27,"YB","AE","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-AEq4",2014-05-27,2014-05-27,"YB","AE","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-05-27_YB-AEq8",2014-05-27,2014-05-27,"YB","AE","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2014-05-27_YB-AEq1",2014-05-27,2014-05-27,"YB","AE","1","No","Nucella_ostrina","Type 9",14,0.0875,160,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-AEq4",2014-05-27,2014-05-27,"YB","AE","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-05-27_YB-AEq8",2014-05-27,2014-05-27,"YB","AE","8","No","Nucella_ostrina","Type 9",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2014-05-27_YB-AEq1",2014-05-27,2014-05-27,"YB","AE","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-AEq4",2014-05-27,2014-05-27,"YB","AE","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-05-27_YB-AEq8",2014-05-27,2014-05-27,"YB","AE","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2014-05-27_YB-AEq1",2014-05-27,2014-05-27,"YB","AE","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-AEq4",2014-05-27,2014-05-27,"YB","AE","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-05-27_YB-AEq8",2014-05-27,2014-05-27,"YB","AE","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2014-05-27_YB-AEq1",2014-05-27,2014-05-27,"YB","AE","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-AEq4",2014-05-27,2014-05-27,"YB","AE","4","Pp","Pollicipes_polymerus","Type 11",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-05-27_YB-AEq8",2014-05-27,2014-05-27,"YB","AE","8","Pp","Pollicipes_polymerus","Type 11",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2014-05-27_YB-AEq1",2014-05-27,2014-05-27,"YB","AE","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-AEq4",2014-05-27,2014-05-27,"YB","AE","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-05-27_YB-AEq8",2014-05-27,2014-05-27,"YB","AE","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2014-05-27_YB-AEq1",2014-05-27,2014-05-27,"YB","AE","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-AEq4",2014-05-27,2014-05-27,"YB","AE","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-05-27_YB-AEq8",2014-05-27,2014-05-27,"YB","AE","8","Sc","Semibalanus_cariosus","Type 5",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2014-05-27_YB-AEq1",2014-05-27,2014-05-27,"YB","AE","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-AEq4",2014-05-27,2014-05-27,"YB","AE","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-05-27_YB-AEq8",2014-05-27,2014-05-27,"YB","AE","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2014-05-27_YB-AFq5",2014-05-27,2014-05-27,"YB","AF","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-AFq8",2014-05-27,2014-05-27,"YB","AF","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-05-27_YB-AFq9",2014-05-27,2014-05-27,"YB","AF","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches"
+"2014-05-27_YB-AFq5",2014-05-27,2014-05-27,"YB","AF","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-AFq8",2014-05-27,2014-05-27,"YB","AF","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-05-27_YB-AFq9",2014-05-27,2014-05-27,"YB","AF","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches"
+"2014-05-27_YB-AFq5",2014-05-27,2014-05-27,"YB","AF","5","Bg","Balanus_glandula","Type 1",987,0.015625,63168,"c","Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-AFq8",2014-05-27,2014-05-27,"YB","AF","8","Bg","Balanus_glandula","Type 1",1691,0.0875,19325.7142857143,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-05-27_YB-AFq9",2014-05-27,2014-05-27,"YB","AF","9","Bg","Balanus_glandula","Type 1",1248,0.0875,14262.8571428571,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches"
+"2014-05-27_YB-AFq5",2014-05-27,2014-05-27,"YB","AF","5","BgD","Balanus_glandula_(dead)","Type 2",20,0.015625,1280,"c","Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-AFq8",2014-05-27,2014-05-27,"YB","AF","8","BgD","Balanus_glandula_(dead)","Type 2",146,0.0875,1668.57142857143,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-05-27_YB-AFq9",2014-05-27,2014-05-27,"YB","AF","9","BgD","Balanus_glandula_(dead)","Type 2",74,0.0875,845.714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches"
+"2014-05-27_YB-AFq5",2014-05-27,2014-05-27,"YB","AF","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-AFq8",2014-05-27,2014-05-27,"YB","AF","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-05-27_YB-AFq9",2014-05-27,2014-05-27,"YB","AF","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches"
+"2014-05-27_YB-AFq5",2014-05-27,2014-05-27,"YB","AF","5","Cth","Chthamalus_dalli","Type 3",1,0.015625,64,"c","Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-AFq8",2014-05-27,2014-05-27,"YB","AF","8","Cth","Chthamalus_dalli","Type 3",14,0.0875,160,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-05-27_YB-AFq9",2014-05-27,2014-05-27,"YB","AF","9","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches"
+"2014-05-27_YB-AFq5",2014-05-27,2014-05-27,"YB","AF","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-AFq8",2014-05-27,2014-05-27,"YB","AF","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-05-27_YB-AFq9",2014-05-27,2014-05-27,"YB","AF","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches"
+"2014-05-27_YB-AFq5",2014-05-27,2014-05-27,"YB","AF","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-AFq8",2014-05-27,2014-05-27,"YB","AF","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-05-27_YB-AFq9",2014-05-27,2014-05-27,"YB","AF","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches"
+"2014-05-27_YB-AFq5",2014-05-27,2014-05-27,"YB","AF","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-AFq8",2014-05-27,2014-05-27,"YB","AF","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-05-27_YB-AFq9",2014-05-27,2014-05-27,"YB","AF","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches"
+"2014-05-27_YB-AFq5",2014-05-27,2014-05-27,"YB","AF","5","Lim","Limpets","Type 12",219,0.0875,2502.85714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-AFq8",2014-05-27,2014-05-27,"YB","AF","8","Lim","Limpets","Type 12",29,0.0875,331.428571428571,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-05-27_YB-AFq9",2014-05-27,2014-05-27,"YB","AF","9","Lim","Limpets","Type 12",97,0.0875,1108.57142857143,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches"
+"2014-05-27_YB-AFq5",2014-05-27,2014-05-27,"YB","AF","5","Ls","Littorina_sitkana","Type 13",580,0.0875,6628.57142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-AFq8",2014-05-27,2014-05-27,"YB","AF","8","Ls","Littorina_sitkana","Type 13",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-05-27_YB-AFq9",2014-05-27,2014-05-27,"YB","AF","9","Ls","Littorina_sitkana","Type 13",173,0.0875,1977.14285714286,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches"
+"2014-05-27_YB-AFq5",2014-05-27,2014-05-27,"YB","AF","5","Mc","Mytilus_californianus","Type 17",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-AFq8",2014-05-27,2014-05-27,"YB","AF","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-05-27_YB-AFq9",2014-05-27,2014-05-27,"YB","AF","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches"
+"2014-05-27_YB-AFq5",2014-05-27,2014-05-27,"YB","AF","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-AFq8",2014-05-27,2014-05-27,"YB","AF","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-05-27_YB-AFq9",2014-05-27,2014-05-27,"YB","AF","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches"
+"2014-05-27_YB-AFq5",2014-05-27,2014-05-27,"YB","AF","5","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-AFq8",2014-05-27,2014-05-27,"YB","AF","8","Myt","Mytilus_spp","Type 7",72,0.0875,822.857142857143,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-05-27_YB-AFq9",2014-05-27,2014-05-27,"YB","AF","9","Myt","Mytilus_spp","Type 7",48,0.0875,548.571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches"
+"2014-05-27_YB-AFq5",2014-05-27,2014-05-27,"YB","AF","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-AFq8",2014-05-27,2014-05-27,"YB","AF","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-05-27_YB-AFq9",2014-05-27,2014-05-27,"YB","AF","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches"
+"2014-05-27_YB-AFq5",2014-05-27,2014-05-27,"YB","AF","5","Mt","Mytilus_trossulus","Type 15",339,0.0875,3874.28571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-AFq8",2014-05-27,2014-05-27,"YB","AF","8","Mt","Mytilus_trossulus","Type 15",1,0.0875,11.4285714285714,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-05-27_YB-AFq9",2014-05-27,2014-05-27,"YB","AF","9","Mt","Mytilus_trossulus","Type 15",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches"
+"2014-05-27_YB-AFq5",2014-05-27,2014-05-27,"YB","AF","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-AFq8",2014-05-27,2014-05-27,"YB","AF","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-05-27_YB-AFq9",2014-05-27,2014-05-27,"YB","AF","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches"
+"2014-05-27_YB-AFq5",2014-05-27,2014-05-27,"YB","AF","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-AFq8",2014-05-27,2014-05-27,"YB","AF","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-05-27_YB-AFq9",2014-05-27,2014-05-27,"YB","AF","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches"
+"2014-05-27_YB-AFq5",2014-05-27,2014-05-27,"YB","AF","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-AFq8",2014-05-27,2014-05-27,"YB","AF","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-05-27_YB-AFq9",2014-05-27,2014-05-27,"YB","AF","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches"
+"2014-05-27_YB-AFq5",2014-05-27,2014-05-27,"YB","AF","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-AFq8",2014-05-27,2014-05-27,"YB","AF","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-05-27_YB-AFq9",2014-05-27,2014-05-27,"YB","AF","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches"
+"2014-05-27_YB-AFq5",2014-05-27,2014-05-27,"YB","AF","5","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-AFq8",2014-05-27,2014-05-27,"YB","AF","8","No","Nucella_ostrina","Type 9",22,0.0875,251.428571428571,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-05-27_YB-AFq9",2014-05-27,2014-05-27,"YB","AF","9","No","Nucella_ostrina","Type 9",12,0.0875,137.142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches"
+"2014-05-27_YB-AFq5",2014-05-27,2014-05-27,"YB","AF","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-AFq8",2014-05-27,2014-05-27,"YB","AF","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-05-27_YB-AFq9",2014-05-27,2014-05-27,"YB","AF","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches"
+"2014-05-27_YB-AFq5",2014-05-27,2014-05-27,"YB","AF","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-AFq8",2014-05-27,2014-05-27,"YB","AF","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-05-27_YB-AFq9",2014-05-27,2014-05-27,"YB","AF","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches"
+"2014-05-27_YB-AFq5",2014-05-27,2014-05-27,"YB","AF","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-AFq8",2014-05-27,2014-05-27,"YB","AF","8","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-05-27_YB-AFq9",2014-05-27,2014-05-27,"YB","AF","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches"
+"2014-05-27_YB-AFq5",2014-05-27,2014-05-27,"YB","AF","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-AFq8",2014-05-27,2014-05-27,"YB","AF","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-05-27_YB-AFq9",2014-05-27,2014-05-27,"YB","AF","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches"
+"2014-05-27_YB-AFq5",2014-05-27,2014-05-27,"YB","AF","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-AFq8",2014-05-27,2014-05-27,"YB","AF","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-05-27_YB-AFq9",2014-05-27,2014-05-27,"YB","AF","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches"
+"2014-05-27_YB-AFq5",2014-05-27,2014-05-27,"YB","AF","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-AFq8",2014-05-27,2014-05-27,"YB","AF","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-05-27_YB-AFq9",2014-05-27,2014-05-27,"YB","AF","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches"
+"2014-05-27_YB-AGq1",2014-05-27,2014-05-27,"YB","AG","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-AGq2",2014-05-27,2014-05-27,"YB","AG","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Tons of littorines"
+"2014-05-27_YB-AGq3",2014-05-27,2014-05-27,"YB","AG","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","7%",""
+"2014-05-27_YB-AGq7",2014-05-27,2014-05-27,"YB","AG","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to water patcehs"
+"2014-05-27_YB-AGq9",2014-05-27,2014-05-27,"YB","AG","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patcehs"
+"2014-05-27_YB-AGq1",2014-05-27,2014-05-27,"YB","AG","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-AGq2",2014-05-27,2014-05-27,"YB","AG","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Tons of littorines"
+"2014-05-27_YB-AGq3",2014-05-27,2014-05-27,"YB","AG","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","7%",""
+"2014-05-27_YB-AGq7",2014-05-27,2014-05-27,"YB","AG","7","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to water patcehs"
+"2014-05-27_YB-AGq9",2014-05-27,2014-05-27,"YB","AG","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patcehs"
+"2014-05-27_YB-AGq1",2014-05-27,2014-05-27,"YB","AG","1","Bg","Balanus_glandula","Type 1",168,0.015625,10752,"c","Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-AGq2",2014-05-27,2014-05-27,"YB","AG","2","Bg","Balanus_glandula","Type 1",472,0.015625,30208,"c","Isaac Shepard","Finished","Full","Cropped","0%","Tons of littorines"
+"2014-05-27_YB-AGq3",2014-05-27,2014-05-27,"YB","AG","3","Bg","Balanus_glandula","Type 1",420,0.015625,26880,"c","Isaac Shepard","Finished","Full","Cropped","7%",""
+"2014-05-27_YB-AGq7",2014-05-27,2014-05-27,"YB","AG","7","Bg","Balanus_glandula","Type 1",1740,0.0875,19885.7142857143,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to water patcehs"
+"2014-05-27_YB-AGq9",2014-05-27,2014-05-27,"YB","AG","9","Bg","Balanus_glandula","Type 1",1666,0.0875,19040,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patcehs"
+"2014-05-27_YB-AGq1",2014-05-27,2014-05-27,"YB","AG","1","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-AGq2",2014-05-27,2014-05-27,"YB","AG","2","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","0%","Tons of littorines"
+"2014-05-27_YB-AGq3",2014-05-27,2014-05-27,"YB","AG","3","BgD","Balanus_glandula_(dead)","Type 2",5,0.015625,320,"c","Isaac Shepard","Finished","Full","Cropped","7%",""
+"2014-05-27_YB-AGq7",2014-05-27,2014-05-27,"YB","AG","7","BgD","Balanus_glandula_(dead)","Type 2",10,0.0875,114.285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to water patcehs"
+"2014-05-27_YB-AGq9",2014-05-27,2014-05-27,"YB","AG","9","BgD","Balanus_glandula_(dead)","Type 2",10,0.0875,114.285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patcehs"
+"2014-05-27_YB-AGq1",2014-05-27,2014-05-27,"YB","AG","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-AGq2",2014-05-27,2014-05-27,"YB","AG","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Tons of littorines"
+"2014-05-27_YB-AGq3",2014-05-27,2014-05-27,"YB","AG","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","7%",""
+"2014-05-27_YB-AGq7",2014-05-27,2014-05-27,"YB","AG","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to water patcehs"
+"2014-05-27_YB-AGq9",2014-05-27,2014-05-27,"YB","AG","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patcehs"
+"2014-05-27_YB-AGq1",2014-05-27,2014-05-27,"YB","AG","1","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-AGq2",2014-05-27,2014-05-27,"YB","AG","2","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","0%","Tons of littorines"
+"2014-05-27_YB-AGq3",2014-05-27,2014-05-27,"YB","AG","3","Cth","Chthamalus_dalli","Type 3",17,0.015625,1088,"c","Isaac Shepard","Finished","Full","Cropped","7%",""
+"2014-05-27_YB-AGq7",2014-05-27,2014-05-27,"YB","AG","7","Cth","Chthamalus_dalli","Type 3",58,0.0875,662.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to water patcehs"
+"2014-05-27_YB-AGq9",2014-05-27,2014-05-27,"YB","AG","9","Cth","Chthamalus_dalli","Type 3",254,0.0875,2902.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patcehs"
+"2014-05-27_YB-AGq1",2014-05-27,2014-05-27,"YB","AG","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-AGq2",2014-05-27,2014-05-27,"YB","AG","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","0%","Tons of littorines"
+"2014-05-27_YB-AGq3",2014-05-27,2014-05-27,"YB","AG","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","7%",""
+"2014-05-27_YB-AGq7",2014-05-27,2014-05-27,"YB","AG","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to water patcehs"
+"2014-05-27_YB-AGq9",2014-05-27,2014-05-27,"YB","AG","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patcehs"
+"2014-05-27_YB-AGq1",2014-05-27,2014-05-27,"YB","AG","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-AGq2",2014-05-27,2014-05-27,"YB","AG","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Tons of littorines"
+"2014-05-27_YB-AGq3",2014-05-27,2014-05-27,"YB","AG","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","7%",""
+"2014-05-27_YB-AGq7",2014-05-27,2014-05-27,"YB","AG","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to water patcehs"
+"2014-05-27_YB-AGq9",2014-05-27,2014-05-27,"YB","AG","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patcehs"
+"2014-05-27_YB-AGq1",2014-05-27,2014-05-27,"YB","AG","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-AGq2",2014-05-27,2014-05-27,"YB","AG","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Tons of littorines"
+"2014-05-27_YB-AGq3",2014-05-27,2014-05-27,"YB","AG","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","7%",""
+"2014-05-27_YB-AGq7",2014-05-27,2014-05-27,"YB","AG","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to water patcehs"
+"2014-05-27_YB-AGq9",2014-05-27,2014-05-27,"YB","AG","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patcehs"
+"2014-05-27_YB-AGq1",2014-05-27,2014-05-27,"YB","AG","1","Lim","Limpets","Type 12",17,0.0875,194.285714285714,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-AGq2",2014-05-27,2014-05-27,"YB","AG","2","Lim","Limpets","Type 12",43,0.0875,491.428571428571,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Tons of littorines"
+"2014-05-27_YB-AGq3",2014-05-27,2014-05-27,"YB","AG","3","Lim","Limpets","Type 12",54,0.0875,617.142857142857,NA,"Isaac Shepard","Finished","Full","Cropped","7%",""
+"2014-05-27_YB-AGq7",2014-05-27,2014-05-27,"YB","AG","7","Lim","Limpets","Type 12",91,0.0875,1040,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to water patcehs"
+"2014-05-27_YB-AGq9",2014-05-27,2014-05-27,"YB","AG","9","Lim","Limpets","Type 12",117,0.0875,1337.14285714286,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patcehs"
+"2014-05-27_YB-AGq1",2014-05-27,2014-05-27,"YB","AG","1","Ls","Littorina_sitkana","Type 13",113,0.0875,1291.42857142857,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-AGq2",2014-05-27,2014-05-27,"YB","AG","2","Ls","Littorina_sitkana","Type 13",381,0.0875,4354.28571428571,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Tons of littorines"
+"2014-05-27_YB-AGq3",2014-05-27,2014-05-27,"YB","AG","3","Ls","Littorina_sitkana","Type 13",287,0.0875,3280,NA,"Isaac Shepard","Finished","Full","Cropped","7%",""
+"2014-05-27_YB-AGq7",2014-05-27,2014-05-27,"YB","AG","7","Ls","Littorina_sitkana","Type 13",167,0.0875,1908.57142857143,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to water patcehs"
+"2014-05-27_YB-AGq9",2014-05-27,2014-05-27,"YB","AG","9","Ls","Littorina_sitkana","Type 13",134,0.0875,1531.42857142857,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patcehs"
+"2014-05-27_YB-AGq1",2014-05-27,2014-05-27,"YB","AG","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-AGq2",2014-05-27,2014-05-27,"YB","AG","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Tons of littorines"
+"2014-05-27_YB-AGq3",2014-05-27,2014-05-27,"YB","AG","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","7%",""
+"2014-05-27_YB-AGq7",2014-05-27,2014-05-27,"YB","AG","7","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to water patcehs"
+"2014-05-27_YB-AGq9",2014-05-27,2014-05-27,"YB","AG","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patcehs"
+"2014-05-27_YB-AGq1",2014-05-27,2014-05-27,"YB","AG","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-AGq2",2014-05-27,2014-05-27,"YB","AG","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Tons of littorines"
+"2014-05-27_YB-AGq3",2014-05-27,2014-05-27,"YB","AG","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","7%",""
+"2014-05-27_YB-AGq7",2014-05-27,2014-05-27,"YB","AG","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to water patcehs"
+"2014-05-27_YB-AGq9",2014-05-27,2014-05-27,"YB","AG","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patcehs"
+"2014-05-27_YB-AGq1",2014-05-27,2014-05-27,"YB","AG","1","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-AGq2",2014-05-27,2014-05-27,"YB","AG","2","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Tons of littorines"
+"2014-05-27_YB-AGq3",2014-05-27,2014-05-27,"YB","AG","3","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","7%",""
+"2014-05-27_YB-AGq7",2014-05-27,2014-05-27,"YB","AG","7","Myt","Mytilus_spp","Type 7",401,0.0875,4582.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to water patcehs"
+"2014-05-27_YB-AGq9",2014-05-27,2014-05-27,"YB","AG","9","Myt","Mytilus_spp","Type 7",359,0.0875,4102.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patcehs"
+"2014-05-27_YB-AGq1",2014-05-27,2014-05-27,"YB","AG","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-AGq2",2014-05-27,2014-05-27,"YB","AG","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Tons of littorines"
+"2014-05-27_YB-AGq3",2014-05-27,2014-05-27,"YB","AG","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","7%",""
+"2014-05-27_YB-AGq7",2014-05-27,2014-05-27,"YB","AG","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to water patcehs"
+"2014-05-27_YB-AGq9",2014-05-27,2014-05-27,"YB","AG","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patcehs"
+"2014-05-27_YB-AGq1",2014-05-27,2014-05-27,"YB","AG","1","Mt","Mytilus_trossulus","Type 15",86,0.0875,982.857142857143,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-AGq2",2014-05-27,2014-05-27,"YB","AG","2","Mt","Mytilus_trossulus","Type 15",94,0.0875,1074.28571428571,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Tons of littorines"
+"2014-05-27_YB-AGq3",2014-05-27,2014-05-27,"YB","AG","3","Mt","Mytilus_trossulus","Type 15",247,0.0875,2822.85714285714,NA,"Isaac Shepard","Finished","Full","Cropped","7%",""
+"2014-05-27_YB-AGq7",2014-05-27,2014-05-27,"YB","AG","7","Mt","Mytilus_trossulus","Type 15",14,0.0875,160,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to water patcehs"
+"2014-05-27_YB-AGq9",2014-05-27,2014-05-27,"YB","AG","9","Mt","Mytilus_trossulus","Type 15",11,0.0875,125.714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patcehs"
+"2014-05-27_YB-AGq1",2014-05-27,2014-05-27,"YB","AG","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-AGq2",2014-05-27,2014-05-27,"YB","AG","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Tons of littorines"
+"2014-05-27_YB-AGq3",2014-05-27,2014-05-27,"YB","AG","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","7%",""
+"2014-05-27_YB-AGq7",2014-05-27,2014-05-27,"YB","AG","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to water patcehs"
+"2014-05-27_YB-AGq9",2014-05-27,2014-05-27,"YB","AG","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patcehs"
+"2014-05-27_YB-AGq1",2014-05-27,2014-05-27,"YB","AG","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-AGq2",2014-05-27,2014-05-27,"YB","AG","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Tons of littorines"
+"2014-05-27_YB-AGq3",2014-05-27,2014-05-27,"YB","AG","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","7%",""
+"2014-05-27_YB-AGq7",2014-05-27,2014-05-27,"YB","AG","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to water patcehs"
+"2014-05-27_YB-AGq9",2014-05-27,2014-05-27,"YB","AG","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patcehs"
+"2014-05-27_YB-AGq1",2014-05-27,2014-05-27,"YB","AG","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-AGq2",2014-05-27,2014-05-27,"YB","AG","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Tons of littorines"
+"2014-05-27_YB-AGq3",2014-05-27,2014-05-27,"YB","AG","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","7%",""
+"2014-05-27_YB-AGq7",2014-05-27,2014-05-27,"YB","AG","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to water patcehs"
+"2014-05-27_YB-AGq9",2014-05-27,2014-05-27,"YB","AG","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patcehs"
+"2014-05-27_YB-AGq1",2014-05-27,2014-05-27,"YB","AG","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-AGq2",2014-05-27,2014-05-27,"YB","AG","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Tons of littorines"
+"2014-05-27_YB-AGq3",2014-05-27,2014-05-27,"YB","AG","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","7%",""
+"2014-05-27_YB-AGq7",2014-05-27,2014-05-27,"YB","AG","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to water patcehs"
+"2014-05-27_YB-AGq9",2014-05-27,2014-05-27,"YB","AG","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patcehs"
+"2014-05-27_YB-AGq1",2014-05-27,2014-05-27,"YB","AG","1","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-AGq2",2014-05-27,2014-05-27,"YB","AG","2","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Tons of littorines"
+"2014-05-27_YB-AGq3",2014-05-27,2014-05-27,"YB","AG","3","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","7%",""
+"2014-05-27_YB-AGq7",2014-05-27,2014-05-27,"YB","AG","7","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to water patcehs"
+"2014-05-27_YB-AGq9",2014-05-27,2014-05-27,"YB","AG","9","No","Nucella_ostrina","Type 9",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patcehs"
+"2014-05-27_YB-AGq1",2014-05-27,2014-05-27,"YB","AG","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-AGq2",2014-05-27,2014-05-27,"YB","AG","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Tons of littorines"
+"2014-05-27_YB-AGq3",2014-05-27,2014-05-27,"YB","AG","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","7%",""
+"2014-05-27_YB-AGq7",2014-05-27,2014-05-27,"YB","AG","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to water patcehs"
+"2014-05-27_YB-AGq9",2014-05-27,2014-05-27,"YB","AG","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patcehs"
+"2014-05-27_YB-AGq1",2014-05-27,2014-05-27,"YB","AG","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-AGq2",2014-05-27,2014-05-27,"YB","AG","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Tons of littorines"
+"2014-05-27_YB-AGq3",2014-05-27,2014-05-27,"YB","AG","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","7%",""
+"2014-05-27_YB-AGq7",2014-05-27,2014-05-27,"YB","AG","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to water patcehs"
+"2014-05-27_YB-AGq9",2014-05-27,2014-05-27,"YB","AG","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patcehs"
+"2014-05-27_YB-AGq1",2014-05-27,2014-05-27,"YB","AG","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-AGq2",2014-05-27,2014-05-27,"YB","AG","2","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Tons of littorines"
+"2014-05-27_YB-AGq3",2014-05-27,2014-05-27,"YB","AG","3","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","7%",""
+"2014-05-27_YB-AGq7",2014-05-27,2014-05-27,"YB","AG","7","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to water patcehs"
+"2014-05-27_YB-AGq9",2014-05-27,2014-05-27,"YB","AG","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patcehs"
+"2014-05-27_YB-AGq1",2014-05-27,2014-05-27,"YB","AG","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-AGq2",2014-05-27,2014-05-27,"YB","AG","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Tons of littorines"
+"2014-05-27_YB-AGq3",2014-05-27,2014-05-27,"YB","AG","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","7%",""
+"2014-05-27_YB-AGq7",2014-05-27,2014-05-27,"YB","AG","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to water patcehs"
+"2014-05-27_YB-AGq9",2014-05-27,2014-05-27,"YB","AG","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patcehs"
+"2014-05-27_YB-AGq1",2014-05-27,2014-05-27,"YB","AG","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-AGq2",2014-05-27,2014-05-27,"YB","AG","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Tons of littorines"
+"2014-05-27_YB-AGq3",2014-05-27,2014-05-27,"YB","AG","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","7%",""
+"2014-05-27_YB-AGq7",2014-05-27,2014-05-27,"YB","AG","7","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to water patcehs"
+"2014-05-27_YB-AGq9",2014-05-27,2014-05-27,"YB","AG","9","Sc","Semibalanus_cariosus","Type 5",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patcehs"
+"2014-05-27_YB-AGq1",2014-05-27,2014-05-27,"YB","AG","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-AGq2",2014-05-27,2014-05-27,"YB","AG","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Tons of littorines"
+"2014-05-27_YB-AGq3",2014-05-27,2014-05-27,"YB","AG","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","7%",""
+"2014-05-27_YB-AGq7",2014-05-27,2014-05-27,"YB","AG","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to water patcehs"
+"2014-05-27_YB-AGq9",2014-05-27,2014-05-27,"YB","AG","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patcehs"
+"2014-05-27_YB-Bq1",2014-05-27,2014-05-27,"YB","B","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-05-27_YB-Bq5",2014-05-27,2014-05-27,"YB","B","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-05-27_YB-Bq6",2014-05-27,2014-05-27,"YB","B","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Bq1",2014-05-27,2014-05-27,"YB","B","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-05-27_YB-Bq5",2014-05-27,2014-05-27,"YB","B","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-05-27_YB-Bq6",2014-05-27,2014-05-27,"YB","B","6","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Bq1",2014-05-27,2014-05-27,"YB","B","1","Bg","Balanus_glandula","Type 1",108,0.015625,6912,"c","Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-05-27_YB-Bq5",2014-05-27,2014-05-27,"YB","B","5","Bg","Balanus_glandula","Type 1",216,0.015625,13824,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-05-27_YB-Bq6",2014-05-27,2014-05-27,"YB","B","6","Bg","Balanus_glandula","Type 1",536,0.015625,34304,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Bq1",2014-05-27,2014-05-27,"YB","B","1","BgD","Balanus_glandula_(dead)","Type 2",4,0.015625,256,"c","Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-05-27_YB-Bq5",2014-05-27,2014-05-27,"YB","B","5","BgD","Balanus_glandula_(dead)","Type 2",55,0.015625,3520,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-05-27_YB-Bq6",2014-05-27,2014-05-27,"YB","B","6","BgD","Balanus_glandula_(dead)","Type 2",22,0.015625,1408,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Bq1",2014-05-27,2014-05-27,"YB","B","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-05-27_YB-Bq5",2014-05-27,2014-05-27,"YB","B","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-05-27_YB-Bq6",2014-05-27,2014-05-27,"YB","B","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Bq1",2014-05-27,2014-05-27,"YB","B","1","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-05-27_YB-Bq5",2014-05-27,2014-05-27,"YB","B","5","Cth","Chthamalus_dalli","Type 3",3,0.015625,192,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-05-27_YB-Bq6",2014-05-27,2014-05-27,"YB","B","6","Cth","Chthamalus_dalli","Type 3",5,0.015625,320,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Bq1",2014-05-27,2014-05-27,"YB","B","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-05-27_YB-Bq5",2014-05-27,2014-05-27,"YB","B","5","CthD","Chthamalus_dalli (dead)","Type 4",3,0.015625,192,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-05-27_YB-Bq6",2014-05-27,2014-05-27,"YB","B","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Bq1",2014-05-27,2014-05-27,"YB","B","1","Emp","Emplectonema worm","Type 23",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-05-27_YB-Bq5",2014-05-27,2014-05-27,"YB","B","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-05-27_YB-Bq6",2014-05-27,2014-05-27,"YB","B","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Bq1",2014-05-27,2014-05-27,"YB","B","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-05-27_YB-Bq5",2014-05-27,2014-05-27,"YB","B","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-05-27_YB-Bq6",2014-05-27,2014-05-27,"YB","B","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Bq1",2014-05-27,2014-05-27,"YB","B","1","Lim","Limpets","Type 12",69,0.0875,788.571428571429,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-05-27_YB-Bq5",2014-05-27,2014-05-27,"YB","B","5","Lim","Limpets","Type 12",191,0.0875,2182.85714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-05-27_YB-Bq6",2014-05-27,2014-05-27,"YB","B","6","Lim","Limpets","Type 12",232,0.0875,2651.42857142857,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Bq1",2014-05-27,2014-05-27,"YB","B","1","Ls","Littorina_sitkana","Type 13",50,0.0875,571.428571428571,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-05-27_YB-Bq5",2014-05-27,2014-05-27,"YB","B","5","Ls","Littorina_sitkana","Type 13",34,0.0875,388.571428571429,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-05-27_YB-Bq6",2014-05-27,2014-05-27,"YB","B","6","Ls","Littorina_sitkana","Type 13",51,0.0875,582.857142857143,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Bq1",2014-05-27,2014-05-27,"YB","B","1","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-05-27_YB-Bq5",2014-05-27,2014-05-27,"YB","B","5","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-05-27_YB-Bq6",2014-05-27,2014-05-27,"YB","B","6","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Bq1",2014-05-27,2014-05-27,"YB","B","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-05-27_YB-Bq5",2014-05-27,2014-05-27,"YB","B","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-05-27_YB-Bq6",2014-05-27,2014-05-27,"YB","B","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Bq1",2014-05-27,2014-05-27,"YB","B","1","Myt","Mytilus_spp","Type 7",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-05-27_YB-Bq5",2014-05-27,2014-05-27,"YB","B","5","Myt","Mytilus_spp","Type 7",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-05-27_YB-Bq6",2014-05-27,2014-05-27,"YB","B","6","Myt","Mytilus_spp","Type 7",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Bq1",2014-05-27,2014-05-27,"YB","B","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-05-27_YB-Bq5",2014-05-27,2014-05-27,"YB","B","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-05-27_YB-Bq6",2014-05-27,2014-05-27,"YB","B","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Bq1",2014-05-27,2014-05-27,"YB","B","1","Mt","Mytilus_trossulus","Type 15",198,0.015625,12672,"c","Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-05-27_YB-Bq5",2014-05-27,2014-05-27,"YB","B","5","Mt","Mytilus_trossulus","Type 15",152,0.015625,9728,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-05-27_YB-Bq6",2014-05-27,2014-05-27,"YB","B","6","Mt","Mytilus_trossulus","Type 15",95,0.015625,6080,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Bq1",2014-05-27,2014-05-27,"YB","B","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-05-27_YB-Bq5",2014-05-27,2014-05-27,"YB","B","5","MtD","Mytilus_trossulus_(dead)","Type 16",1,0.015625,64,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-05-27_YB-Bq6",2014-05-27,2014-05-27,"YB","B","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Bq1",2014-05-27,2014-05-27,"YB","B","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-05-27_YB-Bq5",2014-05-27,2014-05-27,"YB","B","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-05-27_YB-Bq6",2014-05-27,2014-05-27,"YB","B","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Bq1",2014-05-27,2014-05-27,"YB","B","1","Nc","Nucella_canaliculata","Type 10",15,0.0875,171.428571428571,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-05-27_YB-Bq5",2014-05-27,2014-05-27,"YB","B","5","Nc","Nucella_canaliculata","Type 10",100,0.0875,1142.85714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-05-27_YB-Bq6",2014-05-27,2014-05-27,"YB","B","6","Nc","Nucella_canaliculata","Type 10",63,0.0875,720,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Bq1",2014-05-27,2014-05-27,"YB","B","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-05-27_YB-Bq5",2014-05-27,2014-05-27,"YB","B","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-05-27_YB-Bq6",2014-05-27,2014-05-27,"YB","B","6","Negg","Nucella_eggs","Type 26",18,0.0875,205.714285714286,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Bq1",2014-05-27,2014-05-27,"YB","B","1","No","Nucella_ostrina","Type 9",10,0.0875,114.285714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-05-27_YB-Bq5",2014-05-27,2014-05-27,"YB","B","5","No","Nucella_ostrina","Type 9",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-05-27_YB-Bq6",2014-05-27,2014-05-27,"YB","B","6","No","Nucella_ostrina","Type 9",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Bq1",2014-05-27,2014-05-27,"YB","B","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-05-27_YB-Bq5",2014-05-27,2014-05-27,"YB","B","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-05-27_YB-Bq6",2014-05-27,2014-05-27,"YB","B","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Bq1",2014-05-27,2014-05-27,"YB","B","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-05-27_YB-Bq5",2014-05-27,2014-05-27,"YB","B","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-05-27_YB-Bq6",2014-05-27,2014-05-27,"YB","B","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Bq1",2014-05-27,2014-05-27,"YB","B","1","Pp","Pollicipes_polymerus","Type 11",39,0.0875,445.714285714286,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-05-27_YB-Bq5",2014-05-27,2014-05-27,"YB","B","5","Pp","Pollicipes_polymerus","Type 11",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-05-27_YB-Bq6",2014-05-27,2014-05-27,"YB","B","6","Pp","Pollicipes_polymerus","Type 11",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Bq1",2014-05-27,2014-05-27,"YB","B","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-05-27_YB-Bq5",2014-05-27,2014-05-27,"YB","B","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-05-27_YB-Bq6",2014-05-27,2014-05-27,"YB","B","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Bq1",2014-05-27,2014-05-27,"YB","B","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-05-27_YB-Bq5",2014-05-27,2014-05-27,"YB","B","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-05-27_YB-Bq6",2014-05-27,2014-05-27,"YB","B","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Bq1",2014-05-27,2014-05-27,"YB","B","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-05-27_YB-Bq5",2014-05-27,2014-05-27,"YB","B","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-05-27_YB-Bq6",2014-05-27,2014-05-27,"YB","B","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-BBq1",2014-05-27,2014-05-27,"YB","BB","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-05-27_YB-BBq2",2014-05-27,2014-05-27,"YB","BB","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts may be low due to water patches"
+"2014-05-27_YB-BBq9",2014-05-27,2014-05-27,"YB","BB","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-BBq1",2014-05-27,2014-05-27,"YB","BB","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-05-27_YB-BBq2",2014-05-27,2014-05-27,"YB","BB","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts may be low due to water patches"
+"2014-05-27_YB-BBq9",2014-05-27,2014-05-27,"YB","BB","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-BBq1",2014-05-27,2014-05-27,"YB","BB","1","Bg","Balanus_glandula","Type 1",1488,0.0875,17005.7142857143,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-05-27_YB-BBq2",2014-05-27,2014-05-27,"YB","BB","2","Bg","Balanus_glandula","Type 1",1731,0.0875,19782.8571428571,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts may be low due to water patches"
+"2014-05-27_YB-BBq9",2014-05-27,2014-05-27,"YB","BB","9","Bg","Balanus_glandula","Type 1",645,0.015625,41280,"c","Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-BBq1",2014-05-27,2014-05-27,"YB","BB","1","BgD","Balanus_glandula_(dead)","Type 2",21,0.0875,240,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-05-27_YB-BBq2",2014-05-27,2014-05-27,"YB","BB","2","BgD","Balanus_glandula_(dead)","Type 2",12,0.0875,137.142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts may be low due to water patches"
+"2014-05-27_YB-BBq9",2014-05-27,2014-05-27,"YB","BB","9","BgD","Balanus_glandula_(dead)","Type 2",9,0.015625,576,"c","Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-BBq1",2014-05-27,2014-05-27,"YB","BB","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-05-27_YB-BBq2",2014-05-27,2014-05-27,"YB","BB","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts may be low due to water patches"
+"2014-05-27_YB-BBq9",2014-05-27,2014-05-27,"YB","BB","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-BBq1",2014-05-27,2014-05-27,"YB","BB","1","Cth","Chthamalus_dalli","Type 3",126,0.0875,1440,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-05-27_YB-BBq2",2014-05-27,2014-05-27,"YB","BB","2","Cth","Chthamalus_dalli","Type 3",56,0.0875,640,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts may be low due to water patches"
+"2014-05-27_YB-BBq9",2014-05-27,2014-05-27,"YB","BB","9","Cth","Chthamalus_dalli","Type 3",2,0.015625,128,"c","Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-BBq1",2014-05-27,2014-05-27,"YB","BB","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-05-27_YB-BBq2",2014-05-27,2014-05-27,"YB","BB","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts may be low due to water patches"
+"2014-05-27_YB-BBq9",2014-05-27,2014-05-27,"YB","BB","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-BBq1",2014-05-27,2014-05-27,"YB","BB","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-05-27_YB-BBq2",2014-05-27,2014-05-27,"YB","BB","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts may be low due to water patches"
+"2014-05-27_YB-BBq9",2014-05-27,2014-05-27,"YB","BB","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-BBq1",2014-05-27,2014-05-27,"YB","BB","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-05-27_YB-BBq2",2014-05-27,2014-05-27,"YB","BB","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts may be low due to water patches"
+"2014-05-27_YB-BBq9",2014-05-27,2014-05-27,"YB","BB","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-BBq1",2014-05-27,2014-05-27,"YB","BB","1","Lim","Limpets","Type 12",94,0.0875,1074.28571428571,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-05-27_YB-BBq2",2014-05-27,2014-05-27,"YB","BB","2","Lim","Limpets","Type 12",68,0.0875,777.142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts may be low due to water patches"
+"2014-05-27_YB-BBq9",2014-05-27,2014-05-27,"YB","BB","9","Lim","Limpets","Type 12",77,0.0875,880,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-BBq1",2014-05-27,2014-05-27,"YB","BB","1","Ls","Littorina_sitkana","Type 13",411,0.0875,4697.14285714286,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-05-27_YB-BBq2",2014-05-27,2014-05-27,"YB","BB","2","Ls","Littorina_sitkana","Type 13",377,0.0875,4308.57142857143,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts may be low due to water patches"
+"2014-05-27_YB-BBq9",2014-05-27,2014-05-27,"YB","BB","9","Ls","Littorina_sitkana","Type 13",533,0.0875,6091.42857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-BBq1",2014-05-27,2014-05-27,"YB","BB","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-05-27_YB-BBq2",2014-05-27,2014-05-27,"YB","BB","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts may be low due to water patches"
+"2014-05-27_YB-BBq9",2014-05-27,2014-05-27,"YB","BB","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-BBq1",2014-05-27,2014-05-27,"YB","BB","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-05-27_YB-BBq2",2014-05-27,2014-05-27,"YB","BB","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts may be low due to water patches"
+"2014-05-27_YB-BBq9",2014-05-27,2014-05-27,"YB","BB","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-BBq1",2014-05-27,2014-05-27,"YB","BB","1","Myt","Mytilus_spp","Type 7",451,0.0875,5154.28571428571,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-05-27_YB-BBq2",2014-05-27,2014-05-27,"YB","BB","2","Myt","Mytilus_spp","Type 7",553,0.0875,6320,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts may be low due to water patches"
+"2014-05-27_YB-BBq9",2014-05-27,2014-05-27,"YB","BB","9","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-BBq1",2014-05-27,2014-05-27,"YB","BB","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-05-27_YB-BBq2",2014-05-27,2014-05-27,"YB","BB","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts may be low due to water patches"
+"2014-05-27_YB-BBq9",2014-05-27,2014-05-27,"YB","BB","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-BBq1",2014-05-27,2014-05-27,"YB","BB","1","Mt","Mytilus_trossulus","Type 15",112,0.0875,1280,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-05-27_YB-BBq2",2014-05-27,2014-05-27,"YB","BB","2","Mt","Mytilus_trossulus","Type 15",151,0.0875,1725.71428571429,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts may be low due to water patches"
+"2014-05-27_YB-BBq9",2014-05-27,2014-05-27,"YB","BB","9","Mt","Mytilus_trossulus","Type 15",366,0.0875,4182.85714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-BBq1",2014-05-27,2014-05-27,"YB","BB","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-05-27_YB-BBq2",2014-05-27,2014-05-27,"YB","BB","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts may be low due to water patches"
+"2014-05-27_YB-BBq9",2014-05-27,2014-05-27,"YB","BB","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-BBq1",2014-05-27,2014-05-27,"YB","BB","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-05-27_YB-BBq2",2014-05-27,2014-05-27,"YB","BB","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts may be low due to water patches"
+"2014-05-27_YB-BBq9",2014-05-27,2014-05-27,"YB","BB","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-BBq1",2014-05-27,2014-05-27,"YB","BB","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-05-27_YB-BBq2",2014-05-27,2014-05-27,"YB","BB","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts may be low due to water patches"
+"2014-05-27_YB-BBq9",2014-05-27,2014-05-27,"YB","BB","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-BBq1",2014-05-27,2014-05-27,"YB","BB","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-05-27_YB-BBq2",2014-05-27,2014-05-27,"YB","BB","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts may be low due to water patches"
+"2014-05-27_YB-BBq9",2014-05-27,2014-05-27,"YB","BB","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-BBq1",2014-05-27,2014-05-27,"YB","BB","1","No","Nucella_ostrina","Type 9",5,0.0875,57.1428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-05-27_YB-BBq2",2014-05-27,2014-05-27,"YB","BB","2","No","Nucella_ostrina","Type 9",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts may be low due to water patches"
+"2014-05-27_YB-BBq9",2014-05-27,2014-05-27,"YB","BB","9","No","Nucella_ostrina","Type 9",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-BBq1",2014-05-27,2014-05-27,"YB","BB","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-05-27_YB-BBq2",2014-05-27,2014-05-27,"YB","BB","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts may be low due to water patches"
+"2014-05-27_YB-BBq9",2014-05-27,2014-05-27,"YB","BB","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-BBq1",2014-05-27,2014-05-27,"YB","BB","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-05-27_YB-BBq2",2014-05-27,2014-05-27,"YB","BB","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts may be low due to water patches"
+"2014-05-27_YB-BBq9",2014-05-27,2014-05-27,"YB","BB","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-BBq1",2014-05-27,2014-05-27,"YB","BB","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-05-27_YB-BBq2",2014-05-27,2014-05-27,"YB","BB","2","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts may be low due to water patches"
+"2014-05-27_YB-BBq9",2014-05-27,2014-05-27,"YB","BB","9","Pp","Pollicipes_polymerus","Type 11",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-BBq1",2014-05-27,2014-05-27,"YB","BB","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-05-27_YB-BBq2",2014-05-27,2014-05-27,"YB","BB","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts may be low due to water patches"
+"2014-05-27_YB-BBq9",2014-05-27,2014-05-27,"YB","BB","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-BBq1",2014-05-27,2014-05-27,"YB","BB","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-05-27_YB-BBq2",2014-05-27,2014-05-27,"YB","BB","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts may be low due to water patches"
+"2014-05-27_YB-BBq9",2014-05-27,2014-05-27,"YB","BB","9","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-BBq1",2014-05-27,2014-05-27,"YB","BB","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-05-27_YB-BBq2",2014-05-27,2014-05-27,"YB","BB","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts may be low due to water patches"
+"2014-05-27_YB-BBq9",2014-05-27,2014-05-27,"YB","BB","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-BCq3",2014-05-27,2014-05-27,"YB","BC","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-BCq5",2014-05-27,2014-05-27,"YB","BC","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-BCq9",2014-05-27,2014-05-27,"YB","BC","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-BCq3",2014-05-27,2014-05-27,"YB","BC","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-BCq5",2014-05-27,2014-05-27,"YB","BC","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-BCq9",2014-05-27,2014-05-27,"YB","BC","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-BCq3",2014-05-27,2014-05-27,"YB","BC","3","Bg","Balanus_glandula","Type 1",427,0.015625,27328,"c","Isaac Shepard","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-BCq5",2014-05-27,2014-05-27,"YB","BC","5","Bg","Balanus_glandula","Type 1",374,0.015625,23936,"c","Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-BCq9",2014-05-27,2014-05-27,"YB","BC","9","Bg","Balanus_glandula","Type 1",427,0.015625,27328,"c","Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-BCq3",2014-05-27,2014-05-27,"YB","BC","3","BgD","Balanus_glandula_(dead)","Type 2",17,0.015625,1088,"c","Isaac Shepard","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-BCq5",2014-05-27,2014-05-27,"YB","BC","5","BgD","Balanus_glandula_(dead)","Type 2",6,0.015625,384,"c","Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-BCq9",2014-05-27,2014-05-27,"YB","BC","9","BgD","Balanus_glandula_(dead)","Type 2",11,0.015625,704,"c","Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-BCq3",2014-05-27,2014-05-27,"YB","BC","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-BCq5",2014-05-27,2014-05-27,"YB","BC","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-BCq9",2014-05-27,2014-05-27,"YB","BC","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-BCq3",2014-05-27,2014-05-27,"YB","BC","3","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-BCq5",2014-05-27,2014-05-27,"YB","BC","5","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-BCq9",2014-05-27,2014-05-27,"YB","BC","9","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-BCq3",2014-05-27,2014-05-27,"YB","BC","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-BCq5",2014-05-27,2014-05-27,"YB","BC","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-BCq9",2014-05-27,2014-05-27,"YB","BC","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-BCq3",2014-05-27,2014-05-27,"YB","BC","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-BCq5",2014-05-27,2014-05-27,"YB","BC","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-BCq9",2014-05-27,2014-05-27,"YB","BC","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-BCq3",2014-05-27,2014-05-27,"YB","BC","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-BCq5",2014-05-27,2014-05-27,"YB","BC","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-BCq9",2014-05-27,2014-05-27,"YB","BC","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-BCq3",2014-05-27,2014-05-27,"YB","BC","3","Lim","Limpets","Type 12",55,0.0875,628.571428571429,NA,"Isaac Shepard","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-BCq5",2014-05-27,2014-05-27,"YB","BC","5","Lim","Limpets","Type 12",69,0.0875,788.571428571429,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-BCq9",2014-05-27,2014-05-27,"YB","BC","9","Lim","Limpets","Type 12",101,0.0875,1154.28571428571,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-BCq3",2014-05-27,2014-05-27,"YB","BC","3","Ls","Littorina_sitkana","Type 13",242,0.0875,2765.71428571429,NA,"Isaac Shepard","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-BCq5",2014-05-27,2014-05-27,"YB","BC","5","Ls","Littorina_sitkana","Type 13",109,0.0875,1245.71428571429,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-BCq9",2014-05-27,2014-05-27,"YB","BC","9","Ls","Littorina_sitkana","Type 13",135,0.0875,1542.85714285714,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-BCq3",2014-05-27,2014-05-27,"YB","BC","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-BCq5",2014-05-27,2014-05-27,"YB","BC","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-BCq9",2014-05-27,2014-05-27,"YB","BC","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-BCq3",2014-05-27,2014-05-27,"YB","BC","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-BCq5",2014-05-27,2014-05-27,"YB","BC","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-BCq9",2014-05-27,2014-05-27,"YB","BC","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-BCq3",2014-05-27,2014-05-27,"YB","BC","3","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-BCq5",2014-05-27,2014-05-27,"YB","BC","5","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-BCq9",2014-05-27,2014-05-27,"YB","BC","9","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-BCq3",2014-05-27,2014-05-27,"YB","BC","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-BCq5",2014-05-27,2014-05-27,"YB","BC","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-BCq9",2014-05-27,2014-05-27,"YB","BC","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-BCq3",2014-05-27,2014-05-27,"YB","BC","3","Mt","Mytilus_trossulus","Type 15",159,0.0875,1817.14285714286,NA,"Isaac Shepard","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-BCq5",2014-05-27,2014-05-27,"YB","BC","5","Mt","Mytilus_trossulus","Type 15",394,0.0875,4502.85714285714,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-BCq9",2014-05-27,2014-05-27,"YB","BC","9","Mt","Mytilus_trossulus","Type 15",343,0.0875,3920,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-BCq3",2014-05-27,2014-05-27,"YB","BC","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-BCq5",2014-05-27,2014-05-27,"YB","BC","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-BCq9",2014-05-27,2014-05-27,"YB","BC","9","MtD","Mytilus_trossulus_(dead)","Type 16",1,0.0875,11.4285714285714,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-BCq3",2014-05-27,2014-05-27,"YB","BC","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-BCq5",2014-05-27,2014-05-27,"YB","BC","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-BCq9",2014-05-27,2014-05-27,"YB","BC","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-BCq3",2014-05-27,2014-05-27,"YB","BC","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-BCq5",2014-05-27,2014-05-27,"YB","BC","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-BCq9",2014-05-27,2014-05-27,"YB","BC","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-BCq3",2014-05-27,2014-05-27,"YB","BC","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-BCq5",2014-05-27,2014-05-27,"YB","BC","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-BCq9",2014-05-27,2014-05-27,"YB","BC","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-BCq3",2014-05-27,2014-05-27,"YB","BC","3","No","Nucella_ostrina","Type 9",10,0.0875,114.285714285714,NA,"Isaac Shepard","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-BCq5",2014-05-27,2014-05-27,"YB","BC","5","No","Nucella_ostrina","Type 9",7,0.0875,80,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-BCq9",2014-05-27,2014-05-27,"YB","BC","9","No","Nucella_ostrina","Type 9",9,0.0875,102.857142857143,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-BCq3",2014-05-27,2014-05-27,"YB","BC","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-BCq5",2014-05-27,2014-05-27,"YB","BC","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-BCq9",2014-05-27,2014-05-27,"YB","BC","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-BCq3",2014-05-27,2014-05-27,"YB","BC","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-BCq5",2014-05-27,2014-05-27,"YB","BC","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-BCq9",2014-05-27,2014-05-27,"YB","BC","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-BCq3",2014-05-27,2014-05-27,"YB","BC","3","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-BCq5",2014-05-27,2014-05-27,"YB","BC","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-BCq9",2014-05-27,2014-05-27,"YB","BC","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-BCq3",2014-05-27,2014-05-27,"YB","BC","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-BCq5",2014-05-27,2014-05-27,"YB","BC","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-BCq9",2014-05-27,2014-05-27,"YB","BC","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-BCq3",2014-05-27,2014-05-27,"YB","BC","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-BCq5",2014-05-27,2014-05-27,"YB","BC","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-BCq9",2014-05-27,2014-05-27,"YB","BC","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-BCq3",2014-05-27,2014-05-27,"YB","BC","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-BCq5",2014-05-27,2014-05-27,"YB","BC","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-BCq9",2014-05-27,2014-05-27,"YB","BC","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-BDq1",2014-05-27,2014-05-27,"YB","BD","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","20%",""
+"2014-05-27_YB-BDq5",2014-05-27,2014-05-27,"YB","BD","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","70%",""
+"2014-05-27_YB-BDq7",2014-05-27,2014-05-27,"YB","BD","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%",""
+"2014-05-27_YB-BDq1",2014-05-27,2014-05-27,"YB","BD","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","20%",""
+"2014-05-27_YB-BDq5",2014-05-27,2014-05-27,"YB","BD","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","70%",""
+"2014-05-27_YB-BDq7",2014-05-27,2014-05-27,"YB","BD","7","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%",""
+"2014-05-27_YB-BDq1",2014-05-27,2014-05-27,"YB","BD","1","Bg","Balanus_glandula","Type 1",1974,0.0875,22560,NA,"Julia Bingham","Finished","Full","Full","20%",""
+"2014-05-27_YB-BDq5",2014-05-27,2014-05-27,"YB","BD","5","Bg","Balanus_glandula","Type 1",1150,0.0875,13142.8571428571,NA,"Julia Bingham","Finished","Full","Full","70%",""
+"2014-05-27_YB-BDq7",2014-05-27,2014-05-27,"YB","BD","7","Bg","Balanus_glandula","Type 1",2611,0.0875,29840,NA,"Julia Bingham","Finished","Full","Full","15%",""
+"2014-05-27_YB-BDq1",2014-05-27,2014-05-27,"YB","BD","1","BgD","Balanus_glandula_(dead)","Type 2",117,0.0875,1337.14285714286,NA,"Julia Bingham","Finished","Full","Full","20%",""
+"2014-05-27_YB-BDq5",2014-05-27,2014-05-27,"YB","BD","5","BgD","Balanus_glandula_(dead)","Type 2",73,0.0875,834.285714285714,NA,"Julia Bingham","Finished","Full","Full","70%",""
+"2014-05-27_YB-BDq7",2014-05-27,2014-05-27,"YB","BD","7","BgD","Balanus_glandula_(dead)","Type 2",118,0.0875,1348.57142857143,NA,"Julia Bingham","Finished","Full","Full","15%",""
+"2014-05-27_YB-BDq1",2014-05-27,2014-05-27,"YB","BD","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","20%",""
+"2014-05-27_YB-BDq5",2014-05-27,2014-05-27,"YB","BD","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","70%",""
+"2014-05-27_YB-BDq7",2014-05-27,2014-05-27,"YB","BD","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%",""
+"2014-05-27_YB-BDq1",2014-05-27,2014-05-27,"YB","BD","1","Cth","Chthamalus_dalli","Type 3",25,0.0875,285.714285714286,NA,"Julia Bingham","Finished","Full","Full","20%",""
+"2014-05-27_YB-BDq5",2014-05-27,2014-05-27,"YB","BD","5","Cth","Chthamalus_dalli","Type 3",16,0.0875,182.857142857143,NA,"Julia Bingham","Finished","Full","Full","70%",""
+"2014-05-27_YB-BDq7",2014-05-27,2014-05-27,"YB","BD","7","Cth","Chthamalus_dalli","Type 3",24,0.0875,274.285714285714,NA,"Julia Bingham","Finished","Full","Full","15%",""
+"2014-05-27_YB-BDq1",2014-05-27,2014-05-27,"YB","BD","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","20%",""
+"2014-05-27_YB-BDq5",2014-05-27,2014-05-27,"YB","BD","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","70%",""
+"2014-05-27_YB-BDq7",2014-05-27,2014-05-27,"YB","BD","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%",""
+"2014-05-27_YB-BDq1",2014-05-27,2014-05-27,"YB","BD","1","Emp","Emplectonema worm","Type 23",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","20%",""
+"2014-05-27_YB-BDq5",2014-05-27,2014-05-27,"YB","BD","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","70%",""
+"2014-05-27_YB-BDq7",2014-05-27,2014-05-27,"YB","BD","7","Emp","Emplectonema worm","Type 23",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","15%",""
+"2014-05-27_YB-BDq1",2014-05-27,2014-05-27,"YB","BD","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","20%",""
+"2014-05-27_YB-BDq5",2014-05-27,2014-05-27,"YB","BD","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","70%",""
+"2014-05-27_YB-BDq7",2014-05-27,2014-05-27,"YB","BD","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%",""
+"2014-05-27_YB-BDq1",2014-05-27,2014-05-27,"YB","BD","1","Lim","Limpets","Type 12",549,0.0875,6274.28571428571,NA,"Julia Bingham","Finished","Full","Full","20%",""
+"2014-05-27_YB-BDq5",2014-05-27,2014-05-27,"YB","BD","5","Lim","Limpets","Type 12",467,0.0875,5337.14285714286,NA,"Julia Bingham","Finished","Full","Full","70%",""
+"2014-05-27_YB-BDq7",2014-05-27,2014-05-27,"YB","BD","7","Lim","Limpets","Type 12",374,0.0875,4274.28571428571,NA,"Julia Bingham","Finished","Full","Full","15%",""
+"2014-05-27_YB-BDq1",2014-05-27,2014-05-27,"YB","BD","1","Ls","Littorina_sitkana","Type 13",409,0.0875,4674.28571428571,NA,"Julia Bingham","Finished","Full","Full","20%",""
+"2014-05-27_YB-BDq5",2014-05-27,2014-05-27,"YB","BD","5","Ls","Littorina_sitkana","Type 13",529,0.0875,6045.71428571429,NA,"Julia Bingham","Finished","Full","Full","70%",""
+"2014-05-27_YB-BDq7",2014-05-27,2014-05-27,"YB","BD","7","Ls","Littorina_sitkana","Type 13",284,0.0875,3245.71428571429,NA,"Julia Bingham","Finished","Full","Full","15%",""
+"2014-05-27_YB-BDq1",2014-05-27,2014-05-27,"YB","BD","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","20%",""
+"2014-05-27_YB-BDq5",2014-05-27,2014-05-27,"YB","BD","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","70%",""
+"2014-05-27_YB-BDq7",2014-05-27,2014-05-27,"YB","BD","7","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%",""
+"2014-05-27_YB-BDq1",2014-05-27,2014-05-27,"YB","BD","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","20%",""
+"2014-05-27_YB-BDq5",2014-05-27,2014-05-27,"YB","BD","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","70%",""
+"2014-05-27_YB-BDq7",2014-05-27,2014-05-27,"YB","BD","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%",""
+"2014-05-27_YB-BDq1",2014-05-27,2014-05-27,"YB","BD","1","Myt","Mytilus_spp","Type 7",1567,0.0875,17908.5714285714,NA,"Julia Bingham","Finished","Full","Full","20%",""
+"2014-05-27_YB-BDq5",2014-05-27,2014-05-27,"YB","BD","5","Myt","Mytilus_spp","Type 7",1097,0.0875,12537.1428571429,NA,"Julia Bingham","Finished","Full","Full","70%",""
+"2014-05-27_YB-BDq7",2014-05-27,2014-05-27,"YB","BD","7","Myt","Mytilus_spp","Type 7",1220,0.0875,13942.8571428571,NA,"Julia Bingham","Finished","Full","Full","15%",""
+"2014-05-27_YB-BDq1",2014-05-27,2014-05-27,"YB","BD","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","20%",""
+"2014-05-27_YB-BDq5",2014-05-27,2014-05-27,"YB","BD","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","70%",""
+"2014-05-27_YB-BDq7",2014-05-27,2014-05-27,"YB","BD","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%",""
+"2014-05-27_YB-BDq1",2014-05-27,2014-05-27,"YB","BD","1","Mt","Mytilus_trossulus","Type 15",119,0.0875,1360,NA,"Julia Bingham","Finished","Full","Full","20%",""
+"2014-05-27_YB-BDq5",2014-05-27,2014-05-27,"YB","BD","5","Mt","Mytilus_trossulus","Type 15",190,0.0875,2171.42857142857,NA,"Julia Bingham","Finished","Full","Full","70%",""
+"2014-05-27_YB-BDq7",2014-05-27,2014-05-27,"YB","BD","7","Mt","Mytilus_trossulus","Type 15",167,0.0875,1908.57142857143,NA,"Julia Bingham","Finished","Full","Full","15%",""
+"2014-05-27_YB-BDq1",2014-05-27,2014-05-27,"YB","BD","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","20%",""
+"2014-05-27_YB-BDq5",2014-05-27,2014-05-27,"YB","BD","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","70%",""
+"2014-05-27_YB-BDq7",2014-05-27,2014-05-27,"YB","BD","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%",""
+"2014-05-27_YB-BDq1",2014-05-27,2014-05-27,"YB","BD","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","20%",""
+"2014-05-27_YB-BDq5",2014-05-27,2014-05-27,"YB","BD","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","70%",""
+"2014-05-27_YB-BDq7",2014-05-27,2014-05-27,"YB","BD","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%",""
+"2014-05-27_YB-BDq1",2014-05-27,2014-05-27,"YB","BD","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","20%",""
+"2014-05-27_YB-BDq5",2014-05-27,2014-05-27,"YB","BD","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","70%",""
+"2014-05-27_YB-BDq7",2014-05-27,2014-05-27,"YB","BD","7","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","15%",""
+"2014-05-27_YB-BDq1",2014-05-27,2014-05-27,"YB","BD","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","20%",""
+"2014-05-27_YB-BDq5",2014-05-27,2014-05-27,"YB","BD","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","70%",""
+"2014-05-27_YB-BDq7",2014-05-27,2014-05-27,"YB","BD","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%",""
+"2014-05-27_YB-BDq1",2014-05-27,2014-05-27,"YB","BD","1","No","Nucella_ostrina","Type 9",7,0.0875,80,NA,"Julia Bingham","Finished","Full","Full","20%",""
+"2014-05-27_YB-BDq5",2014-05-27,2014-05-27,"YB","BD","5","No","Nucella_ostrina","Type 9",3,0.0875,34.2857142857143,NA,"Julia Bingham","Finished","Full","Full","70%",""
+"2014-05-27_YB-BDq7",2014-05-27,2014-05-27,"YB","BD","7","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Full","15%",""
+"2014-05-27_YB-BDq1",2014-05-27,2014-05-27,"YB","BD","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","20%",""
+"2014-05-27_YB-BDq5",2014-05-27,2014-05-27,"YB","BD","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","70%",""
+"2014-05-27_YB-BDq7",2014-05-27,2014-05-27,"YB","BD","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%",""
+"2014-05-27_YB-BDq1",2014-05-27,2014-05-27,"YB","BD","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","20%",""
+"2014-05-27_YB-BDq5",2014-05-27,2014-05-27,"YB","BD","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","70%",""
+"2014-05-27_YB-BDq7",2014-05-27,2014-05-27,"YB","BD","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%",""
+"2014-05-27_YB-BDq1",2014-05-27,2014-05-27,"YB","BD","1","Pp","Pollicipes_polymerus","Type 11",96,0.0875,1097.14285714286,NA,"Julia Bingham","Finished","Full","Full","20%",""
+"2014-05-27_YB-BDq5",2014-05-27,2014-05-27,"YB","BD","5","Pp","Pollicipes_polymerus","Type 11",248,0.0875,2834.28571428571,NA,"Julia Bingham","Finished","Full","Full","70%",""
+"2014-05-27_YB-BDq7",2014-05-27,2014-05-27,"YB","BD","7","Pp","Pollicipes_polymerus","Type 11",133,0.0875,1520,NA,"Julia Bingham","Finished","Full","Full","15%",""
+"2014-05-27_YB-BDq1",2014-05-27,2014-05-27,"YB","BD","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","20%",""
+"2014-05-27_YB-BDq5",2014-05-27,2014-05-27,"YB","BD","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","70%",""
+"2014-05-27_YB-BDq7",2014-05-27,2014-05-27,"YB","BD","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%",""
+"2014-05-27_YB-BDq1",2014-05-27,2014-05-27,"YB","BD","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","20%",""
+"2014-05-27_YB-BDq5",2014-05-27,2014-05-27,"YB","BD","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","70%",""
+"2014-05-27_YB-BDq7",2014-05-27,2014-05-27,"YB","BD","7","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%",""
+"2014-05-27_YB-BDq1",2014-05-27,2014-05-27,"YB","BD","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","20%",""
+"2014-05-27_YB-BDq5",2014-05-27,2014-05-27,"YB","BD","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","70%",""
+"2014-05-27_YB-BDq7",2014-05-27,2014-05-27,"YB","BD","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%",""
+"2014-05-27_YB-BEq2",2014-05-27,2014-05-27,"YB","BE","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2014-05-27_YB-BEq3",2014-05-27,2014-05-27,"YB","BE","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-05-27_YB-BEq6",2014-05-27,2014-05-27,"YB","BE","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-05-27_YB-BEq2",2014-05-27,2014-05-27,"YB","BE","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2014-05-27_YB-BEq3",2014-05-27,2014-05-27,"YB","BE","3","Ae","Anemones","Type 14",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-05-27_YB-BEq6",2014-05-27,2014-05-27,"YB","BE","6","Ae","Anemones","Type 14",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-05-27_YB-BEq2",2014-05-27,2014-05-27,"YB","BE","2","Bg","Balanus_glandula","Type 1",115,0.0875,1314.28571428571,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2014-05-27_YB-BEq3",2014-05-27,2014-05-27,"YB","BE","3","Bg","Balanus_glandula","Type 1",340,0.0875,3885.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-05-27_YB-BEq6",2014-05-27,2014-05-27,"YB","BE","6","Bg","Balanus_glandula","Type 1",240,0.0875,2742.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-05-27_YB-BEq2",2014-05-27,2014-05-27,"YB","BE","2","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2014-05-27_YB-BEq3",2014-05-27,2014-05-27,"YB","BE","3","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-05-27_YB-BEq6",2014-05-27,2014-05-27,"YB","BE","6","BgD","Balanus_glandula_(dead)","Type 2",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-05-27_YB-BEq2",2014-05-27,2014-05-27,"YB","BE","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2014-05-27_YB-BEq3",2014-05-27,2014-05-27,"YB","BE","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-05-27_YB-BEq6",2014-05-27,2014-05-27,"YB","BE","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-05-27_YB-BEq2",2014-05-27,2014-05-27,"YB","BE","2","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2014-05-27_YB-BEq3",2014-05-27,2014-05-27,"YB","BE","3","Cth","Chthamalus_dalli","Type 3",11,0.0875,125.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-05-27_YB-BEq6",2014-05-27,2014-05-27,"YB","BE","6","Cth","Chthamalus_dalli","Type 3",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-05-27_YB-BEq2",2014-05-27,2014-05-27,"YB","BE","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2014-05-27_YB-BEq3",2014-05-27,2014-05-27,"YB","BE","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-05-27_YB-BEq6",2014-05-27,2014-05-27,"YB","BE","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-05-27_YB-BEq2",2014-05-27,2014-05-27,"YB","BE","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2014-05-27_YB-BEq3",2014-05-27,2014-05-27,"YB","BE","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-05-27_YB-BEq6",2014-05-27,2014-05-27,"YB","BE","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-05-27_YB-BEq2",2014-05-27,2014-05-27,"YB","BE","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2014-05-27_YB-BEq3",2014-05-27,2014-05-27,"YB","BE","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-05-27_YB-BEq6",2014-05-27,2014-05-27,"YB","BE","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-05-27_YB-BEq2",2014-05-27,2014-05-27,"YB","BE","2","Lim","Limpets","Type 12",100,0.0875,1142.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2014-05-27_YB-BEq3",2014-05-27,2014-05-27,"YB","BE","3","Lim","Limpets","Type 12",74,0.0875,845.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-05-27_YB-BEq6",2014-05-27,2014-05-27,"YB","BE","6","Lim","Limpets","Type 12",78,0.0875,891.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-05-27_YB-BEq2",2014-05-27,2014-05-27,"YB","BE","2","Ls","Littorina_sitkana","Type 13",143,0.0875,1634.28571428571,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2014-05-27_YB-BEq3",2014-05-27,2014-05-27,"YB","BE","3","Ls","Littorina_sitkana","Type 13",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-05-27_YB-BEq6",2014-05-27,2014-05-27,"YB","BE","6","Ls","Littorina_sitkana","Type 13",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-05-27_YB-BEq2",2014-05-27,2014-05-27,"YB","BE","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2014-05-27_YB-BEq3",2014-05-27,2014-05-27,"YB","BE","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-05-27_YB-BEq6",2014-05-27,2014-05-27,"YB","BE","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-05-27_YB-BEq2",2014-05-27,2014-05-27,"YB","BE","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2014-05-27_YB-BEq3",2014-05-27,2014-05-27,"YB","BE","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-05-27_YB-BEq6",2014-05-27,2014-05-27,"YB","BE","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-05-27_YB-BEq2",2014-05-27,2014-05-27,"YB","BE","2","Myt","Mytilus_spp","Type 7",4,0.0875,45.7142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2014-05-27_YB-BEq3",2014-05-27,2014-05-27,"YB","BE","3","Myt","Mytilus_spp","Type 7",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-05-27_YB-BEq6",2014-05-27,2014-05-27,"YB","BE","6","Myt","Mytilus_spp","Type 7",21,0.0875,240,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-05-27_YB-BEq2",2014-05-27,2014-05-27,"YB","BE","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2014-05-27_YB-BEq3",2014-05-27,2014-05-27,"YB","BE","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-05-27_YB-BEq6",2014-05-27,2014-05-27,"YB","BE","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-05-27_YB-BEq2",2014-05-27,2014-05-27,"YB","BE","2","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2014-05-27_YB-BEq3",2014-05-27,2014-05-27,"YB","BE","3","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-05-27_YB-BEq6",2014-05-27,2014-05-27,"YB","BE","6","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-05-27_YB-BEq2",2014-05-27,2014-05-27,"YB","BE","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2014-05-27_YB-BEq3",2014-05-27,2014-05-27,"YB","BE","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-05-27_YB-BEq6",2014-05-27,2014-05-27,"YB","BE","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-05-27_YB-BEq2",2014-05-27,2014-05-27,"YB","BE","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2014-05-27_YB-BEq3",2014-05-27,2014-05-27,"YB","BE","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-05-27_YB-BEq6",2014-05-27,2014-05-27,"YB","BE","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-05-27_YB-BEq2",2014-05-27,2014-05-27,"YB","BE","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2014-05-27_YB-BEq3",2014-05-27,2014-05-27,"YB","BE","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-05-27_YB-BEq6",2014-05-27,2014-05-27,"YB","BE","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-05-27_YB-BEq2",2014-05-27,2014-05-27,"YB","BE","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2014-05-27_YB-BEq3",2014-05-27,2014-05-27,"YB","BE","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-05-27_YB-BEq6",2014-05-27,2014-05-27,"YB","BE","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-05-27_YB-BEq2",2014-05-27,2014-05-27,"YB","BE","2","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2014-05-27_YB-BEq3",2014-05-27,2014-05-27,"YB","BE","3","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-05-27_YB-BEq6",2014-05-27,2014-05-27,"YB","BE","6","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-05-27_YB-BEq2",2014-05-27,2014-05-27,"YB","BE","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2014-05-27_YB-BEq3",2014-05-27,2014-05-27,"YB","BE","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-05-27_YB-BEq6",2014-05-27,2014-05-27,"YB","BE","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-05-27_YB-BEq2",2014-05-27,2014-05-27,"YB","BE","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2014-05-27_YB-BEq3",2014-05-27,2014-05-27,"YB","BE","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-05-27_YB-BEq6",2014-05-27,2014-05-27,"YB","BE","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-05-27_YB-BEq2",2014-05-27,2014-05-27,"YB","BE","2","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2014-05-27_YB-BEq3",2014-05-27,2014-05-27,"YB","BE","3","Pp","Pollicipes_polymerus","Type 11",11,0.0875,125.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-05-27_YB-BEq6",2014-05-27,2014-05-27,"YB","BE","6","Pp","Pollicipes_polymerus","Type 11",58,0.0875,662.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-05-27_YB-BEq2",2014-05-27,2014-05-27,"YB","BE","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2014-05-27_YB-BEq3",2014-05-27,2014-05-27,"YB","BE","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-05-27_YB-BEq6",2014-05-27,2014-05-27,"YB","BE","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-05-27_YB-BEq2",2014-05-27,2014-05-27,"YB","BE","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2014-05-27_YB-BEq3",2014-05-27,2014-05-27,"YB","BE","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-05-27_YB-BEq6",2014-05-27,2014-05-27,"YB","BE","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-05-27_YB-BEq2",2014-05-27,2014-05-27,"YB","BE","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2014-05-27_YB-BEq3",2014-05-27,2014-05-27,"YB","BE","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-05-27_YB-BEq6",2014-05-27,2014-05-27,"YB","BE","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-05-27_YB-BFq1",2014-05-27,2014-05-27,"YB","BF","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-05-27_YB-BFq4",2014-05-27,2014-05-27,"YB","BF","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-05-27_YB-BFq9",2014-05-27,2014-05-27,"YB","BF","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","80%",""
+"2014-05-27_YB-BFq1",2014-05-27,2014-05-27,"YB","BF","1","Ae","Anemones","Type 14",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-05-27_YB-BFq4",2014-05-27,2014-05-27,"YB","BF","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-05-27_YB-BFq9",2014-05-27,2014-05-27,"YB","BF","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","80%",""
+"2014-05-27_YB-BFq1",2014-05-27,2014-05-27,"YB","BF","1","Bg","Balanus_glandula","Type 1",747,0.0875,8537.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-05-27_YB-BFq4",2014-05-27,2014-05-27,"YB","BF","4","Bg","Balanus_glandula","Type 1",551,0.0875,6297.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-05-27_YB-BFq9",2014-05-27,2014-05-27,"YB","BF","9","Bg","Balanus_glandula","Type 1",217,0.0875,2480,NA,"Julia Bingham","Finished","Full","Full","80%",""
+"2014-05-27_YB-BFq1",2014-05-27,2014-05-27,"YB","BF","1","BgD","Balanus_glandula_(dead)","Type 2",33,0.0875,377.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-05-27_YB-BFq4",2014-05-27,2014-05-27,"YB","BF","4","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-05-27_YB-BFq9",2014-05-27,2014-05-27,"YB","BF","9","BgD","Balanus_glandula_(dead)","Type 2",61,0.0875,697.142857142857,NA,"Julia Bingham","Finished","Full","Full","80%",""
+"2014-05-27_YB-BFq1",2014-05-27,2014-05-27,"YB","BF","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-05-27_YB-BFq4",2014-05-27,2014-05-27,"YB","BF","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-05-27_YB-BFq9",2014-05-27,2014-05-27,"YB","BF","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","80%",""
+"2014-05-27_YB-BFq1",2014-05-27,2014-05-27,"YB","BF","1","Cth","Chthamalus_dalli","Type 3",18,0.0875,205.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-05-27_YB-BFq4",2014-05-27,2014-05-27,"YB","BF","4","Cth","Chthamalus_dalli","Type 3",17,0.0875,194.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-05-27_YB-BFq9",2014-05-27,2014-05-27,"YB","BF","9","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","80%",""
+"2014-05-27_YB-BFq1",2014-05-27,2014-05-27,"YB","BF","1","CthD","Chthamalus_dalli (dead)","Type 4",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-05-27_YB-BFq4",2014-05-27,2014-05-27,"YB","BF","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-05-27_YB-BFq9",2014-05-27,2014-05-27,"YB","BF","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","80%",""
+"2014-05-27_YB-BFq1",2014-05-27,2014-05-27,"YB","BF","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-05-27_YB-BFq4",2014-05-27,2014-05-27,"YB","BF","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-05-27_YB-BFq9",2014-05-27,2014-05-27,"YB","BF","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","80%",""
+"2014-05-27_YB-BFq1",2014-05-27,2014-05-27,"YB","BF","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-05-27_YB-BFq4",2014-05-27,2014-05-27,"YB","BF","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-05-27_YB-BFq9",2014-05-27,2014-05-27,"YB","BF","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","80%",""
+"2014-05-27_YB-BFq1",2014-05-27,2014-05-27,"YB","BF","1","Lim","Limpets","Type 12",365,0.0875,4171.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-05-27_YB-BFq4",2014-05-27,2014-05-27,"YB","BF","4","Lim","Limpets","Type 12",126,0.0875,1440,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-05-27_YB-BFq9",2014-05-27,2014-05-27,"YB","BF","9","Lim","Limpets","Type 12",71,0.0875,811.428571428571,NA,"Julia Bingham","Finished","Full","Full","80%",""
+"2014-05-27_YB-BFq1",2014-05-27,2014-05-27,"YB","BF","1","Ls","Littorina_sitkana","Type 13",193,0.0875,2205.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-05-27_YB-BFq4",2014-05-27,2014-05-27,"YB","BF","4","Ls","Littorina_sitkana","Type 13",13,0.0875,148.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-05-27_YB-BFq9",2014-05-27,2014-05-27,"YB","BF","9","Ls","Littorina_sitkana","Type 13",300,0.0875,3428.57142857143,NA,"Julia Bingham","Finished","Full","Full","80%",""
+"2014-05-27_YB-BFq1",2014-05-27,2014-05-27,"YB","BF","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-05-27_YB-BFq4",2014-05-27,2014-05-27,"YB","BF","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-05-27_YB-BFq9",2014-05-27,2014-05-27,"YB","BF","9","Mc","Mytilus_californianus","Type 17",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Full","80%",""
+"2014-05-27_YB-BFq1",2014-05-27,2014-05-27,"YB","BF","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-05-27_YB-BFq4",2014-05-27,2014-05-27,"YB","BF","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-05-27_YB-BFq9",2014-05-27,2014-05-27,"YB","BF","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","80%",""
+"2014-05-27_YB-BFq1",2014-05-27,2014-05-27,"YB","BF","1","Myt","Mytilus_spp","Type 7",22,0.0875,251.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-05-27_YB-BFq4",2014-05-27,2014-05-27,"YB","BF","4","Myt","Mytilus_spp","Type 7",18,0.0875,205.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-05-27_YB-BFq9",2014-05-27,2014-05-27,"YB","BF","9","Myt","Mytilus_spp","Type 7",240,0.0875,2742.85714285714,NA,"Julia Bingham","Finished","Full","Full","80%",""
+"2014-05-27_YB-BFq1",2014-05-27,2014-05-27,"YB","BF","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-05-27_YB-BFq4",2014-05-27,2014-05-27,"YB","BF","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-05-27_YB-BFq9",2014-05-27,2014-05-27,"YB","BF","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","80%",""
+"2014-05-27_YB-BFq1",2014-05-27,2014-05-27,"YB","BF","1","Mt","Mytilus_trossulus","Type 15",170,0.0875,1942.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-05-27_YB-BFq4",2014-05-27,2014-05-27,"YB","BF","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-05-27_YB-BFq9",2014-05-27,2014-05-27,"YB","BF","9","Mt","Mytilus_trossulus","Type 15",38,0.0875,434.285714285714,NA,"Julia Bingham","Finished","Full","Full","80%",""
+"2014-05-27_YB-BFq1",2014-05-27,2014-05-27,"YB","BF","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-05-27_YB-BFq4",2014-05-27,2014-05-27,"YB","BF","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-05-27_YB-BFq9",2014-05-27,2014-05-27,"YB","BF","9","MtD","Mytilus_trossulus_(dead)","Type 16",6,0.0875,68.5714285714286,NA,"Julia Bingham","Finished","Full","Full","80%",""
+"2014-05-27_YB-BFq1",2014-05-27,2014-05-27,"YB","BF","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-05-27_YB-BFq4",2014-05-27,2014-05-27,"YB","BF","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-05-27_YB-BFq9",2014-05-27,2014-05-27,"YB","BF","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","80%",""
+"2014-05-27_YB-BFq1",2014-05-27,2014-05-27,"YB","BF","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-05-27_YB-BFq4",2014-05-27,2014-05-27,"YB","BF","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-05-27_YB-BFq9",2014-05-27,2014-05-27,"YB","BF","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","80%",""
+"2014-05-27_YB-BFq1",2014-05-27,2014-05-27,"YB","BF","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-05-27_YB-BFq4",2014-05-27,2014-05-27,"YB","BF","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-05-27_YB-BFq9",2014-05-27,2014-05-27,"YB","BF","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","80%",""
+"2014-05-27_YB-BFq1",2014-05-27,2014-05-27,"YB","BF","1","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-05-27_YB-BFq4",2014-05-27,2014-05-27,"YB","BF","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-05-27_YB-BFq9",2014-05-27,2014-05-27,"YB","BF","9","No","Nucella_ostrina","Type 9",3,0.0875,34.2857142857143,NA,"Julia Bingham","Finished","Full","Full","80%",""
+"2014-05-27_YB-BFq1",2014-05-27,2014-05-27,"YB","BF","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-05-27_YB-BFq4",2014-05-27,2014-05-27,"YB","BF","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-05-27_YB-BFq9",2014-05-27,2014-05-27,"YB","BF","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","80%",""
+"2014-05-27_YB-BFq1",2014-05-27,2014-05-27,"YB","BF","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-05-27_YB-BFq4",2014-05-27,2014-05-27,"YB","BF","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-05-27_YB-BFq9",2014-05-27,2014-05-27,"YB","BF","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","80%",""
+"2014-05-27_YB-BFq1",2014-05-27,2014-05-27,"YB","BF","1","Pp","Pollicipes_polymerus","Type 11",12,0.0875,137.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-05-27_YB-BFq4",2014-05-27,2014-05-27,"YB","BF","4","Pp","Pollicipes_polymerus","Type 11",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-05-27_YB-BFq9",2014-05-27,2014-05-27,"YB","BF","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","80%",""
+"2014-05-27_YB-BFq1",2014-05-27,2014-05-27,"YB","BF","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-05-27_YB-BFq4",2014-05-27,2014-05-27,"YB","BF","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-05-27_YB-BFq9",2014-05-27,2014-05-27,"YB","BF","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","80%",""
+"2014-05-27_YB-BFq1",2014-05-27,2014-05-27,"YB","BF","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-05-27_YB-BFq4",2014-05-27,2014-05-27,"YB","BF","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-05-27_YB-BFq9",2014-05-27,2014-05-27,"YB","BF","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","80%",""
+"2014-05-27_YB-BFq1",2014-05-27,2014-05-27,"YB","BF","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-05-27_YB-BFq4",2014-05-27,2014-05-27,"YB","BF","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-05-27_YB-BFq9",2014-05-27,2014-05-27,"YB","BF","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","80%",""
+"2014-05-27_YB-Cq2",2014-05-27,2014-05-27,"YB","C","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Cq4",2014-05-27,2014-05-27,"YB","C","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-05-27_YB-Cq6",2014-05-27,2014-05-27,"YB","C","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Cq2",2014-05-27,2014-05-27,"YB","C","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Cq4",2014-05-27,2014-05-27,"YB","C","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-05-27_YB-Cq6",2014-05-27,2014-05-27,"YB","C","6","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Cq2",2014-05-27,2014-05-27,"YB","C","2","Bg","Balanus_glandula","Type 1",294,0.015625,18816,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Cq4",2014-05-27,2014-05-27,"YB","C","4","Bg","Balanus_glandula","Type 1",259,0.015625,16576,"c","Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-05-27_YB-Cq6",2014-05-27,2014-05-27,"YB","C","6","Bg","Balanus_glandula","Type 1",350,0.015625,22400,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Cq2",2014-05-27,2014-05-27,"YB","C","2","BgD","Balanus_glandula_(dead)","Type 2",18,0.015625,1152,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Cq4",2014-05-27,2014-05-27,"YB","C","4","BgD","Balanus_glandula_(dead)","Type 2",6,0.015625,384,"c","Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-05-27_YB-Cq6",2014-05-27,2014-05-27,"YB","C","6","BgD","Balanus_glandula_(dead)","Type 2",7,0.015625,448,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Cq2",2014-05-27,2014-05-27,"YB","C","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Cq4",2014-05-27,2014-05-27,"YB","C","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-05-27_YB-Cq6",2014-05-27,2014-05-27,"YB","C","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Cq2",2014-05-27,2014-05-27,"YB","C","2","Cth","Chthamalus_dalli","Type 3",3,0.015625,192,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Cq4",2014-05-27,2014-05-27,"YB","C","4","Cth","Chthamalus_dalli","Type 3",1,0.015625,64,"c","Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-05-27_YB-Cq6",2014-05-27,2014-05-27,"YB","C","6","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Cq2",2014-05-27,2014-05-27,"YB","C","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Cq4",2014-05-27,2014-05-27,"YB","C","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-05-27_YB-Cq6",2014-05-27,2014-05-27,"YB","C","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Cq2",2014-05-27,2014-05-27,"YB","C","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Cq4",2014-05-27,2014-05-27,"YB","C","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-05-27_YB-Cq6",2014-05-27,2014-05-27,"YB","C","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Cq2",2014-05-27,2014-05-27,"YB","C","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Cq4",2014-05-27,2014-05-27,"YB","C","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-05-27_YB-Cq6",2014-05-27,2014-05-27,"YB","C","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Cq2",2014-05-27,2014-05-27,"YB","C","2","Lim","Limpets","Type 12",144,0.0875,1645.71428571429,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Cq4",2014-05-27,2014-05-27,"YB","C","4","Lim","Limpets","Type 12",205,0.0875,2342.85714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-05-27_YB-Cq6",2014-05-27,2014-05-27,"YB","C","6","Lim","Limpets","Type 12",167,0.0875,1908.57142857143,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Cq2",2014-05-27,2014-05-27,"YB","C","2","Ls","Littorina_sitkana","Type 13",28,0.0875,320,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Cq4",2014-05-27,2014-05-27,"YB","C","4","Ls","Littorina_sitkana","Type 13",90,0.0875,1028.57142857143,NA,"Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-05-27_YB-Cq6",2014-05-27,2014-05-27,"YB","C","6","Ls","Littorina_sitkana","Type 13",76,0.0875,868.571428571429,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Cq2",2014-05-27,2014-05-27,"YB","C","2","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Cq4",2014-05-27,2014-05-27,"YB","C","4","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-05-27_YB-Cq6",2014-05-27,2014-05-27,"YB","C","6","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Cq2",2014-05-27,2014-05-27,"YB","C","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Cq4",2014-05-27,2014-05-27,"YB","C","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-05-27_YB-Cq6",2014-05-27,2014-05-27,"YB","C","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Cq2",2014-05-27,2014-05-27,"YB","C","2","Myt","Mytilus_spp","Type 7",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Cq4",2014-05-27,2014-05-27,"YB","C","4","Myt","Mytilus_spp","Type 7",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-05-27_YB-Cq6",2014-05-27,2014-05-27,"YB","C","6","Myt","Mytilus_spp","Type 7",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Cq2",2014-05-27,2014-05-27,"YB","C","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Cq4",2014-05-27,2014-05-27,"YB","C","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-05-27_YB-Cq6",2014-05-27,2014-05-27,"YB","C","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Cq2",2014-05-27,2014-05-27,"YB","C","2","Mt","Mytilus_trossulus","Type 15",146,0.015625,9344,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Cq4",2014-05-27,2014-05-27,"YB","C","4","Mt","Mytilus_trossulus","Type 15",129,0.015625,8256,"c","Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-05-27_YB-Cq6",2014-05-27,2014-05-27,"YB","C","6","Mt","Mytilus_trossulus","Type 15",126,0.015625,8064,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Cq2",2014-05-27,2014-05-27,"YB","C","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Cq4",2014-05-27,2014-05-27,"YB","C","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-05-27_YB-Cq6",2014-05-27,2014-05-27,"YB","C","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Cq2",2014-05-27,2014-05-27,"YB","C","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Cq4",2014-05-27,2014-05-27,"YB","C","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-05-27_YB-Cq6",2014-05-27,2014-05-27,"YB","C","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Cq2",2014-05-27,2014-05-27,"YB","C","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Cq4",2014-05-27,2014-05-27,"YB","C","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-05-27_YB-Cq6",2014-05-27,2014-05-27,"YB","C","6","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Cq2",2014-05-27,2014-05-27,"YB","C","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Cq4",2014-05-27,2014-05-27,"YB","C","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-05-27_YB-Cq6",2014-05-27,2014-05-27,"YB","C","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Cq2",2014-05-27,2014-05-27,"YB","C","2","No","Nucella_ostrina","Type 9",9,0.0875,102.857142857143,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Cq4",2014-05-27,2014-05-27,"YB","C","4","No","Nucella_ostrina","Type 9",10,0.0875,114.285714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-05-27_YB-Cq6",2014-05-27,2014-05-27,"YB","C","6","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Cq2",2014-05-27,2014-05-27,"YB","C","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Cq4",2014-05-27,2014-05-27,"YB","C","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-05-27_YB-Cq6",2014-05-27,2014-05-27,"YB","C","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Cq2",2014-05-27,2014-05-27,"YB","C","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Cq4",2014-05-27,2014-05-27,"YB","C","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-05-27_YB-Cq6",2014-05-27,2014-05-27,"YB","C","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Cq2",2014-05-27,2014-05-27,"YB","C","2","Pp","Pollicipes_polymerus","Type 11",19,0.0875,217.142857142857,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Cq4",2014-05-27,2014-05-27,"YB","C","4","Pp","Pollicipes_polymerus","Type 11",37,0.0875,422.857142857143,NA,"Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-05-27_YB-Cq6",2014-05-27,2014-05-27,"YB","C","6","Pp","Pollicipes_polymerus","Type 11",18,0.0875,205.714285714286,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Cq2",2014-05-27,2014-05-27,"YB","C","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Cq4",2014-05-27,2014-05-27,"YB","C","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-05-27_YB-Cq6",2014-05-27,2014-05-27,"YB","C","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Cq2",2014-05-27,2014-05-27,"YB","C","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Cq4",2014-05-27,2014-05-27,"YB","C","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-05-27_YB-Cq6",2014-05-27,2014-05-27,"YB","C","6","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Cq2",2014-05-27,2014-05-27,"YB","C","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Cq4",2014-05-27,2014-05-27,"YB","C","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-05-27_YB-Cq6",2014-05-27,2014-05-27,"YB","C","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Dq3",2014-05-27,2014-05-27,"YB","D","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Dq4",2014-05-27,2014-05-27,"YB","D","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%",""
+"2014-05-27_YB-Dq5",2014-05-27,2014-05-27,"YB","D","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-Dq3",2014-05-27,2014-05-27,"YB","D","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Dq4",2014-05-27,2014-05-27,"YB","D","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%",""
+"2014-05-27_YB-Dq5",2014-05-27,2014-05-27,"YB","D","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-Dq3",2014-05-27,2014-05-27,"YB","D","3","Bg","Balanus_glandula","Type 1",292,0.015625,18688,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Dq4",2014-05-27,2014-05-27,"YB","D","4","Bg","Balanus_glandula","Type 1",2261,0.0875,25840,NA,"Stephanie Merhoff","Finished","Full","Full","2%",""
+"2014-05-27_YB-Dq5",2014-05-27,2014-05-27,"YB","D","5","Bg","Balanus_glandula","Type 1",542,0.015625,34688,"c","Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-Dq3",2014-05-27,2014-05-27,"YB","D","3","BgD","Balanus_glandula_(dead)","Type 2",14,0.015625,896,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Dq4",2014-05-27,2014-05-27,"YB","D","4","BgD","Balanus_glandula_(dead)","Type 2",9,0.0875,102.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","2%",""
+"2014-05-27_YB-Dq5",2014-05-27,2014-05-27,"YB","D","5","BgD","Balanus_glandula_(dead)","Type 2",3,0.015625,192,"c","Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-Dq3",2014-05-27,2014-05-27,"YB","D","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Dq4",2014-05-27,2014-05-27,"YB","D","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%",""
+"2014-05-27_YB-Dq5",2014-05-27,2014-05-27,"YB","D","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-Dq3",2014-05-27,2014-05-27,"YB","D","3","Cth","Chthamalus_dalli","Type 3",1,0.015625,64,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Dq4",2014-05-27,2014-05-27,"YB","D","4","Cth","Chthamalus_dalli","Type 3",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","2%",""
+"2014-05-27_YB-Dq5",2014-05-27,2014-05-27,"YB","D","5","Cth","Chthamalus_dalli","Type 3",3,0.015625,192,"c","Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-Dq3",2014-05-27,2014-05-27,"YB","D","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Dq4",2014-05-27,2014-05-27,"YB","D","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%",""
+"2014-05-27_YB-Dq5",2014-05-27,2014-05-27,"YB","D","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-Dq3",2014-05-27,2014-05-27,"YB","D","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Dq4",2014-05-27,2014-05-27,"YB","D","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%",""
+"2014-05-27_YB-Dq5",2014-05-27,2014-05-27,"YB","D","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-Dq3",2014-05-27,2014-05-27,"YB","D","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Dq4",2014-05-27,2014-05-27,"YB","D","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%",""
+"2014-05-27_YB-Dq5",2014-05-27,2014-05-27,"YB","D","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-Dq3",2014-05-27,2014-05-27,"YB","D","3","Lim","Limpets","Type 12",177,0.0875,2022.85714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Dq4",2014-05-27,2014-05-27,"YB","D","4","Lim","Limpets","Type 12",51,0.0875,582.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","2%",""
+"2014-05-27_YB-Dq5",2014-05-27,2014-05-27,"YB","D","5","Lim","Limpets","Type 12",305,0.0875,3485.71428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-Dq3",2014-05-27,2014-05-27,"YB","D","3","Ls","Littorina_sitkana","Type 13",241,0.0875,2754.28571428571,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Dq4",2014-05-27,2014-05-27,"YB","D","4","Ls","Littorina_sitkana","Type 13",196,0.0875,2240,NA,"Stephanie Merhoff","Finished","Full","Full","2%",""
+"2014-05-27_YB-Dq5",2014-05-27,2014-05-27,"YB","D","5","Ls","Littorina_sitkana","Type 13",261,0.0875,2982.85714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-Dq3",2014-05-27,2014-05-27,"YB","D","3","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Dq4",2014-05-27,2014-05-27,"YB","D","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%",""
+"2014-05-27_YB-Dq5",2014-05-27,2014-05-27,"YB","D","5","Mc","Mytilus_californianus","Type 17",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-Dq3",2014-05-27,2014-05-27,"YB","D","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Dq4",2014-05-27,2014-05-27,"YB","D","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%",""
+"2014-05-27_YB-Dq5",2014-05-27,2014-05-27,"YB","D","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-Dq3",2014-05-27,2014-05-27,"YB","D","3","Myt","Mytilus_spp","Type 7",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Dq4",2014-05-27,2014-05-27,"YB","D","4","Myt","Mytilus_spp","Type 7",204,0.0875,2331.42857142857,NA,"Stephanie Merhoff","Finished","Full","Full","2%",""
+"2014-05-27_YB-Dq5",2014-05-27,2014-05-27,"YB","D","5","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-Dq3",2014-05-27,2014-05-27,"YB","D","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Dq4",2014-05-27,2014-05-27,"YB","D","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%",""
+"2014-05-27_YB-Dq5",2014-05-27,2014-05-27,"YB","D","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-Dq3",2014-05-27,2014-05-27,"YB","D","3","Mt","Mytilus_trossulus","Type 15",139,0.015625,8896,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Dq4",2014-05-27,2014-05-27,"YB","D","4","Mt","Mytilus_trossulus","Type 15",21,0.0875,240,NA,"Stephanie Merhoff","Finished","Full","Full","2%",""
+"2014-05-27_YB-Dq5",2014-05-27,2014-05-27,"YB","D","5","Mt","Mytilus_trossulus","Type 15",545,0.0875,6228.57142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-Dq3",2014-05-27,2014-05-27,"YB","D","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Dq4",2014-05-27,2014-05-27,"YB","D","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%",""
+"2014-05-27_YB-Dq5",2014-05-27,2014-05-27,"YB","D","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-Dq3",2014-05-27,2014-05-27,"YB","D","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Dq4",2014-05-27,2014-05-27,"YB","D","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%",""
+"2014-05-27_YB-Dq5",2014-05-27,2014-05-27,"YB","D","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-Dq3",2014-05-27,2014-05-27,"YB","D","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Dq4",2014-05-27,2014-05-27,"YB","D","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%",""
+"2014-05-27_YB-Dq5",2014-05-27,2014-05-27,"YB","D","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-Dq3",2014-05-27,2014-05-27,"YB","D","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Dq4",2014-05-27,2014-05-27,"YB","D","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%",""
+"2014-05-27_YB-Dq5",2014-05-27,2014-05-27,"YB","D","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-Dq3",2014-05-27,2014-05-27,"YB","D","3","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Dq4",2014-05-27,2014-05-27,"YB","D","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%",""
+"2014-05-27_YB-Dq5",2014-05-27,2014-05-27,"YB","D","5","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-Dq3",2014-05-27,2014-05-27,"YB","D","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Dq4",2014-05-27,2014-05-27,"YB","D","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%",""
+"2014-05-27_YB-Dq5",2014-05-27,2014-05-27,"YB","D","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-Dq3",2014-05-27,2014-05-27,"YB","D","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Dq4",2014-05-27,2014-05-27,"YB","D","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%",""
+"2014-05-27_YB-Dq5",2014-05-27,2014-05-27,"YB","D","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-Dq3",2014-05-27,2014-05-27,"YB","D","3","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Dq4",2014-05-27,2014-05-27,"YB","D","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%",""
+"2014-05-27_YB-Dq5",2014-05-27,2014-05-27,"YB","D","5","Pp","Pollicipes_polymerus","Type 11",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-Dq3",2014-05-27,2014-05-27,"YB","D","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Dq4",2014-05-27,2014-05-27,"YB","D","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%",""
+"2014-05-27_YB-Dq5",2014-05-27,2014-05-27,"YB","D","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-Dq3",2014-05-27,2014-05-27,"YB","D","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Dq4",2014-05-27,2014-05-27,"YB","D","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%",""
+"2014-05-27_YB-Dq5",2014-05-27,2014-05-27,"YB","D","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-Dq3",2014-05-27,2014-05-27,"YB","D","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-05-27_YB-Dq4",2014-05-27,2014-05-27,"YB","D","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%",""
+"2014-05-27_YB-Dq5",2014-05-27,2014-05-27,"YB","D","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-Eq3",2014-05-27,2014-05-27,"YB","E","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","counts may be low due to blurry batches"
+"2014-05-27_YB-Eq4",2014-05-27,2014-05-27,"YB","E","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-05-27_YB-Eq8",2014-05-27,2014-05-27,"YB","E","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-05-27_YB-Eq3",2014-05-27,2014-05-27,"YB","E","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","counts may be low due to blurry batches"
+"2014-05-27_YB-Eq4",2014-05-27,2014-05-27,"YB","E","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-05-27_YB-Eq8",2014-05-27,2014-05-27,"YB","E","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-05-27_YB-Eq3",2014-05-27,2014-05-27,"YB","E","3","Bg","Balanus_glandula","Type 1",894,0.0875,10217.1428571429,NA,"Stephanie Merhoff","Finished","Full","Full","30%","counts may be low due to blurry batches"
+"2014-05-27_YB-Eq4",2014-05-27,2014-05-27,"YB","E","4","Bg","Balanus_glandula","Type 1",1449,0.0875,16560,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-05-27_YB-Eq8",2014-05-27,2014-05-27,"YB","E","8","Bg","Balanus_glandula","Type 1",958,0.0875,10948.5714285714,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-05-27_YB-Eq3",2014-05-27,2014-05-27,"YB","E","3","BgD","Balanus_glandula_(dead)","Type 2",14,0.0875,160,NA,"Stephanie Merhoff","Finished","Full","Full","30%","counts may be low due to blurry batches"
+"2014-05-27_YB-Eq4",2014-05-27,2014-05-27,"YB","E","4","BgD","Balanus_glandula_(dead)","Type 2",27,0.0875,308.571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-05-27_YB-Eq8",2014-05-27,2014-05-27,"YB","E","8","BgD","Balanus_glandula_(dead)","Type 2",20,0.0875,228.571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-05-27_YB-Eq3",2014-05-27,2014-05-27,"YB","E","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","counts may be low due to blurry batches"
+"2014-05-27_YB-Eq4",2014-05-27,2014-05-27,"YB","E","4","Chi","Chiton_spp","Type 22",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-05-27_YB-Eq8",2014-05-27,2014-05-27,"YB","E","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-05-27_YB-Eq3",2014-05-27,2014-05-27,"YB","E","3","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","counts may be low due to blurry batches"
+"2014-05-27_YB-Eq4",2014-05-27,2014-05-27,"YB","E","4","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-05-27_YB-Eq8",2014-05-27,2014-05-27,"YB","E","8","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-05-27_YB-Eq3",2014-05-27,2014-05-27,"YB","E","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","counts may be low due to blurry batches"
+"2014-05-27_YB-Eq4",2014-05-27,2014-05-27,"YB","E","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-05-27_YB-Eq8",2014-05-27,2014-05-27,"YB","E","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-05-27_YB-Eq3",2014-05-27,2014-05-27,"YB","E","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","counts may be low due to blurry batches"
+"2014-05-27_YB-Eq4",2014-05-27,2014-05-27,"YB","E","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-05-27_YB-Eq8",2014-05-27,2014-05-27,"YB","E","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-05-27_YB-Eq3",2014-05-27,2014-05-27,"YB","E","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","counts may be low due to blurry batches"
+"2014-05-27_YB-Eq4",2014-05-27,2014-05-27,"YB","E","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-05-27_YB-Eq8",2014-05-27,2014-05-27,"YB","E","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-05-27_YB-Eq3",2014-05-27,2014-05-27,"YB","E","3","Lim","Limpets","Type 12",33,0.0875,377.142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","30%","counts may be low due to blurry batches"
+"2014-05-27_YB-Eq4",2014-05-27,2014-05-27,"YB","E","4","Lim","Limpets","Type 12",37,0.0875,422.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-05-27_YB-Eq8",2014-05-27,2014-05-27,"YB","E","8","Lim","Limpets","Type 12",29,0.0875,331.428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-05-27_YB-Eq3",2014-05-27,2014-05-27,"YB","E","3","Ls","Littorina_sitkana","Type 13",84,0.0875,960,NA,"Stephanie Merhoff","Finished","Full","Full","30%","counts may be low due to blurry batches"
+"2014-05-27_YB-Eq4",2014-05-27,2014-05-27,"YB","E","4","Ls","Littorina_sitkana","Type 13",149,0.0875,1702.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-05-27_YB-Eq8",2014-05-27,2014-05-27,"YB","E","8","Ls","Littorina_sitkana","Type 13",127,0.0875,1451.42857142857,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-05-27_YB-Eq3",2014-05-27,2014-05-27,"YB","E","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","counts may be low due to blurry batches"
+"2014-05-27_YB-Eq4",2014-05-27,2014-05-27,"YB","E","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-05-27_YB-Eq8",2014-05-27,2014-05-27,"YB","E","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-05-27_YB-Eq3",2014-05-27,2014-05-27,"YB","E","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","counts may be low due to blurry batches"
+"2014-05-27_YB-Eq4",2014-05-27,2014-05-27,"YB","E","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-05-27_YB-Eq8",2014-05-27,2014-05-27,"YB","E","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-05-27_YB-Eq3",2014-05-27,2014-05-27,"YB","E","3","Myt","Mytilus_spp","Type 7",458,0.0875,5234.28571428571,NA,"Stephanie Merhoff","Finished","Full","Full","30%","counts may be low due to blurry batches"
+"2014-05-27_YB-Eq4",2014-05-27,2014-05-27,"YB","E","4","Myt","Mytilus_spp","Type 7",960,0.0875,10971.4285714286,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-05-27_YB-Eq8",2014-05-27,2014-05-27,"YB","E","8","Myt","Mytilus_spp","Type 7",983,0.0875,11234.2857142857,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-05-27_YB-Eq3",2014-05-27,2014-05-27,"YB","E","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","counts may be low due to blurry batches"
+"2014-05-27_YB-Eq4",2014-05-27,2014-05-27,"YB","E","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-05-27_YB-Eq8",2014-05-27,2014-05-27,"YB","E","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-05-27_YB-Eq3",2014-05-27,2014-05-27,"YB","E","3","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","counts may be low due to blurry batches"
+"2014-05-27_YB-Eq4",2014-05-27,2014-05-27,"YB","E","4","Mt","Mytilus_trossulus","Type 15",13,0.0875,148.571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-05-27_YB-Eq8",2014-05-27,2014-05-27,"YB","E","8","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-05-27_YB-Eq3",2014-05-27,2014-05-27,"YB","E","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","counts may be low due to blurry batches"
+"2014-05-27_YB-Eq4",2014-05-27,2014-05-27,"YB","E","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-05-27_YB-Eq8",2014-05-27,2014-05-27,"YB","E","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-05-27_YB-Eq3",2014-05-27,2014-05-27,"YB","E","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","counts may be low due to blurry batches"
+"2014-05-27_YB-Eq4",2014-05-27,2014-05-27,"YB","E","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-05-27_YB-Eq8",2014-05-27,2014-05-27,"YB","E","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-05-27_YB-Eq3",2014-05-27,2014-05-27,"YB","E","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","counts may be low due to blurry batches"
+"2014-05-27_YB-Eq4",2014-05-27,2014-05-27,"YB","E","4","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-05-27_YB-Eq8",2014-05-27,2014-05-27,"YB","E","8","Nc","Nucella_canaliculata","Type 10",4,0.0875,45.7142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-05-27_YB-Eq3",2014-05-27,2014-05-27,"YB","E","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","counts may be low due to blurry batches"
+"2014-05-27_YB-Eq4",2014-05-27,2014-05-27,"YB","E","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-05-27_YB-Eq8",2014-05-27,2014-05-27,"YB","E","8","Negg","Nucella_eggs","Type 26",7,0.0875,80,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-05-27_YB-Eq3",2014-05-27,2014-05-27,"YB","E","3","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","30%","counts may be low due to blurry batches"
+"2014-05-27_YB-Eq4",2014-05-27,2014-05-27,"YB","E","4","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-05-27_YB-Eq8",2014-05-27,2014-05-27,"YB","E","8","No","Nucella_ostrina","Type 9",33,0.0875,377.142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-05-27_YB-Eq3",2014-05-27,2014-05-27,"YB","E","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","counts may be low due to blurry batches"
+"2014-05-27_YB-Eq4",2014-05-27,2014-05-27,"YB","E","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-05-27_YB-Eq8",2014-05-27,2014-05-27,"YB","E","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-05-27_YB-Eq3",2014-05-27,2014-05-27,"YB","E","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","counts may be low due to blurry batches"
+"2014-05-27_YB-Eq4",2014-05-27,2014-05-27,"YB","E","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-05-27_YB-Eq8",2014-05-27,2014-05-27,"YB","E","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-05-27_YB-Eq3",2014-05-27,2014-05-27,"YB","E","3","Pp","Pollicipes_polymerus","Type 11",8,0.0875,91.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","30%","counts may be low due to blurry batches"
+"2014-05-27_YB-Eq4",2014-05-27,2014-05-27,"YB","E","4","Pp","Pollicipes_polymerus","Type 11",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-05-27_YB-Eq8",2014-05-27,2014-05-27,"YB","E","8","Pp","Pollicipes_polymerus","Type 11",4,0.0875,45.7142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-05-27_YB-Eq3",2014-05-27,2014-05-27,"YB","E","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","counts may be low due to blurry batches"
+"2014-05-27_YB-Eq4",2014-05-27,2014-05-27,"YB","E","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-05-27_YB-Eq8",2014-05-27,2014-05-27,"YB","E","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-05-27_YB-Eq3",2014-05-27,2014-05-27,"YB","E","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","counts may be low due to blurry batches"
+"2014-05-27_YB-Eq4",2014-05-27,2014-05-27,"YB","E","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-05-27_YB-Eq8",2014-05-27,2014-05-27,"YB","E","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-05-27_YB-Eq3",2014-05-27,2014-05-27,"YB","E","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","counts may be low due to blurry batches"
+"2014-05-27_YB-Eq4",2014-05-27,2014-05-27,"YB","E","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-05-27_YB-Eq8",2014-05-27,2014-05-27,"YB","E","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-05-27_YB-Fq4",2014-05-27,2014-05-27,"YB","F","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-Fq5",2014-05-27,2014-05-27,"YB","F","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-05-27_YB-Fq6",2014-05-27,2014-05-27,"YB","F","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-Fq4",2014-05-27,2014-05-27,"YB","F","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-Fq5",2014-05-27,2014-05-27,"YB","F","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-05-27_YB-Fq6",2014-05-27,2014-05-27,"YB","F","6","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-Fq4",2014-05-27,2014-05-27,"YB","F","4","Bg","Balanus_glandula","Type 1",513,0.015625,32832,"c","Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-Fq5",2014-05-27,2014-05-27,"YB","F","5","Bg","Balanus_glandula","Type 1",424,0.015625,27136,"c","Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-05-27_YB-Fq6",2014-05-27,2014-05-27,"YB","F","6","Bg","Balanus_glandula","Type 1",649,0.015625,41536,"c","Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-Fq4",2014-05-27,2014-05-27,"YB","F","4","BgD","Balanus_glandula_(dead)","Type 2",5,0.015625,320,"c","Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-Fq5",2014-05-27,2014-05-27,"YB","F","5","BgD","Balanus_glandula_(dead)","Type 2",5,0.015625,320,"c","Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-05-27_YB-Fq6",2014-05-27,2014-05-27,"YB","F","6","BgD","Balanus_glandula_(dead)","Type 2",27,0.015625,1728,"c","Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-Fq4",2014-05-27,2014-05-27,"YB","F","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-Fq5",2014-05-27,2014-05-27,"YB","F","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-05-27_YB-Fq6",2014-05-27,2014-05-27,"YB","F","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-Fq4",2014-05-27,2014-05-27,"YB","F","4","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-Fq5",2014-05-27,2014-05-27,"YB","F","5","Cth","Chthamalus_dalli","Type 3",1,0.015625,64,"c","Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-05-27_YB-Fq6",2014-05-27,2014-05-27,"YB","F","6","Cth","Chthamalus_dalli","Type 3",3,0.015625,192,"c","Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-Fq4",2014-05-27,2014-05-27,"YB","F","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-Fq5",2014-05-27,2014-05-27,"YB","F","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-05-27_YB-Fq6",2014-05-27,2014-05-27,"YB","F","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-Fq4",2014-05-27,2014-05-27,"YB","F","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-Fq5",2014-05-27,2014-05-27,"YB","F","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-05-27_YB-Fq6",2014-05-27,2014-05-27,"YB","F","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-Fq4",2014-05-27,2014-05-27,"YB","F","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-Fq5",2014-05-27,2014-05-27,"YB","F","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-05-27_YB-Fq6",2014-05-27,2014-05-27,"YB","F","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-Fq4",2014-05-27,2014-05-27,"YB","F","4","Lim","Limpets","Type 12",50,0.0875,571.428571428571,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-Fq5",2014-05-27,2014-05-27,"YB","F","5","Lim","Limpets","Type 12",85,0.0875,971.428571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-05-27_YB-Fq6",2014-05-27,2014-05-27,"YB","F","6","Lim","Limpets","Type 12",31,0.0875,354.285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-Fq4",2014-05-27,2014-05-27,"YB","F","4","Ls","Littorina_sitkana","Type 13",235,0.0875,2685.71428571429,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-Fq5",2014-05-27,2014-05-27,"YB","F","5","Ls","Littorina_sitkana","Type 13",453,0.0875,5177.14285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-05-27_YB-Fq6",2014-05-27,2014-05-27,"YB","F","6","Ls","Littorina_sitkana","Type 13",379,0.0875,4331.42857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-Fq4",2014-05-27,2014-05-27,"YB","F","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-Fq5",2014-05-27,2014-05-27,"YB","F","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-05-27_YB-Fq6",2014-05-27,2014-05-27,"YB","F","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-Fq4",2014-05-27,2014-05-27,"YB","F","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-Fq5",2014-05-27,2014-05-27,"YB","F","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-05-27_YB-Fq6",2014-05-27,2014-05-27,"YB","F","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-Fq4",2014-05-27,2014-05-27,"YB","F","4","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-Fq5",2014-05-27,2014-05-27,"YB","F","5","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-05-27_YB-Fq6",2014-05-27,2014-05-27,"YB","F","6","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-Fq4",2014-05-27,2014-05-27,"YB","F","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-Fq5",2014-05-27,2014-05-27,"YB","F","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-05-27_YB-Fq6",2014-05-27,2014-05-27,"YB","F","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-Fq4",2014-05-27,2014-05-27,"YB","F","4","Mt","Mytilus_trossulus","Type 15",339,0.0875,3874.28571428571,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-Fq5",2014-05-27,2014-05-27,"YB","F","5","Mt","Mytilus_trossulus","Type 15",363,0.0875,4148.57142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-05-27_YB-Fq6",2014-05-27,2014-05-27,"YB","F","6","Mt","Mytilus_trossulus","Type 15",368,0.0875,4205.71428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-Fq4",2014-05-27,2014-05-27,"YB","F","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-Fq5",2014-05-27,2014-05-27,"YB","F","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-05-27_YB-Fq6",2014-05-27,2014-05-27,"YB","F","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-Fq4",2014-05-27,2014-05-27,"YB","F","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-Fq5",2014-05-27,2014-05-27,"YB","F","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-05-27_YB-Fq6",2014-05-27,2014-05-27,"YB","F","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-Fq4",2014-05-27,2014-05-27,"YB","F","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-Fq5",2014-05-27,2014-05-27,"YB","F","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-05-27_YB-Fq6",2014-05-27,2014-05-27,"YB","F","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-Fq4",2014-05-27,2014-05-27,"YB","F","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-Fq5",2014-05-27,2014-05-27,"YB","F","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-05-27_YB-Fq6",2014-05-27,2014-05-27,"YB","F","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-Fq4",2014-05-27,2014-05-27,"YB","F","4","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-Fq5",2014-05-27,2014-05-27,"YB","F","5","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-05-27_YB-Fq6",2014-05-27,2014-05-27,"YB","F","6","No","Nucella_ostrina","Type 9",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-Fq4",2014-05-27,2014-05-27,"YB","F","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-Fq5",2014-05-27,2014-05-27,"YB","F","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-05-27_YB-Fq6",2014-05-27,2014-05-27,"YB","F","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-Fq4",2014-05-27,2014-05-27,"YB","F","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-Fq5",2014-05-27,2014-05-27,"YB","F","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-05-27_YB-Fq6",2014-05-27,2014-05-27,"YB","F","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-Fq4",2014-05-27,2014-05-27,"YB","F","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-Fq5",2014-05-27,2014-05-27,"YB","F","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-05-27_YB-Fq6",2014-05-27,2014-05-27,"YB","F","6","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-Fq4",2014-05-27,2014-05-27,"YB","F","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-Fq5",2014-05-27,2014-05-27,"YB","F","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-05-27_YB-Fq6",2014-05-27,2014-05-27,"YB","F","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-Fq4",2014-05-27,2014-05-27,"YB","F","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-Fq5",2014-05-27,2014-05-27,"YB","F","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-05-27_YB-Fq6",2014-05-27,2014-05-27,"YB","F","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-Fq4",2014-05-27,2014-05-27,"YB","F","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-05-27_YB-Fq5",2014-05-27,2014-05-27,"YB","F","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-05-27_YB-Fq6",2014-05-27,2014-05-27,"YB","F","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-05-27_YB-Gq3",2014-05-27,2014-05-27,"YB","G","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-05-27_YB-Gq5",2014-05-27,2014-05-27,"YB","G","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","1%","Counts low due to underwater portions. ~45% underwater."
+"2014-05-27_YB-Gq8",2014-05-27,2014-05-27,"YB","G","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Full","8%",""
+"2014-05-27_YB-Gq3",2014-05-27,2014-05-27,"YB","G","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-05-27_YB-Gq5",2014-05-27,2014-05-27,"YB","G","5","Ae","Anemones","Type 14",7,0.0875,80,NA,"Beatriz Vaca","Finished","Cropped","Full","1%","Counts low due to underwater portions. ~45% underwater."
+"2014-05-27_YB-Gq8",2014-05-27,2014-05-27,"YB","G","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Full","8%",""
+"2014-05-27_YB-Gq3",2014-05-27,2014-05-27,"YB","G","3","Bg","Balanus_glandula","Type 1",254,0.0875,2902.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-05-27_YB-Gq5",2014-05-27,2014-05-27,"YB","G","5","Bg","Balanus_glandula","Type 1",425,0.0875,4857.14285714286,NA,"Beatriz Vaca","Finished","Cropped","Full","1%","Counts low due to underwater portions. ~45% underwater."
+"2014-05-27_YB-Gq8",2014-05-27,2014-05-27,"YB","G","8","Bg","Balanus_glandula","Type 1",307,0.0875,3508.57142857143,NA,"Stephanie Merhoff","Finished","Cropped","Full","8%",""
+"2014-05-27_YB-Gq3",2014-05-27,2014-05-27,"YB","G","3","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-05-27_YB-Gq5",2014-05-27,2014-05-27,"YB","G","5","BgD","Balanus_glandula_(dead)","Type 2",36,0.0875,411.428571428571,NA,"Beatriz Vaca","Finished","Cropped","Full","1%","Counts low due to underwater portions. ~45% underwater."
+"2014-05-27_YB-Gq8",2014-05-27,2014-05-27,"YB","G","8","BgD","Balanus_glandula_(dead)","Type 2",47,0.0875,537.142857142857,NA,"Stephanie Merhoff","Finished","Cropped","Full","8%",""
+"2014-05-27_YB-Gq3",2014-05-27,2014-05-27,"YB","G","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-05-27_YB-Gq5",2014-05-27,2014-05-27,"YB","G","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","1%","Counts low due to underwater portions. ~45% underwater."
+"2014-05-27_YB-Gq8",2014-05-27,2014-05-27,"YB","G","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Full","8%",""
+"2014-05-27_YB-Gq3",2014-05-27,2014-05-27,"YB","G","3","Cth","Chthamalus_dalli","Type 3",216,0.0875,2468.57142857143,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-05-27_YB-Gq5",2014-05-27,2014-05-27,"YB","G","5","Cth","Chthamalus_dalli","Type 3",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Cropped","Full","1%","Counts low due to underwater portions. ~45% underwater."
+"2014-05-27_YB-Gq8",2014-05-27,2014-05-27,"YB","G","8","Cth","Chthamalus_dalli","Type 3",96,0.0875,1097.14285714286,NA,"Stephanie Merhoff","Finished","Cropped","Full","8%",""
+"2014-05-27_YB-Gq3",2014-05-27,2014-05-27,"YB","G","3","CthD","Chthamalus_dalli (dead)","Type 4",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-05-27_YB-Gq5",2014-05-27,2014-05-27,"YB","G","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","1%","Counts low due to underwater portions. ~45% underwater."
+"2014-05-27_YB-Gq8",2014-05-27,2014-05-27,"YB","G","8","CthD","Chthamalus_dalli (dead)","Type 4",14,0.0875,160,NA,"Stephanie Merhoff","Finished","Cropped","Full","8%",""
+"2014-05-27_YB-Gq3",2014-05-27,2014-05-27,"YB","G","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-05-27_YB-Gq5",2014-05-27,2014-05-27,"YB","G","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","1%","Counts low due to underwater portions. ~45% underwater."
+"2014-05-27_YB-Gq8",2014-05-27,2014-05-27,"YB","G","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Full","8%",""
+"2014-05-27_YB-Gq3",2014-05-27,2014-05-27,"YB","G","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-05-27_YB-Gq5",2014-05-27,2014-05-27,"YB","G","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","1%","Counts low due to underwater portions. ~45% underwater."
+"2014-05-27_YB-Gq8",2014-05-27,2014-05-27,"YB","G","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Full","8%",""
+"2014-05-27_YB-Gq3",2014-05-27,2014-05-27,"YB","G","3","Lim","Limpets","Type 12",61,0.0875,697.142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-05-27_YB-Gq5",2014-05-27,2014-05-27,"YB","G","5","Lim","Limpets","Type 12",151,0.0875,1725.71428571429,NA,"Beatriz Vaca","Finished","Cropped","Full","1%","Counts low due to underwater portions. ~45% underwater."
+"2014-05-27_YB-Gq8",2014-05-27,2014-05-27,"YB","G","8","Lim","Limpets","Type 12",53,0.0875,605.714285714286,NA,"Stephanie Merhoff","Finished","Cropped","Full","8%",""
+"2014-05-27_YB-Gq3",2014-05-27,2014-05-27,"YB","G","3","Ls","Littorina_sitkana","Type 13",111,0.0875,1268.57142857143,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-05-27_YB-Gq5",2014-05-27,2014-05-27,"YB","G","5","Ls","Littorina_sitkana","Type 13",58,0.0875,662.857142857143,NA,"Beatriz Vaca","Finished","Cropped","Full","1%","Counts low due to underwater portions. ~45% underwater."
+"2014-05-27_YB-Gq8",2014-05-27,2014-05-27,"YB","G","8","Ls","Littorina_sitkana","Type 13",84,0.0875,960,NA,"Stephanie Merhoff","Finished","Cropped","Full","8%",""
+"2014-05-27_YB-Gq3",2014-05-27,2014-05-27,"YB","G","3","Mc","Mytilus_californianus","Type 17",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-05-27_YB-Gq5",2014-05-27,2014-05-27,"YB","G","5","Mc","Mytilus_californianus","Type 17",10,0.015625,640,"c","Beatriz Vaca","Finished","Cropped","Full","1%","Counts low due to underwater portions. ~45% underwater."
+"2014-05-27_YB-Gq8",2014-05-27,2014-05-27,"YB","G","8","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Stephanie Merhoff","Finished","Cropped","Full","8%",""
+"2014-05-27_YB-Gq3",2014-05-27,2014-05-27,"YB","G","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-05-27_YB-Gq5",2014-05-27,2014-05-27,"YB","G","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","1%","Counts low due to underwater portions. ~45% underwater."
+"2014-05-27_YB-Gq8",2014-05-27,2014-05-27,"YB","G","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Stephanie Merhoff","Finished","Cropped","Full","8%",""
+"2014-05-27_YB-Gq3",2014-05-27,2014-05-27,"YB","G","3","Myt","Mytilus_spp","Type 7",1021,0.0875,11668.5714285714,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-05-27_YB-Gq5",2014-05-27,2014-05-27,"YB","G","5","Myt","Mytilus_spp","Type 7",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","1%","Counts low due to underwater portions. ~45% underwater."
+"2014-05-27_YB-Gq8",2014-05-27,2014-05-27,"YB","G","8","Myt","Mytilus_spp","Type 7",215,0.015625,13760,"c","Stephanie Merhoff","Finished","Cropped","Full","8%",""
+"2014-05-27_YB-Gq3",2014-05-27,2014-05-27,"YB","G","3","MytD","Mytilus_spp_(dead)","Type 8",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-05-27_YB-Gq5",2014-05-27,2014-05-27,"YB","G","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","1%","Counts low due to underwater portions. ~45% underwater."
+"2014-05-27_YB-Gq8",2014-05-27,2014-05-27,"YB","G","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Stephanie Merhoff","Finished","Cropped","Full","8%",""
+"2014-05-27_YB-Gq3",2014-05-27,2014-05-27,"YB","G","3","Mt","Mytilus_trossulus","Type 15",121,0.0875,1382.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-05-27_YB-Gq5",2014-05-27,2014-05-27,"YB","G","5","Mt","Mytilus_trossulus","Type 15",196,0.015625,12544,"c","Beatriz Vaca","Finished","Cropped","Full","1%","Counts low due to underwater portions. ~45% underwater."
+"2014-05-27_YB-Gq8",2014-05-27,2014-05-27,"YB","G","8","Mt","Mytilus_trossulus","Type 15",41,0.015625,2624,"c","Stephanie Merhoff","Finished","Cropped","Full","8%",""
+"2014-05-27_YB-Gq3",2014-05-27,2014-05-27,"YB","G","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-05-27_YB-Gq5",2014-05-27,2014-05-27,"YB","G","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","1%","Counts low due to underwater portions. ~45% underwater."
+"2014-05-27_YB-Gq8",2014-05-27,2014-05-27,"YB","G","8","MtD","Mytilus_trossulus_(dead)","Type 16",2,0.015625,128,"c","Stephanie Merhoff","Finished","Cropped","Full","8%",""
+"2014-05-27_YB-Gq3",2014-05-27,2014-05-27,"YB","G","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-05-27_YB-Gq5",2014-05-27,2014-05-27,"YB","G","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","1%","Counts low due to underwater portions. ~45% underwater."
+"2014-05-27_YB-Gq8",2014-05-27,2014-05-27,"YB","G","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Full","8%",""
+"2014-05-27_YB-Gq3",2014-05-27,2014-05-27,"YB","G","3","Nc","Nucella_canaliculata","Type 10",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-05-27_YB-Gq5",2014-05-27,2014-05-27,"YB","G","5","Nc","Nucella_canaliculata","Type 10",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Cropped","Full","1%","Counts low due to underwater portions. ~45% underwater."
+"2014-05-27_YB-Gq8",2014-05-27,2014-05-27,"YB","G","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Full","8%",""
+"2014-05-27_YB-Gq3",2014-05-27,2014-05-27,"YB","G","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-05-27_YB-Gq5",2014-05-27,2014-05-27,"YB","G","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","1%","Counts low due to underwater portions. ~45% underwater."
+"2014-05-27_YB-Gq8",2014-05-27,2014-05-27,"YB","G","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Full","8%",""
+"2014-05-27_YB-Gq3",2014-05-27,2014-05-27,"YB","G","3","No","Nucella_ostrina","Type 9",29,0.0875,331.428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-05-27_YB-Gq5",2014-05-27,2014-05-27,"YB","G","5","No","Nucella_ostrina","Type 9",52,0.0875,594.285714285714,NA,"Beatriz Vaca","Finished","Cropped","Full","1%","Counts low due to underwater portions. ~45% underwater."
+"2014-05-27_YB-Gq8",2014-05-27,2014-05-27,"YB","G","8","No","Nucella_ostrina","Type 9",12,0.0875,137.142857142857,NA,"Stephanie Merhoff","Finished","Cropped","Full","8%",""
+"2014-05-27_YB-Gq3",2014-05-27,2014-05-27,"YB","G","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-05-27_YB-Gq5",2014-05-27,2014-05-27,"YB","G","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","1%","Counts low due to underwater portions. ~45% underwater."
+"2014-05-27_YB-Gq8",2014-05-27,2014-05-27,"YB","G","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Full","8%",""
+"2014-05-27_YB-Gq3",2014-05-27,2014-05-27,"YB","G","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-05-27_YB-Gq5",2014-05-27,2014-05-27,"YB","G","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","1%","Counts low due to underwater portions. ~45% underwater."
+"2014-05-27_YB-Gq8",2014-05-27,2014-05-27,"YB","G","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Full","8%",""
+"2014-05-27_YB-Gq3",2014-05-27,2014-05-27,"YB","G","3","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-05-27_YB-Gq5",2014-05-27,2014-05-27,"YB","G","5","Pp","Pollicipes_polymerus","Type 11",39,0.0875,445.714285714286,NA,"Beatriz Vaca","Finished","Cropped","Full","1%","Counts low due to underwater portions. ~45% underwater."
+"2014-05-27_YB-Gq8",2014-05-27,2014-05-27,"YB","G","8","Pp","Pollicipes_polymerus","Type 11",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Cropped","Full","8%",""
+"2014-05-27_YB-Gq3",2014-05-27,2014-05-27,"YB","G","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-05-27_YB-Gq5",2014-05-27,2014-05-27,"YB","G","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","1%","Counts low due to underwater portions. ~45% underwater."
+"2014-05-27_YB-Gq8",2014-05-27,2014-05-27,"YB","G","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Full","8%",""
+"2014-05-27_YB-Gq3",2014-05-27,2014-05-27,"YB","G","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-05-27_YB-Gq5",2014-05-27,2014-05-27,"YB","G","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","1%","Counts low due to underwater portions. ~45% underwater."
+"2014-05-27_YB-Gq8",2014-05-27,2014-05-27,"YB","G","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Full","8%",""
+"2014-05-27_YB-Gq3",2014-05-27,2014-05-27,"YB","G","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-05-27_YB-Gq5",2014-05-27,2014-05-27,"YB","G","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","1%","Counts low due to underwater portions. ~45% underwater."
+"2014-05-27_YB-Gq8",2014-05-27,2014-05-27,"YB","G","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Full","8%",""
+"2014-06-24_YB-Aq6",2014-06-24,2014-06-24,"YB","A","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-06-24_YB-Aq7",2014-06-24,2014-06-24,"YB","A","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","3%","Counts likely low due to poor resolution - everything is shades of blue."
+"2014-06-24_YB-Aq9",2014-06-24,2014-06-24,"YB","A","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","1%","Counts low due to blur and blue hue"
+"2014-06-24_YB-Aq6",2014-06-24,2014-06-24,"YB","A","6","Ae","Anemones","Type 14",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-06-24_YB-Aq7",2014-06-24,2014-06-24,"YB","A","7","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","3%","Counts likely low due to poor resolution - everything is shades of blue."
+"2014-06-24_YB-Aq9",2014-06-24,2014-06-24,"YB","A","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","1%","Counts low due to blur and blue hue"
+"2014-06-24_YB-Aq6",2014-06-24,2014-06-24,"YB","A","6","Bg","Balanus_glandula","Type 1",397,0.0875,4537.14285714286,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-06-24_YB-Aq7",2014-06-24,2014-06-24,"YB","A","7","Bg","Balanus_glandula","Type 1",175,0.0875,2000,NA,"Beatriz Vaca","Finished","Cropped","Full","3%","Counts likely low due to poor resolution - everything is shades of blue."
+"2014-06-24_YB-Aq9",2014-06-24,2014-06-24,"YB","A","9","Bg","Balanus_glandula","Type 1",276,0.0875,3154.28571428571,NA,"Julia Bingham","Finished","Cropped","Full","1%","Counts low due to blur and blue hue"
+"2014-06-24_YB-Aq6",2014-06-24,2014-06-24,"YB","A","6","BgD","Balanus_glandula_(dead)","Type 2",36,0.0875,411.428571428571,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-06-24_YB-Aq7",2014-06-24,2014-06-24,"YB","A","7","BgD","Balanus_glandula_(dead)","Type 2",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Cropped","Full","3%","Counts likely low due to poor resolution - everything is shades of blue."
+"2014-06-24_YB-Aq9",2014-06-24,2014-06-24,"YB","A","9","BgD","Balanus_glandula_(dead)","Type 2",5,0.0875,57.1428571428571,NA,"Julia Bingham","Finished","Cropped","Full","1%","Counts low due to blur and blue hue"
+"2014-06-24_YB-Aq6",2014-06-24,2014-06-24,"YB","A","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-06-24_YB-Aq7",2014-06-24,2014-06-24,"YB","A","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","3%","Counts likely low due to poor resolution - everything is shades of blue."
+"2014-06-24_YB-Aq9",2014-06-24,2014-06-24,"YB","A","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","1%","Counts low due to blur and blue hue"
+"2014-06-24_YB-Aq6",2014-06-24,2014-06-24,"YB","A","6","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-06-24_YB-Aq7",2014-06-24,2014-06-24,"YB","A","7","Cth","Chthamalus_dalli","Type 3",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Cropped","Full","3%","Counts likely low due to poor resolution - everything is shades of blue."
+"2014-06-24_YB-Aq9",2014-06-24,2014-06-24,"YB","A","9","Cth","Chthamalus_dalli","Type 3",3,0.0875,34.2857142857143,NA,"Julia Bingham","Finished","Cropped","Full","1%","Counts low due to blur and blue hue"
+"2014-06-24_YB-Aq6",2014-06-24,2014-06-24,"YB","A","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-06-24_YB-Aq7",2014-06-24,2014-06-24,"YB","A","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","3%","Counts likely low due to poor resolution - everything is shades of blue."
+"2014-06-24_YB-Aq9",2014-06-24,2014-06-24,"YB","A","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","1%","Counts low due to blur and blue hue"
+"2014-06-24_YB-Aq6",2014-06-24,2014-06-24,"YB","A","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-06-24_YB-Aq7",2014-06-24,2014-06-24,"YB","A","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","3%","Counts likely low due to poor resolution - everything is shades of blue."
+"2014-06-24_YB-Aq9",2014-06-24,2014-06-24,"YB","A","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","1%","Counts low due to blur and blue hue"
+"2014-06-24_YB-Aq6",2014-06-24,2014-06-24,"YB","A","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-06-24_YB-Aq7",2014-06-24,2014-06-24,"YB","A","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","3%","Counts likely low due to poor resolution - everything is shades of blue."
+"2014-06-24_YB-Aq9",2014-06-24,2014-06-24,"YB","A","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","1%","Counts low due to blur and blue hue"
+"2014-06-24_YB-Aq6",2014-06-24,2014-06-24,"YB","A","6","Lim","Limpets","Type 12",7,0.0875,80,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-06-24_YB-Aq7",2014-06-24,2014-06-24,"YB","A","7","Lim","Limpets","Type 12",17,0.0875,194.285714285714,NA,"Beatriz Vaca","Finished","Cropped","Full","3%","Counts likely low due to poor resolution - everything is shades of blue."
+"2014-06-24_YB-Aq9",2014-06-24,2014-06-24,"YB","A","9","Lim","Limpets","Type 12",55,0.0875,628.571428571429,NA,"Julia Bingham","Finished","Cropped","Full","1%","Counts low due to blur and blue hue"
+"2014-06-24_YB-Aq6",2014-06-24,2014-06-24,"YB","A","6","Ls","Littorina_sitkana","Type 13",8,0.0875,91.4285714285714,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-06-24_YB-Aq7",2014-06-24,2014-06-24,"YB","A","7","Ls","Littorina_sitkana","Type 13",85,0.0875,971.428571428571,NA,"Beatriz Vaca","Finished","Cropped","Full","3%","Counts likely low due to poor resolution - everything is shades of blue."
+"2014-06-24_YB-Aq9",2014-06-24,2014-06-24,"YB","A","9","Ls","Littorina_sitkana","Type 13",139,0.0875,1588.57142857143,NA,"Julia Bingham","Finished","Cropped","Full","1%","Counts low due to blur and blue hue"
+"2014-06-24_YB-Aq6",2014-06-24,2014-06-24,"YB","A","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-06-24_YB-Aq7",2014-06-24,2014-06-24,"YB","A","7","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","3%","Counts likely low due to poor resolution - everything is shades of blue."
+"2014-06-24_YB-Aq9",2014-06-24,2014-06-24,"YB","A","9","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Julia Bingham","Finished","Cropped","Full","1%","Counts low due to blur and blue hue"
+"2014-06-24_YB-Aq6",2014-06-24,2014-06-24,"YB","A","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-06-24_YB-Aq7",2014-06-24,2014-06-24,"YB","A","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","3%","Counts likely low due to poor resolution - everything is shades of blue."
+"2014-06-24_YB-Aq9",2014-06-24,2014-06-24,"YB","A","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Julia Bingham","Finished","Cropped","Full","1%","Counts low due to blur and blue hue"
+"2014-06-24_YB-Aq6",2014-06-24,2014-06-24,"YB","A","6","Myt","Mytilus_spp","Type 7",61,0.0875,697.142857142857,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-06-24_YB-Aq7",2014-06-24,2014-06-24,"YB","A","7","Myt","Mytilus_spp","Type 7",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","3%","Counts likely low due to poor resolution - everything is shades of blue."
+"2014-06-24_YB-Aq9",2014-06-24,2014-06-24,"YB","A","9","Myt","Mytilus_spp","Type 7",173,0.015625,11072,"c","Julia Bingham","Finished","Cropped","Full","1%","Counts low due to blur and blue hue"
+"2014-06-24_YB-Aq6",2014-06-24,2014-06-24,"YB","A","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-06-24_YB-Aq7",2014-06-24,2014-06-24,"YB","A","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","3%","Counts likely low due to poor resolution - everything is shades of blue."
+"2014-06-24_YB-Aq9",2014-06-24,2014-06-24,"YB","A","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Julia Bingham","Finished","Cropped","Full","1%","Counts low due to blur and blue hue"
+"2014-06-24_YB-Aq6",2014-06-24,2014-06-24,"YB","A","6","Mt","Mytilus_trossulus","Type 15",955,0.0875,10914.2857142857,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-06-24_YB-Aq7",2014-06-24,2014-06-24,"YB","A","7","Mt","Mytilus_trossulus","Type 15",226,0.015625,14464,"c","Beatriz Vaca","Finished","Cropped","Full","3%","Counts likely low due to poor resolution - everything is shades of blue."
+"2014-06-24_YB-Aq9",2014-06-24,2014-06-24,"YB","A","9","Mt","Mytilus_trossulus","Type 15",361,0.015625,23104,"c","Julia Bingham","Finished","Cropped","Full","1%","Counts low due to blur and blue hue"
+"2014-06-24_YB-Aq6",2014-06-24,2014-06-24,"YB","A","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-06-24_YB-Aq7",2014-06-24,2014-06-24,"YB","A","7","MtD","Mytilus_trossulus_(dead)","Type 16",5,0.015625,320,"c","Beatriz Vaca","Finished","Cropped","Full","3%","Counts likely low due to poor resolution - everything is shades of blue."
+"2014-06-24_YB-Aq9",2014-06-24,2014-06-24,"YB","A","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Julia Bingham","Finished","Cropped","Full","1%","Counts low due to blur and blue hue"
+"2014-06-24_YB-Aq6",2014-06-24,2014-06-24,"YB","A","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-06-24_YB-Aq7",2014-06-24,2014-06-24,"YB","A","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","3%","Counts likely low due to poor resolution - everything is shades of blue."
+"2014-06-24_YB-Aq9",2014-06-24,2014-06-24,"YB","A","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","1%","Counts low due to blur and blue hue"
+"2014-06-24_YB-Aq6",2014-06-24,2014-06-24,"YB","A","6","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-06-24_YB-Aq7",2014-06-24,2014-06-24,"YB","A","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","3%","Counts likely low due to poor resolution - everything is shades of blue."
+"2014-06-24_YB-Aq9",2014-06-24,2014-06-24,"YB","A","9","Nc","Nucella_canaliculata","Type 10",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Cropped","Full","1%","Counts low due to blur and blue hue"
+"2014-06-24_YB-Aq6",2014-06-24,2014-06-24,"YB","A","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-06-24_YB-Aq7",2014-06-24,2014-06-24,"YB","A","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","3%","Counts likely low due to poor resolution - everything is shades of blue."
+"2014-06-24_YB-Aq9",2014-06-24,2014-06-24,"YB","A","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","1%","Counts low due to blur and blue hue"
+"2014-06-24_YB-Aq6",2014-06-24,2014-06-24,"YB","A","6","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-06-24_YB-Aq7",2014-06-24,2014-06-24,"YB","A","7","No","Nucella_ostrina","Type 9",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Cropped","Full","3%","Counts likely low due to poor resolution - everything is shades of blue."
+"2014-06-24_YB-Aq9",2014-06-24,2014-06-24,"YB","A","9","No","Nucella_ostrina","Type 9",10,0.0875,114.285714285714,NA,"Julia Bingham","Finished","Cropped","Full","1%","Counts low due to blur and blue hue"
+"2014-06-24_YB-Aq6",2014-06-24,2014-06-24,"YB","A","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-06-24_YB-Aq7",2014-06-24,2014-06-24,"YB","A","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","3%","Counts likely low due to poor resolution - everything is shades of blue."
+"2014-06-24_YB-Aq9",2014-06-24,2014-06-24,"YB","A","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","1%","Counts low due to blur and blue hue"
+"2014-06-24_YB-Aq6",2014-06-24,2014-06-24,"YB","A","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-06-24_YB-Aq7",2014-06-24,2014-06-24,"YB","A","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","3%","Counts likely low due to poor resolution - everything is shades of blue."
+"2014-06-24_YB-Aq9",2014-06-24,2014-06-24,"YB","A","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","1%","Counts low due to blur and blue hue"
+"2014-06-24_YB-Aq6",2014-06-24,2014-06-24,"YB","A","6","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-06-24_YB-Aq7",2014-06-24,2014-06-24,"YB","A","7","Pp","Pollicipes_polymerus","Type 11",20,0.0875,228.571428571429,NA,"Beatriz Vaca","Finished","Cropped","Full","3%","Counts likely low due to poor resolution - everything is shades of blue."
+"2014-06-24_YB-Aq9",2014-06-24,2014-06-24,"YB","A","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","1%","Counts low due to blur and blue hue"
+"2014-06-24_YB-Aq6",2014-06-24,2014-06-24,"YB","A","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-06-24_YB-Aq7",2014-06-24,2014-06-24,"YB","A","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","3%","Counts likely low due to poor resolution - everything is shades of blue."
+"2014-06-24_YB-Aq9",2014-06-24,2014-06-24,"YB","A","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","1%","Counts low due to blur and blue hue"
+"2014-06-24_YB-Aq6",2014-06-24,2014-06-24,"YB","A","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-06-24_YB-Aq7",2014-06-24,2014-06-24,"YB","A","7","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","3%","Counts likely low due to poor resolution - everything is shades of blue."
+"2014-06-24_YB-Aq9",2014-06-24,2014-06-24,"YB","A","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","1%","Counts low due to blur and blue hue"
+"2014-06-24_YB-Aq6",2014-06-24,2014-06-24,"YB","A","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-06-24_YB-Aq7",2014-06-24,2014-06-24,"YB","A","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","3%","Counts likely low due to poor resolution - everything is shades of blue."
+"2014-06-24_YB-Aq9",2014-06-24,2014-06-24,"YB","A","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","1%","Counts low due to blur and blue hue"
+"2014-06-24_YB-ABq1",2014-06-24,2014-06-24,"YB","AB","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","17%","Mussel, limpet, littorine, and barnacle densities likely higher but glare and algal cover made counting difficult"
+"2014-06-24_YB-ABq2",2014-06-24,2014-06-24,"YB","AB","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","45%","All counts likely low due to glare and algae cover"
+"2014-06-24_YB-ABq4",2014-06-24,2014-06-24,"YB","AB","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2014-06-24_YB-ABq1",2014-06-24,2014-06-24,"YB","AB","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","17%","Mussel, limpet, littorine, and barnacle densities likely higher but glare and algal cover made counting difficult"
+"2014-06-24_YB-ABq2",2014-06-24,2014-06-24,"YB","AB","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","45%","All counts likely low due to glare and algae cover"
+"2014-06-24_YB-ABq4",2014-06-24,2014-06-24,"YB","AB","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2014-06-24_YB-ABq1",2014-06-24,2014-06-24,"YB","AB","1","Bg","Balanus_glandula","Type 1",371,0.0875,4240,NA,"Beatriz Vaca","Finished","Full","Full","17%","Mussel, limpet, littorine, and barnacle densities likely higher but glare and algal cover made counting difficult"
+"2014-06-24_YB-ABq2",2014-06-24,2014-06-24,"YB","AB","2","Bg","Balanus_glandula","Type 1",96,0.015625,6144,"c","Beatriz Vaca","Finished","Cropped","Cropped","45%","All counts likely low due to glare and algae cover"
+"2014-06-24_YB-ABq4",2014-06-24,2014-06-24,"YB","AB","4","Bg","Balanus_glandula","Type 1",1134,0.0875,12960,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2014-06-24_YB-ABq1",2014-06-24,2014-06-24,"YB","AB","1","BgD","Balanus_glandula_(dead)","Type 2",18,0.0875,205.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","17%","Mussel, limpet, littorine, and barnacle densities likely higher but glare and algal cover made counting difficult"
+"2014-06-24_YB-ABq2",2014-06-24,2014-06-24,"YB","AB","2","BgD","Balanus_glandula_(dead)","Type 2",15,0.015625,960,"c","Beatriz Vaca","Finished","Cropped","Cropped","45%","All counts likely low due to glare and algae cover"
+"2014-06-24_YB-ABq4",2014-06-24,2014-06-24,"YB","AB","4","BgD","Balanus_glandula_(dead)","Type 2",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2014-06-24_YB-ABq1",2014-06-24,2014-06-24,"YB","AB","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","17%","Mussel, limpet, littorine, and barnacle densities likely higher but glare and algal cover made counting difficult"
+"2014-06-24_YB-ABq2",2014-06-24,2014-06-24,"YB","AB","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","45%","All counts likely low due to glare and algae cover"
+"2014-06-24_YB-ABq4",2014-06-24,2014-06-24,"YB","AB","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2014-06-24_YB-ABq1",2014-06-24,2014-06-24,"YB","AB","1","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","17%","Mussel, limpet, littorine, and barnacle densities likely higher but glare and algal cover made counting difficult"
+"2014-06-24_YB-ABq2",2014-06-24,2014-06-24,"YB","AB","2","Cth","Chthamalus_dalli","Type 3",1,0.015625,64,"c","Beatriz Vaca","Finished","Cropped","Cropped","45%","All counts likely low due to glare and algae cover"
+"2014-06-24_YB-ABq4",2014-06-24,2014-06-24,"YB","AB","4","Cth","Chthamalus_dalli","Type 3",59,0.0875,674.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2014-06-24_YB-ABq1",2014-06-24,2014-06-24,"YB","AB","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","17%","Mussel, limpet, littorine, and barnacle densities likely higher but glare and algal cover made counting difficult"
+"2014-06-24_YB-ABq2",2014-06-24,2014-06-24,"YB","AB","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","45%","All counts likely low due to glare and algae cover"
+"2014-06-24_YB-ABq4",2014-06-24,2014-06-24,"YB","AB","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2014-06-24_YB-ABq1",2014-06-24,2014-06-24,"YB","AB","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","17%","Mussel, limpet, littorine, and barnacle densities likely higher but glare and algal cover made counting difficult"
+"2014-06-24_YB-ABq2",2014-06-24,2014-06-24,"YB","AB","2","Emp","Emplectonema worm","Type 23",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","45%","All counts likely low due to glare and algae cover"
+"2014-06-24_YB-ABq4",2014-06-24,2014-06-24,"YB","AB","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2014-06-24_YB-ABq1",2014-06-24,2014-06-24,"YB","AB","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","17%","Mussel, limpet, littorine, and barnacle densities likely higher but glare and algal cover made counting difficult"
+"2014-06-24_YB-ABq2",2014-06-24,2014-06-24,"YB","AB","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","45%","All counts likely low due to glare and algae cover"
+"2014-06-24_YB-ABq4",2014-06-24,2014-06-24,"YB","AB","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2014-06-24_YB-ABq1",2014-06-24,2014-06-24,"YB","AB","1","Lim","Limpets","Type 12",117,0.0875,1337.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","17%","Mussel, limpet, littorine, and barnacle densities likely higher but glare and algal cover made counting difficult"
+"2014-06-24_YB-ABq2",2014-06-24,2014-06-24,"YB","AB","2","Lim","Limpets","Type 12",156,0.0875,1782.85714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","45%","All counts likely low due to glare and algae cover"
+"2014-06-24_YB-ABq4",2014-06-24,2014-06-24,"YB","AB","4","Lim","Limpets","Type 12",403,0.0875,4605.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2014-06-24_YB-ABq1",2014-06-24,2014-06-24,"YB","AB","1","Ls","Littorina_sitkana","Type 13",61,0.0875,697.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","17%","Mussel, limpet, littorine, and barnacle densities likely higher but glare and algal cover made counting difficult"
+"2014-06-24_YB-ABq2",2014-06-24,2014-06-24,"YB","AB","2","Ls","Littorina_sitkana","Type 13",92,0.0875,1051.42857142857,NA,"Beatriz Vaca","Finished","Cropped","Cropped","45%","All counts likely low due to glare and algae cover"
+"2014-06-24_YB-ABq4",2014-06-24,2014-06-24,"YB","AB","4","Ls","Littorina_sitkana","Type 13",87,0.0875,994.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2014-06-24_YB-ABq1",2014-06-24,2014-06-24,"YB","AB","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","17%","Mussel, limpet, littorine, and barnacle densities likely higher but glare and algal cover made counting difficult"
+"2014-06-24_YB-ABq2",2014-06-24,2014-06-24,"YB","AB","2","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","45%","All counts likely low due to glare and algae cover"
+"2014-06-24_YB-ABq4",2014-06-24,2014-06-24,"YB","AB","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2014-06-24_YB-ABq1",2014-06-24,2014-06-24,"YB","AB","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","17%","Mussel, limpet, littorine, and barnacle densities likely higher but glare and algal cover made counting difficult"
+"2014-06-24_YB-ABq2",2014-06-24,2014-06-24,"YB","AB","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","45%","All counts likely low due to glare and algae cover"
+"2014-06-24_YB-ABq4",2014-06-24,2014-06-24,"YB","AB","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2014-06-24_YB-ABq1",2014-06-24,2014-06-24,"YB","AB","1","Myt","Mytilus_spp","Type 7",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","17%","Mussel, limpet, littorine, and barnacle densities likely higher but glare and algal cover made counting difficult"
+"2014-06-24_YB-ABq2",2014-06-24,2014-06-24,"YB","AB","2","Myt","Mytilus_spp","Type 7",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","45%","All counts likely low due to glare and algae cover"
+"2014-06-24_YB-ABq4",2014-06-24,2014-06-24,"YB","AB","4","Myt","Mytilus_spp","Type 7",12,0.0875,137.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2014-06-24_YB-ABq1",2014-06-24,2014-06-24,"YB","AB","1","MytD","Mytilus_spp_(dead)","Type 8",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","17%","Mussel, limpet, littorine, and barnacle densities likely higher but glare and algal cover made counting difficult"
+"2014-06-24_YB-ABq2",2014-06-24,2014-06-24,"YB","AB","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","45%","All counts likely low due to glare and algae cover"
+"2014-06-24_YB-ABq4",2014-06-24,2014-06-24,"YB","AB","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2014-06-24_YB-ABq1",2014-06-24,2014-06-24,"YB","AB","1","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","17%","Mussel, limpet, littorine, and barnacle densities likely higher but glare and algal cover made counting difficult"
+"2014-06-24_YB-ABq2",2014-06-24,2014-06-24,"YB","AB","2","Mt","Mytilus_trossulus","Type 15",71,0.015625,4544,"c","Beatriz Vaca","Finished","Cropped","Cropped","45%","All counts likely low due to glare and algae cover"
+"2014-06-24_YB-ABq4",2014-06-24,2014-06-24,"YB","AB","4","Mt","Mytilus_trossulus","Type 15",649,0.0875,7417.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2014-06-24_YB-ABq1",2014-06-24,2014-06-24,"YB","AB","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","17%","Mussel, limpet, littorine, and barnacle densities likely higher but glare and algal cover made counting difficult"
+"2014-06-24_YB-ABq2",2014-06-24,2014-06-24,"YB","AB","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","45%","All counts likely low due to glare and algae cover"
+"2014-06-24_YB-ABq4",2014-06-24,2014-06-24,"YB","AB","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2014-06-24_YB-ABq1",2014-06-24,2014-06-24,"YB","AB","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","17%","Mussel, limpet, littorine, and barnacle densities likely higher but glare and algal cover made counting difficult"
+"2014-06-24_YB-ABq2",2014-06-24,2014-06-24,"YB","AB","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","45%","All counts likely low due to glare and algae cover"
+"2014-06-24_YB-ABq4",2014-06-24,2014-06-24,"YB","AB","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2014-06-24_YB-ABq1",2014-06-24,2014-06-24,"YB","AB","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","17%","Mussel, limpet, littorine, and barnacle densities likely higher but glare and algal cover made counting difficult"
+"2014-06-24_YB-ABq2",2014-06-24,2014-06-24,"YB","AB","2","Nc","Nucella_canaliculata","Type 10",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Cropped","Cropped","45%","All counts likely low due to glare and algae cover"
+"2014-06-24_YB-ABq4",2014-06-24,2014-06-24,"YB","AB","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2014-06-24_YB-ABq1",2014-06-24,2014-06-24,"YB","AB","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","17%","Mussel, limpet, littorine, and barnacle densities likely higher but glare and algal cover made counting difficult"
+"2014-06-24_YB-ABq2",2014-06-24,2014-06-24,"YB","AB","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","45%","All counts likely low due to glare and algae cover"
+"2014-06-24_YB-ABq4",2014-06-24,2014-06-24,"YB","AB","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2014-06-24_YB-ABq1",2014-06-24,2014-06-24,"YB","AB","1","No","Nucella_ostrina","Type 9",9,0.0875,102.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","17%","Mussel, limpet, littorine, and barnacle densities likely higher but glare and algal cover made counting difficult"
+"2014-06-24_YB-ABq2",2014-06-24,2014-06-24,"YB","AB","2","No","Nucella_ostrina","Type 9",42,0.0875,480,NA,"Beatriz Vaca","Finished","Cropped","Cropped","45%","All counts likely low due to glare and algae cover"
+"2014-06-24_YB-ABq4",2014-06-24,2014-06-24,"YB","AB","4","No","Nucella_ostrina","Type 9",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2014-06-24_YB-ABq1",2014-06-24,2014-06-24,"YB","AB","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","17%","Mussel, limpet, littorine, and barnacle densities likely higher but glare and algal cover made counting difficult"
+"2014-06-24_YB-ABq2",2014-06-24,2014-06-24,"YB","AB","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","45%","All counts likely low due to glare and algae cover"
+"2014-06-24_YB-ABq4",2014-06-24,2014-06-24,"YB","AB","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2014-06-24_YB-ABq1",2014-06-24,2014-06-24,"YB","AB","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","17%","Mussel, limpet, littorine, and barnacle densities likely higher but glare and algal cover made counting difficult"
+"2014-06-24_YB-ABq2",2014-06-24,2014-06-24,"YB","AB","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","45%","All counts likely low due to glare and algae cover"
+"2014-06-24_YB-ABq4",2014-06-24,2014-06-24,"YB","AB","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2014-06-24_YB-ABq1",2014-06-24,2014-06-24,"YB","AB","1","Pp","Pollicipes_polymerus","Type 11",56,0.0875,640,NA,"Beatriz Vaca","Finished","Full","Full","17%","Mussel, limpet, littorine, and barnacle densities likely higher but glare and algal cover made counting difficult"
+"2014-06-24_YB-ABq2",2014-06-24,2014-06-24,"YB","AB","2","Pp","Pollicipes_polymerus","Type 11",49,0.0875,560,NA,"Beatriz Vaca","Finished","Cropped","Cropped","45%","All counts likely low due to glare and algae cover"
+"2014-06-24_YB-ABq4",2014-06-24,2014-06-24,"YB","AB","4","Pp","Pollicipes_polymerus","Type 11",82,0.0875,937.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2014-06-24_YB-ABq1",2014-06-24,2014-06-24,"YB","AB","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","17%","Mussel, limpet, littorine, and barnacle densities likely higher but glare and algal cover made counting difficult"
+"2014-06-24_YB-ABq2",2014-06-24,2014-06-24,"YB","AB","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","45%","All counts likely low due to glare and algae cover"
+"2014-06-24_YB-ABq4",2014-06-24,2014-06-24,"YB","AB","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2014-06-24_YB-ABq1",2014-06-24,2014-06-24,"YB","AB","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","17%","Mussel, limpet, littorine, and barnacle densities likely higher but glare and algal cover made counting difficult"
+"2014-06-24_YB-ABq2",2014-06-24,2014-06-24,"YB","AB","2","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","45%","All counts likely low due to glare and algae cover"
+"2014-06-24_YB-ABq4",2014-06-24,2014-06-24,"YB","AB","4","Sc","Semibalanus_cariosus","Type 5",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2014-06-24_YB-ABq1",2014-06-24,2014-06-24,"YB","AB","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","17%","Mussel, limpet, littorine, and barnacle densities likely higher but glare and algal cover made counting difficult"
+"2014-06-24_YB-ABq2",2014-06-24,2014-06-24,"YB","AB","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","45%","All counts likely low due to glare and algae cover"
+"2014-06-24_YB-ABq4",2014-06-24,2014-06-24,"YB","AB","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2014-06-24_YB-ACq1",2014-06-24,2014-06-24,"YB","AC","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","6%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-06-24_YB-ACq4",2014-06-24,2014-06-24,"YB","AC","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","All counts likely low due to glare"
+"2014-06-24_YB-ACq7",2014-06-24,2014-06-24,"YB","AC","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare and blur."
+"2014-06-24_YB-ACq8",2014-06-24,2014-06-24,"YB","AC","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2014-06-24_YB-ACq1",2014-06-24,2014-06-24,"YB","AC","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","6%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-06-24_YB-ACq4",2014-06-24,2014-06-24,"YB","AC","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","All counts likely low due to glare"
+"2014-06-24_YB-ACq7",2014-06-24,2014-06-24,"YB","AC","7","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare and blur."
+"2014-06-24_YB-ACq8",2014-06-24,2014-06-24,"YB","AC","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2014-06-24_YB-ACq1",2014-06-24,2014-06-24,"YB","AC","1","Bg","Balanus_glandula","Type 1",584,0.0875,6674.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","6%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-06-24_YB-ACq4",2014-06-24,2014-06-24,"YB","AC","4","Bg","Balanus_glandula","Type 1",146,0.015625,9344,"c","Beatriz Vaca","Finished","Full","Cropped","2%","All counts likely low due to glare"
+"2014-06-24_YB-ACq7",2014-06-24,2014-06-24,"YB","AC","7","Bg","Balanus_glandula","Type 1",660,0.0875,7542.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare and blur."
+"2014-06-24_YB-ACq8",2014-06-24,2014-06-24,"YB","AC","8","Bg","Balanus_glandula","Type 1",250,0.0875,2857.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2014-06-24_YB-ACq1",2014-06-24,2014-06-24,"YB","AC","1","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","6%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-06-24_YB-ACq4",2014-06-24,2014-06-24,"YB","AC","4","BgD","Balanus_glandula_(dead)","Type 2",3,0.015625,192,"c","Beatriz Vaca","Finished","Full","Cropped","2%","All counts likely low due to glare"
+"2014-06-24_YB-ACq7",2014-06-24,2014-06-24,"YB","AC","7","BgD","Balanus_glandula_(dead)","Type 2",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare and blur."
+"2014-06-24_YB-ACq8",2014-06-24,2014-06-24,"YB","AC","8","BgD","Balanus_glandula_(dead)","Type 2",50,0.0875,571.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2014-06-24_YB-ACq1",2014-06-24,2014-06-24,"YB","AC","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","6%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-06-24_YB-ACq4",2014-06-24,2014-06-24,"YB","AC","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","All counts likely low due to glare"
+"2014-06-24_YB-ACq7",2014-06-24,2014-06-24,"YB","AC","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare and blur."
+"2014-06-24_YB-ACq8",2014-06-24,2014-06-24,"YB","AC","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2014-06-24_YB-ACq1",2014-06-24,2014-06-24,"YB","AC","1","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","6%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-06-24_YB-ACq4",2014-06-24,2014-06-24,"YB","AC","4","Cth","Chthamalus_dalli","Type 3",3,0.015625,192,"c","Beatriz Vaca","Finished","Full","Cropped","2%","All counts likely low due to glare"
+"2014-06-24_YB-ACq7",2014-06-24,2014-06-24,"YB","AC","7","Cth","Chthamalus_dalli","Type 3",11,0.0875,125.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare and blur."
+"2014-06-24_YB-ACq8",2014-06-24,2014-06-24,"YB","AC","8","Cth","Chthamalus_dalli","Type 3",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2014-06-24_YB-ACq1",2014-06-24,2014-06-24,"YB","AC","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","6%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-06-24_YB-ACq4",2014-06-24,2014-06-24,"YB","AC","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","2%","All counts likely low due to glare"
+"2014-06-24_YB-ACq7",2014-06-24,2014-06-24,"YB","AC","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare and blur."
+"2014-06-24_YB-ACq8",2014-06-24,2014-06-24,"YB","AC","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2014-06-24_YB-ACq1",2014-06-24,2014-06-24,"YB","AC","1","Emp","Emplectonema worm","Type 23",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","6%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-06-24_YB-ACq4",2014-06-24,2014-06-24,"YB","AC","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","All counts likely low due to glare"
+"2014-06-24_YB-ACq7",2014-06-24,2014-06-24,"YB","AC","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare and blur."
+"2014-06-24_YB-ACq8",2014-06-24,2014-06-24,"YB","AC","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2014-06-24_YB-ACq1",2014-06-24,2014-06-24,"YB","AC","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","6%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-06-24_YB-ACq4",2014-06-24,2014-06-24,"YB","AC","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","All counts likely low due to glare"
+"2014-06-24_YB-ACq7",2014-06-24,2014-06-24,"YB","AC","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare and blur."
+"2014-06-24_YB-ACq8",2014-06-24,2014-06-24,"YB","AC","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2014-06-24_YB-ACq1",2014-06-24,2014-06-24,"YB","AC","1","Lim","Limpets","Type 12",70,0.0875,800,NA,"Beatriz Vaca","Finished","Full","Full","6%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-06-24_YB-ACq4",2014-06-24,2014-06-24,"YB","AC","4","Lim","Limpets","Type 12",97,0.0875,1108.57142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","All counts likely low due to glare"
+"2014-06-24_YB-ACq7",2014-06-24,2014-06-24,"YB","AC","7","Lim","Limpets","Type 12",118,0.0875,1348.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare and blur."
+"2014-06-24_YB-ACq8",2014-06-24,2014-06-24,"YB","AC","8","Lim","Limpets","Type 12",155,0.0875,1771.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2014-06-24_YB-ACq1",2014-06-24,2014-06-24,"YB","AC","1","Ls","Littorina_sitkana","Type 13",97,0.0875,1108.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","6%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-06-24_YB-ACq4",2014-06-24,2014-06-24,"YB","AC","4","Ls","Littorina_sitkana","Type 13",80,0.0875,914.285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","All counts likely low due to glare"
+"2014-06-24_YB-ACq7",2014-06-24,2014-06-24,"YB","AC","7","Ls","Littorina_sitkana","Type 13",197,0.0875,2251.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare and blur."
+"2014-06-24_YB-ACq8",2014-06-24,2014-06-24,"YB","AC","8","Ls","Littorina_sitkana","Type 13",232,0.0875,2651.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2014-06-24_YB-ACq1",2014-06-24,2014-06-24,"YB","AC","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","6%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-06-24_YB-ACq4",2014-06-24,2014-06-24,"YB","AC","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","All counts likely low due to glare"
+"2014-06-24_YB-ACq7",2014-06-24,2014-06-24,"YB","AC","7","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare and blur."
+"2014-06-24_YB-ACq8",2014-06-24,2014-06-24,"YB","AC","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2014-06-24_YB-ACq1",2014-06-24,2014-06-24,"YB","AC","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","6%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-06-24_YB-ACq4",2014-06-24,2014-06-24,"YB","AC","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","All counts likely low due to glare"
+"2014-06-24_YB-ACq7",2014-06-24,2014-06-24,"YB","AC","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare and blur."
+"2014-06-24_YB-ACq8",2014-06-24,2014-06-24,"YB","AC","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2014-06-24_YB-ACq1",2014-06-24,2014-06-24,"YB","AC","1","Myt","Mytilus_spp","Type 7",100,0.0875,1142.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","6%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-06-24_YB-ACq4",2014-06-24,2014-06-24,"YB","AC","4","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","All counts likely low due to glare"
+"2014-06-24_YB-ACq7",2014-06-24,2014-06-24,"YB","AC","7","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare and blur."
+"2014-06-24_YB-ACq8",2014-06-24,2014-06-24,"YB","AC","8","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2014-06-24_YB-ACq1",2014-06-24,2014-06-24,"YB","AC","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","6%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-06-24_YB-ACq4",2014-06-24,2014-06-24,"YB","AC","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","All counts likely low due to glare"
+"2014-06-24_YB-ACq7",2014-06-24,2014-06-24,"YB","AC","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare and blur."
+"2014-06-24_YB-ACq8",2014-06-24,2014-06-24,"YB","AC","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2014-06-24_YB-ACq1",2014-06-24,2014-06-24,"YB","AC","1","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","6%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-06-24_YB-ACq4",2014-06-24,2014-06-24,"YB","AC","4","Mt","Mytilus_trossulus","Type 15",11,0.0875,125.714285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","All counts likely low due to glare"
+"2014-06-24_YB-ACq7",2014-06-24,2014-06-24,"YB","AC","7","Mt","Mytilus_trossulus","Type 15",64,0.0875,731.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare and blur."
+"2014-06-24_YB-ACq8",2014-06-24,2014-06-24,"YB","AC","8","Mt","Mytilus_trossulus","Type 15",169,0.0875,1931.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2014-06-24_YB-ACq1",2014-06-24,2014-06-24,"YB","AC","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","6%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-06-24_YB-ACq4",2014-06-24,2014-06-24,"YB","AC","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","All counts likely low due to glare"
+"2014-06-24_YB-ACq7",2014-06-24,2014-06-24,"YB","AC","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare and blur."
+"2014-06-24_YB-ACq8",2014-06-24,2014-06-24,"YB","AC","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2014-06-24_YB-ACq1",2014-06-24,2014-06-24,"YB","AC","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","6%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-06-24_YB-ACq4",2014-06-24,2014-06-24,"YB","AC","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","All counts likely low due to glare"
+"2014-06-24_YB-ACq7",2014-06-24,2014-06-24,"YB","AC","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare and blur."
+"2014-06-24_YB-ACq8",2014-06-24,2014-06-24,"YB","AC","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2014-06-24_YB-ACq1",2014-06-24,2014-06-24,"YB","AC","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","6%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-06-24_YB-ACq4",2014-06-24,2014-06-24,"YB","AC","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","All counts likely low due to glare"
+"2014-06-24_YB-ACq7",2014-06-24,2014-06-24,"YB","AC","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare and blur."
+"2014-06-24_YB-ACq8",2014-06-24,2014-06-24,"YB","AC","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2014-06-24_YB-ACq1",2014-06-24,2014-06-24,"YB","AC","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","6%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-06-24_YB-ACq4",2014-06-24,2014-06-24,"YB","AC","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","All counts likely low due to glare"
+"2014-06-24_YB-ACq7",2014-06-24,2014-06-24,"YB","AC","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare and blur."
+"2014-06-24_YB-ACq8",2014-06-24,2014-06-24,"YB","AC","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2014-06-24_YB-ACq1",2014-06-24,2014-06-24,"YB","AC","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","6%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-06-24_YB-ACq4",2014-06-24,2014-06-24,"YB","AC","4","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","All counts likely low due to glare"
+"2014-06-24_YB-ACq7",2014-06-24,2014-06-24,"YB","AC","7","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare and blur."
+"2014-06-24_YB-ACq8",2014-06-24,2014-06-24,"YB","AC","8","No","Nucella_ostrina","Type 9",9,0.0875,102.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2014-06-24_YB-ACq1",2014-06-24,2014-06-24,"YB","AC","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","6%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-06-24_YB-ACq4",2014-06-24,2014-06-24,"YB","AC","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","All counts likely low due to glare"
+"2014-06-24_YB-ACq7",2014-06-24,2014-06-24,"YB","AC","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare and blur."
+"2014-06-24_YB-ACq8",2014-06-24,2014-06-24,"YB","AC","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2014-06-24_YB-ACq1",2014-06-24,2014-06-24,"YB","AC","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","6%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-06-24_YB-ACq4",2014-06-24,2014-06-24,"YB","AC","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","All counts likely low due to glare"
+"2014-06-24_YB-ACq7",2014-06-24,2014-06-24,"YB","AC","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare and blur."
+"2014-06-24_YB-ACq8",2014-06-24,2014-06-24,"YB","AC","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2014-06-24_YB-ACq1",2014-06-24,2014-06-24,"YB","AC","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","6%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-06-24_YB-ACq4",2014-06-24,2014-06-24,"YB","AC","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","All counts likely low due to glare"
+"2014-06-24_YB-ACq7",2014-06-24,2014-06-24,"YB","AC","7","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare and blur."
+"2014-06-24_YB-ACq8",2014-06-24,2014-06-24,"YB","AC","8","Pp","Pollicipes_polymerus","Type 11",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2014-06-24_YB-ACq1",2014-06-24,2014-06-24,"YB","AC","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","6%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-06-24_YB-ACq4",2014-06-24,2014-06-24,"YB","AC","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","All counts likely low due to glare"
+"2014-06-24_YB-ACq7",2014-06-24,2014-06-24,"YB","AC","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare and blur."
+"2014-06-24_YB-ACq8",2014-06-24,2014-06-24,"YB","AC","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2014-06-24_YB-ACq1",2014-06-24,2014-06-24,"YB","AC","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","6%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-06-24_YB-ACq4",2014-06-24,2014-06-24,"YB","AC","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","All counts likely low due to glare"
+"2014-06-24_YB-ACq7",2014-06-24,2014-06-24,"YB","AC","7","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare and blur."
+"2014-06-24_YB-ACq8",2014-06-24,2014-06-24,"YB","AC","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2014-06-24_YB-ACq1",2014-06-24,2014-06-24,"YB","AC","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","6%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-06-24_YB-ACq4",2014-06-24,2014-06-24,"YB","AC","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","All counts likely low due to glare"
+"2014-06-24_YB-ACq7",2014-06-24,2014-06-24,"YB","AC","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to glare and blur."
+"2014-06-24_YB-ACq8",2014-06-24,2014-06-24,"YB","AC","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2014-06-24_YB-ADq1",2014-06-24,2014-06-24,"YB","AD","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","20%",""
+"2014-06-24_YB-ADq5",2014-06-24,2014-06-24,"YB","AD","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to glare and algae cover."
+"2014-06-24_YB-ADq8",2014-06-24,2014-06-24,"YB","AD","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-06-24_YB-ADq1",2014-06-24,2014-06-24,"YB","AD","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","20%",""
+"2014-06-24_YB-ADq5",2014-06-24,2014-06-24,"YB","AD","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to glare and algae cover."
+"2014-06-24_YB-ADq8",2014-06-24,2014-06-24,"YB","AD","8","Ae","Anemones","Type 14",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-06-24_YB-ADq1",2014-06-24,2014-06-24,"YB","AD","1","Bg","Balanus_glandula","Type 1",725,0.0875,8285.71428571429,NA,"Beatriz Vaca","Finished","Cropped","Full","20%",""
+"2014-06-24_YB-ADq5",2014-06-24,2014-06-24,"YB","AD","5","Bg","Balanus_glandula","Type 1",524,0.0875,5988.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to glare and algae cover."
+"2014-06-24_YB-ADq8",2014-06-24,2014-06-24,"YB","AD","8","Bg","Balanus_glandula","Type 1",1446,0.0875,16525.7142857143,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-06-24_YB-ADq1",2014-06-24,2014-06-24,"YB","AD","1","BgD","Balanus_glandula_(dead)","Type 2",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Cropped","Full","20%",""
+"2014-06-24_YB-ADq5",2014-06-24,2014-06-24,"YB","AD","5","BgD","Balanus_glandula_(dead)","Type 2",30,0.0875,342.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to glare and algae cover."
+"2014-06-24_YB-ADq8",2014-06-24,2014-06-24,"YB","AD","8","BgD","Balanus_glandula_(dead)","Type 2",114,0.0875,1302.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-06-24_YB-ADq1",2014-06-24,2014-06-24,"YB","AD","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","20%",""
+"2014-06-24_YB-ADq5",2014-06-24,2014-06-24,"YB","AD","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to glare and algae cover."
+"2014-06-24_YB-ADq8",2014-06-24,2014-06-24,"YB","AD","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-06-24_YB-ADq1",2014-06-24,2014-06-24,"YB","AD","1","Cth","Chthamalus_dalli","Type 3",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Cropped","Full","20%",""
+"2014-06-24_YB-ADq5",2014-06-24,2014-06-24,"YB","AD","5","Cth","Chthamalus_dalli","Type 3",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to glare and algae cover."
+"2014-06-24_YB-ADq8",2014-06-24,2014-06-24,"YB","AD","8","Cth","Chthamalus_dalli","Type 3",23,0.0875,262.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-06-24_YB-ADq1",2014-06-24,2014-06-24,"YB","AD","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","20%",""
+"2014-06-24_YB-ADq5",2014-06-24,2014-06-24,"YB","AD","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to glare and algae cover."
+"2014-06-24_YB-ADq8",2014-06-24,2014-06-24,"YB","AD","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-06-24_YB-ADq1",2014-06-24,2014-06-24,"YB","AD","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","20%",""
+"2014-06-24_YB-ADq5",2014-06-24,2014-06-24,"YB","AD","5","Emp","Emplectonema worm","Type 23",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to glare and algae cover."
+"2014-06-24_YB-ADq8",2014-06-24,2014-06-24,"YB","AD","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-06-24_YB-ADq1",2014-06-24,2014-06-24,"YB","AD","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","20%",""
+"2014-06-24_YB-ADq5",2014-06-24,2014-06-24,"YB","AD","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to glare and algae cover."
+"2014-06-24_YB-ADq8",2014-06-24,2014-06-24,"YB","AD","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-06-24_YB-ADq1",2014-06-24,2014-06-24,"YB","AD","1","Lim","Limpets","Type 12",60,0.0875,685.714285714286,NA,"Beatriz Vaca","Finished","Cropped","Full","20%",""
+"2014-06-24_YB-ADq5",2014-06-24,2014-06-24,"YB","AD","5","Lim","Limpets","Type 12",123,0.0875,1405.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to glare and algae cover."
+"2014-06-24_YB-ADq8",2014-06-24,2014-06-24,"YB","AD","8","Lim","Limpets","Type 12",290,0.0875,3314.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-06-24_YB-ADq1",2014-06-24,2014-06-24,"YB","AD","1","Ls","Littorina_sitkana","Type 13",284,0.0875,3245.71428571429,NA,"Beatriz Vaca","Finished","Cropped","Full","20%",""
+"2014-06-24_YB-ADq5",2014-06-24,2014-06-24,"YB","AD","5","Ls","Littorina_sitkana","Type 13",280,0.0875,3200,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to glare and algae cover."
+"2014-06-24_YB-ADq8",2014-06-24,2014-06-24,"YB","AD","8","Ls","Littorina_sitkana","Type 13",86,0.0875,982.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-06-24_YB-ADq1",2014-06-24,2014-06-24,"YB","AD","1","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","20%",""
+"2014-06-24_YB-ADq5",2014-06-24,2014-06-24,"YB","AD","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to glare and algae cover."
+"2014-06-24_YB-ADq8",2014-06-24,2014-06-24,"YB","AD","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-06-24_YB-ADq1",2014-06-24,2014-06-24,"YB","AD","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","20%",""
+"2014-06-24_YB-ADq5",2014-06-24,2014-06-24,"YB","AD","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to glare and algae cover."
+"2014-06-24_YB-ADq8",2014-06-24,2014-06-24,"YB","AD","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-06-24_YB-ADq1",2014-06-24,2014-06-24,"YB","AD","1","Myt","Mytilus_spp","Type 7",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","20%",""
+"2014-06-24_YB-ADq5",2014-06-24,2014-06-24,"YB","AD","5","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to glare and algae cover."
+"2014-06-24_YB-ADq8",2014-06-24,2014-06-24,"YB","AD","8","Myt","Mytilus_spp","Type 7",13,0.0875,148.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-06-24_YB-ADq1",2014-06-24,2014-06-24,"YB","AD","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","20%",""
+"2014-06-24_YB-ADq5",2014-06-24,2014-06-24,"YB","AD","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to glare and algae cover."
+"2014-06-24_YB-ADq8",2014-06-24,2014-06-24,"YB","AD","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-06-24_YB-ADq1",2014-06-24,2014-06-24,"YB","AD","1","Mt","Mytilus_trossulus","Type 15",195,0.015625,12480,"c","Beatriz Vaca","Finished","Cropped","Full","20%",""
+"2014-06-24_YB-ADq5",2014-06-24,2014-06-24,"YB","AD","5","Mt","Mytilus_trossulus","Type 15",387,0.0875,4422.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to glare and algae cover."
+"2014-06-24_YB-ADq8",2014-06-24,2014-06-24,"YB","AD","8","Mt","Mytilus_trossulus","Type 15",156,0.0875,1782.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-06-24_YB-ADq1",2014-06-24,2014-06-24,"YB","AD","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","20%",""
+"2014-06-24_YB-ADq5",2014-06-24,2014-06-24,"YB","AD","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to glare and algae cover."
+"2014-06-24_YB-ADq8",2014-06-24,2014-06-24,"YB","AD","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-06-24_YB-ADq1",2014-06-24,2014-06-24,"YB","AD","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","20%",""
+"2014-06-24_YB-ADq5",2014-06-24,2014-06-24,"YB","AD","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to glare and algae cover."
+"2014-06-24_YB-ADq8",2014-06-24,2014-06-24,"YB","AD","8","Ner","Nereis_worm","Type 24",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-06-24_YB-ADq1",2014-06-24,2014-06-24,"YB","AD","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","20%",""
+"2014-06-24_YB-ADq5",2014-06-24,2014-06-24,"YB","AD","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to glare and algae cover."
+"2014-06-24_YB-ADq8",2014-06-24,2014-06-24,"YB","AD","8","Nc","Nucella_canaliculata","Type 10",27,0.0875,308.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-06-24_YB-ADq1",2014-06-24,2014-06-24,"YB","AD","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","20%",""
+"2014-06-24_YB-ADq5",2014-06-24,2014-06-24,"YB","AD","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to glare and algae cover."
+"2014-06-24_YB-ADq8",2014-06-24,2014-06-24,"YB","AD","8","Negg","Nucella_eggs","Type 26",23,0.0875,262.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-06-24_YB-ADq1",2014-06-24,2014-06-24,"YB","AD","1","No","Nucella_ostrina","Type 9",14,0.0875,160,NA,"Beatriz Vaca","Finished","Cropped","Full","20%",""
+"2014-06-24_YB-ADq5",2014-06-24,2014-06-24,"YB","AD","5","No","Nucella_ostrina","Type 9",12,0.0875,137.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to glare and algae cover."
+"2014-06-24_YB-ADq8",2014-06-24,2014-06-24,"YB","AD","8","No","Nucella_ostrina","Type 9",44,0.0875,502.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-06-24_YB-ADq1",2014-06-24,2014-06-24,"YB","AD","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","20%",""
+"2014-06-24_YB-ADq5",2014-06-24,2014-06-24,"YB","AD","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to glare and algae cover."
+"2014-06-24_YB-ADq8",2014-06-24,2014-06-24,"YB","AD","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-06-24_YB-ADq1",2014-06-24,2014-06-24,"YB","AD","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","20%",""
+"2014-06-24_YB-ADq5",2014-06-24,2014-06-24,"YB","AD","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to glare and algae cover."
+"2014-06-24_YB-ADq8",2014-06-24,2014-06-24,"YB","AD","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-06-24_YB-ADq1",2014-06-24,2014-06-24,"YB","AD","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","20%",""
+"2014-06-24_YB-ADq5",2014-06-24,2014-06-24,"YB","AD","5","Pp","Pollicipes_polymerus","Type 11",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to glare and algae cover."
+"2014-06-24_YB-ADq8",2014-06-24,2014-06-24,"YB","AD","8","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-06-24_YB-ADq1",2014-06-24,2014-06-24,"YB","AD","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","20%",""
+"2014-06-24_YB-ADq5",2014-06-24,2014-06-24,"YB","AD","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to glare and algae cover."
+"2014-06-24_YB-ADq8",2014-06-24,2014-06-24,"YB","AD","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-06-24_YB-ADq1",2014-06-24,2014-06-24,"YB","AD","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","20%",""
+"2014-06-24_YB-ADq5",2014-06-24,2014-06-24,"YB","AD","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to glare and algae cover."
+"2014-06-24_YB-ADq8",2014-06-24,2014-06-24,"YB","AD","8","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-06-24_YB-ADq1",2014-06-24,2014-06-24,"YB","AD","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","20%",""
+"2014-06-24_YB-ADq5",2014-06-24,2014-06-24,"YB","AD","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to glare and algae cover."
+"2014-06-24_YB-ADq8",2014-06-24,2014-06-24,"YB","AD","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-06-24_YB-AEq1",2014-06-24,2014-06-24,"YB","AE","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-06-24_YB-AEq4",2014-06-24,2014-06-24,"YB","AE","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-06-24_YB-AEq8",2014-06-24,2014-06-24,"YB","AE","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-AEq1",2014-06-24,2014-06-24,"YB","AE","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-06-24_YB-AEq4",2014-06-24,2014-06-24,"YB","AE","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-06-24_YB-AEq8",2014-06-24,2014-06-24,"YB","AE","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-AEq1",2014-06-24,2014-06-24,"YB","AE","1","Bg","Balanus_glandula","Type 1",415,0.015625,26560,"c","Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-06-24_YB-AEq4",2014-06-24,2014-06-24,"YB","AE","4","Bg","Balanus_glandula","Type 1",392,0.015625,25088,"c","Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-06-24_YB-AEq8",2014-06-24,2014-06-24,"YB","AE","8","Bg","Balanus_glandula","Type 1",876,0.0875,10011.4285714286,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-AEq1",2014-06-24,2014-06-24,"YB","AE","1","BgD","Balanus_glandula_(dead)","Type 2",7,0.015625,448,"c","Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-06-24_YB-AEq4",2014-06-24,2014-06-24,"YB","AE","4","BgD","Balanus_glandula_(dead)","Type 2",1,0.015625,64,"c","Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-06-24_YB-AEq8",2014-06-24,2014-06-24,"YB","AE","8","BgD","Balanus_glandula_(dead)","Type 2",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-AEq1",2014-06-24,2014-06-24,"YB","AE","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-06-24_YB-AEq4",2014-06-24,2014-06-24,"YB","AE","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-06-24_YB-AEq8",2014-06-24,2014-06-24,"YB","AE","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-AEq1",2014-06-24,2014-06-24,"YB","AE","1","Cth","Chthamalus_dalli","Type 3",12,0.015625,768,"c","Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-06-24_YB-AEq4",2014-06-24,2014-06-24,"YB","AE","4","Cth","Chthamalus_dalli","Type 3",3,0.015625,192,"c","Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-06-24_YB-AEq8",2014-06-24,2014-06-24,"YB","AE","8","Cth","Chthamalus_dalli","Type 3",55,0.0875,628.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-AEq1",2014-06-24,2014-06-24,"YB","AE","1","CthD","Chthamalus_dalli (dead)","Type 4",4,0.015625,256,"c","Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-06-24_YB-AEq4",2014-06-24,2014-06-24,"YB","AE","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-06-24_YB-AEq8",2014-06-24,2014-06-24,"YB","AE","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-AEq1",2014-06-24,2014-06-24,"YB","AE","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-06-24_YB-AEq4",2014-06-24,2014-06-24,"YB","AE","4","Emp","Emplectonema worm","Type 23",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-06-24_YB-AEq8",2014-06-24,2014-06-24,"YB","AE","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-AEq1",2014-06-24,2014-06-24,"YB","AE","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-06-24_YB-AEq4",2014-06-24,2014-06-24,"YB","AE","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-06-24_YB-AEq8",2014-06-24,2014-06-24,"YB","AE","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-AEq1",2014-06-24,2014-06-24,"YB","AE","1","Lim","Limpets","Type 12",96,0.0875,1097.14285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-06-24_YB-AEq4",2014-06-24,2014-06-24,"YB","AE","4","Lim","Limpets","Type 12",233,0.0875,2662.85714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-06-24_YB-AEq8",2014-06-24,2014-06-24,"YB","AE","8","Lim","Limpets","Type 12",382,0.0875,4365.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-AEq1",2014-06-24,2014-06-24,"YB","AE","1","Ls","Littorina_sitkana","Type 13",743,0.0875,8491.42857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-06-24_YB-AEq4",2014-06-24,2014-06-24,"YB","AE","4","Ls","Littorina_sitkana","Type 13",378,0.0875,4320,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-06-24_YB-AEq8",2014-06-24,2014-06-24,"YB","AE","8","Ls","Littorina_sitkana","Type 13",147,0.0875,1680,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-AEq1",2014-06-24,2014-06-24,"YB","AE","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-06-24_YB-AEq4",2014-06-24,2014-06-24,"YB","AE","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-06-24_YB-AEq8",2014-06-24,2014-06-24,"YB","AE","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-AEq1",2014-06-24,2014-06-24,"YB","AE","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-06-24_YB-AEq4",2014-06-24,2014-06-24,"YB","AE","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-06-24_YB-AEq8",2014-06-24,2014-06-24,"YB","AE","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-AEq1",2014-06-24,2014-06-24,"YB","AE","1","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-06-24_YB-AEq4",2014-06-24,2014-06-24,"YB","AE","4","Myt","Mytilus_spp","Type 7",19,0.0875,217.142857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-06-24_YB-AEq8",2014-06-24,2014-06-24,"YB","AE","8","Myt","Mytilus_spp","Type 7",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-AEq1",2014-06-24,2014-06-24,"YB","AE","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-06-24_YB-AEq4",2014-06-24,2014-06-24,"YB","AE","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-06-24_YB-AEq8",2014-06-24,2014-06-24,"YB","AE","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-AEq1",2014-06-24,2014-06-24,"YB","AE","1","Mt","Mytilus_trossulus","Type 15",248,0.0875,2834.28571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-06-24_YB-AEq4",2014-06-24,2014-06-24,"YB","AE","4","Mt","Mytilus_trossulus","Type 15",236,0.0875,2697.14285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-06-24_YB-AEq8",2014-06-24,2014-06-24,"YB","AE","8","Mt","Mytilus_trossulus","Type 15",69,0.0875,788.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-AEq1",2014-06-24,2014-06-24,"YB","AE","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-06-24_YB-AEq4",2014-06-24,2014-06-24,"YB","AE","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-06-24_YB-AEq8",2014-06-24,2014-06-24,"YB","AE","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-AEq1",2014-06-24,2014-06-24,"YB","AE","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-06-24_YB-AEq4",2014-06-24,2014-06-24,"YB","AE","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-06-24_YB-AEq8",2014-06-24,2014-06-24,"YB","AE","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-AEq1",2014-06-24,2014-06-24,"YB","AE","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-06-24_YB-AEq4",2014-06-24,2014-06-24,"YB","AE","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-06-24_YB-AEq8",2014-06-24,2014-06-24,"YB","AE","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-AEq1",2014-06-24,2014-06-24,"YB","AE","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-06-24_YB-AEq4",2014-06-24,2014-06-24,"YB","AE","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-06-24_YB-AEq8",2014-06-24,2014-06-24,"YB","AE","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-AEq1",2014-06-24,2014-06-24,"YB","AE","1","No","Nucella_ostrina","Type 9",27,0.0875,308.571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-06-24_YB-AEq4",2014-06-24,2014-06-24,"YB","AE","4","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-06-24_YB-AEq8",2014-06-24,2014-06-24,"YB","AE","8","No","Nucella_ostrina","Type 9",24,0.0875,274.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-AEq1",2014-06-24,2014-06-24,"YB","AE","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-06-24_YB-AEq4",2014-06-24,2014-06-24,"YB","AE","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-06-24_YB-AEq8",2014-06-24,2014-06-24,"YB","AE","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-AEq1",2014-06-24,2014-06-24,"YB","AE","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-06-24_YB-AEq4",2014-06-24,2014-06-24,"YB","AE","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-06-24_YB-AEq8",2014-06-24,2014-06-24,"YB","AE","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-AEq1",2014-06-24,2014-06-24,"YB","AE","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-06-24_YB-AEq4",2014-06-24,2014-06-24,"YB","AE","4","Pp","Pollicipes_polymerus","Type 11",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-06-24_YB-AEq8",2014-06-24,2014-06-24,"YB","AE","8","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-AEq1",2014-06-24,2014-06-24,"YB","AE","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-06-24_YB-AEq4",2014-06-24,2014-06-24,"YB","AE","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-06-24_YB-AEq8",2014-06-24,2014-06-24,"YB","AE","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-AEq1",2014-06-24,2014-06-24,"YB","AE","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-06-24_YB-AEq4",2014-06-24,2014-06-24,"YB","AE","4","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-06-24_YB-AEq8",2014-06-24,2014-06-24,"YB","AE","8","Sc","Semibalanus_cariosus","Type 5",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-AEq1",2014-06-24,2014-06-24,"YB","AE","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-06-24_YB-AEq4",2014-06-24,2014-06-24,"YB","AE","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-06-24_YB-AEq8",2014-06-24,2014-06-24,"YB","AE","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-AFq5",2014-06-24,2014-06-24,"YB","AF","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-06-24_YB-AFq8",2014-06-24,2014-06-24,"YB","AF","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-06-24_YB-AFq9",2014-06-24,2014-06-24,"YB","AF","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","4%","Counts likely low due to blur and glare"
+"2014-06-24_YB-AFq5",2014-06-24,2014-06-24,"YB","AF","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-06-24_YB-AFq8",2014-06-24,2014-06-24,"YB","AF","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-06-24_YB-AFq9",2014-06-24,2014-06-24,"YB","AF","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","4%","Counts likely low due to blur and glare"
+"2014-06-24_YB-AFq5",2014-06-24,2014-06-24,"YB","AF","5","Bg","Balanus_glandula","Type 1",763,0.015625,48832,"c","Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-06-24_YB-AFq8",2014-06-24,2014-06-24,"YB","AF","8","Bg","Balanus_glandula","Type 1",1639,0.0875,18731.4285714286,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-06-24_YB-AFq9",2014-06-24,2014-06-24,"YB","AF","9","Bg","Balanus_glandula","Type 1",1482,0.0875,16937.1428571429,NA,"Stephanie Merhoff","Finished","Full","Full","4%","Counts likely low due to blur and glare"
+"2014-06-24_YB-AFq5",2014-06-24,2014-06-24,"YB","AF","5","BgD","Balanus_glandula_(dead)","Type 2",6,0.015625,384,"c","Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-06-24_YB-AFq8",2014-06-24,2014-06-24,"YB","AF","8","BgD","Balanus_glandula_(dead)","Type 2",10,0.0875,114.285714285714,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-06-24_YB-AFq9",2014-06-24,2014-06-24,"YB","AF","9","BgD","Balanus_glandula_(dead)","Type 2",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","4%","Counts likely low due to blur and glare"
+"2014-06-24_YB-AFq5",2014-06-24,2014-06-24,"YB","AF","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-06-24_YB-AFq8",2014-06-24,2014-06-24,"YB","AF","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-06-24_YB-AFq9",2014-06-24,2014-06-24,"YB","AF","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","4%","Counts likely low due to blur and glare"
+"2014-06-24_YB-AFq5",2014-06-24,2014-06-24,"YB","AF","5","Cth","Chthamalus_dalli","Type 3",6,0.015625,384,"c","Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-06-24_YB-AFq8",2014-06-24,2014-06-24,"YB","AF","8","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-06-24_YB-AFq9",2014-06-24,2014-06-24,"YB","AF","9","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","4%","Counts likely low due to blur and glare"
+"2014-06-24_YB-AFq5",2014-06-24,2014-06-24,"YB","AF","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-06-24_YB-AFq8",2014-06-24,2014-06-24,"YB","AF","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-06-24_YB-AFq9",2014-06-24,2014-06-24,"YB","AF","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","4%","Counts likely low due to blur and glare"
+"2014-06-24_YB-AFq5",2014-06-24,2014-06-24,"YB","AF","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-06-24_YB-AFq8",2014-06-24,2014-06-24,"YB","AF","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-06-24_YB-AFq9",2014-06-24,2014-06-24,"YB","AF","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","4%","Counts likely low due to blur and glare"
+"2014-06-24_YB-AFq5",2014-06-24,2014-06-24,"YB","AF","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-06-24_YB-AFq8",2014-06-24,2014-06-24,"YB","AF","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-06-24_YB-AFq9",2014-06-24,2014-06-24,"YB","AF","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","4%","Counts likely low due to blur and glare"
+"2014-06-24_YB-AFq5",2014-06-24,2014-06-24,"YB","AF","5","Lim","Limpets","Type 12",228,0.0875,2605.71428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-06-24_YB-AFq8",2014-06-24,2014-06-24,"YB","AF","8","Lim","Limpets","Type 12",19,0.0875,217.142857142857,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-06-24_YB-AFq9",2014-06-24,2014-06-24,"YB","AF","9","Lim","Limpets","Type 12",152,0.0875,1737.14285714286,NA,"Stephanie Merhoff","Finished","Full","Full","4%","Counts likely low due to blur and glare"
+"2014-06-24_YB-AFq5",2014-06-24,2014-06-24,"YB","AF","5","Ls","Littorina_sitkana","Type 13",809,0.0875,9245.71428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-06-24_YB-AFq8",2014-06-24,2014-06-24,"YB","AF","8","Ls","Littorina_sitkana","Type 13",315,0.0875,3600,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-06-24_YB-AFq9",2014-06-24,2014-06-24,"YB","AF","9","Ls","Littorina_sitkana","Type 13",274,0.0875,3131.42857142857,NA,"Stephanie Merhoff","Finished","Full","Full","4%","Counts likely low due to blur and glare"
+"2014-06-24_YB-AFq5",2014-06-24,2014-06-24,"YB","AF","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-06-24_YB-AFq8",2014-06-24,2014-06-24,"YB","AF","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-06-24_YB-AFq9",2014-06-24,2014-06-24,"YB","AF","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","4%","Counts likely low due to blur and glare"
+"2014-06-24_YB-AFq5",2014-06-24,2014-06-24,"YB","AF","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-06-24_YB-AFq8",2014-06-24,2014-06-24,"YB","AF","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-06-24_YB-AFq9",2014-06-24,2014-06-24,"YB","AF","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","4%","Counts likely low due to blur and glare"
+"2014-06-24_YB-AFq5",2014-06-24,2014-06-24,"YB","AF","5","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-06-24_YB-AFq8",2014-06-24,2014-06-24,"YB","AF","8","Myt","Mytilus_spp","Type 7",47,0.0875,537.142857142857,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-06-24_YB-AFq9",2014-06-24,2014-06-24,"YB","AF","9","Myt","Mytilus_spp","Type 7",88,0.0875,1005.71428571429,NA,"Stephanie Merhoff","Finished","Full","Full","4%","Counts likely low due to blur and glare"
+"2014-06-24_YB-AFq5",2014-06-24,2014-06-24,"YB","AF","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-06-24_YB-AFq8",2014-06-24,2014-06-24,"YB","AF","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-06-24_YB-AFq9",2014-06-24,2014-06-24,"YB","AF","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","4%","Counts likely low due to blur and glare"
+"2014-06-24_YB-AFq5",2014-06-24,2014-06-24,"YB","AF","5","Mt","Mytilus_trossulus","Type 15",221,0.0875,2525.71428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-06-24_YB-AFq8",2014-06-24,2014-06-24,"YB","AF","8","Mt","Mytilus_trossulus","Type 15",12,0.0875,137.142857142857,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-06-24_YB-AFq9",2014-06-24,2014-06-24,"YB","AF","9","Mt","Mytilus_trossulus","Type 15",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","4%","Counts likely low due to blur and glare"
+"2014-06-24_YB-AFq5",2014-06-24,2014-06-24,"YB","AF","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-06-24_YB-AFq8",2014-06-24,2014-06-24,"YB","AF","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-06-24_YB-AFq9",2014-06-24,2014-06-24,"YB","AF","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","4%","Counts likely low due to blur and glare"
+"2014-06-24_YB-AFq5",2014-06-24,2014-06-24,"YB","AF","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-06-24_YB-AFq8",2014-06-24,2014-06-24,"YB","AF","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-06-24_YB-AFq9",2014-06-24,2014-06-24,"YB","AF","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","4%","Counts likely low due to blur and glare"
+"2014-06-24_YB-AFq5",2014-06-24,2014-06-24,"YB","AF","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-06-24_YB-AFq8",2014-06-24,2014-06-24,"YB","AF","8","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-06-24_YB-AFq9",2014-06-24,2014-06-24,"YB","AF","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","4%","Counts likely low due to blur and glare"
+"2014-06-24_YB-AFq5",2014-06-24,2014-06-24,"YB","AF","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-06-24_YB-AFq8",2014-06-24,2014-06-24,"YB","AF","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-06-24_YB-AFq9",2014-06-24,2014-06-24,"YB","AF","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","4%","Counts likely low due to blur and glare"
+"2014-06-24_YB-AFq5",2014-06-24,2014-06-24,"YB","AF","5","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-06-24_YB-AFq8",2014-06-24,2014-06-24,"YB","AF","8","No","Nucella_ostrina","Type 9",16,0.0875,182.857142857143,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-06-24_YB-AFq9",2014-06-24,2014-06-24,"YB","AF","9","No","Nucella_ostrina","Type 9",25,0.0875,285.714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","4%","Counts likely low due to blur and glare"
+"2014-06-24_YB-AFq5",2014-06-24,2014-06-24,"YB","AF","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-06-24_YB-AFq8",2014-06-24,2014-06-24,"YB","AF","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-06-24_YB-AFq9",2014-06-24,2014-06-24,"YB","AF","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","4%","Counts likely low due to blur and glare"
+"2014-06-24_YB-AFq5",2014-06-24,2014-06-24,"YB","AF","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-06-24_YB-AFq8",2014-06-24,2014-06-24,"YB","AF","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-06-24_YB-AFq9",2014-06-24,2014-06-24,"YB","AF","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","4%","Counts likely low due to blur and glare"
+"2014-06-24_YB-AFq5",2014-06-24,2014-06-24,"YB","AF","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-06-24_YB-AFq8",2014-06-24,2014-06-24,"YB","AF","8","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-06-24_YB-AFq9",2014-06-24,2014-06-24,"YB","AF","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","4%","Counts likely low due to blur and glare"
+"2014-06-24_YB-AFq5",2014-06-24,2014-06-24,"YB","AF","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-06-24_YB-AFq8",2014-06-24,2014-06-24,"YB","AF","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-06-24_YB-AFq9",2014-06-24,2014-06-24,"YB","AF","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","4%","Counts likely low due to blur and glare"
+"2014-06-24_YB-AFq5",2014-06-24,2014-06-24,"YB","AF","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-06-24_YB-AFq8",2014-06-24,2014-06-24,"YB","AF","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-06-24_YB-AFq9",2014-06-24,2014-06-24,"YB","AF","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","4%","Counts likely low due to blur and glare"
+"2014-06-24_YB-AFq5",2014-06-24,2014-06-24,"YB","AF","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2014-06-24_YB-AFq8",2014-06-24,2014-06-24,"YB","AF","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2014-06-24_YB-AFq9",2014-06-24,2014-06-24,"YB","AF","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","4%","Counts likely low due to blur and glare"
+"2014-06-24_YB-AGq1",2014-06-24,2014-06-24,"YB","AG","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Tons of littorines"
+"2014-06-24_YB-AGq2",2014-06-24,2014-06-24,"YB","AG","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","15%","Tons of littorines, glare made limpet and barnacle counting difficult"
+"2014-06-24_YB-AGq3",2014-06-24,2014-06-24,"YB","AG","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","3%",""
+"2014-06-24_YB-AGq7",2014-06-24,2014-06-24,"YB","AG","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts likely low due to blur and glare"
+"2014-06-24_YB-AGq9",2014-06-24,2014-06-24,"YB","AG","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-06-24_YB-AGq1",2014-06-24,2014-06-24,"YB","AG","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Tons of littorines"
+"2014-06-24_YB-AGq2",2014-06-24,2014-06-24,"YB","AG","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","15%","Tons of littorines, glare made limpet and barnacle counting difficult"
+"2014-06-24_YB-AGq3",2014-06-24,2014-06-24,"YB","AG","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","3%",""
+"2014-06-24_YB-AGq7",2014-06-24,2014-06-24,"YB","AG","7","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts likely low due to blur and glare"
+"2014-06-24_YB-AGq9",2014-06-24,2014-06-24,"YB","AG","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-06-24_YB-AGq1",2014-06-24,2014-06-24,"YB","AG","1","Bg","Balanus_glandula","Type 1",156,0.015625,9984,"c","Isaac Shepard","Finished","Full","Cropped","0%","Tons of littorines"
+"2014-06-24_YB-AGq2",2014-06-24,2014-06-24,"YB","AG","2","Bg","Balanus_glandula","Type 1",361,0.015625,23104,"c","Isaac Shepard","Finished","Full","Cropped","15%","Tons of littorines, glare made limpet and barnacle counting difficult"
+"2014-06-24_YB-AGq3",2014-06-24,2014-06-24,"YB","AG","3","Bg","Balanus_glandula","Type 1",343,0.015625,21952,"c","Isaac Shepard","Finished","Full","Cropped","3%",""
+"2014-06-24_YB-AGq7",2014-06-24,2014-06-24,"YB","AG","7","Bg","Balanus_glandula","Type 1",462,0.015625,29568,"c","Stephanie Merhoff","Finished","Full","Cropped","20%","Counts likely low due to blur and glare"
+"2014-06-24_YB-AGq9",2014-06-24,2014-06-24,"YB","AG","9","Bg","Balanus_glandula","Type 1",353,0.015625,22592,"c","Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-06-24_YB-AGq1",2014-06-24,2014-06-24,"YB","AG","1","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","0%","Tons of littorines"
+"2014-06-24_YB-AGq2",2014-06-24,2014-06-24,"YB","AG","2","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","15%","Tons of littorines, glare made limpet and barnacle counting difficult"
+"2014-06-24_YB-AGq3",2014-06-24,2014-06-24,"YB","AG","3","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","3%",""
+"2014-06-24_YB-AGq7",2014-06-24,2014-06-24,"YB","AG","7","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","20%","Counts likely low due to blur and glare"
+"2014-06-24_YB-AGq9",2014-06-24,2014-06-24,"YB","AG","9","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-06-24_YB-AGq1",2014-06-24,2014-06-24,"YB","AG","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Tons of littorines"
+"2014-06-24_YB-AGq2",2014-06-24,2014-06-24,"YB","AG","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","15%","Tons of littorines, glare made limpet and barnacle counting difficult"
+"2014-06-24_YB-AGq3",2014-06-24,2014-06-24,"YB","AG","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","3%",""
+"2014-06-24_YB-AGq7",2014-06-24,2014-06-24,"YB","AG","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts likely low due to blur and glare"
+"2014-06-24_YB-AGq9",2014-06-24,2014-06-24,"YB","AG","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-06-24_YB-AGq1",2014-06-24,2014-06-24,"YB","AG","1","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","0%","Tons of littorines"
+"2014-06-24_YB-AGq2",2014-06-24,2014-06-24,"YB","AG","2","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","15%","Tons of littorines, glare made limpet and barnacle counting difficult"
+"2014-06-24_YB-AGq3",2014-06-24,2014-06-24,"YB","AG","3","Cth","Chthamalus_dalli","Type 3",7,0.015625,448,"c","Isaac Shepard","Finished","Full","Cropped","3%",""
+"2014-06-24_YB-AGq7",2014-06-24,2014-06-24,"YB","AG","7","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","20%","Counts likely low due to blur and glare"
+"2014-06-24_YB-AGq9",2014-06-24,2014-06-24,"YB","AG","9","Cth","Chthamalus_dalli","Type 3",8,0.015625,512,"c","Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-06-24_YB-AGq1",2014-06-24,2014-06-24,"YB","AG","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","0%","Tons of littorines"
+"2014-06-24_YB-AGq2",2014-06-24,2014-06-24,"YB","AG","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","15%","Tons of littorines, glare made limpet and barnacle counting difficult"
+"2014-06-24_YB-AGq3",2014-06-24,2014-06-24,"YB","AG","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","3%",""
+"2014-06-24_YB-AGq7",2014-06-24,2014-06-24,"YB","AG","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","20%","Counts likely low due to blur and glare"
+"2014-06-24_YB-AGq9",2014-06-24,2014-06-24,"YB","AG","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-06-24_YB-AGq1",2014-06-24,2014-06-24,"YB","AG","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Tons of littorines"
+"2014-06-24_YB-AGq2",2014-06-24,2014-06-24,"YB","AG","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","15%","Tons of littorines, glare made limpet and barnacle counting difficult"
+"2014-06-24_YB-AGq3",2014-06-24,2014-06-24,"YB","AG","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","3%",""
+"2014-06-24_YB-AGq7",2014-06-24,2014-06-24,"YB","AG","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts likely low due to blur and glare"
+"2014-06-24_YB-AGq9",2014-06-24,2014-06-24,"YB","AG","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-06-24_YB-AGq1",2014-06-24,2014-06-24,"YB","AG","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Tons of littorines"
+"2014-06-24_YB-AGq2",2014-06-24,2014-06-24,"YB","AG","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","15%","Tons of littorines, glare made limpet and barnacle counting difficult"
+"2014-06-24_YB-AGq3",2014-06-24,2014-06-24,"YB","AG","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","3%",""
+"2014-06-24_YB-AGq7",2014-06-24,2014-06-24,"YB","AG","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts likely low due to blur and glare"
+"2014-06-24_YB-AGq9",2014-06-24,2014-06-24,"YB","AG","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-06-24_YB-AGq1",2014-06-24,2014-06-24,"YB","AG","1","Lim","Limpets","Type 12",71,0.0875,811.428571428571,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Tons of littorines"
+"2014-06-24_YB-AGq2",2014-06-24,2014-06-24,"YB","AG","2","Lim","Limpets","Type 12",43,0.0875,491.428571428571,NA,"Isaac Shepard","Finished","Full","Cropped","15%","Tons of littorines, glare made limpet and barnacle counting difficult"
+"2014-06-24_YB-AGq3",2014-06-24,2014-06-24,"YB","AG","3","Lim","Limpets","Type 12",59,0.0875,674.285714285714,NA,"Isaac Shepard","Finished","Full","Cropped","3%",""
+"2014-06-24_YB-AGq7",2014-06-24,2014-06-24,"YB","AG","7","Lim","Limpets","Type 12",113,0.0875,1291.42857142857,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts likely low due to blur and glare"
+"2014-06-24_YB-AGq9",2014-06-24,2014-06-24,"YB","AG","9","Lim","Limpets","Type 12",133,0.0875,1520,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-06-24_YB-AGq1",2014-06-24,2014-06-24,"YB","AG","1","Ls","Littorina_sitkana","Type 13",493,0.0875,5634.28571428571,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Tons of littorines"
+"2014-06-24_YB-AGq2",2014-06-24,2014-06-24,"YB","AG","2","Ls","Littorina_sitkana","Type 13",632,0.0875,7222.85714285714,NA,"Isaac Shepard","Finished","Full","Cropped","15%","Tons of littorines, glare made limpet and barnacle counting difficult"
+"2014-06-24_YB-AGq3",2014-06-24,2014-06-24,"YB","AG","3","Ls","Littorina_sitkana","Type 13",454,0.0875,5188.57142857143,NA,"Isaac Shepard","Finished","Full","Cropped","3%",""
+"2014-06-24_YB-AGq7",2014-06-24,2014-06-24,"YB","AG","7","Ls","Littorina_sitkana","Type 13",386,0.0875,4411.42857142857,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts likely low due to blur and glare"
+"2014-06-24_YB-AGq9",2014-06-24,2014-06-24,"YB","AG","9","Ls","Littorina_sitkana","Type 13",304,0.0875,3474.28571428571,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-06-24_YB-AGq1",2014-06-24,2014-06-24,"YB","AG","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Tons of littorines"
+"2014-06-24_YB-AGq2",2014-06-24,2014-06-24,"YB","AG","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","15%","Tons of littorines, glare made limpet and barnacle counting difficult"
+"2014-06-24_YB-AGq3",2014-06-24,2014-06-24,"YB","AG","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","3%",""
+"2014-06-24_YB-AGq7",2014-06-24,2014-06-24,"YB","AG","7","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts likely low due to blur and glare"
+"2014-06-24_YB-AGq9",2014-06-24,2014-06-24,"YB","AG","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-06-24_YB-AGq1",2014-06-24,2014-06-24,"YB","AG","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Tons of littorines"
+"2014-06-24_YB-AGq2",2014-06-24,2014-06-24,"YB","AG","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","15%","Tons of littorines, glare made limpet and barnacle counting difficult"
+"2014-06-24_YB-AGq3",2014-06-24,2014-06-24,"YB","AG","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","3%",""
+"2014-06-24_YB-AGq7",2014-06-24,2014-06-24,"YB","AG","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts likely low due to blur and glare"
+"2014-06-24_YB-AGq9",2014-06-24,2014-06-24,"YB","AG","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-06-24_YB-AGq1",2014-06-24,2014-06-24,"YB","AG","1","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Tons of littorines"
+"2014-06-24_YB-AGq2",2014-06-24,2014-06-24,"YB","AG","2","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","15%","Tons of littorines, glare made limpet and barnacle counting difficult"
+"2014-06-24_YB-AGq3",2014-06-24,2014-06-24,"YB","AG","3","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","3%",""
+"2014-06-24_YB-AGq7",2014-06-24,2014-06-24,"YB","AG","7","Myt","Mytilus_spp","Type 7",459,0.0875,5245.71428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts likely low due to blur and glare"
+"2014-06-24_YB-AGq9",2014-06-24,2014-06-24,"YB","AG","9","Myt","Mytilus_spp","Type 7",413,0.0875,4720,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-06-24_YB-AGq1",2014-06-24,2014-06-24,"YB","AG","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Tons of littorines"
+"2014-06-24_YB-AGq2",2014-06-24,2014-06-24,"YB","AG","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","15%","Tons of littorines, glare made limpet and barnacle counting difficult"
+"2014-06-24_YB-AGq3",2014-06-24,2014-06-24,"YB","AG","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","3%",""
+"2014-06-24_YB-AGq7",2014-06-24,2014-06-24,"YB","AG","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts likely low due to blur and glare"
+"2014-06-24_YB-AGq9",2014-06-24,2014-06-24,"YB","AG","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-06-24_YB-AGq1",2014-06-24,2014-06-24,"YB","AG","1","Mt","Mytilus_trossulus","Type 15",149,0.0875,1702.85714285714,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Tons of littorines"
+"2014-06-24_YB-AGq2",2014-06-24,2014-06-24,"YB","AG","2","Mt","Mytilus_trossulus","Type 15",181,0.0875,2068.57142857143,NA,"Isaac Shepard","Finished","Full","Cropped","15%","Tons of littorines, glare made limpet and barnacle counting difficult"
+"2014-06-24_YB-AGq3",2014-06-24,2014-06-24,"YB","AG","3","Mt","Mytilus_trossulus","Type 15",250,0.0875,2857.14285714286,NA,"Isaac Shepard","Finished","Full","Cropped","3%",""
+"2014-06-24_YB-AGq7",2014-06-24,2014-06-24,"YB","AG","7","Mt","Mytilus_trossulus","Type 15",5,0.0875,57.1428571428571,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts likely low due to blur and glare"
+"2014-06-24_YB-AGq9",2014-06-24,2014-06-24,"YB","AG","9","Mt","Mytilus_trossulus","Type 15",5,0.0875,57.1428571428571,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-06-24_YB-AGq1",2014-06-24,2014-06-24,"YB","AG","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Tons of littorines"
+"2014-06-24_YB-AGq2",2014-06-24,2014-06-24,"YB","AG","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","15%","Tons of littorines, glare made limpet and barnacle counting difficult"
+"2014-06-24_YB-AGq3",2014-06-24,2014-06-24,"YB","AG","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","3%",""
+"2014-06-24_YB-AGq7",2014-06-24,2014-06-24,"YB","AG","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts likely low due to blur and glare"
+"2014-06-24_YB-AGq9",2014-06-24,2014-06-24,"YB","AG","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-06-24_YB-AGq1",2014-06-24,2014-06-24,"YB","AG","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Tons of littorines"
+"2014-06-24_YB-AGq2",2014-06-24,2014-06-24,"YB","AG","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","15%","Tons of littorines, glare made limpet and barnacle counting difficult"
+"2014-06-24_YB-AGq3",2014-06-24,2014-06-24,"YB","AG","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","3%",""
+"2014-06-24_YB-AGq7",2014-06-24,2014-06-24,"YB","AG","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts likely low due to blur and glare"
+"2014-06-24_YB-AGq9",2014-06-24,2014-06-24,"YB","AG","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-06-24_YB-AGq1",2014-06-24,2014-06-24,"YB","AG","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Tons of littorines"
+"2014-06-24_YB-AGq2",2014-06-24,2014-06-24,"YB","AG","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","15%","Tons of littorines, glare made limpet and barnacle counting difficult"
+"2014-06-24_YB-AGq3",2014-06-24,2014-06-24,"YB","AG","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","3%",""
+"2014-06-24_YB-AGq7",2014-06-24,2014-06-24,"YB","AG","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts likely low due to blur and glare"
+"2014-06-24_YB-AGq9",2014-06-24,2014-06-24,"YB","AG","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-06-24_YB-AGq1",2014-06-24,2014-06-24,"YB","AG","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Tons of littorines"
+"2014-06-24_YB-AGq2",2014-06-24,2014-06-24,"YB","AG","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","15%","Tons of littorines, glare made limpet and barnacle counting difficult"
+"2014-06-24_YB-AGq3",2014-06-24,2014-06-24,"YB","AG","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","3%",""
+"2014-06-24_YB-AGq7",2014-06-24,2014-06-24,"YB","AG","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts likely low due to blur and glare"
+"2014-06-24_YB-AGq9",2014-06-24,2014-06-24,"YB","AG","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-06-24_YB-AGq1",2014-06-24,2014-06-24,"YB","AG","1","No","Nucella_ostrina","Type 9",3,0.0875,34.2857142857143,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Tons of littorines"
+"2014-06-24_YB-AGq2",2014-06-24,2014-06-24,"YB","AG","2","No","Nucella_ostrina","Type 9",4,0.0875,45.7142857142857,NA,"Isaac Shepard","Finished","Full","Cropped","15%","Tons of littorines, glare made limpet and barnacle counting difficult"
+"2014-06-24_YB-AGq3",2014-06-24,2014-06-24,"YB","AG","3","No","Nucella_ostrina","Type 9",7,0.0875,80,NA,"Isaac Shepard","Finished","Full","Cropped","3%",""
+"2014-06-24_YB-AGq7",2014-06-24,2014-06-24,"YB","AG","7","No","Nucella_ostrina","Type 9",4,0.0875,45.7142857142857,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts likely low due to blur and glare"
+"2014-06-24_YB-AGq9",2014-06-24,2014-06-24,"YB","AG","9","No","Nucella_ostrina","Type 9",7,0.0875,80,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-06-24_YB-AGq1",2014-06-24,2014-06-24,"YB","AG","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Tons of littorines"
+"2014-06-24_YB-AGq2",2014-06-24,2014-06-24,"YB","AG","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","15%","Tons of littorines, glare made limpet and barnacle counting difficult"
+"2014-06-24_YB-AGq3",2014-06-24,2014-06-24,"YB","AG","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","3%",""
+"2014-06-24_YB-AGq7",2014-06-24,2014-06-24,"YB","AG","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts likely low due to blur and glare"
+"2014-06-24_YB-AGq9",2014-06-24,2014-06-24,"YB","AG","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-06-24_YB-AGq1",2014-06-24,2014-06-24,"YB","AG","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Tons of littorines"
+"2014-06-24_YB-AGq2",2014-06-24,2014-06-24,"YB","AG","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","15%","Tons of littorines, glare made limpet and barnacle counting difficult"
+"2014-06-24_YB-AGq3",2014-06-24,2014-06-24,"YB","AG","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","3%",""
+"2014-06-24_YB-AGq7",2014-06-24,2014-06-24,"YB","AG","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts likely low due to blur and glare"
+"2014-06-24_YB-AGq9",2014-06-24,2014-06-24,"YB","AG","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-06-24_YB-AGq1",2014-06-24,2014-06-24,"YB","AG","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Tons of littorines"
+"2014-06-24_YB-AGq2",2014-06-24,2014-06-24,"YB","AG","2","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","15%","Tons of littorines, glare made limpet and barnacle counting difficult"
+"2014-06-24_YB-AGq3",2014-06-24,2014-06-24,"YB","AG","3","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","3%",""
+"2014-06-24_YB-AGq7",2014-06-24,2014-06-24,"YB","AG","7","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts likely low due to blur and glare"
+"2014-06-24_YB-AGq9",2014-06-24,2014-06-24,"YB","AG","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-06-24_YB-AGq1",2014-06-24,2014-06-24,"YB","AG","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Tons of littorines"
+"2014-06-24_YB-AGq2",2014-06-24,2014-06-24,"YB","AG","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","15%","Tons of littorines, glare made limpet and barnacle counting difficult"
+"2014-06-24_YB-AGq3",2014-06-24,2014-06-24,"YB","AG","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","3%",""
+"2014-06-24_YB-AGq7",2014-06-24,2014-06-24,"YB","AG","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts likely low due to blur and glare"
+"2014-06-24_YB-AGq9",2014-06-24,2014-06-24,"YB","AG","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-06-24_YB-AGq1",2014-06-24,2014-06-24,"YB","AG","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Tons of littorines"
+"2014-06-24_YB-AGq2",2014-06-24,2014-06-24,"YB","AG","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","15%","Tons of littorines, glare made limpet and barnacle counting difficult"
+"2014-06-24_YB-AGq3",2014-06-24,2014-06-24,"YB","AG","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","3%",""
+"2014-06-24_YB-AGq7",2014-06-24,2014-06-24,"YB","AG","7","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts likely low due to blur and glare"
+"2014-06-24_YB-AGq9",2014-06-24,2014-06-24,"YB","AG","9","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-06-24_YB-AGq1",2014-06-24,2014-06-24,"YB","AG","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Tons of littorines"
+"2014-06-24_YB-AGq2",2014-06-24,2014-06-24,"YB","AG","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","15%","Tons of littorines, glare made limpet and barnacle counting difficult"
+"2014-06-24_YB-AGq3",2014-06-24,2014-06-24,"YB","AG","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","3%",""
+"2014-06-24_YB-AGq7",2014-06-24,2014-06-24,"YB","AG","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts likely low due to blur and glare"
+"2014-06-24_YB-AGq9",2014-06-24,2014-06-24,"YB","AG","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-06-24_YB-Bq1",2014-06-24,2014-06-24,"YB","B","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","10%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Bq5",2014-06-24,2014-06-24,"YB","B","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Bq6",2014-06-24,2014-06-24,"YB","B","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Bq1",2014-06-24,2014-06-24,"YB","B","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","10%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Bq5",2014-06-24,2014-06-24,"YB","B","5","Ae","Anemones","Type 14",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Bq6",2014-06-24,2014-06-24,"YB","B","6","Ae","Anemones","Type 14",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Bq1",2014-06-24,2014-06-24,"YB","B","1","Bg","Balanus_glandula","Type 1",431,0.0875,4925.71428571429,NA,"Beatriz Vaca","Finished","Cropped","Full","10%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Bq5",2014-06-24,2014-06-24,"YB","B","5","Bg","Balanus_glandula","Type 1",233,0.015625,14912,"c","Beatriz Vaca","Finished","Full","Cropped","2%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Bq6",2014-06-24,2014-06-24,"YB","B","6","Bg","Balanus_glandula","Type 1",223,0.015625,14272,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Bq1",2014-06-24,2014-06-24,"YB","B","1","BgD","Balanus_glandula_(dead)","Type 2",43,0.0875,491.428571428571,NA,"Beatriz Vaca","Finished","Cropped","Full","10%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Bq5",2014-06-24,2014-06-24,"YB","B","5","BgD","Balanus_glandula_(dead)","Type 2",52,0.015625,3328,"c","Beatriz Vaca","Finished","Full","Cropped","2%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Bq6",2014-06-24,2014-06-24,"YB","B","6","BgD","Balanus_glandula_(dead)","Type 2",8,0.015625,512,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Bq1",2014-06-24,2014-06-24,"YB","B","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","10%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Bq5",2014-06-24,2014-06-24,"YB","B","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Bq6",2014-06-24,2014-06-24,"YB","B","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Bq1",2014-06-24,2014-06-24,"YB","B","1","Cth","Chthamalus_dalli","Type 3",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Cropped","Full","10%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Bq5",2014-06-24,2014-06-24,"YB","B","5","Cth","Chthamalus_dalli","Type 3",8,0.015625,512,"c","Beatriz Vaca","Finished","Full","Cropped","2%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Bq6",2014-06-24,2014-06-24,"YB","B","6","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Bq1",2014-06-24,2014-06-24,"YB","B","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","10%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Bq5",2014-06-24,2014-06-24,"YB","B","5","CthD","Chthamalus_dalli (dead)","Type 4",1,0.015625,64,"c","Beatriz Vaca","Finished","Full","Cropped","2%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Bq6",2014-06-24,2014-06-24,"YB","B","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Bq1",2014-06-24,2014-06-24,"YB","B","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","10%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Bq5",2014-06-24,2014-06-24,"YB","B","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Bq6",2014-06-24,2014-06-24,"YB","B","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Bq1",2014-06-24,2014-06-24,"YB","B","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","10%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Bq5",2014-06-24,2014-06-24,"YB","B","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Bq6",2014-06-24,2014-06-24,"YB","B","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Bq1",2014-06-24,2014-06-24,"YB","B","1","Lim","Limpets","Type 12",90,0.0875,1028.57142857143,NA,"Beatriz Vaca","Finished","Cropped","Full","10%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Bq5",2014-06-24,2014-06-24,"YB","B","5","Lim","Limpets","Type 12",423,0.0875,4834.28571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Bq6",2014-06-24,2014-06-24,"YB","B","6","Lim","Limpets","Type 12",248,0.0875,2834.28571428571,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Bq1",2014-06-24,2014-06-24,"YB","B","1","Ls","Littorina_sitkana","Type 13",13,0.0875,148.571428571429,NA,"Beatriz Vaca","Finished","Cropped","Full","10%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Bq5",2014-06-24,2014-06-24,"YB","B","5","Ls","Littorina_sitkana","Type 13",24,0.0875,274.285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Bq6",2014-06-24,2014-06-24,"YB","B","6","Ls","Littorina_sitkana","Type 13",59,0.0875,674.285714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Bq1",2014-06-24,2014-06-24,"YB","B","1","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","10%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Bq5",2014-06-24,2014-06-24,"YB","B","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Bq6",2014-06-24,2014-06-24,"YB","B","6","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Bq1",2014-06-24,2014-06-24,"YB","B","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","10%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Bq5",2014-06-24,2014-06-24,"YB","B","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Bq6",2014-06-24,2014-06-24,"YB","B","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Bq1",2014-06-24,2014-06-24,"YB","B","1","Myt","Mytilus_spp","Type 7",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","10%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Bq5",2014-06-24,2014-06-24,"YB","B","5","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Bq6",2014-06-24,2014-06-24,"YB","B","6","Myt","Mytilus_spp","Type 7",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Bq1",2014-06-24,2014-06-24,"YB","B","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","10%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Bq5",2014-06-24,2014-06-24,"YB","B","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Bq6",2014-06-24,2014-06-24,"YB","B","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Bq1",2014-06-24,2014-06-24,"YB","B","1","Mt","Mytilus_trossulus","Type 15",150,0.015625,9600,"c","Beatriz Vaca","Finished","Cropped","Full","10%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Bq5",2014-06-24,2014-06-24,"YB","B","5","Mt","Mytilus_trossulus","Type 15",117,0.0875,1337.14285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Bq6",2014-06-24,2014-06-24,"YB","B","6","Mt","Mytilus_trossulus","Type 15",120,0.015625,7680,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Bq1",2014-06-24,2014-06-24,"YB","B","1","MtD","Mytilus_trossulus_(dead)","Type 16",1,0.015625,64,"c","Beatriz Vaca","Finished","Cropped","Full","10%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Bq5",2014-06-24,2014-06-24,"YB","B","5","MtD","Mytilus_trossulus_(dead)","Type 16",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Bq6",2014-06-24,2014-06-24,"YB","B","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Bq1",2014-06-24,2014-06-24,"YB","B","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","10%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Bq5",2014-06-24,2014-06-24,"YB","B","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Bq6",2014-06-24,2014-06-24,"YB","B","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Bq1",2014-06-24,2014-06-24,"YB","B","1","Nc","Nucella_canaliculata","Type 10",18,0.0875,205.714285714286,NA,"Beatriz Vaca","Finished","Cropped","Full","10%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Bq5",2014-06-24,2014-06-24,"YB","B","5","Nc","Nucella_canaliculata","Type 10",45,0.0875,514.285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Bq6",2014-06-24,2014-06-24,"YB","B","6","Nc","Nucella_canaliculata","Type 10",27,0.0875,308.571428571429,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Bq1",2014-06-24,2014-06-24,"YB","B","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","10%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Bq5",2014-06-24,2014-06-24,"YB","B","5","Negg","Nucella_eggs","Type 26",42,0.0875,480,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Bq6",2014-06-24,2014-06-24,"YB","B","6","Negg","Nucella_eggs","Type 26",7,0.0875,80,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Bq1",2014-06-24,2014-06-24,"YB","B","1","No","Nucella_ostrina","Type 9",37,0.0875,422.857142857143,NA,"Beatriz Vaca","Finished","Cropped","Full","10%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Bq5",2014-06-24,2014-06-24,"YB","B","5","No","Nucella_ostrina","Type 9",48,0.0875,548.571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Bq6",2014-06-24,2014-06-24,"YB","B","6","No","Nucella_ostrina","Type 9",29,0.0875,331.428571428571,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Bq1",2014-06-24,2014-06-24,"YB","B","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","10%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Bq5",2014-06-24,2014-06-24,"YB","B","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Bq6",2014-06-24,2014-06-24,"YB","B","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Bq1",2014-06-24,2014-06-24,"YB","B","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","10%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Bq5",2014-06-24,2014-06-24,"YB","B","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Bq6",2014-06-24,2014-06-24,"YB","B","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Bq1",2014-06-24,2014-06-24,"YB","B","1","Pp","Pollicipes_polymerus","Type 11",44,0.0875,502.857142857143,NA,"Beatriz Vaca","Finished","Cropped","Full","10%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Bq5",2014-06-24,2014-06-24,"YB","B","5","Pp","Pollicipes_polymerus","Type 11",12,0.0875,137.142857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Bq6",2014-06-24,2014-06-24,"YB","B","6","Pp","Pollicipes_polymerus","Type 11",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Bq1",2014-06-24,2014-06-24,"YB","B","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","10%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Bq5",2014-06-24,2014-06-24,"YB","B","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Bq6",2014-06-24,2014-06-24,"YB","B","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Bq1",2014-06-24,2014-06-24,"YB","B","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","10%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Bq5",2014-06-24,2014-06-24,"YB","B","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Bq6",2014-06-24,2014-06-24,"YB","B","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Bq1",2014-06-24,2014-06-24,"YB","B","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","10%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Bq5",2014-06-24,2014-06-24,"YB","B","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Bq6",2014-06-24,2014-06-24,"YB","B","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-BBq1",2014-06-24,2014-06-24,"YB","BB","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to blur and glare"
+"2014-06-24_YB-BBq2",2014-06-24,2014-06-24,"YB","BB","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-06-24_YB-BBq9",2014-06-24,2014-06-24,"YB","BB","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-06-24_YB-BBq1",2014-06-24,2014-06-24,"YB","BB","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to blur and glare"
+"2014-06-24_YB-BBq2",2014-06-24,2014-06-24,"YB","BB","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-06-24_YB-BBq9",2014-06-24,2014-06-24,"YB","BB","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-06-24_YB-BBq1",2014-06-24,2014-06-24,"YB","BB","1","Bg","Balanus_glandula","Type 1",975,0.0875,11142.8571428571,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to blur and glare"
+"2014-06-24_YB-BBq2",2014-06-24,2014-06-24,"YB","BB","2","Bg","Balanus_glandula","Type 1",1158,0.0875,13234.2857142857,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-06-24_YB-BBq9",2014-06-24,2014-06-24,"YB","BB","9","Bg","Balanus_glandula","Type 1",480,0.015625,30720,"c","Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-06-24_YB-BBq1",2014-06-24,2014-06-24,"YB","BB","1","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to blur and glare"
+"2014-06-24_YB-BBq2",2014-06-24,2014-06-24,"YB","BB","2","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-06-24_YB-BBq9",2014-06-24,2014-06-24,"YB","BB","9","BgD","Balanus_glandula_(dead)","Type 2",2,0.015625,128,"c","Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-06-24_YB-BBq1",2014-06-24,2014-06-24,"YB","BB","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to blur and glare"
+"2014-06-24_YB-BBq2",2014-06-24,2014-06-24,"YB","BB","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-06-24_YB-BBq9",2014-06-24,2014-06-24,"YB","BB","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-06-24_YB-BBq1",2014-06-24,2014-06-24,"YB","BB","1","Cth","Chthamalus_dalli","Type 3",22,0.0875,251.428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to blur and glare"
+"2014-06-24_YB-BBq2",2014-06-24,2014-06-24,"YB","BB","2","Cth","Chthamalus_dalli","Type 3",6,0.0875,68.5714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-06-24_YB-BBq9",2014-06-24,2014-06-24,"YB","BB","9","Cth","Chthamalus_dalli","Type 3",1,0.015625,64,"c","Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-06-24_YB-BBq1",2014-06-24,2014-06-24,"YB","BB","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to blur and glare"
+"2014-06-24_YB-BBq2",2014-06-24,2014-06-24,"YB","BB","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-06-24_YB-BBq9",2014-06-24,2014-06-24,"YB","BB","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-06-24_YB-BBq1",2014-06-24,2014-06-24,"YB","BB","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to blur and glare"
+"2014-06-24_YB-BBq2",2014-06-24,2014-06-24,"YB","BB","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-06-24_YB-BBq9",2014-06-24,2014-06-24,"YB","BB","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-06-24_YB-BBq1",2014-06-24,2014-06-24,"YB","BB","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to blur and glare"
+"2014-06-24_YB-BBq2",2014-06-24,2014-06-24,"YB","BB","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-06-24_YB-BBq9",2014-06-24,2014-06-24,"YB","BB","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-06-24_YB-BBq1",2014-06-24,2014-06-24,"YB","BB","1","Lim","Limpets","Type 12",40,0.0875,457.142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to blur and glare"
+"2014-06-24_YB-BBq2",2014-06-24,2014-06-24,"YB","BB","2","Lim","Limpets","Type 12",108,0.0875,1234.28571428571,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-06-24_YB-BBq9",2014-06-24,2014-06-24,"YB","BB","9","Lim","Limpets","Type 12",57,0.0875,651.428571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-06-24_YB-BBq1",2014-06-24,2014-06-24,"YB","BB","1","Ls","Littorina_sitkana","Type 13",576,0.0875,6582.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to blur and glare"
+"2014-06-24_YB-BBq2",2014-06-24,2014-06-24,"YB","BB","2","Ls","Littorina_sitkana","Type 13",563,0.0875,6434.28571428571,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-06-24_YB-BBq9",2014-06-24,2014-06-24,"YB","BB","9","Ls","Littorina_sitkana","Type 13",1160,0.0875,13257.1428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-06-24_YB-BBq1",2014-06-24,2014-06-24,"YB","BB","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to blur and glare"
+"2014-06-24_YB-BBq2",2014-06-24,2014-06-24,"YB","BB","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-06-24_YB-BBq9",2014-06-24,2014-06-24,"YB","BB","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-06-24_YB-BBq1",2014-06-24,2014-06-24,"YB","BB","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to blur and glare"
+"2014-06-24_YB-BBq2",2014-06-24,2014-06-24,"YB","BB","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-06-24_YB-BBq9",2014-06-24,2014-06-24,"YB","BB","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-06-24_YB-BBq1",2014-06-24,2014-06-24,"YB","BB","1","Myt","Mytilus_spp","Type 7",606,0.0875,6925.71428571429,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to blur and glare"
+"2014-06-24_YB-BBq2",2014-06-24,2014-06-24,"YB","BB","2","Myt","Mytilus_spp","Type 7",882,0.0875,10080,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-06-24_YB-BBq9",2014-06-24,2014-06-24,"YB","BB","9","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-06-24_YB-BBq1",2014-06-24,2014-06-24,"YB","BB","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to blur and glare"
+"2014-06-24_YB-BBq2",2014-06-24,2014-06-24,"YB","BB","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-06-24_YB-BBq9",2014-06-24,2014-06-24,"YB","BB","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-06-24_YB-BBq1",2014-06-24,2014-06-24,"YB","BB","1","Mt","Mytilus_trossulus","Type 15",98,0.0875,1120,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to blur and glare"
+"2014-06-24_YB-BBq2",2014-06-24,2014-06-24,"YB","BB","2","Mt","Mytilus_trossulus","Type 15",48,0.0875,548.571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-06-24_YB-BBq9",2014-06-24,2014-06-24,"YB","BB","9","Mt","Mytilus_trossulus","Type 15",409,0.0875,4674.28571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-06-24_YB-BBq1",2014-06-24,2014-06-24,"YB","BB","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to blur and glare"
+"2014-06-24_YB-BBq2",2014-06-24,2014-06-24,"YB","BB","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-06-24_YB-BBq9",2014-06-24,2014-06-24,"YB","BB","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-06-24_YB-BBq1",2014-06-24,2014-06-24,"YB","BB","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to blur and glare"
+"2014-06-24_YB-BBq2",2014-06-24,2014-06-24,"YB","BB","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-06-24_YB-BBq9",2014-06-24,2014-06-24,"YB","BB","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-06-24_YB-BBq1",2014-06-24,2014-06-24,"YB","BB","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to blur and glare"
+"2014-06-24_YB-BBq2",2014-06-24,2014-06-24,"YB","BB","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-06-24_YB-BBq9",2014-06-24,2014-06-24,"YB","BB","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-06-24_YB-BBq1",2014-06-24,2014-06-24,"YB","BB","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to blur and glare"
+"2014-06-24_YB-BBq2",2014-06-24,2014-06-24,"YB","BB","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-06-24_YB-BBq9",2014-06-24,2014-06-24,"YB","BB","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-06-24_YB-BBq1",2014-06-24,2014-06-24,"YB","BB","1","No","Nucella_ostrina","Type 9",13,0.0875,148.571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to blur and glare"
+"2014-06-24_YB-BBq2",2014-06-24,2014-06-24,"YB","BB","2","No","Nucella_ostrina","Type 9",7,0.0875,80,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-06-24_YB-BBq9",2014-06-24,2014-06-24,"YB","BB","9","No","Nucella_ostrina","Type 9",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-06-24_YB-BBq1",2014-06-24,2014-06-24,"YB","BB","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to blur and glare"
+"2014-06-24_YB-BBq2",2014-06-24,2014-06-24,"YB","BB","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-06-24_YB-BBq9",2014-06-24,2014-06-24,"YB","BB","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-06-24_YB-BBq1",2014-06-24,2014-06-24,"YB","BB","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to blur and glare"
+"2014-06-24_YB-BBq2",2014-06-24,2014-06-24,"YB","BB","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-06-24_YB-BBq9",2014-06-24,2014-06-24,"YB","BB","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-06-24_YB-BBq1",2014-06-24,2014-06-24,"YB","BB","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to blur and glare"
+"2014-06-24_YB-BBq2",2014-06-24,2014-06-24,"YB","BB","2","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-06-24_YB-BBq9",2014-06-24,2014-06-24,"YB","BB","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-06-24_YB-BBq1",2014-06-24,2014-06-24,"YB","BB","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to blur and glare"
+"2014-06-24_YB-BBq2",2014-06-24,2014-06-24,"YB","BB","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-06-24_YB-BBq9",2014-06-24,2014-06-24,"YB","BB","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-06-24_YB-BBq1",2014-06-24,2014-06-24,"YB","BB","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to blur and glare"
+"2014-06-24_YB-BBq2",2014-06-24,2014-06-24,"YB","BB","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-06-24_YB-BBq9",2014-06-24,2014-06-24,"YB","BB","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-06-24_YB-BBq1",2014-06-24,2014-06-24,"YB","BB","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to blur and glare"
+"2014-06-24_YB-BBq2",2014-06-24,2014-06-24,"YB","BB","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-06-24_YB-BBq9",2014-06-24,2014-06-24,"YB","BB","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-06-24_YB-BCq3",2014-06-24,2014-06-24,"YB","BC","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","One Hemigrapsus nudus present in quadrat"
+"2014-06-24_YB-BCq5",2014-06-24,2014-06-24,"YB","BC","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-06-24_YB-BCq9",2014-06-24,2014-06-24,"YB","BC","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-06-24_YB-BCq3",2014-06-24,2014-06-24,"YB","BC","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","One Hemigrapsus nudus present in quadrat"
+"2014-06-24_YB-BCq5",2014-06-24,2014-06-24,"YB","BC","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-06-24_YB-BCq9",2014-06-24,2014-06-24,"YB","BC","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-06-24_YB-BCq3",2014-06-24,2014-06-24,"YB","BC","3","Bg","Balanus_glandula","Type 1",299,0.015625,19136,"c","Isaac Shepard","Finished","Full","Cropped","0%","One Hemigrapsus nudus present in quadrat"
+"2014-06-24_YB-BCq5",2014-06-24,2014-06-24,"YB","BC","5","Bg","Balanus_glandula","Type 1",251,0.015625,16064,"c","Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-06-24_YB-BCq9",2014-06-24,2014-06-24,"YB","BC","9","Bg","Balanus_glandula","Type 1",402,0.015625,25728,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-06-24_YB-BCq3",2014-06-24,2014-06-24,"YB","BC","3","BgD","Balanus_glandula_(dead)","Type 2",2,0.015625,128,"c","Isaac Shepard","Finished","Full","Cropped","0%","One Hemigrapsus nudus present in quadrat"
+"2014-06-24_YB-BCq5",2014-06-24,2014-06-24,"YB","BC","5","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-06-24_YB-BCq9",2014-06-24,2014-06-24,"YB","BC","9","BgD","Balanus_glandula_(dead)","Type 2",4,0.015625,256,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-06-24_YB-BCq3",2014-06-24,2014-06-24,"YB","BC","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","One Hemigrapsus nudus present in quadrat"
+"2014-06-24_YB-BCq5",2014-06-24,2014-06-24,"YB","BC","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-06-24_YB-BCq9",2014-06-24,2014-06-24,"YB","BC","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-06-24_YB-BCq3",2014-06-24,2014-06-24,"YB","BC","3","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","0%","One Hemigrapsus nudus present in quadrat"
+"2014-06-24_YB-BCq5",2014-06-24,2014-06-24,"YB","BC","5","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-06-24_YB-BCq9",2014-06-24,2014-06-24,"YB","BC","9","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-06-24_YB-BCq3",2014-06-24,2014-06-24,"YB","BC","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","0%","One Hemigrapsus nudus present in quadrat"
+"2014-06-24_YB-BCq5",2014-06-24,2014-06-24,"YB","BC","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-06-24_YB-BCq9",2014-06-24,2014-06-24,"YB","BC","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-06-24_YB-BCq3",2014-06-24,2014-06-24,"YB","BC","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","One Hemigrapsus nudus present in quadrat"
+"2014-06-24_YB-BCq5",2014-06-24,2014-06-24,"YB","BC","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-06-24_YB-BCq9",2014-06-24,2014-06-24,"YB","BC","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-06-24_YB-BCq3",2014-06-24,2014-06-24,"YB","BC","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","One Hemigrapsus nudus present in quadrat"
+"2014-06-24_YB-BCq5",2014-06-24,2014-06-24,"YB","BC","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-06-24_YB-BCq9",2014-06-24,2014-06-24,"YB","BC","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-06-24_YB-BCq3",2014-06-24,2014-06-24,"YB","BC","3","Lim","Limpets","Type 12",102,0.0875,1165.71428571429,NA,"Isaac Shepard","Finished","Full","Cropped","0%","One Hemigrapsus nudus present in quadrat"
+"2014-06-24_YB-BCq5",2014-06-24,2014-06-24,"YB","BC","5","Lim","Limpets","Type 12",82,0.0875,937.142857142857,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-06-24_YB-BCq9",2014-06-24,2014-06-24,"YB","BC","9","Lim","Limpets","Type 12",209,0.0875,2388.57142857143,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-06-24_YB-BCq3",2014-06-24,2014-06-24,"YB","BC","3","Ls","Littorina_sitkana","Type 13",760,0.0875,8685.71428571429,NA,"Isaac Shepard","Finished","Full","Cropped","0%","One Hemigrapsus nudus present in quadrat"
+"2014-06-24_YB-BCq5",2014-06-24,2014-06-24,"YB","BC","5","Ls","Littorina_sitkana","Type 13",391,0.0875,4468.57142857143,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-06-24_YB-BCq9",2014-06-24,2014-06-24,"YB","BC","9","Ls","Littorina_sitkana","Type 13",381,0.0875,4354.28571428571,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-06-24_YB-BCq3",2014-06-24,2014-06-24,"YB","BC","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","One Hemigrapsus nudus present in quadrat"
+"2014-06-24_YB-BCq5",2014-06-24,2014-06-24,"YB","BC","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-06-24_YB-BCq9",2014-06-24,2014-06-24,"YB","BC","9","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-06-24_YB-BCq3",2014-06-24,2014-06-24,"YB","BC","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","One Hemigrapsus nudus present in quadrat"
+"2014-06-24_YB-BCq5",2014-06-24,2014-06-24,"YB","BC","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-06-24_YB-BCq9",2014-06-24,2014-06-24,"YB","BC","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-06-24_YB-BCq3",2014-06-24,2014-06-24,"YB","BC","3","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","One Hemigrapsus nudus present in quadrat"
+"2014-06-24_YB-BCq5",2014-06-24,2014-06-24,"YB","BC","5","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-06-24_YB-BCq9",2014-06-24,2014-06-24,"YB","BC","9","Myt","Mytilus_spp","Type 7",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-06-24_YB-BCq3",2014-06-24,2014-06-24,"YB","BC","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","One Hemigrapsus nudus present in quadrat"
+"2014-06-24_YB-BCq5",2014-06-24,2014-06-24,"YB","BC","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-06-24_YB-BCq9",2014-06-24,2014-06-24,"YB","BC","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-06-24_YB-BCq3",2014-06-24,2014-06-24,"YB","BC","3","Mt","Mytilus_trossulus","Type 15",158,0.0875,1805.71428571429,NA,"Isaac Shepard","Finished","Full","Cropped","0%","One Hemigrapsus nudus present in quadrat"
+"2014-06-24_YB-BCq5",2014-06-24,2014-06-24,"YB","BC","5","Mt","Mytilus_trossulus","Type 15",449,0.0875,5131.42857142857,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-06-24_YB-BCq9",2014-06-24,2014-06-24,"YB","BC","9","Mt","Mytilus_trossulus","Type 15",77,0.015625,4928,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-06-24_YB-BCq3",2014-06-24,2014-06-24,"YB","BC","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","One Hemigrapsus nudus present in quadrat"
+"2014-06-24_YB-BCq5",2014-06-24,2014-06-24,"YB","BC","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-06-24_YB-BCq9",2014-06-24,2014-06-24,"YB","BC","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-06-24_YB-BCq3",2014-06-24,2014-06-24,"YB","BC","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","One Hemigrapsus nudus present in quadrat"
+"2014-06-24_YB-BCq5",2014-06-24,2014-06-24,"YB","BC","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-06-24_YB-BCq9",2014-06-24,2014-06-24,"YB","BC","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-06-24_YB-BCq3",2014-06-24,2014-06-24,"YB","BC","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","One Hemigrapsus nudus present in quadrat"
+"2014-06-24_YB-BCq5",2014-06-24,2014-06-24,"YB","BC","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-06-24_YB-BCq9",2014-06-24,2014-06-24,"YB","BC","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-06-24_YB-BCq3",2014-06-24,2014-06-24,"YB","BC","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","One Hemigrapsus nudus present in quadrat"
+"2014-06-24_YB-BCq5",2014-06-24,2014-06-24,"YB","BC","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-06-24_YB-BCq9",2014-06-24,2014-06-24,"YB","BC","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-06-24_YB-BCq3",2014-06-24,2014-06-24,"YB","BC","3","No","Nucella_ostrina","Type 9",13,0.0875,148.571428571429,NA,"Isaac Shepard","Finished","Full","Cropped","0%","One Hemigrapsus nudus present in quadrat"
+"2014-06-24_YB-BCq5",2014-06-24,2014-06-24,"YB","BC","5","No","Nucella_ostrina","Type 9",14,0.0875,160,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-06-24_YB-BCq9",2014-06-24,2014-06-24,"YB","BC","9","No","Nucella_ostrina","Type 9",12,0.0875,137.142857142857,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-06-24_YB-BCq3",2014-06-24,2014-06-24,"YB","BC","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","One Hemigrapsus nudus present in quadrat"
+"2014-06-24_YB-BCq5",2014-06-24,2014-06-24,"YB","BC","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-06-24_YB-BCq9",2014-06-24,2014-06-24,"YB","BC","9","Wor","Other_worm spp.","Type 25",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-06-24_YB-BCq3",2014-06-24,2014-06-24,"YB","BC","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","One Hemigrapsus nudus present in quadrat"
+"2014-06-24_YB-BCq5",2014-06-24,2014-06-24,"YB","BC","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-06-24_YB-BCq9",2014-06-24,2014-06-24,"YB","BC","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-06-24_YB-BCq3",2014-06-24,2014-06-24,"YB","BC","3","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","One Hemigrapsus nudus present in quadrat"
+"2014-06-24_YB-BCq5",2014-06-24,2014-06-24,"YB","BC","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-06-24_YB-BCq9",2014-06-24,2014-06-24,"YB","BC","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-06-24_YB-BCq3",2014-06-24,2014-06-24,"YB","BC","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","One Hemigrapsus nudus present in quadrat"
+"2014-06-24_YB-BCq5",2014-06-24,2014-06-24,"YB","BC","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-06-24_YB-BCq9",2014-06-24,2014-06-24,"YB","BC","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-06-24_YB-BCq3",2014-06-24,2014-06-24,"YB","BC","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","One Hemigrapsus nudus present in quadrat"
+"2014-06-24_YB-BCq5",2014-06-24,2014-06-24,"YB","BC","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-06-24_YB-BCq9",2014-06-24,2014-06-24,"YB","BC","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-06-24_YB-BCq3",2014-06-24,2014-06-24,"YB","BC","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","One Hemigrapsus nudus present in quadrat"
+"2014-06-24_YB-BCq5",2014-06-24,2014-06-24,"YB","BC","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-06-24_YB-BCq9",2014-06-24,2014-06-24,"YB","BC","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-06-24_YB-BDq1",2014-06-24,2014-06-24,"YB","BD","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","25%",""
+"2014-06-24_YB-BDq5",2014-06-24,2014-06-24,"YB","BD","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","65%",""
+"2014-06-24_YB-BDq7",2014-06-24,2014-06-24,"YB","BD","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2014-06-24_YB-BDq1",2014-06-24,2014-06-24,"YB","BD","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","25%",""
+"2014-06-24_YB-BDq5",2014-06-24,2014-06-24,"YB","BD","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","65%",""
+"2014-06-24_YB-BDq7",2014-06-24,2014-06-24,"YB","BD","7","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2014-06-24_YB-BDq1",2014-06-24,2014-06-24,"YB","BD","1","Bg","Balanus_glandula","Type 1",1812,0.0875,20708.5714285714,NA,"Julia Bingham","Finished","Full","Full","25%",""
+"2014-06-24_YB-BDq5",2014-06-24,2014-06-24,"YB","BD","5","Bg","Balanus_glandula","Type 1",1223,0.0875,13977.1428571429,NA,"Julia Bingham","Finished","Full","Full","65%",""
+"2014-06-24_YB-BDq7",2014-06-24,2014-06-24,"YB","BD","7","Bg","Balanus_glandula","Type 1",3093,0.0875,35348.5714285714,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2014-06-24_YB-BDq1",2014-06-24,2014-06-24,"YB","BD","1","BgD","Balanus_glandula_(dead)","Type 2",71,0.0875,811.428571428571,NA,"Julia Bingham","Finished","Full","Full","25%",""
+"2014-06-24_YB-BDq5",2014-06-24,2014-06-24,"YB","BD","5","BgD","Balanus_glandula_(dead)","Type 2",31,0.0875,354.285714285714,NA,"Julia Bingham","Finished","Full","Full","65%",""
+"2014-06-24_YB-BDq7",2014-06-24,2014-06-24,"YB","BD","7","BgD","Balanus_glandula_(dead)","Type 2",110,0.0875,1257.14285714286,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2014-06-24_YB-BDq1",2014-06-24,2014-06-24,"YB","BD","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","25%",""
+"2014-06-24_YB-BDq5",2014-06-24,2014-06-24,"YB","BD","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","65%",""
+"2014-06-24_YB-BDq7",2014-06-24,2014-06-24,"YB","BD","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2014-06-24_YB-BDq1",2014-06-24,2014-06-24,"YB","BD","1","Cth","Chthamalus_dalli","Type 3",32,0.0875,365.714285714286,NA,"Julia Bingham","Finished","Full","Full","25%",""
+"2014-06-24_YB-BDq5",2014-06-24,2014-06-24,"YB","BD","5","Cth","Chthamalus_dalli","Type 3",5,0.0875,57.1428571428571,NA,"Julia Bingham","Finished","Full","Full","65%",""
+"2014-06-24_YB-BDq7",2014-06-24,2014-06-24,"YB","BD","7","Cth","Chthamalus_dalli","Type 3",20,0.0875,228.571428571429,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2014-06-24_YB-BDq1",2014-06-24,2014-06-24,"YB","BD","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","25%",""
+"2014-06-24_YB-BDq5",2014-06-24,2014-06-24,"YB","BD","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","65%",""
+"2014-06-24_YB-BDq7",2014-06-24,2014-06-24,"YB","BD","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2014-06-24_YB-BDq1",2014-06-24,2014-06-24,"YB","BD","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","25%",""
+"2014-06-24_YB-BDq5",2014-06-24,2014-06-24,"YB","BD","5","Emp","Emplectonema worm","Type 23",4,0.0875,45.7142857142857,NA,"Julia Bingham","Finished","Full","Full","65%",""
+"2014-06-24_YB-BDq7",2014-06-24,2014-06-24,"YB","BD","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2014-06-24_YB-BDq1",2014-06-24,2014-06-24,"YB","BD","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","25%",""
+"2014-06-24_YB-BDq5",2014-06-24,2014-06-24,"YB","BD","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","65%",""
+"2014-06-24_YB-BDq7",2014-06-24,2014-06-24,"YB","BD","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2014-06-24_YB-BDq1",2014-06-24,2014-06-24,"YB","BD","1","Lim","Limpets","Type 12",420,0.0875,4800,NA,"Julia Bingham","Finished","Full","Full","25%",""
+"2014-06-24_YB-BDq5",2014-06-24,2014-06-24,"YB","BD","5","Lim","Limpets","Type 12",279,0.0875,3188.57142857143,NA,"Julia Bingham","Finished","Full","Full","65%",""
+"2014-06-24_YB-BDq7",2014-06-24,2014-06-24,"YB","BD","7","Lim","Limpets","Type 12",472,0.0875,5394.28571428571,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2014-06-24_YB-BDq1",2014-06-24,2014-06-24,"YB","BD","1","Ls","Littorina_sitkana","Type 13",256,0.0875,2925.71428571429,NA,"Julia Bingham","Finished","Full","Full","25%",""
+"2014-06-24_YB-BDq5",2014-06-24,2014-06-24,"YB","BD","5","Ls","Littorina_sitkana","Type 13",457,0.0875,5222.85714285714,NA,"Julia Bingham","Finished","Full","Full","65%",""
+"2014-06-24_YB-BDq7",2014-06-24,2014-06-24,"YB","BD","7","Ls","Littorina_sitkana","Type 13",326,0.0875,3725.71428571429,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2014-06-24_YB-BDq1",2014-06-24,2014-06-24,"YB","BD","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","25%",""
+"2014-06-24_YB-BDq5",2014-06-24,2014-06-24,"YB","BD","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","65%",""
+"2014-06-24_YB-BDq7",2014-06-24,2014-06-24,"YB","BD","7","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2014-06-24_YB-BDq1",2014-06-24,2014-06-24,"YB","BD","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","25%",""
+"2014-06-24_YB-BDq5",2014-06-24,2014-06-24,"YB","BD","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","65%",""
+"2014-06-24_YB-BDq7",2014-06-24,2014-06-24,"YB","BD","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2014-06-24_YB-BDq1",2014-06-24,2014-06-24,"YB","BD","1","Myt","Mytilus_spp","Type 7",1573,0.0875,17977.1428571429,NA,"Julia Bingham","Finished","Full","Full","25%",""
+"2014-06-24_YB-BDq5",2014-06-24,2014-06-24,"YB","BD","5","Myt","Mytilus_spp","Type 7",1563,0.0875,17862.8571428571,NA,"Julia Bingham","Finished","Full","Full","65%",""
+"2014-06-24_YB-BDq7",2014-06-24,2014-06-24,"YB","BD","7","Myt","Mytilus_spp","Type 7",1153,0.0875,13177.1428571429,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2014-06-24_YB-BDq1",2014-06-24,2014-06-24,"YB","BD","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","25%",""
+"2014-06-24_YB-BDq5",2014-06-24,2014-06-24,"YB","BD","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","65%",""
+"2014-06-24_YB-BDq7",2014-06-24,2014-06-24,"YB","BD","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2014-06-24_YB-BDq1",2014-06-24,2014-06-24,"YB","BD","1","Mt","Mytilus_trossulus","Type 15",114,0.0875,1302.85714285714,NA,"Julia Bingham","Finished","Full","Full","25%",""
+"2014-06-24_YB-BDq5",2014-06-24,2014-06-24,"YB","BD","5","Mt","Mytilus_trossulus","Type 15",313,0.0875,3577.14285714286,NA,"Julia Bingham","Finished","Full","Full","65%",""
+"2014-06-24_YB-BDq7",2014-06-24,2014-06-24,"YB","BD","7","Mt","Mytilus_trossulus","Type 15",234,0.0875,2674.28571428571,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2014-06-24_YB-BDq1",2014-06-24,2014-06-24,"YB","BD","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","25%",""
+"2014-06-24_YB-BDq5",2014-06-24,2014-06-24,"YB","BD","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","65%",""
+"2014-06-24_YB-BDq7",2014-06-24,2014-06-24,"YB","BD","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2014-06-24_YB-BDq1",2014-06-24,2014-06-24,"YB","BD","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","25%",""
+"2014-06-24_YB-BDq5",2014-06-24,2014-06-24,"YB","BD","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","65%",""
+"2014-06-24_YB-BDq7",2014-06-24,2014-06-24,"YB","BD","7","Ner","Nereis_worm","Type 24",3,0.0875,34.2857142857143,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2014-06-24_YB-BDq1",2014-06-24,2014-06-24,"YB","BD","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","25%",""
+"2014-06-24_YB-BDq5",2014-06-24,2014-06-24,"YB","BD","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","65%",""
+"2014-06-24_YB-BDq7",2014-06-24,2014-06-24,"YB","BD","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2014-06-24_YB-BDq1",2014-06-24,2014-06-24,"YB","BD","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","25%",""
+"2014-06-24_YB-BDq5",2014-06-24,2014-06-24,"YB","BD","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","65%",""
+"2014-06-24_YB-BDq7",2014-06-24,2014-06-24,"YB","BD","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2014-06-24_YB-BDq1",2014-06-24,2014-06-24,"YB","BD","1","No","Nucella_ostrina","Type 9",16,0.0875,182.857142857143,NA,"Julia Bingham","Finished","Full","Full","25%",""
+"2014-06-24_YB-BDq5",2014-06-24,2014-06-24,"YB","BD","5","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","65%",""
+"2014-06-24_YB-BDq7",2014-06-24,2014-06-24,"YB","BD","7","No","Nucella_ostrina","Type 9",7,0.0875,80,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2014-06-24_YB-BDq1",2014-06-24,2014-06-24,"YB","BD","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","25%",""
+"2014-06-24_YB-BDq5",2014-06-24,2014-06-24,"YB","BD","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","65%",""
+"2014-06-24_YB-BDq7",2014-06-24,2014-06-24,"YB","BD","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2014-06-24_YB-BDq1",2014-06-24,2014-06-24,"YB","BD","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","25%",""
+"2014-06-24_YB-BDq5",2014-06-24,2014-06-24,"YB","BD","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","65%",""
+"2014-06-24_YB-BDq7",2014-06-24,2014-06-24,"YB","BD","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2014-06-24_YB-BDq1",2014-06-24,2014-06-24,"YB","BD","1","Pp","Pollicipes_polymerus","Type 11",177,0.0875,2022.85714285714,NA,"Julia Bingham","Finished","Full","Full","25%",""
+"2014-06-24_YB-BDq5",2014-06-24,2014-06-24,"YB","BD","5","Pp","Pollicipes_polymerus","Type 11",274,0.0875,3131.42857142857,NA,"Julia Bingham","Finished","Full","Full","65%",""
+"2014-06-24_YB-BDq7",2014-06-24,2014-06-24,"YB","BD","7","Pp","Pollicipes_polymerus","Type 11",300,0.0875,3428.57142857143,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2014-06-24_YB-BDq1",2014-06-24,2014-06-24,"YB","BD","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","25%",""
+"2014-06-24_YB-BDq5",2014-06-24,2014-06-24,"YB","BD","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","65%",""
+"2014-06-24_YB-BDq7",2014-06-24,2014-06-24,"YB","BD","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2014-06-24_YB-BDq1",2014-06-24,2014-06-24,"YB","BD","1","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","25%",""
+"2014-06-24_YB-BDq5",2014-06-24,2014-06-24,"YB","BD","5","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","65%",""
+"2014-06-24_YB-BDq7",2014-06-24,2014-06-24,"YB","BD","7","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2014-06-24_YB-BDq1",2014-06-24,2014-06-24,"YB","BD","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","25%",""
+"2014-06-24_YB-BDq5",2014-06-24,2014-06-24,"YB","BD","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","65%",""
+"2014-06-24_YB-BDq7",2014-06-24,2014-06-24,"YB","BD","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2014-06-24_YB-BEq2",2014-06-24,2014-06-24,"YB","BE","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to blur and glare"
+"2014-06-24_YB-BEq3",2014-06-24,2014-06-24,"YB","BE","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-BEq6",2014-06-24,2014-06-24,"YB","BE","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to glare."
+"2014-06-24_YB-BEq2",2014-06-24,2014-06-24,"YB","BE","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to blur and glare"
+"2014-06-24_YB-BEq3",2014-06-24,2014-06-24,"YB","BE","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-BEq6",2014-06-24,2014-06-24,"YB","BE","6","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to glare."
+"2014-06-24_YB-BEq2",2014-06-24,2014-06-24,"YB","BE","2","Bg","Balanus_glandula","Type 1",193,0.0875,2205.71428571429,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to blur and glare"
+"2014-06-24_YB-BEq3",2014-06-24,2014-06-24,"YB","BE","3","Bg","Balanus_glandula","Type 1",409,0.0875,4674.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-BEq6",2014-06-24,2014-06-24,"YB","BE","6","Bg","Balanus_glandula","Type 1",384,0.0875,4388.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to glare."
+"2014-06-24_YB-BEq2",2014-06-24,2014-06-24,"YB","BE","2","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to blur and glare"
+"2014-06-24_YB-BEq3",2014-06-24,2014-06-24,"YB","BE","3","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-BEq6",2014-06-24,2014-06-24,"YB","BE","6","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to glare."
+"2014-06-24_YB-BEq2",2014-06-24,2014-06-24,"YB","BE","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to blur and glare"
+"2014-06-24_YB-BEq3",2014-06-24,2014-06-24,"YB","BE","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-BEq6",2014-06-24,2014-06-24,"YB","BE","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to glare."
+"2014-06-24_YB-BEq2",2014-06-24,2014-06-24,"YB","BE","2","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to blur and glare"
+"2014-06-24_YB-BEq3",2014-06-24,2014-06-24,"YB","BE","3","Cth","Chthamalus_dalli","Type 3",26,0.0875,297.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-BEq6",2014-06-24,2014-06-24,"YB","BE","6","Cth","Chthamalus_dalli","Type 3",25,0.0875,285.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to glare."
+"2014-06-24_YB-BEq2",2014-06-24,2014-06-24,"YB","BE","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to blur and glare"
+"2014-06-24_YB-BEq3",2014-06-24,2014-06-24,"YB","BE","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-BEq6",2014-06-24,2014-06-24,"YB","BE","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to glare."
+"2014-06-24_YB-BEq2",2014-06-24,2014-06-24,"YB","BE","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to blur and glare"
+"2014-06-24_YB-BEq3",2014-06-24,2014-06-24,"YB","BE","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-BEq6",2014-06-24,2014-06-24,"YB","BE","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to glare."
+"2014-06-24_YB-BEq2",2014-06-24,2014-06-24,"YB","BE","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to blur and glare"
+"2014-06-24_YB-BEq3",2014-06-24,2014-06-24,"YB","BE","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-BEq6",2014-06-24,2014-06-24,"YB","BE","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to glare."
+"2014-06-24_YB-BEq2",2014-06-24,2014-06-24,"YB","BE","2","Lim","Limpets","Type 12",99,0.0875,1131.42857142857,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to blur and glare"
+"2014-06-24_YB-BEq3",2014-06-24,2014-06-24,"YB","BE","3","Lim","Limpets","Type 12",159,0.0875,1817.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-BEq6",2014-06-24,2014-06-24,"YB","BE","6","Lim","Limpets","Type 12",166,0.0875,1897.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to glare."
+"2014-06-24_YB-BEq2",2014-06-24,2014-06-24,"YB","BE","2","Ls","Littorina_sitkana","Type 13",138,0.0875,1577.14285714286,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to blur and glare"
+"2014-06-24_YB-BEq3",2014-06-24,2014-06-24,"YB","BE","3","Ls","Littorina_sitkana","Type 13",33,0.0875,377.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-BEq6",2014-06-24,2014-06-24,"YB","BE","6","Ls","Littorina_sitkana","Type 13",52,0.0875,594.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to glare."
+"2014-06-24_YB-BEq2",2014-06-24,2014-06-24,"YB","BE","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to blur and glare"
+"2014-06-24_YB-BEq3",2014-06-24,2014-06-24,"YB","BE","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-BEq6",2014-06-24,2014-06-24,"YB","BE","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to glare."
+"2014-06-24_YB-BEq2",2014-06-24,2014-06-24,"YB","BE","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to blur and glare"
+"2014-06-24_YB-BEq3",2014-06-24,2014-06-24,"YB","BE","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-BEq6",2014-06-24,2014-06-24,"YB","BE","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to glare."
+"2014-06-24_YB-BEq2",2014-06-24,2014-06-24,"YB","BE","2","Myt","Mytilus_spp","Type 7",13,0.0875,148.571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to blur and glare"
+"2014-06-24_YB-BEq3",2014-06-24,2014-06-24,"YB","BE","3","Myt","Mytilus_spp","Type 7",35,0.0875,400,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-BEq6",2014-06-24,2014-06-24,"YB","BE","6","Myt","Mytilus_spp","Type 7",35,0.0875,400,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to glare."
+"2014-06-24_YB-BEq2",2014-06-24,2014-06-24,"YB","BE","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to blur and glare"
+"2014-06-24_YB-BEq3",2014-06-24,2014-06-24,"YB","BE","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-BEq6",2014-06-24,2014-06-24,"YB","BE","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to glare."
+"2014-06-24_YB-BEq2",2014-06-24,2014-06-24,"YB","BE","2","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to blur and glare"
+"2014-06-24_YB-BEq3",2014-06-24,2014-06-24,"YB","BE","3","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-BEq6",2014-06-24,2014-06-24,"YB","BE","6","Mt","Mytilus_trossulus","Type 15",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to glare."
+"2014-06-24_YB-BEq2",2014-06-24,2014-06-24,"YB","BE","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to blur and glare"
+"2014-06-24_YB-BEq3",2014-06-24,2014-06-24,"YB","BE","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-BEq6",2014-06-24,2014-06-24,"YB","BE","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to glare."
+"2014-06-24_YB-BEq2",2014-06-24,2014-06-24,"YB","BE","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to blur and glare"
+"2014-06-24_YB-BEq3",2014-06-24,2014-06-24,"YB","BE","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-BEq6",2014-06-24,2014-06-24,"YB","BE","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to glare."
+"2014-06-24_YB-BEq2",2014-06-24,2014-06-24,"YB","BE","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to blur and glare"
+"2014-06-24_YB-BEq3",2014-06-24,2014-06-24,"YB","BE","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-BEq6",2014-06-24,2014-06-24,"YB","BE","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to glare."
+"2014-06-24_YB-BEq2",2014-06-24,2014-06-24,"YB","BE","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to blur and glare"
+"2014-06-24_YB-BEq3",2014-06-24,2014-06-24,"YB","BE","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-BEq6",2014-06-24,2014-06-24,"YB","BE","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to glare."
+"2014-06-24_YB-BEq2",2014-06-24,2014-06-24,"YB","BE","2","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to blur and glare"
+"2014-06-24_YB-BEq3",2014-06-24,2014-06-24,"YB","BE","3","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-BEq6",2014-06-24,2014-06-24,"YB","BE","6","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to glare."
+"2014-06-24_YB-BEq2",2014-06-24,2014-06-24,"YB","BE","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to blur and glare"
+"2014-06-24_YB-BEq3",2014-06-24,2014-06-24,"YB","BE","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-BEq6",2014-06-24,2014-06-24,"YB","BE","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to glare."
+"2014-06-24_YB-BEq2",2014-06-24,2014-06-24,"YB","BE","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to blur and glare"
+"2014-06-24_YB-BEq3",2014-06-24,2014-06-24,"YB","BE","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-BEq6",2014-06-24,2014-06-24,"YB","BE","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to glare."
+"2014-06-24_YB-BEq2",2014-06-24,2014-06-24,"YB","BE","2","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to blur and glare"
+"2014-06-24_YB-BEq3",2014-06-24,2014-06-24,"YB","BE","3","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-BEq6",2014-06-24,2014-06-24,"YB","BE","6","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to glare."
+"2014-06-24_YB-BEq2",2014-06-24,2014-06-24,"YB","BE","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to blur and glare"
+"2014-06-24_YB-BEq3",2014-06-24,2014-06-24,"YB","BE","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-BEq6",2014-06-24,2014-06-24,"YB","BE","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to glare."
+"2014-06-24_YB-BEq2",2014-06-24,2014-06-24,"YB","BE","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to blur and glare"
+"2014-06-24_YB-BEq3",2014-06-24,2014-06-24,"YB","BE","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-BEq6",2014-06-24,2014-06-24,"YB","BE","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to glare."
+"2014-06-24_YB-BEq2",2014-06-24,2014-06-24,"YB","BE","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to blur and glare"
+"2014-06-24_YB-BEq3",2014-06-24,2014-06-24,"YB","BE","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-BEq6",2014-06-24,2014-06-24,"YB","BE","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to glare."
+"2014-06-24_YB-BFq1",2014-06-24,2014-06-24,"YB","BF","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-BFq4",2014-06-24,2014-06-24,"YB","BF","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-BFq9",2014-06-24,2014-06-24,"YB","BF","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","40%","large amount of glare"
+"2014-06-24_YB-BFq1",2014-06-24,2014-06-24,"YB","BF","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-BFq4",2014-06-24,2014-06-24,"YB","BF","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-BFq9",2014-06-24,2014-06-24,"YB","BF","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","40%","large amount of glare"
+"2014-06-24_YB-BFq1",2014-06-24,2014-06-24,"YB","BF","1","Bg","Balanus_glandula","Type 1",764,0.0875,8731.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-BFq4",2014-06-24,2014-06-24,"YB","BF","4","Bg","Balanus_glandula","Type 1",673,0.0875,7691.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-BFq9",2014-06-24,2014-06-24,"YB","BF","9","Bg","Balanus_glandula","Type 1",153,0.0875,1748.57142857143,NA,"Julia Bingham","Finished","Full","Full","40%","large amount of glare"
+"2014-06-24_YB-BFq1",2014-06-24,2014-06-24,"YB","BF","1","BgD","Balanus_glandula_(dead)","Type 2",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-BFq4",2014-06-24,2014-06-24,"YB","BF","4","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-BFq9",2014-06-24,2014-06-24,"YB","BF","9","BgD","Balanus_glandula_(dead)","Type 2",61,0.0875,697.142857142857,NA,"Julia Bingham","Finished","Full","Full","40%","large amount of glare"
+"2014-06-24_YB-BFq1",2014-06-24,2014-06-24,"YB","BF","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-BFq4",2014-06-24,2014-06-24,"YB","BF","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-BFq9",2014-06-24,2014-06-24,"YB","BF","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","40%","large amount of glare"
+"2014-06-24_YB-BFq1",2014-06-24,2014-06-24,"YB","BF","1","Cth","Chthamalus_dalli","Type 3",48,0.0875,548.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-BFq4",2014-06-24,2014-06-24,"YB","BF","4","Cth","Chthamalus_dalli","Type 3",63,0.0875,720,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-BFq9",2014-06-24,2014-06-24,"YB","BF","9","Cth","Chthamalus_dalli","Type 3",6,0.0875,68.5714285714286,NA,"Julia Bingham","Finished","Full","Full","40%","large amount of glare"
+"2014-06-24_YB-BFq1",2014-06-24,2014-06-24,"YB","BF","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-BFq4",2014-06-24,2014-06-24,"YB","BF","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-BFq9",2014-06-24,2014-06-24,"YB","BF","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","40%","large amount of glare"
+"2014-06-24_YB-BFq1",2014-06-24,2014-06-24,"YB","BF","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-BFq4",2014-06-24,2014-06-24,"YB","BF","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-BFq9",2014-06-24,2014-06-24,"YB","BF","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","40%","large amount of glare"
+"2014-06-24_YB-BFq1",2014-06-24,2014-06-24,"YB","BF","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-BFq4",2014-06-24,2014-06-24,"YB","BF","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-BFq9",2014-06-24,2014-06-24,"YB","BF","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","40%","large amount of glare"
+"2014-06-24_YB-BFq1",2014-06-24,2014-06-24,"YB","BF","1","Lim","Limpets","Type 12",427,0.0875,4880,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-BFq4",2014-06-24,2014-06-24,"YB","BF","4","Lim","Limpets","Type 12",274,0.0875,3131.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-BFq9",2014-06-24,2014-06-24,"YB","BF","9","Lim","Limpets","Type 12",127,0.0875,1451.42857142857,NA,"Julia Bingham","Finished","Full","Full","40%","large amount of glare"
+"2014-06-24_YB-BFq1",2014-06-24,2014-06-24,"YB","BF","1","Ls","Littorina_sitkana","Type 13",314,0.0875,3588.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-BFq4",2014-06-24,2014-06-24,"YB","BF","4","Ls","Littorina_sitkana","Type 13",59,0.0875,674.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-BFq9",2014-06-24,2014-06-24,"YB","BF","9","Ls","Littorina_sitkana","Type 13",334,0.0875,3817.14285714286,NA,"Julia Bingham","Finished","Full","Full","40%","large amount of glare"
+"2014-06-24_YB-BFq1",2014-06-24,2014-06-24,"YB","BF","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-BFq4",2014-06-24,2014-06-24,"YB","BF","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-BFq9",2014-06-24,2014-06-24,"YB","BF","9","Mc","Mytilus_californianus","Type 17",6,0.0875,68.5714285714286,NA,"Julia Bingham","Finished","Full","Full","40%","large amount of glare"
+"2014-06-24_YB-BFq1",2014-06-24,2014-06-24,"YB","BF","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-BFq4",2014-06-24,2014-06-24,"YB","BF","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-BFq9",2014-06-24,2014-06-24,"YB","BF","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","40%","large amount of glare"
+"2014-06-24_YB-BFq1",2014-06-24,2014-06-24,"YB","BF","1","Myt","Mytilus_spp","Type 7",120,0.0875,1371.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-BFq4",2014-06-24,2014-06-24,"YB","BF","4","Myt","Mytilus_spp","Type 7",142,0.0875,1622.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-BFq9",2014-06-24,2014-06-24,"YB","BF","9","Myt","Mytilus_spp","Type 7",353,0.0875,4034.28571428571,NA,"Julia Bingham","Finished","Full","Full","40%","large amount of glare"
+"2014-06-24_YB-BFq1",2014-06-24,2014-06-24,"YB","BF","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-BFq4",2014-06-24,2014-06-24,"YB","BF","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-BFq9",2014-06-24,2014-06-24,"YB","BF","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","40%","large amount of glare"
+"2014-06-24_YB-BFq1",2014-06-24,2014-06-24,"YB","BF","1","Mt","Mytilus_trossulus","Type 15",234,0.0875,2674.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-BFq4",2014-06-24,2014-06-24,"YB","BF","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-BFq9",2014-06-24,2014-06-24,"YB","BF","9","Mt","Mytilus_trossulus","Type 15",25,0.0875,285.714285714286,NA,"Julia Bingham","Finished","Full","Full","40%","large amount of glare"
+"2014-06-24_YB-BFq1",2014-06-24,2014-06-24,"YB","BF","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-BFq4",2014-06-24,2014-06-24,"YB","BF","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-BFq9",2014-06-24,2014-06-24,"YB","BF","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","40%","large amount of glare"
+"2014-06-24_YB-BFq1",2014-06-24,2014-06-24,"YB","BF","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-BFq4",2014-06-24,2014-06-24,"YB","BF","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-BFq9",2014-06-24,2014-06-24,"YB","BF","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","40%","large amount of glare"
+"2014-06-24_YB-BFq1",2014-06-24,2014-06-24,"YB","BF","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-BFq4",2014-06-24,2014-06-24,"YB","BF","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-BFq9",2014-06-24,2014-06-24,"YB","BF","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","40%","large amount of glare"
+"2014-06-24_YB-BFq1",2014-06-24,2014-06-24,"YB","BF","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-BFq4",2014-06-24,2014-06-24,"YB","BF","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-BFq9",2014-06-24,2014-06-24,"YB","BF","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","40%","large amount of glare"
+"2014-06-24_YB-BFq1",2014-06-24,2014-06-24,"YB","BF","1","No","Nucella_ostrina","Type 9",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-BFq4",2014-06-24,2014-06-24,"YB","BF","4","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-BFq9",2014-06-24,2014-06-24,"YB","BF","9","No","Nucella_ostrina","Type 9",7,0.0875,80,NA,"Julia Bingham","Finished","Full","Full","40%","large amount of glare"
+"2014-06-24_YB-BFq1",2014-06-24,2014-06-24,"YB","BF","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-BFq4",2014-06-24,2014-06-24,"YB","BF","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-BFq9",2014-06-24,2014-06-24,"YB","BF","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","40%","large amount of glare"
+"2014-06-24_YB-BFq1",2014-06-24,2014-06-24,"YB","BF","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-BFq4",2014-06-24,2014-06-24,"YB","BF","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-BFq9",2014-06-24,2014-06-24,"YB","BF","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","40%","large amount of glare"
+"2014-06-24_YB-BFq1",2014-06-24,2014-06-24,"YB","BF","1","Pp","Pollicipes_polymerus","Type 11",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-BFq4",2014-06-24,2014-06-24,"YB","BF","4","Pp","Pollicipes_polymerus","Type 11",10,0.0875,114.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-BFq9",2014-06-24,2014-06-24,"YB","BF","9","Pp","Pollicipes_polymerus","Type 11",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Full","40%","large amount of glare"
+"2014-06-24_YB-BFq1",2014-06-24,2014-06-24,"YB","BF","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-BFq4",2014-06-24,2014-06-24,"YB","BF","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-BFq9",2014-06-24,2014-06-24,"YB","BF","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","40%","large amount of glare"
+"2014-06-24_YB-BFq1",2014-06-24,2014-06-24,"YB","BF","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-BFq4",2014-06-24,2014-06-24,"YB","BF","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-BFq9",2014-06-24,2014-06-24,"YB","BF","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","40%","large amount of glare"
+"2014-06-24_YB-BFq1",2014-06-24,2014-06-24,"YB","BF","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-BFq4",2014-06-24,2014-06-24,"YB","BF","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2014-06-24_YB-BFq9",2014-06-24,2014-06-24,"YB","BF","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","40%","large amount of glare"
+"2014-06-24_YB-Cq2",2014-06-24,2014-06-24,"YB","C","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Cq4",2014-06-24,2014-06-24,"YB","C","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Cq6",2014-06-24,2014-06-24,"YB","C","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Cq2",2014-06-24,2014-06-24,"YB","C","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Cq4",2014-06-24,2014-06-24,"YB","C","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Cq6",2014-06-24,2014-06-24,"YB","C","6","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Cq2",2014-06-24,2014-06-24,"YB","C","2","Bg","Balanus_glandula","Type 1",236,0.015625,15104,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Cq4",2014-06-24,2014-06-24,"YB","C","4","Bg","Balanus_glandula","Type 1",186,0.015625,11904,"c","Beatriz Vaca","Finished","Cropped","Cropped","3%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Cq6",2014-06-24,2014-06-24,"YB","C","6","Bg","Balanus_glandula","Type 1",222,0.015625,14208,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Cq2",2014-06-24,2014-06-24,"YB","C","2","BgD","Balanus_glandula_(dead)","Type 2",2,0.015625,128,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Cq4",2014-06-24,2014-06-24,"YB","C","4","BgD","Balanus_glandula_(dead)","Type 2",7,0.015625,448,"c","Beatriz Vaca","Finished","Cropped","Cropped","3%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Cq6",2014-06-24,2014-06-24,"YB","C","6","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Cq2",2014-06-24,2014-06-24,"YB","C","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Cq4",2014-06-24,2014-06-24,"YB","C","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Cq6",2014-06-24,2014-06-24,"YB","C","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Cq2",2014-06-24,2014-06-24,"YB","C","2","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Cq4",2014-06-24,2014-06-24,"YB","C","4","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","3%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Cq6",2014-06-24,2014-06-24,"YB","C","6","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Cq2",2014-06-24,2014-06-24,"YB","C","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Cq4",2014-06-24,2014-06-24,"YB","C","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","3%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Cq6",2014-06-24,2014-06-24,"YB","C","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Cq2",2014-06-24,2014-06-24,"YB","C","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Cq4",2014-06-24,2014-06-24,"YB","C","4","Emp","Emplectonema worm","Type 23",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Cq6",2014-06-24,2014-06-24,"YB","C","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Cq2",2014-06-24,2014-06-24,"YB","C","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Cq4",2014-06-24,2014-06-24,"YB","C","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Cq6",2014-06-24,2014-06-24,"YB","C","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Cq2",2014-06-24,2014-06-24,"YB","C","2","Lim","Limpets","Type 12",188,0.0875,2148.57142857143,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Cq4",2014-06-24,2014-06-24,"YB","C","4","Lim","Limpets","Type 12",182,0.0875,2080,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Cq6",2014-06-24,2014-06-24,"YB","C","6","Lim","Limpets","Type 12",255,0.0875,2914.28571428571,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Cq2",2014-06-24,2014-06-24,"YB","C","2","Ls","Littorina_sitkana","Type 13",67,0.0875,765.714285714286,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Cq4",2014-06-24,2014-06-24,"YB","C","4","Ls","Littorina_sitkana","Type 13",57,0.0875,651.428571428571,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Cq6",2014-06-24,2014-06-24,"YB","C","6","Ls","Littorina_sitkana","Type 13",39,0.0875,445.714285714286,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Cq2",2014-06-24,2014-06-24,"YB","C","2","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Cq4",2014-06-24,2014-06-24,"YB","C","4","Mc","Mytilus_californianus","Type 17",1,0.015625,64,"c","Beatriz Vaca","Finished","Cropped","Cropped","3%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Cq6",2014-06-24,2014-06-24,"YB","C","6","Mc","Mytilus_californianus","Type 17",1,0.015625,64,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Cq2",2014-06-24,2014-06-24,"YB","C","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Cq4",2014-06-24,2014-06-24,"YB","C","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","3%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Cq6",2014-06-24,2014-06-24,"YB","C","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Cq2",2014-06-24,2014-06-24,"YB","C","2","Myt","Mytilus_spp","Type 7",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Cq4",2014-06-24,2014-06-24,"YB","C","4","Myt","Mytilus_spp","Type 7",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","3%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Cq6",2014-06-24,2014-06-24,"YB","C","6","Myt","Mytilus_spp","Type 7",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Cq2",2014-06-24,2014-06-24,"YB","C","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Cq4",2014-06-24,2014-06-24,"YB","C","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","3%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Cq6",2014-06-24,2014-06-24,"YB","C","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Cq2",2014-06-24,2014-06-24,"YB","C","2","Mt","Mytilus_trossulus","Type 15",182,0.015625,11648,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Cq4",2014-06-24,2014-06-24,"YB","C","4","Mt","Mytilus_trossulus","Type 15",125,0.015625,8000,"c","Beatriz Vaca","Finished","Cropped","Cropped","3%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Cq6",2014-06-24,2014-06-24,"YB","C","6","Mt","Mytilus_trossulus","Type 15",130,0.015625,8320,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Cq2",2014-06-24,2014-06-24,"YB","C","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Cq4",2014-06-24,2014-06-24,"YB","C","4","MtD","Mytilus_trossulus_(dead)","Type 16",2,0.015625,128,"c","Beatriz Vaca","Finished","Cropped","Cropped","3%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Cq6",2014-06-24,2014-06-24,"YB","C","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Cq2",2014-06-24,2014-06-24,"YB","C","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Cq4",2014-06-24,2014-06-24,"YB","C","4","Ner","Nereis_worm","Type 24",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Cq6",2014-06-24,2014-06-24,"YB","C","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Cq2",2014-06-24,2014-06-24,"YB","C","2","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Cq4",2014-06-24,2014-06-24,"YB","C","4","Nc","Nucella_canaliculata","Type 10",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Cq6",2014-06-24,2014-06-24,"YB","C","6","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Cq2",2014-06-24,2014-06-24,"YB","C","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Cq4",2014-06-24,2014-06-24,"YB","C","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Cq6",2014-06-24,2014-06-24,"YB","C","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Cq2",2014-06-24,2014-06-24,"YB","C","2","No","Nucella_ostrina","Type 9",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Cq4",2014-06-24,2014-06-24,"YB","C","4","No","Nucella_ostrina","Type 9",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Cq6",2014-06-24,2014-06-24,"YB","C","6","No","Nucella_ostrina","Type 9",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Cq2",2014-06-24,2014-06-24,"YB","C","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Cq4",2014-06-24,2014-06-24,"YB","C","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Cq6",2014-06-24,2014-06-24,"YB","C","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Cq2",2014-06-24,2014-06-24,"YB","C","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Cq4",2014-06-24,2014-06-24,"YB","C","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Cq6",2014-06-24,2014-06-24,"YB","C","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Cq2",2014-06-24,2014-06-24,"YB","C","2","Pp","Pollicipes_polymerus","Type 11",29,0.0875,331.428571428571,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Cq4",2014-06-24,2014-06-24,"YB","C","4","Pp","Pollicipes_polymerus","Type 11",33,0.0875,377.142857142857,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Cq6",2014-06-24,2014-06-24,"YB","C","6","Pp","Pollicipes_polymerus","Type 11",28,0.0875,320,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Cq2",2014-06-24,2014-06-24,"YB","C","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Cq4",2014-06-24,2014-06-24,"YB","C","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Cq6",2014-06-24,2014-06-24,"YB","C","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Cq2",2014-06-24,2014-06-24,"YB","C","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Cq4",2014-06-24,2014-06-24,"YB","C","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Cq6",2014-06-24,2014-06-24,"YB","C","6","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Cq2",2014-06-24,2014-06-24,"YB","C","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Cq4",2014-06-24,2014-06-24,"YB","C","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Cq6",2014-06-24,2014-06-24,"YB","C","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%","All counts likely low due to glare and poor photo resolution."
+"2014-06-24_YB-Dq3",2014-06-24,2014-06-24,"YB","D","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","7%","Counts likely low due to poor resolution - everything is shades of blue."
+"2014-06-24_YB-Dq4",2014-06-24,2014-06-24,"YB","D","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%","Barnacle counts likely low due to blue tint "
+"2014-06-24_YB-Dq5",2014-06-24,2014-06-24,"YB","D","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Counts may be low due to poor resolution (picture is blue)."
+"2014-06-24_YB-Dq3",2014-06-24,2014-06-24,"YB","D","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","7%","Counts likely low due to poor resolution - everything is shades of blue."
+"2014-06-24_YB-Dq4",2014-06-24,2014-06-24,"YB","D","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%","Barnacle counts likely low due to blue tint "
+"2014-06-24_YB-Dq5",2014-06-24,2014-06-24,"YB","D","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Counts may be low due to poor resolution (picture is blue)."
+"2014-06-24_YB-Dq3",2014-06-24,2014-06-24,"YB","D","3","Bg","Balanus_glandula","Type 1",266,0.015625,17024,"c","Beatriz Vaca","Finished","Cropped","Cropped","7%","Counts likely low due to poor resolution - everything is shades of blue."
+"2014-06-24_YB-Dq4",2014-06-24,2014-06-24,"YB","D","4","Bg","Balanus_glandula","Type 1",425,0.015625,27200,"c","Stephanie Merhoff","Finished","Full","Cropped","1%","Barnacle counts likely low due to blue tint "
+"2014-06-24_YB-Dq5",2014-06-24,2014-06-24,"YB","D","5","Bg","Balanus_glandula","Type 1",371,0.015625,23744,"c","Beatriz Vaca","Finished","Full","Cropped","0%","Counts may be low due to poor resolution (picture is blue)."
+"2014-06-24_YB-Dq3",2014-06-24,2014-06-24,"YB","D","3","BgD","Balanus_glandula_(dead)","Type 2",1,0.015625,64,"c","Beatriz Vaca","Finished","Cropped","Cropped","7%","Counts likely low due to poor resolution - everything is shades of blue."
+"2014-06-24_YB-Dq4",2014-06-24,2014-06-24,"YB","D","4","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","1%","Barnacle counts likely low due to blue tint "
+"2014-06-24_YB-Dq5",2014-06-24,2014-06-24,"YB","D","5","BgD","Balanus_glandula_(dead)","Type 2",1,0.015625,64,"c","Beatriz Vaca","Finished","Full","Cropped","0%","Counts may be low due to poor resolution (picture is blue)."
+"2014-06-24_YB-Dq3",2014-06-24,2014-06-24,"YB","D","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","7%","Counts likely low due to poor resolution - everything is shades of blue."
+"2014-06-24_YB-Dq4",2014-06-24,2014-06-24,"YB","D","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%","Barnacle counts likely low due to blue tint "
+"2014-06-24_YB-Dq5",2014-06-24,2014-06-24,"YB","D","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Counts may be low due to poor resolution (picture is blue)."
+"2014-06-24_YB-Dq3",2014-06-24,2014-06-24,"YB","D","3","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","7%","Counts likely low due to poor resolution - everything is shades of blue."
+"2014-06-24_YB-Dq4",2014-06-24,2014-06-24,"YB","D","4","Cth","Chthamalus_dalli","Type 3",2,0.015625,128,"c","Stephanie Merhoff","Finished","Full","Cropped","1%","Barnacle counts likely low due to blue tint "
+"2014-06-24_YB-Dq5",2014-06-24,2014-06-24,"YB","D","5","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","0%","Counts may be low due to poor resolution (picture is blue)."
+"2014-06-24_YB-Dq3",2014-06-24,2014-06-24,"YB","D","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","7%","Counts likely low due to poor resolution - everything is shades of blue."
+"2014-06-24_YB-Dq4",2014-06-24,2014-06-24,"YB","D","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","1%","Barnacle counts likely low due to blue tint "
+"2014-06-24_YB-Dq5",2014-06-24,2014-06-24,"YB","D","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","0%","Counts may be low due to poor resolution (picture is blue)."
+"2014-06-24_YB-Dq3",2014-06-24,2014-06-24,"YB","D","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","7%","Counts likely low due to poor resolution - everything is shades of blue."
+"2014-06-24_YB-Dq4",2014-06-24,2014-06-24,"YB","D","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%","Barnacle counts likely low due to blue tint "
+"2014-06-24_YB-Dq5",2014-06-24,2014-06-24,"YB","D","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Counts may be low due to poor resolution (picture is blue)."
+"2014-06-24_YB-Dq3",2014-06-24,2014-06-24,"YB","D","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","7%","Counts likely low due to poor resolution - everything is shades of blue."
+"2014-06-24_YB-Dq4",2014-06-24,2014-06-24,"YB","D","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%","Barnacle counts likely low due to blue tint "
+"2014-06-24_YB-Dq5",2014-06-24,2014-06-24,"YB","D","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Counts may be low due to poor resolution (picture is blue)."
+"2014-06-24_YB-Dq3",2014-06-24,2014-06-24,"YB","D","3","Lim","Limpets","Type 12",179,0.0875,2045.71428571429,NA,"Beatriz Vaca","Finished","Cropped","Cropped","7%","Counts likely low due to poor resolution - everything is shades of blue."
+"2014-06-24_YB-Dq4",2014-06-24,2014-06-24,"YB","D","4","Lim","Limpets","Type 12",44,0.0875,502.857142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%","Barnacle counts likely low due to blue tint "
+"2014-06-24_YB-Dq5",2014-06-24,2014-06-24,"YB","D","5","Lim","Limpets","Type 12",322,0.0875,3680,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Counts may be low due to poor resolution (picture is blue)."
+"2014-06-24_YB-Dq3",2014-06-24,2014-06-24,"YB","D","3","Ls","Littorina_sitkana","Type 13",552,0.0875,6308.57142857143,NA,"Beatriz Vaca","Finished","Cropped","Cropped","7%","Counts likely low due to poor resolution - everything is shades of blue."
+"2014-06-24_YB-Dq4",2014-06-24,2014-06-24,"YB","D","4","Ls","Littorina_sitkana","Type 13",604,0.0875,6902.85714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%","Barnacle counts likely low due to blue tint "
+"2014-06-24_YB-Dq5",2014-06-24,2014-06-24,"YB","D","5","Ls","Littorina_sitkana","Type 13",658,0.0875,7520,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Counts may be low due to poor resolution (picture is blue)."
+"2014-06-24_YB-Dq3",2014-06-24,2014-06-24,"YB","D","3","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","7%","Counts likely low due to poor resolution - everything is shades of blue."
+"2014-06-24_YB-Dq4",2014-06-24,2014-06-24,"YB","D","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%","Barnacle counts likely low due to blue tint "
+"2014-06-24_YB-Dq5",2014-06-24,2014-06-24,"YB","D","5","Mc","Mytilus_californianus","Type 17",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Counts may be low due to poor resolution (picture is blue)."
+"2014-06-24_YB-Dq3",2014-06-24,2014-06-24,"YB","D","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","7%","Counts likely low due to poor resolution - everything is shades of blue."
+"2014-06-24_YB-Dq4",2014-06-24,2014-06-24,"YB","D","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%","Barnacle counts likely low due to blue tint "
+"2014-06-24_YB-Dq5",2014-06-24,2014-06-24,"YB","D","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Counts may be low due to poor resolution (picture is blue)."
+"2014-06-24_YB-Dq3",2014-06-24,2014-06-24,"YB","D","3","Myt","Mytilus_spp","Type 7",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","7%","Counts likely low due to poor resolution - everything is shades of blue."
+"2014-06-24_YB-Dq4",2014-06-24,2014-06-24,"YB","D","4","Myt","Mytilus_spp","Type 7",271,0.0875,3097.14285714286,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%","Barnacle counts likely low due to blue tint "
+"2014-06-24_YB-Dq5",2014-06-24,2014-06-24,"YB","D","5","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Counts may be low due to poor resolution (picture is blue)."
+"2014-06-24_YB-Dq3",2014-06-24,2014-06-24,"YB","D","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","7%","Counts likely low due to poor resolution - everything is shades of blue."
+"2014-06-24_YB-Dq4",2014-06-24,2014-06-24,"YB","D","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%","Barnacle counts likely low due to blue tint "
+"2014-06-24_YB-Dq5",2014-06-24,2014-06-24,"YB","D","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Counts may be low due to poor resolution (picture is blue)."
+"2014-06-24_YB-Dq3",2014-06-24,2014-06-24,"YB","D","3","Mt","Mytilus_trossulus","Type 15",149,0.015625,9536,"c","Beatriz Vaca","Finished","Cropped","Cropped","7%","Counts likely low due to poor resolution - everything is shades of blue."
+"2014-06-24_YB-Dq4",2014-06-24,2014-06-24,"YB","D","4","Mt","Mytilus_trossulus","Type 15",6,0.0875,68.5714285714286,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%","Barnacle counts likely low due to blue tint "
+"2014-06-24_YB-Dq5",2014-06-24,2014-06-24,"YB","D","5","Mt","Mytilus_trossulus","Type 15",484,0.0875,5531.42857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Counts may be low due to poor resolution (picture is blue)."
+"2014-06-24_YB-Dq3",2014-06-24,2014-06-24,"YB","D","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","7%","Counts likely low due to poor resolution - everything is shades of blue."
+"2014-06-24_YB-Dq4",2014-06-24,2014-06-24,"YB","D","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%","Barnacle counts likely low due to blue tint "
+"2014-06-24_YB-Dq5",2014-06-24,2014-06-24,"YB","D","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Counts may be low due to poor resolution (picture is blue)."
+"2014-06-24_YB-Dq3",2014-06-24,2014-06-24,"YB","D","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","7%","Counts likely low due to poor resolution - everything is shades of blue."
+"2014-06-24_YB-Dq4",2014-06-24,2014-06-24,"YB","D","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%","Barnacle counts likely low due to blue tint "
+"2014-06-24_YB-Dq5",2014-06-24,2014-06-24,"YB","D","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Counts may be low due to poor resolution (picture is blue)."
+"2014-06-24_YB-Dq3",2014-06-24,2014-06-24,"YB","D","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","7%","Counts likely low due to poor resolution - everything is shades of blue."
+"2014-06-24_YB-Dq4",2014-06-24,2014-06-24,"YB","D","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%","Barnacle counts likely low due to blue tint "
+"2014-06-24_YB-Dq5",2014-06-24,2014-06-24,"YB","D","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Counts may be low due to poor resolution (picture is blue)."
+"2014-06-24_YB-Dq3",2014-06-24,2014-06-24,"YB","D","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","7%","Counts likely low due to poor resolution - everything is shades of blue."
+"2014-06-24_YB-Dq4",2014-06-24,2014-06-24,"YB","D","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%","Barnacle counts likely low due to blue tint "
+"2014-06-24_YB-Dq5",2014-06-24,2014-06-24,"YB","D","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Counts may be low due to poor resolution (picture is blue)."
+"2014-06-24_YB-Dq3",2014-06-24,2014-06-24,"YB","D","3","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","7%","Counts likely low due to poor resolution - everything is shades of blue."
+"2014-06-24_YB-Dq4",2014-06-24,2014-06-24,"YB","D","4","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%","Barnacle counts likely low due to blue tint "
+"2014-06-24_YB-Dq5",2014-06-24,2014-06-24,"YB","D","5","No","Nucella_ostrina","Type 9",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Counts may be low due to poor resolution (picture is blue)."
+"2014-06-24_YB-Dq3",2014-06-24,2014-06-24,"YB","D","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","7%","Counts likely low due to poor resolution - everything is shades of blue."
+"2014-06-24_YB-Dq4",2014-06-24,2014-06-24,"YB","D","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%","Barnacle counts likely low due to blue tint "
+"2014-06-24_YB-Dq5",2014-06-24,2014-06-24,"YB","D","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Counts may be low due to poor resolution (picture is blue)."
+"2014-06-24_YB-Dq3",2014-06-24,2014-06-24,"YB","D","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","7%","Counts likely low due to poor resolution - everything is shades of blue."
+"2014-06-24_YB-Dq4",2014-06-24,2014-06-24,"YB","D","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%","Barnacle counts likely low due to blue tint "
+"2014-06-24_YB-Dq5",2014-06-24,2014-06-24,"YB","D","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Counts may be low due to poor resolution (picture is blue)."
+"2014-06-24_YB-Dq3",2014-06-24,2014-06-24,"YB","D","3","Pp","Pollicipes_polymerus","Type 11",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","7%","Counts likely low due to poor resolution - everything is shades of blue."
+"2014-06-24_YB-Dq4",2014-06-24,2014-06-24,"YB","D","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%","Barnacle counts likely low due to blue tint "
+"2014-06-24_YB-Dq5",2014-06-24,2014-06-24,"YB","D","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Counts may be low due to poor resolution (picture is blue)."
+"2014-06-24_YB-Dq3",2014-06-24,2014-06-24,"YB","D","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","7%","Counts likely low due to poor resolution - everything is shades of blue."
+"2014-06-24_YB-Dq4",2014-06-24,2014-06-24,"YB","D","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%","Barnacle counts likely low due to blue tint "
+"2014-06-24_YB-Dq5",2014-06-24,2014-06-24,"YB","D","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Counts may be low due to poor resolution (picture is blue)."
+"2014-06-24_YB-Dq3",2014-06-24,2014-06-24,"YB","D","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","7%","Counts likely low due to poor resolution - everything is shades of blue."
+"2014-06-24_YB-Dq4",2014-06-24,2014-06-24,"YB","D","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%","Barnacle counts likely low due to blue tint "
+"2014-06-24_YB-Dq5",2014-06-24,2014-06-24,"YB","D","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Counts may be low due to poor resolution (picture is blue)."
+"2014-06-24_YB-Dq3",2014-06-24,2014-06-24,"YB","D","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","7%","Counts likely low due to poor resolution - everything is shades of blue."
+"2014-06-24_YB-Dq4",2014-06-24,2014-06-24,"YB","D","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%","Barnacle counts likely low due to blue tint "
+"2014-06-24_YB-Dq5",2014-06-24,2014-06-24,"YB","D","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Counts may be low due to poor resolution (picture is blue)."
+"2014-06-24_YB-Eq3",2014-06-24,2014-06-24,"YB","E","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","counts may be low due to glare and blur"
+"2014-06-24_YB-Eq4",2014-06-24,2014-06-24,"YB","E","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","0%","All counts may be low due to glare and blue color; quadrat appears to be entirely under water"
+"2014-06-24_YB-Eq8",2014-06-24,2014-06-24,"YB","E","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Full","10%","Counts likely low due to blur and glare"
+"2014-06-24_YB-Eq3",2014-06-24,2014-06-24,"YB","E","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","counts may be low due to glare and blur"
+"2014-06-24_YB-Eq4",2014-06-24,2014-06-24,"YB","E","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","0%","All counts may be low due to glare and blue color; quadrat appears to be entirely under water"
+"2014-06-24_YB-Eq8",2014-06-24,2014-06-24,"YB","E","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Full","10%","Counts likely low due to blur and glare"
+"2014-06-24_YB-Eq3",2014-06-24,2014-06-24,"YB","E","3","Bg","Balanus_glandula","Type 1",389,0.0875,4445.71428571429,NA,"Stephanie Merhoff","Finished","Full","Full","15%","counts may be low due to glare and blur"
+"2014-06-24_YB-Eq4",2014-06-24,2014-06-24,"YB","E","4","Bg","Balanus_glandula","Type 1",264,0.0875,3017.14285714286,NA,"Stephanie Merhoff","Finished","Full","Full","0%","All counts may be low due to glare and blue color; quadrat appears to be entirely under water"
+"2014-06-24_YB-Eq8",2014-06-24,2014-06-24,"YB","E","8","Bg","Balanus_glandula","Type 1",270,0.0875,3085.71428571429,NA,"Stephanie Merhoff","Finished","Cropped","Full","10%","Counts likely low due to blur and glare"
+"2014-06-24_YB-Eq3",2014-06-24,2014-06-24,"YB","E","3","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","counts may be low due to glare and blur"
+"2014-06-24_YB-Eq4",2014-06-24,2014-06-24,"YB","E","4","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","0%","All counts may be low due to glare and blue color; quadrat appears to be entirely under water"
+"2014-06-24_YB-Eq8",2014-06-24,2014-06-24,"YB","E","8","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Full","10%","Counts likely low due to blur and glare"
+"2014-06-24_YB-Eq3",2014-06-24,2014-06-24,"YB","E","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","counts may be low due to glare and blur"
+"2014-06-24_YB-Eq4",2014-06-24,2014-06-24,"YB","E","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","0%","All counts may be low due to glare and blue color; quadrat appears to be entirely under water"
+"2014-06-24_YB-Eq8",2014-06-24,2014-06-24,"YB","E","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Full","10%","Counts likely low due to blur and glare"
+"2014-06-24_YB-Eq3",2014-06-24,2014-06-24,"YB","E","3","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","counts may be low due to glare and blur"
+"2014-06-24_YB-Eq4",2014-06-24,2014-06-24,"YB","E","4","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","0%","All counts may be low due to glare and blue color; quadrat appears to be entirely under water"
+"2014-06-24_YB-Eq8",2014-06-24,2014-06-24,"YB","E","8","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Full","10%","Counts likely low due to blur and glare"
+"2014-06-24_YB-Eq3",2014-06-24,2014-06-24,"YB","E","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","counts may be low due to glare and blur"
+"2014-06-24_YB-Eq4",2014-06-24,2014-06-24,"YB","E","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","0%","All counts may be low due to glare and blue color; quadrat appears to be entirely under water"
+"2014-06-24_YB-Eq8",2014-06-24,2014-06-24,"YB","E","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Full","10%","Counts likely low due to blur and glare"
+"2014-06-24_YB-Eq3",2014-06-24,2014-06-24,"YB","E","3","Emp","Emplectonema worm","Type 23",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","15%","counts may be low due to glare and blur"
+"2014-06-24_YB-Eq4",2014-06-24,2014-06-24,"YB","E","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","0%","All counts may be low due to glare and blue color; quadrat appears to be entirely under water"
+"2014-06-24_YB-Eq8",2014-06-24,2014-06-24,"YB","E","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Full","10%","Counts likely low due to blur and glare"
+"2014-06-24_YB-Eq3",2014-06-24,2014-06-24,"YB","E","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","counts may be low due to glare and blur"
+"2014-06-24_YB-Eq4",2014-06-24,2014-06-24,"YB","E","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","0%","All counts may be low due to glare and blue color; quadrat appears to be entirely under water"
+"2014-06-24_YB-Eq8",2014-06-24,2014-06-24,"YB","E","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Full","10%","Counts likely low due to blur and glare"
+"2014-06-24_YB-Eq3",2014-06-24,2014-06-24,"YB","E","3","Lim","Limpets","Type 12",15,0.0875,171.428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","15%","counts may be low due to glare and blur"
+"2014-06-24_YB-Eq4",2014-06-24,2014-06-24,"YB","E","4","Lim","Limpets","Type 12",6,0.0875,68.5714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","0%","All counts may be low due to glare and blue color; quadrat appears to be entirely under water"
+"2014-06-24_YB-Eq8",2014-06-24,2014-06-24,"YB","E","8","Lim","Limpets","Type 12",30,0.0875,342.857142857143,NA,"Stephanie Merhoff","Finished","Cropped","Full","10%","Counts likely low due to blur and glare"
+"2014-06-24_YB-Eq3",2014-06-24,2014-06-24,"YB","E","3","Ls","Littorina_sitkana","Type 13",213,0.0875,2434.28571428571,NA,"Stephanie Merhoff","Finished","Full","Full","15%","counts may be low due to glare and blur"
+"2014-06-24_YB-Eq4",2014-06-24,2014-06-24,"YB","E","4","Ls","Littorina_sitkana","Type 13",176,0.0875,2011.42857142857,NA,"Stephanie Merhoff","Finished","Full","Full","0%","All counts may be low due to glare and blue color; quadrat appears to be entirely under water"
+"2014-06-24_YB-Eq8",2014-06-24,2014-06-24,"YB","E","8","Ls","Littorina_sitkana","Type 13",125,0.0875,1428.57142857143,NA,"Stephanie Merhoff","Finished","Cropped","Full","10%","Counts likely low due to blur and glare"
+"2014-06-24_YB-Eq3",2014-06-24,2014-06-24,"YB","E","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","counts may be low due to glare and blur"
+"2014-06-24_YB-Eq4",2014-06-24,2014-06-24,"YB","E","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","0%","All counts may be low due to glare and blue color; quadrat appears to be entirely under water"
+"2014-06-24_YB-Eq8",2014-06-24,2014-06-24,"YB","E","8","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Stephanie Merhoff","Finished","Cropped","Full","10%","Counts likely low due to blur and glare"
+"2014-06-24_YB-Eq3",2014-06-24,2014-06-24,"YB","E","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","counts may be low due to glare and blur"
+"2014-06-24_YB-Eq4",2014-06-24,2014-06-24,"YB","E","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","0%","All counts may be low due to glare and blue color; quadrat appears to be entirely under water"
+"2014-06-24_YB-Eq8",2014-06-24,2014-06-24,"YB","E","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Stephanie Merhoff","Finished","Cropped","Full","10%","Counts likely low due to blur and glare"
+"2014-06-24_YB-Eq3",2014-06-24,2014-06-24,"YB","E","3","Myt","Mytilus_spp","Type 7",461,0.0875,5268.57142857143,NA,"Stephanie Merhoff","Finished","Full","Full","15%","counts may be low due to glare and blur"
+"2014-06-24_YB-Eq4",2014-06-24,2014-06-24,"YB","E","4","Myt","Mytilus_spp","Type 7",1518,0.0875,17348.5714285714,NA,"Stephanie Merhoff","Finished","Full","Full","0%","All counts may be low due to glare and blue color; quadrat appears to be entirely under water"
+"2014-06-24_YB-Eq8",2014-06-24,2014-06-24,"YB","E","8","Myt","Mytilus_spp","Type 7",254,0.015625,16256,"c","Stephanie Merhoff","Finished","Cropped","Full","10%","Counts likely low due to blur and glare"
+"2014-06-24_YB-Eq3",2014-06-24,2014-06-24,"YB","E","3","MytD","Mytilus_spp_(dead)","Type 8",4,0.0875,45.7142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","15%","counts may be low due to glare and blur"
+"2014-06-24_YB-Eq4",2014-06-24,2014-06-24,"YB","E","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","0%","All counts may be low due to glare and blue color; quadrat appears to be entirely under water"
+"2014-06-24_YB-Eq8",2014-06-24,2014-06-24,"YB","E","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Stephanie Merhoff","Finished","Cropped","Full","10%","Counts likely low due to blur and glare"
+"2014-06-24_YB-Eq3",2014-06-24,2014-06-24,"YB","E","3","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","counts may be low due to glare and blur"
+"2014-06-24_YB-Eq4",2014-06-24,2014-06-24,"YB","E","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","0%","All counts may be low due to glare and blue color; quadrat appears to be entirely under water"
+"2014-06-24_YB-Eq8",2014-06-24,2014-06-24,"YB","E","8","Mt","Mytilus_trossulus","Type 15",0,0.015625,0,"c","Stephanie Merhoff","Finished","Cropped","Full","10%","Counts likely low due to blur and glare"
+"2014-06-24_YB-Eq3",2014-06-24,2014-06-24,"YB","E","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","counts may be low due to glare and blur"
+"2014-06-24_YB-Eq4",2014-06-24,2014-06-24,"YB","E","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","0%","All counts may be low due to glare and blue color; quadrat appears to be entirely under water"
+"2014-06-24_YB-Eq8",2014-06-24,2014-06-24,"YB","E","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Stephanie Merhoff","Finished","Cropped","Full","10%","Counts likely low due to blur and glare"
+"2014-06-24_YB-Eq3",2014-06-24,2014-06-24,"YB","E","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","counts may be low due to glare and blur"
+"2014-06-24_YB-Eq4",2014-06-24,2014-06-24,"YB","E","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","0%","All counts may be low due to glare and blue color; quadrat appears to be entirely under water"
+"2014-06-24_YB-Eq8",2014-06-24,2014-06-24,"YB","E","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Full","10%","Counts likely low due to blur and glare"
+"2014-06-24_YB-Eq3",2014-06-24,2014-06-24,"YB","E","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","counts may be low due to glare and blur"
+"2014-06-24_YB-Eq4",2014-06-24,2014-06-24,"YB","E","4","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","0%","All counts may be low due to glare and blue color; quadrat appears to be entirely under water"
+"2014-06-24_YB-Eq8",2014-06-24,2014-06-24,"YB","E","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Full","10%","Counts likely low due to blur and glare"
+"2014-06-24_YB-Eq3",2014-06-24,2014-06-24,"YB","E","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","counts may be low due to glare and blur"
+"2014-06-24_YB-Eq4",2014-06-24,2014-06-24,"YB","E","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","0%","All counts may be low due to glare and blue color; quadrat appears to be entirely under water"
+"2014-06-24_YB-Eq8",2014-06-24,2014-06-24,"YB","E","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Full","10%","Counts likely low due to blur and glare"
+"2014-06-24_YB-Eq3",2014-06-24,2014-06-24,"YB","E","3","No","Nucella_ostrina","Type 9",12,0.0875,137.142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","15%","counts may be low due to glare and blur"
+"2014-06-24_YB-Eq4",2014-06-24,2014-06-24,"YB","E","4","No","Nucella_ostrina","Type 9",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","0%","All counts may be low due to glare and blue color; quadrat appears to be entirely under water"
+"2014-06-24_YB-Eq8",2014-06-24,2014-06-24,"YB","E","8","No","Nucella_ostrina","Type 9",54,0.0875,617.142857142857,NA,"Stephanie Merhoff","Finished","Cropped","Full","10%","Counts likely low due to blur and glare"
+"2014-06-24_YB-Eq3",2014-06-24,2014-06-24,"YB","E","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","counts may be low due to glare and blur"
+"2014-06-24_YB-Eq4",2014-06-24,2014-06-24,"YB","E","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","0%","All counts may be low due to glare and blue color; quadrat appears to be entirely under water"
+"2014-06-24_YB-Eq8",2014-06-24,2014-06-24,"YB","E","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Full","10%","Counts likely low due to blur and glare"
+"2014-06-24_YB-Eq3",2014-06-24,2014-06-24,"YB","E","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","counts may be low due to glare and blur"
+"2014-06-24_YB-Eq4",2014-06-24,2014-06-24,"YB","E","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","0%","All counts may be low due to glare and blue color; quadrat appears to be entirely under water"
+"2014-06-24_YB-Eq8",2014-06-24,2014-06-24,"YB","E","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Full","10%","Counts likely low due to blur and glare"
+"2014-06-24_YB-Eq3",2014-06-24,2014-06-24,"YB","E","3","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","counts may be low due to glare and blur"
+"2014-06-24_YB-Eq4",2014-06-24,2014-06-24,"YB","E","4","Pp","Pollicipes_polymerus","Type 11",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","0%","All counts may be low due to glare and blue color; quadrat appears to be entirely under water"
+"2014-06-24_YB-Eq8",2014-06-24,2014-06-24,"YB","E","8","Pp","Pollicipes_polymerus","Type 11",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Cropped","Full","10%","Counts likely low due to blur and glare"
+"2014-06-24_YB-Eq3",2014-06-24,2014-06-24,"YB","E","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","counts may be low due to glare and blur"
+"2014-06-24_YB-Eq4",2014-06-24,2014-06-24,"YB","E","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","0%","All counts may be low due to glare and blue color; quadrat appears to be entirely under water"
+"2014-06-24_YB-Eq8",2014-06-24,2014-06-24,"YB","E","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Full","10%","Counts likely low due to blur and glare"
+"2014-06-24_YB-Eq3",2014-06-24,2014-06-24,"YB","E","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","counts may be low due to glare and blur"
+"2014-06-24_YB-Eq4",2014-06-24,2014-06-24,"YB","E","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","0%","All counts may be low due to glare and blue color; quadrat appears to be entirely under water"
+"2014-06-24_YB-Eq8",2014-06-24,2014-06-24,"YB","E","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Full","10%","Counts likely low due to blur and glare"
+"2014-06-24_YB-Eq3",2014-06-24,2014-06-24,"YB","E","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","counts may be low due to glare and blur"
+"2014-06-24_YB-Eq4",2014-06-24,2014-06-24,"YB","E","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","0%","All counts may be low due to glare and blue color; quadrat appears to be entirely under water"
+"2014-06-24_YB-Eq8",2014-06-24,2014-06-24,"YB","E","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Full","10%","Counts likely low due to blur and glare"
+"2014-06-24_YB-Fq4",2014-06-24,2014-06-24,"YB","F","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Photo super washed out, barnacles were difficult to count"
+"2014-06-24_YB-Fq5",2014-06-24,2014-06-24,"YB","F","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","4%","Photo super washed out, barnacles were difficult to count"
+"2014-06-24_YB-Fq6",2014-06-24,2014-06-24,"YB","F","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low due to poor resolution."
+"2014-06-24_YB-Fq4",2014-06-24,2014-06-24,"YB","F","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Photo super washed out, barnacles were difficult to count"
+"2014-06-24_YB-Fq5",2014-06-24,2014-06-24,"YB","F","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","4%","Photo super washed out, barnacles were difficult to count"
+"2014-06-24_YB-Fq6",2014-06-24,2014-06-24,"YB","F","6","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low due to poor resolution."
+"2014-06-24_YB-Fq4",2014-06-24,2014-06-24,"YB","F","4","Bg","Balanus_glandula","Type 1",301,0.015625,19264,"c","Isaac Shepard","Finished","Full","Cropped","0%","Photo super washed out, barnacles were difficult to count"
+"2014-06-24_YB-Fq5",2014-06-24,2014-06-24,"YB","F","5","Bg","Balanus_glandula","Type 1",232,0.015625,14848,"c","Isaac Shepard","Finished","Full","Cropped","4%","Photo super washed out, barnacles were difficult to count"
+"2014-06-24_YB-Fq6",2014-06-24,2014-06-24,"YB","F","6","Bg","Balanus_glandula","Type 1",429,0.015625,27456,"c","Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low due to poor resolution."
+"2014-06-24_YB-Fq4",2014-06-24,2014-06-24,"YB","F","4","BgD","Balanus_glandula_(dead)","Type 2",1,0.015625,64,"c","Isaac Shepard","Finished","Full","Cropped","0%","Photo super washed out, barnacles were difficult to count"
+"2014-06-24_YB-Fq5",2014-06-24,2014-06-24,"YB","F","5","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","4%","Photo super washed out, barnacles were difficult to count"
+"2014-06-24_YB-Fq6",2014-06-24,2014-06-24,"YB","F","6","BgD","Balanus_glandula_(dead)","Type 2",2,0.015625,128,"c","Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low due to poor resolution."
+"2014-06-24_YB-Fq4",2014-06-24,2014-06-24,"YB","F","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Photo super washed out, barnacles were difficult to count"
+"2014-06-24_YB-Fq5",2014-06-24,2014-06-24,"YB","F","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","4%","Photo super washed out, barnacles were difficult to count"
+"2014-06-24_YB-Fq6",2014-06-24,2014-06-24,"YB","F","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low due to poor resolution."
+"2014-06-24_YB-Fq4",2014-06-24,2014-06-24,"YB","F","4","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","0%","Photo super washed out, barnacles were difficult to count"
+"2014-06-24_YB-Fq5",2014-06-24,2014-06-24,"YB","F","5","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","4%","Photo super washed out, barnacles were difficult to count"
+"2014-06-24_YB-Fq6",2014-06-24,2014-06-24,"YB","F","6","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low due to poor resolution."
+"2014-06-24_YB-Fq4",2014-06-24,2014-06-24,"YB","F","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","0%","Photo super washed out, barnacles were difficult to count"
+"2014-06-24_YB-Fq5",2014-06-24,2014-06-24,"YB","F","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","4%","Photo super washed out, barnacles were difficult to count"
+"2014-06-24_YB-Fq6",2014-06-24,2014-06-24,"YB","F","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low due to poor resolution."
+"2014-06-24_YB-Fq4",2014-06-24,2014-06-24,"YB","F","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Photo super washed out, barnacles were difficult to count"
+"2014-06-24_YB-Fq5",2014-06-24,2014-06-24,"YB","F","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","4%","Photo super washed out, barnacles were difficult to count"
+"2014-06-24_YB-Fq6",2014-06-24,2014-06-24,"YB","F","6","Emp","Emplectonema worm","Type 23",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low due to poor resolution."
+"2014-06-24_YB-Fq4",2014-06-24,2014-06-24,"YB","F","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Photo super washed out, barnacles were difficult to count"
+"2014-06-24_YB-Fq5",2014-06-24,2014-06-24,"YB","F","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","4%","Photo super washed out, barnacles were difficult to count"
+"2014-06-24_YB-Fq6",2014-06-24,2014-06-24,"YB","F","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low due to poor resolution."
+"2014-06-24_YB-Fq4",2014-06-24,2014-06-24,"YB","F","4","Lim","Limpets","Type 12",23,0.0875,262.857142857143,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Photo super washed out, barnacles were difficult to count"
+"2014-06-24_YB-Fq5",2014-06-24,2014-06-24,"YB","F","5","Lim","Limpets","Type 12",70,0.0875,800,NA,"Isaac Shepard","Finished","Full","Cropped","4%","Photo super washed out, barnacles were difficult to count"
+"2014-06-24_YB-Fq6",2014-06-24,2014-06-24,"YB","F","6","Lim","Limpets","Type 12",49,0.0875,560,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low due to poor resolution."
+"2014-06-24_YB-Fq4",2014-06-24,2014-06-24,"YB","F","4","Ls","Littorina_sitkana","Type 13",797,0.0875,9108.57142857143,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Photo super washed out, barnacles were difficult to count"
+"2014-06-24_YB-Fq5",2014-06-24,2014-06-24,"YB","F","5","Ls","Littorina_sitkana","Type 13",594,0.0875,6788.57142857143,NA,"Isaac Shepard","Finished","Full","Cropped","4%","Photo super washed out, barnacles were difficult to count"
+"2014-06-24_YB-Fq6",2014-06-24,2014-06-24,"YB","F","6","Ls","Littorina_sitkana","Type 13",1066,0.0875,12182.8571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low due to poor resolution."
+"2014-06-24_YB-Fq4",2014-06-24,2014-06-24,"YB","F","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Photo super washed out, barnacles were difficult to count"
+"2014-06-24_YB-Fq5",2014-06-24,2014-06-24,"YB","F","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","4%","Photo super washed out, barnacles were difficult to count"
+"2014-06-24_YB-Fq6",2014-06-24,2014-06-24,"YB","F","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low due to poor resolution."
+"2014-06-24_YB-Fq4",2014-06-24,2014-06-24,"YB","F","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Photo super washed out, barnacles were difficult to count"
+"2014-06-24_YB-Fq5",2014-06-24,2014-06-24,"YB","F","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","4%","Photo super washed out, barnacles were difficult to count"
+"2014-06-24_YB-Fq6",2014-06-24,2014-06-24,"YB","F","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low due to poor resolution."
+"2014-06-24_YB-Fq4",2014-06-24,2014-06-24,"YB","F","4","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Photo super washed out, barnacles were difficult to count"
+"2014-06-24_YB-Fq5",2014-06-24,2014-06-24,"YB","F","5","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","4%","Photo super washed out, barnacles were difficult to count"
+"2014-06-24_YB-Fq6",2014-06-24,2014-06-24,"YB","F","6","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low due to poor resolution."
+"2014-06-24_YB-Fq4",2014-06-24,2014-06-24,"YB","F","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Photo super washed out, barnacles were difficult to count"
+"2014-06-24_YB-Fq5",2014-06-24,2014-06-24,"YB","F","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","4%","Photo super washed out, barnacles were difficult to count"
+"2014-06-24_YB-Fq6",2014-06-24,2014-06-24,"YB","F","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low due to poor resolution."
+"2014-06-24_YB-Fq4",2014-06-24,2014-06-24,"YB","F","4","Mt","Mytilus_trossulus","Type 15",395,0.0875,4514.28571428571,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Photo super washed out, barnacles were difficult to count"
+"2014-06-24_YB-Fq5",2014-06-24,2014-06-24,"YB","F","5","Mt","Mytilus_trossulus","Type 15",360,0.0875,4114.28571428571,NA,"Isaac Shepard","Finished","Full","Cropped","4%","Photo super washed out, barnacles were difficult to count"
+"2014-06-24_YB-Fq6",2014-06-24,2014-06-24,"YB","F","6","Mt","Mytilus_trossulus","Type 15",398,0.0875,4548.57142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low due to poor resolution."
+"2014-06-24_YB-Fq4",2014-06-24,2014-06-24,"YB","F","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Photo super washed out, barnacles were difficult to count"
+"2014-06-24_YB-Fq5",2014-06-24,2014-06-24,"YB","F","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","4%","Photo super washed out, barnacles were difficult to count"
+"2014-06-24_YB-Fq6",2014-06-24,2014-06-24,"YB","F","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low due to poor resolution."
+"2014-06-24_YB-Fq4",2014-06-24,2014-06-24,"YB","F","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Photo super washed out, barnacles were difficult to count"
+"2014-06-24_YB-Fq5",2014-06-24,2014-06-24,"YB","F","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","4%","Photo super washed out, barnacles were difficult to count"
+"2014-06-24_YB-Fq6",2014-06-24,2014-06-24,"YB","F","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low due to poor resolution."
+"2014-06-24_YB-Fq4",2014-06-24,2014-06-24,"YB","F","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Photo super washed out, barnacles were difficult to count"
+"2014-06-24_YB-Fq5",2014-06-24,2014-06-24,"YB","F","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","4%","Photo super washed out, barnacles were difficult to count"
+"2014-06-24_YB-Fq6",2014-06-24,2014-06-24,"YB","F","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low due to poor resolution."
+"2014-06-24_YB-Fq4",2014-06-24,2014-06-24,"YB","F","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Photo super washed out, barnacles were difficult to count"
+"2014-06-24_YB-Fq5",2014-06-24,2014-06-24,"YB","F","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","4%","Photo super washed out, barnacles were difficult to count"
+"2014-06-24_YB-Fq6",2014-06-24,2014-06-24,"YB","F","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low due to poor resolution."
+"2014-06-24_YB-Fq4",2014-06-24,2014-06-24,"YB","F","4","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Photo super washed out, barnacles were difficult to count"
+"2014-06-24_YB-Fq5",2014-06-24,2014-06-24,"YB","F","5","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Isaac Shepard","Finished","Full","Cropped","4%","Photo super washed out, barnacles were difficult to count"
+"2014-06-24_YB-Fq6",2014-06-24,2014-06-24,"YB","F","6","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low due to poor resolution."
+"2014-06-24_YB-Fq4",2014-06-24,2014-06-24,"YB","F","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Photo super washed out, barnacles were difficult to count"
+"2014-06-24_YB-Fq5",2014-06-24,2014-06-24,"YB","F","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","4%","Photo super washed out, barnacles were difficult to count"
+"2014-06-24_YB-Fq6",2014-06-24,2014-06-24,"YB","F","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low due to poor resolution."
+"2014-06-24_YB-Fq4",2014-06-24,2014-06-24,"YB","F","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Photo super washed out, barnacles were difficult to count"
+"2014-06-24_YB-Fq5",2014-06-24,2014-06-24,"YB","F","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","4%","Photo super washed out, barnacles were difficult to count"
+"2014-06-24_YB-Fq6",2014-06-24,2014-06-24,"YB","F","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low due to poor resolution."
+"2014-06-24_YB-Fq4",2014-06-24,2014-06-24,"YB","F","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Photo super washed out, barnacles were difficult to count"
+"2014-06-24_YB-Fq5",2014-06-24,2014-06-24,"YB","F","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","4%","Photo super washed out, barnacles were difficult to count"
+"2014-06-24_YB-Fq6",2014-06-24,2014-06-24,"YB","F","6","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low due to poor resolution."
+"2014-06-24_YB-Fq4",2014-06-24,2014-06-24,"YB","F","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Photo super washed out, barnacles were difficult to count"
+"2014-06-24_YB-Fq5",2014-06-24,2014-06-24,"YB","F","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","4%","Photo super washed out, barnacles were difficult to count"
+"2014-06-24_YB-Fq6",2014-06-24,2014-06-24,"YB","F","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low due to poor resolution."
+"2014-06-24_YB-Fq4",2014-06-24,2014-06-24,"YB","F","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Photo super washed out, barnacles were difficult to count"
+"2014-06-24_YB-Fq5",2014-06-24,2014-06-24,"YB","F","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","4%","Photo super washed out, barnacles were difficult to count"
+"2014-06-24_YB-Fq6",2014-06-24,2014-06-24,"YB","F","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low due to poor resolution."
+"2014-06-24_YB-Fq4",2014-06-24,2014-06-24,"YB","F","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%","Photo super washed out, barnacles were difficult to count"
+"2014-06-24_YB-Fq5",2014-06-24,2014-06-24,"YB","F","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","4%","Photo super washed out, barnacles were difficult to count"
+"2014-06-24_YB-Fq6",2014-06-24,2014-06-24,"YB","F","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%","Counts likely low due to poor resolution."
+"2014-06-24_YB-Gq3",2014-06-24,2014-06-24,"YB","G","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-06-24_YB-Gq5",2014-06-24,2014-06-24,"YB","G","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2014-06-24_YB-Gq8",2014-06-24,2014-06-24,"YB","G","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Full","5%",""
+"2014-06-24_YB-Gq3",2014-06-24,2014-06-24,"YB","G","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-06-24_YB-Gq5",2014-06-24,2014-06-24,"YB","G","5","Ae","Anemones","Type 14",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2014-06-24_YB-Gq8",2014-06-24,2014-06-24,"YB","G","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Full","5%",""
+"2014-06-24_YB-Gq3",2014-06-24,2014-06-24,"YB","G","3","Bg","Balanus_glandula","Type 1",310,0.0875,3542.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-06-24_YB-Gq5",2014-06-24,2014-06-24,"YB","G","5","Bg","Balanus_glandula","Type 1",213,0.0875,2434.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2014-06-24_YB-Gq8",2014-06-24,2014-06-24,"YB","G","8","Bg","Balanus_glandula","Type 1",193,0.0875,2205.71428571429,NA,"Stephanie Merhoff","Finished","Cropped","Full","5%",""
+"2014-06-24_YB-Gq3",2014-06-24,2014-06-24,"YB","G","3","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-06-24_YB-Gq5",2014-06-24,2014-06-24,"YB","G","5","BgD","Balanus_glandula_(dead)","Type 2",16,0.0875,182.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2014-06-24_YB-Gq8",2014-06-24,2014-06-24,"YB","G","8","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Full","5%",""
+"2014-06-24_YB-Gq3",2014-06-24,2014-06-24,"YB","G","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-06-24_YB-Gq5",2014-06-24,2014-06-24,"YB","G","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2014-06-24_YB-Gq8",2014-06-24,2014-06-24,"YB","G","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Full","5%",""
+"2014-06-24_YB-Gq3",2014-06-24,2014-06-24,"YB","G","3","Cth","Chthamalus_dalli","Type 3",49,0.0875,560,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-06-24_YB-Gq5",2014-06-24,2014-06-24,"YB","G","5","Cth","Chthamalus_dalli","Type 3",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2014-06-24_YB-Gq8",2014-06-24,2014-06-24,"YB","G","8","Cth","Chthamalus_dalli","Type 3",72,0.0875,822.857142857143,NA,"Stephanie Merhoff","Finished","Cropped","Full","5%",""
+"2014-06-24_YB-Gq3",2014-06-24,2014-06-24,"YB","G","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-06-24_YB-Gq5",2014-06-24,2014-06-24,"YB","G","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2014-06-24_YB-Gq8",2014-06-24,2014-06-24,"YB","G","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Full","5%",""
+"2014-06-24_YB-Gq3",2014-06-24,2014-06-24,"YB","G","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-06-24_YB-Gq5",2014-06-24,2014-06-24,"YB","G","5","Emp","Emplectonema worm","Type 23",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2014-06-24_YB-Gq8",2014-06-24,2014-06-24,"YB","G","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Full","5%",""
+"2014-06-24_YB-Gq3",2014-06-24,2014-06-24,"YB","G","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-06-24_YB-Gq5",2014-06-24,2014-06-24,"YB","G","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2014-06-24_YB-Gq8",2014-06-24,2014-06-24,"YB","G","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Full","5%",""
+"2014-06-24_YB-Gq3",2014-06-24,2014-06-24,"YB","G","3","Lim","Limpets","Type 12",32,0.0875,365.714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-06-24_YB-Gq5",2014-06-24,2014-06-24,"YB","G","5","Lim","Limpets","Type 12",125,0.0875,1428.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2014-06-24_YB-Gq8",2014-06-24,2014-06-24,"YB","G","8","Lim","Limpets","Type 12",29,0.0875,331.428571428571,NA,"Stephanie Merhoff","Finished","Cropped","Full","5%",""
+"2014-06-24_YB-Gq3",2014-06-24,2014-06-24,"YB","G","3","Ls","Littorina_sitkana","Type 13",96,0.0875,1097.14285714286,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-06-24_YB-Gq5",2014-06-24,2014-06-24,"YB","G","5","Ls","Littorina_sitkana","Type 13",90,0.0875,1028.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2014-06-24_YB-Gq8",2014-06-24,2014-06-24,"YB","G","8","Ls","Littorina_sitkana","Type 13",38,0.0875,434.285714285714,NA,"Stephanie Merhoff","Finished","Cropped","Full","5%",""
+"2014-06-24_YB-Gq3",2014-06-24,2014-06-24,"YB","G","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-06-24_YB-Gq5",2014-06-24,2014-06-24,"YB","G","5","Mc","Mytilus_californianus","Type 17",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2014-06-24_YB-Gq8",2014-06-24,2014-06-24,"YB","G","8","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Stephanie Merhoff","Finished","Cropped","Full","5%",""
+"2014-06-24_YB-Gq3",2014-06-24,2014-06-24,"YB","G","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-06-24_YB-Gq5",2014-06-24,2014-06-24,"YB","G","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2014-06-24_YB-Gq8",2014-06-24,2014-06-24,"YB","G","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Stephanie Merhoff","Finished","Cropped","Full","5%",""
+"2014-06-24_YB-Gq3",2014-06-24,2014-06-24,"YB","G","3","Myt","Mytilus_spp","Type 7",1795,0.0875,20514.2857142857,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-06-24_YB-Gq5",2014-06-24,2014-06-24,"YB","G","5","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2014-06-24_YB-Gq8",2014-06-24,2014-06-24,"YB","G","8","Myt","Mytilus_spp","Type 7",306,0.015625,19584,"c","Stephanie Merhoff","Finished","Cropped","Full","5%",""
+"2014-06-24_YB-Gq3",2014-06-24,2014-06-24,"YB","G","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-06-24_YB-Gq5",2014-06-24,2014-06-24,"YB","G","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2014-06-24_YB-Gq8",2014-06-24,2014-06-24,"YB","G","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Stephanie Merhoff","Finished","Cropped","Full","5%",""
+"2014-06-24_YB-Gq3",2014-06-24,2014-06-24,"YB","G","3","Mt","Mytilus_trossulus","Type 15",35,0.0875,400,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-06-24_YB-Gq5",2014-06-24,2014-06-24,"YB","G","5","Mt","Mytilus_trossulus","Type 15",1247,0.0875,14251.4285714286,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2014-06-24_YB-Gq8",2014-06-24,2014-06-24,"YB","G","8","Mt","Mytilus_trossulus","Type 15",9,0.015625,576,"c","Stephanie Merhoff","Finished","Cropped","Full","5%",""
+"2014-06-24_YB-Gq3",2014-06-24,2014-06-24,"YB","G","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-06-24_YB-Gq5",2014-06-24,2014-06-24,"YB","G","5","MtD","Mytilus_trossulus_(dead)","Type 16",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2014-06-24_YB-Gq8",2014-06-24,2014-06-24,"YB","G","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Stephanie Merhoff","Finished","Cropped","Full","5%",""
+"2014-06-24_YB-Gq3",2014-06-24,2014-06-24,"YB","G","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-06-24_YB-Gq5",2014-06-24,2014-06-24,"YB","G","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2014-06-24_YB-Gq8",2014-06-24,2014-06-24,"YB","G","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Full","5%",""
+"2014-06-24_YB-Gq3",2014-06-24,2014-06-24,"YB","G","3","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-06-24_YB-Gq5",2014-06-24,2014-06-24,"YB","G","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2014-06-24_YB-Gq8",2014-06-24,2014-06-24,"YB","G","8","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Cropped","Full","5%",""
+"2014-06-24_YB-Gq3",2014-06-24,2014-06-24,"YB","G","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-06-24_YB-Gq5",2014-06-24,2014-06-24,"YB","G","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2014-06-24_YB-Gq8",2014-06-24,2014-06-24,"YB","G","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Full","5%",""
+"2014-06-24_YB-Gq3",2014-06-24,2014-06-24,"YB","G","3","No","Nucella_ostrina","Type 9",22,0.0875,251.428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-06-24_YB-Gq5",2014-06-24,2014-06-24,"YB","G","5","No","Nucella_ostrina","Type 9",58,0.0875,662.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2014-06-24_YB-Gq8",2014-06-24,2014-06-24,"YB","G","8","No","Nucella_ostrina","Type 9",17,0.0875,194.285714285714,NA,"Stephanie Merhoff","Finished","Cropped","Full","5%",""
+"2014-06-24_YB-Gq3",2014-06-24,2014-06-24,"YB","G","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-06-24_YB-Gq5",2014-06-24,2014-06-24,"YB","G","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2014-06-24_YB-Gq8",2014-06-24,2014-06-24,"YB","G","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Full","5%",""
+"2014-06-24_YB-Gq3",2014-06-24,2014-06-24,"YB","G","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-06-24_YB-Gq5",2014-06-24,2014-06-24,"YB","G","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2014-06-24_YB-Gq8",2014-06-24,2014-06-24,"YB","G","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Full","5%",""
+"2014-06-24_YB-Gq3",2014-06-24,2014-06-24,"YB","G","3","Pp","Pollicipes_polymerus","Type 11",9,0.0875,102.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-06-24_YB-Gq5",2014-06-24,2014-06-24,"YB","G","5","Pp","Pollicipes_polymerus","Type 11",12,0.0875,137.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2014-06-24_YB-Gq8",2014-06-24,2014-06-24,"YB","G","8","Pp","Pollicipes_polymerus","Type 11",4,0.0875,45.7142857142857,NA,"Stephanie Merhoff","Finished","Cropped","Full","5%",""
+"2014-06-24_YB-Gq3",2014-06-24,2014-06-24,"YB","G","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-06-24_YB-Gq5",2014-06-24,2014-06-24,"YB","G","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2014-06-24_YB-Gq8",2014-06-24,2014-06-24,"YB","G","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Full","5%",""
+"2014-06-24_YB-Gq3",2014-06-24,2014-06-24,"YB","G","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-06-24_YB-Gq5",2014-06-24,2014-06-24,"YB","G","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2014-06-24_YB-Gq8",2014-06-24,2014-06-24,"YB","G","8","Sc","Semibalanus_cariosus","Type 5",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Cropped","Full","5%",""
+"2014-06-24_YB-Gq3",2014-06-24,2014-06-24,"YB","G","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-06-24_YB-Gq5",2014-06-24,2014-06-24,"YB","G","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2014-06-24_YB-Gq8",2014-06-24,2014-06-24,"YB","G","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Full","5%",""
+"2014-07-24_YB-Aq6",2014-07-24,2014-07-24,"YB","A","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2014-07-24_YB-Aq7",2014-07-24,2014-07-24,"YB","A","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Barnacle counts likely low due to many new recruits too blurry to count."
+"2014-07-24_YB-Aq9",2014-07-24,2014-07-24,"YB","A","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","2%","Huge number of balanus recruits. counts maybe low due to some glare"
+"2014-07-24_YB-Aq6",2014-07-24,2014-07-24,"YB","A","6","Ae","Anemones","Type 14",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2014-07-24_YB-Aq7",2014-07-24,2014-07-24,"YB","A","7","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Barnacle counts likely low due to many new recruits too blurry to count."
+"2014-07-24_YB-Aq9",2014-07-24,2014-07-24,"YB","A","9","Ae","Anemones","Type 14",4,0.0875,45.7142857142857,NA,"Julia Bingham","Finished","Full","Cropped","2%","Huge number of balanus recruits. counts maybe low due to some glare"
+"2014-07-24_YB-Aq6",2014-07-24,2014-07-24,"YB","A","6","Bg","Balanus_glandula","Type 1",1078,0.0875,12320,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2014-07-24_YB-Aq7",2014-07-24,2014-07-24,"YB","A","7","Bg","Balanus_glandula","Type 1",618,0.015625,39552,"c","Beatriz Vaca","Finished","Full","Cropped","5%","Barnacle counts likely low due to many new recruits too blurry to count."
+"2014-07-24_YB-Aq9",2014-07-24,2014-07-24,"YB","A","9","Bg","Balanus_glandula","Type 1",1048,0.015625,67072,"c","Julia Bingham","Finished","Full","Cropped","2%","Huge number of balanus recruits. counts maybe low due to some glare"
+"2014-07-24_YB-Aq6",2014-07-24,2014-07-24,"YB","A","6","BgD","Balanus_glandula_(dead)","Type 2",34,0.0875,388.571428571429,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2014-07-24_YB-Aq7",2014-07-24,2014-07-24,"YB","A","7","BgD","Balanus_glandula_(dead)","Type 2",1,0.015625,64,"c","Beatriz Vaca","Finished","Full","Cropped","5%","Barnacle counts likely low due to many new recruits too blurry to count."
+"2014-07-24_YB-Aq9",2014-07-24,2014-07-24,"YB","A","9","BgD","Balanus_glandula_(dead)","Type 2",1,0.015625,64,"c","Julia Bingham","Finished","Full","Cropped","2%","Huge number of balanus recruits. counts maybe low due to some glare"
+"2014-07-24_YB-Aq6",2014-07-24,2014-07-24,"YB","A","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2014-07-24_YB-Aq7",2014-07-24,2014-07-24,"YB","A","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Barnacle counts likely low due to many new recruits too blurry to count."
+"2014-07-24_YB-Aq9",2014-07-24,2014-07-24,"YB","A","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","2%","Huge number of balanus recruits. counts maybe low due to some glare"
+"2014-07-24_YB-Aq6",2014-07-24,2014-07-24,"YB","A","6","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2014-07-24_YB-Aq7",2014-07-24,2014-07-24,"YB","A","7","Cth","Chthamalus_dalli","Type 3",2,0.015625,128,"c","Beatriz Vaca","Finished","Full","Cropped","5%","Barnacle counts likely low due to many new recruits too blurry to count."
+"2014-07-24_YB-Aq9",2014-07-24,2014-07-24,"YB","A","9","Cth","Chthamalus_dalli","Type 3",5,0.015625,320,"c","Julia Bingham","Finished","Full","Cropped","2%","Huge number of balanus recruits. counts maybe low due to some glare"
+"2014-07-24_YB-Aq6",2014-07-24,2014-07-24,"YB","A","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2014-07-24_YB-Aq7",2014-07-24,2014-07-24,"YB","A","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","5%","Barnacle counts likely low due to many new recruits too blurry to count."
+"2014-07-24_YB-Aq9",2014-07-24,2014-07-24,"YB","A","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Julia Bingham","Finished","Full","Cropped","2%","Huge number of balanus recruits. counts maybe low due to some glare"
+"2014-07-24_YB-Aq6",2014-07-24,2014-07-24,"YB","A","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2014-07-24_YB-Aq7",2014-07-24,2014-07-24,"YB","A","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Barnacle counts likely low due to many new recruits too blurry to count."
+"2014-07-24_YB-Aq9",2014-07-24,2014-07-24,"YB","A","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","2%","Huge number of balanus recruits. counts maybe low due to some glare"
+"2014-07-24_YB-Aq6",2014-07-24,2014-07-24,"YB","A","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2014-07-24_YB-Aq7",2014-07-24,2014-07-24,"YB","A","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Barnacle counts likely low due to many new recruits too blurry to count."
+"2014-07-24_YB-Aq9",2014-07-24,2014-07-24,"YB","A","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","2%","Huge number of balanus recruits. counts maybe low due to some glare"
+"2014-07-24_YB-Aq6",2014-07-24,2014-07-24,"YB","A","6","Lim","Limpets","Type 12",2,0.0875,22.8571428571429,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2014-07-24_YB-Aq7",2014-07-24,2014-07-24,"YB","A","7","Lim","Limpets","Type 12",33,0.0875,377.142857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Barnacle counts likely low due to many new recruits too blurry to count."
+"2014-07-24_YB-Aq9",2014-07-24,2014-07-24,"YB","A","9","Lim","Limpets","Type 12",135,0.0875,1542.85714285714,NA,"Julia Bingham","Finished","Full","Cropped","2%","Huge number of balanus recruits. counts maybe low due to some glare"
+"2014-07-24_YB-Aq6",2014-07-24,2014-07-24,"YB","A","6","Ls","Littorina_sitkana","Type 13",55,0.0875,628.571428571429,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2014-07-24_YB-Aq7",2014-07-24,2014-07-24,"YB","A","7","Ls","Littorina_sitkana","Type 13",63,0.0875,720,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Barnacle counts likely low due to many new recruits too blurry to count."
+"2014-07-24_YB-Aq9",2014-07-24,2014-07-24,"YB","A","9","Ls","Littorina_sitkana","Type 13",113,0.0875,1291.42857142857,NA,"Julia Bingham","Finished","Full","Cropped","2%","Huge number of balanus recruits. counts maybe low due to some glare"
+"2014-07-24_YB-Aq6",2014-07-24,2014-07-24,"YB","A","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2014-07-24_YB-Aq7",2014-07-24,2014-07-24,"YB","A","7","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Barnacle counts likely low due to many new recruits too blurry to count."
+"2014-07-24_YB-Aq9",2014-07-24,2014-07-24,"YB","A","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","2%","Huge number of balanus recruits. counts maybe low due to some glare"
+"2014-07-24_YB-Aq6",2014-07-24,2014-07-24,"YB","A","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2014-07-24_YB-Aq7",2014-07-24,2014-07-24,"YB","A","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Barnacle counts likely low due to many new recruits too blurry to count."
+"2014-07-24_YB-Aq9",2014-07-24,2014-07-24,"YB","A","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","2%","Huge number of balanus recruits. counts maybe low due to some glare"
+"2014-07-24_YB-Aq6",2014-07-24,2014-07-24,"YB","A","6","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2014-07-24_YB-Aq7",2014-07-24,2014-07-24,"YB","A","7","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Barnacle counts likely low due to many new recruits too blurry to count."
+"2014-07-24_YB-Aq9",2014-07-24,2014-07-24,"YB","A","9","Myt","Mytilus_spp","Type 7",743,0.0875,8491.42857142857,NA,"Julia Bingham","Finished","Full","Cropped","2%","Huge number of balanus recruits. counts maybe low due to some glare"
+"2014-07-24_YB-Aq6",2014-07-24,2014-07-24,"YB","A","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2014-07-24_YB-Aq7",2014-07-24,2014-07-24,"YB","A","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Barnacle counts likely low due to many new recruits too blurry to count."
+"2014-07-24_YB-Aq9",2014-07-24,2014-07-24,"YB","A","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","2%","Huge number of balanus recruits. counts maybe low due to some glare"
+"2014-07-24_YB-Aq6",2014-07-24,2014-07-24,"YB","A","6","Mt","Mytilus_trossulus","Type 15",395,0.0875,4514.28571428571,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2014-07-24_YB-Aq7",2014-07-24,2014-07-24,"YB","A","7","Mt","Mytilus_trossulus","Type 15",677,0.0875,7737.14285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Barnacle counts likely low due to many new recruits too blurry to count."
+"2014-07-24_YB-Aq9",2014-07-24,2014-07-24,"YB","A","9","Mt","Mytilus_trossulus","Type 15",498,0.0875,5691.42857142857,NA,"Julia Bingham","Finished","Full","Cropped","2%","Huge number of balanus recruits. counts maybe low due to some glare"
+"2014-07-24_YB-Aq6",2014-07-24,2014-07-24,"YB","A","6","MtD","Mytilus_trossulus_(dead)","Type 16",3,0.0875,34.2857142857143,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2014-07-24_YB-Aq7",2014-07-24,2014-07-24,"YB","A","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Barnacle counts likely low due to many new recruits too blurry to count."
+"2014-07-24_YB-Aq9",2014-07-24,2014-07-24,"YB","A","9","MtD","Mytilus_trossulus_(dead)","Type 16",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Cropped","2%","Huge number of balanus recruits. counts maybe low due to some glare"
+"2014-07-24_YB-Aq6",2014-07-24,2014-07-24,"YB","A","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2014-07-24_YB-Aq7",2014-07-24,2014-07-24,"YB","A","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Barnacle counts likely low due to many new recruits too blurry to count."
+"2014-07-24_YB-Aq9",2014-07-24,2014-07-24,"YB","A","9","Ner","Nereis_worm","Type 24",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Cropped","2%","Huge number of balanus recruits. counts maybe low due to some glare"
+"2014-07-24_YB-Aq6",2014-07-24,2014-07-24,"YB","A","6","Nc","Nucella_canaliculata","Type 10",3,0.0875,34.2857142857143,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2014-07-24_YB-Aq7",2014-07-24,2014-07-24,"YB","A","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Barnacle counts likely low due to many new recruits too blurry to count."
+"2014-07-24_YB-Aq9",2014-07-24,2014-07-24,"YB","A","9","Nc","Nucella_canaliculata","Type 10",12,0.0875,137.142857142857,NA,"Julia Bingham","Finished","Full","Cropped","2%","Huge number of balanus recruits. counts maybe low due to some glare"
+"2014-07-24_YB-Aq6",2014-07-24,2014-07-24,"YB","A","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2014-07-24_YB-Aq7",2014-07-24,2014-07-24,"YB","A","7","Negg","Nucella_eggs","Type 26",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Barnacle counts likely low due to many new recruits too blurry to count."
+"2014-07-24_YB-Aq9",2014-07-24,2014-07-24,"YB","A","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","2%","Huge number of balanus recruits. counts maybe low due to some glare"
+"2014-07-24_YB-Aq6",2014-07-24,2014-07-24,"YB","A","6","No","Nucella_ostrina","Type 9",3,0.0875,34.2857142857143,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2014-07-24_YB-Aq7",2014-07-24,2014-07-24,"YB","A","7","No","Nucella_ostrina","Type 9",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Barnacle counts likely low due to many new recruits too blurry to count."
+"2014-07-24_YB-Aq9",2014-07-24,2014-07-24,"YB","A","9","No","Nucella_ostrina","Type 9",27,0.0875,308.571428571429,NA,"Julia Bingham","Finished","Full","Cropped","2%","Huge number of balanus recruits. counts maybe low due to some glare"
+"2014-07-24_YB-Aq6",2014-07-24,2014-07-24,"YB","A","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2014-07-24_YB-Aq7",2014-07-24,2014-07-24,"YB","A","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Barnacle counts likely low due to many new recruits too blurry to count."
+"2014-07-24_YB-Aq9",2014-07-24,2014-07-24,"YB","A","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","2%","Huge number of balanus recruits. counts maybe low due to some glare"
+"2014-07-24_YB-Aq6",2014-07-24,2014-07-24,"YB","A","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2014-07-24_YB-Aq7",2014-07-24,2014-07-24,"YB","A","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Barnacle counts likely low due to many new recruits too blurry to count."
+"2014-07-24_YB-Aq9",2014-07-24,2014-07-24,"YB","A","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","2%","Huge number of balanus recruits. counts maybe low due to some glare"
+"2014-07-24_YB-Aq6",2014-07-24,2014-07-24,"YB","A","6","Pp","Pollicipes_polymerus","Type 11",1,0.0875,11.4285714285714,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2014-07-24_YB-Aq7",2014-07-24,2014-07-24,"YB","A","7","Pp","Pollicipes_polymerus","Type 11",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Barnacle counts likely low due to many new recruits too blurry to count."
+"2014-07-24_YB-Aq9",2014-07-24,2014-07-24,"YB","A","9","Pp","Pollicipes_polymerus","Type 11",15,0.0875,171.428571428571,NA,"Julia Bingham","Finished","Full","Cropped","2%","Huge number of balanus recruits. counts maybe low due to some glare"
+"2014-07-24_YB-Aq6",2014-07-24,2014-07-24,"YB","A","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2014-07-24_YB-Aq7",2014-07-24,2014-07-24,"YB","A","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Barnacle counts likely low due to many new recruits too blurry to count."
+"2014-07-24_YB-Aq9",2014-07-24,2014-07-24,"YB","A","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","2%","Huge number of balanus recruits. counts maybe low due to some glare"
+"2014-07-24_YB-Aq6",2014-07-24,2014-07-24,"YB","A","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2014-07-24_YB-Aq7",2014-07-24,2014-07-24,"YB","A","7","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Barnacle counts likely low due to many new recruits too blurry to count."
+"2014-07-24_YB-Aq9",2014-07-24,2014-07-24,"YB","A","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","2%","Huge number of balanus recruits. counts maybe low due to some glare"
+"2014-07-24_YB-Aq6",2014-07-24,2014-07-24,"YB","A","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2014-07-24_YB-Aq7",2014-07-24,2014-07-24,"YB","A","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Barnacle counts likely low due to many new recruits too blurry to count."
+"2014-07-24_YB-Aq9",2014-07-24,2014-07-24,"YB","A","9","ScD","Semibalanus_cariosus_(dead)","Type 6",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Cropped","2%","Huge number of balanus recruits. counts maybe low due to some glare"
+"2014-07-24_YB-ABq1",2014-07-24,2014-07-24,"YB","AB","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","23%","Mussel, limpet, littorine, and barnacle densities likely higher but glare and algal cover made counting difficult"
+"2014-07-24_YB-ABq2",2014-07-24,2014-07-24,"YB","AB","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Count likely low due to glare and algae coverage."
+"2014-07-24_YB-ABq4",2014-07-24,2014-07-24,"YB","AB","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2014-07-24_YB-ABq1",2014-07-24,2014-07-24,"YB","AB","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","23%","Mussel, limpet, littorine, and barnacle densities likely higher but glare and algal cover made counting difficult"
+"2014-07-24_YB-ABq2",2014-07-24,2014-07-24,"YB","AB","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Count likely low due to glare and algae coverage."
+"2014-07-24_YB-ABq4",2014-07-24,2014-07-24,"YB","AB","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2014-07-24_YB-ABq1",2014-07-24,2014-07-24,"YB","AB","1","Bg","Balanus_glandula","Type 1",801,0.015625,51264,"c","Beatriz Vaca","Finished","Full","Cropped","23%","Mussel, limpet, littorine, and barnacle densities likely higher but glare and algal cover made counting difficult"
+"2014-07-24_YB-ABq2",2014-07-24,2014-07-24,"YB","AB","2","Bg","Balanus_glandula","Type 1",286,0.0875,3268.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","50%","Count likely low due to glare and algae coverage."
+"2014-07-24_YB-ABq4",2014-07-24,2014-07-24,"YB","AB","4","Bg","Balanus_glandula","Type 1",3318,0.0875,37920,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2014-07-24_YB-ABq1",2014-07-24,2014-07-24,"YB","AB","1","BgD","Balanus_glandula_(dead)","Type 2",3,0.015625,192,"c","Beatriz Vaca","Finished","Full","Cropped","23%","Mussel, limpet, littorine, and barnacle densities likely higher but glare and algal cover made counting difficult"
+"2014-07-24_YB-ABq2",2014-07-24,2014-07-24,"YB","AB","2","BgD","Balanus_glandula_(dead)","Type 2",63,0.0875,720,NA,"Beatriz Vaca","Finished","Full","Full","50%","Count likely low due to glare and algae coverage."
+"2014-07-24_YB-ABq4",2014-07-24,2014-07-24,"YB","AB","4","BgD","Balanus_glandula_(dead)","Type 2",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2014-07-24_YB-ABq1",2014-07-24,2014-07-24,"YB","AB","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","23%","Mussel, limpet, littorine, and barnacle densities likely higher but glare and algal cover made counting difficult"
+"2014-07-24_YB-ABq2",2014-07-24,2014-07-24,"YB","AB","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Count likely low due to glare and algae coverage."
+"2014-07-24_YB-ABq4",2014-07-24,2014-07-24,"YB","AB","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2014-07-24_YB-ABq1",2014-07-24,2014-07-24,"YB","AB","1","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","23%","Mussel, limpet, littorine, and barnacle densities likely higher but glare and algal cover made counting difficult"
+"2014-07-24_YB-ABq2",2014-07-24,2014-07-24,"YB","AB","2","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Count likely low due to glare and algae coverage."
+"2014-07-24_YB-ABq4",2014-07-24,2014-07-24,"YB","AB","4","Cth","Chthamalus_dalli","Type 3",63,0.0875,720,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2014-07-24_YB-ABq1",2014-07-24,2014-07-24,"YB","AB","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","23%","Mussel, limpet, littorine, and barnacle densities likely higher but glare and algal cover made counting difficult"
+"2014-07-24_YB-ABq2",2014-07-24,2014-07-24,"YB","AB","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Count likely low due to glare and algae coverage."
+"2014-07-24_YB-ABq4",2014-07-24,2014-07-24,"YB","AB","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2014-07-24_YB-ABq1",2014-07-24,2014-07-24,"YB","AB","1","Emp","Emplectonema worm","Type 23",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","23%","Mussel, limpet, littorine, and barnacle densities likely higher but glare and algal cover made counting difficult"
+"2014-07-24_YB-ABq2",2014-07-24,2014-07-24,"YB","AB","2","Emp","Emplectonema worm","Type 23",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","50%","Count likely low due to glare and algae coverage."
+"2014-07-24_YB-ABq4",2014-07-24,2014-07-24,"YB","AB","4","Emp","Emplectonema worm","Type 23",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2014-07-24_YB-ABq1",2014-07-24,2014-07-24,"YB","AB","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","23%","Mussel, limpet, littorine, and barnacle densities likely higher but glare and algal cover made counting difficult"
+"2014-07-24_YB-ABq2",2014-07-24,2014-07-24,"YB","AB","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Count likely low due to glare and algae coverage."
+"2014-07-24_YB-ABq4",2014-07-24,2014-07-24,"YB","AB","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2014-07-24_YB-ABq1",2014-07-24,2014-07-24,"YB","AB","1","Lim","Limpets","Type 12",141,0.0875,1611.42857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","23%","Mussel, limpet, littorine, and barnacle densities likely higher but glare and algal cover made counting difficult"
+"2014-07-24_YB-ABq2",2014-07-24,2014-07-24,"YB","AB","2","Lim","Limpets","Type 12",156,0.0875,1782.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","50%","Count likely low due to glare and algae coverage."
+"2014-07-24_YB-ABq4",2014-07-24,2014-07-24,"YB","AB","4","Lim","Limpets","Type 12",482,0.0875,5508.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2014-07-24_YB-ABq1",2014-07-24,2014-07-24,"YB","AB","1","Ls","Littorina_sitkana","Type 13",31,0.0875,354.285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","23%","Mussel, limpet, littorine, and barnacle densities likely higher but glare and algal cover made counting difficult"
+"2014-07-24_YB-ABq2",2014-07-24,2014-07-24,"YB","AB","2","Ls","Littorina_sitkana","Type 13",61,0.0875,697.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","50%","Count likely low due to glare and algae coverage."
+"2014-07-24_YB-ABq4",2014-07-24,2014-07-24,"YB","AB","4","Ls","Littorina_sitkana","Type 13",126,0.0875,1440,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2014-07-24_YB-ABq1",2014-07-24,2014-07-24,"YB","AB","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","23%","Mussel, limpet, littorine, and barnacle densities likely higher but glare and algal cover made counting difficult"
+"2014-07-24_YB-ABq2",2014-07-24,2014-07-24,"YB","AB","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Count likely low due to glare and algae coverage."
+"2014-07-24_YB-ABq4",2014-07-24,2014-07-24,"YB","AB","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2014-07-24_YB-ABq1",2014-07-24,2014-07-24,"YB","AB","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","23%","Mussel, limpet, littorine, and barnacle densities likely higher but glare and algal cover made counting difficult"
+"2014-07-24_YB-ABq2",2014-07-24,2014-07-24,"YB","AB","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Count likely low due to glare and algae coverage."
+"2014-07-24_YB-ABq4",2014-07-24,2014-07-24,"YB","AB","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2014-07-24_YB-ABq1",2014-07-24,2014-07-24,"YB","AB","1","Myt","Mytilus_spp","Type 7",31,0.0875,354.285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","23%","Mussel, limpet, littorine, and barnacle densities likely higher but glare and algal cover made counting difficult"
+"2014-07-24_YB-ABq2",2014-07-24,2014-07-24,"YB","AB","2","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Count likely low due to glare and algae coverage."
+"2014-07-24_YB-ABq4",2014-07-24,2014-07-24,"YB","AB","4","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2014-07-24_YB-ABq1",2014-07-24,2014-07-24,"YB","AB","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","23%","Mussel, limpet, littorine, and barnacle densities likely higher but glare and algal cover made counting difficult"
+"2014-07-24_YB-ABq2",2014-07-24,2014-07-24,"YB","AB","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Count likely low due to glare and algae coverage."
+"2014-07-24_YB-ABq4",2014-07-24,2014-07-24,"YB","AB","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2014-07-24_YB-ABq1",2014-07-24,2014-07-24,"YB","AB","1","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","23%","Mussel, limpet, littorine, and barnacle densities likely higher but glare and algal cover made counting difficult"
+"2014-07-24_YB-ABq2",2014-07-24,2014-07-24,"YB","AB","2","Mt","Mytilus_trossulus","Type 15",259,0.0875,2960,NA,"Beatriz Vaca","Finished","Full","Full","50%","Count likely low due to glare and algae coverage."
+"2014-07-24_YB-ABq4",2014-07-24,2014-07-24,"YB","AB","4","Mt","Mytilus_trossulus","Type 15",375,0.0875,4285.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2014-07-24_YB-ABq1",2014-07-24,2014-07-24,"YB","AB","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","23%","Mussel, limpet, littorine, and barnacle densities likely higher but glare and algal cover made counting difficult"
+"2014-07-24_YB-ABq2",2014-07-24,2014-07-24,"YB","AB","2","MtD","Mytilus_trossulus_(dead)","Type 16",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","50%","Count likely low due to glare and algae coverage."
+"2014-07-24_YB-ABq4",2014-07-24,2014-07-24,"YB","AB","4","MtD","Mytilus_trossulus_(dead)","Type 16",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2014-07-24_YB-ABq1",2014-07-24,2014-07-24,"YB","AB","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","23%","Mussel, limpet, littorine, and barnacle densities likely higher but glare and algal cover made counting difficult"
+"2014-07-24_YB-ABq2",2014-07-24,2014-07-24,"YB","AB","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Count likely low due to glare and algae coverage."
+"2014-07-24_YB-ABq4",2014-07-24,2014-07-24,"YB","AB","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2014-07-24_YB-ABq1",2014-07-24,2014-07-24,"YB","AB","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","23%","Mussel, limpet, littorine, and barnacle densities likely higher but glare and algal cover made counting difficult"
+"2014-07-24_YB-ABq2",2014-07-24,2014-07-24,"YB","AB","2","Nc","Nucella_canaliculata","Type 10",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","50%","Count likely low due to glare and algae coverage."
+"2014-07-24_YB-ABq4",2014-07-24,2014-07-24,"YB","AB","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2014-07-24_YB-ABq1",2014-07-24,2014-07-24,"YB","AB","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","23%","Mussel, limpet, littorine, and barnacle densities likely higher but glare and algal cover made counting difficult"
+"2014-07-24_YB-ABq2",2014-07-24,2014-07-24,"YB","AB","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Count likely low due to glare and algae coverage."
+"2014-07-24_YB-ABq4",2014-07-24,2014-07-24,"YB","AB","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2014-07-24_YB-ABq1",2014-07-24,2014-07-24,"YB","AB","1","No","Nucella_ostrina","Type 9",20,0.0875,228.571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","23%","Mussel, limpet, littorine, and barnacle densities likely higher but glare and algal cover made counting difficult"
+"2014-07-24_YB-ABq2",2014-07-24,2014-07-24,"YB","AB","2","No","Nucella_ostrina","Type 9",26,0.0875,297.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","50%","Count likely low due to glare and algae coverage."
+"2014-07-24_YB-ABq4",2014-07-24,2014-07-24,"YB","AB","4","No","Nucella_ostrina","Type 9",50,0.0875,571.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2014-07-24_YB-ABq1",2014-07-24,2014-07-24,"YB","AB","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","23%","Mussel, limpet, littorine, and barnacle densities likely higher but glare and algal cover made counting difficult"
+"2014-07-24_YB-ABq2",2014-07-24,2014-07-24,"YB","AB","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Count likely low due to glare and algae coverage."
+"2014-07-24_YB-ABq4",2014-07-24,2014-07-24,"YB","AB","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2014-07-24_YB-ABq1",2014-07-24,2014-07-24,"YB","AB","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","23%","Mussel, limpet, littorine, and barnacle densities likely higher but glare and algal cover made counting difficult"
+"2014-07-24_YB-ABq2",2014-07-24,2014-07-24,"YB","AB","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Count likely low due to glare and algae coverage."
+"2014-07-24_YB-ABq4",2014-07-24,2014-07-24,"YB","AB","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2014-07-24_YB-ABq1",2014-07-24,2014-07-24,"YB","AB","1","Pp","Pollicipes_polymerus","Type 11",95,0.0875,1085.71428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","23%","Mussel, limpet, littorine, and barnacle densities likely higher but glare and algal cover made counting difficult"
+"2014-07-24_YB-ABq2",2014-07-24,2014-07-24,"YB","AB","2","Pp","Pollicipes_polymerus","Type 11",68,0.0875,777.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","50%","Count likely low due to glare and algae coverage."
+"2014-07-24_YB-ABq4",2014-07-24,2014-07-24,"YB","AB","4","Pp","Pollicipes_polymerus","Type 11",164,0.0875,1874.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2014-07-24_YB-ABq1",2014-07-24,2014-07-24,"YB","AB","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","23%","Mussel, limpet, littorine, and barnacle densities likely higher but glare and algal cover made counting difficult"
+"2014-07-24_YB-ABq2",2014-07-24,2014-07-24,"YB","AB","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Count likely low due to glare and algae coverage."
+"2014-07-24_YB-ABq4",2014-07-24,2014-07-24,"YB","AB","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2014-07-24_YB-ABq1",2014-07-24,2014-07-24,"YB","AB","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","23%","Mussel, limpet, littorine, and barnacle densities likely higher but glare and algal cover made counting difficult"
+"2014-07-24_YB-ABq2",2014-07-24,2014-07-24,"YB","AB","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Count likely low due to glare and algae coverage."
+"2014-07-24_YB-ABq4",2014-07-24,2014-07-24,"YB","AB","4","Sc","Semibalanus_cariosus","Type 5",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2014-07-24_YB-ABq1",2014-07-24,2014-07-24,"YB","AB","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","23%","Mussel, limpet, littorine, and barnacle densities likely higher but glare and algal cover made counting difficult"
+"2014-07-24_YB-ABq2",2014-07-24,2014-07-24,"YB","AB","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Count likely low due to glare and algae coverage."
+"2014-07-24_YB-ABq4",2014-07-24,2014-07-24,"YB","AB","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2014-07-24_YB-ACq1",2014-07-24,2014-07-24,"YB","AC","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","8%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-07-24_YB-ACq4",2014-07-24,2014-07-24,"YB","AC","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low due to glare and blur. Majority of barnacles are tiny recruits."
+"2014-07-24_YB-ACq7",2014-07-24,2014-07-24,"YB","AC","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Most barnacles are new recruits, barnacle counts likely low due to glare."
+"2014-07-24_YB-ACq8",2014-07-24,2014-07-24,"YB","AC","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to glare and water cover, 10% underwater; most barnacles are new recruits"
+"2014-07-24_YB-ACq1",2014-07-24,2014-07-24,"YB","AC","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","8%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-07-24_YB-ACq4",2014-07-24,2014-07-24,"YB","AC","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low due to glare and blur. Majority of barnacles are tiny recruits."
+"2014-07-24_YB-ACq7",2014-07-24,2014-07-24,"YB","AC","7","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Most barnacles are new recruits, barnacle counts likely low due to glare."
+"2014-07-24_YB-ACq8",2014-07-24,2014-07-24,"YB","AC","8","Ae","Anemones","Type 14",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to glare and water cover, 10% underwater; most barnacles are new recruits"
+"2014-07-24_YB-ACq1",2014-07-24,2014-07-24,"YB","AC","1","Bg","Balanus_glandula","Type 1",353,0.015625,22592,"c","Beatriz Vaca","Finished","Full","Cropped","8%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-07-24_YB-ACq4",2014-07-24,2014-07-24,"YB","AC","4","Bg","Balanus_glandula","Type 1",2077,0.015625,132928,"c","Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low due to glare and blur. Majority of barnacles are tiny recruits."
+"2014-07-24_YB-ACq7",2014-07-24,2014-07-24,"YB","AC","7","Bg","Balanus_glandula","Type 1",1150,0.015625,73600,"c","Beatriz Vaca","Finished","Full","Cropped","0%","Most barnacles are new recruits, barnacle counts likely low due to glare."
+"2014-07-24_YB-ACq8",2014-07-24,2014-07-24,"YB","AC","8","Bg","Balanus_glandula","Type 1",2157,0.015625,138048,"c","Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to glare and water cover, 10% underwater; most barnacles are new recruits"
+"2014-07-24_YB-ACq1",2014-07-24,2014-07-24,"YB","AC","1","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","8%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-07-24_YB-ACq4",2014-07-24,2014-07-24,"YB","AC","4","BgD","Balanus_glandula_(dead)","Type 2",2,0.015625,128,"c","Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low due to glare and blur. Majority of barnacles are tiny recruits."
+"2014-07-24_YB-ACq7",2014-07-24,2014-07-24,"YB","AC","7","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","0%","Most barnacles are new recruits, barnacle counts likely low due to glare."
+"2014-07-24_YB-ACq8",2014-07-24,2014-07-24,"YB","AC","8","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to glare and water cover, 10% underwater; most barnacles are new recruits"
+"2014-07-24_YB-ACq1",2014-07-24,2014-07-24,"YB","AC","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","8%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-07-24_YB-ACq4",2014-07-24,2014-07-24,"YB","AC","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low due to glare and blur. Majority of barnacles are tiny recruits."
+"2014-07-24_YB-ACq7",2014-07-24,2014-07-24,"YB","AC","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Most barnacles are new recruits, barnacle counts likely low due to glare."
+"2014-07-24_YB-ACq8",2014-07-24,2014-07-24,"YB","AC","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to glare and water cover, 10% underwater; most barnacles are new recruits"
+"2014-07-24_YB-ACq1",2014-07-24,2014-07-24,"YB","AC","1","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","8%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-07-24_YB-ACq4",2014-07-24,2014-07-24,"YB","AC","4","Cth","Chthamalus_dalli","Type 3",14,0.015625,896,"c","Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low due to glare and blur. Majority of barnacles are tiny recruits."
+"2014-07-24_YB-ACq7",2014-07-24,2014-07-24,"YB","AC","7","Cth","Chthamalus_dalli","Type 3",16,0.015625,1024,"c","Beatriz Vaca","Finished","Full","Cropped","0%","Most barnacles are new recruits, barnacle counts likely low due to glare."
+"2014-07-24_YB-ACq8",2014-07-24,2014-07-24,"YB","AC","8","Cth","Chthamalus_dalli","Type 3",6,0.015625,384,"c","Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to glare and water cover, 10% underwater; most barnacles are new recruits"
+"2014-07-24_YB-ACq1",2014-07-24,2014-07-24,"YB","AC","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","8%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-07-24_YB-ACq4",2014-07-24,2014-07-24,"YB","AC","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low due to glare and blur. Majority of barnacles are tiny recruits."
+"2014-07-24_YB-ACq7",2014-07-24,2014-07-24,"YB","AC","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","0%","Most barnacles are new recruits, barnacle counts likely low due to glare."
+"2014-07-24_YB-ACq8",2014-07-24,2014-07-24,"YB","AC","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to glare and water cover, 10% underwater; most barnacles are new recruits"
+"2014-07-24_YB-ACq1",2014-07-24,2014-07-24,"YB","AC","1","Emp","Emplectonema worm","Type 23",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","8%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-07-24_YB-ACq4",2014-07-24,2014-07-24,"YB","AC","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low due to glare and blur. Majority of barnacles are tiny recruits."
+"2014-07-24_YB-ACq7",2014-07-24,2014-07-24,"YB","AC","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Most barnacles are new recruits, barnacle counts likely low due to glare."
+"2014-07-24_YB-ACq8",2014-07-24,2014-07-24,"YB","AC","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to glare and water cover, 10% underwater; most barnacles are new recruits"
+"2014-07-24_YB-ACq1",2014-07-24,2014-07-24,"YB","AC","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","8%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-07-24_YB-ACq4",2014-07-24,2014-07-24,"YB","AC","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low due to glare and blur. Majority of barnacles are tiny recruits."
+"2014-07-24_YB-ACq7",2014-07-24,2014-07-24,"YB","AC","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Most barnacles are new recruits, barnacle counts likely low due to glare."
+"2014-07-24_YB-ACq8",2014-07-24,2014-07-24,"YB","AC","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to glare and water cover, 10% underwater; most barnacles are new recruits"
+"2014-07-24_YB-ACq1",2014-07-24,2014-07-24,"YB","AC","1","Lim","Limpets","Type 12",43,0.0875,491.428571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","8%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-07-24_YB-ACq4",2014-07-24,2014-07-24,"YB","AC","4","Lim","Limpets","Type 12",100,0.0875,1142.85714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low due to glare and blur. Majority of barnacles are tiny recruits."
+"2014-07-24_YB-ACq7",2014-07-24,2014-07-24,"YB","AC","7","Lim","Limpets","Type 12",87,0.0875,994.285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Most barnacles are new recruits, barnacle counts likely low due to glare."
+"2014-07-24_YB-ACq8",2014-07-24,2014-07-24,"YB","AC","8","Lim","Limpets","Type 12",48,0.0875,548.571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to glare and water cover, 10% underwater; most barnacles are new recruits"
+"2014-07-24_YB-ACq1",2014-07-24,2014-07-24,"YB","AC","1","Ls","Littorina_sitkana","Type 13",61,0.0875,697.142857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","8%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-07-24_YB-ACq4",2014-07-24,2014-07-24,"YB","AC","4","Ls","Littorina_sitkana","Type 13",119,0.0875,1360,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low due to glare and blur. Majority of barnacles are tiny recruits."
+"2014-07-24_YB-ACq7",2014-07-24,2014-07-24,"YB","AC","7","Ls","Littorina_sitkana","Type 13",247,0.0875,2822.85714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Most barnacles are new recruits, barnacle counts likely low due to glare."
+"2014-07-24_YB-ACq8",2014-07-24,2014-07-24,"YB","AC","8","Ls","Littorina_sitkana","Type 13",149,0.0875,1702.85714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to glare and water cover, 10% underwater; most barnacles are new recruits"
+"2014-07-24_YB-ACq1",2014-07-24,2014-07-24,"YB","AC","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","8%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-07-24_YB-ACq4",2014-07-24,2014-07-24,"YB","AC","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low due to glare and blur. Majority of barnacles are tiny recruits."
+"2014-07-24_YB-ACq7",2014-07-24,2014-07-24,"YB","AC","7","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Most barnacles are new recruits, barnacle counts likely low due to glare."
+"2014-07-24_YB-ACq8",2014-07-24,2014-07-24,"YB","AC","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to glare and water cover, 10% underwater; most barnacles are new recruits"
+"2014-07-24_YB-ACq1",2014-07-24,2014-07-24,"YB","AC","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","8%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-07-24_YB-ACq4",2014-07-24,2014-07-24,"YB","AC","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low due to glare and blur. Majority of barnacles are tiny recruits."
+"2014-07-24_YB-ACq7",2014-07-24,2014-07-24,"YB","AC","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Most barnacles are new recruits, barnacle counts likely low due to glare."
+"2014-07-24_YB-ACq8",2014-07-24,2014-07-24,"YB","AC","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to glare and water cover, 10% underwater; most barnacles are new recruits"
+"2014-07-24_YB-ACq1",2014-07-24,2014-07-24,"YB","AC","1","Myt","Mytilus_spp","Type 7",135,0.0875,1542.85714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","8%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-07-24_YB-ACq4",2014-07-24,2014-07-24,"YB","AC","4","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low due to glare and blur. Majority of barnacles are tiny recruits."
+"2014-07-24_YB-ACq7",2014-07-24,2014-07-24,"YB","AC","7","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Most barnacles are new recruits, barnacle counts likely low due to glare."
+"2014-07-24_YB-ACq8",2014-07-24,2014-07-24,"YB","AC","8","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to glare and water cover, 10% underwater; most barnacles are new recruits"
+"2014-07-24_YB-ACq1",2014-07-24,2014-07-24,"YB","AC","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","8%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-07-24_YB-ACq4",2014-07-24,2014-07-24,"YB","AC","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low due to glare and blur. Majority of barnacles are tiny recruits."
+"2014-07-24_YB-ACq7",2014-07-24,2014-07-24,"YB","AC","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Most barnacles are new recruits, barnacle counts likely low due to glare."
+"2014-07-24_YB-ACq8",2014-07-24,2014-07-24,"YB","AC","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to glare and water cover, 10% underwater; most barnacles are new recruits"
+"2014-07-24_YB-ACq1",2014-07-24,2014-07-24,"YB","AC","1","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","8%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-07-24_YB-ACq4",2014-07-24,2014-07-24,"YB","AC","4","Mt","Mytilus_trossulus","Type 15",26,0.0875,297.142857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low due to glare and blur. Majority of barnacles are tiny recruits."
+"2014-07-24_YB-ACq7",2014-07-24,2014-07-24,"YB","AC","7","Mt","Mytilus_trossulus","Type 15",49,0.0875,560,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Most barnacles are new recruits, barnacle counts likely low due to glare."
+"2014-07-24_YB-ACq8",2014-07-24,2014-07-24,"YB","AC","8","Mt","Mytilus_trossulus","Type 15",86,0.0875,982.857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to glare and water cover, 10% underwater; most barnacles are new recruits"
+"2014-07-24_YB-ACq1",2014-07-24,2014-07-24,"YB","AC","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","8%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-07-24_YB-ACq4",2014-07-24,2014-07-24,"YB","AC","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low due to glare and blur. Majority of barnacles are tiny recruits."
+"2014-07-24_YB-ACq7",2014-07-24,2014-07-24,"YB","AC","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Most barnacles are new recruits, barnacle counts likely low due to glare."
+"2014-07-24_YB-ACq8",2014-07-24,2014-07-24,"YB","AC","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to glare and water cover, 10% underwater; most barnacles are new recruits"
+"2014-07-24_YB-ACq1",2014-07-24,2014-07-24,"YB","AC","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","8%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-07-24_YB-ACq4",2014-07-24,2014-07-24,"YB","AC","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low due to glare and blur. Majority of barnacles are tiny recruits."
+"2014-07-24_YB-ACq7",2014-07-24,2014-07-24,"YB","AC","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Most barnacles are new recruits, barnacle counts likely low due to glare."
+"2014-07-24_YB-ACq8",2014-07-24,2014-07-24,"YB","AC","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to glare and water cover, 10% underwater; most barnacles are new recruits"
+"2014-07-24_YB-ACq1",2014-07-24,2014-07-24,"YB","AC","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","8%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-07-24_YB-ACq4",2014-07-24,2014-07-24,"YB","AC","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low due to glare and blur. Majority of barnacles are tiny recruits."
+"2014-07-24_YB-ACq7",2014-07-24,2014-07-24,"YB","AC","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Most barnacles are new recruits, barnacle counts likely low due to glare."
+"2014-07-24_YB-ACq8",2014-07-24,2014-07-24,"YB","AC","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to glare and water cover, 10% underwater; most barnacles are new recruits"
+"2014-07-24_YB-ACq1",2014-07-24,2014-07-24,"YB","AC","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","8%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-07-24_YB-ACq4",2014-07-24,2014-07-24,"YB","AC","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low due to glare and blur. Majority of barnacles are tiny recruits."
+"2014-07-24_YB-ACq7",2014-07-24,2014-07-24,"YB","AC","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Most barnacles are new recruits, barnacle counts likely low due to glare."
+"2014-07-24_YB-ACq8",2014-07-24,2014-07-24,"YB","AC","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to glare and water cover, 10% underwater; most barnacles are new recruits"
+"2014-07-24_YB-ACq1",2014-07-24,2014-07-24,"YB","AC","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","8%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-07-24_YB-ACq4",2014-07-24,2014-07-24,"YB","AC","4","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low due to glare and blur. Majority of barnacles are tiny recruits."
+"2014-07-24_YB-ACq7",2014-07-24,2014-07-24,"YB","AC","7","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Most barnacles are new recruits, barnacle counts likely low due to glare."
+"2014-07-24_YB-ACq8",2014-07-24,2014-07-24,"YB","AC","8","No","Nucella_ostrina","Type 9",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to glare and water cover, 10% underwater; most barnacles are new recruits"
+"2014-07-24_YB-ACq1",2014-07-24,2014-07-24,"YB","AC","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","8%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-07-24_YB-ACq4",2014-07-24,2014-07-24,"YB","AC","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low due to glare and blur. Majority of barnacles are tiny recruits."
+"2014-07-24_YB-ACq7",2014-07-24,2014-07-24,"YB","AC","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Most barnacles are new recruits, barnacle counts likely low due to glare."
+"2014-07-24_YB-ACq8",2014-07-24,2014-07-24,"YB","AC","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to glare and water cover, 10% underwater; most barnacles are new recruits"
+"2014-07-24_YB-ACq1",2014-07-24,2014-07-24,"YB","AC","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","8%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-07-24_YB-ACq4",2014-07-24,2014-07-24,"YB","AC","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low due to glare and blur. Majority of barnacles are tiny recruits."
+"2014-07-24_YB-ACq7",2014-07-24,2014-07-24,"YB","AC","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Most barnacles are new recruits, barnacle counts likely low due to glare."
+"2014-07-24_YB-ACq8",2014-07-24,2014-07-24,"YB","AC","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to glare and water cover, 10% underwater; most barnacles are new recruits"
+"2014-07-24_YB-ACq1",2014-07-24,2014-07-24,"YB","AC","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","8%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-07-24_YB-ACq4",2014-07-24,2014-07-24,"YB","AC","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low due to glare and blur. Majority of barnacles are tiny recruits."
+"2014-07-24_YB-ACq7",2014-07-24,2014-07-24,"YB","AC","7","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Most barnacles are new recruits, barnacle counts likely low due to glare."
+"2014-07-24_YB-ACq8",2014-07-24,2014-07-24,"YB","AC","8","Pp","Pollicipes_polymerus","Type 11",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to glare and water cover, 10% underwater; most barnacles are new recruits"
+"2014-07-24_YB-ACq1",2014-07-24,2014-07-24,"YB","AC","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","8%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-07-24_YB-ACq4",2014-07-24,2014-07-24,"YB","AC","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low due to glare and blur. Majority of barnacles are tiny recruits."
+"2014-07-24_YB-ACq7",2014-07-24,2014-07-24,"YB","AC","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Most barnacles are new recruits, barnacle counts likely low due to glare."
+"2014-07-24_YB-ACq8",2014-07-24,2014-07-24,"YB","AC","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to glare and water cover, 10% underwater; most barnacles are new recruits"
+"2014-07-24_YB-ACq1",2014-07-24,2014-07-24,"YB","AC","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","8%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-07-24_YB-ACq4",2014-07-24,2014-07-24,"YB","AC","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low due to glare and blur. Majority of barnacles are tiny recruits."
+"2014-07-24_YB-ACq7",2014-07-24,2014-07-24,"YB","AC","7","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Most barnacles are new recruits, barnacle counts likely low due to glare."
+"2014-07-24_YB-ACq8",2014-07-24,2014-07-24,"YB","AC","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to glare and water cover, 10% underwater; most barnacles are new recruits"
+"2014-07-24_YB-ACq1",2014-07-24,2014-07-24,"YB","AC","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","8%","Mussel, limpet, littorine, and barnacle densities likely higher but glare made counting difficult"
+"2014-07-24_YB-ACq4",2014-07-24,2014-07-24,"YB","AC","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low due to glare and blur. Majority of barnacles are tiny recruits."
+"2014-07-24_YB-ACq7",2014-07-24,2014-07-24,"YB","AC","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Most barnacles are new recruits, barnacle counts likely low due to glare."
+"2014-07-24_YB-ACq8",2014-07-24,2014-07-24,"YB","AC","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to glare and water cover, 10% underwater; most barnacles are new recruits"
+"2014-07-24_YB-ADq1",2014-07-24,2014-07-24,"YB","AD","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","20%","Could not count most new barnacle recruits because of blur"
+"2014-07-24_YB-ADq5",2014-07-24,2014-07-24,"YB","AD","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare, blur, and algae cover. Barnacles are mostly new recruits."
+"2014-07-24_YB-ADq8",2014-07-24,2014-07-24,"YB","AD","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2014-07-24_YB-ADq1",2014-07-24,2014-07-24,"YB","AD","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","20%","Could not count most new barnacle recruits because of blur"
+"2014-07-24_YB-ADq5",2014-07-24,2014-07-24,"YB","AD","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare, blur, and algae cover. Barnacles are mostly new recruits."
+"2014-07-24_YB-ADq8",2014-07-24,2014-07-24,"YB","AD","8","Ae","Anemones","Type 14",16,0.0875,182.857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2014-07-24_YB-ADq1",2014-07-24,2014-07-24,"YB","AD","1","Bg","Balanus_glandula","Type 1",602,0.0875,6880,NA,"Beatriz Vaca","Finished","Cropped","Full","20%","Could not count most new barnacle recruits because of blur"
+"2014-07-24_YB-ADq5",2014-07-24,2014-07-24,"YB","AD","5","Bg","Balanus_glandula","Type 1",792,0.0875,9051.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare, blur, and algae cover. Barnacles are mostly new recruits."
+"2014-07-24_YB-ADq8",2014-07-24,2014-07-24,"YB","AD","8","Bg","Balanus_glandula","Type 1",3045,0.015625,194880,"c","Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2014-07-24_YB-ADq1",2014-07-24,2014-07-24,"YB","AD","1","BgD","Balanus_glandula_(dead)","Type 2",16,0.0875,182.857142857143,NA,"Beatriz Vaca","Finished","Cropped","Full","20%","Could not count most new barnacle recruits because of blur"
+"2014-07-24_YB-ADq5",2014-07-24,2014-07-24,"YB","AD","5","BgD","Balanus_glandula_(dead)","Type 2",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare, blur, and algae cover. Barnacles are mostly new recruits."
+"2014-07-24_YB-ADq8",2014-07-24,2014-07-24,"YB","AD","8","BgD","Balanus_glandula_(dead)","Type 2",18,0.015625,1152,"c","Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2014-07-24_YB-ADq1",2014-07-24,2014-07-24,"YB","AD","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","20%","Could not count most new barnacle recruits because of blur"
+"2014-07-24_YB-ADq5",2014-07-24,2014-07-24,"YB","AD","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare, blur, and algae cover. Barnacles are mostly new recruits."
+"2014-07-24_YB-ADq8",2014-07-24,2014-07-24,"YB","AD","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2014-07-24_YB-ADq1",2014-07-24,2014-07-24,"YB","AD","1","Cth","Chthamalus_dalli","Type 3",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Cropped","Full","20%","Could not count most new barnacle recruits because of blur"
+"2014-07-24_YB-ADq5",2014-07-24,2014-07-24,"YB","AD","5","Cth","Chthamalus_dalli","Type 3",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare, blur, and algae cover. Barnacles are mostly new recruits."
+"2014-07-24_YB-ADq8",2014-07-24,2014-07-24,"YB","AD","8","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2014-07-24_YB-ADq1",2014-07-24,2014-07-24,"YB","AD","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","20%","Could not count most new barnacle recruits because of blur"
+"2014-07-24_YB-ADq5",2014-07-24,2014-07-24,"YB","AD","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare, blur, and algae cover. Barnacles are mostly new recruits."
+"2014-07-24_YB-ADq8",2014-07-24,2014-07-24,"YB","AD","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2014-07-24_YB-ADq1",2014-07-24,2014-07-24,"YB","AD","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","20%","Could not count most new barnacle recruits because of blur"
+"2014-07-24_YB-ADq5",2014-07-24,2014-07-24,"YB","AD","5","Emp","Emplectonema worm","Type 23",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare, blur, and algae cover. Barnacles are mostly new recruits."
+"2014-07-24_YB-ADq8",2014-07-24,2014-07-24,"YB","AD","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2014-07-24_YB-ADq1",2014-07-24,2014-07-24,"YB","AD","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","20%","Could not count most new barnacle recruits because of blur"
+"2014-07-24_YB-ADq5",2014-07-24,2014-07-24,"YB","AD","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare, blur, and algae cover. Barnacles are mostly new recruits."
+"2014-07-24_YB-ADq8",2014-07-24,2014-07-24,"YB","AD","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2014-07-24_YB-ADq1",2014-07-24,2014-07-24,"YB","AD","1","Lim","Limpets","Type 12",64,0.0875,731.428571428571,NA,"Beatriz Vaca","Finished","Cropped","Full","20%","Could not count most new barnacle recruits because of blur"
+"2014-07-24_YB-ADq5",2014-07-24,2014-07-24,"YB","AD","5","Lim","Limpets","Type 12",103,0.0875,1177.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare, blur, and algae cover. Barnacles are mostly new recruits."
+"2014-07-24_YB-ADq8",2014-07-24,2014-07-24,"YB","AD","8","Lim","Limpets","Type 12",362,0.0875,4137.14285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2014-07-24_YB-ADq1",2014-07-24,2014-07-24,"YB","AD","1","Ls","Littorina_sitkana","Type 13",221,0.0875,2525.71428571429,NA,"Beatriz Vaca","Finished","Cropped","Full","20%","Could not count most new barnacle recruits because of blur"
+"2014-07-24_YB-ADq5",2014-07-24,2014-07-24,"YB","AD","5","Ls","Littorina_sitkana","Type 13",120,0.0875,1371.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare, blur, and algae cover. Barnacles are mostly new recruits."
+"2014-07-24_YB-ADq8",2014-07-24,2014-07-24,"YB","AD","8","Ls","Littorina_sitkana","Type 13",138,0.0875,1577.14285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2014-07-24_YB-ADq1",2014-07-24,2014-07-24,"YB","AD","1","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","20%","Could not count most new barnacle recruits because of blur"
+"2014-07-24_YB-ADq5",2014-07-24,2014-07-24,"YB","AD","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare, blur, and algae cover. Barnacles are mostly new recruits."
+"2014-07-24_YB-ADq8",2014-07-24,2014-07-24,"YB","AD","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2014-07-24_YB-ADq1",2014-07-24,2014-07-24,"YB","AD","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","20%","Could not count most new barnacle recruits because of blur"
+"2014-07-24_YB-ADq5",2014-07-24,2014-07-24,"YB","AD","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare, blur, and algae cover. Barnacles are mostly new recruits."
+"2014-07-24_YB-ADq8",2014-07-24,2014-07-24,"YB","AD","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2014-07-24_YB-ADq1",2014-07-24,2014-07-24,"YB","AD","1","Myt","Mytilus_spp","Type 7",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","20%","Could not count most new barnacle recruits because of blur"
+"2014-07-24_YB-ADq5",2014-07-24,2014-07-24,"YB","AD","5","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare, blur, and algae cover. Barnacles are mostly new recruits."
+"2014-07-24_YB-ADq8",2014-07-24,2014-07-24,"YB","AD","8","Myt","Mytilus_spp","Type 7",28,0.0875,320,NA,"Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2014-07-24_YB-ADq1",2014-07-24,2014-07-24,"YB","AD","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","20%","Could not count most new barnacle recruits because of blur"
+"2014-07-24_YB-ADq5",2014-07-24,2014-07-24,"YB","AD","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare, blur, and algae cover. Barnacles are mostly new recruits."
+"2014-07-24_YB-ADq8",2014-07-24,2014-07-24,"YB","AD","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2014-07-24_YB-ADq1",2014-07-24,2014-07-24,"YB","AD","1","Mt","Mytilus_trossulus","Type 15",127,0.015625,8128,"c","Beatriz Vaca","Finished","Cropped","Full","20%","Could not count most new barnacle recruits because of blur"
+"2014-07-24_YB-ADq5",2014-07-24,2014-07-24,"YB","AD","5","Mt","Mytilus_trossulus","Type 15",272,0.0875,3108.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare, blur, and algae cover. Barnacles are mostly new recruits."
+"2014-07-24_YB-ADq8",2014-07-24,2014-07-24,"YB","AD","8","Mt","Mytilus_trossulus","Type 15",49,0.0875,560,NA,"Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2014-07-24_YB-ADq1",2014-07-24,2014-07-24,"YB","AD","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","20%","Could not count most new barnacle recruits because of blur"
+"2014-07-24_YB-ADq5",2014-07-24,2014-07-24,"YB","AD","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare, blur, and algae cover. Barnacles are mostly new recruits."
+"2014-07-24_YB-ADq8",2014-07-24,2014-07-24,"YB","AD","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2014-07-24_YB-ADq1",2014-07-24,2014-07-24,"YB","AD","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","20%","Could not count most new barnacle recruits because of blur"
+"2014-07-24_YB-ADq5",2014-07-24,2014-07-24,"YB","AD","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare, blur, and algae cover. Barnacles are mostly new recruits."
+"2014-07-24_YB-ADq8",2014-07-24,2014-07-24,"YB","AD","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2014-07-24_YB-ADq1",2014-07-24,2014-07-24,"YB","AD","1","Nc","Nucella_canaliculata","Type 10",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Cropped","Full","20%","Could not count most new barnacle recruits because of blur"
+"2014-07-24_YB-ADq5",2014-07-24,2014-07-24,"YB","AD","5","Nc","Nucella_canaliculata","Type 10",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare, blur, and algae cover. Barnacles are mostly new recruits."
+"2014-07-24_YB-ADq8",2014-07-24,2014-07-24,"YB","AD","8","Nc","Nucella_canaliculata","Type 10",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2014-07-24_YB-ADq1",2014-07-24,2014-07-24,"YB","AD","1","Negg","Nucella_eggs","Type 26",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Cropped","Full","20%","Could not count most new barnacle recruits because of blur"
+"2014-07-24_YB-ADq5",2014-07-24,2014-07-24,"YB","AD","5","Negg","Nucella_eggs","Type 26",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare, blur, and algae cover. Barnacles are mostly new recruits."
+"2014-07-24_YB-ADq8",2014-07-24,2014-07-24,"YB","AD","8","Negg","Nucella_eggs","Type 26",27,0.0875,308.571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2014-07-24_YB-ADq1",2014-07-24,2014-07-24,"YB","AD","1","No","Nucella_ostrina","Type 9",18,0.0875,205.714285714286,NA,"Beatriz Vaca","Finished","Cropped","Full","20%","Could not count most new barnacle recruits because of blur"
+"2014-07-24_YB-ADq5",2014-07-24,2014-07-24,"YB","AD","5","No","Nucella_ostrina","Type 9",18,0.0875,205.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare, blur, and algae cover. Barnacles are mostly new recruits."
+"2014-07-24_YB-ADq8",2014-07-24,2014-07-24,"YB","AD","8","No","Nucella_ostrina","Type 9",28,0.0875,320,NA,"Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2014-07-24_YB-ADq1",2014-07-24,2014-07-24,"YB","AD","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","20%","Could not count most new barnacle recruits because of blur"
+"2014-07-24_YB-ADq5",2014-07-24,2014-07-24,"YB","AD","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare, blur, and algae cover. Barnacles are mostly new recruits."
+"2014-07-24_YB-ADq8",2014-07-24,2014-07-24,"YB","AD","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2014-07-24_YB-ADq1",2014-07-24,2014-07-24,"YB","AD","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","20%","Could not count most new barnacle recruits because of blur"
+"2014-07-24_YB-ADq5",2014-07-24,2014-07-24,"YB","AD","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare, blur, and algae cover. Barnacles are mostly new recruits."
+"2014-07-24_YB-ADq8",2014-07-24,2014-07-24,"YB","AD","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2014-07-24_YB-ADq1",2014-07-24,2014-07-24,"YB","AD","1","Pp","Pollicipes_polymerus","Type 11",7,0.0875,80,NA,"Beatriz Vaca","Finished","Cropped","Full","20%","Could not count most new barnacle recruits because of blur"
+"2014-07-24_YB-ADq5",2014-07-24,2014-07-24,"YB","AD","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare, blur, and algae cover. Barnacles are mostly new recruits."
+"2014-07-24_YB-ADq8",2014-07-24,2014-07-24,"YB","AD","8","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2014-07-24_YB-ADq1",2014-07-24,2014-07-24,"YB","AD","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","20%","Could not count most new barnacle recruits because of blur"
+"2014-07-24_YB-ADq5",2014-07-24,2014-07-24,"YB","AD","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare, blur, and algae cover. Barnacles are mostly new recruits."
+"2014-07-24_YB-ADq8",2014-07-24,2014-07-24,"YB","AD","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2014-07-24_YB-ADq1",2014-07-24,2014-07-24,"YB","AD","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","20%","Could not count most new barnacle recruits because of blur"
+"2014-07-24_YB-ADq5",2014-07-24,2014-07-24,"YB","AD","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare, blur, and algae cover. Barnacles are mostly new recruits."
+"2014-07-24_YB-ADq8",2014-07-24,2014-07-24,"YB","AD","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2014-07-24_YB-ADq1",2014-07-24,2014-07-24,"YB","AD","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","20%","Could not count most new barnacle recruits because of blur"
+"2014-07-24_YB-ADq5",2014-07-24,2014-07-24,"YB","AD","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare, blur, and algae cover. Barnacles are mostly new recruits."
+"2014-07-24_YB-ADq8",2014-07-24,2014-07-24,"YB","AD","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2014-07-24_YB-AEq1",2014-07-24,2014-07-24,"YB","AE","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Mussel, littorine, and limpet counts likely low due to glare and algae cover."
+"2014-07-24_YB-AEq4",2014-07-24,2014-07-24,"YB","AE","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-07-24_YB-AEq8",2014-07-24,2014-07-24,"YB","AE","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-07-24_YB-AEq1",2014-07-24,2014-07-24,"YB","AE","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Mussel, littorine, and limpet counts likely low due to glare and algae cover."
+"2014-07-24_YB-AEq4",2014-07-24,2014-07-24,"YB","AE","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-07-24_YB-AEq8",2014-07-24,2014-07-24,"YB","AE","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-07-24_YB-AEq1",2014-07-24,2014-07-24,"YB","AE","1","Bg","Balanus_glandula","Type 1",1637,0.0875,18708.5714285714,NA,"Beatriz Vaca","Finished","Full","Full","25%","Mussel, littorine, and limpet counts likely low due to glare and algae cover."
+"2014-07-24_YB-AEq4",2014-07-24,2014-07-24,"YB","AE","4","Bg","Balanus_glandula","Type 1",619,0.015625,39616,"c","Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-07-24_YB-AEq8",2014-07-24,2014-07-24,"YB","AE","8","Bg","Balanus_glandula","Type 1",2840,0.015625,181760,"c","Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-07-24_YB-AEq1",2014-07-24,2014-07-24,"YB","AE","1","BgD","Balanus_glandula_(dead)","Type 2",75,0.0875,857.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","25%","Mussel, littorine, and limpet counts likely low due to glare and algae cover."
+"2014-07-24_YB-AEq4",2014-07-24,2014-07-24,"YB","AE","4","BgD","Balanus_glandula_(dead)","Type 2",1,0.015625,64,"c","Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-07-24_YB-AEq8",2014-07-24,2014-07-24,"YB","AE","8","BgD","Balanus_glandula_(dead)","Type 2",22,0.015625,1408,"c","Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-07-24_YB-AEq1",2014-07-24,2014-07-24,"YB","AE","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Mussel, littorine, and limpet counts likely low due to glare and algae cover."
+"2014-07-24_YB-AEq4",2014-07-24,2014-07-24,"YB","AE","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-07-24_YB-AEq8",2014-07-24,2014-07-24,"YB","AE","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-07-24_YB-AEq1",2014-07-24,2014-07-24,"YB","AE","1","Cth","Chthamalus_dalli","Type 3",21,0.0875,240,NA,"Beatriz Vaca","Finished","Full","Full","25%","Mussel, littorine, and limpet counts likely low due to glare and algae cover."
+"2014-07-24_YB-AEq4",2014-07-24,2014-07-24,"YB","AE","4","Cth","Chthamalus_dalli","Type 3",30,0.015625,1920,"c","Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-07-24_YB-AEq8",2014-07-24,2014-07-24,"YB","AE","8","Cth","Chthamalus_dalli","Type 3",43,0.015625,2752,"c","Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-07-24_YB-AEq1",2014-07-24,2014-07-24,"YB","AE","1","CthD","Chthamalus_dalli (dead)","Type 4",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","25%","Mussel, littorine, and limpet counts likely low due to glare and algae cover."
+"2014-07-24_YB-AEq4",2014-07-24,2014-07-24,"YB","AE","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-07-24_YB-AEq8",2014-07-24,2014-07-24,"YB","AE","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-07-24_YB-AEq1",2014-07-24,2014-07-24,"YB","AE","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Mussel, littorine, and limpet counts likely low due to glare and algae cover."
+"2014-07-24_YB-AEq4",2014-07-24,2014-07-24,"YB","AE","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-07-24_YB-AEq8",2014-07-24,2014-07-24,"YB","AE","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-07-24_YB-AEq1",2014-07-24,2014-07-24,"YB","AE","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Mussel, littorine, and limpet counts likely low due to glare and algae cover."
+"2014-07-24_YB-AEq4",2014-07-24,2014-07-24,"YB","AE","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-07-24_YB-AEq8",2014-07-24,2014-07-24,"YB","AE","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-07-24_YB-AEq1",2014-07-24,2014-07-24,"YB","AE","1","Lim","Limpets","Type 12",133,0.0875,1520,NA,"Beatriz Vaca","Finished","Full","Full","25%","Mussel, littorine, and limpet counts likely low due to glare and algae cover."
+"2014-07-24_YB-AEq4",2014-07-24,2014-07-24,"YB","AE","4","Lim","Limpets","Type 12",472,0.0875,5394.28571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-07-24_YB-AEq8",2014-07-24,2014-07-24,"YB","AE","8","Lim","Limpets","Type 12",489,0.0875,5588.57142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-07-24_YB-AEq1",2014-07-24,2014-07-24,"YB","AE","1","Ls","Littorina_sitkana","Type 13",266,0.0875,3040,NA,"Beatriz Vaca","Finished","Full","Full","25%","Mussel, littorine, and limpet counts likely low due to glare and algae cover."
+"2014-07-24_YB-AEq4",2014-07-24,2014-07-24,"YB","AE","4","Ls","Littorina_sitkana","Type 13",242,0.0875,2765.71428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-07-24_YB-AEq8",2014-07-24,2014-07-24,"YB","AE","8","Ls","Littorina_sitkana","Type 13",94,0.0875,1074.28571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-07-24_YB-AEq1",2014-07-24,2014-07-24,"YB","AE","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Mussel, littorine, and limpet counts likely low due to glare and algae cover."
+"2014-07-24_YB-AEq4",2014-07-24,2014-07-24,"YB","AE","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-07-24_YB-AEq8",2014-07-24,2014-07-24,"YB","AE","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-07-24_YB-AEq1",2014-07-24,2014-07-24,"YB","AE","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Mussel, littorine, and limpet counts likely low due to glare and algae cover."
+"2014-07-24_YB-AEq4",2014-07-24,2014-07-24,"YB","AE","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-07-24_YB-AEq8",2014-07-24,2014-07-24,"YB","AE","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-07-24_YB-AEq1",2014-07-24,2014-07-24,"YB","AE","1","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Mussel, littorine, and limpet counts likely low due to glare and algae cover."
+"2014-07-24_YB-AEq4",2014-07-24,2014-07-24,"YB","AE","4","Myt","Mytilus_spp","Type 7",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-07-24_YB-AEq8",2014-07-24,2014-07-24,"YB","AE","8","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-07-24_YB-AEq1",2014-07-24,2014-07-24,"YB","AE","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Mussel, littorine, and limpet counts likely low due to glare and algae cover."
+"2014-07-24_YB-AEq4",2014-07-24,2014-07-24,"YB","AE","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-07-24_YB-AEq8",2014-07-24,2014-07-24,"YB","AE","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-07-24_YB-AEq1",2014-07-24,2014-07-24,"YB","AE","1","Mt","Mytilus_trossulus","Type 15",206,0.0875,2354.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","25%","Mussel, littorine, and limpet counts likely low due to glare and algae cover."
+"2014-07-24_YB-AEq4",2014-07-24,2014-07-24,"YB","AE","4","Mt","Mytilus_trossulus","Type 15",228,0.0875,2605.71428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-07-24_YB-AEq8",2014-07-24,2014-07-24,"YB","AE","8","Mt","Mytilus_trossulus","Type 15",51,0.0875,582.857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-07-24_YB-AEq1",2014-07-24,2014-07-24,"YB","AE","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Mussel, littorine, and limpet counts likely low due to glare and algae cover."
+"2014-07-24_YB-AEq4",2014-07-24,2014-07-24,"YB","AE","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-07-24_YB-AEq8",2014-07-24,2014-07-24,"YB","AE","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-07-24_YB-AEq1",2014-07-24,2014-07-24,"YB","AE","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Mussel, littorine, and limpet counts likely low due to glare and algae cover."
+"2014-07-24_YB-AEq4",2014-07-24,2014-07-24,"YB","AE","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-07-24_YB-AEq8",2014-07-24,2014-07-24,"YB","AE","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-07-24_YB-AEq1",2014-07-24,2014-07-24,"YB","AE","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Mussel, littorine, and limpet counts likely low due to glare and algae cover."
+"2014-07-24_YB-AEq4",2014-07-24,2014-07-24,"YB","AE","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-07-24_YB-AEq8",2014-07-24,2014-07-24,"YB","AE","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-07-24_YB-AEq1",2014-07-24,2014-07-24,"YB","AE","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Mussel, littorine, and limpet counts likely low due to glare and algae cover."
+"2014-07-24_YB-AEq4",2014-07-24,2014-07-24,"YB","AE","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-07-24_YB-AEq8",2014-07-24,2014-07-24,"YB","AE","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-07-24_YB-AEq1",2014-07-24,2014-07-24,"YB","AE","1","No","Nucella_ostrina","Type 9",34,0.0875,388.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","25%","Mussel, littorine, and limpet counts likely low due to glare and algae cover."
+"2014-07-24_YB-AEq4",2014-07-24,2014-07-24,"YB","AE","4","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-07-24_YB-AEq8",2014-07-24,2014-07-24,"YB","AE","8","No","Nucella_ostrina","Type 9",18,0.0875,205.714285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-07-24_YB-AEq1",2014-07-24,2014-07-24,"YB","AE","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Mussel, littorine, and limpet counts likely low due to glare and algae cover."
+"2014-07-24_YB-AEq4",2014-07-24,2014-07-24,"YB","AE","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-07-24_YB-AEq8",2014-07-24,2014-07-24,"YB","AE","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-07-24_YB-AEq1",2014-07-24,2014-07-24,"YB","AE","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Mussel, littorine, and limpet counts likely low due to glare and algae cover."
+"2014-07-24_YB-AEq4",2014-07-24,2014-07-24,"YB","AE","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-07-24_YB-AEq8",2014-07-24,2014-07-24,"YB","AE","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-07-24_YB-AEq1",2014-07-24,2014-07-24,"YB","AE","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Mussel, littorine, and limpet counts likely low due to glare and algae cover."
+"2014-07-24_YB-AEq4",2014-07-24,2014-07-24,"YB","AE","4","Pp","Pollicipes_polymerus","Type 11",19,0.0875,217.142857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-07-24_YB-AEq8",2014-07-24,2014-07-24,"YB","AE","8","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-07-24_YB-AEq1",2014-07-24,2014-07-24,"YB","AE","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Mussel, littorine, and limpet counts likely low due to glare and algae cover."
+"2014-07-24_YB-AEq4",2014-07-24,2014-07-24,"YB","AE","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-07-24_YB-AEq8",2014-07-24,2014-07-24,"YB","AE","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-07-24_YB-AEq1",2014-07-24,2014-07-24,"YB","AE","1","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","25%","Mussel, littorine, and limpet counts likely low due to glare and algae cover."
+"2014-07-24_YB-AEq4",2014-07-24,2014-07-24,"YB","AE","4","Sc","Semibalanus_cariosus","Type 5",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-07-24_YB-AEq8",2014-07-24,2014-07-24,"YB","AE","8","Sc","Semibalanus_cariosus","Type 5",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-07-24_YB-AEq1",2014-07-24,2014-07-24,"YB","AE","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Mussel, littorine, and limpet counts likely low due to glare and algae cover."
+"2014-07-24_YB-AEq4",2014-07-24,2014-07-24,"YB","AE","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-07-24_YB-AEq8",2014-07-24,2014-07-24,"YB","AE","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-07-25_YB-AFq5",2014-07-24,2014-07-25,"YB","AF","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-07-25_YB-AFq8",2014-07-24,2014-07-25,"YB","AF","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","5%",""
+"2014-07-25_YB-AFq9",2014-07-24,2014-07-25,"YB","AF","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Barnacle counts likley low due to recruit size; other counts may be low due to glare"
+"2014-07-25_YB-AFq5",2014-07-24,2014-07-25,"YB","AF","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-07-25_YB-AFq8",2014-07-24,2014-07-25,"YB","AF","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","5%",""
+"2014-07-25_YB-AFq9",2014-07-24,2014-07-25,"YB","AF","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Barnacle counts likley low due to recruit size; other counts may be low due to glare"
+"2014-07-25_YB-AFq5",2014-07-24,2014-07-25,"YB","AF","5","Bg","Balanus_glandula","Type 1",831,0.015625,53184,"c","Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-07-25_YB-AFq8",2014-07-24,2014-07-25,"YB","AF","8","Bg","Balanus_glandula","Type 1",1789,0.015625,114496,"c","Celeste Moen","Finished","Full","Cropped","5%",""
+"2014-07-25_YB-AFq9",2014-07-24,2014-07-25,"YB","AF","9","Bg","Balanus_glandula","Type 1",1731,0.015625,110784,"c","Stephanie Merhoff","Finished","Full","Cropped","3%","Barnacle counts likley low due to recruit size; other counts may be low due to glare"
+"2014-07-25_YB-AFq5",2014-07-24,2014-07-25,"YB","AF","5","BgD","Balanus_glandula_(dead)","Type 2",10,0.015625,640,"c","Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-07-25_YB-AFq8",2014-07-24,2014-07-25,"YB","AF","8","BgD","Balanus_glandula_(dead)","Type 2",31,0.015625,1984,"c","Celeste Moen","Finished","Full","Cropped","5%",""
+"2014-07-25_YB-AFq9",2014-07-24,2014-07-25,"YB","AF","9","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","3%","Barnacle counts likley low due to recruit size; other counts may be low due to glare"
+"2014-07-25_YB-AFq5",2014-07-24,2014-07-25,"YB","AF","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-07-25_YB-AFq8",2014-07-24,2014-07-25,"YB","AF","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","5%",""
+"2014-07-25_YB-AFq9",2014-07-24,2014-07-25,"YB","AF","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Barnacle counts likley low due to recruit size; other counts may be low due to glare"
+"2014-07-25_YB-AFq5",2014-07-24,2014-07-25,"YB","AF","5","Cth","Chthamalus_dalli","Type 3",2,0.015625,128,"c","Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-07-25_YB-AFq8",2014-07-24,2014-07-25,"YB","AF","8","Cth","Chthamalus_dalli","Type 3",123,0.015625,7872,"c","Celeste Moen","Finished","Full","Cropped","5%",""
+"2014-07-25_YB-AFq9",2014-07-24,2014-07-25,"YB","AF","9","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","3%","Barnacle counts likley low due to recruit size; other counts may be low due to glare"
+"2014-07-25_YB-AFq5",2014-07-24,2014-07-25,"YB","AF","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-07-25_YB-AFq8",2014-07-24,2014-07-25,"YB","AF","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Celeste Moen","Finished","Full","Cropped","5%",""
+"2014-07-25_YB-AFq9",2014-07-24,2014-07-25,"YB","AF","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","3%","Barnacle counts likley low due to recruit size; other counts may be low due to glare"
+"2014-07-25_YB-AFq5",2014-07-24,2014-07-25,"YB","AF","5","Emp","Emplectonema worm","Type 23",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-07-25_YB-AFq8",2014-07-24,2014-07-25,"YB","AF","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","5%",""
+"2014-07-25_YB-AFq9",2014-07-24,2014-07-25,"YB","AF","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Barnacle counts likley low due to recruit size; other counts may be low due to glare"
+"2014-07-25_YB-AFq5",2014-07-24,2014-07-25,"YB","AF","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-07-25_YB-AFq8",2014-07-24,2014-07-25,"YB","AF","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","5%",""
+"2014-07-25_YB-AFq9",2014-07-24,2014-07-25,"YB","AF","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Barnacle counts likley low due to recruit size; other counts may be low due to glare"
+"2014-07-25_YB-AFq5",2014-07-24,2014-07-25,"YB","AF","5","Lim","Limpets","Type 12",123,0.0875,1405.71428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-07-25_YB-AFq8",2014-07-24,2014-07-25,"YB","AF","8","Lim","Limpets","Type 12",43,0.0875,491.428571428571,NA,"Celeste Moen","Finished","Full","Cropped","5%",""
+"2014-07-25_YB-AFq9",2014-07-24,2014-07-25,"YB","AF","9","Lim","Limpets","Type 12",54,0.0875,617.142857142857,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Barnacle counts likley low due to recruit size; other counts may be low due to glare"
+"2014-07-25_YB-AFq5",2014-07-24,2014-07-25,"YB","AF","5","Ls","Littorina_sitkana","Type 13",824,0.0875,9417.14285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-07-25_YB-AFq8",2014-07-24,2014-07-25,"YB","AF","8","Ls","Littorina_sitkana","Type 13",375,0.0875,4285.71428571429,NA,"Celeste Moen","Finished","Full","Cropped","5%",""
+"2014-07-25_YB-AFq9",2014-07-24,2014-07-25,"YB","AF","9","Ls","Littorina_sitkana","Type 13",311,0.0875,3554.28571428571,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Barnacle counts likley low due to recruit size; other counts may be low due to glare"
+"2014-07-25_YB-AFq5",2014-07-24,2014-07-25,"YB","AF","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-07-25_YB-AFq8",2014-07-24,2014-07-25,"YB","AF","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","5%",""
+"2014-07-25_YB-AFq9",2014-07-24,2014-07-25,"YB","AF","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Barnacle counts likley low due to recruit size; other counts may be low due to glare"
+"2014-07-25_YB-AFq5",2014-07-24,2014-07-25,"YB","AF","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-07-25_YB-AFq8",2014-07-24,2014-07-25,"YB","AF","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","5%",""
+"2014-07-25_YB-AFq9",2014-07-24,2014-07-25,"YB","AF","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Barnacle counts likley low due to recruit size; other counts may be low due to glare"
+"2014-07-25_YB-AFq5",2014-07-24,2014-07-25,"YB","AF","5","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-07-25_YB-AFq8",2014-07-24,2014-07-25,"YB","AF","8","Myt","Mytilus_spp","Type 7",49,0.0875,560,NA,"Celeste Moen","Finished","Full","Cropped","5%",""
+"2014-07-25_YB-AFq9",2014-07-24,2014-07-25,"YB","AF","9","Myt","Mytilus_spp","Type 7",118,0.0875,1348.57142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Barnacle counts likley low due to recruit size; other counts may be low due to glare"
+"2014-07-25_YB-AFq5",2014-07-24,2014-07-25,"YB","AF","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-07-25_YB-AFq8",2014-07-24,2014-07-25,"YB","AF","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","5%",""
+"2014-07-25_YB-AFq9",2014-07-24,2014-07-25,"YB","AF","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Barnacle counts likley low due to recruit size; other counts may be low due to glare"
+"2014-07-25_YB-AFq5",2014-07-24,2014-07-25,"YB","AF","5","Mt","Mytilus_trossulus","Type 15",308,0.0875,3520,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-07-25_YB-AFq8",2014-07-24,2014-07-25,"YB","AF","8","Mt","Mytilus_trossulus","Type 15",9,0.0875,102.857142857143,NA,"Celeste Moen","Finished","Full","Cropped","5%",""
+"2014-07-25_YB-AFq9",2014-07-24,2014-07-25,"YB","AF","9","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Barnacle counts likley low due to recruit size; other counts may be low due to glare"
+"2014-07-25_YB-AFq5",2014-07-24,2014-07-25,"YB","AF","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-07-25_YB-AFq8",2014-07-24,2014-07-25,"YB","AF","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","5%",""
+"2014-07-25_YB-AFq9",2014-07-24,2014-07-25,"YB","AF","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Barnacle counts likley low due to recruit size; other counts may be low due to glare"
+"2014-07-25_YB-AFq5",2014-07-24,2014-07-25,"YB","AF","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-07-25_YB-AFq8",2014-07-24,2014-07-25,"YB","AF","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","5%",""
+"2014-07-25_YB-AFq9",2014-07-24,2014-07-25,"YB","AF","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Barnacle counts likley low due to recruit size; other counts may be low due to glare"
+"2014-07-25_YB-AFq5",2014-07-24,2014-07-25,"YB","AF","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-07-25_YB-AFq8",2014-07-24,2014-07-25,"YB","AF","8","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Celeste Moen","Finished","Full","Cropped","5%",""
+"2014-07-25_YB-AFq9",2014-07-24,2014-07-25,"YB","AF","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Barnacle counts likley low due to recruit size; other counts may be low due to glare"
+"2014-07-25_YB-AFq5",2014-07-24,2014-07-25,"YB","AF","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-07-25_YB-AFq8",2014-07-24,2014-07-25,"YB","AF","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","5%",""
+"2014-07-25_YB-AFq9",2014-07-24,2014-07-25,"YB","AF","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Barnacle counts likley low due to recruit size; other counts may be low due to glare"
+"2014-07-25_YB-AFq5",2014-07-24,2014-07-25,"YB","AF","5","No","Nucella_ostrina","Type 9",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-07-25_YB-AFq8",2014-07-24,2014-07-25,"YB","AF","8","No","Nucella_ostrina","Type 9",3,0.0875,34.2857142857143,NA,"Celeste Moen","Finished","Full","Cropped","5%",""
+"2014-07-25_YB-AFq9",2014-07-24,2014-07-25,"YB","AF","9","No","Nucella_ostrina","Type 9",15,0.0875,171.428571428571,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Barnacle counts likley low due to recruit size; other counts may be low due to glare"
+"2014-07-25_YB-AFq5",2014-07-24,2014-07-25,"YB","AF","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-07-25_YB-AFq8",2014-07-24,2014-07-25,"YB","AF","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","5%",""
+"2014-07-25_YB-AFq9",2014-07-24,2014-07-25,"YB","AF","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Barnacle counts likley low due to recruit size; other counts may be low due to glare"
+"2014-07-25_YB-AFq5",2014-07-24,2014-07-25,"YB","AF","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-07-25_YB-AFq8",2014-07-24,2014-07-25,"YB","AF","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","5%",""
+"2014-07-25_YB-AFq9",2014-07-24,2014-07-25,"YB","AF","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Barnacle counts likley low due to recruit size; other counts may be low due to glare"
+"2014-07-25_YB-AFq5",2014-07-24,2014-07-25,"YB","AF","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-07-25_YB-AFq8",2014-07-24,2014-07-25,"YB","AF","8","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","5%",""
+"2014-07-25_YB-AFq9",2014-07-24,2014-07-25,"YB","AF","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Barnacle counts likley low due to recruit size; other counts may be low due to glare"
+"2014-07-25_YB-AFq5",2014-07-24,2014-07-25,"YB","AF","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-07-25_YB-AFq8",2014-07-24,2014-07-25,"YB","AF","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","5%",""
+"2014-07-25_YB-AFq9",2014-07-24,2014-07-25,"YB","AF","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Barnacle counts likley low due to recruit size; other counts may be low due to glare"
+"2014-07-25_YB-AFq5",2014-07-24,2014-07-25,"YB","AF","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-07-25_YB-AFq8",2014-07-24,2014-07-25,"YB","AF","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","5%",""
+"2014-07-25_YB-AFq9",2014-07-24,2014-07-25,"YB","AF","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Barnacle counts likley low due to recruit size; other counts may be low due to glare"
+"2014-07-25_YB-AFq5",2014-07-24,2014-07-25,"YB","AF","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-07-25_YB-AFq8",2014-07-24,2014-07-25,"YB","AF","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","5%",""
+"2014-07-25_YB-AFq9",2014-07-24,2014-07-25,"YB","AF","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Barnacle counts likley low due to recruit size; other counts may be low due to glare"
+"2014-07-24_YB-AGq1",2014-07-24,2014-07-24,"YB","AG","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-07-24_YB-AGq2",2014-07-24,2014-07-24,"YB","AG","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","20%",""
+"2014-07-24_YB-AGq3",2014-07-24,2014-07-24,"YB","AG","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","2%",""
+"2014-07-24_YB-AGq7",2014-07-24,2014-07-24,"YB","AG","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-07-24_YB-AGq9",2014-07-24,2014-07-24,"YB","AG","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-07-24_YB-AGq1",2014-07-24,2014-07-24,"YB","AG","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-07-24_YB-AGq2",2014-07-24,2014-07-24,"YB","AG","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","20%",""
+"2014-07-24_YB-AGq3",2014-07-24,2014-07-24,"YB","AG","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","2%",""
+"2014-07-24_YB-AGq7",2014-07-24,2014-07-24,"YB","AG","7","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-07-24_YB-AGq9",2014-07-24,2014-07-24,"YB","AG","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-07-24_YB-AGq1",2014-07-24,2014-07-24,"YB","AG","1","Bg","Balanus_glandula","Type 1",196,0.015625,12544,"c","Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-07-24_YB-AGq2",2014-07-24,2014-07-24,"YB","AG","2","Bg","Balanus_glandula","Type 1",407,0.015625,26048,"c","Isaac Shepard","Finished","Full","Cropped","20%",""
+"2014-07-24_YB-AGq3",2014-07-24,2014-07-24,"YB","AG","3","Bg","Balanus_glandula","Type 1",368,0.015625,23552,"c","Isaac Shepard","Finished","Full","Cropped","2%",""
+"2014-07-24_YB-AGq7",2014-07-24,2014-07-24,"YB","AG","7","Bg","Balanus_glandula","Type 1",656,0.015625,41984,"c","Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-07-24_YB-AGq9",2014-07-24,2014-07-24,"YB","AG","9","Bg","Balanus_glandula","Type 1",363,0.015625,23232,"c","Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-07-24_YB-AGq1",2014-07-24,2014-07-24,"YB","AG","1","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-07-24_YB-AGq2",2014-07-24,2014-07-24,"YB","AG","2","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","20%",""
+"2014-07-24_YB-AGq3",2014-07-24,2014-07-24,"YB","AG","3","BgD","Balanus_glandula_(dead)","Type 2",1,0.015625,64,"c","Isaac Shepard","Finished","Full","Cropped","2%",""
+"2014-07-24_YB-AGq7",2014-07-24,2014-07-24,"YB","AG","7","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-07-24_YB-AGq9",2014-07-24,2014-07-24,"YB","AG","9","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-07-24_YB-AGq1",2014-07-24,2014-07-24,"YB","AG","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-07-24_YB-AGq2",2014-07-24,2014-07-24,"YB","AG","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","20%",""
+"2014-07-24_YB-AGq3",2014-07-24,2014-07-24,"YB","AG","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","2%",""
+"2014-07-24_YB-AGq7",2014-07-24,2014-07-24,"YB","AG","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-07-24_YB-AGq9",2014-07-24,2014-07-24,"YB","AG","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-07-24_YB-AGq1",2014-07-24,2014-07-24,"YB","AG","1","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-07-24_YB-AGq2",2014-07-24,2014-07-24,"YB","AG","2","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","20%",""
+"2014-07-24_YB-AGq3",2014-07-24,2014-07-24,"YB","AG","3","Cth","Chthamalus_dalli","Type 3",11,0.015625,704,"c","Isaac Shepard","Finished","Full","Cropped","2%",""
+"2014-07-24_YB-AGq7",2014-07-24,2014-07-24,"YB","AG","7","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-07-24_YB-AGq9",2014-07-24,2014-07-24,"YB","AG","9","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-07-24_YB-AGq1",2014-07-24,2014-07-24,"YB","AG","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-07-24_YB-AGq2",2014-07-24,2014-07-24,"YB","AG","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","20%",""
+"2014-07-24_YB-AGq3",2014-07-24,2014-07-24,"YB","AG","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","2%",""
+"2014-07-24_YB-AGq7",2014-07-24,2014-07-24,"YB","AG","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-07-24_YB-AGq9",2014-07-24,2014-07-24,"YB","AG","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-07-24_YB-AGq1",2014-07-24,2014-07-24,"YB","AG","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-07-24_YB-AGq2",2014-07-24,2014-07-24,"YB","AG","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","20%",""
+"2014-07-24_YB-AGq3",2014-07-24,2014-07-24,"YB","AG","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","2%",""
+"2014-07-24_YB-AGq7",2014-07-24,2014-07-24,"YB","AG","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-07-24_YB-AGq9",2014-07-24,2014-07-24,"YB","AG","9","Emp","Emplectonema worm","Type 23",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-07-24_YB-AGq1",2014-07-24,2014-07-24,"YB","AG","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-07-24_YB-AGq2",2014-07-24,2014-07-24,"YB","AG","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","20%",""
+"2014-07-24_YB-AGq3",2014-07-24,2014-07-24,"YB","AG","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","2%",""
+"2014-07-24_YB-AGq7",2014-07-24,2014-07-24,"YB","AG","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-07-24_YB-AGq9",2014-07-24,2014-07-24,"YB","AG","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-07-24_YB-AGq1",2014-07-24,2014-07-24,"YB","AG","1","Lim","Limpets","Type 12",80,0.0875,914.285714285714,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-07-24_YB-AGq2",2014-07-24,2014-07-24,"YB","AG","2","Lim","Limpets","Type 12",44,0.0875,502.857142857143,NA,"Isaac Shepard","Finished","Full","Cropped","20%",""
+"2014-07-24_YB-AGq3",2014-07-24,2014-07-24,"YB","AG","3","Lim","Limpets","Type 12",58,0.0875,662.857142857143,NA,"Isaac Shepard","Finished","Full","Cropped","2%",""
+"2014-07-24_YB-AGq7",2014-07-24,2014-07-24,"YB","AG","7","Lim","Limpets","Type 12",128,0.0875,1462.85714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-07-24_YB-AGq9",2014-07-24,2014-07-24,"YB","AG","9","Lim","Limpets","Type 12",75,0.0875,857.142857142857,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-07-24_YB-AGq1",2014-07-24,2014-07-24,"YB","AG","1","Ls","Littorina_sitkana","Type 13",153,0.0875,1748.57142857143,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-07-24_YB-AGq2",2014-07-24,2014-07-24,"YB","AG","2","Ls","Littorina_sitkana","Type 13",133,0.0875,1520,NA,"Isaac Shepard","Finished","Full","Cropped","20%",""
+"2014-07-24_YB-AGq3",2014-07-24,2014-07-24,"YB","AG","3","Ls","Littorina_sitkana","Type 13",137,0.0875,1565.71428571429,NA,"Isaac Shepard","Finished","Full","Cropped","2%",""
+"2014-07-24_YB-AGq7",2014-07-24,2014-07-24,"YB","AG","7","Ls","Littorina_sitkana","Type 13",206,0.0875,2354.28571428571,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-07-24_YB-AGq9",2014-07-24,2014-07-24,"YB","AG","9","Ls","Littorina_sitkana","Type 13",245,0.0875,2800,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-07-24_YB-AGq1",2014-07-24,2014-07-24,"YB","AG","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-07-24_YB-AGq2",2014-07-24,2014-07-24,"YB","AG","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","20%",""
+"2014-07-24_YB-AGq3",2014-07-24,2014-07-24,"YB","AG","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","2%",""
+"2014-07-24_YB-AGq7",2014-07-24,2014-07-24,"YB","AG","7","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-07-24_YB-AGq9",2014-07-24,2014-07-24,"YB","AG","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-07-24_YB-AGq1",2014-07-24,2014-07-24,"YB","AG","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-07-24_YB-AGq2",2014-07-24,2014-07-24,"YB","AG","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","20%",""
+"2014-07-24_YB-AGq3",2014-07-24,2014-07-24,"YB","AG","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","2%",""
+"2014-07-24_YB-AGq7",2014-07-24,2014-07-24,"YB","AG","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-07-24_YB-AGq9",2014-07-24,2014-07-24,"YB","AG","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-07-24_YB-AGq1",2014-07-24,2014-07-24,"YB","AG","1","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-07-24_YB-AGq2",2014-07-24,2014-07-24,"YB","AG","2","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","20%",""
+"2014-07-24_YB-AGq3",2014-07-24,2014-07-24,"YB","AG","3","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","2%",""
+"2014-07-24_YB-AGq7",2014-07-24,2014-07-24,"YB","AG","7","Myt","Mytilus_spp","Type 7",441,0.0875,5040,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-07-24_YB-AGq9",2014-07-24,2014-07-24,"YB","AG","9","Myt","Mytilus_spp","Type 7",379,0.0875,4331.42857142857,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-07-24_YB-AGq1",2014-07-24,2014-07-24,"YB","AG","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-07-24_YB-AGq2",2014-07-24,2014-07-24,"YB","AG","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","20%",""
+"2014-07-24_YB-AGq3",2014-07-24,2014-07-24,"YB","AG","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","2%",""
+"2014-07-24_YB-AGq7",2014-07-24,2014-07-24,"YB","AG","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-07-24_YB-AGq9",2014-07-24,2014-07-24,"YB","AG","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-07-24_YB-AGq1",2014-07-24,2014-07-24,"YB","AG","1","Mt","Mytilus_trossulus","Type 15",283,0.0875,3234.28571428571,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-07-24_YB-AGq2",2014-07-24,2014-07-24,"YB","AG","2","Mt","Mytilus_trossulus","Type 15",232,0.0875,2651.42857142857,NA,"Isaac Shepard","Finished","Full","Cropped","20%",""
+"2014-07-24_YB-AGq3",2014-07-24,2014-07-24,"YB","AG","3","Mt","Mytilus_trossulus","Type 15",324,0.0875,3702.85714285714,NA,"Isaac Shepard","Finished","Full","Cropped","2%",""
+"2014-07-24_YB-AGq7",2014-07-24,2014-07-24,"YB","AG","7","Mt","Mytilus_trossulus","Type 15",42,0.0875,480,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-07-24_YB-AGq9",2014-07-24,2014-07-24,"YB","AG","9","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-07-24_YB-AGq1",2014-07-24,2014-07-24,"YB","AG","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-07-24_YB-AGq2",2014-07-24,2014-07-24,"YB","AG","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","20%",""
+"2014-07-24_YB-AGq3",2014-07-24,2014-07-24,"YB","AG","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","2%",""
+"2014-07-24_YB-AGq7",2014-07-24,2014-07-24,"YB","AG","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-07-24_YB-AGq9",2014-07-24,2014-07-24,"YB","AG","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-07-24_YB-AGq1",2014-07-24,2014-07-24,"YB","AG","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-07-24_YB-AGq2",2014-07-24,2014-07-24,"YB","AG","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","20%",""
+"2014-07-24_YB-AGq3",2014-07-24,2014-07-24,"YB","AG","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","2%",""
+"2014-07-24_YB-AGq7",2014-07-24,2014-07-24,"YB","AG","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-07-24_YB-AGq9",2014-07-24,2014-07-24,"YB","AG","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-07-24_YB-AGq1",2014-07-24,2014-07-24,"YB","AG","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-07-24_YB-AGq2",2014-07-24,2014-07-24,"YB","AG","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","20%",""
+"2014-07-24_YB-AGq3",2014-07-24,2014-07-24,"YB","AG","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","2%",""
+"2014-07-24_YB-AGq7",2014-07-24,2014-07-24,"YB","AG","7","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-07-24_YB-AGq9",2014-07-24,2014-07-24,"YB","AG","9","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-07-24_YB-AGq1",2014-07-24,2014-07-24,"YB","AG","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-07-24_YB-AGq2",2014-07-24,2014-07-24,"YB","AG","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","20%",""
+"2014-07-24_YB-AGq3",2014-07-24,2014-07-24,"YB","AG","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","2%",""
+"2014-07-24_YB-AGq7",2014-07-24,2014-07-24,"YB","AG","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-07-24_YB-AGq9",2014-07-24,2014-07-24,"YB","AG","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-07-24_YB-AGq1",2014-07-24,2014-07-24,"YB","AG","1","No","Nucella_ostrina","Type 9",4,0.0875,45.7142857142857,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-07-24_YB-AGq2",2014-07-24,2014-07-24,"YB","AG","2","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Isaac Shepard","Finished","Full","Cropped","20%",""
+"2014-07-24_YB-AGq3",2014-07-24,2014-07-24,"YB","AG","3","No","Nucella_ostrina","Type 9",14,0.0875,160,NA,"Isaac Shepard","Finished","Full","Cropped","2%",""
+"2014-07-24_YB-AGq7",2014-07-24,2014-07-24,"YB","AG","7","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-07-24_YB-AGq9",2014-07-24,2014-07-24,"YB","AG","9","No","Nucella_ostrina","Type 9",9,0.0875,102.857142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-07-24_YB-AGq1",2014-07-24,2014-07-24,"YB","AG","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-07-24_YB-AGq2",2014-07-24,2014-07-24,"YB","AG","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","20%",""
+"2014-07-24_YB-AGq3",2014-07-24,2014-07-24,"YB","AG","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","2%",""
+"2014-07-24_YB-AGq7",2014-07-24,2014-07-24,"YB","AG","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-07-24_YB-AGq9",2014-07-24,2014-07-24,"YB","AG","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-07-24_YB-AGq1",2014-07-24,2014-07-24,"YB","AG","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-07-24_YB-AGq2",2014-07-24,2014-07-24,"YB","AG","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","20%",""
+"2014-07-24_YB-AGq3",2014-07-24,2014-07-24,"YB","AG","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","2%",""
+"2014-07-24_YB-AGq7",2014-07-24,2014-07-24,"YB","AG","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-07-24_YB-AGq9",2014-07-24,2014-07-24,"YB","AG","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-07-24_YB-AGq1",2014-07-24,2014-07-24,"YB","AG","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-07-24_YB-AGq2",2014-07-24,2014-07-24,"YB","AG","2","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","20%",""
+"2014-07-24_YB-AGq3",2014-07-24,2014-07-24,"YB","AG","3","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","2%",""
+"2014-07-24_YB-AGq7",2014-07-24,2014-07-24,"YB","AG","7","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-07-24_YB-AGq9",2014-07-24,2014-07-24,"YB","AG","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-07-24_YB-AGq1",2014-07-24,2014-07-24,"YB","AG","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-07-24_YB-AGq2",2014-07-24,2014-07-24,"YB","AG","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","20%",""
+"2014-07-24_YB-AGq3",2014-07-24,2014-07-24,"YB","AG","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","2%",""
+"2014-07-24_YB-AGq7",2014-07-24,2014-07-24,"YB","AG","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-07-24_YB-AGq9",2014-07-24,2014-07-24,"YB","AG","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-07-24_YB-AGq1",2014-07-24,2014-07-24,"YB","AG","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-07-24_YB-AGq2",2014-07-24,2014-07-24,"YB","AG","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","20%",""
+"2014-07-24_YB-AGq3",2014-07-24,2014-07-24,"YB","AG","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","2%",""
+"2014-07-24_YB-AGq7",2014-07-24,2014-07-24,"YB","AG","7","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-07-24_YB-AGq9",2014-07-24,2014-07-24,"YB","AG","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-07-24_YB-AGq1",2014-07-24,2014-07-24,"YB","AG","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","0%",""
+"2014-07-24_YB-AGq2",2014-07-24,2014-07-24,"YB","AG","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","20%",""
+"2014-07-24_YB-AGq3",2014-07-24,2014-07-24,"YB","AG","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","2%",""
+"2014-07-24_YB-AGq7",2014-07-24,2014-07-24,"YB","AG","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","10%",""
+"2014-07-24_YB-AGq9",2014-07-24,2014-07-24,"YB","AG","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-07-24_YB-Bq1",2014-07-24,2014-07-24,"YB","B","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%","Barnacle counts likely low due to glare, blur, algae, and whelk cover."
+"2014-07-24_YB-Bq5",2014-07-24,2014-07-24,"YB","B","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Barnacle counts low due to blur and glare; new Balanus recruitment"
+"2014-07-24_YB-Bq6",2014-07-24,2014-07-24,"YB","B","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","2%","Barnacle count likely low due to whelk cover"
+"2014-07-24_YB-Bq1",2014-07-24,2014-07-24,"YB","B","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%","Barnacle counts likely low due to glare, blur, algae, and whelk cover."
+"2014-07-24_YB-Bq5",2014-07-24,2014-07-24,"YB","B","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Barnacle counts low due to blur and glare; new Balanus recruitment"
+"2014-07-24_YB-Bq6",2014-07-24,2014-07-24,"YB","B","6","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","2%","Barnacle count likely low due to whelk cover"
+"2014-07-24_YB-Bq1",2014-07-24,2014-07-24,"YB","B","1","Bg","Balanus_glandula","Type 1",162,0.015625,10368,"c","Beatriz Vaca","Finished","Cropped","Cropped","10%","Barnacle counts likely low due to glare, blur, algae, and whelk cover."
+"2014-07-24_YB-Bq5",2014-07-24,2014-07-24,"YB","B","5","Bg","Balanus_glandula","Type 1",925,0.015625,59200,"c","Beatriz Vaca","Finished","Full","Cropped","10%","Barnacle counts low due to blur and glare; new Balanus recruitment"
+"2014-07-24_YB-Bq6",2014-07-24,2014-07-24,"YB","B","6","Bg","Balanus_glandula","Type 1",173,0.015625,11072,"c","Beatriz Vaca","Finished","Cropped","Cropped","2%","Barnacle count likely low due to whelk cover"
+"2014-07-24_YB-Bq1",2014-07-24,2014-07-24,"YB","B","1","BgD","Balanus_glandula_(dead)","Type 2",5,0.015625,320,"c","Beatriz Vaca","Finished","Cropped","Cropped","10%","Barnacle counts likely low due to glare, blur, algae, and whelk cover."
+"2014-07-24_YB-Bq5",2014-07-24,2014-07-24,"YB","B","5","BgD","Balanus_glandula_(dead)","Type 2",34,0.015625,2176,"c","Beatriz Vaca","Finished","Full","Cropped","10%","Barnacle counts low due to blur and glare; new Balanus recruitment"
+"2014-07-24_YB-Bq6",2014-07-24,2014-07-24,"YB","B","6","BgD","Balanus_glandula_(dead)","Type 2",20,0.015625,1280,"c","Beatriz Vaca","Finished","Cropped","Cropped","2%","Barnacle count likely low due to whelk cover"
+"2014-07-24_YB-Bq1",2014-07-24,2014-07-24,"YB","B","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%","Barnacle counts likely low due to glare, blur, algae, and whelk cover."
+"2014-07-24_YB-Bq5",2014-07-24,2014-07-24,"YB","B","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Barnacle counts low due to blur and glare; new Balanus recruitment"
+"2014-07-24_YB-Bq6",2014-07-24,2014-07-24,"YB","B","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","2%","Barnacle count likely low due to whelk cover"
+"2014-07-24_YB-Bq1",2014-07-24,2014-07-24,"YB","B","1","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","10%","Barnacle counts likely low due to glare, blur, algae, and whelk cover."
+"2014-07-24_YB-Bq5",2014-07-24,2014-07-24,"YB","B","5","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","10%","Barnacle counts low due to blur and glare; new Balanus recruitment"
+"2014-07-24_YB-Bq6",2014-07-24,2014-07-24,"YB","B","6","Cth","Chthamalus_dalli","Type 3",4,0.015625,256,"c","Beatriz Vaca","Finished","Cropped","Cropped","2%","Barnacle count likely low due to whelk cover"
+"2014-07-24_YB-Bq1",2014-07-24,2014-07-24,"YB","B","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","10%","Barnacle counts likely low due to glare, blur, algae, and whelk cover."
+"2014-07-24_YB-Bq5",2014-07-24,2014-07-24,"YB","B","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","10%","Barnacle counts low due to blur and glare; new Balanus recruitment"
+"2014-07-24_YB-Bq6",2014-07-24,2014-07-24,"YB","B","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","2%","Barnacle count likely low due to whelk cover"
+"2014-07-24_YB-Bq1",2014-07-24,2014-07-24,"YB","B","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%","Barnacle counts likely low due to glare, blur, algae, and whelk cover."
+"2014-07-24_YB-Bq5",2014-07-24,2014-07-24,"YB","B","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Barnacle counts low due to blur and glare; new Balanus recruitment"
+"2014-07-24_YB-Bq6",2014-07-24,2014-07-24,"YB","B","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","2%","Barnacle count likely low due to whelk cover"
+"2014-07-24_YB-Bq1",2014-07-24,2014-07-24,"YB","B","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%","Barnacle counts likely low due to glare, blur, algae, and whelk cover."
+"2014-07-24_YB-Bq5",2014-07-24,2014-07-24,"YB","B","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Barnacle counts low due to blur and glare; new Balanus recruitment"
+"2014-07-24_YB-Bq6",2014-07-24,2014-07-24,"YB","B","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","2%","Barnacle count likely low due to whelk cover"
+"2014-07-24_YB-Bq1",2014-07-24,2014-07-24,"YB","B","1","Lim","Limpets","Type 12",328,0.0875,3748.57142857143,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%","Barnacle counts likely low due to glare, blur, algae, and whelk cover."
+"2014-07-24_YB-Bq5",2014-07-24,2014-07-24,"YB","B","5","Lim","Limpets","Type 12",494,0.0875,5645.71428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Barnacle counts low due to blur and glare; new Balanus recruitment"
+"2014-07-24_YB-Bq6",2014-07-24,2014-07-24,"YB","B","6","Lim","Limpets","Type 12",357,0.0875,4080,NA,"Beatriz Vaca","Finished","Cropped","Cropped","2%","Barnacle count likely low due to whelk cover"
+"2014-07-24_YB-Bq1",2014-07-24,2014-07-24,"YB","B","1","Ls","Littorina_sitkana","Type 13",11,0.0875,125.714285714286,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%","Barnacle counts likely low due to glare, blur, algae, and whelk cover."
+"2014-07-24_YB-Bq5",2014-07-24,2014-07-24,"YB","B","5","Ls","Littorina_sitkana","Type 13",14,0.0875,160,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Barnacle counts low due to blur and glare; new Balanus recruitment"
+"2014-07-24_YB-Bq6",2014-07-24,2014-07-24,"YB","B","6","Ls","Littorina_sitkana","Type 13",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Cropped","Cropped","2%","Barnacle count likely low due to whelk cover"
+"2014-07-24_YB-Bq1",2014-07-24,2014-07-24,"YB","B","1","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","10%","Barnacle counts likely low due to glare, blur, algae, and whelk cover."
+"2014-07-24_YB-Bq5",2014-07-24,2014-07-24,"YB","B","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Barnacle counts low due to blur and glare; new Balanus recruitment"
+"2014-07-24_YB-Bq6",2014-07-24,2014-07-24,"YB","B","6","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","2%","Barnacle count likely low due to whelk cover"
+"2014-07-24_YB-Bq1",2014-07-24,2014-07-24,"YB","B","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","10%","Barnacle counts likely low due to glare, blur, algae, and whelk cover."
+"2014-07-24_YB-Bq5",2014-07-24,2014-07-24,"YB","B","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Barnacle counts low due to blur and glare; new Balanus recruitment"
+"2014-07-24_YB-Bq6",2014-07-24,2014-07-24,"YB","B","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","2%","Barnacle count likely low due to whelk cover"
+"2014-07-24_YB-Bq1",2014-07-24,2014-07-24,"YB","B","1","Myt","Mytilus_spp","Type 7",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","10%","Barnacle counts likely low due to glare, blur, algae, and whelk cover."
+"2014-07-24_YB-Bq5",2014-07-24,2014-07-24,"YB","B","5","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Barnacle counts low due to blur and glare; new Balanus recruitment"
+"2014-07-24_YB-Bq6",2014-07-24,2014-07-24,"YB","B","6","Myt","Mytilus_spp","Type 7",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","2%","Barnacle count likely low due to whelk cover"
+"2014-07-24_YB-Bq1",2014-07-24,2014-07-24,"YB","B","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","10%","Barnacle counts likely low due to glare, blur, algae, and whelk cover."
+"2014-07-24_YB-Bq5",2014-07-24,2014-07-24,"YB","B","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Barnacle counts low due to blur and glare; new Balanus recruitment"
+"2014-07-24_YB-Bq6",2014-07-24,2014-07-24,"YB","B","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","2%","Barnacle count likely low due to whelk cover"
+"2014-07-24_YB-Bq1",2014-07-24,2014-07-24,"YB","B","1","Mt","Mytilus_trossulus","Type 15",38,0.015625,2432,"c","Beatriz Vaca","Finished","Cropped","Cropped","10%","Barnacle counts likely low due to glare, blur, algae, and whelk cover."
+"2014-07-24_YB-Bq5",2014-07-24,2014-07-24,"YB","B","5","Mt","Mytilus_trossulus","Type 15",37,0.0875,422.857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Barnacle counts low due to blur and glare; new Balanus recruitment"
+"2014-07-24_YB-Bq6",2014-07-24,2014-07-24,"YB","B","6","Mt","Mytilus_trossulus","Type 15",35,0.015625,2240,"c","Beatriz Vaca","Finished","Cropped","Cropped","2%","Barnacle count likely low due to whelk cover"
+"2014-07-24_YB-Bq1",2014-07-24,2014-07-24,"YB","B","1","MtD","Mytilus_trossulus_(dead)","Type 16",3,0.015625,192,"c","Beatriz Vaca","Finished","Cropped","Cropped","10%","Barnacle counts likely low due to glare, blur, algae, and whelk cover."
+"2014-07-24_YB-Bq5",2014-07-24,2014-07-24,"YB","B","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Barnacle counts low due to blur and glare; new Balanus recruitment"
+"2014-07-24_YB-Bq6",2014-07-24,2014-07-24,"YB","B","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","2%","Barnacle count likely low due to whelk cover"
+"2014-07-24_YB-Bq1",2014-07-24,2014-07-24,"YB","B","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%","Barnacle counts likely low due to glare, blur, algae, and whelk cover."
+"2014-07-24_YB-Bq5",2014-07-24,2014-07-24,"YB","B","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Barnacle counts low due to blur and glare; new Balanus recruitment"
+"2014-07-24_YB-Bq6",2014-07-24,2014-07-24,"YB","B","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","2%","Barnacle count likely low due to whelk cover"
+"2014-07-24_YB-Bq1",2014-07-24,2014-07-24,"YB","B","1","Nc","Nucella_canaliculata","Type 10",85,0.0875,971.428571428571,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%","Barnacle counts likely low due to glare, blur, algae, and whelk cover."
+"2014-07-24_YB-Bq5",2014-07-24,2014-07-24,"YB","B","5","Nc","Nucella_canaliculata","Type 10",16,0.0875,182.857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Barnacle counts low due to blur and glare; new Balanus recruitment"
+"2014-07-24_YB-Bq6",2014-07-24,2014-07-24,"YB","B","6","Nc","Nucella_canaliculata","Type 10",70,0.0875,800,NA,"Beatriz Vaca","Finished","Cropped","Cropped","2%","Barnacle count likely low due to whelk cover"
+"2014-07-24_YB-Bq1",2014-07-24,2014-07-24,"YB","B","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%","Barnacle counts likely low due to glare, blur, algae, and whelk cover."
+"2014-07-24_YB-Bq5",2014-07-24,2014-07-24,"YB","B","5","Negg","Nucella_eggs","Type 26",22,0.0875,251.428571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Barnacle counts low due to blur and glare; new Balanus recruitment"
+"2014-07-24_YB-Bq6",2014-07-24,2014-07-24,"YB","B","6","Negg","Nucella_eggs","Type 26",26,0.0875,297.142857142857,NA,"Beatriz Vaca","Finished","Cropped","Cropped","2%","Barnacle count likely low due to whelk cover"
+"2014-07-24_YB-Bq1",2014-07-24,2014-07-24,"YB","B","1","No","Nucella_ostrina","Type 9",19,0.0875,217.142857142857,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%","Barnacle counts likely low due to glare, blur, algae, and whelk cover."
+"2014-07-24_YB-Bq5",2014-07-24,2014-07-24,"YB","B","5","No","Nucella_ostrina","Type 9",15,0.0875,171.428571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Barnacle counts low due to blur and glare; new Balanus recruitment"
+"2014-07-24_YB-Bq6",2014-07-24,2014-07-24,"YB","B","6","No","Nucella_ostrina","Type 9",26,0.0875,297.142857142857,NA,"Beatriz Vaca","Finished","Cropped","Cropped","2%","Barnacle count likely low due to whelk cover"
+"2014-07-24_YB-Bq1",2014-07-24,2014-07-24,"YB","B","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%","Barnacle counts likely low due to glare, blur, algae, and whelk cover."
+"2014-07-24_YB-Bq5",2014-07-24,2014-07-24,"YB","B","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Barnacle counts low due to blur and glare; new Balanus recruitment"
+"2014-07-24_YB-Bq6",2014-07-24,2014-07-24,"YB","B","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","2%","Barnacle count likely low due to whelk cover"
+"2014-07-24_YB-Bq1",2014-07-24,2014-07-24,"YB","B","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%","Barnacle counts likely low due to glare, blur, algae, and whelk cover."
+"2014-07-24_YB-Bq5",2014-07-24,2014-07-24,"YB","B","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Barnacle counts low due to blur and glare; new Balanus recruitment"
+"2014-07-24_YB-Bq6",2014-07-24,2014-07-24,"YB","B","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","2%","Barnacle count likely low due to whelk cover"
+"2014-07-24_YB-Bq1",2014-07-24,2014-07-24,"YB","B","1","Pp","Pollicipes_polymerus","Type 11",33,0.0875,377.142857142857,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%","Barnacle counts likely low due to glare, blur, algae, and whelk cover."
+"2014-07-24_YB-Bq5",2014-07-24,2014-07-24,"YB","B","5","Pp","Pollicipes_polymerus","Type 11",17,0.0875,194.285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Barnacle counts low due to blur and glare; new Balanus recruitment"
+"2014-07-24_YB-Bq6",2014-07-24,2014-07-24,"YB","B","6","Pp","Pollicipes_polymerus","Type 11",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Cropped","Cropped","2%","Barnacle count likely low due to whelk cover"
+"2014-07-24_YB-Bq1",2014-07-24,2014-07-24,"YB","B","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%","Barnacle counts likely low due to glare, blur, algae, and whelk cover."
+"2014-07-24_YB-Bq5",2014-07-24,2014-07-24,"YB","B","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Barnacle counts low due to blur and glare; new Balanus recruitment"
+"2014-07-24_YB-Bq6",2014-07-24,2014-07-24,"YB","B","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","2%","Barnacle count likely low due to whelk cover"
+"2014-07-24_YB-Bq1",2014-07-24,2014-07-24,"YB","B","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%","Barnacle counts likely low due to glare, blur, algae, and whelk cover."
+"2014-07-24_YB-Bq5",2014-07-24,2014-07-24,"YB","B","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Barnacle counts low due to blur and glare; new Balanus recruitment"
+"2014-07-24_YB-Bq6",2014-07-24,2014-07-24,"YB","B","6","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","2%","Barnacle count likely low due to whelk cover"
+"2014-07-24_YB-Bq1",2014-07-24,2014-07-24,"YB","B","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%","Barnacle counts likely low due to glare, blur, algae, and whelk cover."
+"2014-07-24_YB-Bq5",2014-07-24,2014-07-24,"YB","B","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Barnacle counts low due to blur and glare; new Balanus recruitment"
+"2014-07-24_YB-Bq6",2014-07-24,2014-07-24,"YB","B","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","2%","Barnacle count likely low due to whelk cover"
+"2014-07-25_YB-BBq1",2014-07-24,2014-07-25,"YB","BB","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-07-25_YB-BBq2",2014-07-24,2014-07-25,"YB","BB","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-07-25_YB-BBq9",2014-07-24,2014-07-25,"YB","BB","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-07-25_YB-BBq1",2014-07-24,2014-07-25,"YB","BB","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-07-25_YB-BBq2",2014-07-24,2014-07-25,"YB","BB","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-07-25_YB-BBq9",2014-07-24,2014-07-25,"YB","BB","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-07-25_YB-BBq1",2014-07-24,2014-07-25,"YB","BB","1","Bg","Balanus_glandula","Type 1",616,0.0875,7040,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-07-25_YB-BBq2",2014-07-24,2014-07-25,"YB","BB","2","Bg","Balanus_glandula","Type 1",807,0.0875,9222.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-07-25_YB-BBq9",2014-07-24,2014-07-25,"YB","BB","9","Bg","Balanus_glandula","Type 1",381,0.015625,24384,"c","Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-07-25_YB-BBq1",2014-07-24,2014-07-25,"YB","BB","1","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-07-25_YB-BBq2",2014-07-24,2014-07-25,"YB","BB","2","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-07-25_YB-BBq9",2014-07-24,2014-07-25,"YB","BB","9","BgD","Balanus_glandula_(dead)","Type 2",4,0.015625,256,"c","Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-07-25_YB-BBq1",2014-07-24,2014-07-25,"YB","BB","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-07-25_YB-BBq2",2014-07-24,2014-07-25,"YB","BB","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-07-25_YB-BBq9",2014-07-24,2014-07-25,"YB","BB","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-07-25_YB-BBq1",2014-07-24,2014-07-25,"YB","BB","1","Cth","Chthamalus_dalli","Type 3",5,0.0875,57.1428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-07-25_YB-BBq2",2014-07-24,2014-07-25,"YB","BB","2","Cth","Chthamalus_dalli","Type 3",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-07-25_YB-BBq9",2014-07-24,2014-07-25,"YB","BB","9","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-07-25_YB-BBq1",2014-07-24,2014-07-25,"YB","BB","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-07-25_YB-BBq2",2014-07-24,2014-07-25,"YB","BB","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-07-25_YB-BBq9",2014-07-24,2014-07-25,"YB","BB","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-07-25_YB-BBq1",2014-07-24,2014-07-25,"YB","BB","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-07-25_YB-BBq2",2014-07-24,2014-07-25,"YB","BB","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-07-25_YB-BBq9",2014-07-24,2014-07-25,"YB","BB","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-07-25_YB-BBq1",2014-07-24,2014-07-25,"YB","BB","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-07-25_YB-BBq2",2014-07-24,2014-07-25,"YB","BB","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-07-25_YB-BBq9",2014-07-24,2014-07-25,"YB","BB","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-07-25_YB-BBq1",2014-07-24,2014-07-25,"YB","BB","1","Lim","Limpets","Type 12",71,0.0875,811.428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-07-25_YB-BBq2",2014-07-24,2014-07-25,"YB","BB","2","Lim","Limpets","Type 12",125,0.0875,1428.57142857143,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-07-25_YB-BBq9",2014-07-24,2014-07-25,"YB","BB","9","Lim","Limpets","Type 12",123,0.0875,1405.71428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-07-25_YB-BBq1",2014-07-24,2014-07-25,"YB","BB","1","Ls","Littorina_sitkana","Type 13",406,0.0875,4640,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-07-25_YB-BBq2",2014-07-24,2014-07-25,"YB","BB","2","Ls","Littorina_sitkana","Type 13",418,0.0875,4777.14285714286,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-07-25_YB-BBq9",2014-07-24,2014-07-25,"YB","BB","9","Ls","Littorina_sitkana","Type 13",1267,0.0875,14480,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-07-25_YB-BBq1",2014-07-24,2014-07-25,"YB","BB","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-07-25_YB-BBq2",2014-07-24,2014-07-25,"YB","BB","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-07-25_YB-BBq9",2014-07-24,2014-07-25,"YB","BB","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-07-25_YB-BBq1",2014-07-24,2014-07-25,"YB","BB","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-07-25_YB-BBq2",2014-07-24,2014-07-25,"YB","BB","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-07-25_YB-BBq9",2014-07-24,2014-07-25,"YB","BB","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-07-25_YB-BBq1",2014-07-24,2014-07-25,"YB","BB","1","Myt","Mytilus_spp","Type 7",618,0.0875,7062.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-07-25_YB-BBq2",2014-07-24,2014-07-25,"YB","BB","2","Myt","Mytilus_spp","Type 7",754,0.0875,8617.14285714286,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-07-25_YB-BBq9",2014-07-24,2014-07-25,"YB","BB","9","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-07-25_YB-BBq1",2014-07-24,2014-07-25,"YB","BB","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-07-25_YB-BBq2",2014-07-24,2014-07-25,"YB","BB","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-07-25_YB-BBq9",2014-07-24,2014-07-25,"YB","BB","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-07-25_YB-BBq1",2014-07-24,2014-07-25,"YB","BB","1","Mt","Mytilus_trossulus","Type 15",70,0.0875,800,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-07-25_YB-BBq2",2014-07-24,2014-07-25,"YB","BB","2","Mt","Mytilus_trossulus","Type 15",69,0.0875,788.571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-07-25_YB-BBq9",2014-07-24,2014-07-25,"YB","BB","9","Mt","Mytilus_trossulus","Type 15",373,0.0875,4262.85714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-07-25_YB-BBq1",2014-07-24,2014-07-25,"YB","BB","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-07-25_YB-BBq2",2014-07-24,2014-07-25,"YB","BB","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-07-25_YB-BBq9",2014-07-24,2014-07-25,"YB","BB","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-07-25_YB-BBq1",2014-07-24,2014-07-25,"YB","BB","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-07-25_YB-BBq2",2014-07-24,2014-07-25,"YB","BB","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-07-25_YB-BBq9",2014-07-24,2014-07-25,"YB","BB","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-07-25_YB-BBq1",2014-07-24,2014-07-25,"YB","BB","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-07-25_YB-BBq2",2014-07-24,2014-07-25,"YB","BB","2","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-07-25_YB-BBq9",2014-07-24,2014-07-25,"YB","BB","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-07-25_YB-BBq1",2014-07-24,2014-07-25,"YB","BB","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-07-25_YB-BBq2",2014-07-24,2014-07-25,"YB","BB","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-07-25_YB-BBq9",2014-07-24,2014-07-25,"YB","BB","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-07-25_YB-BBq1",2014-07-24,2014-07-25,"YB","BB","1","No","Nucella_ostrina","Type 9",6,0.0875,68.5714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-07-25_YB-BBq2",2014-07-24,2014-07-25,"YB","BB","2","No","Nucella_ostrina","Type 9",11,0.0875,125.714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-07-25_YB-BBq9",2014-07-24,2014-07-25,"YB","BB","9","No","Nucella_ostrina","Type 9",14,0.0875,160,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-07-25_YB-BBq1",2014-07-24,2014-07-25,"YB","BB","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-07-25_YB-BBq2",2014-07-24,2014-07-25,"YB","BB","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-07-25_YB-BBq9",2014-07-24,2014-07-25,"YB","BB","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-07-25_YB-BBq1",2014-07-24,2014-07-25,"YB","BB","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-07-25_YB-BBq2",2014-07-24,2014-07-25,"YB","BB","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-07-25_YB-BBq9",2014-07-24,2014-07-25,"YB","BB","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-07-25_YB-BBq1",2014-07-24,2014-07-25,"YB","BB","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-07-25_YB-BBq2",2014-07-24,2014-07-25,"YB","BB","2","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-07-25_YB-BBq9",2014-07-24,2014-07-25,"YB","BB","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-07-25_YB-BBq1",2014-07-24,2014-07-25,"YB","BB","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-07-25_YB-BBq2",2014-07-24,2014-07-25,"YB","BB","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-07-25_YB-BBq9",2014-07-24,2014-07-25,"YB","BB","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-07-25_YB-BBq1",2014-07-24,2014-07-25,"YB","BB","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-07-25_YB-BBq2",2014-07-24,2014-07-25,"YB","BB","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-07-25_YB-BBq9",2014-07-24,2014-07-25,"YB","BB","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-07-25_YB-BBq1",2014-07-24,2014-07-25,"YB","BB","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-07-25_YB-BBq2",2014-07-24,2014-07-25,"YB","BB","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2014-07-25_YB-BBq9",2014-07-24,2014-07-25,"YB","BB","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2014-07-25_YB-BCq3",2014-07-24,2014-07-25,"YB","BC","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-07-25_YB-BCq5",2014-07-24,2014-07-25,"YB","BC","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-07-25_YB-BCq9",2014-07-24,2014-07-25,"YB","BC","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-07-25_YB-BCq3",2014-07-24,2014-07-25,"YB","BC","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-07-25_YB-BCq5",2014-07-24,2014-07-25,"YB","BC","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-07-25_YB-BCq9",2014-07-24,2014-07-25,"YB","BC","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-07-25_YB-BCq3",2014-07-24,2014-07-25,"YB","BC","3","Bg","Balanus_glandula","Type 1",386,0.015625,24704,"c","Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-07-25_YB-BCq5",2014-07-24,2014-07-25,"YB","BC","5","Bg","Balanus_glandula","Type 1",244,0.015625,15616,"c","Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-07-25_YB-BCq9",2014-07-24,2014-07-25,"YB","BC","9","Bg","Balanus_glandula","Type 1",319,0.015625,20416,"c","Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-07-25_YB-BCq3",2014-07-24,2014-07-25,"YB","BC","3","BgD","Balanus_glandula_(dead)","Type 2",1,0.015625,64,"c","Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-07-25_YB-BCq5",2014-07-24,2014-07-25,"YB","BC","5","BgD","Balanus_glandula_(dead)","Type 2",3,0.015625,192,"c","Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-07-25_YB-BCq9",2014-07-24,2014-07-25,"YB","BC","9","BgD","Balanus_glandula_(dead)","Type 2",6,0.015625,384,"c","Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-07-25_YB-BCq3",2014-07-24,2014-07-25,"YB","BC","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-07-25_YB-BCq5",2014-07-24,2014-07-25,"YB","BC","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-07-25_YB-BCq9",2014-07-24,2014-07-25,"YB","BC","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-07-25_YB-BCq3",2014-07-24,2014-07-25,"YB","BC","3","Cth","Chthamalus_dalli","Type 3",6,0.015625,384,"c","Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-07-25_YB-BCq5",2014-07-24,2014-07-25,"YB","BC","5","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-07-25_YB-BCq9",2014-07-24,2014-07-25,"YB","BC","9","Cth","Chthamalus_dalli","Type 3",1,0.015625,64,"c","Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-07-25_YB-BCq3",2014-07-24,2014-07-25,"YB","BC","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-07-25_YB-BCq5",2014-07-24,2014-07-25,"YB","BC","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-07-25_YB-BCq9",2014-07-24,2014-07-25,"YB","BC","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-07-25_YB-BCq3",2014-07-24,2014-07-25,"YB","BC","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-07-25_YB-BCq5",2014-07-24,2014-07-25,"YB","BC","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-07-25_YB-BCq9",2014-07-24,2014-07-25,"YB","BC","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-07-25_YB-BCq3",2014-07-24,2014-07-25,"YB","BC","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-07-25_YB-BCq5",2014-07-24,2014-07-25,"YB","BC","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-07-25_YB-BCq9",2014-07-24,2014-07-25,"YB","BC","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-07-25_YB-BCq3",2014-07-24,2014-07-25,"YB","BC","3","Lim","Limpets","Type 12",213,0.0875,2434.28571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-07-25_YB-BCq5",2014-07-24,2014-07-25,"YB","BC","5","Lim","Limpets","Type 12",179,0.0875,2045.71428571429,NA,"Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-07-25_YB-BCq9",2014-07-24,2014-07-25,"YB","BC","9","Lim","Limpets","Type 12",289,0.0875,3302.85714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-07-25_YB-BCq3",2014-07-24,2014-07-25,"YB","BC","3","Ls","Littorina_sitkana","Type 13",1066,0.0875,12182.8571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-07-25_YB-BCq5",2014-07-24,2014-07-25,"YB","BC","5","Ls","Littorina_sitkana","Type 13",591,0.0875,6754.28571428571,NA,"Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-07-25_YB-BCq9",2014-07-24,2014-07-25,"YB","BC","9","Ls","Littorina_sitkana","Type 13",340,0.0875,3885.71428571429,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-07-25_YB-BCq3",2014-07-24,2014-07-25,"YB","BC","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-07-25_YB-BCq5",2014-07-24,2014-07-25,"YB","BC","5","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-07-25_YB-BCq9",2014-07-24,2014-07-25,"YB","BC","9","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-07-25_YB-BCq3",2014-07-24,2014-07-25,"YB","BC","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-07-25_YB-BCq5",2014-07-24,2014-07-25,"YB","BC","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-07-25_YB-BCq9",2014-07-24,2014-07-25,"YB","BC","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-07-25_YB-BCq3",2014-07-24,2014-07-25,"YB","BC","3","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-07-25_YB-BCq5",2014-07-24,2014-07-25,"YB","BC","5","Myt","Mytilus_spp","Type 7",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-07-25_YB-BCq9",2014-07-24,2014-07-25,"YB","BC","9","Myt","Mytilus_spp","Type 7",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-07-25_YB-BCq3",2014-07-24,2014-07-25,"YB","BC","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-07-25_YB-BCq5",2014-07-24,2014-07-25,"YB","BC","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-07-25_YB-BCq9",2014-07-24,2014-07-25,"YB","BC","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-07-25_YB-BCq3",2014-07-24,2014-07-25,"YB","BC","3","Mt","Mytilus_trossulus","Type 15",199,0.0875,2274.28571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-07-25_YB-BCq5",2014-07-24,2014-07-25,"YB","BC","5","Mt","Mytilus_trossulus","Type 15",121,0.015625,7744,"c","Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-07-25_YB-BCq9",2014-07-24,2014-07-25,"YB","BC","9","Mt","Mytilus_trossulus","Type 15",75,0.015625,4800,"c","Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-07-25_YB-BCq3",2014-07-24,2014-07-25,"YB","BC","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-07-25_YB-BCq5",2014-07-24,2014-07-25,"YB","BC","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-07-25_YB-BCq9",2014-07-24,2014-07-25,"YB","BC","9","MtD","Mytilus_trossulus_(dead)","Type 16",1,0.015625,64,"c","Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-07-25_YB-BCq3",2014-07-24,2014-07-25,"YB","BC","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-07-25_YB-BCq5",2014-07-24,2014-07-25,"YB","BC","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-07-25_YB-BCq9",2014-07-24,2014-07-25,"YB","BC","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-07-25_YB-BCq3",2014-07-24,2014-07-25,"YB","BC","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-07-25_YB-BCq5",2014-07-24,2014-07-25,"YB","BC","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-07-25_YB-BCq9",2014-07-24,2014-07-25,"YB","BC","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-07-25_YB-BCq3",2014-07-24,2014-07-25,"YB","BC","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-07-25_YB-BCq5",2014-07-24,2014-07-25,"YB","BC","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-07-25_YB-BCq9",2014-07-24,2014-07-25,"YB","BC","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-07-25_YB-BCq3",2014-07-24,2014-07-25,"YB","BC","3","No","Nucella_ostrina","Type 9",30,0.0875,342.857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-07-25_YB-BCq5",2014-07-24,2014-07-25,"YB","BC","5","No","Nucella_ostrina","Type 9",13,0.0875,148.571428571429,NA,"Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-07-25_YB-BCq9",2014-07-24,2014-07-25,"YB","BC","9","No","Nucella_ostrina","Type 9",30,0.0875,342.857142857143,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-07-25_YB-BCq3",2014-07-24,2014-07-25,"YB","BC","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-07-25_YB-BCq5",2014-07-24,2014-07-25,"YB","BC","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-07-25_YB-BCq9",2014-07-24,2014-07-25,"YB","BC","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-07-25_YB-BCq3",2014-07-24,2014-07-25,"YB","BC","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-07-25_YB-BCq5",2014-07-24,2014-07-25,"YB","BC","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-07-25_YB-BCq9",2014-07-24,2014-07-25,"YB","BC","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-07-25_YB-BCq3",2014-07-24,2014-07-25,"YB","BC","3","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-07-25_YB-BCq5",2014-07-24,2014-07-25,"YB","BC","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-07-25_YB-BCq9",2014-07-24,2014-07-25,"YB","BC","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-07-25_YB-BCq3",2014-07-24,2014-07-25,"YB","BC","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-07-25_YB-BCq5",2014-07-24,2014-07-25,"YB","BC","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-07-25_YB-BCq9",2014-07-24,2014-07-25,"YB","BC","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-07-25_YB-BCq3",2014-07-24,2014-07-25,"YB","BC","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-07-25_YB-BCq5",2014-07-24,2014-07-25,"YB","BC","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-07-25_YB-BCq9",2014-07-24,2014-07-25,"YB","BC","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-07-25_YB-BCq3",2014-07-24,2014-07-25,"YB","BC","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-07-25_YB-BCq5",2014-07-24,2014-07-25,"YB","BC","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-07-25_YB-BCq9",2014-07-24,2014-07-25,"YB","BC","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-07-25_YB-BDq1",2014-07-24,2014-07-25,"YB","BD","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to algae and glare."
+"2014-07-25_YB-BDq5",2014-07-24,2014-07-25,"YB","BD","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae and glare."
+"2014-07-25_YB-BDq7",2014-07-24,2014-07-25,"YB","BD","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to blur and glare."
+"2014-07-25_YB-BDq1",2014-07-24,2014-07-25,"YB","BD","1","Ae","Anemones","Type 14",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to algae and glare."
+"2014-07-25_YB-BDq5",2014-07-24,2014-07-25,"YB","BD","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae and glare."
+"2014-07-25_YB-BDq7",2014-07-24,2014-07-25,"YB","BD","7","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to blur and glare."
+"2014-07-25_YB-BDq1",2014-07-24,2014-07-25,"YB","BD","1","Bg","Balanus_glandula","Type 1",1572,0.0875,17965.7142857143,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to algae and glare."
+"2014-07-25_YB-BDq5",2014-07-24,2014-07-25,"YB","BD","5","Bg","Balanus_glandula","Type 1",586,0.0875,6697.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae and glare."
+"2014-07-25_YB-BDq7",2014-07-24,2014-07-25,"YB","BD","7","Bg","Balanus_glandula","Type 1",2829,0.0875,32331.4285714286,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to blur and glare."
+"2014-07-25_YB-BDq1",2014-07-24,2014-07-25,"YB","BD","1","BgD","Balanus_glandula_(dead)","Type 2",21,0.0875,240,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to algae and glare."
+"2014-07-25_YB-BDq5",2014-07-24,2014-07-25,"YB","BD","5","BgD","Balanus_glandula_(dead)","Type 2",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae and glare."
+"2014-07-25_YB-BDq7",2014-07-24,2014-07-25,"YB","BD","7","BgD","Balanus_glandula_(dead)","Type 2",11,0.0875,125.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to blur and glare."
+"2014-07-25_YB-BDq1",2014-07-24,2014-07-25,"YB","BD","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to algae and glare."
+"2014-07-25_YB-BDq5",2014-07-24,2014-07-25,"YB","BD","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae and glare."
+"2014-07-25_YB-BDq7",2014-07-24,2014-07-25,"YB","BD","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to blur and glare."
+"2014-07-25_YB-BDq1",2014-07-24,2014-07-25,"YB","BD","1","Cth","Chthamalus_dalli","Type 3",29,0.0875,331.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to algae and glare."
+"2014-07-25_YB-BDq5",2014-07-24,2014-07-25,"YB","BD","5","Cth","Chthamalus_dalli","Type 3",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae and glare."
+"2014-07-25_YB-BDq7",2014-07-24,2014-07-25,"YB","BD","7","Cth","Chthamalus_dalli","Type 3",22,0.0875,251.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to blur and glare."
+"2014-07-25_YB-BDq1",2014-07-24,2014-07-25,"YB","BD","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to algae and glare."
+"2014-07-25_YB-BDq5",2014-07-24,2014-07-25,"YB","BD","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae and glare."
+"2014-07-25_YB-BDq7",2014-07-24,2014-07-25,"YB","BD","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to blur and glare."
+"2014-07-25_YB-BDq1",2014-07-24,2014-07-25,"YB","BD","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to algae and glare."
+"2014-07-25_YB-BDq5",2014-07-24,2014-07-25,"YB","BD","5","Emp","Emplectonema worm","Type 23",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae and glare."
+"2014-07-25_YB-BDq7",2014-07-24,2014-07-25,"YB","BD","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to blur and glare."
+"2014-07-25_YB-BDq1",2014-07-24,2014-07-25,"YB","BD","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to algae and glare."
+"2014-07-25_YB-BDq5",2014-07-24,2014-07-25,"YB","BD","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae and glare."
+"2014-07-25_YB-BDq7",2014-07-24,2014-07-25,"YB","BD","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to blur and glare."
+"2014-07-25_YB-BDq1",2014-07-24,2014-07-25,"YB","BD","1","Lim","Limpets","Type 12",547,0.0875,6251.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to algae and glare."
+"2014-07-25_YB-BDq5",2014-07-24,2014-07-25,"YB","BD","5","Lim","Limpets","Type 12",205,0.0875,2342.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae and glare."
+"2014-07-25_YB-BDq7",2014-07-24,2014-07-25,"YB","BD","7","Lim","Limpets","Type 12",653,0.0875,7462.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to blur and glare."
+"2014-07-25_YB-BDq1",2014-07-24,2014-07-25,"YB","BD","1","Ls","Littorina_sitkana","Type 13",189,0.0875,2160,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to algae and glare."
+"2014-07-25_YB-BDq5",2014-07-24,2014-07-25,"YB","BD","5","Ls","Littorina_sitkana","Type 13",97,0.0875,1108.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae and glare."
+"2014-07-25_YB-BDq7",2014-07-24,2014-07-25,"YB","BD","7","Ls","Littorina_sitkana","Type 13",230,0.0875,2628.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to blur and glare."
+"2014-07-25_YB-BDq1",2014-07-24,2014-07-25,"YB","BD","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to algae and glare."
+"2014-07-25_YB-BDq5",2014-07-24,2014-07-25,"YB","BD","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae and glare."
+"2014-07-25_YB-BDq7",2014-07-24,2014-07-25,"YB","BD","7","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to blur and glare."
+"2014-07-25_YB-BDq1",2014-07-24,2014-07-25,"YB","BD","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to algae and glare."
+"2014-07-25_YB-BDq5",2014-07-24,2014-07-25,"YB","BD","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae and glare."
+"2014-07-25_YB-BDq7",2014-07-24,2014-07-25,"YB","BD","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to blur and glare."
+"2014-07-25_YB-BDq1",2014-07-24,2014-07-25,"YB","BD","1","Myt","Mytilus_spp","Type 7",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to algae and glare."
+"2014-07-25_YB-BDq5",2014-07-24,2014-07-25,"YB","BD","5","Myt","Mytilus_spp","Type 7",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae and glare."
+"2014-07-25_YB-BDq7",2014-07-24,2014-07-25,"YB","BD","7","Myt","Mytilus_spp","Type 7",79,0.0875,902.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to blur and glare."
+"2014-07-25_YB-BDq1",2014-07-24,2014-07-25,"YB","BD","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to algae and glare."
+"2014-07-25_YB-BDq5",2014-07-24,2014-07-25,"YB","BD","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae and glare."
+"2014-07-25_YB-BDq7",2014-07-24,2014-07-25,"YB","BD","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to blur and glare."
+"2014-07-25_YB-BDq1",2014-07-24,2014-07-25,"YB","BD","1","Mt","Mytilus_trossulus","Type 15",131,0.0875,1497.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to algae and glare."
+"2014-07-25_YB-BDq5",2014-07-24,2014-07-25,"YB","BD","5","Mt","Mytilus_trossulus","Type 15",275,0.0875,3142.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae and glare."
+"2014-07-25_YB-BDq7",2014-07-24,2014-07-25,"YB","BD","7","Mt","Mytilus_trossulus","Type 15",263,0.0875,3005.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to blur and glare."
+"2014-07-25_YB-BDq1",2014-07-24,2014-07-25,"YB","BD","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to algae and glare."
+"2014-07-25_YB-BDq5",2014-07-24,2014-07-25,"YB","BD","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae and glare."
+"2014-07-25_YB-BDq7",2014-07-24,2014-07-25,"YB","BD","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to blur and glare."
+"2014-07-25_YB-BDq1",2014-07-24,2014-07-25,"YB","BD","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to algae and glare."
+"2014-07-25_YB-BDq5",2014-07-24,2014-07-25,"YB","BD","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae and glare."
+"2014-07-25_YB-BDq7",2014-07-24,2014-07-25,"YB","BD","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to blur and glare."
+"2014-07-25_YB-BDq1",2014-07-24,2014-07-25,"YB","BD","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to algae and glare."
+"2014-07-25_YB-BDq5",2014-07-24,2014-07-25,"YB","BD","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae and glare."
+"2014-07-25_YB-BDq7",2014-07-24,2014-07-25,"YB","BD","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to blur and glare."
+"2014-07-25_YB-BDq1",2014-07-24,2014-07-25,"YB","BD","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to algae and glare."
+"2014-07-25_YB-BDq5",2014-07-24,2014-07-25,"YB","BD","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae and glare."
+"2014-07-25_YB-BDq7",2014-07-24,2014-07-25,"YB","BD","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to blur and glare."
+"2014-07-25_YB-BDq1",2014-07-24,2014-07-25,"YB","BD","1","No","Nucella_ostrina","Type 9",14,0.0875,160,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to algae and glare."
+"2014-07-25_YB-BDq5",2014-07-24,2014-07-25,"YB","BD","5","No","Nucella_ostrina","Type 9",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae and glare."
+"2014-07-25_YB-BDq7",2014-07-24,2014-07-25,"YB","BD","7","No","Nucella_ostrina","Type 9",11,0.0875,125.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to blur and glare."
+"2014-07-25_YB-BDq1",2014-07-24,2014-07-25,"YB","BD","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to algae and glare."
+"2014-07-25_YB-BDq5",2014-07-24,2014-07-25,"YB","BD","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae and glare."
+"2014-07-25_YB-BDq7",2014-07-24,2014-07-25,"YB","BD","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to blur and glare."
+"2014-07-25_YB-BDq1",2014-07-24,2014-07-25,"YB","BD","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to algae and glare."
+"2014-07-25_YB-BDq5",2014-07-24,2014-07-25,"YB","BD","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae and glare."
+"2014-07-25_YB-BDq7",2014-07-24,2014-07-25,"YB","BD","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to blur and glare."
+"2014-07-25_YB-BDq1",2014-07-24,2014-07-25,"YB","BD","1","Pp","Pollicipes_polymerus","Type 11",90,0.0875,1028.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to algae and glare."
+"2014-07-25_YB-BDq5",2014-07-24,2014-07-25,"YB","BD","5","Pp","Pollicipes_polymerus","Type 11",284,0.0875,3245.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae and glare."
+"2014-07-25_YB-BDq7",2014-07-24,2014-07-25,"YB","BD","7","Pp","Pollicipes_polymerus","Type 11",389,0.0875,4445.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to blur and glare."
+"2014-07-25_YB-BDq1",2014-07-24,2014-07-25,"YB","BD","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to algae and glare."
+"2014-07-25_YB-BDq5",2014-07-24,2014-07-25,"YB","BD","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae and glare."
+"2014-07-25_YB-BDq7",2014-07-24,2014-07-25,"YB","BD","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to blur and glare."
+"2014-07-25_YB-BDq1",2014-07-24,2014-07-25,"YB","BD","1","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to algae and glare."
+"2014-07-25_YB-BDq5",2014-07-24,2014-07-25,"YB","BD","5","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae and glare."
+"2014-07-25_YB-BDq7",2014-07-24,2014-07-25,"YB","BD","7","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to blur and glare."
+"2014-07-25_YB-BDq1",2014-07-24,2014-07-25,"YB","BD","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to algae and glare."
+"2014-07-25_YB-BDq5",2014-07-24,2014-07-25,"YB","BD","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae and glare."
+"2014-07-25_YB-BDq7",2014-07-24,2014-07-25,"YB","BD","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to blur and glare."
+"2014-07-25_YB-BEq2",2014-07-24,2014-07-25,"YB","BE","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Barnacle counts likely low due to recruit size and blur"
+"2014-07-25_YB-BEq3",2014-07-24,2014-07-25,"YB","BE","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-07-25_YB-BEq6",2014-07-24,2014-07-25,"YB","BE","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-07-25_YB-BEq2",2014-07-24,2014-07-25,"YB","BE","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Barnacle counts likely low due to recruit size and blur"
+"2014-07-25_YB-BEq3",2014-07-24,2014-07-25,"YB","BE","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-07-25_YB-BEq6",2014-07-24,2014-07-25,"YB","BE","6","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-07-25_YB-BEq2",2014-07-24,2014-07-25,"YB","BE","2","Bg","Balanus_glandula","Type 1",3894,0.0875,44502.8571428571,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Barnacle counts likely low due to recruit size and blur"
+"2014-07-25_YB-BEq3",2014-07-24,2014-07-25,"YB","BE","3","Bg","Balanus_glandula","Type 1",2524,0.015625,161536,"c","Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-07-25_YB-BEq6",2014-07-24,2014-07-25,"YB","BE","6","Bg","Balanus_glandula","Type 1",2781,0.015625,177984,"c","Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-07-25_YB-BEq2",2014-07-24,2014-07-25,"YB","BE","2","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Barnacle counts likely low due to recruit size and blur"
+"2014-07-25_YB-BEq3",2014-07-24,2014-07-25,"YB","BE","3","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-07-25_YB-BEq6",2014-07-24,2014-07-25,"YB","BE","6","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-07-25_YB-BEq2",2014-07-24,2014-07-25,"YB","BE","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Barnacle counts likely low due to recruit size and blur"
+"2014-07-25_YB-BEq3",2014-07-24,2014-07-25,"YB","BE","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-07-25_YB-BEq6",2014-07-24,2014-07-25,"YB","BE","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-07-25_YB-BEq2",2014-07-24,2014-07-25,"YB","BE","2","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Barnacle counts likely low due to recruit size and blur"
+"2014-07-25_YB-BEq3",2014-07-24,2014-07-25,"YB","BE","3","Cth","Chthamalus_dalli","Type 3",68,0.015625,4352,"c","Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-07-25_YB-BEq6",2014-07-24,2014-07-25,"YB","BE","6","Cth","Chthamalus_dalli","Type 3",113,0.015625,7232,"c","Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-07-25_YB-BEq2",2014-07-24,2014-07-25,"YB","BE","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Barnacle counts likely low due to recruit size and blur"
+"2014-07-25_YB-BEq3",2014-07-24,2014-07-25,"YB","BE","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-07-25_YB-BEq6",2014-07-24,2014-07-25,"YB","BE","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-07-25_YB-BEq2",2014-07-24,2014-07-25,"YB","BE","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Barnacle counts likely low due to recruit size and blur"
+"2014-07-25_YB-BEq3",2014-07-24,2014-07-25,"YB","BE","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-07-25_YB-BEq6",2014-07-24,2014-07-25,"YB","BE","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-07-25_YB-BEq2",2014-07-24,2014-07-25,"YB","BE","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Barnacle counts likely low due to recruit size and blur"
+"2014-07-25_YB-BEq3",2014-07-24,2014-07-25,"YB","BE","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-07-25_YB-BEq6",2014-07-24,2014-07-25,"YB","BE","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-07-25_YB-BEq2",2014-07-24,2014-07-25,"YB","BE","2","Lim","Limpets","Type 12",205,0.0875,2342.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Barnacle counts likely low due to recruit size and blur"
+"2014-07-25_YB-BEq3",2014-07-24,2014-07-25,"YB","BE","3","Lim","Limpets","Type 12",278,0.0875,3177.14285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-07-25_YB-BEq6",2014-07-24,2014-07-25,"YB","BE","6","Lim","Limpets","Type 12",231,0.0875,2640,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-07-25_YB-BEq2",2014-07-24,2014-07-25,"YB","BE","2","Ls","Littorina_sitkana","Type 13",168,0.0875,1920,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Barnacle counts likely low due to recruit size and blur"
+"2014-07-25_YB-BEq3",2014-07-24,2014-07-25,"YB","BE","3","Ls","Littorina_sitkana","Type 13",106,0.0875,1211.42857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-07-25_YB-BEq6",2014-07-24,2014-07-25,"YB","BE","6","Ls","Littorina_sitkana","Type 13",80,0.0875,914.285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-07-25_YB-BEq2",2014-07-24,2014-07-25,"YB","BE","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Barnacle counts likely low due to recruit size and blur"
+"2014-07-25_YB-BEq3",2014-07-24,2014-07-25,"YB","BE","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-07-25_YB-BEq6",2014-07-24,2014-07-25,"YB","BE","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-07-25_YB-BEq2",2014-07-24,2014-07-25,"YB","BE","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Barnacle counts likely low due to recruit size and blur"
+"2014-07-25_YB-BEq3",2014-07-24,2014-07-25,"YB","BE","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-07-25_YB-BEq6",2014-07-24,2014-07-25,"YB","BE","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-07-25_YB-BEq2",2014-07-24,2014-07-25,"YB","BE","2","Myt","Mytilus_spp","Type 7",21,0.0875,240,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Barnacle counts likely low due to recruit size and blur"
+"2014-07-25_YB-BEq3",2014-07-24,2014-07-25,"YB","BE","3","Myt","Mytilus_spp","Type 7",17,0.0875,194.285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-07-25_YB-BEq6",2014-07-24,2014-07-25,"YB","BE","6","Myt","Mytilus_spp","Type 7",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-07-25_YB-BEq2",2014-07-24,2014-07-25,"YB","BE","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Barnacle counts likely low due to recruit size and blur"
+"2014-07-25_YB-BEq3",2014-07-24,2014-07-25,"YB","BE","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-07-25_YB-BEq6",2014-07-24,2014-07-25,"YB","BE","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-07-25_YB-BEq2",2014-07-24,2014-07-25,"YB","BE","2","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Barnacle counts likely low due to recruit size and blur"
+"2014-07-25_YB-BEq3",2014-07-24,2014-07-25,"YB","BE","3","Mt","Mytilus_trossulus","Type 15",9,0.0875,102.857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-07-25_YB-BEq6",2014-07-24,2014-07-25,"YB","BE","6","Mt","Mytilus_trossulus","Type 15",28,0.0875,320,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-07-25_YB-BEq2",2014-07-24,2014-07-25,"YB","BE","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Barnacle counts likely low due to recruit size and blur"
+"2014-07-25_YB-BEq3",2014-07-24,2014-07-25,"YB","BE","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-07-25_YB-BEq6",2014-07-24,2014-07-25,"YB","BE","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-07-25_YB-BEq2",2014-07-24,2014-07-25,"YB","BE","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Barnacle counts likely low due to recruit size and blur"
+"2014-07-25_YB-BEq3",2014-07-24,2014-07-25,"YB","BE","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-07-25_YB-BEq6",2014-07-24,2014-07-25,"YB","BE","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-07-25_YB-BEq2",2014-07-24,2014-07-25,"YB","BE","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Barnacle counts likely low due to recruit size and blur"
+"2014-07-25_YB-BEq3",2014-07-24,2014-07-25,"YB","BE","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-07-25_YB-BEq6",2014-07-24,2014-07-25,"YB","BE","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-07-25_YB-BEq2",2014-07-24,2014-07-25,"YB","BE","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Barnacle counts likely low due to recruit size and blur"
+"2014-07-25_YB-BEq3",2014-07-24,2014-07-25,"YB","BE","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-07-25_YB-BEq6",2014-07-24,2014-07-25,"YB","BE","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-07-25_YB-BEq2",2014-07-24,2014-07-25,"YB","BE","2","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Barnacle counts likely low due to recruit size and blur"
+"2014-07-25_YB-BEq3",2014-07-24,2014-07-25,"YB","BE","3","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-07-25_YB-BEq6",2014-07-24,2014-07-25,"YB","BE","6","No","Nucella_ostrina","Type 9",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-07-25_YB-BEq2",2014-07-24,2014-07-25,"YB","BE","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Barnacle counts likely low due to recruit size and blur"
+"2014-07-25_YB-BEq3",2014-07-24,2014-07-25,"YB","BE","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-07-25_YB-BEq6",2014-07-24,2014-07-25,"YB","BE","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-07-25_YB-BEq2",2014-07-24,2014-07-25,"YB","BE","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Barnacle counts likely low due to recruit size and blur"
+"2014-07-25_YB-BEq3",2014-07-24,2014-07-25,"YB","BE","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-07-25_YB-BEq6",2014-07-24,2014-07-25,"YB","BE","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-07-25_YB-BEq2",2014-07-24,2014-07-25,"YB","BE","2","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Barnacle counts likely low due to recruit size and blur"
+"2014-07-25_YB-BEq3",2014-07-24,2014-07-25,"YB","BE","3","Pp","Pollicipes_polymerus","Type 11",31,0.0875,354.285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-07-25_YB-BEq6",2014-07-24,2014-07-25,"YB","BE","6","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-07-25_YB-BEq2",2014-07-24,2014-07-25,"YB","BE","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Barnacle counts likely low due to recruit size and blur"
+"2014-07-25_YB-BEq3",2014-07-24,2014-07-25,"YB","BE","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-07-25_YB-BEq6",2014-07-24,2014-07-25,"YB","BE","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-07-25_YB-BEq2",2014-07-24,2014-07-25,"YB","BE","2","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Barnacle counts likely low due to recruit size and blur"
+"2014-07-25_YB-BEq3",2014-07-24,2014-07-25,"YB","BE","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-07-25_YB-BEq6",2014-07-24,2014-07-25,"YB","BE","6","Sc","Semibalanus_cariosus","Type 5",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-07-25_YB-BEq2",2014-07-24,2014-07-25,"YB","BE","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Barnacle counts likely low due to recruit size and blur"
+"2014-07-25_YB-BEq3",2014-07-24,2014-07-25,"YB","BE","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2014-07-25_YB-BEq6",2014-07-24,2014-07-25,"YB","BE","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-07-25_YB-BFq1",2014-07-24,2014-07-25,"YB","BF","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-07-25_YB-BFq4",2014-07-24,2014-07-25,"YB","BF","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-07-25_YB-BFq9",2014-07-24,2014-07-25,"YB","BF","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","30%","95% of barnacles are tiny recruits"
+"2014-07-25_YB-BFq1",2014-07-24,2014-07-25,"YB","BF","1","Ae","Anemones","Type 14",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-07-25_YB-BFq4",2014-07-24,2014-07-25,"YB","BF","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-07-25_YB-BFq9",2014-07-24,2014-07-25,"YB","BF","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","30%","95% of barnacles are tiny recruits"
+"2014-07-25_YB-BFq1",2014-07-24,2014-07-25,"YB","BF","1","Bg","Balanus_glandula","Type 1",3112,0.015625,199168,"c","Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-07-25_YB-BFq4",2014-07-24,2014-07-25,"YB","BF","4","Bg","Balanus_glandula","Type 1",2545,0.015625,162880,"c","Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-07-25_YB-BFq9",2014-07-24,2014-07-25,"YB","BF","9","Bg","Balanus_glandula","Type 1",3062,0.015625,195968,"c","Julia Bingham","Finished","Full","Cropped","30%","95% of barnacles are tiny recruits"
+"2014-07-25_YB-BFq1",2014-07-24,2014-07-25,"YB","BF","1","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-07-25_YB-BFq4",2014-07-24,2014-07-25,"YB","BF","4","BgD","Balanus_glandula_(dead)","Type 2",3,0.015625,192,"c","Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-07-25_YB-BFq9",2014-07-24,2014-07-25,"YB","BF","9","BgD","Balanus_glandula_(dead)","Type 2",164,0.015625,10496,"c","Julia Bingham","Finished","Full","Cropped","30%","95% of barnacles are tiny recruits"
+"2014-07-25_YB-BFq1",2014-07-24,2014-07-25,"YB","BF","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-07-25_YB-BFq4",2014-07-24,2014-07-25,"YB","BF","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-07-25_YB-BFq9",2014-07-24,2014-07-25,"YB","BF","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","30%","95% of barnacles are tiny recruits"
+"2014-07-25_YB-BFq1",2014-07-24,2014-07-25,"YB","BF","1","Cth","Chthamalus_dalli","Type 3",92,0.015625,5888,"c","Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-07-25_YB-BFq4",2014-07-24,2014-07-25,"YB","BF","4","Cth","Chthamalus_dalli","Type 3",155,0.015625,9920,"c","Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-07-25_YB-BFq9",2014-07-24,2014-07-25,"YB","BF","9","Cth","Chthamalus_dalli","Type 3",1,0.015625,64,"c","Julia Bingham","Finished","Full","Cropped","30%","95% of barnacles are tiny recruits"
+"2014-07-25_YB-BFq1",2014-07-24,2014-07-25,"YB","BF","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-07-25_YB-BFq4",2014-07-24,2014-07-25,"YB","BF","4","CthD","Chthamalus_dalli (dead)","Type 4",1,0.015625,64,"c","Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-07-25_YB-BFq9",2014-07-24,2014-07-25,"YB","BF","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Julia Bingham","Finished","Full","Cropped","30%","95% of barnacles are tiny recruits"
+"2014-07-25_YB-BFq1",2014-07-24,2014-07-25,"YB","BF","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-07-25_YB-BFq4",2014-07-24,2014-07-25,"YB","BF","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-07-25_YB-BFq9",2014-07-24,2014-07-25,"YB","BF","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","30%","95% of barnacles are tiny recruits"
+"2014-07-25_YB-BFq1",2014-07-24,2014-07-25,"YB","BF","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-07-25_YB-BFq4",2014-07-24,2014-07-25,"YB","BF","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-07-25_YB-BFq9",2014-07-24,2014-07-25,"YB","BF","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","30%","95% of barnacles are tiny recruits"
+"2014-07-25_YB-BFq1",2014-07-24,2014-07-25,"YB","BF","1","Lim","Limpets","Type 12",355,0.0875,4057.14285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-07-25_YB-BFq4",2014-07-24,2014-07-25,"YB","BF","4","Lim","Limpets","Type 12",309,0.0875,3531.42857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-07-25_YB-BFq9",2014-07-24,2014-07-25,"YB","BF","9","Lim","Limpets","Type 12",220,0.0875,2514.28571428571,NA,"Julia Bingham","Finished","Full","Cropped","30%","95% of barnacles are tiny recruits"
+"2014-07-25_YB-BFq1",2014-07-24,2014-07-25,"YB","BF","1","Ls","Littorina_sitkana","Type 13",499,0.0875,5702.85714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-07-25_YB-BFq4",2014-07-24,2014-07-25,"YB","BF","4","Ls","Littorina_sitkana","Type 13",212,0.0875,2422.85714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-07-25_YB-BFq9",2014-07-24,2014-07-25,"YB","BF","9","Ls","Littorina_sitkana","Type 13",441,0.0875,5040,NA,"Julia Bingham","Finished","Full","Cropped","30%","95% of barnacles are tiny recruits"
+"2014-07-25_YB-BFq1",2014-07-24,2014-07-25,"YB","BF","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-07-25_YB-BFq4",2014-07-24,2014-07-25,"YB","BF","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-07-25_YB-BFq9",2014-07-24,2014-07-25,"YB","BF","9","Mc","Mytilus_californianus","Type 17",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Cropped","30%","95% of barnacles are tiny recruits"
+"2014-07-25_YB-BFq1",2014-07-24,2014-07-25,"YB","BF","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-07-25_YB-BFq4",2014-07-24,2014-07-25,"YB","BF","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-07-25_YB-BFq9",2014-07-24,2014-07-25,"YB","BF","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","30%","95% of barnacles are tiny recruits"
+"2014-07-25_YB-BFq1",2014-07-24,2014-07-25,"YB","BF","1","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-07-25_YB-BFq4",2014-07-24,2014-07-25,"YB","BF","4","Myt","Mytilus_spp","Type 7",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-07-25_YB-BFq9",2014-07-24,2014-07-25,"YB","BF","9","Myt","Mytilus_spp","Type 7",47,0.0875,537.142857142857,NA,"Julia Bingham","Finished","Full","Cropped","30%","95% of barnacles are tiny recruits"
+"2014-07-25_YB-BFq1",2014-07-24,2014-07-25,"YB","BF","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-07-25_YB-BFq4",2014-07-24,2014-07-25,"YB","BF","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-07-25_YB-BFq9",2014-07-24,2014-07-25,"YB","BF","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","30%","95% of barnacles are tiny recruits"
+"2014-07-25_YB-BFq1",2014-07-24,2014-07-25,"YB","BF","1","Mt","Mytilus_trossulus","Type 15",239,0.0875,2731.42857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-07-25_YB-BFq4",2014-07-24,2014-07-25,"YB","BF","4","Mt","Mytilus_trossulus","Type 15",28,0.0875,320,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-07-25_YB-BFq9",2014-07-24,2014-07-25,"YB","BF","9","Mt","Mytilus_trossulus","Type 15",71,0.0875,811.428571428571,NA,"Julia Bingham","Finished","Full","Cropped","30%","95% of barnacles are tiny recruits"
+"2014-07-25_YB-BFq1",2014-07-24,2014-07-25,"YB","BF","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-07-25_YB-BFq4",2014-07-24,2014-07-25,"YB","BF","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-07-25_YB-BFq9",2014-07-24,2014-07-25,"YB","BF","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","30%","95% of barnacles are tiny recruits"
+"2014-07-25_YB-BFq1",2014-07-24,2014-07-25,"YB","BF","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-07-25_YB-BFq4",2014-07-24,2014-07-25,"YB","BF","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-07-25_YB-BFq9",2014-07-24,2014-07-25,"YB","BF","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","30%","95% of barnacles are tiny recruits"
+"2014-07-25_YB-BFq1",2014-07-24,2014-07-25,"YB","BF","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-07-25_YB-BFq4",2014-07-24,2014-07-25,"YB","BF","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-07-25_YB-BFq9",2014-07-24,2014-07-25,"YB","BF","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","30%","95% of barnacles are tiny recruits"
+"2014-07-25_YB-BFq1",2014-07-24,2014-07-25,"YB","BF","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-07-25_YB-BFq4",2014-07-24,2014-07-25,"YB","BF","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-07-25_YB-BFq9",2014-07-24,2014-07-25,"YB","BF","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","30%","95% of barnacles are tiny recruits"
+"2014-07-25_YB-BFq1",2014-07-24,2014-07-25,"YB","BF","1","No","Nucella_ostrina","Type 9",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-07-25_YB-BFq4",2014-07-24,2014-07-25,"YB","BF","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-07-25_YB-BFq9",2014-07-24,2014-07-25,"YB","BF","9","No","Nucella_ostrina","Type 9",4,0.0875,45.7142857142857,NA,"Julia Bingham","Finished","Full","Cropped","30%","95% of barnacles are tiny recruits"
+"2014-07-25_YB-BFq1",2014-07-24,2014-07-25,"YB","BF","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-07-25_YB-BFq4",2014-07-24,2014-07-25,"YB","BF","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-07-25_YB-BFq9",2014-07-24,2014-07-25,"YB","BF","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","30%","95% of barnacles are tiny recruits"
+"2014-07-25_YB-BFq1",2014-07-24,2014-07-25,"YB","BF","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-07-25_YB-BFq4",2014-07-24,2014-07-25,"YB","BF","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-07-25_YB-BFq9",2014-07-24,2014-07-25,"YB","BF","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","30%","95% of barnacles are tiny recruits"
+"2014-07-25_YB-BFq1",2014-07-24,2014-07-25,"YB","BF","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-07-25_YB-BFq4",2014-07-24,2014-07-25,"YB","BF","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-07-25_YB-BFq9",2014-07-24,2014-07-25,"YB","BF","9","Pp","Pollicipes_polymerus","Type 11",11,0.0875,125.714285714286,NA,"Julia Bingham","Finished","Full","Cropped","30%","95% of barnacles are tiny recruits"
+"2014-07-25_YB-BFq1",2014-07-24,2014-07-25,"YB","BF","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-07-25_YB-BFq4",2014-07-24,2014-07-25,"YB","BF","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-07-25_YB-BFq9",2014-07-24,2014-07-25,"YB","BF","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","30%","95% of barnacles are tiny recruits"
+"2014-07-25_YB-BFq1",2014-07-24,2014-07-25,"YB","BF","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-07-25_YB-BFq4",2014-07-24,2014-07-25,"YB","BF","4","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-07-25_YB-BFq9",2014-07-24,2014-07-25,"YB","BF","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","30%","95% of barnacles are tiny recruits"
+"2014-07-25_YB-BFq1",2014-07-24,2014-07-25,"YB","BF","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-07-25_YB-BFq4",2014-07-24,2014-07-25,"YB","BF","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-07-25_YB-BFq9",2014-07-24,2014-07-25,"YB","BF","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","30%","95% of barnacles are tiny recruits"
+"2014-07-24_YB-Cq2",2014-07-24,2014-07-24,"YB","C","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","5%",""
+"2014-07-24_YB-Cq4",2014-07-24,2014-07-24,"YB","C","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","2%",""
+"2014-07-24_YB-Cq6",2014-07-24,2014-07-24,"YB","C","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-07-24_YB-Cq2",2014-07-24,2014-07-24,"YB","C","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","5%",""
+"2014-07-24_YB-Cq4",2014-07-24,2014-07-24,"YB","C","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","2%",""
+"2014-07-24_YB-Cq6",2014-07-24,2014-07-24,"YB","C","6","Ae","Anemones","Type 14",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-07-24_YB-Cq2",2014-07-24,2014-07-24,"YB","C","2","Bg","Balanus_glandula","Type 1",329,0.0875,3760,NA,"Beatriz Vaca","Finished","Cropped","Full","5%",""
+"2014-07-24_YB-Cq4",2014-07-24,2014-07-24,"YB","C","4","Bg","Balanus_glandula","Type 1",320,0.0875,3657.14285714286,NA,"Beatriz Vaca","Finished","Cropped","Full","2%",""
+"2014-07-24_YB-Cq6",2014-07-24,2014-07-24,"YB","C","6","Bg","Balanus_glandula","Type 1",114,0.015625,7296,"c","Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-07-24_YB-Cq2",2014-07-24,2014-07-24,"YB","C","2","BgD","Balanus_glandula_(dead)","Type 2",7,0.0875,80,NA,"Beatriz Vaca","Finished","Cropped","Full","5%",""
+"2014-07-24_YB-Cq4",2014-07-24,2014-07-24,"YB","C","4","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","2%",""
+"2014-07-24_YB-Cq6",2014-07-24,2014-07-24,"YB","C","6","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-07-24_YB-Cq2",2014-07-24,2014-07-24,"YB","C","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","5%",""
+"2014-07-24_YB-Cq4",2014-07-24,2014-07-24,"YB","C","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","2%",""
+"2014-07-24_YB-Cq6",2014-07-24,2014-07-24,"YB","C","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-07-24_YB-Cq2",2014-07-24,2014-07-24,"YB","C","2","Cth","Chthamalus_dalli","Type 3",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Cropped","Full","5%",""
+"2014-07-24_YB-Cq4",2014-07-24,2014-07-24,"YB","C","4","Cth","Chthamalus_dalli","Type 3",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Cropped","Full","2%",""
+"2014-07-24_YB-Cq6",2014-07-24,2014-07-24,"YB","C","6","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-07-24_YB-Cq2",2014-07-24,2014-07-24,"YB","C","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","5%",""
+"2014-07-24_YB-Cq4",2014-07-24,2014-07-24,"YB","C","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","2%",""
+"2014-07-24_YB-Cq6",2014-07-24,2014-07-24,"YB","C","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-07-24_YB-Cq2",2014-07-24,2014-07-24,"YB","C","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","5%",""
+"2014-07-24_YB-Cq4",2014-07-24,2014-07-24,"YB","C","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","2%",""
+"2014-07-24_YB-Cq6",2014-07-24,2014-07-24,"YB","C","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-07-24_YB-Cq2",2014-07-24,2014-07-24,"YB","C","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","5%",""
+"2014-07-24_YB-Cq4",2014-07-24,2014-07-24,"YB","C","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","2%",""
+"2014-07-24_YB-Cq6",2014-07-24,2014-07-24,"YB","C","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-07-24_YB-Cq2",2014-07-24,2014-07-24,"YB","C","2","Lim","Limpets","Type 12",94,0.0875,1074.28571428571,NA,"Beatriz Vaca","Finished","Cropped","Full","5%",""
+"2014-07-24_YB-Cq4",2014-07-24,2014-07-24,"YB","C","4","Lim","Limpets","Type 12",18,0.0875,205.714285714286,NA,"Beatriz Vaca","Finished","Cropped","Full","2%",""
+"2014-07-24_YB-Cq6",2014-07-24,2014-07-24,"YB","C","6","Lim","Limpets","Type 12",142,0.0875,1622.85714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-07-24_YB-Cq2",2014-07-24,2014-07-24,"YB","C","2","Ls","Littorina_sitkana","Type 13",11,0.0875,125.714285714286,NA,"Beatriz Vaca","Finished","Cropped","Full","5%",""
+"2014-07-24_YB-Cq4",2014-07-24,2014-07-24,"YB","C","4","Ls","Littorina_sitkana","Type 13",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Cropped","Full","2%",""
+"2014-07-24_YB-Cq6",2014-07-24,2014-07-24,"YB","C","6","Ls","Littorina_sitkana","Type 13",17,0.0875,194.285714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-07-24_YB-Cq2",2014-07-24,2014-07-24,"YB","C","2","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","5%",""
+"2014-07-24_YB-Cq4",2014-07-24,2014-07-24,"YB","C","4","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","2%",""
+"2014-07-24_YB-Cq6",2014-07-24,2014-07-24,"YB","C","6","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-07-24_YB-Cq2",2014-07-24,2014-07-24,"YB","C","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","5%",""
+"2014-07-24_YB-Cq4",2014-07-24,2014-07-24,"YB","C","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","2%",""
+"2014-07-24_YB-Cq6",2014-07-24,2014-07-24,"YB","C","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-07-24_YB-Cq2",2014-07-24,2014-07-24,"YB","C","2","Myt","Mytilus_spp","Type 7",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","5%",""
+"2014-07-24_YB-Cq4",2014-07-24,2014-07-24,"YB","C","4","Myt","Mytilus_spp","Type 7",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","2%",""
+"2014-07-24_YB-Cq6",2014-07-24,2014-07-24,"YB","C","6","Myt","Mytilus_spp","Type 7",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-07-24_YB-Cq2",2014-07-24,2014-07-24,"YB","C","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","5%",""
+"2014-07-24_YB-Cq4",2014-07-24,2014-07-24,"YB","C","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","2%",""
+"2014-07-24_YB-Cq6",2014-07-24,2014-07-24,"YB","C","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-07-24_YB-Cq2",2014-07-24,2014-07-24,"YB","C","2","Mt","Mytilus_trossulus","Type 15",190,0.015625,12160,"c","Beatriz Vaca","Finished","Cropped","Full","5%",""
+"2014-07-24_YB-Cq4",2014-07-24,2014-07-24,"YB","C","4","Mt","Mytilus_trossulus","Type 15",135,0.015625,8640,"c","Beatriz Vaca","Finished","Cropped","Full","2%",""
+"2014-07-24_YB-Cq6",2014-07-24,2014-07-24,"YB","C","6","Mt","Mytilus_trossulus","Type 15",117,0.015625,7488,"c","Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-07-24_YB-Cq2",2014-07-24,2014-07-24,"YB","C","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","5%",""
+"2014-07-24_YB-Cq4",2014-07-24,2014-07-24,"YB","C","4","MtD","Mytilus_trossulus_(dead)","Type 16",2,0.015625,128,"c","Beatriz Vaca","Finished","Cropped","Full","2%",""
+"2014-07-24_YB-Cq6",2014-07-24,2014-07-24,"YB","C","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-07-24_YB-Cq2",2014-07-24,2014-07-24,"YB","C","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","5%",""
+"2014-07-24_YB-Cq4",2014-07-24,2014-07-24,"YB","C","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","2%",""
+"2014-07-24_YB-Cq6",2014-07-24,2014-07-24,"YB","C","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-07-24_YB-Cq2",2014-07-24,2014-07-24,"YB","C","2","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Cropped","Full","5%",""
+"2014-07-24_YB-Cq4",2014-07-24,2014-07-24,"YB","C","4","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Cropped","Full","2%",""
+"2014-07-24_YB-Cq6",2014-07-24,2014-07-24,"YB","C","6","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-07-24_YB-Cq2",2014-07-24,2014-07-24,"YB","C","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","5%",""
+"2014-07-24_YB-Cq4",2014-07-24,2014-07-24,"YB","C","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","2%",""
+"2014-07-24_YB-Cq6",2014-07-24,2014-07-24,"YB","C","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-07-24_YB-Cq2",2014-07-24,2014-07-24,"YB","C","2","No","Nucella_ostrina","Type 9",11,0.0875,125.714285714286,NA,"Beatriz Vaca","Finished","Cropped","Full","5%",""
+"2014-07-24_YB-Cq4",2014-07-24,2014-07-24,"YB","C","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","2%",""
+"2014-07-24_YB-Cq6",2014-07-24,2014-07-24,"YB","C","6","No","Nucella_ostrina","Type 9",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-07-24_YB-Cq2",2014-07-24,2014-07-24,"YB","C","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","5%",""
+"2014-07-24_YB-Cq4",2014-07-24,2014-07-24,"YB","C","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","2%",""
+"2014-07-24_YB-Cq6",2014-07-24,2014-07-24,"YB","C","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-07-24_YB-Cq2",2014-07-24,2014-07-24,"YB","C","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","5%",""
+"2014-07-24_YB-Cq4",2014-07-24,2014-07-24,"YB","C","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","2%",""
+"2014-07-24_YB-Cq6",2014-07-24,2014-07-24,"YB","C","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-07-24_YB-Cq2",2014-07-24,2014-07-24,"YB","C","2","Pp","Pollicipes_polymerus","Type 11",37,0.0875,422.857142857143,NA,"Beatriz Vaca","Finished","Cropped","Full","5%",""
+"2014-07-24_YB-Cq4",2014-07-24,2014-07-24,"YB","C","4","Pp","Pollicipes_polymerus","Type 11",56,0.0875,640,NA,"Beatriz Vaca","Finished","Cropped","Full","2%",""
+"2014-07-24_YB-Cq6",2014-07-24,2014-07-24,"YB","C","6","Pp","Pollicipes_polymerus","Type 11",33,0.0875,377.142857142857,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-07-24_YB-Cq2",2014-07-24,2014-07-24,"YB","C","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","5%",""
+"2014-07-24_YB-Cq4",2014-07-24,2014-07-24,"YB","C","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","2%",""
+"2014-07-24_YB-Cq6",2014-07-24,2014-07-24,"YB","C","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-07-24_YB-Cq2",2014-07-24,2014-07-24,"YB","C","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","5%",""
+"2014-07-24_YB-Cq4",2014-07-24,2014-07-24,"YB","C","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","2%",""
+"2014-07-24_YB-Cq6",2014-07-24,2014-07-24,"YB","C","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-07-24_YB-Cq2",2014-07-24,2014-07-24,"YB","C","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","5%",""
+"2014-07-24_YB-Cq4",2014-07-24,2014-07-24,"YB","C","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","2%",""
+"2014-07-24_YB-Cq6",2014-07-24,2014-07-24,"YB","C","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-07-24_YB-Dq3",2014-07-24,2014-07-24,"YB","D","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","12%",""
+"2014-07-24_YB-Dq4",2014-07-24,2014-07-24,"YB","D","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%",""
+"2014-07-24_YB-Dq5",2014-07-24,2014-07-24,"YB","D","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%","Barnacle counts low due to recruits obscured by glare."
+"2014-07-24_YB-Dq3",2014-07-24,2014-07-24,"YB","D","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","12%",""
+"2014-07-24_YB-Dq4",2014-07-24,2014-07-24,"YB","D","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%",""
+"2014-07-24_YB-Dq5",2014-07-24,2014-07-24,"YB","D","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%","Barnacle counts low due to recruits obscured by glare."
+"2014-07-24_YB-Dq3",2014-07-24,2014-07-24,"YB","D","3","Bg","Balanus_glandula","Type 1",258,0.015625,16512,"c","Beatriz Vaca","Finished","Cropped","Cropped","12%",""
+"2014-07-24_YB-Dq4",2014-07-24,2014-07-24,"YB","D","4","Bg","Balanus_glandula","Type 1",497,0.015625,31808,"c","Stephanie Merhoff","Finished","Full","Cropped","3%",""
+"2014-07-24_YB-Dq5",2014-07-24,2014-07-24,"YB","D","5","Bg","Balanus_glandula","Type 1",549,0.015625,35136,"c","Beatriz Vaca","Finished","Full","Cropped","7%","Barnacle counts low due to recruits obscured by glare."
+"2014-07-24_YB-Dq3",2014-07-24,2014-07-24,"YB","D","3","BgD","Balanus_glandula_(dead)","Type 2",4,0.015625,256,"c","Beatriz Vaca","Finished","Cropped","Cropped","12%",""
+"2014-07-24_YB-Dq4",2014-07-24,2014-07-24,"YB","D","4","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","3%",""
+"2014-07-24_YB-Dq5",2014-07-24,2014-07-24,"YB","D","5","BgD","Balanus_glandula_(dead)","Type 2",6,0.015625,384,"c","Beatriz Vaca","Finished","Full","Cropped","7%","Barnacle counts low due to recruits obscured by glare."
+"2014-07-24_YB-Dq3",2014-07-24,2014-07-24,"YB","D","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","12%",""
+"2014-07-24_YB-Dq4",2014-07-24,2014-07-24,"YB","D","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%",""
+"2014-07-24_YB-Dq5",2014-07-24,2014-07-24,"YB","D","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%","Barnacle counts low due to recruits obscured by glare."
+"2014-07-24_YB-Dq3",2014-07-24,2014-07-24,"YB","D","3","Cth","Chthamalus_dalli","Type 3",1,0.015625,64,"c","Beatriz Vaca","Finished","Cropped","Cropped","12%",""
+"2014-07-24_YB-Dq4",2014-07-24,2014-07-24,"YB","D","4","Cth","Chthamalus_dalli","Type 3",8,0.015625,512,"c","Stephanie Merhoff","Finished","Full","Cropped","3%",""
+"2014-07-24_YB-Dq5",2014-07-24,2014-07-24,"YB","D","5","Cth","Chthamalus_dalli","Type 3",5,0.015625,320,"c","Beatriz Vaca","Finished","Full","Cropped","7%","Barnacle counts low due to recruits obscured by glare."
+"2014-07-24_YB-Dq3",2014-07-24,2014-07-24,"YB","D","3","CthD","Chthamalus_dalli (dead)","Type 4",1,0.015625,64,"c","Beatriz Vaca","Finished","Cropped","Cropped","12%",""
+"2014-07-24_YB-Dq4",2014-07-24,2014-07-24,"YB","D","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","3%",""
+"2014-07-24_YB-Dq5",2014-07-24,2014-07-24,"YB","D","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","7%","Barnacle counts low due to recruits obscured by glare."
+"2014-07-24_YB-Dq3",2014-07-24,2014-07-24,"YB","D","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","12%",""
+"2014-07-24_YB-Dq4",2014-07-24,2014-07-24,"YB","D","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%",""
+"2014-07-24_YB-Dq5",2014-07-24,2014-07-24,"YB","D","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%","Barnacle counts low due to recruits obscured by glare."
+"2014-07-24_YB-Dq3",2014-07-24,2014-07-24,"YB","D","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","12%",""
+"2014-07-24_YB-Dq4",2014-07-24,2014-07-24,"YB","D","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%",""
+"2014-07-24_YB-Dq5",2014-07-24,2014-07-24,"YB","D","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%","Barnacle counts low due to recruits obscured by glare."
+"2014-07-24_YB-Dq3",2014-07-24,2014-07-24,"YB","D","3","Lim","Limpets","Type 12",114,0.0875,1302.85714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","12%",""
+"2014-07-24_YB-Dq4",2014-07-24,2014-07-24,"YB","D","4","Lim","Limpets","Type 12",155,0.0875,1771.42857142857,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%",""
+"2014-07-24_YB-Dq5",2014-07-24,2014-07-24,"YB","D","5","Lim","Limpets","Type 12",421,0.0875,4811.42857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","7%","Barnacle counts low due to recruits obscured by glare."
+"2014-07-24_YB-Dq3",2014-07-24,2014-07-24,"YB","D","3","Ls","Littorina_sitkana","Type 13",232,0.0875,2651.42857142857,NA,"Beatriz Vaca","Finished","Cropped","Cropped","12%",""
+"2014-07-24_YB-Dq4",2014-07-24,2014-07-24,"YB","D","4","Ls","Littorina_sitkana","Type 13",185,0.0875,2114.28571428571,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%",""
+"2014-07-24_YB-Dq5",2014-07-24,2014-07-24,"YB","D","5","Ls","Littorina_sitkana","Type 13",271,0.0875,3097.14285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","7%","Barnacle counts low due to recruits obscured by glare."
+"2014-07-24_YB-Dq3",2014-07-24,2014-07-24,"YB","D","3","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","12%",""
+"2014-07-24_YB-Dq4",2014-07-24,2014-07-24,"YB","D","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%",""
+"2014-07-24_YB-Dq5",2014-07-24,2014-07-24,"YB","D","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%","Barnacle counts low due to recruits obscured by glare."
+"2014-07-24_YB-Dq3",2014-07-24,2014-07-24,"YB","D","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","12%",""
+"2014-07-24_YB-Dq4",2014-07-24,2014-07-24,"YB","D","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%",""
+"2014-07-24_YB-Dq5",2014-07-24,2014-07-24,"YB","D","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%","Barnacle counts low due to recruits obscured by glare."
+"2014-07-24_YB-Dq3",2014-07-24,2014-07-24,"YB","D","3","Myt","Mytilus_spp","Type 7",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","12%",""
+"2014-07-24_YB-Dq4",2014-07-24,2014-07-24,"YB","D","4","Myt","Mytilus_spp","Type 7",287,0.0875,3280,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%",""
+"2014-07-24_YB-Dq5",2014-07-24,2014-07-24,"YB","D","5","Myt","Mytilus_spp","Type 7",58,0.0875,662.857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","7%","Barnacle counts low due to recruits obscured by glare."
+"2014-07-24_YB-Dq3",2014-07-24,2014-07-24,"YB","D","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","12%",""
+"2014-07-24_YB-Dq4",2014-07-24,2014-07-24,"YB","D","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%",""
+"2014-07-24_YB-Dq5",2014-07-24,2014-07-24,"YB","D","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%","Barnacle counts low due to recruits obscured by glare."
+"2014-07-24_YB-Dq3",2014-07-24,2014-07-24,"YB","D","3","Mt","Mytilus_trossulus","Type 15",150,0.015625,9600,"c","Beatriz Vaca","Finished","Cropped","Cropped","12%",""
+"2014-07-24_YB-Dq4",2014-07-24,2014-07-24,"YB","D","4","Mt","Mytilus_trossulus","Type 15",120,0.0875,1371.42857142857,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%",""
+"2014-07-24_YB-Dq5",2014-07-24,2014-07-24,"YB","D","5","Mt","Mytilus_trossulus","Type 15",607,0.0875,6937.14285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","7%","Barnacle counts low due to recruits obscured by glare."
+"2014-07-24_YB-Dq3",2014-07-24,2014-07-24,"YB","D","3","MtD","Mytilus_trossulus_(dead)","Type 16",1,0.015625,64,"c","Beatriz Vaca","Finished","Cropped","Cropped","12%",""
+"2014-07-24_YB-Dq4",2014-07-24,2014-07-24,"YB","D","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%",""
+"2014-07-24_YB-Dq5",2014-07-24,2014-07-24,"YB","D","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%","Barnacle counts low due to recruits obscured by glare."
+"2014-07-24_YB-Dq3",2014-07-24,2014-07-24,"YB","D","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","12%",""
+"2014-07-24_YB-Dq4",2014-07-24,2014-07-24,"YB","D","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%",""
+"2014-07-24_YB-Dq5",2014-07-24,2014-07-24,"YB","D","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%","Barnacle counts low due to recruits obscured by glare."
+"2014-07-24_YB-Dq3",2014-07-24,2014-07-24,"YB","D","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","12%",""
+"2014-07-24_YB-Dq4",2014-07-24,2014-07-24,"YB","D","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%",""
+"2014-07-24_YB-Dq5",2014-07-24,2014-07-24,"YB","D","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%","Barnacle counts low due to recruits obscured by glare."
+"2014-07-24_YB-Dq3",2014-07-24,2014-07-24,"YB","D","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","12%",""
+"2014-07-24_YB-Dq4",2014-07-24,2014-07-24,"YB","D","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%",""
+"2014-07-24_YB-Dq5",2014-07-24,2014-07-24,"YB","D","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%","Barnacle counts low due to recruits obscured by glare."
+"2014-07-24_YB-Dq3",2014-07-24,2014-07-24,"YB","D","3","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","12%",""
+"2014-07-24_YB-Dq4",2014-07-24,2014-07-24,"YB","D","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%",""
+"2014-07-24_YB-Dq5",2014-07-24,2014-07-24,"YB","D","5","No","Nucella_ostrina","Type 9",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","7%","Barnacle counts low due to recruits obscured by glare."
+"2014-07-24_YB-Dq3",2014-07-24,2014-07-24,"YB","D","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","12%",""
+"2014-07-24_YB-Dq4",2014-07-24,2014-07-24,"YB","D","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%",""
+"2014-07-24_YB-Dq5",2014-07-24,2014-07-24,"YB","D","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%","Barnacle counts low due to recruits obscured by glare."
+"2014-07-24_YB-Dq3",2014-07-24,2014-07-24,"YB","D","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","12%",""
+"2014-07-24_YB-Dq4",2014-07-24,2014-07-24,"YB","D","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%",""
+"2014-07-24_YB-Dq5",2014-07-24,2014-07-24,"YB","D","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%","Barnacle counts low due to recruits obscured by glare."
+"2014-07-24_YB-Dq3",2014-07-24,2014-07-24,"YB","D","3","Pp","Pollicipes_polymerus","Type 11",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Cropped","Cropped","12%",""
+"2014-07-24_YB-Dq4",2014-07-24,2014-07-24,"YB","D","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%",""
+"2014-07-24_YB-Dq5",2014-07-24,2014-07-24,"YB","D","5","Pp","Pollicipes_polymerus","Type 11",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","7%","Barnacle counts low due to recruits obscured by glare."
+"2014-07-24_YB-Dq3",2014-07-24,2014-07-24,"YB","D","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","12%",""
+"2014-07-24_YB-Dq4",2014-07-24,2014-07-24,"YB","D","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%",""
+"2014-07-24_YB-Dq5",2014-07-24,2014-07-24,"YB","D","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%","Barnacle counts low due to recruits obscured by glare."
+"2014-07-24_YB-Dq3",2014-07-24,2014-07-24,"YB","D","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","12%",""
+"2014-07-24_YB-Dq4",2014-07-24,2014-07-24,"YB","D","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%",""
+"2014-07-24_YB-Dq5",2014-07-24,2014-07-24,"YB","D","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%","Barnacle counts low due to recruits obscured by glare."
+"2014-07-24_YB-Dq3",2014-07-24,2014-07-24,"YB","D","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","12%",""
+"2014-07-24_YB-Dq4",2014-07-24,2014-07-24,"YB","D","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%",""
+"2014-07-24_YB-Dq5",2014-07-24,2014-07-24,"YB","D","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%","Barnacle counts low due to recruits obscured by glare."
+"2014-07-24_YB-Eq3",2014-07-24,2014-07-24,"YB","E","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Full","25%","counts may be low due to glare and blur"
+"2014-07-24_YB-Eq4",2014-07-24,2014-07-24,"YB","E","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-07-24_YB-Eq8",2014-07-24,2014-07-24,"YB","E","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-07-24_YB-Eq3",2014-07-24,2014-07-24,"YB","E","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Full","25%","counts may be low due to glare and blur"
+"2014-07-24_YB-Eq4",2014-07-24,2014-07-24,"YB","E","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-07-24_YB-Eq8",2014-07-24,2014-07-24,"YB","E","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-07-24_YB-Eq3",2014-07-24,2014-07-24,"YB","E","3","Bg","Balanus_glandula","Type 1",323,0.0875,3691.42857142857,NA,"Stephanie Merhoff","Finished","Cropped","Full","25%","counts may be low due to glare and blur"
+"2014-07-24_YB-Eq4",2014-07-24,2014-07-24,"YB","E","4","Bg","Balanus_glandula","Type 1",80,0.0875,914.285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-07-24_YB-Eq8",2014-07-24,2014-07-24,"YB","E","8","Bg","Balanus_glandula","Type 1",189,0.0875,2160,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-07-24_YB-Eq3",2014-07-24,2014-07-24,"YB","E","3","BgD","Balanus_glandula_(dead)","Type 2",7,0.0875,80,NA,"Stephanie Merhoff","Finished","Cropped","Full","25%","counts may be low due to glare and blur"
+"2014-07-24_YB-Eq4",2014-07-24,2014-07-24,"YB","E","4","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-07-24_YB-Eq8",2014-07-24,2014-07-24,"YB","E","8","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-07-24_YB-Eq3",2014-07-24,2014-07-24,"YB","E","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Full","25%","counts may be low due to glare and blur"
+"2014-07-24_YB-Eq4",2014-07-24,2014-07-24,"YB","E","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-07-24_YB-Eq8",2014-07-24,2014-07-24,"YB","E","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-07-24_YB-Eq3",2014-07-24,2014-07-24,"YB","E","3","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Full","25%","counts may be low due to glare and blur"
+"2014-07-24_YB-Eq4",2014-07-24,2014-07-24,"YB","E","4","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-07-24_YB-Eq8",2014-07-24,2014-07-24,"YB","E","8","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-07-24_YB-Eq3",2014-07-24,2014-07-24,"YB","E","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Full","25%","counts may be low due to glare and blur"
+"2014-07-24_YB-Eq4",2014-07-24,2014-07-24,"YB","E","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-07-24_YB-Eq8",2014-07-24,2014-07-24,"YB","E","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-07-24_YB-Eq3",2014-07-24,2014-07-24,"YB","E","3","Emp","Emplectonema worm","Type 23",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Cropped","Full","25%","counts may be low due to glare and blur"
+"2014-07-24_YB-Eq4",2014-07-24,2014-07-24,"YB","E","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-07-24_YB-Eq8",2014-07-24,2014-07-24,"YB","E","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-07-24_YB-Eq3",2014-07-24,2014-07-24,"YB","E","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Full","25%","counts may be low due to glare and blur"
+"2014-07-24_YB-Eq4",2014-07-24,2014-07-24,"YB","E","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-07-24_YB-Eq8",2014-07-24,2014-07-24,"YB","E","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-07-24_YB-Eq3",2014-07-24,2014-07-24,"YB","E","3","Lim","Limpets","Type 12",17,0.0875,194.285714285714,NA,"Stephanie Merhoff","Finished","Cropped","Full","25%","counts may be low due to glare and blur"
+"2014-07-24_YB-Eq4",2014-07-24,2014-07-24,"YB","E","4","Lim","Limpets","Type 12",4,0.0875,45.7142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-07-24_YB-Eq8",2014-07-24,2014-07-24,"YB","E","8","Lim","Limpets","Type 12",71,0.0875,811.428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-07-24_YB-Eq3",2014-07-24,2014-07-24,"YB","E","3","Ls","Littorina_sitkana","Type 13",124,0.0875,1417.14285714286,NA,"Stephanie Merhoff","Finished","Cropped","Full","25%","counts may be low due to glare and blur"
+"2014-07-24_YB-Eq4",2014-07-24,2014-07-24,"YB","E","4","Ls","Littorina_sitkana","Type 13",21,0.0875,240,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-07-24_YB-Eq8",2014-07-24,2014-07-24,"YB","E","8","Ls","Littorina_sitkana","Type 13",20,0.0875,228.571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-07-24_YB-Eq3",2014-07-24,2014-07-24,"YB","E","3","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Stephanie Merhoff","Finished","Cropped","Full","25%","counts may be low due to glare and blur"
+"2014-07-24_YB-Eq4",2014-07-24,2014-07-24,"YB","E","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-07-24_YB-Eq8",2014-07-24,2014-07-24,"YB","E","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-07-24_YB-Eq3",2014-07-24,2014-07-24,"YB","E","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Stephanie Merhoff","Finished","Cropped","Full","25%","counts may be low due to glare and blur"
+"2014-07-24_YB-Eq4",2014-07-24,2014-07-24,"YB","E","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-07-24_YB-Eq8",2014-07-24,2014-07-24,"YB","E","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-07-24_YB-Eq3",2014-07-24,2014-07-24,"YB","E","3","Myt","Mytilus_spp","Type 7",185,0.015625,11840,"c","Stephanie Merhoff","Finished","Cropped","Full","25%","counts may be low due to glare and blur"
+"2014-07-24_YB-Eq4",2014-07-24,2014-07-24,"YB","E","4","Myt","Mytilus_spp","Type 7",877,0.0875,10022.8571428571,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-07-24_YB-Eq8",2014-07-24,2014-07-24,"YB","E","8","Myt","Mytilus_spp","Type 7",511,0.0875,5840,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-07-24_YB-Eq3",2014-07-24,2014-07-24,"YB","E","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Stephanie Merhoff","Finished","Cropped","Full","25%","counts may be low due to glare and blur"
+"2014-07-24_YB-Eq4",2014-07-24,2014-07-24,"YB","E","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-07-24_YB-Eq8",2014-07-24,2014-07-24,"YB","E","8","MytD","Mytilus_spp_(dead)","Type 8",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-07-24_YB-Eq3",2014-07-24,2014-07-24,"YB","E","3","Mt","Mytilus_trossulus","Type 15",0,0.015625,0,"c","Stephanie Merhoff","Finished","Cropped","Full","25%","counts may be low due to glare and blur"
+"2014-07-24_YB-Eq4",2014-07-24,2014-07-24,"YB","E","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-07-24_YB-Eq8",2014-07-24,2014-07-24,"YB","E","8","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-07-24_YB-Eq3",2014-07-24,2014-07-24,"YB","E","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Stephanie Merhoff","Finished","Cropped","Full","25%","counts may be low due to glare and blur"
+"2014-07-24_YB-Eq4",2014-07-24,2014-07-24,"YB","E","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-07-24_YB-Eq8",2014-07-24,2014-07-24,"YB","E","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-07-24_YB-Eq3",2014-07-24,2014-07-24,"YB","E","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Full","25%","counts may be low due to glare and blur"
+"2014-07-24_YB-Eq4",2014-07-24,2014-07-24,"YB","E","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-07-24_YB-Eq8",2014-07-24,2014-07-24,"YB","E","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-07-24_YB-Eq3",2014-07-24,2014-07-24,"YB","E","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Full","25%","counts may be low due to glare and blur"
+"2014-07-24_YB-Eq4",2014-07-24,2014-07-24,"YB","E","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-07-24_YB-Eq8",2014-07-24,2014-07-24,"YB","E","8","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-07-24_YB-Eq3",2014-07-24,2014-07-24,"YB","E","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Full","25%","counts may be low due to glare and blur"
+"2014-07-24_YB-Eq4",2014-07-24,2014-07-24,"YB","E","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-07-24_YB-Eq8",2014-07-24,2014-07-24,"YB","E","8","Negg","Nucella_eggs","Type 26",79,0.0875,902.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-07-24_YB-Eq3",2014-07-24,2014-07-24,"YB","E","3","No","Nucella_ostrina","Type 9",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Cropped","Full","25%","counts may be low due to glare and blur"
+"2014-07-24_YB-Eq4",2014-07-24,2014-07-24,"YB","E","4","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-07-24_YB-Eq8",2014-07-24,2014-07-24,"YB","E","8","No","Nucella_ostrina","Type 9",26,0.0875,297.142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-07-24_YB-Eq3",2014-07-24,2014-07-24,"YB","E","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Full","25%","counts may be low due to glare and blur"
+"2014-07-24_YB-Eq4",2014-07-24,2014-07-24,"YB","E","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-07-24_YB-Eq8",2014-07-24,2014-07-24,"YB","E","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-07-24_YB-Eq3",2014-07-24,2014-07-24,"YB","E","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Full","25%","counts may be low due to glare and blur"
+"2014-07-24_YB-Eq4",2014-07-24,2014-07-24,"YB","E","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-07-24_YB-Eq8",2014-07-24,2014-07-24,"YB","E","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-07-24_YB-Eq3",2014-07-24,2014-07-24,"YB","E","3","Pp","Pollicipes_polymerus","Type 11",7,0.0875,80,NA,"Stephanie Merhoff","Finished","Cropped","Full","25%","counts may be low due to glare and blur"
+"2014-07-24_YB-Eq4",2014-07-24,2014-07-24,"YB","E","4","Pp","Pollicipes_polymerus","Type 11",7,0.0875,80,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-07-24_YB-Eq8",2014-07-24,2014-07-24,"YB","E","8","Pp","Pollicipes_polymerus","Type 11",14,0.0875,160,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-07-24_YB-Eq3",2014-07-24,2014-07-24,"YB","E","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Full","25%","counts may be low due to glare and blur"
+"2014-07-24_YB-Eq4",2014-07-24,2014-07-24,"YB","E","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-07-24_YB-Eq8",2014-07-24,2014-07-24,"YB","E","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-07-24_YB-Eq3",2014-07-24,2014-07-24,"YB","E","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Full","25%","counts may be low due to glare and blur"
+"2014-07-24_YB-Eq4",2014-07-24,2014-07-24,"YB","E","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-07-24_YB-Eq8",2014-07-24,2014-07-24,"YB","E","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-07-24_YB-Eq3",2014-07-24,2014-07-24,"YB","E","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Full","25%","counts may be low due to glare and blur"
+"2014-07-24_YB-Eq4",2014-07-24,2014-07-24,"YB","E","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-07-24_YB-Eq8",2014-07-24,2014-07-24,"YB","E","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-07-24_YB-Fq4",2014-07-24,2014-07-24,"YB","F","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-07-24_YB-Fq5",2014-07-24,2014-07-24,"YB","F","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","8%",""
+"2014-07-24_YB-Fq6",2014-07-24,2014-07-24,"YB","F","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-07-24_YB-Fq4",2014-07-24,2014-07-24,"YB","F","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-07-24_YB-Fq5",2014-07-24,2014-07-24,"YB","F","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","8%",""
+"2014-07-24_YB-Fq6",2014-07-24,2014-07-24,"YB","F","6","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-07-24_YB-Fq4",2014-07-24,2014-07-24,"YB","F","4","Bg","Balanus_glandula","Type 1",523,0.015625,33472,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-07-24_YB-Fq5",2014-07-24,2014-07-24,"YB","F","5","Bg","Balanus_glandula","Type 1",364,0.015625,23296,"c","Beatriz Vaca","Finished","Cropped","Cropped","8%",""
+"2014-07-24_YB-Fq6",2014-07-24,2014-07-24,"YB","F","6","Bg","Balanus_glandula","Type 1",530,0.015625,33920,"c","Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-07-24_YB-Fq4",2014-07-24,2014-07-24,"YB","F","4","BgD","Balanus_glandula_(dead)","Type 2",4,0.015625,256,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-07-24_YB-Fq5",2014-07-24,2014-07-24,"YB","F","5","BgD","Balanus_glandula_(dead)","Type 2",1,0.015625,64,"c","Beatriz Vaca","Finished","Cropped","Cropped","8%",""
+"2014-07-24_YB-Fq6",2014-07-24,2014-07-24,"YB","F","6","BgD","Balanus_glandula_(dead)","Type 2",4,0.015625,256,"c","Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-07-24_YB-Fq4",2014-07-24,2014-07-24,"YB","F","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-07-24_YB-Fq5",2014-07-24,2014-07-24,"YB","F","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","8%",""
+"2014-07-24_YB-Fq6",2014-07-24,2014-07-24,"YB","F","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-07-24_YB-Fq4",2014-07-24,2014-07-24,"YB","F","4","Cth","Chthamalus_dalli","Type 3",2,0.015625,128,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-07-24_YB-Fq5",2014-07-24,2014-07-24,"YB","F","5","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","8%",""
+"2014-07-24_YB-Fq6",2014-07-24,2014-07-24,"YB","F","6","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-07-24_YB-Fq4",2014-07-24,2014-07-24,"YB","F","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-07-24_YB-Fq5",2014-07-24,2014-07-24,"YB","F","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","8%",""
+"2014-07-24_YB-Fq6",2014-07-24,2014-07-24,"YB","F","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-07-24_YB-Fq4",2014-07-24,2014-07-24,"YB","F","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-07-24_YB-Fq5",2014-07-24,2014-07-24,"YB","F","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","8%",""
+"2014-07-24_YB-Fq6",2014-07-24,2014-07-24,"YB","F","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-07-24_YB-Fq4",2014-07-24,2014-07-24,"YB","F","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-07-24_YB-Fq5",2014-07-24,2014-07-24,"YB","F","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","8%",""
+"2014-07-24_YB-Fq6",2014-07-24,2014-07-24,"YB","F","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-07-24_YB-Fq4",2014-07-24,2014-07-24,"YB","F","4","Lim","Limpets","Type 12",96,0.0875,1097.14285714286,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-07-24_YB-Fq5",2014-07-24,2014-07-24,"YB","F","5","Lim","Limpets","Type 12",49,0.0875,560,NA,"Beatriz Vaca","Finished","Cropped","Cropped","8%",""
+"2014-07-24_YB-Fq6",2014-07-24,2014-07-24,"YB","F","6","Lim","Limpets","Type 12",53,0.0875,605.714285714286,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-07-24_YB-Fq4",2014-07-24,2014-07-24,"YB","F","4","Ls","Littorina_sitkana","Type 13",496,0.0875,5668.57142857143,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-07-24_YB-Fq5",2014-07-24,2014-07-24,"YB","F","5","Ls","Littorina_sitkana","Type 13",498,0.0875,5691.42857142857,NA,"Beatriz Vaca","Finished","Cropped","Cropped","8%",""
+"2014-07-24_YB-Fq6",2014-07-24,2014-07-24,"YB","F","6","Ls","Littorina_sitkana","Type 13",817,0.0875,9337.14285714286,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-07-24_YB-Fq4",2014-07-24,2014-07-24,"YB","F","4","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-07-24_YB-Fq5",2014-07-24,2014-07-24,"YB","F","5","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","8%",""
+"2014-07-24_YB-Fq6",2014-07-24,2014-07-24,"YB","F","6","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-07-24_YB-Fq4",2014-07-24,2014-07-24,"YB","F","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-07-24_YB-Fq5",2014-07-24,2014-07-24,"YB","F","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","8%",""
+"2014-07-24_YB-Fq6",2014-07-24,2014-07-24,"YB","F","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-07-24_YB-Fq4",2014-07-24,2014-07-24,"YB","F","4","Myt","Mytilus_spp","Type 7",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-07-24_YB-Fq5",2014-07-24,2014-07-24,"YB","F","5","Myt","Mytilus_spp","Type 7",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","8%",""
+"2014-07-24_YB-Fq6",2014-07-24,2014-07-24,"YB","F","6","Myt","Mytilus_spp","Type 7",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-07-24_YB-Fq4",2014-07-24,2014-07-24,"YB","F","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-07-24_YB-Fq5",2014-07-24,2014-07-24,"YB","F","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","8%",""
+"2014-07-24_YB-Fq6",2014-07-24,2014-07-24,"YB","F","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-07-24_YB-Fq4",2014-07-24,2014-07-24,"YB","F","4","Mt","Mytilus_trossulus","Type 15",95,0.015625,6080,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-07-24_YB-Fq5",2014-07-24,2014-07-24,"YB","F","5","Mt","Mytilus_trossulus","Type 15",125,0.015625,8000,"c","Beatriz Vaca","Finished","Cropped","Cropped","8%",""
+"2014-07-24_YB-Fq6",2014-07-24,2014-07-24,"YB","F","6","Mt","Mytilus_trossulus","Type 15",90,0.015625,5760,"c","Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-07-24_YB-Fq4",2014-07-24,2014-07-24,"YB","F","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-07-24_YB-Fq5",2014-07-24,2014-07-24,"YB","F","5","MtD","Mytilus_trossulus_(dead)","Type 16",1,0.015625,64,"c","Beatriz Vaca","Finished","Cropped","Cropped","8%",""
+"2014-07-24_YB-Fq6",2014-07-24,2014-07-24,"YB","F","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-07-24_YB-Fq4",2014-07-24,2014-07-24,"YB","F","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-07-24_YB-Fq5",2014-07-24,2014-07-24,"YB","F","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","8%",""
+"2014-07-24_YB-Fq6",2014-07-24,2014-07-24,"YB","F","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-07-24_YB-Fq4",2014-07-24,2014-07-24,"YB","F","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-07-24_YB-Fq5",2014-07-24,2014-07-24,"YB","F","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","8%",""
+"2014-07-24_YB-Fq6",2014-07-24,2014-07-24,"YB","F","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-07-24_YB-Fq4",2014-07-24,2014-07-24,"YB","F","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-07-24_YB-Fq5",2014-07-24,2014-07-24,"YB","F","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","8%",""
+"2014-07-24_YB-Fq6",2014-07-24,2014-07-24,"YB","F","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-07-24_YB-Fq4",2014-07-24,2014-07-24,"YB","F","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-07-24_YB-Fq5",2014-07-24,2014-07-24,"YB","F","5","No","Nucella_ostrina","Type 9",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Cropped","Cropped","8%",""
+"2014-07-24_YB-Fq6",2014-07-24,2014-07-24,"YB","F","6","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-07-24_YB-Fq4",2014-07-24,2014-07-24,"YB","F","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-07-24_YB-Fq5",2014-07-24,2014-07-24,"YB","F","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","8%",""
+"2014-07-24_YB-Fq6",2014-07-24,2014-07-24,"YB","F","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-07-24_YB-Fq4",2014-07-24,2014-07-24,"YB","F","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-07-24_YB-Fq5",2014-07-24,2014-07-24,"YB","F","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","8%",""
+"2014-07-24_YB-Fq6",2014-07-24,2014-07-24,"YB","F","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-07-24_YB-Fq4",2014-07-24,2014-07-24,"YB","F","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-07-24_YB-Fq5",2014-07-24,2014-07-24,"YB","F","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","8%",""
+"2014-07-24_YB-Fq6",2014-07-24,2014-07-24,"YB","F","6","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-07-24_YB-Fq4",2014-07-24,2014-07-24,"YB","F","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-07-24_YB-Fq5",2014-07-24,2014-07-24,"YB","F","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","8%",""
+"2014-07-24_YB-Fq6",2014-07-24,2014-07-24,"YB","F","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-07-24_YB-Fq4",2014-07-24,2014-07-24,"YB","F","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-07-24_YB-Fq5",2014-07-24,2014-07-24,"YB","F","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","8%",""
+"2014-07-24_YB-Fq6",2014-07-24,2014-07-24,"YB","F","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-07-24_YB-Fq4",2014-07-24,2014-07-24,"YB","F","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2014-07-24_YB-Fq5",2014-07-24,2014-07-24,"YB","F","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","8%",""
+"2014-07-24_YB-Fq6",2014-07-24,2014-07-24,"YB","F","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-07-24_YB-Gq3",2014-07-24,2014-07-24,"YB","G","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2014-07-24_YB-Gq5",2014-07-24,2014-07-24,"YB","G","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","5%","Barnacle counts low due to recruits obscured by glare."
+"2014-07-24_YB-Gq8",2014-07-24,2014-07-24,"YB","G","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Full","8%","Counts likely low due to barnacle recruits and glare"
+"2014-07-24_YB-Gq3",2014-07-24,2014-07-24,"YB","G","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2014-07-24_YB-Gq5",2014-07-24,2014-07-24,"YB","G","5","Ae","Anemones","Type 14",9,0.0875,102.857142857143,NA,"Beatriz Vaca","Finished","Cropped","Full","5%","Barnacle counts low due to recruits obscured by glare."
+"2014-07-24_YB-Gq8",2014-07-24,2014-07-24,"YB","G","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Full","8%","Counts likely low due to barnacle recruits and glare"
+"2014-07-24_YB-Gq3",2014-07-24,2014-07-24,"YB","G","3","Bg","Balanus_glandula","Type 1",192,0.0875,2194.28571428571,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2014-07-24_YB-Gq5",2014-07-24,2014-07-24,"YB","G","5","Bg","Balanus_glandula","Type 1",412,0.0875,4708.57142857143,NA,"Beatriz Vaca","Finished","Cropped","Full","5%","Barnacle counts low due to recruits obscured by glare."
+"2014-07-24_YB-Gq8",2014-07-24,2014-07-24,"YB","G","8","Bg","Balanus_glandula","Type 1",3347,0.0875,38251.4285714286,NA,"Stephanie Merhoff","Finished","Cropped","Full","8%","Counts likely low due to barnacle recruits and glare"
+"2014-07-24_YB-Gq3",2014-07-24,2014-07-24,"YB","G","3","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2014-07-24_YB-Gq5",2014-07-24,2014-07-24,"YB","G","5","BgD","Balanus_glandula_(dead)","Type 2",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Cropped","Full","5%","Barnacle counts low due to recruits obscured by glare."
+"2014-07-24_YB-Gq8",2014-07-24,2014-07-24,"YB","G","8","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Full","8%","Counts likely low due to barnacle recruits and glare"
+"2014-07-24_YB-Gq3",2014-07-24,2014-07-24,"YB","G","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2014-07-24_YB-Gq5",2014-07-24,2014-07-24,"YB","G","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","5%","Barnacle counts low due to recruits obscured by glare."
+"2014-07-24_YB-Gq8",2014-07-24,2014-07-24,"YB","G","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Full","8%","Counts likely low due to barnacle recruits and glare"
+"2014-07-24_YB-Gq3",2014-07-24,2014-07-24,"YB","G","3","Cth","Chthamalus_dalli","Type 3",85,0.0875,971.428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2014-07-24_YB-Gq5",2014-07-24,2014-07-24,"YB","G","5","Cth","Chthamalus_dalli","Type 3",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Cropped","Full","5%","Barnacle counts low due to recruits obscured by glare."
+"2014-07-24_YB-Gq8",2014-07-24,2014-07-24,"YB","G","8","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Full","8%","Counts likely low due to barnacle recruits and glare"
+"2014-07-24_YB-Gq3",2014-07-24,2014-07-24,"YB","G","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2014-07-24_YB-Gq5",2014-07-24,2014-07-24,"YB","G","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","5%","Barnacle counts low due to recruits obscured by glare."
+"2014-07-24_YB-Gq8",2014-07-24,2014-07-24,"YB","G","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Full","8%","Counts likely low due to barnacle recruits and glare"
+"2014-07-24_YB-Gq3",2014-07-24,2014-07-24,"YB","G","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2014-07-24_YB-Gq5",2014-07-24,2014-07-24,"YB","G","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","5%","Barnacle counts low due to recruits obscured by glare."
+"2014-07-24_YB-Gq8",2014-07-24,2014-07-24,"YB","G","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Full","8%","Counts likely low due to barnacle recruits and glare"
+"2014-07-24_YB-Gq3",2014-07-24,2014-07-24,"YB","G","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2014-07-24_YB-Gq5",2014-07-24,2014-07-24,"YB","G","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","5%","Barnacle counts low due to recruits obscured by glare."
+"2014-07-24_YB-Gq8",2014-07-24,2014-07-24,"YB","G","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Full","8%","Counts likely low due to barnacle recruits and glare"
+"2014-07-24_YB-Gq3",2014-07-24,2014-07-24,"YB","G","3","Lim","Limpets","Type 12",21,0.0875,240,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2014-07-24_YB-Gq5",2014-07-24,2014-07-24,"YB","G","5","Lim","Limpets","Type 12",152,0.0875,1737.14285714286,NA,"Beatriz Vaca","Finished","Cropped","Full","5%","Barnacle counts low due to recruits obscured by glare."
+"2014-07-24_YB-Gq8",2014-07-24,2014-07-24,"YB","G","8","Lim","Limpets","Type 12",51,0.0875,582.857142857143,NA,"Stephanie Merhoff","Finished","Cropped","Full","8%","Counts likely low due to barnacle recruits and glare"
+"2014-07-24_YB-Gq3",2014-07-24,2014-07-24,"YB","G","3","Ls","Littorina_sitkana","Type 13",48,0.0875,548.571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2014-07-24_YB-Gq5",2014-07-24,2014-07-24,"YB","G","5","Ls","Littorina_sitkana","Type 13",58,0.0875,662.857142857143,NA,"Beatriz Vaca","Finished","Cropped","Full","5%","Barnacle counts low due to recruits obscured by glare."
+"2014-07-24_YB-Gq8",2014-07-24,2014-07-24,"YB","G","8","Ls","Littorina_sitkana","Type 13",112,0.0875,1280,NA,"Stephanie Merhoff","Finished","Cropped","Full","8%","Counts likely low due to barnacle recruits and glare"
+"2014-07-24_YB-Gq3",2014-07-24,2014-07-24,"YB","G","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2014-07-24_YB-Gq5",2014-07-24,2014-07-24,"YB","G","5","Mc","Mytilus_californianus","Type 17",11,0.015625,704,"c","Beatriz Vaca","Finished","Cropped","Full","5%","Barnacle counts low due to recruits obscured by glare."
+"2014-07-24_YB-Gq8",2014-07-24,2014-07-24,"YB","G","8","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Stephanie Merhoff","Finished","Cropped","Full","8%","Counts likely low due to barnacle recruits and glare"
+"2014-07-24_YB-Gq3",2014-07-24,2014-07-24,"YB","G","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2014-07-24_YB-Gq5",2014-07-24,2014-07-24,"YB","G","5","McD","Mytilus_californianus_(dead)","Type 18",1,0.015625,64,"c","Beatriz Vaca","Finished","Cropped","Full","5%","Barnacle counts low due to recruits obscured by glare."
+"2014-07-24_YB-Gq8",2014-07-24,2014-07-24,"YB","G","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Stephanie Merhoff","Finished","Cropped","Full","8%","Counts likely low due to barnacle recruits and glare"
+"2014-07-24_YB-Gq3",2014-07-24,2014-07-24,"YB","G","3","Myt","Mytilus_spp","Type 7",888,0.0875,10148.5714285714,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2014-07-24_YB-Gq5",2014-07-24,2014-07-24,"YB","G","5","Myt","Mytilus_spp","Type 7",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","5%","Barnacle counts low due to recruits obscured by glare."
+"2014-07-24_YB-Gq8",2014-07-24,2014-07-24,"YB","G","8","Myt","Mytilus_spp","Type 7",221,0.015625,14144,"c","Stephanie Merhoff","Finished","Cropped","Full","8%","Counts likely low due to barnacle recruits and glare"
+"2014-07-24_YB-Gq3",2014-07-24,2014-07-24,"YB","G","3","MytD","Mytilus_spp_(dead)","Type 8",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2014-07-24_YB-Gq5",2014-07-24,2014-07-24,"YB","G","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","5%","Barnacle counts low due to recruits obscured by glare."
+"2014-07-24_YB-Gq8",2014-07-24,2014-07-24,"YB","G","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Stephanie Merhoff","Finished","Cropped","Full","8%","Counts likely low due to barnacle recruits and glare"
+"2014-07-24_YB-Gq3",2014-07-24,2014-07-24,"YB","G","3","Mt","Mytilus_trossulus","Type 15",129,0.0875,1474.28571428571,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2014-07-24_YB-Gq5",2014-07-24,2014-07-24,"YB","G","5","Mt","Mytilus_trossulus","Type 15",91,0.015625,5824,"c","Beatriz Vaca","Finished","Cropped","Full","5%","Barnacle counts low due to recruits obscured by glare."
+"2014-07-24_YB-Gq8",2014-07-24,2014-07-24,"YB","G","8","Mt","Mytilus_trossulus","Type 15",27,0.015625,1728,"c","Stephanie Merhoff","Finished","Cropped","Full","8%","Counts likely low due to barnacle recruits and glare"
+"2014-07-24_YB-Gq3",2014-07-24,2014-07-24,"YB","G","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2014-07-24_YB-Gq5",2014-07-24,2014-07-24,"YB","G","5","MtD","Mytilus_trossulus_(dead)","Type 16",5,0.015625,320,"c","Beatriz Vaca","Finished","Cropped","Full","5%","Barnacle counts low due to recruits obscured by glare."
+"2014-07-24_YB-Gq8",2014-07-24,2014-07-24,"YB","G","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Stephanie Merhoff","Finished","Cropped","Full","8%","Counts likely low due to barnacle recruits and glare"
+"2014-07-24_YB-Gq3",2014-07-24,2014-07-24,"YB","G","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2014-07-24_YB-Gq5",2014-07-24,2014-07-24,"YB","G","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","5%","Barnacle counts low due to recruits obscured by glare."
+"2014-07-24_YB-Gq8",2014-07-24,2014-07-24,"YB","G","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Full","8%","Counts likely low due to barnacle recruits and glare"
+"2014-07-24_YB-Gq3",2014-07-24,2014-07-24,"YB","G","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2014-07-24_YB-Gq5",2014-07-24,2014-07-24,"YB","G","5","Nc","Nucella_canaliculata","Type 10",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Cropped","Full","5%","Barnacle counts low due to recruits obscured by glare."
+"2014-07-24_YB-Gq8",2014-07-24,2014-07-24,"YB","G","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Full","8%","Counts likely low due to barnacle recruits and glare"
+"2014-07-24_YB-Gq3",2014-07-24,2014-07-24,"YB","G","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2014-07-24_YB-Gq5",2014-07-24,2014-07-24,"YB","G","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","5%","Barnacle counts low due to recruits obscured by glare."
+"2014-07-24_YB-Gq8",2014-07-24,2014-07-24,"YB","G","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Full","8%","Counts likely low due to barnacle recruits and glare"
+"2014-07-24_YB-Gq3",2014-07-24,2014-07-24,"YB","G","3","No","Nucella_ostrina","Type 9",30,0.0875,342.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2014-07-24_YB-Gq5",2014-07-24,2014-07-24,"YB","G","5","No","Nucella_ostrina","Type 9",50,0.0875,571.428571428571,NA,"Beatriz Vaca","Finished","Cropped","Full","5%","Barnacle counts low due to recruits obscured by glare."
+"2014-07-24_YB-Gq8",2014-07-24,2014-07-24,"YB","G","8","No","Nucella_ostrina","Type 9",34,0.0875,388.571428571429,NA,"Stephanie Merhoff","Finished","Cropped","Full","8%","Counts likely low due to barnacle recruits and glare"
+"2014-07-24_YB-Gq3",2014-07-24,2014-07-24,"YB","G","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2014-07-24_YB-Gq5",2014-07-24,2014-07-24,"YB","G","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","5%","Barnacle counts low due to recruits obscured by glare."
+"2014-07-24_YB-Gq8",2014-07-24,2014-07-24,"YB","G","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Full","8%","Counts likely low due to barnacle recruits and glare"
+"2014-07-24_YB-Gq3",2014-07-24,2014-07-24,"YB","G","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2014-07-24_YB-Gq5",2014-07-24,2014-07-24,"YB","G","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","5%","Barnacle counts low due to recruits obscured by glare."
+"2014-07-24_YB-Gq8",2014-07-24,2014-07-24,"YB","G","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Full","8%","Counts likely low due to barnacle recruits and glare"
+"2014-07-24_YB-Gq3",2014-07-24,2014-07-24,"YB","G","3","Pp","Pollicipes_polymerus","Type 11",14,0.0875,160,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2014-07-24_YB-Gq5",2014-07-24,2014-07-24,"YB","G","5","Pp","Pollicipes_polymerus","Type 11",25,0.0875,285.714285714286,NA,"Beatriz Vaca","Finished","Cropped","Full","5%","Barnacle counts low due to recruits obscured by glare."
+"2014-07-24_YB-Gq8",2014-07-24,2014-07-24,"YB","G","8","Pp","Pollicipes_polymerus","Type 11",6,0.0875,68.5714285714286,NA,"Stephanie Merhoff","Finished","Cropped","Full","8%","Counts likely low due to barnacle recruits and glare"
+"2014-07-24_YB-Gq3",2014-07-24,2014-07-24,"YB","G","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2014-07-24_YB-Gq5",2014-07-24,2014-07-24,"YB","G","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","5%","Barnacle counts low due to recruits obscured by glare."
+"2014-07-24_YB-Gq8",2014-07-24,2014-07-24,"YB","G","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Full","8%","Counts likely low due to barnacle recruits and glare"
+"2014-07-24_YB-Gq3",2014-07-24,2014-07-24,"YB","G","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2014-07-24_YB-Gq5",2014-07-24,2014-07-24,"YB","G","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","5%","Barnacle counts low due to recruits obscured by glare."
+"2014-07-24_YB-Gq8",2014-07-24,2014-07-24,"YB","G","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Full","8%","Counts likely low due to barnacle recruits and glare"
+"2014-07-24_YB-Gq3",2014-07-24,2014-07-24,"YB","G","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2014-07-24_YB-Gq5",2014-07-24,2014-07-24,"YB","G","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","5%","Barnacle counts low due to recruits obscured by glare."
+"2014-07-24_YB-Gq8",2014-07-24,2014-07-24,"YB","G","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Full","8%","Counts likely low due to barnacle recruits and glare"
+"2014-09-07_YB-Aq6",2014-09-07,2014-09-07,"YB","A","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","12%",""
+"2014-09-07_YB-Aq7",2014-09-07,2014-09-07,"YB","A","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-09-07_YB-Aq9",2014-09-07,2014-09-07,"YB","A","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","About half of algae is a thin film."
+"2014-09-07_YB-Aq6",2014-09-07,2014-09-07,"YB","A","6","Ae","Anemones","Type 14",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","12%",""
+"2014-09-07_YB-Aq7",2014-09-07,2014-09-07,"YB","A","7","Ae","Anemones","Type 14",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-09-07_YB-Aq9",2014-09-07,2014-09-07,"YB","A","9","Ae","Anemones","Type 14",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","About half of algae is a thin film."
+"2014-09-07_YB-Aq6",2014-09-07,2014-09-07,"YB","A","6","Bg","Balanus_glandula","Type 1",866,0.015625,55424,"c","Celeste Moen","Finished","Full","Cropped","12%",""
+"2014-09-07_YB-Aq7",2014-09-07,2014-09-07,"YB","A","7","Bg","Balanus_glandula","Type 1",840,0.015625,53760,"c","Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-09-07_YB-Aq9",2014-09-07,2014-09-07,"YB","A","9","Bg","Balanus_glandula","Type 1",978,0.015625,62592,"c","Beatriz Vaca","Finished","Full","Cropped","15%","About half of algae is a thin film."
+"2014-09-07_YB-Aq6",2014-09-07,2014-09-07,"YB","A","6","BgD","Balanus_glandula_(dead)","Type 2",40,0.015625,2560,"c","Celeste Moen","Finished","Full","Cropped","12%",""
+"2014-09-07_YB-Aq7",2014-09-07,2014-09-07,"YB","A","7","BgD","Balanus_glandula_(dead)","Type 2",3,0.015625,192,"c","Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-09-07_YB-Aq9",2014-09-07,2014-09-07,"YB","A","9","BgD","Balanus_glandula_(dead)","Type 2",2,0.015625,128,"c","Beatriz Vaca","Finished","Full","Cropped","15%","About half of algae is a thin film."
+"2014-09-07_YB-Aq6",2014-09-07,2014-09-07,"YB","A","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","12%",""
+"2014-09-07_YB-Aq7",2014-09-07,2014-09-07,"YB","A","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-09-07_YB-Aq9",2014-09-07,2014-09-07,"YB","A","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","About half of algae is a thin film."
+"2014-09-07_YB-Aq6",2014-09-07,2014-09-07,"YB","A","6","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Celeste Moen","Finished","Full","Cropped","12%",""
+"2014-09-07_YB-Aq7",2014-09-07,2014-09-07,"YB","A","7","Cth","Chthamalus_dalli","Type 3",1,0.015625,64,"c","Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-09-07_YB-Aq9",2014-09-07,2014-09-07,"YB","A","9","Cth","Chthamalus_dalli","Type 3",3,0.015625,192,"c","Beatriz Vaca","Finished","Full","Cropped","15%","About half of algae is a thin film."
+"2014-09-07_YB-Aq6",2014-09-07,2014-09-07,"YB","A","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Celeste Moen","Finished","Full","Cropped","12%",""
+"2014-09-07_YB-Aq7",2014-09-07,2014-09-07,"YB","A","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-09-07_YB-Aq9",2014-09-07,2014-09-07,"YB","A","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","15%","About half of algae is a thin film."
+"2014-09-07_YB-Aq6",2014-09-07,2014-09-07,"YB","A","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","12%",""
+"2014-09-07_YB-Aq7",2014-09-07,2014-09-07,"YB","A","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-09-07_YB-Aq9",2014-09-07,2014-09-07,"YB","A","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","About half of algae is a thin film."
+"2014-09-07_YB-Aq6",2014-09-07,2014-09-07,"YB","A","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","12%",""
+"2014-09-07_YB-Aq7",2014-09-07,2014-09-07,"YB","A","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-09-07_YB-Aq9",2014-09-07,2014-09-07,"YB","A","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","About half of algae is a thin film."
+"2014-09-07_YB-Aq6",2014-09-07,2014-09-07,"YB","A","6","Lim","Limpets","Type 12",139,0.0875,1588.57142857143,NA,"Celeste Moen","Finished","Full","Cropped","12%",""
+"2014-09-07_YB-Aq7",2014-09-07,2014-09-07,"YB","A","7","Lim","Limpets","Type 12",159,0.0875,1817.14285714286,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-09-07_YB-Aq9",2014-09-07,2014-09-07,"YB","A","9","Lim","Limpets","Type 12",166,0.0875,1897.14285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","About half of algae is a thin film."
+"2014-09-07_YB-Aq6",2014-09-07,2014-09-07,"YB","A","6","Ls","Littorina_sitkana","Type 13",53,0.0875,605.714285714286,NA,"Celeste Moen","Finished","Full","Cropped","12%",""
+"2014-09-07_YB-Aq7",2014-09-07,2014-09-07,"YB","A","7","Ls","Littorina_sitkana","Type 13",237,0.0875,2708.57142857143,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-09-07_YB-Aq9",2014-09-07,2014-09-07,"YB","A","9","Ls","Littorina_sitkana","Type 13",199,0.0875,2274.28571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","About half of algae is a thin film."
+"2014-09-07_YB-Aq6",2014-09-07,2014-09-07,"YB","A","6","Mc","Mytilus_californianus","Type 17",93,0.0875,1062.85714285714,NA,"Celeste Moen","Finished","Full","Cropped","12%",""
+"2014-09-07_YB-Aq7",2014-09-07,2014-09-07,"YB","A","7","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-09-07_YB-Aq9",2014-09-07,2014-09-07,"YB","A","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","About half of algae is a thin film."
+"2014-09-07_YB-Aq6",2014-09-07,2014-09-07,"YB","A","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","12%",""
+"2014-09-07_YB-Aq7",2014-09-07,2014-09-07,"YB","A","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-09-07_YB-Aq9",2014-09-07,2014-09-07,"YB","A","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","About half of algae is a thin film."
+"2014-09-07_YB-Aq6",2014-09-07,2014-09-07,"YB","A","6","Myt","Mytilus_spp","Type 7",255,0.0875,2914.28571428571,NA,"Celeste Moen","Finished","Full","Cropped","12%",""
+"2014-09-07_YB-Aq7",2014-09-07,2014-09-07,"YB","A","7","Myt","Mytilus_spp","Type 7",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-09-07_YB-Aq9",2014-09-07,2014-09-07,"YB","A","9","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","About half of algae is a thin film."
+"2014-09-07_YB-Aq6",2014-09-07,2014-09-07,"YB","A","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","12%",""
+"2014-09-07_YB-Aq7",2014-09-07,2014-09-07,"YB","A","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-09-07_YB-Aq9",2014-09-07,2014-09-07,"YB","A","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","About half of algae is a thin film."
+"2014-09-07_YB-Aq6",2014-09-07,2014-09-07,"YB","A","6","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","12%",""
+"2014-09-07_YB-Aq7",2014-09-07,2014-09-07,"YB","A","7","Mt","Mytilus_trossulus","Type 15",79,0.015625,5056,"c","Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-09-07_YB-Aq9",2014-09-07,2014-09-07,"YB","A","9","Mt","Mytilus_trossulus","Type 15",405,0.0875,4628.57142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","About half of algae is a thin film."
+"2014-09-07_YB-Aq6",2014-09-07,2014-09-07,"YB","A","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","12%",""
+"2014-09-07_YB-Aq7",2014-09-07,2014-09-07,"YB","A","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-09-07_YB-Aq9",2014-09-07,2014-09-07,"YB","A","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","About half of algae is a thin film."
+"2014-09-07_YB-Aq6",2014-09-07,2014-09-07,"YB","A","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","12%",""
+"2014-09-07_YB-Aq7",2014-09-07,2014-09-07,"YB","A","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-09-07_YB-Aq9",2014-09-07,2014-09-07,"YB","A","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","About half of algae is a thin film."
+"2014-09-07_YB-Aq6",2014-09-07,2014-09-07,"YB","A","6","Nc","Nucella_canaliculata","Type 10",5,0.0875,57.1428571428571,NA,"Celeste Moen","Finished","Full","Cropped","12%",""
+"2014-09-07_YB-Aq7",2014-09-07,2014-09-07,"YB","A","7","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-09-07_YB-Aq9",2014-09-07,2014-09-07,"YB","A","9","Nc","Nucella_canaliculata","Type 10",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","About half of algae is a thin film."
+"2014-09-07_YB-Aq6",2014-09-07,2014-09-07,"YB","A","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","12%",""
+"2014-09-07_YB-Aq7",2014-09-07,2014-09-07,"YB","A","7","Negg","Nucella_eggs","Type 26",10,0.0875,114.285714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-09-07_YB-Aq9",2014-09-07,2014-09-07,"YB","A","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","About half of algae is a thin film."
+"2014-09-07_YB-Aq6",2014-09-07,2014-09-07,"YB","A","6","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","12%",""
+"2014-09-07_YB-Aq7",2014-09-07,2014-09-07,"YB","A","7","No","Nucella_ostrina","Type 9",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-09-07_YB-Aq9",2014-09-07,2014-09-07,"YB","A","9","No","Nucella_ostrina","Type 9",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","About half of algae is a thin film."
+"2014-09-07_YB-Aq6",2014-09-07,2014-09-07,"YB","A","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","12%",""
+"2014-09-07_YB-Aq7",2014-09-07,2014-09-07,"YB","A","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-09-07_YB-Aq9",2014-09-07,2014-09-07,"YB","A","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","About half of algae is a thin film."
+"2014-09-07_YB-Aq6",2014-09-07,2014-09-07,"YB","A","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","12%",""
+"2014-09-07_YB-Aq7",2014-09-07,2014-09-07,"YB","A","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-09-07_YB-Aq9",2014-09-07,2014-09-07,"YB","A","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","About half of algae is a thin film."
+"2014-09-07_YB-Aq6",2014-09-07,2014-09-07,"YB","A","6","Pp","Pollicipes_polymerus","Type 11",2,0.0875,22.8571428571429,NA,"Celeste Moen","Finished","Full","Cropped","12%",""
+"2014-09-07_YB-Aq7",2014-09-07,2014-09-07,"YB","A","7","Pp","Pollicipes_polymerus","Type 11",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-09-07_YB-Aq9",2014-09-07,2014-09-07,"YB","A","9","Pp","Pollicipes_polymerus","Type 11",9,0.0875,102.857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","About half of algae is a thin film."
+"2014-09-07_YB-Aq6",2014-09-07,2014-09-07,"YB","A","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","12%",""
+"2014-09-07_YB-Aq7",2014-09-07,2014-09-07,"YB","A","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-09-07_YB-Aq9",2014-09-07,2014-09-07,"YB","A","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","About half of algae is a thin film."
+"2014-09-07_YB-Aq6",2014-09-07,2014-09-07,"YB","A","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","12%",""
+"2014-09-07_YB-Aq7",2014-09-07,2014-09-07,"YB","A","7","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-09-07_YB-Aq9",2014-09-07,2014-09-07,"YB","A","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","About half of algae is a thin film."
+"2014-09-07_YB-Aq6",2014-09-07,2014-09-07,"YB","A","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","12%",""
+"2014-09-07_YB-Aq7",2014-09-07,2014-09-07,"YB","A","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-09-07_YB-Aq9",2014-09-07,2014-09-07,"YB","A","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","About half of algae is a thin film."
+"2014-09-07_YB-ABq1",2014-09-07,2014-09-07,"YB","AB","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts likely low due to heavy algae cover"
+"2014-09-07_YB-ABq2",2014-09-07,2014-09-07,"YB","AB","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","85%","Counts likely low due algae cover."
+"2014-09-07_YB-ABq4",2014-09-07,2014-09-07,"YB","AB","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to algae and glare."
+"2014-09-07_YB-ABq1",2014-09-07,2014-09-07,"YB","AB","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts likely low due to heavy algae cover"
+"2014-09-07_YB-ABq2",2014-09-07,2014-09-07,"YB","AB","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","85%","Counts likely low due algae cover."
+"2014-09-07_YB-ABq4",2014-09-07,2014-09-07,"YB","AB","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to algae and glare."
+"2014-09-07_YB-ABq1",2014-09-07,2014-09-07,"YB","AB","1","Bg","Balanus_glandula","Type 1",599,0.015625,38336,"c","Beatriz Vaca","Finished","Full","Cropped","60%","Counts likely low due to heavy algae cover"
+"2014-09-07_YB-ABq2",2014-09-07,2014-09-07,"YB","AB","2","Bg","Balanus_glandula","Type 1",193,0.0875,2205.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","85%","Counts likely low due algae cover."
+"2014-09-07_YB-ABq4",2014-09-07,2014-09-07,"YB","AB","4","Bg","Balanus_glandula","Type 1",1586,0.0875,18125.7142857143,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to algae and glare."
+"2014-09-07_YB-ABq1",2014-09-07,2014-09-07,"YB","AB","1","BgD","Balanus_glandula_(dead)","Type 2",2,0.015625,128,"c","Beatriz Vaca","Finished","Full","Cropped","60%","Counts likely low due to heavy algae cover"
+"2014-09-07_YB-ABq2",2014-09-07,2014-09-07,"YB","AB","2","BgD","Balanus_glandula_(dead)","Type 2",10,0.0875,114.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","85%","Counts likely low due algae cover."
+"2014-09-07_YB-ABq4",2014-09-07,2014-09-07,"YB","AB","4","BgD","Balanus_glandula_(dead)","Type 2",18,0.0875,205.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to algae and glare."
+"2014-09-07_YB-ABq1",2014-09-07,2014-09-07,"YB","AB","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts likely low due to heavy algae cover"
+"2014-09-07_YB-ABq2",2014-09-07,2014-09-07,"YB","AB","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","85%","Counts likely low due algae cover."
+"2014-09-07_YB-ABq4",2014-09-07,2014-09-07,"YB","AB","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to algae and glare."
+"2014-09-07_YB-ABq1",2014-09-07,2014-09-07,"YB","AB","1","Cth","Chthamalus_dalli","Type 3",4,0.015625,256,"c","Beatriz Vaca","Finished","Full","Cropped","60%","Counts likely low due to heavy algae cover"
+"2014-09-07_YB-ABq2",2014-09-07,2014-09-07,"YB","AB","2","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","85%","Counts likely low due algae cover."
+"2014-09-07_YB-ABq4",2014-09-07,2014-09-07,"YB","AB","4","Cth","Chthamalus_dalli","Type 3",220,0.0875,2514.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to algae and glare."
+"2014-09-07_YB-ABq1",2014-09-07,2014-09-07,"YB","AB","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","60%","Counts likely low due to heavy algae cover"
+"2014-09-07_YB-ABq2",2014-09-07,2014-09-07,"YB","AB","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","85%","Counts likely low due algae cover."
+"2014-09-07_YB-ABq4",2014-09-07,2014-09-07,"YB","AB","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to algae and glare."
+"2014-09-07_YB-ABq1",2014-09-07,2014-09-07,"YB","AB","1","Emp","Emplectonema worm","Type 23",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts likely low due to heavy algae cover"
+"2014-09-07_YB-ABq2",2014-09-07,2014-09-07,"YB","AB","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","85%","Counts likely low due algae cover."
+"2014-09-07_YB-ABq4",2014-09-07,2014-09-07,"YB","AB","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to algae and glare."
+"2014-09-07_YB-ABq1",2014-09-07,2014-09-07,"YB","AB","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts likely low due to heavy algae cover"
+"2014-09-07_YB-ABq2",2014-09-07,2014-09-07,"YB","AB","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","85%","Counts likely low due algae cover."
+"2014-09-07_YB-ABq4",2014-09-07,2014-09-07,"YB","AB","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to algae and glare."
+"2014-09-07_YB-ABq1",2014-09-07,2014-09-07,"YB","AB","1","Lim","Limpets","Type 12",16,0.0875,182.857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts likely low due to heavy algae cover"
+"2014-09-07_YB-ABq2",2014-09-07,2014-09-07,"YB","AB","2","Lim","Limpets","Type 12",71,0.0875,811.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","85%","Counts likely low due algae cover."
+"2014-09-07_YB-ABq4",2014-09-07,2014-09-07,"YB","AB","4","Lim","Limpets","Type 12",139,0.0875,1588.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to algae and glare."
+"2014-09-07_YB-ABq1",2014-09-07,2014-09-07,"YB","AB","1","Ls","Littorina_sitkana","Type 13",127,0.0875,1451.42857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts likely low due to heavy algae cover"
+"2014-09-07_YB-ABq2",2014-09-07,2014-09-07,"YB","AB","2","Ls","Littorina_sitkana","Type 13",60,0.0875,685.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","85%","Counts likely low due algae cover."
+"2014-09-07_YB-ABq4",2014-09-07,2014-09-07,"YB","AB","4","Ls","Littorina_sitkana","Type 13",210,0.0875,2400,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to algae and glare."
+"2014-09-07_YB-ABq1",2014-09-07,2014-09-07,"YB","AB","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts likely low due to heavy algae cover"
+"2014-09-07_YB-ABq2",2014-09-07,2014-09-07,"YB","AB","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","85%","Counts likely low due algae cover."
+"2014-09-07_YB-ABq4",2014-09-07,2014-09-07,"YB","AB","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to algae and glare."
+"2014-09-07_YB-ABq1",2014-09-07,2014-09-07,"YB","AB","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts likely low due to heavy algae cover"
+"2014-09-07_YB-ABq2",2014-09-07,2014-09-07,"YB","AB","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","85%","Counts likely low due algae cover."
+"2014-09-07_YB-ABq4",2014-09-07,2014-09-07,"YB","AB","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to algae and glare."
+"2014-09-07_YB-ABq1",2014-09-07,2014-09-07,"YB","AB","1","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts likely low due to heavy algae cover"
+"2014-09-07_YB-ABq2",2014-09-07,2014-09-07,"YB","AB","2","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","85%","Counts likely low due algae cover."
+"2014-09-07_YB-ABq4",2014-09-07,2014-09-07,"YB","AB","4","Myt","Mytilus_spp","Type 7",17,0.0875,194.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to algae and glare."
+"2014-09-07_YB-ABq1",2014-09-07,2014-09-07,"YB","AB","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts likely low due to heavy algae cover"
+"2014-09-07_YB-ABq2",2014-09-07,2014-09-07,"YB","AB","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","85%","Counts likely low due algae cover."
+"2014-09-07_YB-ABq4",2014-09-07,2014-09-07,"YB","AB","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to algae and glare."
+"2014-09-07_YB-ABq1",2014-09-07,2014-09-07,"YB","AB","1","Mt","Mytilus_trossulus","Type 15",9,0.0875,102.857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts likely low due to heavy algae cover"
+"2014-09-07_YB-ABq2",2014-09-07,2014-09-07,"YB","AB","2","Mt","Mytilus_trossulus","Type 15",101,0.0875,1154.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","85%","Counts likely low due algae cover."
+"2014-09-07_YB-ABq4",2014-09-07,2014-09-07,"YB","AB","4","Mt","Mytilus_trossulus","Type 15",290,0.0875,3314.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to algae and glare."
+"2014-09-07_YB-ABq1",2014-09-07,2014-09-07,"YB","AB","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts likely low due to heavy algae cover"
+"2014-09-07_YB-ABq2",2014-09-07,2014-09-07,"YB","AB","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","85%","Counts likely low due algae cover."
+"2014-09-07_YB-ABq4",2014-09-07,2014-09-07,"YB","AB","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to algae and glare."
+"2014-09-07_YB-ABq1",2014-09-07,2014-09-07,"YB","AB","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts likely low due to heavy algae cover"
+"2014-09-07_YB-ABq2",2014-09-07,2014-09-07,"YB","AB","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","85%","Counts likely low due algae cover."
+"2014-09-07_YB-ABq4",2014-09-07,2014-09-07,"YB","AB","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to algae and glare."
+"2014-09-07_YB-ABq1",2014-09-07,2014-09-07,"YB","AB","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts likely low due to heavy algae cover"
+"2014-09-07_YB-ABq2",2014-09-07,2014-09-07,"YB","AB","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","85%","Counts likely low due algae cover."
+"2014-09-07_YB-ABq4",2014-09-07,2014-09-07,"YB","AB","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to algae and glare."
+"2014-09-07_YB-ABq1",2014-09-07,2014-09-07,"YB","AB","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts likely low due to heavy algae cover"
+"2014-09-07_YB-ABq2",2014-09-07,2014-09-07,"YB","AB","2","Negg","Nucella_eggs","Type 26",17,0.0875,194.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","85%","Counts likely low due algae cover."
+"2014-09-07_YB-ABq4",2014-09-07,2014-09-07,"YB","AB","4","Negg","Nucella_eggs","Type 26",13,0.0875,148.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to algae and glare."
+"2014-09-07_YB-ABq1",2014-09-07,2014-09-07,"YB","AB","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts likely low due to heavy algae cover"
+"2014-09-07_YB-ABq2",2014-09-07,2014-09-07,"YB","AB","2","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","85%","Counts likely low due algae cover."
+"2014-09-07_YB-ABq4",2014-09-07,2014-09-07,"YB","AB","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to algae and glare."
+"2014-09-07_YB-ABq1",2014-09-07,2014-09-07,"YB","AB","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts likely low due to heavy algae cover"
+"2014-09-07_YB-ABq2",2014-09-07,2014-09-07,"YB","AB","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","85%","Counts likely low due algae cover."
+"2014-09-07_YB-ABq4",2014-09-07,2014-09-07,"YB","AB","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to algae and glare."
+"2014-09-07_YB-ABq1",2014-09-07,2014-09-07,"YB","AB","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts likely low due to heavy algae cover"
+"2014-09-07_YB-ABq2",2014-09-07,2014-09-07,"YB","AB","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","85%","Counts likely low due algae cover."
+"2014-09-07_YB-ABq4",2014-09-07,2014-09-07,"YB","AB","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to algae and glare."
+"2014-09-07_YB-ABq1",2014-09-07,2014-09-07,"YB","AB","1","Pp","Pollicipes_polymerus","Type 11",85,0.0875,971.428571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts likely low due to heavy algae cover"
+"2014-09-07_YB-ABq2",2014-09-07,2014-09-07,"YB","AB","2","Pp","Pollicipes_polymerus","Type 11",34,0.0875,388.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","85%","Counts likely low due algae cover."
+"2014-09-07_YB-ABq4",2014-09-07,2014-09-07,"YB","AB","4","Pp","Pollicipes_polymerus","Type 11",50,0.0875,571.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to algae and glare."
+"2014-09-07_YB-ABq1",2014-09-07,2014-09-07,"YB","AB","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts likely low due to heavy algae cover"
+"2014-09-07_YB-ABq2",2014-09-07,2014-09-07,"YB","AB","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","85%","Counts likely low due algae cover."
+"2014-09-07_YB-ABq4",2014-09-07,2014-09-07,"YB","AB","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to algae and glare."
+"2014-09-07_YB-ABq1",2014-09-07,2014-09-07,"YB","AB","1","Sc","Semibalanus_cariosus","Type 5",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts likely low due to heavy algae cover"
+"2014-09-07_YB-ABq2",2014-09-07,2014-09-07,"YB","AB","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","85%","Counts likely low due algae cover."
+"2014-09-07_YB-ABq4",2014-09-07,2014-09-07,"YB","AB","4","Sc","Semibalanus_cariosus","Type 5",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to algae and glare."
+"2014-09-07_YB-ABq1",2014-09-07,2014-09-07,"YB","AB","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts likely low due to heavy algae cover"
+"2014-09-07_YB-ABq2",2014-09-07,2014-09-07,"YB","AB","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","85%","Counts likely low due algae cover."
+"2014-09-07_YB-ABq4",2014-09-07,2014-09-07,"YB","AB","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to algae and glare."
+"2014-09-07_YB-ACq4",2014-09-07,2014-09-07,"YB","AC","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Counts likely low due to glare."
+"2014-09-07_YB-ACq7",2014-09-07,2014-09-07,"YB","AC","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Mussel, littorine, and limpet counts likely low due to algae cover and glare."
+"2014-09-07_YB-ACq8",2014-09-07,2014-09-07,"YB","AC","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-ACq4",2014-09-07,2014-09-07,"YB","AC","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Counts likely low due to glare."
+"2014-09-07_YB-ACq7",2014-09-07,2014-09-07,"YB","AC","7","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Mussel, littorine, and limpet counts likely low due to algae cover and glare."
+"2014-09-07_YB-ACq8",2014-09-07,2014-09-07,"YB","AC","8","Ae","Anemones","Type 14",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-ACq4",2014-09-07,2014-09-07,"YB","AC","4","Bg","Balanus_glandula","Type 1",1349,0.015625,86336,"c","Beatriz Vaca","Finished","Full","Cropped","30%","Counts likely low due to glare."
+"2014-09-07_YB-ACq7",2014-09-07,2014-09-07,"YB","AC","7","Bg","Balanus_glandula","Type 1",1119,0.015625,71616,"c","Beatriz Vaca","Finished","Full","Cropped","50%","Mussel, littorine, and limpet counts likely low due to algae cover and glare."
+"2014-09-07_YB-ACq8",2014-09-07,2014-09-07,"YB","AC","8","Bg","Balanus_glandula","Type 1",3826,0.0875,43725.7142857143,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-ACq4",2014-09-07,2014-09-07,"YB","AC","4","BgD","Balanus_glandula_(dead)","Type 2",2,0.015625,128,"c","Beatriz Vaca","Finished","Full","Cropped","30%","Counts likely low due to glare."
+"2014-09-07_YB-ACq7",2014-09-07,2014-09-07,"YB","AC","7","BgD","Balanus_glandula_(dead)","Type 2",2,0.015625,128,"c","Beatriz Vaca","Finished","Full","Cropped","50%","Mussel, littorine, and limpet counts likely low due to algae cover and glare."
+"2014-09-07_YB-ACq8",2014-09-07,2014-09-07,"YB","AC","8","BgD","Balanus_glandula_(dead)","Type 2",36,0.0875,411.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-ACq4",2014-09-07,2014-09-07,"YB","AC","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Counts likely low due to glare."
+"2014-09-07_YB-ACq7",2014-09-07,2014-09-07,"YB","AC","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Mussel, littorine, and limpet counts likely low due to algae cover and glare."
+"2014-09-07_YB-ACq8",2014-09-07,2014-09-07,"YB","AC","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-ACq4",2014-09-07,2014-09-07,"YB","AC","4","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","30%","Counts likely low due to glare."
+"2014-09-07_YB-ACq7",2014-09-07,2014-09-07,"YB","AC","7","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","50%","Mussel, littorine, and limpet counts likely low due to algae cover and glare."
+"2014-09-07_YB-ACq8",2014-09-07,2014-09-07,"YB","AC","8","Cth","Chthamalus_dalli","Type 3",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-ACq4",2014-09-07,2014-09-07,"YB","AC","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","30%","Counts likely low due to glare."
+"2014-09-07_YB-ACq7",2014-09-07,2014-09-07,"YB","AC","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","50%","Mussel, littorine, and limpet counts likely low due to algae cover and glare."
+"2014-09-07_YB-ACq8",2014-09-07,2014-09-07,"YB","AC","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-ACq4",2014-09-07,2014-09-07,"YB","AC","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Counts likely low due to glare."
+"2014-09-07_YB-ACq7",2014-09-07,2014-09-07,"YB","AC","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Mussel, littorine, and limpet counts likely low due to algae cover and glare."
+"2014-09-07_YB-ACq8",2014-09-07,2014-09-07,"YB","AC","8","Emp","Emplectonema worm","Type 23",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-ACq4",2014-09-07,2014-09-07,"YB","AC","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Counts likely low due to glare."
+"2014-09-07_YB-ACq7",2014-09-07,2014-09-07,"YB","AC","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Mussel, littorine, and limpet counts likely low due to algae cover and glare."
+"2014-09-07_YB-ACq8",2014-09-07,2014-09-07,"YB","AC","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-ACq4",2014-09-07,2014-09-07,"YB","AC","4","Lim","Limpets","Type 12",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Counts likely low due to glare."
+"2014-09-07_YB-ACq7",2014-09-07,2014-09-07,"YB","AC","7","Lim","Limpets","Type 12",16,0.0875,182.857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Mussel, littorine, and limpet counts likely low due to algae cover and glare."
+"2014-09-07_YB-ACq8",2014-09-07,2014-09-07,"YB","AC","8","Lim","Limpets","Type 12",17,0.0875,194.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-ACq4",2014-09-07,2014-09-07,"YB","AC","4","Ls","Littorina_sitkana","Type 13",317,0.0875,3622.85714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Counts likely low due to glare."
+"2014-09-07_YB-ACq7",2014-09-07,2014-09-07,"YB","AC","7","Ls","Littorina_sitkana","Type 13",321,0.0875,3668.57142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Mussel, littorine, and limpet counts likely low due to algae cover and glare."
+"2014-09-07_YB-ACq8",2014-09-07,2014-09-07,"YB","AC","8","Ls","Littorina_sitkana","Type 13",476,0.0875,5440,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-ACq4",2014-09-07,2014-09-07,"YB","AC","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Counts likely low due to glare."
+"2014-09-07_YB-ACq7",2014-09-07,2014-09-07,"YB","AC","7","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Mussel, littorine, and limpet counts likely low due to algae cover and glare."
+"2014-09-07_YB-ACq8",2014-09-07,2014-09-07,"YB","AC","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-ACq4",2014-09-07,2014-09-07,"YB","AC","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Counts likely low due to glare."
+"2014-09-07_YB-ACq7",2014-09-07,2014-09-07,"YB","AC","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Mussel, littorine, and limpet counts likely low due to algae cover and glare."
+"2014-09-07_YB-ACq8",2014-09-07,2014-09-07,"YB","AC","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-ACq4",2014-09-07,2014-09-07,"YB","AC","4","Myt","Mytilus_spp","Type 7",72,0.0875,822.857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Counts likely low due to glare."
+"2014-09-07_YB-ACq7",2014-09-07,2014-09-07,"YB","AC","7","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Mussel, littorine, and limpet counts likely low due to algae cover and glare."
+"2014-09-07_YB-ACq8",2014-09-07,2014-09-07,"YB","AC","8","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-ACq4",2014-09-07,2014-09-07,"YB","AC","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Counts likely low due to glare."
+"2014-09-07_YB-ACq7",2014-09-07,2014-09-07,"YB","AC","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Mussel, littorine, and limpet counts likely low due to algae cover and glare."
+"2014-09-07_YB-ACq8",2014-09-07,2014-09-07,"YB","AC","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-ACq4",2014-09-07,2014-09-07,"YB","AC","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Counts likely low due to glare."
+"2014-09-07_YB-ACq7",2014-09-07,2014-09-07,"YB","AC","7","Mt","Mytilus_trossulus","Type 15",79,0.0875,902.857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Mussel, littorine, and limpet counts likely low due to algae cover and glare."
+"2014-09-07_YB-ACq8",2014-09-07,2014-09-07,"YB","AC","8","Mt","Mytilus_trossulus","Type 15",59,0.0875,674.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-ACq4",2014-09-07,2014-09-07,"YB","AC","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Counts likely low due to glare."
+"2014-09-07_YB-ACq7",2014-09-07,2014-09-07,"YB","AC","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Mussel, littorine, and limpet counts likely low due to algae cover and glare."
+"2014-09-07_YB-ACq8",2014-09-07,2014-09-07,"YB","AC","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-ACq4",2014-09-07,2014-09-07,"YB","AC","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Counts likely low due to glare."
+"2014-09-07_YB-ACq7",2014-09-07,2014-09-07,"YB","AC","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Mussel, littorine, and limpet counts likely low due to algae cover and glare."
+"2014-09-07_YB-ACq8",2014-09-07,2014-09-07,"YB","AC","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-ACq4",2014-09-07,2014-09-07,"YB","AC","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Counts likely low due to glare."
+"2014-09-07_YB-ACq7",2014-09-07,2014-09-07,"YB","AC","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Mussel, littorine, and limpet counts likely low due to algae cover and glare."
+"2014-09-07_YB-ACq8",2014-09-07,2014-09-07,"YB","AC","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-ACq4",2014-09-07,2014-09-07,"YB","AC","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Counts likely low due to glare."
+"2014-09-07_YB-ACq7",2014-09-07,2014-09-07,"YB","AC","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Mussel, littorine, and limpet counts likely low due to algae cover and glare."
+"2014-09-07_YB-ACq8",2014-09-07,2014-09-07,"YB","AC","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-ACq4",2014-09-07,2014-09-07,"YB","AC","4","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Counts likely low due to glare."
+"2014-09-07_YB-ACq7",2014-09-07,2014-09-07,"YB","AC","7","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Mussel, littorine, and limpet counts likely low due to algae cover and glare."
+"2014-09-07_YB-ACq8",2014-09-07,2014-09-07,"YB","AC","8","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-ACq4",2014-09-07,2014-09-07,"YB","AC","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Counts likely low due to glare."
+"2014-09-07_YB-ACq7",2014-09-07,2014-09-07,"YB","AC","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Mussel, littorine, and limpet counts likely low due to algae cover and glare."
+"2014-09-07_YB-ACq8",2014-09-07,2014-09-07,"YB","AC","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-ACq4",2014-09-07,2014-09-07,"YB","AC","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Counts likely low due to glare."
+"2014-09-07_YB-ACq7",2014-09-07,2014-09-07,"YB","AC","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Mussel, littorine, and limpet counts likely low due to algae cover and glare."
+"2014-09-07_YB-ACq8",2014-09-07,2014-09-07,"YB","AC","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-ACq4",2014-09-07,2014-09-07,"YB","AC","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Counts likely low due to glare."
+"2014-09-07_YB-ACq7",2014-09-07,2014-09-07,"YB","AC","7","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Mussel, littorine, and limpet counts likely low due to algae cover and glare."
+"2014-09-07_YB-ACq8",2014-09-07,2014-09-07,"YB","AC","8","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-ACq4",2014-09-07,2014-09-07,"YB","AC","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Counts likely low due to glare."
+"2014-09-07_YB-ACq7",2014-09-07,2014-09-07,"YB","AC","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Mussel, littorine, and limpet counts likely low due to algae cover and glare."
+"2014-09-07_YB-ACq8",2014-09-07,2014-09-07,"YB","AC","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-ACq4",2014-09-07,2014-09-07,"YB","AC","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Counts likely low due to glare."
+"2014-09-07_YB-ACq7",2014-09-07,2014-09-07,"YB","AC","7","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Mussel, littorine, and limpet counts likely low due to algae cover and glare."
+"2014-09-07_YB-ACq8",2014-09-07,2014-09-07,"YB","AC","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-ACq4",2014-09-07,2014-09-07,"YB","AC","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Counts likely low due to glare."
+"2014-09-07_YB-ACq7",2014-09-07,2014-09-07,"YB","AC","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Mussel, littorine, and limpet counts likely low due to algae cover and glare."
+"2014-09-07_YB-ACq8",2014-09-07,2014-09-07,"YB","AC","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-ADq1",2014-09-07,2014-09-07,"YB","AD","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-ADq5",2014-09-07,2014-09-07,"YB","AD","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-ADq8",2014-09-07,2014-09-07,"YB","AD","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","35%","Counts likely low due to algae and glare."
+"2014-09-07_YB-ADq1",2014-09-07,2014-09-07,"YB","AD","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-ADq5",2014-09-07,2014-09-07,"YB","AD","5","Ae","Anemones","Type 14",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-ADq8",2014-09-07,2014-09-07,"YB","AD","8","Ae","Anemones","Type 14",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","35%","Counts likely low due to algae and glare."
+"2014-09-07_YB-ADq1",2014-09-07,2014-09-07,"YB","AD","1","Bg","Balanus_glandula","Type 1",634,0.0875,7245.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-ADq5",2014-09-07,2014-09-07,"YB","AD","5","Bg","Balanus_glandula","Type 1",232,0.0875,2651.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-ADq8",2014-09-07,2014-09-07,"YB","AD","8","Bg","Balanus_glandula","Type 1",895,0.015625,57280,"c","Beatriz Vaca","Finished","Full","Cropped","35%","Counts likely low due to algae and glare."
+"2014-09-07_YB-ADq1",2014-09-07,2014-09-07,"YB","AD","1","BgD","Balanus_glandula_(dead)","Type 2",28,0.0875,320,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-ADq5",2014-09-07,2014-09-07,"YB","AD","5","BgD","Balanus_glandula_(dead)","Type 2",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-ADq8",2014-09-07,2014-09-07,"YB","AD","8","BgD","Balanus_glandula_(dead)","Type 2",1,0.015625,64,"c","Beatriz Vaca","Finished","Full","Cropped","35%","Counts likely low due to algae and glare."
+"2014-09-07_YB-ADq1",2014-09-07,2014-09-07,"YB","AD","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-ADq5",2014-09-07,2014-09-07,"YB","AD","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-ADq8",2014-09-07,2014-09-07,"YB","AD","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","35%","Counts likely low due to algae and glare."
+"2014-09-07_YB-ADq1",2014-09-07,2014-09-07,"YB","AD","1","Cth","Chthamalus_dalli","Type 3",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-ADq5",2014-09-07,2014-09-07,"YB","AD","5","Cth","Chthamalus_dalli","Type 3",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-ADq8",2014-09-07,2014-09-07,"YB","AD","8","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","35%","Counts likely low due to algae and glare."
+"2014-09-07_YB-ADq1",2014-09-07,2014-09-07,"YB","AD","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-ADq5",2014-09-07,2014-09-07,"YB","AD","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-ADq8",2014-09-07,2014-09-07,"YB","AD","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","35%","Counts likely low due to algae and glare."
+"2014-09-07_YB-ADq1",2014-09-07,2014-09-07,"YB","AD","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-ADq5",2014-09-07,2014-09-07,"YB","AD","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-ADq8",2014-09-07,2014-09-07,"YB","AD","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","35%","Counts likely low due to algae and glare."
+"2014-09-07_YB-ADq1",2014-09-07,2014-09-07,"YB","AD","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-ADq5",2014-09-07,2014-09-07,"YB","AD","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-ADq8",2014-09-07,2014-09-07,"YB","AD","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","35%","Counts likely low due to algae and glare."
+"2014-09-07_YB-ADq1",2014-09-07,2014-09-07,"YB","AD","1","Lim","Limpets","Type 12",123,0.0875,1405.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-ADq5",2014-09-07,2014-09-07,"YB","AD","5","Lim","Limpets","Type 12",38,0.0875,434.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-ADq8",2014-09-07,2014-09-07,"YB","AD","8","Lim","Limpets","Type 12",478,0.0875,5462.85714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","35%","Counts likely low due to algae and glare."
+"2014-09-07_YB-ADq1",2014-09-07,2014-09-07,"YB","AD","1","Ls","Littorina_sitkana","Type 13",144,0.0875,1645.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-ADq5",2014-09-07,2014-09-07,"YB","AD","5","Ls","Littorina_sitkana","Type 13",86,0.0875,982.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-ADq8",2014-09-07,2014-09-07,"YB","AD","8","Ls","Littorina_sitkana","Type 13",527,0.0875,6022.85714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","35%","Counts likely low due to algae and glare."
+"2014-09-07_YB-ADq1",2014-09-07,2014-09-07,"YB","AD","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-ADq5",2014-09-07,2014-09-07,"YB","AD","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-ADq8",2014-09-07,2014-09-07,"YB","AD","8","Mc","Mytilus_californianus","Type 17",10,0.0875,114.285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","35%","Counts likely low due to algae and glare."
+"2014-09-07_YB-ADq1",2014-09-07,2014-09-07,"YB","AD","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-ADq5",2014-09-07,2014-09-07,"YB","AD","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-ADq8",2014-09-07,2014-09-07,"YB","AD","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","35%","Counts likely low due to algae and glare."
+"2014-09-07_YB-ADq1",2014-09-07,2014-09-07,"YB","AD","1","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-ADq5",2014-09-07,2014-09-07,"YB","AD","5","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-ADq8",2014-09-07,2014-09-07,"YB","AD","8","Myt","Mytilus_spp","Type 7",304,0.0875,3474.28571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","35%","Counts likely low due to algae and glare."
+"2014-09-07_YB-ADq1",2014-09-07,2014-09-07,"YB","AD","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-ADq5",2014-09-07,2014-09-07,"YB","AD","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-ADq8",2014-09-07,2014-09-07,"YB","AD","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","35%","Counts likely low due to algae and glare."
+"2014-09-07_YB-ADq1",2014-09-07,2014-09-07,"YB","AD","1","Mt","Mytilus_trossulus","Type 15",238,0.0875,2720,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-ADq5",2014-09-07,2014-09-07,"YB","AD","5","Mt","Mytilus_trossulus","Type 15",147,0.0875,1680,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-ADq8",2014-09-07,2014-09-07,"YB","AD","8","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","35%","Counts likely low due to algae and glare."
+"2014-09-07_YB-ADq1",2014-09-07,2014-09-07,"YB","AD","1","MtD","Mytilus_trossulus_(dead)","Type 16",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-ADq5",2014-09-07,2014-09-07,"YB","AD","5","MtD","Mytilus_trossulus_(dead)","Type 16",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-ADq8",2014-09-07,2014-09-07,"YB","AD","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","35%","Counts likely low due to algae and glare."
+"2014-09-07_YB-ADq1",2014-09-07,2014-09-07,"YB","AD","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-ADq5",2014-09-07,2014-09-07,"YB","AD","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-ADq8",2014-09-07,2014-09-07,"YB","AD","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","35%","Counts likely low due to algae and glare."
+"2014-09-07_YB-ADq1",2014-09-07,2014-09-07,"YB","AD","1","Nc","Nucella_canaliculata","Type 10",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-ADq5",2014-09-07,2014-09-07,"YB","AD","5","Nc","Nucella_canaliculata","Type 10",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-ADq8",2014-09-07,2014-09-07,"YB","AD","8","Nc","Nucella_canaliculata","Type 10",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","35%","Counts likely low due to algae and glare."
+"2014-09-07_YB-ADq1",2014-09-07,2014-09-07,"YB","AD","1","Negg","Nucella_eggs","Type 26",44,0.0875,502.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-ADq5",2014-09-07,2014-09-07,"YB","AD","5","Negg","Nucella_eggs","Type 26",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-ADq8",2014-09-07,2014-09-07,"YB","AD","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","35%","Counts likely low due to algae and glare."
+"2014-09-07_YB-ADq1",2014-09-07,2014-09-07,"YB","AD","1","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-ADq5",2014-09-07,2014-09-07,"YB","AD","5","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-ADq8",2014-09-07,2014-09-07,"YB","AD","8","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","35%","Counts likely low due to algae and glare."
+"2014-09-07_YB-ADq1",2014-09-07,2014-09-07,"YB","AD","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-ADq5",2014-09-07,2014-09-07,"YB","AD","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-ADq8",2014-09-07,2014-09-07,"YB","AD","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","35%","Counts likely low due to algae and glare."
+"2014-09-07_YB-ADq1",2014-09-07,2014-09-07,"YB","AD","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-ADq5",2014-09-07,2014-09-07,"YB","AD","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-ADq8",2014-09-07,2014-09-07,"YB","AD","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","35%","Counts likely low due to algae and glare."
+"2014-09-07_YB-ADq1",2014-09-07,2014-09-07,"YB","AD","1","Pp","Pollicipes_polymerus","Type 11",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-ADq5",2014-09-07,2014-09-07,"YB","AD","5","Pp","Pollicipes_polymerus","Type 11",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-ADq8",2014-09-07,2014-09-07,"YB","AD","8","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","35%","Counts likely low due to algae and glare."
+"2014-09-07_YB-ADq1",2014-09-07,2014-09-07,"YB","AD","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-ADq5",2014-09-07,2014-09-07,"YB","AD","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-ADq8",2014-09-07,2014-09-07,"YB","AD","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","35%","Counts likely low due to algae and glare."
+"2014-09-07_YB-ADq1",2014-09-07,2014-09-07,"YB","AD","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-ADq5",2014-09-07,2014-09-07,"YB","AD","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-ADq8",2014-09-07,2014-09-07,"YB","AD","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","35%","Counts likely low due to algae and glare."
+"2014-09-07_YB-ADq1",2014-09-07,2014-09-07,"YB","AD","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-ADq5",2014-09-07,2014-09-07,"YB","AD","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-ADq8",2014-09-07,2014-09-07,"YB","AD","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","35%","Counts likely low due to algae and glare."
+"2014-09-07_YB-AEq1",2014-09-07,2014-09-07,"YB","AE","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-AEq4",2014-09-07,2014-09-07,"YB","AE","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Counts may be low due to algae."
+"2014-09-07_YB-AEq8",2014-09-07,2014-09-07,"YB","AE","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","Counts may be low due to glare."
+"2014-09-07_YB-AEq1",2014-09-07,2014-09-07,"YB","AE","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-AEq4",2014-09-07,2014-09-07,"YB","AE","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Counts may be low due to algae."
+"2014-09-07_YB-AEq8",2014-09-07,2014-09-07,"YB","AE","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","Counts may be low due to glare."
+"2014-09-07_YB-AEq1",2014-09-07,2014-09-07,"YB","AE","1","Bg","Balanus_glandula","Type 1",736,0.0875,8411.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-AEq4",2014-09-07,2014-09-07,"YB","AE","4","Bg","Balanus_glandula","Type 1",555,0.015625,35520,"c","Beatriz Vaca","Finished","Full","Cropped","45%","Counts may be low due to algae."
+"2014-09-07_YB-AEq8",2014-09-07,2014-09-07,"YB","AE","8","Bg","Balanus_glandula","Type 1",1149,0.015625,73536,"c","Beatriz Vaca","Finished","Full","Cropped","25%","Counts may be low due to glare."
+"2014-09-07_YB-AEq1",2014-09-07,2014-09-07,"YB","AE","1","BgD","Balanus_glandula_(dead)","Type 2",17,0.0875,194.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-AEq4",2014-09-07,2014-09-07,"YB","AE","4","BgD","Balanus_glandula_(dead)","Type 2",7,0.015625,448,"c","Beatriz Vaca","Finished","Full","Cropped","45%","Counts may be low due to algae."
+"2014-09-07_YB-AEq8",2014-09-07,2014-09-07,"YB","AE","8","BgD","Balanus_glandula_(dead)","Type 2",6,0.015625,384,"c","Beatriz Vaca","Finished","Full","Cropped","25%","Counts may be low due to glare."
+"2014-09-07_YB-AEq1",2014-09-07,2014-09-07,"YB","AE","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-AEq4",2014-09-07,2014-09-07,"YB","AE","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Counts may be low due to algae."
+"2014-09-07_YB-AEq8",2014-09-07,2014-09-07,"YB","AE","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","Counts may be low due to glare."
+"2014-09-07_YB-AEq1",2014-09-07,2014-09-07,"YB","AE","1","Cth","Chthamalus_dalli","Type 3",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-AEq4",2014-09-07,2014-09-07,"YB","AE","4","Cth","Chthamalus_dalli","Type 3",27,0.015625,1728,"c","Beatriz Vaca","Finished","Full","Cropped","45%","Counts may be low due to algae."
+"2014-09-07_YB-AEq8",2014-09-07,2014-09-07,"YB","AE","8","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","25%","Counts may be low due to glare."
+"2014-09-07_YB-AEq1",2014-09-07,2014-09-07,"YB","AE","1","CthD","Chthamalus_dalli (dead)","Type 4",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-AEq4",2014-09-07,2014-09-07,"YB","AE","4","CthD","Chthamalus_dalli (dead)","Type 4",1,0.015625,64,"c","Beatriz Vaca","Finished","Full","Cropped","45%","Counts may be low due to algae."
+"2014-09-07_YB-AEq8",2014-09-07,2014-09-07,"YB","AE","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","25%","Counts may be low due to glare."
+"2014-09-07_YB-AEq1",2014-09-07,2014-09-07,"YB","AE","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-AEq4",2014-09-07,2014-09-07,"YB","AE","4","Emp","Emplectonema worm","Type 23",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Counts may be low due to algae."
+"2014-09-07_YB-AEq8",2014-09-07,2014-09-07,"YB","AE","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","Counts may be low due to glare."
+"2014-09-07_YB-AEq1",2014-09-07,2014-09-07,"YB","AE","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-AEq4",2014-09-07,2014-09-07,"YB","AE","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Counts may be low due to algae."
+"2014-09-07_YB-AEq8",2014-09-07,2014-09-07,"YB","AE","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","Counts may be low due to glare."
+"2014-09-07_YB-AEq1",2014-09-07,2014-09-07,"YB","AE","1","Lim","Limpets","Type 12",57,0.0875,651.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-AEq4",2014-09-07,2014-09-07,"YB","AE","4","Lim","Limpets","Type 12",237,0.0875,2708.57142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Counts may be low due to algae."
+"2014-09-07_YB-AEq8",2014-09-07,2014-09-07,"YB","AE","8","Lim","Limpets","Type 12",265,0.0875,3028.57142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","Counts may be low due to glare."
+"2014-09-07_YB-AEq1",2014-09-07,2014-09-07,"YB","AE","1","Ls","Littorina_sitkana","Type 13",371,0.0875,4240,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-AEq4",2014-09-07,2014-09-07,"YB","AE","4","Ls","Littorina_sitkana","Type 13",306,0.0875,3497.14285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Counts may be low due to algae."
+"2014-09-07_YB-AEq8",2014-09-07,2014-09-07,"YB","AE","8","Ls","Littorina_sitkana","Type 13",492,0.0875,5622.85714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","Counts may be low due to glare."
+"2014-09-07_YB-AEq1",2014-09-07,2014-09-07,"YB","AE","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-AEq4",2014-09-07,2014-09-07,"YB","AE","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Counts may be low due to algae."
+"2014-09-07_YB-AEq8",2014-09-07,2014-09-07,"YB","AE","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","Counts may be low due to glare."
+"2014-09-07_YB-AEq1",2014-09-07,2014-09-07,"YB","AE","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-AEq4",2014-09-07,2014-09-07,"YB","AE","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Counts may be low due to algae."
+"2014-09-07_YB-AEq8",2014-09-07,2014-09-07,"YB","AE","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","Counts may be low due to glare."
+"2014-09-07_YB-AEq1",2014-09-07,2014-09-07,"YB","AE","1","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-AEq4",2014-09-07,2014-09-07,"YB","AE","4","Myt","Mytilus_spp","Type 7",59,0.0875,674.285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Counts may be low due to algae."
+"2014-09-07_YB-AEq8",2014-09-07,2014-09-07,"YB","AE","8","Myt","Mytilus_spp","Type 7",220,0.0875,2514.28571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","Counts may be low due to glare."
+"2014-09-07_YB-AEq1",2014-09-07,2014-09-07,"YB","AE","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-AEq4",2014-09-07,2014-09-07,"YB","AE","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Counts may be low due to algae."
+"2014-09-07_YB-AEq8",2014-09-07,2014-09-07,"YB","AE","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","Counts may be low due to glare."
+"2014-09-07_YB-AEq1",2014-09-07,2014-09-07,"YB","AE","1","Mt","Mytilus_trossulus","Type 15",111,0.0875,1268.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-AEq4",2014-09-07,2014-09-07,"YB","AE","4","Mt","Mytilus_trossulus","Type 15",144,0.0875,1645.71428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Counts may be low due to algae."
+"2014-09-07_YB-AEq8",2014-09-07,2014-09-07,"YB","AE","8","Mt","Mytilus_trossulus","Type 15",33,0.0875,377.142857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","Counts may be low due to glare."
+"2014-09-07_YB-AEq1",2014-09-07,2014-09-07,"YB","AE","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-AEq4",2014-09-07,2014-09-07,"YB","AE","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Counts may be low due to algae."
+"2014-09-07_YB-AEq8",2014-09-07,2014-09-07,"YB","AE","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","Counts may be low due to glare."
+"2014-09-07_YB-AEq1",2014-09-07,2014-09-07,"YB","AE","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-AEq4",2014-09-07,2014-09-07,"YB","AE","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Counts may be low due to algae."
+"2014-09-07_YB-AEq8",2014-09-07,2014-09-07,"YB","AE","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","Counts may be low due to glare."
+"2014-09-07_YB-AEq1",2014-09-07,2014-09-07,"YB","AE","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-AEq4",2014-09-07,2014-09-07,"YB","AE","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Counts may be low due to algae."
+"2014-09-07_YB-AEq8",2014-09-07,2014-09-07,"YB","AE","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","Counts may be low due to glare."
+"2014-09-07_YB-AEq1",2014-09-07,2014-09-07,"YB","AE","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-AEq4",2014-09-07,2014-09-07,"YB","AE","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Counts may be low due to algae."
+"2014-09-07_YB-AEq8",2014-09-07,2014-09-07,"YB","AE","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","Counts may be low due to glare."
+"2014-09-07_YB-AEq1",2014-09-07,2014-09-07,"YB","AE","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-AEq4",2014-09-07,2014-09-07,"YB","AE","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Counts may be low due to algae."
+"2014-09-07_YB-AEq8",2014-09-07,2014-09-07,"YB","AE","8","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","Counts may be low due to glare."
+"2014-09-07_YB-AEq1",2014-09-07,2014-09-07,"YB","AE","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-AEq4",2014-09-07,2014-09-07,"YB","AE","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Counts may be low due to algae."
+"2014-09-07_YB-AEq8",2014-09-07,2014-09-07,"YB","AE","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","Counts may be low due to glare."
+"2014-09-07_YB-AEq1",2014-09-07,2014-09-07,"YB","AE","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-AEq4",2014-09-07,2014-09-07,"YB","AE","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Counts may be low due to algae."
+"2014-09-07_YB-AEq8",2014-09-07,2014-09-07,"YB","AE","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","Counts may be low due to glare."
+"2014-09-07_YB-AEq1",2014-09-07,2014-09-07,"YB","AE","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-AEq4",2014-09-07,2014-09-07,"YB","AE","4","Pp","Pollicipes_polymerus","Type 11",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Counts may be low due to algae."
+"2014-09-07_YB-AEq8",2014-09-07,2014-09-07,"YB","AE","8","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","Counts may be low due to glare."
+"2014-09-07_YB-AEq1",2014-09-07,2014-09-07,"YB","AE","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-AEq4",2014-09-07,2014-09-07,"YB","AE","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Counts may be low due to algae."
+"2014-09-07_YB-AEq8",2014-09-07,2014-09-07,"YB","AE","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","Counts may be low due to glare."
+"2014-09-07_YB-AEq1",2014-09-07,2014-09-07,"YB","AE","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-AEq4",2014-09-07,2014-09-07,"YB","AE","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Counts may be low due to algae."
+"2014-09-07_YB-AEq8",2014-09-07,2014-09-07,"YB","AE","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","Counts may be low due to glare."
+"2014-09-07_YB-AEq1",2014-09-07,2014-09-07,"YB","AE","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover, blur, and glare."
+"2014-09-07_YB-AEq4",2014-09-07,2014-09-07,"YB","AE","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Counts may be low due to algae."
+"2014-09-07_YB-AEq8",2014-09-07,2014-09-07,"YB","AE","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%","Counts may be low due to glare."
+"2014-09-07_YB-AFq5",2014-09-07,2014-09-07,"YB","AF","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2014-09-07_YB-AFq8",2014-09-07,2014-09-07,"YB","AF","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","5%",""
+"2014-09-07_YB-AFq9",2014-09-07,2014-09-07,"YB","AF","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%",""
+"2014-09-07_YB-AFq5",2014-09-07,2014-09-07,"YB","AF","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2014-09-07_YB-AFq8",2014-09-07,2014-09-07,"YB","AF","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","5%",""
+"2014-09-07_YB-AFq9",2014-09-07,2014-09-07,"YB","AF","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%",""
+"2014-09-07_YB-AFq5",2014-09-07,2014-09-07,"YB","AF","5","Bg","Balanus_glandula","Type 1",1032,0.015625,66048,"c","Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2014-09-07_YB-AFq8",2014-09-07,2014-09-07,"YB","AF","8","Bg","Balanus_glandula","Type 1",1488,0.015625,95232,"c","Celeste Moen","Finished","Full","Cropped","5%",""
+"2014-09-07_YB-AFq9",2014-09-07,2014-09-07,"YB","AF","9","Bg","Balanus_glandula","Type 1",1240,0.015625,79360,"c","Stephanie Merhoff","Finished","Full","Cropped","1%",""
+"2014-09-07_YB-AFq5",2014-09-07,2014-09-07,"YB","AF","5","BgD","Balanus_glandula_(dead)","Type 2",3,0.015625,192,"c","Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2014-09-07_YB-AFq8",2014-09-07,2014-09-07,"YB","AF","8","BgD","Balanus_glandula_(dead)","Type 2",31,0.015625,1984,"c","Celeste Moen","Finished","Full","Cropped","5%",""
+"2014-09-07_YB-AFq9",2014-09-07,2014-09-07,"YB","AF","9","BgD","Balanus_glandula_(dead)","Type 2",1,0.015625,64,"c","Stephanie Merhoff","Finished","Full","Cropped","1%",""
+"2014-09-07_YB-AFq5",2014-09-07,2014-09-07,"YB","AF","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2014-09-07_YB-AFq8",2014-09-07,2014-09-07,"YB","AF","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","5%",""
+"2014-09-07_YB-AFq9",2014-09-07,2014-09-07,"YB","AF","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%",""
+"2014-09-07_YB-AFq5",2014-09-07,2014-09-07,"YB","AF","5","Cth","Chthamalus_dalli","Type 3",10,0.015625,640,"c","Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2014-09-07_YB-AFq8",2014-09-07,2014-09-07,"YB","AF","8","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Celeste Moen","Finished","Full","Cropped","5%",""
+"2014-09-07_YB-AFq9",2014-09-07,2014-09-07,"YB","AF","9","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","1%",""
+"2014-09-07_YB-AFq5",2014-09-07,2014-09-07,"YB","AF","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2014-09-07_YB-AFq8",2014-09-07,2014-09-07,"YB","AF","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Celeste Moen","Finished","Full","Cropped","5%",""
+"2014-09-07_YB-AFq9",2014-09-07,2014-09-07,"YB","AF","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","1%",""
+"2014-09-07_YB-AFq5",2014-09-07,2014-09-07,"YB","AF","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2014-09-07_YB-AFq8",2014-09-07,2014-09-07,"YB","AF","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","5%",""
+"2014-09-07_YB-AFq9",2014-09-07,2014-09-07,"YB","AF","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%",""
+"2014-09-07_YB-AFq5",2014-09-07,2014-09-07,"YB","AF","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2014-09-07_YB-AFq8",2014-09-07,2014-09-07,"YB","AF","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","5%",""
+"2014-09-07_YB-AFq9",2014-09-07,2014-09-07,"YB","AF","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%",""
+"2014-09-07_YB-AFq5",2014-09-07,2014-09-07,"YB","AF","5","Lim","Limpets","Type 12",123,0.0875,1405.71428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2014-09-07_YB-AFq8",2014-09-07,2014-09-07,"YB","AF","8","Lim","Limpets","Type 12",10,0.0875,114.285714285714,NA,"Celeste Moen","Finished","Full","Cropped","5%",""
+"2014-09-07_YB-AFq9",2014-09-07,2014-09-07,"YB","AF","9","Lim","Limpets","Type 12",13,0.0875,148.571428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%",""
+"2014-09-07_YB-AFq5",2014-09-07,2014-09-07,"YB","AF","5","Ls","Littorina_sitkana","Type 13",404,0.0875,4617.14285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2014-09-07_YB-AFq8",2014-09-07,2014-09-07,"YB","AF","8","Ls","Littorina_sitkana","Type 13",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","5%",""
+"2014-09-07_YB-AFq9",2014-09-07,2014-09-07,"YB","AF","9","Ls","Littorina_sitkana","Type 13",503,0.0875,5748.57142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%",""
+"2014-09-07_YB-AFq5",2014-09-07,2014-09-07,"YB","AF","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2014-09-07_YB-AFq8",2014-09-07,2014-09-07,"YB","AF","8","Mc","Mytilus_californianus","Type 17",1,0.0875,11.4285714285714,NA,"Celeste Moen","Finished","Full","Cropped","5%",""
+"2014-09-07_YB-AFq9",2014-09-07,2014-09-07,"YB","AF","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%",""
+"2014-09-07_YB-AFq5",2014-09-07,2014-09-07,"YB","AF","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2014-09-07_YB-AFq8",2014-09-07,2014-09-07,"YB","AF","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","5%",""
+"2014-09-07_YB-AFq9",2014-09-07,2014-09-07,"YB","AF","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%",""
+"2014-09-07_YB-AFq5",2014-09-07,2014-09-07,"YB","AF","5","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2014-09-07_YB-AFq8",2014-09-07,2014-09-07,"YB","AF","8","Myt","Mytilus_spp","Type 7",477,0.0875,5451.42857142857,NA,"Celeste Moen","Finished","Full","Cropped","5%",""
+"2014-09-07_YB-AFq9",2014-09-07,2014-09-07,"YB","AF","9","Myt","Mytilus_spp","Type 7",232,0.0875,2651.42857142857,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%",""
+"2014-09-07_YB-AFq5",2014-09-07,2014-09-07,"YB","AF","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2014-09-07_YB-AFq8",2014-09-07,2014-09-07,"YB","AF","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","5%",""
+"2014-09-07_YB-AFq9",2014-09-07,2014-09-07,"YB","AF","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%",""
+"2014-09-07_YB-AFq5",2014-09-07,2014-09-07,"YB","AF","5","Mt","Mytilus_trossulus","Type 15",307,0.0875,3508.57142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2014-09-07_YB-AFq8",2014-09-07,2014-09-07,"YB","AF","8","Mt","Mytilus_trossulus","Type 15",11,0.0875,125.714285714286,NA,"Celeste Moen","Finished","Full","Cropped","5%",""
+"2014-09-07_YB-AFq9",2014-09-07,2014-09-07,"YB","AF","9","Mt","Mytilus_trossulus","Type 15",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%",""
+"2014-09-07_YB-AFq5",2014-09-07,2014-09-07,"YB","AF","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2014-09-07_YB-AFq8",2014-09-07,2014-09-07,"YB","AF","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","5%",""
+"2014-09-07_YB-AFq9",2014-09-07,2014-09-07,"YB","AF","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%",""
+"2014-09-07_YB-AFq5",2014-09-07,2014-09-07,"YB","AF","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2014-09-07_YB-AFq8",2014-09-07,2014-09-07,"YB","AF","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","5%",""
+"2014-09-07_YB-AFq9",2014-09-07,2014-09-07,"YB","AF","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%",""
+"2014-09-07_YB-AFq5",2014-09-07,2014-09-07,"YB","AF","5","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2014-09-07_YB-AFq8",2014-09-07,2014-09-07,"YB","AF","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","5%",""
+"2014-09-07_YB-AFq9",2014-09-07,2014-09-07,"YB","AF","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%",""
+"2014-09-07_YB-AFq5",2014-09-07,2014-09-07,"YB","AF","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2014-09-07_YB-AFq8",2014-09-07,2014-09-07,"YB","AF","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","5%",""
+"2014-09-07_YB-AFq9",2014-09-07,2014-09-07,"YB","AF","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%",""
+"2014-09-07_YB-AFq5",2014-09-07,2014-09-07,"YB","AF","5","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2014-09-07_YB-AFq8",2014-09-07,2014-09-07,"YB","AF","8","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","5%",""
+"2014-09-07_YB-AFq9",2014-09-07,2014-09-07,"YB","AF","9","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%",""
+"2014-09-07_YB-AFq5",2014-09-07,2014-09-07,"YB","AF","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2014-09-07_YB-AFq8",2014-09-07,2014-09-07,"YB","AF","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","5%",""
+"2014-09-07_YB-AFq9",2014-09-07,2014-09-07,"YB","AF","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%",""
+"2014-09-07_YB-AFq5",2014-09-07,2014-09-07,"YB","AF","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2014-09-07_YB-AFq8",2014-09-07,2014-09-07,"YB","AF","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","5%",""
+"2014-09-07_YB-AFq9",2014-09-07,2014-09-07,"YB","AF","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%",""
+"2014-09-07_YB-AFq5",2014-09-07,2014-09-07,"YB","AF","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2014-09-07_YB-AFq8",2014-09-07,2014-09-07,"YB","AF","8","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","5%",""
+"2014-09-07_YB-AFq9",2014-09-07,2014-09-07,"YB","AF","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%",""
+"2014-09-07_YB-AFq5",2014-09-07,2014-09-07,"YB","AF","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2014-09-07_YB-AFq8",2014-09-07,2014-09-07,"YB","AF","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","5%",""
+"2014-09-07_YB-AFq9",2014-09-07,2014-09-07,"YB","AF","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%",""
+"2014-09-07_YB-AFq5",2014-09-07,2014-09-07,"YB","AF","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2014-09-07_YB-AFq8",2014-09-07,2014-09-07,"YB","AF","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","5%",""
+"2014-09-07_YB-AFq9",2014-09-07,2014-09-07,"YB","AF","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%",""
+"2014-09-07_YB-AFq5",2014-09-07,2014-09-07,"YB","AF","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2014-09-07_YB-AFq8",2014-09-07,2014-09-07,"YB","AF","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","5%",""
+"2014-09-07_YB-AFq9",2014-09-07,2014-09-07,"YB","AF","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%",""
+"2014-09-07_YB-AGq1",2014-09-07,2014-09-07,"YB","AG","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","14%",""
+"2014-09-07_YB-AGq2",2014-09-07,2014-09-07,"YB","AG","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","30%",""
+"2014-09-07_YB-AGq3",2014-09-07,2014-09-07,"YB","AG","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","50%",""
+"2014-09-07_YB-AGq7",2014-09-07,2014-09-07,"YB","AG","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%",""
+"2014-09-07_YB-AGq9",2014-09-07,2014-09-07,"YB","AG","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur and glare"
+"2014-09-07_YB-AGq1",2014-09-07,2014-09-07,"YB","AG","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","14%",""
+"2014-09-07_YB-AGq2",2014-09-07,2014-09-07,"YB","AG","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","30%",""
+"2014-09-07_YB-AGq3",2014-09-07,2014-09-07,"YB","AG","3","Ae","Anemones","Type 14",1,0.0875,11.4285714285714,NA,"Isaac Shepard","Finished","Full","Cropped","50%",""
+"2014-09-07_YB-AGq7",2014-09-07,2014-09-07,"YB","AG","7","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%",""
+"2014-09-07_YB-AGq9",2014-09-07,2014-09-07,"YB","AG","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur and glare"
+"2014-09-07_YB-AGq1",2014-09-07,2014-09-07,"YB","AG","1","Bg","Balanus_glandula","Type 1",195,0.015625,12480,"c","Isaac Shepard","Finished","Full","Cropped","14%",""
+"2014-09-07_YB-AGq2",2014-09-07,2014-09-07,"YB","AG","2","Bg","Balanus_glandula","Type 1",267,0.015625,17088,"c","Isaac Shepard","Finished","Full","Cropped","30%",""
+"2014-09-07_YB-AGq3",2014-09-07,2014-09-07,"YB","AG","3","Bg","Balanus_glandula","Type 1",226,0.015625,14464,"c","Isaac Shepard","Finished","Full","Cropped","50%",""
+"2014-09-07_YB-AGq7",2014-09-07,2014-09-07,"YB","AG","7","Bg","Balanus_glandula","Type 1",469,0.015625,30016,"c","Stephanie Merhoff","Finished","Full","Cropped","20%",""
+"2014-09-07_YB-AGq9",2014-09-07,2014-09-07,"YB","AG","9","Bg","Balanus_glandula","Type 1",738,0.0875,8434.28571428572,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur and glare"
+"2014-09-07_YB-AGq1",2014-09-07,2014-09-07,"YB","AG","1","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","14%",""
+"2014-09-07_YB-AGq2",2014-09-07,2014-09-07,"YB","AG","2","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","30%",""
+"2014-09-07_YB-AGq3",2014-09-07,2014-09-07,"YB","AG","3","BgD","Balanus_glandula_(dead)","Type 2",1,0.015625,64,"c","Isaac Shepard","Finished","Full","Cropped","50%",""
+"2014-09-07_YB-AGq7",2014-09-07,2014-09-07,"YB","AG","7","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","20%",""
+"2014-09-07_YB-AGq9",2014-09-07,2014-09-07,"YB","AG","9","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur and glare"
+"2014-09-07_YB-AGq1",2014-09-07,2014-09-07,"YB","AG","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","14%",""
+"2014-09-07_YB-AGq2",2014-09-07,2014-09-07,"YB","AG","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","30%",""
+"2014-09-07_YB-AGq3",2014-09-07,2014-09-07,"YB","AG","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","50%",""
+"2014-09-07_YB-AGq7",2014-09-07,2014-09-07,"YB","AG","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%",""
+"2014-09-07_YB-AGq9",2014-09-07,2014-09-07,"YB","AG","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur and glare"
+"2014-09-07_YB-AGq1",2014-09-07,2014-09-07,"YB","AG","1","Cth","Chthamalus_dalli","Type 3",6,0.015625,384,"c","Isaac Shepard","Finished","Full","Cropped","14%",""
+"2014-09-07_YB-AGq2",2014-09-07,2014-09-07,"YB","AG","2","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","30%",""
+"2014-09-07_YB-AGq3",2014-09-07,2014-09-07,"YB","AG","3","Cth","Chthamalus_dalli","Type 3",7,0.015625,448,"c","Isaac Shepard","Finished","Full","Cropped","50%",""
+"2014-09-07_YB-AGq7",2014-09-07,2014-09-07,"YB","AG","7","Cth","Chthamalus_dalli","Type 3",11,0.015625,704,"c","Stephanie Merhoff","Finished","Full","Cropped","20%",""
+"2014-09-07_YB-AGq9",2014-09-07,2014-09-07,"YB","AG","9","Cth","Chthamalus_dalli","Type 3",52,0.0875,594.285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur and glare"
+"2014-09-07_YB-AGq1",2014-09-07,2014-09-07,"YB","AG","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","14%",""
+"2014-09-07_YB-AGq2",2014-09-07,2014-09-07,"YB","AG","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","30%",""
+"2014-09-07_YB-AGq3",2014-09-07,2014-09-07,"YB","AG","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","50%",""
+"2014-09-07_YB-AGq7",2014-09-07,2014-09-07,"YB","AG","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","20%",""
+"2014-09-07_YB-AGq9",2014-09-07,2014-09-07,"YB","AG","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur and glare"
+"2014-09-07_YB-AGq1",2014-09-07,2014-09-07,"YB","AG","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","14%",""
+"2014-09-07_YB-AGq2",2014-09-07,2014-09-07,"YB","AG","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","30%",""
+"2014-09-07_YB-AGq3",2014-09-07,2014-09-07,"YB","AG","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","50%",""
+"2014-09-07_YB-AGq7",2014-09-07,2014-09-07,"YB","AG","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%",""
+"2014-09-07_YB-AGq9",2014-09-07,2014-09-07,"YB","AG","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur and glare"
+"2014-09-07_YB-AGq1",2014-09-07,2014-09-07,"YB","AG","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","14%",""
+"2014-09-07_YB-AGq2",2014-09-07,2014-09-07,"YB","AG","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","30%",""
+"2014-09-07_YB-AGq3",2014-09-07,2014-09-07,"YB","AG","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","50%",""
+"2014-09-07_YB-AGq7",2014-09-07,2014-09-07,"YB","AG","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%",""
+"2014-09-07_YB-AGq9",2014-09-07,2014-09-07,"YB","AG","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur and glare"
+"2014-09-07_YB-AGq1",2014-09-07,2014-09-07,"YB","AG","1","Lim","Limpets","Type 12",59,0.0875,674.285714285714,NA,"Isaac Shepard","Finished","Full","Cropped","14%",""
+"2014-09-07_YB-AGq2",2014-09-07,2014-09-07,"YB","AG","2","Lim","Limpets","Type 12",53,0.0875,605.714285714286,NA,"Isaac Shepard","Finished","Full","Cropped","30%",""
+"2014-09-07_YB-AGq3",2014-09-07,2014-09-07,"YB","AG","3","Lim","Limpets","Type 12",35,0.0875,400,NA,"Isaac Shepard","Finished","Full","Cropped","50%",""
+"2014-09-07_YB-AGq7",2014-09-07,2014-09-07,"YB","AG","7","Lim","Limpets","Type 12",58,0.0875,662.857142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%",""
+"2014-09-07_YB-AGq9",2014-09-07,2014-09-07,"YB","AG","9","Lim","Limpets","Type 12",57,0.0875,651.428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur and glare"
+"2014-09-07_YB-AGq1",2014-09-07,2014-09-07,"YB","AG","1","Ls","Littorina_sitkana","Type 13",295,0.0875,3371.42857142857,NA,"Isaac Shepard","Finished","Full","Cropped","14%",""
+"2014-09-07_YB-AGq2",2014-09-07,2014-09-07,"YB","AG","2","Ls","Littorina_sitkana","Type 13",216,0.0875,2468.57142857143,NA,"Isaac Shepard","Finished","Full","Cropped","30%",""
+"2014-09-07_YB-AGq3",2014-09-07,2014-09-07,"YB","AG","3","Ls","Littorina_sitkana","Type 13",87,0.0875,994.285714285714,NA,"Isaac Shepard","Finished","Full","Cropped","50%",""
+"2014-09-07_YB-AGq7",2014-09-07,2014-09-07,"YB","AG","7","Ls","Littorina_sitkana","Type 13",325,0.0875,3714.28571428571,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%",""
+"2014-09-07_YB-AGq9",2014-09-07,2014-09-07,"YB","AG","9","Ls","Littorina_sitkana","Type 13",191,0.0875,2182.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur and glare"
+"2014-09-07_YB-AGq1",2014-09-07,2014-09-07,"YB","AG","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","14%",""
+"2014-09-07_YB-AGq2",2014-09-07,2014-09-07,"YB","AG","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","30%",""
+"2014-09-07_YB-AGq3",2014-09-07,2014-09-07,"YB","AG","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","50%",""
+"2014-09-07_YB-AGq7",2014-09-07,2014-09-07,"YB","AG","7","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%",""
+"2014-09-07_YB-AGq9",2014-09-07,2014-09-07,"YB","AG","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur and glare"
+"2014-09-07_YB-AGq1",2014-09-07,2014-09-07,"YB","AG","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","14%",""
+"2014-09-07_YB-AGq2",2014-09-07,2014-09-07,"YB","AG","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","30%",""
+"2014-09-07_YB-AGq3",2014-09-07,2014-09-07,"YB","AG","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","50%",""
+"2014-09-07_YB-AGq7",2014-09-07,2014-09-07,"YB","AG","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%",""
+"2014-09-07_YB-AGq9",2014-09-07,2014-09-07,"YB","AG","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur and glare"
+"2014-09-07_YB-AGq1",2014-09-07,2014-09-07,"YB","AG","1","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","14%",""
+"2014-09-07_YB-AGq2",2014-09-07,2014-09-07,"YB","AG","2","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","30%",""
+"2014-09-07_YB-AGq3",2014-09-07,2014-09-07,"YB","AG","3","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","50%",""
+"2014-09-07_YB-AGq7",2014-09-07,2014-09-07,"YB","AG","7","Myt","Mytilus_spp","Type 7",409,0.0875,4674.28571428571,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%",""
+"2014-09-07_YB-AGq9",2014-09-07,2014-09-07,"YB","AG","9","Myt","Mytilus_spp","Type 7",301,0.0875,3440,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur and glare"
+"2014-09-07_YB-AGq1",2014-09-07,2014-09-07,"YB","AG","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","14%",""
+"2014-09-07_YB-AGq2",2014-09-07,2014-09-07,"YB","AG","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","30%",""
+"2014-09-07_YB-AGq3",2014-09-07,2014-09-07,"YB","AG","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","50%",""
+"2014-09-07_YB-AGq7",2014-09-07,2014-09-07,"YB","AG","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%",""
+"2014-09-07_YB-AGq9",2014-09-07,2014-09-07,"YB","AG","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur and glare"
+"2014-09-07_YB-AGq1",2014-09-07,2014-09-07,"YB","AG","1","Mt","Mytilus_trossulus","Type 15",331,0.0875,3782.85714285714,NA,"Isaac Shepard","Finished","Full","Cropped","14%",""
+"2014-09-07_YB-AGq2",2014-09-07,2014-09-07,"YB","AG","2","Mt","Mytilus_trossulus","Type 15",223,0.0875,2548.57142857143,NA,"Isaac Shepard","Finished","Full","Cropped","30%",""
+"2014-09-07_YB-AGq3",2014-09-07,2014-09-07,"YB","AG","3","Mt","Mytilus_trossulus","Type 15",167,0.0875,1908.57142857143,NA,"Isaac Shepard","Finished","Full","Cropped","50%",""
+"2014-09-07_YB-AGq7",2014-09-07,2014-09-07,"YB","AG","7","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%",""
+"2014-09-07_YB-AGq9",2014-09-07,2014-09-07,"YB","AG","9","Mt","Mytilus_trossulus","Type 15",24,0.0875,274.285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur and glare"
+"2014-09-07_YB-AGq1",2014-09-07,2014-09-07,"YB","AG","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","14%",""
+"2014-09-07_YB-AGq2",2014-09-07,2014-09-07,"YB","AG","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","30%",""
+"2014-09-07_YB-AGq3",2014-09-07,2014-09-07,"YB","AG","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","50%",""
+"2014-09-07_YB-AGq7",2014-09-07,2014-09-07,"YB","AG","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%",""
+"2014-09-07_YB-AGq9",2014-09-07,2014-09-07,"YB","AG","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur and glare"
+"2014-09-07_YB-AGq1",2014-09-07,2014-09-07,"YB","AG","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","14%",""
+"2014-09-07_YB-AGq2",2014-09-07,2014-09-07,"YB","AG","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","30%",""
+"2014-09-07_YB-AGq3",2014-09-07,2014-09-07,"YB","AG","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","50%",""
+"2014-09-07_YB-AGq7",2014-09-07,2014-09-07,"YB","AG","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%",""
+"2014-09-07_YB-AGq9",2014-09-07,2014-09-07,"YB","AG","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur and glare"
+"2014-09-07_YB-AGq1",2014-09-07,2014-09-07,"YB","AG","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","14%",""
+"2014-09-07_YB-AGq2",2014-09-07,2014-09-07,"YB","AG","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","30%",""
+"2014-09-07_YB-AGq3",2014-09-07,2014-09-07,"YB","AG","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","50%",""
+"2014-09-07_YB-AGq7",2014-09-07,2014-09-07,"YB","AG","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%",""
+"2014-09-07_YB-AGq9",2014-09-07,2014-09-07,"YB","AG","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur and glare"
+"2014-09-07_YB-AGq1",2014-09-07,2014-09-07,"YB","AG","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","14%",""
+"2014-09-07_YB-AGq2",2014-09-07,2014-09-07,"YB","AG","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","30%",""
+"2014-09-07_YB-AGq3",2014-09-07,2014-09-07,"YB","AG","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","50%",""
+"2014-09-07_YB-AGq7",2014-09-07,2014-09-07,"YB","AG","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%",""
+"2014-09-07_YB-AGq9",2014-09-07,2014-09-07,"YB","AG","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur and glare"
+"2014-09-07_YB-AGq1",2014-09-07,2014-09-07,"YB","AG","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","14%",""
+"2014-09-07_YB-AGq2",2014-09-07,2014-09-07,"YB","AG","2","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","30%",""
+"2014-09-07_YB-AGq3",2014-09-07,2014-09-07,"YB","AG","3","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Isaac Shepard","Finished","Full","Cropped","50%",""
+"2014-09-07_YB-AGq7",2014-09-07,2014-09-07,"YB","AG","7","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%",""
+"2014-09-07_YB-AGq9",2014-09-07,2014-09-07,"YB","AG","9","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur and glare"
+"2014-09-07_YB-AGq1",2014-09-07,2014-09-07,"YB","AG","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","14%",""
+"2014-09-07_YB-AGq2",2014-09-07,2014-09-07,"YB","AG","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","30%",""
+"2014-09-07_YB-AGq3",2014-09-07,2014-09-07,"YB","AG","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","50%",""
+"2014-09-07_YB-AGq7",2014-09-07,2014-09-07,"YB","AG","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%",""
+"2014-09-07_YB-AGq9",2014-09-07,2014-09-07,"YB","AG","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur and glare"
+"2014-09-07_YB-AGq1",2014-09-07,2014-09-07,"YB","AG","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","14%",""
+"2014-09-07_YB-AGq2",2014-09-07,2014-09-07,"YB","AG","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","30%",""
+"2014-09-07_YB-AGq3",2014-09-07,2014-09-07,"YB","AG","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","50%",""
+"2014-09-07_YB-AGq7",2014-09-07,2014-09-07,"YB","AG","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%",""
+"2014-09-07_YB-AGq9",2014-09-07,2014-09-07,"YB","AG","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur and glare"
+"2014-09-07_YB-AGq1",2014-09-07,2014-09-07,"YB","AG","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","14%",""
+"2014-09-07_YB-AGq2",2014-09-07,2014-09-07,"YB","AG","2","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","30%",""
+"2014-09-07_YB-AGq3",2014-09-07,2014-09-07,"YB","AG","3","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","50%",""
+"2014-09-07_YB-AGq7",2014-09-07,2014-09-07,"YB","AG","7","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%",""
+"2014-09-07_YB-AGq9",2014-09-07,2014-09-07,"YB","AG","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur and glare"
+"2014-09-07_YB-AGq1",2014-09-07,2014-09-07,"YB","AG","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","14%",""
+"2014-09-07_YB-AGq2",2014-09-07,2014-09-07,"YB","AG","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","30%",""
+"2014-09-07_YB-AGq3",2014-09-07,2014-09-07,"YB","AG","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","50%",""
+"2014-09-07_YB-AGq7",2014-09-07,2014-09-07,"YB","AG","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%",""
+"2014-09-07_YB-AGq9",2014-09-07,2014-09-07,"YB","AG","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur and glare"
+"2014-09-07_YB-AGq1",2014-09-07,2014-09-07,"YB","AG","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","14%",""
+"2014-09-07_YB-AGq2",2014-09-07,2014-09-07,"YB","AG","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","30%",""
+"2014-09-07_YB-AGq3",2014-09-07,2014-09-07,"YB","AG","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","50%",""
+"2014-09-07_YB-AGq7",2014-09-07,2014-09-07,"YB","AG","7","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%",""
+"2014-09-07_YB-AGq9",2014-09-07,2014-09-07,"YB","AG","9","Sc","Semibalanus_cariosus","Type 5",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur and glare"
+"2014-09-07_YB-AGq1",2014-09-07,2014-09-07,"YB","AG","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","14%",""
+"2014-09-07_YB-AGq2",2014-09-07,2014-09-07,"YB","AG","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","30%",""
+"2014-09-07_YB-AGq3",2014-09-07,2014-09-07,"YB","AG","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","50%",""
+"2014-09-07_YB-AGq7",2014-09-07,2014-09-07,"YB","AG","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%",""
+"2014-09-07_YB-AGq9",2014-09-07,2014-09-07,"YB","AG","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur and glare"
+"2014-09-07_YB-Bq1",2014-09-07,2014-09-07,"YB","B","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-09-07_YB-Bq5",2014-09-07,2014-09-07,"YB","B","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-09-07_YB-Bq6",2014-09-07,2014-09-07,"YB","B","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-09-07_YB-Bq1",2014-09-07,2014-09-07,"YB","B","1","Ae","Anemones","Type 14",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-09-07_YB-Bq5",2014-09-07,2014-09-07,"YB","B","5","Ae","Anemones","Type 14",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-09-07_YB-Bq6",2014-09-07,2014-09-07,"YB","B","6","Ae","Anemones","Type 14",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-09-07_YB-Bq1",2014-09-07,2014-09-07,"YB","B","1","Bg","Balanus_glandula","Type 1",399,0.015625,25536,"c","Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-09-07_YB-Bq5",2014-09-07,2014-09-07,"YB","B","5","Bg","Balanus_glandula","Type 1",931,0.015625,59584,"c","Beatriz Vaca","Finished","Full","Cropped","15%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-09-07_YB-Bq6",2014-09-07,2014-09-07,"YB","B","6","Bg","Balanus_glandula","Type 1",329,0.015625,21056,"c","Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-09-07_YB-Bq1",2014-09-07,2014-09-07,"YB","B","1","BgD","Balanus_glandula_(dead)","Type 2",25,0.015625,1600,"c","Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-09-07_YB-Bq5",2014-09-07,2014-09-07,"YB","B","5","BgD","Balanus_glandula_(dead)","Type 2",1,0.015625,64,"c","Beatriz Vaca","Finished","Full","Cropped","15%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-09-07_YB-Bq6",2014-09-07,2014-09-07,"YB","B","6","BgD","Balanus_glandula_(dead)","Type 2",11,0.015625,704,"c","Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-09-07_YB-Bq1",2014-09-07,2014-09-07,"YB","B","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-09-07_YB-Bq5",2014-09-07,2014-09-07,"YB","B","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-09-07_YB-Bq6",2014-09-07,2014-09-07,"YB","B","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-09-07_YB-Bq1",2014-09-07,2014-09-07,"YB","B","1","Cth","Chthamalus_dalli","Type 3",30,0.015625,1920,"c","Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-09-07_YB-Bq5",2014-09-07,2014-09-07,"YB","B","5","Cth","Chthamalus_dalli","Type 3",17,0.015625,1088,"c","Beatriz Vaca","Finished","Full","Cropped","15%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-09-07_YB-Bq6",2014-09-07,2014-09-07,"YB","B","6","Cth","Chthamalus_dalli","Type 3",27,0.015625,1728,"c","Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-09-07_YB-Bq1",2014-09-07,2014-09-07,"YB","B","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-09-07_YB-Bq5",2014-09-07,2014-09-07,"YB","B","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","15%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-09-07_YB-Bq6",2014-09-07,2014-09-07,"YB","B","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-09-07_YB-Bq1",2014-09-07,2014-09-07,"YB","B","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-09-07_YB-Bq5",2014-09-07,2014-09-07,"YB","B","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-09-07_YB-Bq6",2014-09-07,2014-09-07,"YB","B","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-09-07_YB-Bq1",2014-09-07,2014-09-07,"YB","B","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-09-07_YB-Bq5",2014-09-07,2014-09-07,"YB","B","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-09-07_YB-Bq6",2014-09-07,2014-09-07,"YB","B","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-09-07_YB-Bq1",2014-09-07,2014-09-07,"YB","B","1","Lim","Limpets","Type 12",464,0.0875,5302.85714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-09-07_YB-Bq5",2014-09-07,2014-09-07,"YB","B","5","Lim","Limpets","Type 12",328,0.0875,3748.57142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-09-07_YB-Bq6",2014-09-07,2014-09-07,"YB","B","6","Lim","Limpets","Type 12",539,0.0875,6160,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-09-07_YB-Bq1",2014-09-07,2014-09-07,"YB","B","1","Ls","Littorina_sitkana","Type 13",33,0.0875,377.142857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-09-07_YB-Bq5",2014-09-07,2014-09-07,"YB","B","5","Ls","Littorina_sitkana","Type 13",642,0.0875,7337.14285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-09-07_YB-Bq6",2014-09-07,2014-09-07,"YB","B","6","Ls","Littorina_sitkana","Type 13",90,0.0875,1028.57142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-09-07_YB-Bq1",2014-09-07,2014-09-07,"YB","B","1","Mc","Mytilus_californianus","Type 17",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-09-07_YB-Bq5",2014-09-07,2014-09-07,"YB","B","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-09-07_YB-Bq6",2014-09-07,2014-09-07,"YB","B","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-09-07_YB-Bq1",2014-09-07,2014-09-07,"YB","B","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-09-07_YB-Bq5",2014-09-07,2014-09-07,"YB","B","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-09-07_YB-Bq6",2014-09-07,2014-09-07,"YB","B","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-09-07_YB-Bq1",2014-09-07,2014-09-07,"YB","B","1","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-09-07_YB-Bq5",2014-09-07,2014-09-07,"YB","B","5","Myt","Mytilus_spp","Type 7",165,0.0875,1885.71428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-09-07_YB-Bq6",2014-09-07,2014-09-07,"YB","B","6","Myt","Mytilus_spp","Type 7",24,0.0875,274.285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-09-07_YB-Bq1",2014-09-07,2014-09-07,"YB","B","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-09-07_YB-Bq5",2014-09-07,2014-09-07,"YB","B","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-09-07_YB-Bq6",2014-09-07,2014-09-07,"YB","B","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-09-07_YB-Bq1",2014-09-07,2014-09-07,"YB","B","1","Mt","Mytilus_trossulus","Type 15",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-09-07_YB-Bq5",2014-09-07,2014-09-07,"YB","B","5","Mt","Mytilus_trossulus","Type 15",29,0.0875,331.428571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-09-07_YB-Bq6",2014-09-07,2014-09-07,"YB","B","6","Mt","Mytilus_trossulus","Type 15",13,0.0875,148.571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-09-07_YB-Bq1",2014-09-07,2014-09-07,"YB","B","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-09-07_YB-Bq5",2014-09-07,2014-09-07,"YB","B","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-09-07_YB-Bq6",2014-09-07,2014-09-07,"YB","B","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-09-07_YB-Bq1",2014-09-07,2014-09-07,"YB","B","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-09-07_YB-Bq5",2014-09-07,2014-09-07,"YB","B","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-09-07_YB-Bq6",2014-09-07,2014-09-07,"YB","B","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-09-07_YB-Bq1",2014-09-07,2014-09-07,"YB","B","1","Nc","Nucella_canaliculata","Type 10",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-09-07_YB-Bq5",2014-09-07,2014-09-07,"YB","B","5","Nc","Nucella_canaliculata","Type 10",33,0.0875,377.142857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-09-07_YB-Bq6",2014-09-07,2014-09-07,"YB","B","6","Nc","Nucella_canaliculata","Type 10",10,0.0875,114.285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-09-07_YB-Bq1",2014-09-07,2014-09-07,"YB","B","1","Negg","Nucella_eggs","Type 26",26,0.0875,297.142857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-09-07_YB-Bq5",2014-09-07,2014-09-07,"YB","B","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-09-07_YB-Bq6",2014-09-07,2014-09-07,"YB","B","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-09-07_YB-Bq1",2014-09-07,2014-09-07,"YB","B","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-09-07_YB-Bq5",2014-09-07,2014-09-07,"YB","B","5","No","Nucella_ostrina","Type 9",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-09-07_YB-Bq6",2014-09-07,2014-09-07,"YB","B","6","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-09-07_YB-Bq1",2014-09-07,2014-09-07,"YB","B","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-09-07_YB-Bq5",2014-09-07,2014-09-07,"YB","B","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-09-07_YB-Bq6",2014-09-07,2014-09-07,"YB","B","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-09-07_YB-Bq1",2014-09-07,2014-09-07,"YB","B","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-09-07_YB-Bq5",2014-09-07,2014-09-07,"YB","B","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-09-07_YB-Bq6",2014-09-07,2014-09-07,"YB","B","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-09-07_YB-Bq1",2014-09-07,2014-09-07,"YB","B","1","Pp","Pollicipes_polymerus","Type 11",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-09-07_YB-Bq5",2014-09-07,2014-09-07,"YB","B","5","Pp","Pollicipes_polymerus","Type 11",16,0.0875,182.857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-09-07_YB-Bq6",2014-09-07,2014-09-07,"YB","B","6","Pp","Pollicipes_polymerus","Type 11",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-09-07_YB-Bq1",2014-09-07,2014-09-07,"YB","B","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-09-07_YB-Bq5",2014-09-07,2014-09-07,"YB","B","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-09-07_YB-Bq6",2014-09-07,2014-09-07,"YB","B","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-09-07_YB-Bq1",2014-09-07,2014-09-07,"YB","B","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-09-07_YB-Bq5",2014-09-07,2014-09-07,"YB","B","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-09-07_YB-Bq6",2014-09-07,2014-09-07,"YB","B","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-09-07_YB-Bq1",2014-09-07,2014-09-07,"YB","B","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-09-07_YB-Bq5",2014-09-07,2014-09-07,"YB","B","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Mussel, limpet, and littorine counts likely low due to blur and glare."
+"2014-09-07_YB-Bq6",2014-09-07,2014-09-07,"YB","B","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-09-07_YB-BBq1",2014-09-07,2014-09-07,"YB","BB","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to blur"
+"2014-09-07_YB-BBq2",2014-09-07,2014-09-07,"YB","BB","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-09-07_YB-BBq9",2014-09-07,2014-09-07,"YB","BB","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-09-07_YB-BBq1",2014-09-07,2014-09-07,"YB","BB","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to blur"
+"2014-09-07_YB-BBq2",2014-09-07,2014-09-07,"YB","BB","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-09-07_YB-BBq9",2014-09-07,2014-09-07,"YB","BB","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-09-07_YB-BBq1",2014-09-07,2014-09-07,"YB","BB","1","Bg","Balanus_glandula","Type 1",299,0.0875,3417.14285714286,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to blur"
+"2014-09-07_YB-BBq2",2014-09-07,2014-09-07,"YB","BB","2","Bg","Balanus_glandula","Type 1",545,0.0875,6228.57142857143,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-09-07_YB-BBq9",2014-09-07,2014-09-07,"YB","BB","9","Bg","Balanus_glandula","Type 1",249,0.015625,15936,"c","Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-09-07_YB-BBq1",2014-09-07,2014-09-07,"YB","BB","1","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to blur"
+"2014-09-07_YB-BBq2",2014-09-07,2014-09-07,"YB","BB","2","BgD","Balanus_glandula_(dead)","Type 2",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-09-07_YB-BBq9",2014-09-07,2014-09-07,"YB","BB","9","BgD","Balanus_glandula_(dead)","Type 2",6,0.015625,384,"c","Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-09-07_YB-BBq1",2014-09-07,2014-09-07,"YB","BB","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to blur"
+"2014-09-07_YB-BBq2",2014-09-07,2014-09-07,"YB","BB","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-09-07_YB-BBq9",2014-09-07,2014-09-07,"YB","BB","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-09-07_YB-BBq1",2014-09-07,2014-09-07,"YB","BB","1","Cth","Chthamalus_dalli","Type 3",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to blur"
+"2014-09-07_YB-BBq2",2014-09-07,2014-09-07,"YB","BB","2","Cth","Chthamalus_dalli","Type 3",22,0.0875,251.428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-09-07_YB-BBq9",2014-09-07,2014-09-07,"YB","BB","9","Cth","Chthamalus_dalli","Type 3",1,0.015625,64,"c","Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-09-07_YB-BBq1",2014-09-07,2014-09-07,"YB","BB","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to blur"
+"2014-09-07_YB-BBq2",2014-09-07,2014-09-07,"YB","BB","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-09-07_YB-BBq9",2014-09-07,2014-09-07,"YB","BB","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-09-07_YB-BBq1",2014-09-07,2014-09-07,"YB","BB","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to blur"
+"2014-09-07_YB-BBq2",2014-09-07,2014-09-07,"YB","BB","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-09-07_YB-BBq9",2014-09-07,2014-09-07,"YB","BB","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-09-07_YB-BBq1",2014-09-07,2014-09-07,"YB","BB","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to blur"
+"2014-09-07_YB-BBq2",2014-09-07,2014-09-07,"YB","BB","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-09-07_YB-BBq9",2014-09-07,2014-09-07,"YB","BB","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-09-07_YB-BBq1",2014-09-07,2014-09-07,"YB","BB","1","Lim","Limpets","Type 12",80,0.0875,914.285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to blur"
+"2014-09-07_YB-BBq2",2014-09-07,2014-09-07,"YB","BB","2","Lim","Limpets","Type 12",161,0.0875,1840,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-09-07_YB-BBq9",2014-09-07,2014-09-07,"YB","BB","9","Lim","Limpets","Type 12",134,0.0875,1531.42857142857,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-09-07_YB-BBq1",2014-09-07,2014-09-07,"YB","BB","1","Ls","Littorina_sitkana","Type 13",201,0.0875,2297.14285714286,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to blur"
+"2014-09-07_YB-BBq2",2014-09-07,2014-09-07,"YB","BB","2","Ls","Littorina_sitkana","Type 13",302,0.0875,3451.42857142857,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-09-07_YB-BBq9",2014-09-07,2014-09-07,"YB","BB","9","Ls","Littorina_sitkana","Type 13",571,0.0875,6525.71428571429,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-09-07_YB-BBq1",2014-09-07,2014-09-07,"YB","BB","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to blur"
+"2014-09-07_YB-BBq2",2014-09-07,2014-09-07,"YB","BB","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-09-07_YB-BBq9",2014-09-07,2014-09-07,"YB","BB","9","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-09-07_YB-BBq1",2014-09-07,2014-09-07,"YB","BB","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to blur"
+"2014-09-07_YB-BBq2",2014-09-07,2014-09-07,"YB","BB","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-09-07_YB-BBq9",2014-09-07,2014-09-07,"YB","BB","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-09-07_YB-BBq1",2014-09-07,2014-09-07,"YB","BB","1","Myt","Mytilus_spp","Type 7",430,0.0875,4914.28571428571,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to blur"
+"2014-09-07_YB-BBq2",2014-09-07,2014-09-07,"YB","BB","2","Myt","Mytilus_spp","Type 7",336,0.0875,3840,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-09-07_YB-BBq9",2014-09-07,2014-09-07,"YB","BB","9","Myt","Mytilus_spp","Type 7",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-09-07_YB-BBq1",2014-09-07,2014-09-07,"YB","BB","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to blur"
+"2014-09-07_YB-BBq2",2014-09-07,2014-09-07,"YB","BB","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-09-07_YB-BBq9",2014-09-07,2014-09-07,"YB","BB","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-09-07_YB-BBq1",2014-09-07,2014-09-07,"YB","BB","1","Mt","Mytilus_trossulus","Type 15",129,0.0875,1474.28571428571,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to blur"
+"2014-09-07_YB-BBq2",2014-09-07,2014-09-07,"YB","BB","2","Mt","Mytilus_trossulus","Type 15",65,0.0875,742.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-09-07_YB-BBq9",2014-09-07,2014-09-07,"YB","BB","9","Mt","Mytilus_trossulus","Type 15",70,0.015625,4480,"c","Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-09-07_YB-BBq1",2014-09-07,2014-09-07,"YB","BB","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to blur"
+"2014-09-07_YB-BBq2",2014-09-07,2014-09-07,"YB","BB","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-09-07_YB-BBq9",2014-09-07,2014-09-07,"YB","BB","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-09-07_YB-BBq1",2014-09-07,2014-09-07,"YB","BB","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to blur"
+"2014-09-07_YB-BBq2",2014-09-07,2014-09-07,"YB","BB","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-09-07_YB-BBq9",2014-09-07,2014-09-07,"YB","BB","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-09-07_YB-BBq1",2014-09-07,2014-09-07,"YB","BB","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to blur"
+"2014-09-07_YB-BBq2",2014-09-07,2014-09-07,"YB","BB","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-09-07_YB-BBq9",2014-09-07,2014-09-07,"YB","BB","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-09-07_YB-BBq1",2014-09-07,2014-09-07,"YB","BB","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to blur"
+"2014-09-07_YB-BBq2",2014-09-07,2014-09-07,"YB","BB","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-09-07_YB-BBq9",2014-09-07,2014-09-07,"YB","BB","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-09-07_YB-BBq1",2014-09-07,2014-09-07,"YB","BB","1","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to blur"
+"2014-09-07_YB-BBq2",2014-09-07,2014-09-07,"YB","BB","2","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-09-07_YB-BBq9",2014-09-07,2014-09-07,"YB","BB","9","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-09-07_YB-BBq1",2014-09-07,2014-09-07,"YB","BB","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to blur"
+"2014-09-07_YB-BBq2",2014-09-07,2014-09-07,"YB","BB","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-09-07_YB-BBq9",2014-09-07,2014-09-07,"YB","BB","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-09-07_YB-BBq1",2014-09-07,2014-09-07,"YB","BB","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to blur"
+"2014-09-07_YB-BBq2",2014-09-07,2014-09-07,"YB","BB","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-09-07_YB-BBq9",2014-09-07,2014-09-07,"YB","BB","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-09-07_YB-BBq1",2014-09-07,2014-09-07,"YB","BB","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to blur"
+"2014-09-07_YB-BBq2",2014-09-07,2014-09-07,"YB","BB","2","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-09-07_YB-BBq9",2014-09-07,2014-09-07,"YB","BB","9","Pp","Pollicipes_polymerus","Type 11",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-09-07_YB-BBq1",2014-09-07,2014-09-07,"YB","BB","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to blur"
+"2014-09-07_YB-BBq2",2014-09-07,2014-09-07,"YB","BB","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-09-07_YB-BBq9",2014-09-07,2014-09-07,"YB","BB","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-09-07_YB-BBq1",2014-09-07,2014-09-07,"YB","BB","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to blur"
+"2014-09-07_YB-BBq2",2014-09-07,2014-09-07,"YB","BB","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-09-07_YB-BBq9",2014-09-07,2014-09-07,"YB","BB","9","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-09-07_YB-BBq1",2014-09-07,2014-09-07,"YB","BB","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to blur"
+"2014-09-07_YB-BBq2",2014-09-07,2014-09-07,"YB","BB","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2014-09-07_YB-BBq9",2014-09-07,2014-09-07,"YB","BB","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-09-07_YB-BCq3",2014-09-07,2014-09-07,"YB","BC","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","11%",""
+"2014-09-07_YB-BCq5",2014-09-07,2014-09-07,"YB","BC","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Full","7%",""
+"2014-09-07_YB-BCq9",2014-09-07,2014-09-07,"YB","BC","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","40%",""
+"2014-09-07_YB-BCq3",2014-09-07,2014-09-07,"YB","BC","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","11%",""
+"2014-09-07_YB-BCq5",2014-09-07,2014-09-07,"YB","BC","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Full","7%",""
+"2014-09-07_YB-BCq9",2014-09-07,2014-09-07,"YB","BC","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","40%",""
+"2014-09-07_YB-BCq3",2014-09-07,2014-09-07,"YB","BC","3","Bg","Balanus_glandula","Type 1",292,0.015625,18688,"c","Isaac Shepard","Finished","Full","Cropped","11%",""
+"2014-09-07_YB-BCq5",2014-09-07,2014-09-07,"YB","BC","5","Bg","Balanus_glandula","Type 1",835,0.0875,9542.85714285714,NA,"Isaac Shepard","Finished","Full","Full","7%",""
+"2014-09-07_YB-BCq9",2014-09-07,2014-09-07,"YB","BC","9","Bg","Balanus_glandula","Type 1",161,0.015625,10304,"c","Isaac Shepard","Finished","Full","Cropped","40%",""
+"2014-09-07_YB-BCq3",2014-09-07,2014-09-07,"YB","BC","3","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","11%",""
+"2014-09-07_YB-BCq5",2014-09-07,2014-09-07,"YB","BC","5","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Full","7%",""
+"2014-09-07_YB-BCq9",2014-09-07,2014-09-07,"YB","BC","9","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","40%",""
+"2014-09-07_YB-BCq3",2014-09-07,2014-09-07,"YB","BC","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","11%",""
+"2014-09-07_YB-BCq5",2014-09-07,2014-09-07,"YB","BC","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Full","7%",""
+"2014-09-07_YB-BCq9",2014-09-07,2014-09-07,"YB","BC","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","40%",""
+"2014-09-07_YB-BCq3",2014-09-07,2014-09-07,"YB","BC","3","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","11%",""
+"2014-09-07_YB-BCq5",2014-09-07,2014-09-07,"YB","BC","5","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Full","7%",""
+"2014-09-07_YB-BCq9",2014-09-07,2014-09-07,"YB","BC","9","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","40%",""
+"2014-09-07_YB-BCq3",2014-09-07,2014-09-07,"YB","BC","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","11%",""
+"2014-09-07_YB-BCq5",2014-09-07,2014-09-07,"YB","BC","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Full","7%",""
+"2014-09-07_YB-BCq9",2014-09-07,2014-09-07,"YB","BC","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Isaac Shepard","Finished","Full","Cropped","40%",""
+"2014-09-07_YB-BCq3",2014-09-07,2014-09-07,"YB","BC","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","11%",""
+"2014-09-07_YB-BCq5",2014-09-07,2014-09-07,"YB","BC","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Full","7%",""
+"2014-09-07_YB-BCq9",2014-09-07,2014-09-07,"YB","BC","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","40%",""
+"2014-09-07_YB-BCq3",2014-09-07,2014-09-07,"YB","BC","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","11%",""
+"2014-09-07_YB-BCq5",2014-09-07,2014-09-07,"YB","BC","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Full","7%",""
+"2014-09-07_YB-BCq9",2014-09-07,2014-09-07,"YB","BC","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","40%",""
+"2014-09-07_YB-BCq3",2014-09-07,2014-09-07,"YB","BC","3","Lim","Limpets","Type 12",174,0.0875,1988.57142857143,NA,"Isaac Shepard","Finished","Full","Cropped","11%",""
+"2014-09-07_YB-BCq5",2014-09-07,2014-09-07,"YB","BC","5","Lim","Limpets","Type 12",185,0.0875,2114.28571428571,NA,"Isaac Shepard","Finished","Full","Full","7%",""
+"2014-09-07_YB-BCq9",2014-09-07,2014-09-07,"YB","BC","9","Lim","Limpets","Type 12",88,0.0875,1005.71428571429,NA,"Isaac Shepard","Finished","Full","Cropped","40%",""
+"2014-09-07_YB-BCq3",2014-09-07,2014-09-07,"YB","BC","3","Ls","Littorina_sitkana","Type 13",371,0.0875,4240,NA,"Isaac Shepard","Finished","Full","Cropped","11%",""
+"2014-09-07_YB-BCq5",2014-09-07,2014-09-07,"YB","BC","5","Ls","Littorina_sitkana","Type 13",208,0.0875,2377.14285714286,NA,"Isaac Shepard","Finished","Full","Full","7%",""
+"2014-09-07_YB-BCq9",2014-09-07,2014-09-07,"YB","BC","9","Ls","Littorina_sitkana","Type 13",102,0.0875,1165.71428571429,NA,"Isaac Shepard","Finished","Full","Cropped","40%",""
+"2014-09-07_YB-BCq3",2014-09-07,2014-09-07,"YB","BC","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","11%",""
+"2014-09-07_YB-BCq5",2014-09-07,2014-09-07,"YB","BC","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Full","7%",""
+"2014-09-07_YB-BCq9",2014-09-07,2014-09-07,"YB","BC","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","40%",""
+"2014-09-07_YB-BCq3",2014-09-07,2014-09-07,"YB","BC","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","11%",""
+"2014-09-07_YB-BCq5",2014-09-07,2014-09-07,"YB","BC","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Full","7%",""
+"2014-09-07_YB-BCq9",2014-09-07,2014-09-07,"YB","BC","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","40%",""
+"2014-09-07_YB-BCq3",2014-09-07,2014-09-07,"YB","BC","3","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","11%",""
+"2014-09-07_YB-BCq5",2014-09-07,2014-09-07,"YB","BC","5","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Full","7%",""
+"2014-09-07_YB-BCq9",2014-09-07,2014-09-07,"YB","BC","9","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","40%",""
+"2014-09-07_YB-BCq3",2014-09-07,2014-09-07,"YB","BC","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","11%",""
+"2014-09-07_YB-BCq5",2014-09-07,2014-09-07,"YB","BC","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Full","7%",""
+"2014-09-07_YB-BCq9",2014-09-07,2014-09-07,"YB","BC","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","40%",""
+"2014-09-07_YB-BCq3",2014-09-07,2014-09-07,"YB","BC","3","Mt","Mytilus_trossulus","Type 15",96,0.0875,1097.14285714286,NA,"Isaac Shepard","Finished","Full","Cropped","11%",""
+"2014-09-07_YB-BCq5",2014-09-07,2014-09-07,"YB","BC","5","Mt","Mytilus_trossulus","Type 15",444,0.0875,5074.28571428571,NA,"Isaac Shepard","Finished","Full","Full","7%",""
+"2014-09-07_YB-BCq9",2014-09-07,2014-09-07,"YB","BC","9","Mt","Mytilus_trossulus","Type 15",262,0.0875,2994.28571428571,NA,"Isaac Shepard","Finished","Full","Cropped","40%",""
+"2014-09-07_YB-BCq3",2014-09-07,2014-09-07,"YB","BC","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","11%",""
+"2014-09-07_YB-BCq5",2014-09-07,2014-09-07,"YB","BC","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Full","7%",""
+"2014-09-07_YB-BCq9",2014-09-07,2014-09-07,"YB","BC","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","40%",""
+"2014-09-07_YB-BCq3",2014-09-07,2014-09-07,"YB","BC","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","11%",""
+"2014-09-07_YB-BCq5",2014-09-07,2014-09-07,"YB","BC","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Full","7%",""
+"2014-09-07_YB-BCq9",2014-09-07,2014-09-07,"YB","BC","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","40%",""
+"2014-09-07_YB-BCq3",2014-09-07,2014-09-07,"YB","BC","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","11%",""
+"2014-09-07_YB-BCq5",2014-09-07,2014-09-07,"YB","BC","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Full","7%",""
+"2014-09-07_YB-BCq9",2014-09-07,2014-09-07,"YB","BC","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","40%",""
+"2014-09-07_YB-BCq3",2014-09-07,2014-09-07,"YB","BC","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","11%",""
+"2014-09-07_YB-BCq5",2014-09-07,2014-09-07,"YB","BC","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Full","7%",""
+"2014-09-07_YB-BCq9",2014-09-07,2014-09-07,"YB","BC","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","40%",""
+"2014-09-07_YB-BCq3",2014-09-07,2014-09-07,"YB","BC","3","No","Nucella_ostrina","Type 9",14,0.0875,160,NA,"Isaac Shepard","Finished","Full","Cropped","11%",""
+"2014-09-07_YB-BCq5",2014-09-07,2014-09-07,"YB","BC","5","No","Nucella_ostrina","Type 9",13,0.0875,148.571428571429,NA,"Isaac Shepard","Finished","Full","Full","7%",""
+"2014-09-07_YB-BCq9",2014-09-07,2014-09-07,"YB","BC","9","No","Nucella_ostrina","Type 9",8,0.0875,91.4285714285714,NA,"Isaac Shepard","Finished","Full","Cropped","40%",""
+"2014-09-07_YB-BCq3",2014-09-07,2014-09-07,"YB","BC","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","11%",""
+"2014-09-07_YB-BCq5",2014-09-07,2014-09-07,"YB","BC","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Full","7%",""
+"2014-09-07_YB-BCq9",2014-09-07,2014-09-07,"YB","BC","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","40%",""
+"2014-09-07_YB-BCq3",2014-09-07,2014-09-07,"YB","BC","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","11%",""
+"2014-09-07_YB-BCq5",2014-09-07,2014-09-07,"YB","BC","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Full","7%",""
+"2014-09-07_YB-BCq9",2014-09-07,2014-09-07,"YB","BC","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","40%",""
+"2014-09-07_YB-BCq3",2014-09-07,2014-09-07,"YB","BC","3","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","11%",""
+"2014-09-07_YB-BCq5",2014-09-07,2014-09-07,"YB","BC","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Full","7%",""
+"2014-09-07_YB-BCq9",2014-09-07,2014-09-07,"YB","BC","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","40%",""
+"2014-09-07_YB-BCq3",2014-09-07,2014-09-07,"YB","BC","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","11%",""
+"2014-09-07_YB-BCq5",2014-09-07,2014-09-07,"YB","BC","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Full","7%",""
+"2014-09-07_YB-BCq9",2014-09-07,2014-09-07,"YB","BC","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","40%",""
+"2014-09-07_YB-BCq3",2014-09-07,2014-09-07,"YB","BC","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","11%",""
+"2014-09-07_YB-BCq5",2014-09-07,2014-09-07,"YB","BC","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Full","7%",""
+"2014-09-07_YB-BCq9",2014-09-07,2014-09-07,"YB","BC","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","40%",""
+"2014-09-07_YB-BCq3",2014-09-07,2014-09-07,"YB","BC","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","11%",""
+"2014-09-07_YB-BCq5",2014-09-07,2014-09-07,"YB","BC","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Full","7%",""
+"2014-09-07_YB-BCq9",2014-09-07,2014-09-07,"YB","BC","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Cropped","40%",""
+"2014-09-07_YB-BDq1",2014-09-07,2014-09-07,"YB","BD","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","80%","Counts may be low due to algae."
+"2014-09-07_YB-BDq5",2014-09-07,2014-09-07,"YB","BD","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts may be low due to algae and glare."
+"2014-09-07_YB-BDq7",2014-09-07,2014-09-07,"YB","BD","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts may be low due to algae."
+"2014-09-07_YB-BDq1",2014-09-07,2014-09-07,"YB","BD","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","80%","Counts may be low due to algae."
+"2014-09-07_YB-BDq5",2014-09-07,2014-09-07,"YB","BD","5","Ae","Anemones","Type 14",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts may be low due to algae and glare."
+"2014-09-07_YB-BDq7",2014-09-07,2014-09-07,"YB","BD","7","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts may be low due to algae."
+"2014-09-07_YB-BDq1",2014-09-07,2014-09-07,"YB","BD","1","Bg","Balanus_glandula","Type 1",198,0.0875,2262.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","80%","Counts may be low due to algae."
+"2014-09-07_YB-BDq5",2014-09-07,2014-09-07,"YB","BD","5","Bg","Balanus_glandula","Type 1",199,0.0875,2274.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts may be low due to algae and glare."
+"2014-09-07_YB-BDq7",2014-09-07,2014-09-07,"YB","BD","7","Bg","Balanus_glandula","Type 1",1092,0.0875,12480,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts may be low due to algae."
+"2014-09-07_YB-BDq1",2014-09-07,2014-09-07,"YB","BD","1","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","80%","Counts may be low due to algae."
+"2014-09-07_YB-BDq5",2014-09-07,2014-09-07,"YB","BD","5","BgD","Balanus_glandula_(dead)","Type 2",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts may be low due to algae and glare."
+"2014-09-07_YB-BDq7",2014-09-07,2014-09-07,"YB","BD","7","BgD","Balanus_glandula_(dead)","Type 2",10,0.0875,114.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts may be low due to algae."
+"2014-09-07_YB-BDq1",2014-09-07,2014-09-07,"YB","BD","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","80%","Counts may be low due to algae."
+"2014-09-07_YB-BDq5",2014-09-07,2014-09-07,"YB","BD","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts may be low due to algae and glare."
+"2014-09-07_YB-BDq7",2014-09-07,2014-09-07,"YB","BD","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts may be low due to algae."
+"2014-09-07_YB-BDq1",2014-09-07,2014-09-07,"YB","BD","1","Cth","Chthamalus_dalli","Type 3",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","80%","Counts may be low due to algae."
+"2014-09-07_YB-BDq5",2014-09-07,2014-09-07,"YB","BD","5","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts may be low due to algae and glare."
+"2014-09-07_YB-BDq7",2014-09-07,2014-09-07,"YB","BD","7","Cth","Chthamalus_dalli","Type 3",13,0.0875,148.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts may be low due to algae."
+"2014-09-07_YB-BDq1",2014-09-07,2014-09-07,"YB","BD","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","80%","Counts may be low due to algae."
+"2014-09-07_YB-BDq5",2014-09-07,2014-09-07,"YB","BD","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts may be low due to algae and glare."
+"2014-09-07_YB-BDq7",2014-09-07,2014-09-07,"YB","BD","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts may be low due to algae."
+"2014-09-07_YB-BDq1",2014-09-07,2014-09-07,"YB","BD","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","80%","Counts may be low due to algae."
+"2014-09-07_YB-BDq5",2014-09-07,2014-09-07,"YB","BD","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts may be low due to algae and glare."
+"2014-09-07_YB-BDq7",2014-09-07,2014-09-07,"YB","BD","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts may be low due to algae."
+"2014-09-07_YB-BDq1",2014-09-07,2014-09-07,"YB","BD","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","80%","Counts may be low due to algae."
+"2014-09-07_YB-BDq5",2014-09-07,2014-09-07,"YB","BD","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts may be low due to algae and glare."
+"2014-09-07_YB-BDq7",2014-09-07,2014-09-07,"YB","BD","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts may be low due to algae."
+"2014-09-07_YB-BDq1",2014-09-07,2014-09-07,"YB","BD","1","Lim","Limpets","Type 12",232,0.0875,2651.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","80%","Counts may be low due to algae."
+"2014-09-07_YB-BDq5",2014-09-07,2014-09-07,"YB","BD","5","Lim","Limpets","Type 12",171,0.0875,1954.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts may be low due to algae and glare."
+"2014-09-07_YB-BDq7",2014-09-07,2014-09-07,"YB","BD","7","Lim","Limpets","Type 12",251,0.0875,2868.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts may be low due to algae."
+"2014-09-07_YB-BDq1",2014-09-07,2014-09-07,"YB","BD","1","Ls","Littorina_sitkana","Type 13",185,0.0875,2114.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","80%","Counts may be low due to algae."
+"2014-09-07_YB-BDq5",2014-09-07,2014-09-07,"YB","BD","5","Ls","Littorina_sitkana","Type 13",99,0.0875,1131.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts may be low due to algae and glare."
+"2014-09-07_YB-BDq7",2014-09-07,2014-09-07,"YB","BD","7","Ls","Littorina_sitkana","Type 13",128,0.0875,1462.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts may be low due to algae."
+"2014-09-07_YB-BDq1",2014-09-07,2014-09-07,"YB","BD","1","Mc","Mytilus_californianus","Type 17",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","80%","Counts may be low due to algae."
+"2014-09-07_YB-BDq5",2014-09-07,2014-09-07,"YB","BD","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts may be low due to algae and glare."
+"2014-09-07_YB-BDq7",2014-09-07,2014-09-07,"YB","BD","7","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts may be low due to algae."
+"2014-09-07_YB-BDq1",2014-09-07,2014-09-07,"YB","BD","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","80%","Counts may be low due to algae."
+"2014-09-07_YB-BDq5",2014-09-07,2014-09-07,"YB","BD","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts may be low due to algae and glare."
+"2014-09-07_YB-BDq7",2014-09-07,2014-09-07,"YB","BD","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts may be low due to algae."
+"2014-09-07_YB-BDq1",2014-09-07,2014-09-07,"YB","BD","1","Myt","Mytilus_spp","Type 7",22,0.0875,251.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","80%","Counts may be low due to algae."
+"2014-09-07_YB-BDq5",2014-09-07,2014-09-07,"YB","BD","5","Myt","Mytilus_spp","Type 7",22,0.0875,251.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts may be low due to algae and glare."
+"2014-09-07_YB-BDq7",2014-09-07,2014-09-07,"YB","BD","7","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts may be low due to algae."
+"2014-09-07_YB-BDq1",2014-09-07,2014-09-07,"YB","BD","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","80%","Counts may be low due to algae."
+"2014-09-07_YB-BDq5",2014-09-07,2014-09-07,"YB","BD","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts may be low due to algae and glare."
+"2014-09-07_YB-BDq7",2014-09-07,2014-09-07,"YB","BD","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts may be low due to algae."
+"2014-09-07_YB-BDq1",2014-09-07,2014-09-07,"YB","BD","1","Mt","Mytilus_trossulus","Type 15",133,0.0875,1520,NA,"Beatriz Vaca","Finished","Full","Full","80%","Counts may be low due to algae."
+"2014-09-07_YB-BDq5",2014-09-07,2014-09-07,"YB","BD","5","Mt","Mytilus_trossulus","Type 15",229,0.0875,2617.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts may be low due to algae and glare."
+"2014-09-07_YB-BDq7",2014-09-07,2014-09-07,"YB","BD","7","Mt","Mytilus_trossulus","Type 15",240,0.0875,2742.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts may be low due to algae."
+"2014-09-07_YB-BDq1",2014-09-07,2014-09-07,"YB","BD","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","80%","Counts may be low due to algae."
+"2014-09-07_YB-BDq5",2014-09-07,2014-09-07,"YB","BD","5","MtD","Mytilus_trossulus_(dead)","Type 16",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts may be low due to algae and glare."
+"2014-09-07_YB-BDq7",2014-09-07,2014-09-07,"YB","BD","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts may be low due to algae."
+"2014-09-07_YB-BDq1",2014-09-07,2014-09-07,"YB","BD","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","80%","Counts may be low due to algae."
+"2014-09-07_YB-BDq5",2014-09-07,2014-09-07,"YB","BD","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts may be low due to algae and glare."
+"2014-09-07_YB-BDq7",2014-09-07,2014-09-07,"YB","BD","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts may be low due to algae."
+"2014-09-07_YB-BDq1",2014-09-07,2014-09-07,"YB","BD","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","80%","Counts may be low due to algae."
+"2014-09-07_YB-BDq5",2014-09-07,2014-09-07,"YB","BD","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts may be low due to algae and glare."
+"2014-09-07_YB-BDq7",2014-09-07,2014-09-07,"YB","BD","7","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts may be low due to algae."
+"2014-09-07_YB-BDq1",2014-09-07,2014-09-07,"YB","BD","1","Negg","Nucella_eggs","Type 26",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","80%","Counts may be low due to algae."
+"2014-09-07_YB-BDq5",2014-09-07,2014-09-07,"YB","BD","5","Negg","Nucella_eggs","Type 26",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts may be low due to algae and glare."
+"2014-09-07_YB-BDq7",2014-09-07,2014-09-07,"YB","BD","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts may be low due to algae."
+"2014-09-07_YB-BDq1",2014-09-07,2014-09-07,"YB","BD","1","No","Nucella_ostrina","Type 9",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","80%","Counts may be low due to algae."
+"2014-09-07_YB-BDq5",2014-09-07,2014-09-07,"YB","BD","5","No","Nucella_ostrina","Type 9",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts may be low due to algae and glare."
+"2014-09-07_YB-BDq7",2014-09-07,2014-09-07,"YB","BD","7","No","Nucella_ostrina","Type 9",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts may be low due to algae."
+"2014-09-07_YB-BDq1",2014-09-07,2014-09-07,"YB","BD","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","80%","Counts may be low due to algae."
+"2014-09-07_YB-BDq5",2014-09-07,2014-09-07,"YB","BD","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts may be low due to algae and glare."
+"2014-09-07_YB-BDq7",2014-09-07,2014-09-07,"YB","BD","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts may be low due to algae."
+"2014-09-07_YB-BDq1",2014-09-07,2014-09-07,"YB","BD","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","80%","Counts may be low due to algae."
+"2014-09-07_YB-BDq5",2014-09-07,2014-09-07,"YB","BD","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts may be low due to algae and glare."
+"2014-09-07_YB-BDq7",2014-09-07,2014-09-07,"YB","BD","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts may be low due to algae."
+"2014-09-07_YB-BDq1",2014-09-07,2014-09-07,"YB","BD","1","Pp","Pollicipes_polymerus","Type 11",119,0.0875,1360,NA,"Beatriz Vaca","Finished","Full","Full","80%","Counts may be low due to algae."
+"2014-09-07_YB-BDq5",2014-09-07,2014-09-07,"YB","BD","5","Pp","Pollicipes_polymerus","Type 11",204,0.0875,2331.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts may be low due to algae and glare."
+"2014-09-07_YB-BDq7",2014-09-07,2014-09-07,"YB","BD","7","Pp","Pollicipes_polymerus","Type 11",138,0.0875,1577.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts may be low due to algae."
+"2014-09-07_YB-BDq1",2014-09-07,2014-09-07,"YB","BD","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","80%","Counts may be low due to algae."
+"2014-09-07_YB-BDq5",2014-09-07,2014-09-07,"YB","BD","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts may be low due to algae and glare."
+"2014-09-07_YB-BDq7",2014-09-07,2014-09-07,"YB","BD","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts may be low due to algae."
+"2014-09-07_YB-BDq1",2014-09-07,2014-09-07,"YB","BD","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","80%","Counts may be low due to algae."
+"2014-09-07_YB-BDq5",2014-09-07,2014-09-07,"YB","BD","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts may be low due to algae and glare."
+"2014-09-07_YB-BDq7",2014-09-07,2014-09-07,"YB","BD","7","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts may be low due to algae."
+"2014-09-07_YB-BDq1",2014-09-07,2014-09-07,"YB","BD","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","80%","Counts may be low due to algae."
+"2014-09-07_YB-BDq5",2014-09-07,2014-09-07,"YB","BD","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts may be low due to algae and glare."
+"2014-09-07_YB-BDq7",2014-09-07,2014-09-07,"YB","BD","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts may be low due to algae."
+"2014-09-07_YB-BEq2",2014-09-07,2014-09-07,"YB","BE","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to algae film"
+"2014-09-07_YB-BEq3",2014-09-07,2014-09-07,"YB","BE","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Algae is mostly a thin film."
+"2014-09-07_YB-BEq6",2014-09-07,2014-09-07,"YB","BE","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Algae is mostly a thin film. Counts may be low due to algae."
+"2014-09-07_YB-BEq2",2014-09-07,2014-09-07,"YB","BE","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to algae film"
+"2014-09-07_YB-BEq3",2014-09-07,2014-09-07,"YB","BE","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Algae is mostly a thin film."
+"2014-09-07_YB-BEq6",2014-09-07,2014-09-07,"YB","BE","6","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Algae is mostly a thin film. Counts may be low due to algae."
+"2014-09-07_YB-BEq2",2014-09-07,2014-09-07,"YB","BE","2","Bg","Balanus_glandula","Type 1",1278,0.015625,81792,"c","Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to algae film"
+"2014-09-07_YB-BEq3",2014-09-07,2014-09-07,"YB","BE","3","Bg","Balanus_glandula","Type 1",1641,0.015625,105024,"c","Beatriz Vaca","Finished","Full","Cropped","50%","Algae is mostly a thin film."
+"2014-09-07_YB-BEq6",2014-09-07,2014-09-07,"YB","BE","6","Bg","Balanus_glandula","Type 1",1560,0.015625,99840,"c","Beatriz Vaca","Finished","Full","Cropped","65%","Algae is mostly a thin film. Counts may be low due to algae."
+"2014-09-07_YB-BEq2",2014-09-07,2014-09-07,"YB","BE","2","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to algae film"
+"2014-09-07_YB-BEq3",2014-09-07,2014-09-07,"YB","BE","3","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","50%","Algae is mostly a thin film."
+"2014-09-07_YB-BEq6",2014-09-07,2014-09-07,"YB","BE","6","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","65%","Algae is mostly a thin film. Counts may be low due to algae."
+"2014-09-07_YB-BEq2",2014-09-07,2014-09-07,"YB","BE","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to algae film"
+"2014-09-07_YB-BEq3",2014-09-07,2014-09-07,"YB","BE","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Algae is mostly a thin film."
+"2014-09-07_YB-BEq6",2014-09-07,2014-09-07,"YB","BE","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Algae is mostly a thin film. Counts may be low due to algae."
+"2014-09-07_YB-BEq2",2014-09-07,2014-09-07,"YB","BE","2","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to algae film"
+"2014-09-07_YB-BEq3",2014-09-07,2014-09-07,"YB","BE","3","Cth","Chthamalus_dalli","Type 3",4,0.015625,256,"c","Beatriz Vaca","Finished","Full","Cropped","50%","Algae is mostly a thin film."
+"2014-09-07_YB-BEq6",2014-09-07,2014-09-07,"YB","BE","6","Cth","Chthamalus_dalli","Type 3",28,0.015625,1792,"c","Beatriz Vaca","Finished","Full","Cropped","65%","Algae is mostly a thin film. Counts may be low due to algae."
+"2014-09-07_YB-BEq2",2014-09-07,2014-09-07,"YB","BE","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to algae film"
+"2014-09-07_YB-BEq3",2014-09-07,2014-09-07,"YB","BE","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","50%","Algae is mostly a thin film."
+"2014-09-07_YB-BEq6",2014-09-07,2014-09-07,"YB","BE","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","65%","Algae is mostly a thin film. Counts may be low due to algae."
+"2014-09-07_YB-BEq2",2014-09-07,2014-09-07,"YB","BE","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to algae film"
+"2014-09-07_YB-BEq3",2014-09-07,2014-09-07,"YB","BE","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Algae is mostly a thin film."
+"2014-09-07_YB-BEq6",2014-09-07,2014-09-07,"YB","BE","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Algae is mostly a thin film. Counts may be low due to algae."
+"2014-09-07_YB-BEq2",2014-09-07,2014-09-07,"YB","BE","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to algae film"
+"2014-09-07_YB-BEq3",2014-09-07,2014-09-07,"YB","BE","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Algae is mostly a thin film."
+"2014-09-07_YB-BEq6",2014-09-07,2014-09-07,"YB","BE","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Algae is mostly a thin film. Counts may be low due to algae."
+"2014-09-07_YB-BEq2",2014-09-07,2014-09-07,"YB","BE","2","Lim","Limpets","Type 12",38,0.0875,434.285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to algae film"
+"2014-09-07_YB-BEq3",2014-09-07,2014-09-07,"YB","BE","3","Lim","Limpets","Type 12",326,0.0875,3725.71428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Algae is mostly a thin film."
+"2014-09-07_YB-BEq6",2014-09-07,2014-09-07,"YB","BE","6","Lim","Limpets","Type 12",167,0.0875,1908.57142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Algae is mostly a thin film. Counts may be low due to algae."
+"2014-09-07_YB-BEq2",2014-09-07,2014-09-07,"YB","BE","2","Ls","Littorina_sitkana","Type 13",192,0.0875,2194.28571428571,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to algae film"
+"2014-09-07_YB-BEq3",2014-09-07,2014-09-07,"YB","BE","3","Ls","Littorina_sitkana","Type 13",227,0.0875,2594.28571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Algae is mostly a thin film."
+"2014-09-07_YB-BEq6",2014-09-07,2014-09-07,"YB","BE","6","Ls","Littorina_sitkana","Type 13",91,0.0875,1040,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Algae is mostly a thin film. Counts may be low due to algae."
+"2014-09-07_YB-BEq2",2014-09-07,2014-09-07,"YB","BE","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to algae film"
+"2014-09-07_YB-BEq3",2014-09-07,2014-09-07,"YB","BE","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Algae is mostly a thin film."
+"2014-09-07_YB-BEq6",2014-09-07,2014-09-07,"YB","BE","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Algae is mostly a thin film. Counts may be low due to algae."
+"2014-09-07_YB-BEq2",2014-09-07,2014-09-07,"YB","BE","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to algae film"
+"2014-09-07_YB-BEq3",2014-09-07,2014-09-07,"YB","BE","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Algae is mostly a thin film."
+"2014-09-07_YB-BEq6",2014-09-07,2014-09-07,"YB","BE","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Algae is mostly a thin film. Counts may be low due to algae."
+"2014-09-07_YB-BEq2",2014-09-07,2014-09-07,"YB","BE","2","Myt","Mytilus_spp","Type 7",177,0.0875,2022.85714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to algae film"
+"2014-09-07_YB-BEq3",2014-09-07,2014-09-07,"YB","BE","3","Myt","Mytilus_spp","Type 7",10,0.0875,114.285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Algae is mostly a thin film."
+"2014-09-07_YB-BEq6",2014-09-07,2014-09-07,"YB","BE","6","Myt","Mytilus_spp","Type 7",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Algae is mostly a thin film. Counts may be low due to algae."
+"2014-09-07_YB-BEq2",2014-09-07,2014-09-07,"YB","BE","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to algae film"
+"2014-09-07_YB-BEq3",2014-09-07,2014-09-07,"YB","BE","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Algae is mostly a thin film."
+"2014-09-07_YB-BEq6",2014-09-07,2014-09-07,"YB","BE","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Algae is mostly a thin film. Counts may be low due to algae."
+"2014-09-07_YB-BEq2",2014-09-07,2014-09-07,"YB","BE","2","Mt","Mytilus_trossulus","Type 15",4,0.0875,45.7142857142857,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to algae film"
+"2014-09-07_YB-BEq3",2014-09-07,2014-09-07,"YB","BE","3","Mt","Mytilus_trossulus","Type 15",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Algae is mostly a thin film."
+"2014-09-07_YB-BEq6",2014-09-07,2014-09-07,"YB","BE","6","Mt","Mytilus_trossulus","Type 15",14,0.0875,160,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Algae is mostly a thin film. Counts may be low due to algae."
+"2014-09-07_YB-BEq2",2014-09-07,2014-09-07,"YB","BE","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to algae film"
+"2014-09-07_YB-BEq3",2014-09-07,2014-09-07,"YB","BE","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Algae is mostly a thin film."
+"2014-09-07_YB-BEq6",2014-09-07,2014-09-07,"YB","BE","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Algae is mostly a thin film. Counts may be low due to algae."
+"2014-09-07_YB-BEq2",2014-09-07,2014-09-07,"YB","BE","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to algae film"
+"2014-09-07_YB-BEq3",2014-09-07,2014-09-07,"YB","BE","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Algae is mostly a thin film."
+"2014-09-07_YB-BEq6",2014-09-07,2014-09-07,"YB","BE","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Algae is mostly a thin film. Counts may be low due to algae."
+"2014-09-07_YB-BEq2",2014-09-07,2014-09-07,"YB","BE","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to algae film"
+"2014-09-07_YB-BEq3",2014-09-07,2014-09-07,"YB","BE","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Algae is mostly a thin film."
+"2014-09-07_YB-BEq6",2014-09-07,2014-09-07,"YB","BE","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Algae is mostly a thin film. Counts may be low due to algae."
+"2014-09-07_YB-BEq2",2014-09-07,2014-09-07,"YB","BE","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to algae film"
+"2014-09-07_YB-BEq3",2014-09-07,2014-09-07,"YB","BE","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Algae is mostly a thin film."
+"2014-09-07_YB-BEq6",2014-09-07,2014-09-07,"YB","BE","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Algae is mostly a thin film. Counts may be low due to algae."
+"2014-09-07_YB-BEq2",2014-09-07,2014-09-07,"YB","BE","2","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to algae film"
+"2014-09-07_YB-BEq3",2014-09-07,2014-09-07,"YB","BE","3","No","Nucella_ostrina","Type 9",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Algae is mostly a thin film."
+"2014-09-07_YB-BEq6",2014-09-07,2014-09-07,"YB","BE","6","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Algae is mostly a thin film. Counts may be low due to algae."
+"2014-09-07_YB-BEq2",2014-09-07,2014-09-07,"YB","BE","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to algae film"
+"2014-09-07_YB-BEq3",2014-09-07,2014-09-07,"YB","BE","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Algae is mostly a thin film."
+"2014-09-07_YB-BEq6",2014-09-07,2014-09-07,"YB","BE","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Algae is mostly a thin film. Counts may be low due to algae."
+"2014-09-07_YB-BEq2",2014-09-07,2014-09-07,"YB","BE","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to algae film"
+"2014-09-07_YB-BEq3",2014-09-07,2014-09-07,"YB","BE","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Algae is mostly a thin film."
+"2014-09-07_YB-BEq6",2014-09-07,2014-09-07,"YB","BE","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Algae is mostly a thin film. Counts may be low due to algae."
+"2014-09-07_YB-BEq2",2014-09-07,2014-09-07,"YB","BE","2","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to algae film"
+"2014-09-07_YB-BEq3",2014-09-07,2014-09-07,"YB","BE","3","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Algae is mostly a thin film."
+"2014-09-07_YB-BEq6",2014-09-07,2014-09-07,"YB","BE","6","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Algae is mostly a thin film. Counts may be low due to algae."
+"2014-09-07_YB-BEq2",2014-09-07,2014-09-07,"YB","BE","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to algae film"
+"2014-09-07_YB-BEq3",2014-09-07,2014-09-07,"YB","BE","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Algae is mostly a thin film."
+"2014-09-07_YB-BEq6",2014-09-07,2014-09-07,"YB","BE","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Algae is mostly a thin film. Counts may be low due to algae."
+"2014-09-07_YB-BEq2",2014-09-07,2014-09-07,"YB","BE","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to algae film"
+"2014-09-07_YB-BEq3",2014-09-07,2014-09-07,"YB","BE","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Algae is mostly a thin film."
+"2014-09-07_YB-BEq6",2014-09-07,2014-09-07,"YB","BE","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Algae is mostly a thin film. Counts may be low due to algae."
+"2014-09-07_YB-BEq2",2014-09-07,2014-09-07,"YB","BE","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to algae film"
+"2014-09-07_YB-BEq3",2014-09-07,2014-09-07,"YB","BE","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Algae is mostly a thin film."
+"2014-09-07_YB-BEq6",2014-09-07,2014-09-07,"YB","BE","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Algae is mostly a thin film. Counts may be low due to algae."
+"2014-09-07_YB-BFq1",2014-09-07,2014-09-07,"YB","BF","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2014-09-07_YB-BFq4",2014-09-07,2014-09-07,"YB","BF","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Barnacle counts may be low due to algae. Algae is a thin film."
+"2014-09-07_YB-BFq9",2014-09-07,2014-09-07,"YB","BF","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","30%","some blur; difficult to distinguish small limpets//littorines/mytilus and individuals of recruit-sized barnacles"
+"2014-09-07_YB-BFq1",2014-09-07,2014-09-07,"YB","BF","1","Ae","Anemones","Type 14",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2014-09-07_YB-BFq4",2014-09-07,2014-09-07,"YB","BF","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Barnacle counts may be low due to algae. Algae is a thin film."
+"2014-09-07_YB-BFq9",2014-09-07,2014-09-07,"YB","BF","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","30%","some blur; difficult to distinguish small limpets//littorines/mytilus and individuals of recruit-sized barnacles"
+"2014-09-07_YB-BFq1",2014-09-07,2014-09-07,"YB","BF","1","Bg","Balanus_glandula","Type 1",1438,0.015625,92032,"c","Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2014-09-07_YB-BFq4",2014-09-07,2014-09-07,"YB","BF","4","Bg","Balanus_glandula","Type 1",1746,0.015625,111744,"c","Beatriz Vaca","Finished","Full","Cropped","75%","Barnacle counts may be low due to algae. Algae is a thin film."
+"2014-09-07_YB-BFq9",2014-09-07,2014-09-07,"YB","BF","9","Bg","Balanus_glandula","Type 1",1180,0.015625,75520,"c","Julia Bingham","Finished","Full","Cropped","30%","some blur; difficult to distinguish small limpets//littorines/mytilus and individuals of recruit-sized barnacles"
+"2014-09-07_YB-BFq1",2014-09-07,2014-09-07,"YB","BF","1","BgD","Balanus_glandula_(dead)","Type 2",1,0.015625,64,"c","Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2014-09-07_YB-BFq4",2014-09-07,2014-09-07,"YB","BF","4","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","75%","Barnacle counts may be low due to algae. Algae is a thin film."
+"2014-09-07_YB-BFq9",2014-09-07,2014-09-07,"YB","BF","9","BgD","Balanus_glandula_(dead)","Type 2",9,0.015625,576,"c","Julia Bingham","Finished","Full","Cropped","30%","some blur; difficult to distinguish small limpets//littorines/mytilus and individuals of recruit-sized barnacles"
+"2014-09-07_YB-BFq1",2014-09-07,2014-09-07,"YB","BF","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2014-09-07_YB-BFq4",2014-09-07,2014-09-07,"YB","BF","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Barnacle counts may be low due to algae. Algae is a thin film."
+"2014-09-07_YB-BFq9",2014-09-07,2014-09-07,"YB","BF","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","30%","some blur; difficult to distinguish small limpets//littorines/mytilus and individuals of recruit-sized barnacles"
+"2014-09-07_YB-BFq1",2014-09-07,2014-09-07,"YB","BF","1","Cth","Chthamalus_dalli","Type 3",13,0.015625,832,"c","Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2014-09-07_YB-BFq4",2014-09-07,2014-09-07,"YB","BF","4","Cth","Chthamalus_dalli","Type 3",1,0.015625,64,"c","Beatriz Vaca","Finished","Full","Cropped","75%","Barnacle counts may be low due to algae. Algae is a thin film."
+"2014-09-07_YB-BFq9",2014-09-07,2014-09-07,"YB","BF","9","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Julia Bingham","Finished","Full","Cropped","30%","some blur; difficult to distinguish small limpets//littorines/mytilus and individuals of recruit-sized barnacles"
+"2014-09-07_YB-BFq1",2014-09-07,2014-09-07,"YB","BF","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2014-09-07_YB-BFq4",2014-09-07,2014-09-07,"YB","BF","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","75%","Barnacle counts may be low due to algae. Algae is a thin film."
+"2014-09-07_YB-BFq9",2014-09-07,2014-09-07,"YB","BF","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Julia Bingham","Finished","Full","Cropped","30%","some blur; difficult to distinguish small limpets//littorines/mytilus and individuals of recruit-sized barnacles"
+"2014-09-07_YB-BFq1",2014-09-07,2014-09-07,"YB","BF","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2014-09-07_YB-BFq4",2014-09-07,2014-09-07,"YB","BF","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Barnacle counts may be low due to algae. Algae is a thin film."
+"2014-09-07_YB-BFq9",2014-09-07,2014-09-07,"YB","BF","9","Emp","Emplectonema worm","Type 23",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Cropped","30%","some blur; difficult to distinguish small limpets//littorines/mytilus and individuals of recruit-sized barnacles"
+"2014-09-07_YB-BFq1",2014-09-07,2014-09-07,"YB","BF","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2014-09-07_YB-BFq4",2014-09-07,2014-09-07,"YB","BF","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Barnacle counts may be low due to algae. Algae is a thin film."
+"2014-09-07_YB-BFq9",2014-09-07,2014-09-07,"YB","BF","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","30%","some blur; difficult to distinguish small limpets//littorines/mytilus and individuals of recruit-sized barnacles"
+"2014-09-07_YB-BFq1",2014-09-07,2014-09-07,"YB","BF","1","Lim","Limpets","Type 12",291,0.0875,3325.71428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2014-09-07_YB-BFq4",2014-09-07,2014-09-07,"YB","BF","4","Lim","Limpets","Type 12",132,0.0875,1508.57142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Barnacle counts may be low due to algae. Algae is a thin film."
+"2014-09-07_YB-BFq9",2014-09-07,2014-09-07,"YB","BF","9","Lim","Limpets","Type 12",89,0.0875,1017.14285714286,NA,"Julia Bingham","Finished","Full","Cropped","30%","some blur; difficult to distinguish small limpets//littorines/mytilus and individuals of recruit-sized barnacles"
+"2014-09-07_YB-BFq1",2014-09-07,2014-09-07,"YB","BF","1","Ls","Littorina_sitkana","Type 13",469,0.0875,5360,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2014-09-07_YB-BFq4",2014-09-07,2014-09-07,"YB","BF","4","Ls","Littorina_sitkana","Type 13",223,0.0875,2548.57142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Barnacle counts may be low due to algae. Algae is a thin film."
+"2014-09-07_YB-BFq9",2014-09-07,2014-09-07,"YB","BF","9","Ls","Littorina_sitkana","Type 13",578,0.0875,6605.71428571429,NA,"Julia Bingham","Finished","Full","Cropped","30%","some blur; difficult to distinguish small limpets//littorines/mytilus and individuals of recruit-sized barnacles"
+"2014-09-07_YB-BFq1",2014-09-07,2014-09-07,"YB","BF","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2014-09-07_YB-BFq4",2014-09-07,2014-09-07,"YB","BF","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Barnacle counts may be low due to algae. Algae is a thin film."
+"2014-09-07_YB-BFq9",2014-09-07,2014-09-07,"YB","BF","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","30%","some blur; difficult to distinguish small limpets//littorines/mytilus and individuals of recruit-sized barnacles"
+"2014-09-07_YB-BFq1",2014-09-07,2014-09-07,"YB","BF","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2014-09-07_YB-BFq4",2014-09-07,2014-09-07,"YB","BF","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Barnacle counts may be low due to algae. Algae is a thin film."
+"2014-09-07_YB-BFq9",2014-09-07,2014-09-07,"YB","BF","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","30%","some blur; difficult to distinguish small limpets//littorines/mytilus and individuals of recruit-sized barnacles"
+"2014-09-07_YB-BFq1",2014-09-07,2014-09-07,"YB","BF","1","Myt","Mytilus_spp","Type 7",15,0.0875,171.428571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2014-09-07_YB-BFq4",2014-09-07,2014-09-07,"YB","BF","4","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Barnacle counts may be low due to algae. Algae is a thin film."
+"2014-09-07_YB-BFq9",2014-09-07,2014-09-07,"YB","BF","9","Myt","Mytilus_spp","Type 7",768,0.0875,8777.14285714286,NA,"Julia Bingham","Finished","Full","Cropped","30%","some blur; difficult to distinguish small limpets//littorines/mytilus and individuals of recruit-sized barnacles"
+"2014-09-07_YB-BFq1",2014-09-07,2014-09-07,"YB","BF","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2014-09-07_YB-BFq4",2014-09-07,2014-09-07,"YB","BF","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Barnacle counts may be low due to algae. Algae is a thin film."
+"2014-09-07_YB-BFq9",2014-09-07,2014-09-07,"YB","BF","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","30%","some blur; difficult to distinguish small limpets//littorines/mytilus and individuals of recruit-sized barnacles"
+"2014-09-07_YB-BFq1",2014-09-07,2014-09-07,"YB","BF","1","Mt","Mytilus_trossulus","Type 15",156,0.0875,1782.85714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2014-09-07_YB-BFq4",2014-09-07,2014-09-07,"YB","BF","4","Mt","Mytilus_trossulus","Type 15",26,0.0875,297.142857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Barnacle counts may be low due to algae. Algae is a thin film."
+"2014-09-07_YB-BFq9",2014-09-07,2014-09-07,"YB","BF","9","Mt","Mytilus_trossulus","Type 15",48,0.0875,548.571428571429,NA,"Julia Bingham","Finished","Full","Cropped","30%","some blur; difficult to distinguish small limpets//littorines/mytilus and individuals of recruit-sized barnacles"
+"2014-09-07_YB-BFq1",2014-09-07,2014-09-07,"YB","BF","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2014-09-07_YB-BFq4",2014-09-07,2014-09-07,"YB","BF","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Barnacle counts may be low due to algae. Algae is a thin film."
+"2014-09-07_YB-BFq9",2014-09-07,2014-09-07,"YB","BF","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","30%","some blur; difficult to distinguish small limpets//littorines/mytilus and individuals of recruit-sized barnacles"
+"2014-09-07_YB-BFq1",2014-09-07,2014-09-07,"YB","BF","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2014-09-07_YB-BFq4",2014-09-07,2014-09-07,"YB","BF","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Barnacle counts may be low due to algae. Algae is a thin film."
+"2014-09-07_YB-BFq9",2014-09-07,2014-09-07,"YB","BF","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","30%","some blur; difficult to distinguish small limpets//littorines/mytilus and individuals of recruit-sized barnacles"
+"2014-09-07_YB-BFq1",2014-09-07,2014-09-07,"YB","BF","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2014-09-07_YB-BFq4",2014-09-07,2014-09-07,"YB","BF","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Barnacle counts may be low due to algae. Algae is a thin film."
+"2014-09-07_YB-BFq9",2014-09-07,2014-09-07,"YB","BF","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","30%","some blur; difficult to distinguish small limpets//littorines/mytilus and individuals of recruit-sized barnacles"
+"2014-09-07_YB-BFq1",2014-09-07,2014-09-07,"YB","BF","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2014-09-07_YB-BFq4",2014-09-07,2014-09-07,"YB","BF","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Barnacle counts may be low due to algae. Algae is a thin film."
+"2014-09-07_YB-BFq9",2014-09-07,2014-09-07,"YB","BF","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","30%","some blur; difficult to distinguish small limpets//littorines/mytilus and individuals of recruit-sized barnacles"
+"2014-09-07_YB-BFq1",2014-09-07,2014-09-07,"YB","BF","1","No","Nucella_ostrina","Type 9",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2014-09-07_YB-BFq4",2014-09-07,2014-09-07,"YB","BF","4","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Barnacle counts may be low due to algae. Algae is a thin film."
+"2014-09-07_YB-BFq9",2014-09-07,2014-09-07,"YB","BF","9","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Cropped","30%","some blur; difficult to distinguish small limpets//littorines/mytilus and individuals of recruit-sized barnacles"
+"2014-09-07_YB-BFq1",2014-09-07,2014-09-07,"YB","BF","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2014-09-07_YB-BFq4",2014-09-07,2014-09-07,"YB","BF","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Barnacle counts may be low due to algae. Algae is a thin film."
+"2014-09-07_YB-BFq9",2014-09-07,2014-09-07,"YB","BF","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","30%","some blur; difficult to distinguish small limpets//littorines/mytilus and individuals of recruit-sized barnacles"
+"2014-09-07_YB-BFq1",2014-09-07,2014-09-07,"YB","BF","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2014-09-07_YB-BFq4",2014-09-07,2014-09-07,"YB","BF","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Barnacle counts may be low due to algae. Algae is a thin film."
+"2014-09-07_YB-BFq9",2014-09-07,2014-09-07,"YB","BF","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","30%","some blur; difficult to distinguish small limpets//littorines/mytilus and individuals of recruit-sized barnacles"
+"2014-09-07_YB-BFq1",2014-09-07,2014-09-07,"YB","BF","1","Pp","Pollicipes_polymerus","Type 11",10,0.0875,114.285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2014-09-07_YB-BFq4",2014-09-07,2014-09-07,"YB","BF","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Barnacle counts may be low due to algae. Algae is a thin film."
+"2014-09-07_YB-BFq9",2014-09-07,2014-09-07,"YB","BF","9","Pp","Pollicipes_polymerus","Type 11",17,0.0875,194.285714285714,NA,"Julia Bingham","Finished","Full","Cropped","30%","some blur; difficult to distinguish small limpets//littorines/mytilus and individuals of recruit-sized barnacles"
+"2014-09-07_YB-BFq1",2014-09-07,2014-09-07,"YB","BF","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2014-09-07_YB-BFq4",2014-09-07,2014-09-07,"YB","BF","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Barnacle counts may be low due to algae. Algae is a thin film."
+"2014-09-07_YB-BFq9",2014-09-07,2014-09-07,"YB","BF","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","30%","some blur; difficult to distinguish small limpets//littorines/mytilus and individuals of recruit-sized barnacles"
+"2014-09-07_YB-BFq1",2014-09-07,2014-09-07,"YB","BF","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2014-09-07_YB-BFq4",2014-09-07,2014-09-07,"YB","BF","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Barnacle counts may be low due to algae. Algae is a thin film."
+"2014-09-07_YB-BFq9",2014-09-07,2014-09-07,"YB","BF","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","30%","some blur; difficult to distinguish small limpets//littorines/mytilus and individuals of recruit-sized barnacles"
+"2014-09-07_YB-BFq1",2014-09-07,2014-09-07,"YB","BF","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2014-09-07_YB-BFq4",2014-09-07,2014-09-07,"YB","BF","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","75%","Barnacle counts may be low due to algae. Algae is a thin film."
+"2014-09-07_YB-BFq9",2014-09-07,2014-09-07,"YB","BF","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","30%","some blur; difficult to distinguish small limpets//littorines/mytilus and individuals of recruit-sized barnacles"
+"2014-09-07_YB-Cq2",2014-09-07,2014-09-07,"YB","C","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-09-07_YB-Cq4",2014-09-07,2014-09-07,"YB","C","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-09-07_YB-Cq6",2014-09-07,2014-09-07,"YB","C","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%",""
+"2014-09-07_YB-Cq2",2014-09-07,2014-09-07,"YB","C","2","Ae","Anemones","Type 14",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-09-07_YB-Cq4",2014-09-07,2014-09-07,"YB","C","4","Ae","Anemones","Type 14",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-09-07_YB-Cq6",2014-09-07,2014-09-07,"YB","C","6","Ae","Anemones","Type 14",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","40%",""
+"2014-09-07_YB-Cq2",2014-09-07,2014-09-07,"YB","C","2","Bg","Balanus_glandula","Type 1",161,0.015625,10304,"c","Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-09-07_YB-Cq4",2014-09-07,2014-09-07,"YB","C","4","Bg","Balanus_glandula","Type 1",293,0.015625,18752,"c","Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-09-07_YB-Cq6",2014-09-07,2014-09-07,"YB","C","6","Bg","Balanus_glandula","Type 1",124,0.015625,7936,"c","Beatriz Vaca","Finished","Full","Cropped","40%",""
+"2014-09-07_YB-Cq2",2014-09-07,2014-09-07,"YB","C","2","BgD","Balanus_glandula_(dead)","Type 2",10,0.015625,640,"c","Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-09-07_YB-Cq4",2014-09-07,2014-09-07,"YB","C","4","BgD","Balanus_glandula_(dead)","Type 2",15,0.015625,960,"c","Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-09-07_YB-Cq6",2014-09-07,2014-09-07,"YB","C","6","BgD","Balanus_glandula_(dead)","Type 2",10,0.015625,640,"c","Beatriz Vaca","Finished","Full","Cropped","40%",""
+"2014-09-07_YB-Cq2",2014-09-07,2014-09-07,"YB","C","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-09-07_YB-Cq4",2014-09-07,2014-09-07,"YB","C","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-09-07_YB-Cq6",2014-09-07,2014-09-07,"YB","C","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%",""
+"2014-09-07_YB-Cq2",2014-09-07,2014-09-07,"YB","C","2","Cth","Chthamalus_dalli","Type 3",3,0.015625,192,"c","Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-09-07_YB-Cq4",2014-09-07,2014-09-07,"YB","C","4","Cth","Chthamalus_dalli","Type 3",11,0.015625,704,"c","Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-09-07_YB-Cq6",2014-09-07,2014-09-07,"YB","C","6","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","40%",""
+"2014-09-07_YB-Cq2",2014-09-07,2014-09-07,"YB","C","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-09-07_YB-Cq4",2014-09-07,2014-09-07,"YB","C","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-09-07_YB-Cq6",2014-09-07,2014-09-07,"YB","C","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","40%",""
+"2014-09-07_YB-Cq2",2014-09-07,2014-09-07,"YB","C","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-09-07_YB-Cq4",2014-09-07,2014-09-07,"YB","C","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-09-07_YB-Cq6",2014-09-07,2014-09-07,"YB","C","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%",""
+"2014-09-07_YB-Cq2",2014-09-07,2014-09-07,"YB","C","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-09-07_YB-Cq4",2014-09-07,2014-09-07,"YB","C","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-09-07_YB-Cq6",2014-09-07,2014-09-07,"YB","C","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%",""
+"2014-09-07_YB-Cq2",2014-09-07,2014-09-07,"YB","C","2","Lim","Limpets","Type 12",217,0.0875,2480,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-09-07_YB-Cq4",2014-09-07,2014-09-07,"YB","C","4","Lim","Limpets","Type 12",244,0.0875,2788.57142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-09-07_YB-Cq6",2014-09-07,2014-09-07,"YB","C","6","Lim","Limpets","Type 12",234,0.0875,2674.28571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","40%",""
+"2014-09-07_YB-Cq2",2014-09-07,2014-09-07,"YB","C","2","Ls","Littorina_sitkana","Type 13",66,0.0875,754.285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-09-07_YB-Cq4",2014-09-07,2014-09-07,"YB","C","4","Ls","Littorina_sitkana","Type 13",25,0.0875,285.714285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-09-07_YB-Cq6",2014-09-07,2014-09-07,"YB","C","6","Ls","Littorina_sitkana","Type 13",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Cropped","40%",""
+"2014-09-07_YB-Cq2",2014-09-07,2014-09-07,"YB","C","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-09-07_YB-Cq4",2014-09-07,2014-09-07,"YB","C","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-09-07_YB-Cq6",2014-09-07,2014-09-07,"YB","C","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%",""
+"2014-09-07_YB-Cq2",2014-09-07,2014-09-07,"YB","C","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-09-07_YB-Cq4",2014-09-07,2014-09-07,"YB","C","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-09-07_YB-Cq6",2014-09-07,2014-09-07,"YB","C","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%",""
+"2014-09-07_YB-Cq2",2014-09-07,2014-09-07,"YB","C","2","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-09-07_YB-Cq4",2014-09-07,2014-09-07,"YB","C","4","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-09-07_YB-Cq6",2014-09-07,2014-09-07,"YB","C","6","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%",""
+"2014-09-07_YB-Cq2",2014-09-07,2014-09-07,"YB","C","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-09-07_YB-Cq4",2014-09-07,2014-09-07,"YB","C","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-09-07_YB-Cq6",2014-09-07,2014-09-07,"YB","C","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%",""
+"2014-09-07_YB-Cq2",2014-09-07,2014-09-07,"YB","C","2","Mt","Mytilus_trossulus","Type 15",153,0.0875,1748.57142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-09-07_YB-Cq4",2014-09-07,2014-09-07,"YB","C","4","Mt","Mytilus_trossulus","Type 15",168,0.0875,1920,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-09-07_YB-Cq6",2014-09-07,2014-09-07,"YB","C","6","Mt","Mytilus_trossulus","Type 15",187,0.0875,2137.14285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","40%",""
+"2014-09-07_YB-Cq2",2014-09-07,2014-09-07,"YB","C","2","MtD","Mytilus_trossulus_(dead)","Type 16",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-09-07_YB-Cq4",2014-09-07,2014-09-07,"YB","C","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-09-07_YB-Cq6",2014-09-07,2014-09-07,"YB","C","6","MtD","Mytilus_trossulus_(dead)","Type 16",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","40%",""
+"2014-09-07_YB-Cq2",2014-09-07,2014-09-07,"YB","C","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-09-07_YB-Cq4",2014-09-07,2014-09-07,"YB","C","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-09-07_YB-Cq6",2014-09-07,2014-09-07,"YB","C","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%",""
+"2014-09-07_YB-Cq2",2014-09-07,2014-09-07,"YB","C","2","Nc","Nucella_canaliculata","Type 10",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-09-07_YB-Cq4",2014-09-07,2014-09-07,"YB","C","4","Nc","Nucella_canaliculata","Type 10",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-09-07_YB-Cq6",2014-09-07,2014-09-07,"YB","C","6","Nc","Nucella_canaliculata","Type 10",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","40%",""
+"2014-09-07_YB-Cq2",2014-09-07,2014-09-07,"YB","C","2","Negg","Nucella_eggs","Type 26",36,0.0875,411.428571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-09-07_YB-Cq4",2014-09-07,2014-09-07,"YB","C","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-09-07_YB-Cq6",2014-09-07,2014-09-07,"YB","C","6","Negg","Nucella_eggs","Type 26",51,0.0875,582.857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","40%",""
+"2014-09-07_YB-Cq2",2014-09-07,2014-09-07,"YB","C","2","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-09-07_YB-Cq4",2014-09-07,2014-09-07,"YB","C","4","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-09-07_YB-Cq6",2014-09-07,2014-09-07,"YB","C","6","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","40%",""
+"2014-09-07_YB-Cq2",2014-09-07,2014-09-07,"YB","C","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-09-07_YB-Cq4",2014-09-07,2014-09-07,"YB","C","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-09-07_YB-Cq6",2014-09-07,2014-09-07,"YB","C","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%",""
+"2014-09-07_YB-Cq2",2014-09-07,2014-09-07,"YB","C","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-09-07_YB-Cq4",2014-09-07,2014-09-07,"YB","C","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-09-07_YB-Cq6",2014-09-07,2014-09-07,"YB","C","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%",""
+"2014-09-07_YB-Cq2",2014-09-07,2014-09-07,"YB","C","2","Pp","Pollicipes_polymerus","Type 11",24,0.0875,274.285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-09-07_YB-Cq4",2014-09-07,2014-09-07,"YB","C","4","Pp","Pollicipes_polymerus","Type 11",22,0.0875,251.428571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-09-07_YB-Cq6",2014-09-07,2014-09-07,"YB","C","6","Pp","Pollicipes_polymerus","Type 11",16,0.0875,182.857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","40%",""
+"2014-09-07_YB-Cq2",2014-09-07,2014-09-07,"YB","C","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-09-07_YB-Cq4",2014-09-07,2014-09-07,"YB","C","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-09-07_YB-Cq6",2014-09-07,2014-09-07,"YB","C","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%",""
+"2014-09-07_YB-Cq2",2014-09-07,2014-09-07,"YB","C","2","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-09-07_YB-Cq4",2014-09-07,2014-09-07,"YB","C","4","Sc","Semibalanus_cariosus","Type 5",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-09-07_YB-Cq6",2014-09-07,2014-09-07,"YB","C","6","Sc","Semibalanus_cariosus","Type 5",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","40%",""
+"2014-09-07_YB-Cq2",2014-09-07,2014-09-07,"YB","C","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-09-07_YB-Cq4",2014-09-07,2014-09-07,"YB","C","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-09-07_YB-Cq6",2014-09-07,2014-09-07,"YB","C","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%",""
+"2014-09-07_YB-Dq3",2014-09-07,2014-09-07,"YB","D","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","75%",""
+"2014-09-07_YB-Dq4",2014-09-07,2014-09-07,"YB","D","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-09-07_YB-Dq5",2014-09-07,2014-09-07,"YB","D","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Counts low due to glare and algae cover."
+"2014-09-07_YB-Dq3",2014-09-07,2014-09-07,"YB","D","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","75%",""
+"2014-09-07_YB-Dq4",2014-09-07,2014-09-07,"YB","D","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-09-07_YB-Dq5",2014-09-07,2014-09-07,"YB","D","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Counts low due to glare and algae cover."
+"2014-09-07_YB-Dq3",2014-09-07,2014-09-07,"YB","D","3","Bg","Balanus_glandula","Type 1",443,0.0875,5062.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","75%",""
+"2014-09-07_YB-Dq4",2014-09-07,2014-09-07,"YB","D","4","Bg","Balanus_glandula","Type 1",837,0.015625,53568,"c","Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-09-07_YB-Dq5",2014-09-07,2014-09-07,"YB","D","5","Bg","Balanus_glandula","Type 1",360,0.015625,23040,"c","Beatriz Vaca","Finished","Full","Cropped","40%","Counts low due to glare and algae cover."
+"2014-09-07_YB-Dq3",2014-09-07,2014-09-07,"YB","D","3","BgD","Balanus_glandula_(dead)","Type 2",13,0.0875,148.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","75%",""
+"2014-09-07_YB-Dq4",2014-09-07,2014-09-07,"YB","D","4","BgD","Balanus_glandula_(dead)","Type 2",2,0.015625,128,"c","Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-09-07_YB-Dq5",2014-09-07,2014-09-07,"YB","D","5","BgD","Balanus_glandula_(dead)","Type 2",31,0.015625,1984,"c","Beatriz Vaca","Finished","Full","Cropped","40%","Counts low due to glare and algae cover."
+"2014-09-07_YB-Dq3",2014-09-07,2014-09-07,"YB","D","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","75%",""
+"2014-09-07_YB-Dq4",2014-09-07,2014-09-07,"YB","D","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-09-07_YB-Dq5",2014-09-07,2014-09-07,"YB","D","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Counts low due to glare and algae cover."
+"2014-09-07_YB-Dq3",2014-09-07,2014-09-07,"YB","D","3","Cth","Chthamalus_dalli","Type 3",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","75%",""
+"2014-09-07_YB-Dq4",2014-09-07,2014-09-07,"YB","D","4","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-09-07_YB-Dq5",2014-09-07,2014-09-07,"YB","D","5","Cth","Chthamalus_dalli","Type 3",9,0.015625,576,"c","Beatriz Vaca","Finished","Full","Cropped","40%","Counts low due to glare and algae cover."
+"2014-09-07_YB-Dq3",2014-09-07,2014-09-07,"YB","D","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","75%",""
+"2014-09-07_YB-Dq4",2014-09-07,2014-09-07,"YB","D","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-09-07_YB-Dq5",2014-09-07,2014-09-07,"YB","D","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","40%","Counts low due to glare and algae cover."
+"2014-09-07_YB-Dq3",2014-09-07,2014-09-07,"YB","D","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","75%",""
+"2014-09-07_YB-Dq4",2014-09-07,2014-09-07,"YB","D","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-09-07_YB-Dq5",2014-09-07,2014-09-07,"YB","D","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Counts low due to glare and algae cover."
+"2014-09-07_YB-Dq3",2014-09-07,2014-09-07,"YB","D","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","75%",""
+"2014-09-07_YB-Dq4",2014-09-07,2014-09-07,"YB","D","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-09-07_YB-Dq5",2014-09-07,2014-09-07,"YB","D","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Counts low due to glare and algae cover."
+"2014-09-07_YB-Dq3",2014-09-07,2014-09-07,"YB","D","3","Lim","Limpets","Type 12",96,0.0875,1097.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","75%",""
+"2014-09-07_YB-Dq4",2014-09-07,2014-09-07,"YB","D","4","Lim","Limpets","Type 12",90,0.0875,1028.57142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-09-07_YB-Dq5",2014-09-07,2014-09-07,"YB","D","5","Lim","Limpets","Type 12",523,0.0875,5977.14285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Counts low due to glare and algae cover."
+"2014-09-07_YB-Dq3",2014-09-07,2014-09-07,"YB","D","3","Ls","Littorina_sitkana","Type 13",139,0.0875,1588.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","75%",""
+"2014-09-07_YB-Dq4",2014-09-07,2014-09-07,"YB","D","4","Ls","Littorina_sitkana","Type 13",727,0.0875,8308.57142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-09-07_YB-Dq5",2014-09-07,2014-09-07,"YB","D","5","Ls","Littorina_sitkana","Type 13",528,0.0875,6034.28571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Counts low due to glare and algae cover."
+"2014-09-07_YB-Dq3",2014-09-07,2014-09-07,"YB","D","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","75%",""
+"2014-09-07_YB-Dq4",2014-09-07,2014-09-07,"YB","D","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-09-07_YB-Dq5",2014-09-07,2014-09-07,"YB","D","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Counts low due to glare and algae cover."
+"2014-09-07_YB-Dq3",2014-09-07,2014-09-07,"YB","D","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","75%",""
+"2014-09-07_YB-Dq4",2014-09-07,2014-09-07,"YB","D","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-09-07_YB-Dq5",2014-09-07,2014-09-07,"YB","D","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Counts low due to glare and algae cover."
+"2014-09-07_YB-Dq3",2014-09-07,2014-09-07,"YB","D","3","Myt","Mytilus_spp","Type 7",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Full","75%",""
+"2014-09-07_YB-Dq4",2014-09-07,2014-09-07,"YB","D","4","Myt","Mytilus_spp","Type 7",176,0.0875,2011.42857142857,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-09-07_YB-Dq5",2014-09-07,2014-09-07,"YB","D","5","Myt","Mytilus_spp","Type 7",44,0.0875,502.857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Counts low due to glare and algae cover."
+"2014-09-07_YB-Dq3",2014-09-07,2014-09-07,"YB","D","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","75%",""
+"2014-09-07_YB-Dq4",2014-09-07,2014-09-07,"YB","D","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-09-07_YB-Dq5",2014-09-07,2014-09-07,"YB","D","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Counts low due to glare and algae cover."
+"2014-09-07_YB-Dq3",2014-09-07,2014-09-07,"YB","D","3","Mt","Mytilus_trossulus","Type 15",498,0.0875,5691.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","75%",""
+"2014-09-07_YB-Dq4",2014-09-07,2014-09-07,"YB","D","4","Mt","Mytilus_trossulus","Type 15",194,0.0875,2217.14285714286,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-09-07_YB-Dq5",2014-09-07,2014-09-07,"YB","D","5","Mt","Mytilus_trossulus","Type 15",416,0.0875,4754.28571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Counts low due to glare and algae cover."
+"2014-09-07_YB-Dq3",2014-09-07,2014-09-07,"YB","D","3","MtD","Mytilus_trossulus_(dead)","Type 16",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","75%",""
+"2014-09-07_YB-Dq4",2014-09-07,2014-09-07,"YB","D","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-09-07_YB-Dq5",2014-09-07,2014-09-07,"YB","D","5","MtD","Mytilus_trossulus_(dead)","Type 16",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Counts low due to glare and algae cover."
+"2014-09-07_YB-Dq3",2014-09-07,2014-09-07,"YB","D","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","75%",""
+"2014-09-07_YB-Dq4",2014-09-07,2014-09-07,"YB","D","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-09-07_YB-Dq5",2014-09-07,2014-09-07,"YB","D","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Counts low due to glare and algae cover."
+"2014-09-07_YB-Dq3",2014-09-07,2014-09-07,"YB","D","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","75%",""
+"2014-09-07_YB-Dq4",2014-09-07,2014-09-07,"YB","D","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-09-07_YB-Dq5",2014-09-07,2014-09-07,"YB","D","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Counts low due to glare and algae cover."
+"2014-09-07_YB-Dq3",2014-09-07,2014-09-07,"YB","D","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","75%",""
+"2014-09-07_YB-Dq4",2014-09-07,2014-09-07,"YB","D","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-09-07_YB-Dq5",2014-09-07,2014-09-07,"YB","D","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Counts low due to glare and algae cover."
+"2014-09-07_YB-Dq3",2014-09-07,2014-09-07,"YB","D","3","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","75%",""
+"2014-09-07_YB-Dq4",2014-09-07,2014-09-07,"YB","D","4","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-09-07_YB-Dq5",2014-09-07,2014-09-07,"YB","D","5","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Counts low due to glare and algae cover."
+"2014-09-07_YB-Dq3",2014-09-07,2014-09-07,"YB","D","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","75%",""
+"2014-09-07_YB-Dq4",2014-09-07,2014-09-07,"YB","D","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-09-07_YB-Dq5",2014-09-07,2014-09-07,"YB","D","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Counts low due to glare and algae cover."
+"2014-09-07_YB-Dq3",2014-09-07,2014-09-07,"YB","D","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","75%",""
+"2014-09-07_YB-Dq4",2014-09-07,2014-09-07,"YB","D","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-09-07_YB-Dq5",2014-09-07,2014-09-07,"YB","D","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Counts low due to glare and algae cover."
+"2014-09-07_YB-Dq3",2014-09-07,2014-09-07,"YB","D","3","Pp","Pollicipes_polymerus","Type 11",12,0.0875,137.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","75%",""
+"2014-09-07_YB-Dq4",2014-09-07,2014-09-07,"YB","D","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-09-07_YB-Dq5",2014-09-07,2014-09-07,"YB","D","5","Pp","Pollicipes_polymerus","Type 11",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Counts low due to glare and algae cover."
+"2014-09-07_YB-Dq3",2014-09-07,2014-09-07,"YB","D","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","75%",""
+"2014-09-07_YB-Dq4",2014-09-07,2014-09-07,"YB","D","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-09-07_YB-Dq5",2014-09-07,2014-09-07,"YB","D","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Counts low due to glare and algae cover."
+"2014-09-07_YB-Dq3",2014-09-07,2014-09-07,"YB","D","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","75%",""
+"2014-09-07_YB-Dq4",2014-09-07,2014-09-07,"YB","D","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-09-07_YB-Dq5",2014-09-07,2014-09-07,"YB","D","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Counts low due to glare and algae cover."
+"2014-09-07_YB-Dq3",2014-09-07,2014-09-07,"YB","D","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","75%",""
+"2014-09-07_YB-Dq4",2014-09-07,2014-09-07,"YB","D","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-09-07_YB-Dq5",2014-09-07,2014-09-07,"YB","D","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Counts low due to glare and algae cover."
+"2014-09-07_YB-Eq3",2014-09-07,2014-09-07,"YB","E","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%",""
+"2014-09-07_YB-Eq4",2014-09-07,2014-09-07,"YB","E","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-09-07_YB-Eq8",2014-09-07,2014-09-07,"YB","E","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","All counts likely low due to high algae coverage"
+"2014-09-07_YB-Eq3",2014-09-07,2014-09-07,"YB","E","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%",""
+"2014-09-07_YB-Eq4",2014-09-07,2014-09-07,"YB","E","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-09-07_YB-Eq8",2014-09-07,2014-09-07,"YB","E","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","All counts likely low due to high algae coverage"
+"2014-09-07_YB-Eq3",2014-09-07,2014-09-07,"YB","E","3","Bg","Balanus_glandula","Type 1",255,0.0875,2914.28571428571,NA,"Stephanie Merhoff","Finished","Full","Full","60%",""
+"2014-09-07_YB-Eq4",2014-09-07,2014-09-07,"YB","E","4","Bg","Balanus_glandula","Type 1",845,0.0875,9657.14285714286,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-09-07_YB-Eq8",2014-09-07,2014-09-07,"YB","E","8","Bg","Balanus_glandula","Type 1",255,0.0875,2914.28571428571,NA,"Stephanie Merhoff","Finished","Full","Full","50%","All counts likely low due to high algae coverage"
+"2014-09-07_YB-Eq3",2014-09-07,2014-09-07,"YB","E","3","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%",""
+"2014-09-07_YB-Eq4",2014-09-07,2014-09-07,"YB","E","4","BgD","Balanus_glandula_(dead)","Type 2",8,0.0875,91.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-09-07_YB-Eq8",2014-09-07,2014-09-07,"YB","E","8","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","All counts likely low due to high algae coverage"
+"2014-09-07_YB-Eq3",2014-09-07,2014-09-07,"YB","E","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%",""
+"2014-09-07_YB-Eq4",2014-09-07,2014-09-07,"YB","E","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-09-07_YB-Eq8",2014-09-07,2014-09-07,"YB","E","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","All counts likely low due to high algae coverage"
+"2014-09-07_YB-Eq3",2014-09-07,2014-09-07,"YB","E","3","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%",""
+"2014-09-07_YB-Eq4",2014-09-07,2014-09-07,"YB","E","4","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-09-07_YB-Eq8",2014-09-07,2014-09-07,"YB","E","8","Cth","Chthamalus_dalli","Type 3",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","50%","All counts likely low due to high algae coverage"
+"2014-09-07_YB-Eq3",2014-09-07,2014-09-07,"YB","E","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%",""
+"2014-09-07_YB-Eq4",2014-09-07,2014-09-07,"YB","E","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-09-07_YB-Eq8",2014-09-07,2014-09-07,"YB","E","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","All counts likely low due to high algae coverage"
+"2014-09-07_YB-Eq3",2014-09-07,2014-09-07,"YB","E","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%",""
+"2014-09-07_YB-Eq4",2014-09-07,2014-09-07,"YB","E","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-09-07_YB-Eq8",2014-09-07,2014-09-07,"YB","E","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","All counts likely low due to high algae coverage"
+"2014-09-07_YB-Eq3",2014-09-07,2014-09-07,"YB","E","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%",""
+"2014-09-07_YB-Eq4",2014-09-07,2014-09-07,"YB","E","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-09-07_YB-Eq8",2014-09-07,2014-09-07,"YB","E","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","All counts likely low due to high algae coverage"
+"2014-09-07_YB-Eq3",2014-09-07,2014-09-07,"YB","E","3","Lim","Limpets","Type 12",48,0.0875,548.571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","60%",""
+"2014-09-07_YB-Eq4",2014-09-07,2014-09-07,"YB","E","4","Lim","Limpets","Type 12",9,0.0875,102.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-09-07_YB-Eq8",2014-09-07,2014-09-07,"YB","E","8","Lim","Limpets","Type 12",112,0.0875,1280,NA,"Stephanie Merhoff","Finished","Full","Full","50%","All counts likely low due to high algae coverage"
+"2014-09-07_YB-Eq3",2014-09-07,2014-09-07,"YB","E","3","Ls","Littorina_sitkana","Type 13",18,0.0875,205.714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","60%",""
+"2014-09-07_YB-Eq4",2014-09-07,2014-09-07,"YB","E","4","Ls","Littorina_sitkana","Type 13",25,0.0875,285.714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-09-07_YB-Eq8",2014-09-07,2014-09-07,"YB","E","8","Ls","Littorina_sitkana","Type 13",78,0.0875,891.428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","50%","All counts likely low due to high algae coverage"
+"2014-09-07_YB-Eq3",2014-09-07,2014-09-07,"YB","E","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%",""
+"2014-09-07_YB-Eq4",2014-09-07,2014-09-07,"YB","E","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-09-07_YB-Eq8",2014-09-07,2014-09-07,"YB","E","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","All counts likely low due to high algae coverage"
+"2014-09-07_YB-Eq3",2014-09-07,2014-09-07,"YB","E","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%",""
+"2014-09-07_YB-Eq4",2014-09-07,2014-09-07,"YB","E","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-09-07_YB-Eq8",2014-09-07,2014-09-07,"YB","E","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","All counts likely low due to high algae coverage"
+"2014-09-07_YB-Eq3",2014-09-07,2014-09-07,"YB","E","3","Myt","Mytilus_spp","Type 7",199,0.0875,2274.28571428571,NA,"Stephanie Merhoff","Finished","Full","Full","60%",""
+"2014-09-07_YB-Eq4",2014-09-07,2014-09-07,"YB","E","4","Myt","Mytilus_spp","Type 7",442,0.0875,5051.42857142857,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-09-07_YB-Eq8",2014-09-07,2014-09-07,"YB","E","8","Myt","Mytilus_spp","Type 7",229,0.0875,2617.14285714286,NA,"Stephanie Merhoff","Finished","Full","Full","50%","All counts likely low due to high algae coverage"
+"2014-09-07_YB-Eq3",2014-09-07,2014-09-07,"YB","E","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%",""
+"2014-09-07_YB-Eq4",2014-09-07,2014-09-07,"YB","E","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-09-07_YB-Eq8",2014-09-07,2014-09-07,"YB","E","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","All counts likely low due to high algae coverage"
+"2014-09-07_YB-Eq3",2014-09-07,2014-09-07,"YB","E","3","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%",""
+"2014-09-07_YB-Eq4",2014-09-07,2014-09-07,"YB","E","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-09-07_YB-Eq8",2014-09-07,2014-09-07,"YB","E","8","Mt","Mytilus_trossulus","Type 15",31,0.0875,354.285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","50%","All counts likely low due to high algae coverage"
+"2014-09-07_YB-Eq3",2014-09-07,2014-09-07,"YB","E","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%",""
+"2014-09-07_YB-Eq4",2014-09-07,2014-09-07,"YB","E","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-09-07_YB-Eq8",2014-09-07,2014-09-07,"YB","E","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","All counts likely low due to high algae coverage"
+"2014-09-07_YB-Eq3",2014-09-07,2014-09-07,"YB","E","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%",""
+"2014-09-07_YB-Eq4",2014-09-07,2014-09-07,"YB","E","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-09-07_YB-Eq8",2014-09-07,2014-09-07,"YB","E","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","All counts likely low due to high algae coverage"
+"2014-09-07_YB-Eq3",2014-09-07,2014-09-07,"YB","E","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%",""
+"2014-09-07_YB-Eq4",2014-09-07,2014-09-07,"YB","E","4","Nc","Nucella_canaliculata","Type 10",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-09-07_YB-Eq8",2014-09-07,2014-09-07,"YB","E","8","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","50%","All counts likely low due to high algae coverage"
+"2014-09-07_YB-Eq3",2014-09-07,2014-09-07,"YB","E","3","Negg","Nucella_eggs","Type 26",25,0.0875,285.714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","60%",""
+"2014-09-07_YB-Eq4",2014-09-07,2014-09-07,"YB","E","4","Negg","Nucella_eggs","Type 26",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-09-07_YB-Eq8",2014-09-07,2014-09-07,"YB","E","8","Negg","Nucella_eggs","Type 26",111,0.0875,1268.57142857143,NA,"Stephanie Merhoff","Finished","Full","Full","50%","All counts likely low due to high algae coverage"
+"2014-09-07_YB-Eq3",2014-09-07,2014-09-07,"YB","E","3","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","60%",""
+"2014-09-07_YB-Eq4",2014-09-07,2014-09-07,"YB","E","4","No","Nucella_ostrina","Type 9",4,0.0875,45.7142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-09-07_YB-Eq8",2014-09-07,2014-09-07,"YB","E","8","No","Nucella_ostrina","Type 9",4,0.0875,45.7142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","50%","All counts likely low due to high algae coverage"
+"2014-09-07_YB-Eq3",2014-09-07,2014-09-07,"YB","E","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%",""
+"2014-09-07_YB-Eq4",2014-09-07,2014-09-07,"YB","E","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-09-07_YB-Eq8",2014-09-07,2014-09-07,"YB","E","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","All counts likely low due to high algae coverage"
+"2014-09-07_YB-Eq3",2014-09-07,2014-09-07,"YB","E","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%",""
+"2014-09-07_YB-Eq4",2014-09-07,2014-09-07,"YB","E","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-09-07_YB-Eq8",2014-09-07,2014-09-07,"YB","E","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","All counts likely low due to high algae coverage"
+"2014-09-07_YB-Eq3",2014-09-07,2014-09-07,"YB","E","3","Pp","Pollicipes_polymerus","Type 11",5,0.0875,57.1428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","60%",""
+"2014-09-07_YB-Eq4",2014-09-07,2014-09-07,"YB","E","4","Pp","Pollicipes_polymerus","Type 11",4,0.0875,45.7142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-09-07_YB-Eq8",2014-09-07,2014-09-07,"YB","E","8","Pp","Pollicipes_polymerus","Type 11",5,0.0875,57.1428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","50%","All counts likely low due to high algae coverage"
+"2014-09-07_YB-Eq3",2014-09-07,2014-09-07,"YB","E","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%",""
+"2014-09-07_YB-Eq4",2014-09-07,2014-09-07,"YB","E","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-09-07_YB-Eq8",2014-09-07,2014-09-07,"YB","E","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","All counts likely low due to high algae coverage"
+"2014-09-07_YB-Eq3",2014-09-07,2014-09-07,"YB","E","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%",""
+"2014-09-07_YB-Eq4",2014-09-07,2014-09-07,"YB","E","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-09-07_YB-Eq8",2014-09-07,2014-09-07,"YB","E","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","All counts likely low due to high algae coverage"
+"2014-09-07_YB-Eq3",2014-09-07,2014-09-07,"YB","E","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%",""
+"2014-09-07_YB-Eq4",2014-09-07,2014-09-07,"YB","E","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2014-09-07_YB-Eq8",2014-09-07,2014-09-07,"YB","E","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","All counts likely low due to high algae coverage"
+"2014-09-07_YB-Fq4",2014-09-07,2014-09-07,"YB","F","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-09-07_YB-Fq5",2014-09-07,2014-09-07,"YB","F","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover and glare."
+"2014-09-07_YB-Fq6",2014-09-07,2014-09-07,"YB","F","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Counts likely low due to algae cover and glare."
+"2014-09-07_YB-Fq4",2014-09-07,2014-09-07,"YB","F","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-09-07_YB-Fq5",2014-09-07,2014-09-07,"YB","F","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover and glare."
+"2014-09-07_YB-Fq6",2014-09-07,2014-09-07,"YB","F","6","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Counts likely low due to algae cover and glare."
+"2014-09-07_YB-Fq4",2014-09-07,2014-09-07,"YB","F","4","Bg","Balanus_glandula","Type 1",387,0.015625,24768,"c","Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-09-07_YB-Fq5",2014-09-07,2014-09-07,"YB","F","5","Bg","Balanus_glandula","Type 1",730,0.0875,8342.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover and glare."
+"2014-09-07_YB-Fq6",2014-09-07,2014-09-07,"YB","F","6","Bg","Balanus_glandula","Type 1",295,0.015625,18880,"c","Beatriz Vaca","Finished","Full","Cropped","30%","Counts likely low due to algae cover and glare."
+"2014-09-07_YB-Fq4",2014-09-07,2014-09-07,"YB","F","4","BgD","Balanus_glandula_(dead)","Type 2",17,0.015625,1088,"c","Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-09-07_YB-Fq5",2014-09-07,2014-09-07,"YB","F","5","BgD","Balanus_glandula_(dead)","Type 2",31,0.0875,354.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover and glare."
+"2014-09-07_YB-Fq6",2014-09-07,2014-09-07,"YB","F","6","BgD","Balanus_glandula_(dead)","Type 2",7,0.015625,448,"c","Beatriz Vaca","Finished","Full","Cropped","30%","Counts likely low due to algae cover and glare."
+"2014-09-07_YB-Fq4",2014-09-07,2014-09-07,"YB","F","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-09-07_YB-Fq5",2014-09-07,2014-09-07,"YB","F","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover and glare."
+"2014-09-07_YB-Fq6",2014-09-07,2014-09-07,"YB","F","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Counts likely low due to algae cover and glare."
+"2014-09-07_YB-Fq4",2014-09-07,2014-09-07,"YB","F","4","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-09-07_YB-Fq5",2014-09-07,2014-09-07,"YB","F","5","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover and glare."
+"2014-09-07_YB-Fq6",2014-09-07,2014-09-07,"YB","F","6","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","30%","Counts likely low due to algae cover and glare."
+"2014-09-07_YB-Fq4",2014-09-07,2014-09-07,"YB","F","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-09-07_YB-Fq5",2014-09-07,2014-09-07,"YB","F","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover and glare."
+"2014-09-07_YB-Fq6",2014-09-07,2014-09-07,"YB","F","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","30%","Counts likely low due to algae cover and glare."
+"2014-09-07_YB-Fq4",2014-09-07,2014-09-07,"YB","F","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-09-07_YB-Fq5",2014-09-07,2014-09-07,"YB","F","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover and glare."
+"2014-09-07_YB-Fq6",2014-09-07,2014-09-07,"YB","F","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Counts likely low due to algae cover and glare."
+"2014-09-07_YB-Fq4",2014-09-07,2014-09-07,"YB","F","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-09-07_YB-Fq5",2014-09-07,2014-09-07,"YB","F","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover and glare."
+"2014-09-07_YB-Fq6",2014-09-07,2014-09-07,"YB","F","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Counts likely low due to algae cover and glare."
+"2014-09-07_YB-Fq4",2014-09-07,2014-09-07,"YB","F","4","Lim","Limpets","Type 12",96,0.0875,1097.14285714286,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-09-07_YB-Fq5",2014-09-07,2014-09-07,"YB","F","5","Lim","Limpets","Type 12",89,0.0875,1017.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover and glare."
+"2014-09-07_YB-Fq6",2014-09-07,2014-09-07,"YB","F","6","Lim","Limpets","Type 12",106,0.0875,1211.42857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Counts likely low due to algae cover and glare."
+"2014-09-07_YB-Fq4",2014-09-07,2014-09-07,"YB","F","4","Ls","Littorina_sitkana","Type 13",811,0.0875,9268.57142857143,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-09-07_YB-Fq5",2014-09-07,2014-09-07,"YB","F","5","Ls","Littorina_sitkana","Type 13",485,0.0875,5542.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover and glare."
+"2014-09-07_YB-Fq6",2014-09-07,2014-09-07,"YB","F","6","Ls","Littorina_sitkana","Type 13",708,0.0875,8091.42857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Counts likely low due to algae cover and glare."
+"2014-09-07_YB-Fq4",2014-09-07,2014-09-07,"YB","F","4","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-09-07_YB-Fq5",2014-09-07,2014-09-07,"YB","F","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover and glare."
+"2014-09-07_YB-Fq6",2014-09-07,2014-09-07,"YB","F","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Counts likely low due to algae cover and glare."
+"2014-09-07_YB-Fq4",2014-09-07,2014-09-07,"YB","F","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-09-07_YB-Fq5",2014-09-07,2014-09-07,"YB","F","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover and glare."
+"2014-09-07_YB-Fq6",2014-09-07,2014-09-07,"YB","F","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Counts likely low due to algae cover and glare."
+"2014-09-07_YB-Fq4",2014-09-07,2014-09-07,"YB","F","4","Myt","Mytilus_spp","Type 7",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-09-07_YB-Fq5",2014-09-07,2014-09-07,"YB","F","5","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover and glare."
+"2014-09-07_YB-Fq6",2014-09-07,2014-09-07,"YB","F","6","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Counts likely low due to algae cover and glare."
+"2014-09-07_YB-Fq4",2014-09-07,2014-09-07,"YB","F","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-09-07_YB-Fq5",2014-09-07,2014-09-07,"YB","F","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover and glare."
+"2014-09-07_YB-Fq6",2014-09-07,2014-09-07,"YB","F","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Counts likely low due to algae cover and glare."
+"2014-09-07_YB-Fq4",2014-09-07,2014-09-07,"YB","F","4","Mt","Mytilus_trossulus","Type 15",87,0.015625,5568,"c","Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-09-07_YB-Fq5",2014-09-07,2014-09-07,"YB","F","5","Mt","Mytilus_trossulus","Type 15",454,0.0875,5188.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover and glare."
+"2014-09-07_YB-Fq6",2014-09-07,2014-09-07,"YB","F","6","Mt","Mytilus_trossulus","Type 15",367,0.0875,4194.28571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Counts likely low due to algae cover and glare."
+"2014-09-07_YB-Fq4",2014-09-07,2014-09-07,"YB","F","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-09-07_YB-Fq5",2014-09-07,2014-09-07,"YB","F","5","MtD","Mytilus_trossulus_(dead)","Type 16",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover and glare."
+"2014-09-07_YB-Fq6",2014-09-07,2014-09-07,"YB","F","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Counts likely low due to algae cover and glare."
+"2014-09-07_YB-Fq4",2014-09-07,2014-09-07,"YB","F","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-09-07_YB-Fq5",2014-09-07,2014-09-07,"YB","F","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover and glare."
+"2014-09-07_YB-Fq6",2014-09-07,2014-09-07,"YB","F","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Counts likely low due to algae cover and glare."
+"2014-09-07_YB-Fq4",2014-09-07,2014-09-07,"YB","F","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-09-07_YB-Fq5",2014-09-07,2014-09-07,"YB","F","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover and glare."
+"2014-09-07_YB-Fq6",2014-09-07,2014-09-07,"YB","F","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Counts likely low due to algae cover and glare."
+"2014-09-07_YB-Fq4",2014-09-07,2014-09-07,"YB","F","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-09-07_YB-Fq5",2014-09-07,2014-09-07,"YB","F","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover and glare."
+"2014-09-07_YB-Fq6",2014-09-07,2014-09-07,"YB","F","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Counts likely low due to algae cover and glare."
+"2014-09-07_YB-Fq4",2014-09-07,2014-09-07,"YB","F","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-09-07_YB-Fq5",2014-09-07,2014-09-07,"YB","F","5","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover and glare."
+"2014-09-07_YB-Fq6",2014-09-07,2014-09-07,"YB","F","6","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Counts likely low due to algae cover and glare."
+"2014-09-07_YB-Fq4",2014-09-07,2014-09-07,"YB","F","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-09-07_YB-Fq5",2014-09-07,2014-09-07,"YB","F","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover and glare."
+"2014-09-07_YB-Fq6",2014-09-07,2014-09-07,"YB","F","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Counts likely low due to algae cover and glare."
+"2014-09-07_YB-Fq4",2014-09-07,2014-09-07,"YB","F","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-09-07_YB-Fq5",2014-09-07,2014-09-07,"YB","F","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover and glare."
+"2014-09-07_YB-Fq6",2014-09-07,2014-09-07,"YB","F","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Counts likely low due to algae cover and glare."
+"2014-09-07_YB-Fq4",2014-09-07,2014-09-07,"YB","F","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-09-07_YB-Fq5",2014-09-07,2014-09-07,"YB","F","5","Pp","Pollicipes_polymerus","Type 11",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover and glare."
+"2014-09-07_YB-Fq6",2014-09-07,2014-09-07,"YB","F","6","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Counts likely low due to algae cover and glare."
+"2014-09-07_YB-Fq4",2014-09-07,2014-09-07,"YB","F","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-09-07_YB-Fq5",2014-09-07,2014-09-07,"YB","F","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover and glare."
+"2014-09-07_YB-Fq6",2014-09-07,2014-09-07,"YB","F","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Counts likely low due to algae cover and glare."
+"2014-09-07_YB-Fq4",2014-09-07,2014-09-07,"YB","F","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-09-07_YB-Fq5",2014-09-07,2014-09-07,"YB","F","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover and glare."
+"2014-09-07_YB-Fq6",2014-09-07,2014-09-07,"YB","F","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Counts likely low due to algae cover and glare."
+"2014-09-07_YB-Fq4",2014-09-07,2014-09-07,"YB","F","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-09-07_YB-Fq5",2014-09-07,2014-09-07,"YB","F","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover and glare."
+"2014-09-07_YB-Fq6",2014-09-07,2014-09-07,"YB","F","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Counts likely low due to algae cover and glare."
+"2014-09-07_YB-Gq3",2014-09-07,2014-09-07,"YB","G","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","All counts likely low due to high algae coverage and blur"
+"2014-09-07_YB-Gq5",2014-09-07,2014-09-07,"YB","G","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts low due to blur, glare, and algae cover."
+"2014-09-07_YB-Gq8",2014-09-07,2014-09-07,"YB","G","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to blur and glare"
+"2014-09-07_YB-Gq3",2014-09-07,2014-09-07,"YB","G","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","All counts likely low due to high algae coverage and blur"
+"2014-09-07_YB-Gq5",2014-09-07,2014-09-07,"YB","G","5","Ae","Anemones","Type 14",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts low due to blur, glare, and algae cover."
+"2014-09-07_YB-Gq8",2014-09-07,2014-09-07,"YB","G","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to blur and glare"
+"2014-09-07_YB-Gq3",2014-09-07,2014-09-07,"YB","G","3","Bg","Balanus_glandula","Type 1",201,0.0875,2297.14285714286,NA,"Stephanie Merhoff","Finished","Full","Full","60%","All counts likely low due to high algae coverage and blur"
+"2014-09-07_YB-Gq5",2014-09-07,2014-09-07,"YB","G","5","Bg","Balanus_glandula","Type 1",595,0.0875,6800,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts low due to blur, glare, and algae cover."
+"2014-09-07_YB-Gq8",2014-09-07,2014-09-07,"YB","G","8","Bg","Balanus_glandula","Type 1",1317,0.0875,15051.4285714286,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to blur and glare"
+"2014-09-07_YB-Gq3",2014-09-07,2014-09-07,"YB","G","3","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","All counts likely low due to high algae coverage and blur"
+"2014-09-07_YB-Gq5",2014-09-07,2014-09-07,"YB","G","5","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts low due to blur, glare, and algae cover."
+"2014-09-07_YB-Gq8",2014-09-07,2014-09-07,"YB","G","8","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to blur and glare"
+"2014-09-07_YB-Gq3",2014-09-07,2014-09-07,"YB","G","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","All counts likely low due to high algae coverage and blur"
+"2014-09-07_YB-Gq5",2014-09-07,2014-09-07,"YB","G","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts low due to blur, glare, and algae cover."
+"2014-09-07_YB-Gq8",2014-09-07,2014-09-07,"YB","G","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to blur and glare"
+"2014-09-07_YB-Gq3",2014-09-07,2014-09-07,"YB","G","3","Cth","Chthamalus_dalli","Type 3",156,0.0875,1782.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","60%","All counts likely low due to high algae coverage and blur"
+"2014-09-07_YB-Gq5",2014-09-07,2014-09-07,"YB","G","5","Cth","Chthamalus_dalli","Type 3",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts low due to blur, glare, and algae cover."
+"2014-09-07_YB-Gq8",2014-09-07,2014-09-07,"YB","G","8","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to blur and glare"
+"2014-09-07_YB-Gq3",2014-09-07,2014-09-07,"YB","G","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","All counts likely low due to high algae coverage and blur"
+"2014-09-07_YB-Gq5",2014-09-07,2014-09-07,"YB","G","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts low due to blur, glare, and algae cover."
+"2014-09-07_YB-Gq8",2014-09-07,2014-09-07,"YB","G","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to blur and glare"
+"2014-09-07_YB-Gq3",2014-09-07,2014-09-07,"YB","G","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","All counts likely low due to high algae coverage and blur"
+"2014-09-07_YB-Gq5",2014-09-07,2014-09-07,"YB","G","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts low due to blur, glare, and algae cover."
+"2014-09-07_YB-Gq8",2014-09-07,2014-09-07,"YB","G","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to blur and glare"
+"2014-09-07_YB-Gq3",2014-09-07,2014-09-07,"YB","G","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","All counts likely low due to high algae coverage and blur"
+"2014-09-07_YB-Gq5",2014-09-07,2014-09-07,"YB","G","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts low due to blur, glare, and algae cover."
+"2014-09-07_YB-Gq8",2014-09-07,2014-09-07,"YB","G","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to blur and glare"
+"2014-09-07_YB-Gq3",2014-09-07,2014-09-07,"YB","G","3","Lim","Limpets","Type 12",12,0.0875,137.142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","60%","All counts likely low due to high algae coverage and blur"
+"2014-09-07_YB-Gq5",2014-09-07,2014-09-07,"YB","G","5","Lim","Limpets","Type 12",171,0.0875,1954.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts low due to blur, glare, and algae cover."
+"2014-09-07_YB-Gq8",2014-09-07,2014-09-07,"YB","G","8","Lim","Limpets","Type 12",24,0.0875,274.285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to blur and glare"
+"2014-09-07_YB-Gq3",2014-09-07,2014-09-07,"YB","G","3","Ls","Littorina_sitkana","Type 13",38,0.0875,434.285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","60%","All counts likely low due to high algae coverage and blur"
+"2014-09-07_YB-Gq5",2014-09-07,2014-09-07,"YB","G","5","Ls","Littorina_sitkana","Type 13",76,0.0875,868.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts low due to blur, glare, and algae cover."
+"2014-09-07_YB-Gq8",2014-09-07,2014-09-07,"YB","G","8","Ls","Littorina_sitkana","Type 13",58,0.0875,662.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to blur and glare"
+"2014-09-07_YB-Gq3",2014-09-07,2014-09-07,"YB","G","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","All counts likely low due to high algae coverage and blur"
+"2014-09-07_YB-Gq5",2014-09-07,2014-09-07,"YB","G","5","Mc","Mytilus_californianus","Type 17",18,0.0875,205.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts low due to blur, glare, and algae cover."
+"2014-09-07_YB-Gq8",2014-09-07,2014-09-07,"YB","G","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to blur and glare"
+"2014-09-07_YB-Gq3",2014-09-07,2014-09-07,"YB","G","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","All counts likely low due to high algae coverage and blur"
+"2014-09-07_YB-Gq5",2014-09-07,2014-09-07,"YB","G","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts low due to blur, glare, and algae cover."
+"2014-09-07_YB-Gq8",2014-09-07,2014-09-07,"YB","G","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to blur and glare"
+"2014-09-07_YB-Gq3",2014-09-07,2014-09-07,"YB","G","3","Myt","Mytilus_spp","Type 7",501,0.0875,5725.71428571429,NA,"Stephanie Merhoff","Finished","Full","Full","60%","All counts likely low due to high algae coverage and blur"
+"2014-09-07_YB-Gq5",2014-09-07,2014-09-07,"YB","G","5","Myt","Mytilus_spp","Type 7",15,0.0875,171.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts low due to blur, glare, and algae cover."
+"2014-09-07_YB-Gq8",2014-09-07,2014-09-07,"YB","G","8","Myt","Mytilus_spp","Type 7",427,0.0875,4880,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to blur and glare"
+"2014-09-07_YB-Gq3",2014-09-07,2014-09-07,"YB","G","3","MytD","Mytilus_spp_(dead)","Type 8",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","60%","All counts likely low due to high algae coverage and blur"
+"2014-09-07_YB-Gq5",2014-09-07,2014-09-07,"YB","G","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts low due to blur, glare, and algae cover."
+"2014-09-07_YB-Gq8",2014-09-07,2014-09-07,"YB","G","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to blur and glare"
+"2014-09-07_YB-Gq3",2014-09-07,2014-09-07,"YB","G","3","Mt","Mytilus_trossulus","Type 15",160,0.0875,1828.57142857143,NA,"Stephanie Merhoff","Finished","Full","Full","60%","All counts likely low due to high algae coverage and blur"
+"2014-09-07_YB-Gq5",2014-09-07,2014-09-07,"YB","G","5","Mt","Mytilus_trossulus","Type 15",507,0.0875,5794.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts low due to blur, glare, and algae cover."
+"2014-09-07_YB-Gq8",2014-09-07,2014-09-07,"YB","G","8","Mt","Mytilus_trossulus","Type 15",64,0.0875,731.428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to blur and glare"
+"2014-09-07_YB-Gq3",2014-09-07,2014-09-07,"YB","G","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","All counts likely low due to high algae coverage and blur"
+"2014-09-07_YB-Gq5",2014-09-07,2014-09-07,"YB","G","5","MtD","Mytilus_trossulus_(dead)","Type 16",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts low due to blur, glare, and algae cover."
+"2014-09-07_YB-Gq8",2014-09-07,2014-09-07,"YB","G","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to blur and glare"
+"2014-09-07_YB-Gq3",2014-09-07,2014-09-07,"YB","G","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","All counts likely low due to high algae coverage and blur"
+"2014-09-07_YB-Gq5",2014-09-07,2014-09-07,"YB","G","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts low due to blur, glare, and algae cover."
+"2014-09-07_YB-Gq8",2014-09-07,2014-09-07,"YB","G","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to blur and glare"
+"2014-09-07_YB-Gq3",2014-09-07,2014-09-07,"YB","G","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","All counts likely low due to high algae coverage and blur"
+"2014-09-07_YB-Gq5",2014-09-07,2014-09-07,"YB","G","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts low due to blur, glare, and algae cover."
+"2014-09-07_YB-Gq8",2014-09-07,2014-09-07,"YB","G","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to blur and glare"
+"2014-09-07_YB-Gq3",2014-09-07,2014-09-07,"YB","G","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","All counts likely low due to high algae coverage and blur"
+"2014-09-07_YB-Gq5",2014-09-07,2014-09-07,"YB","G","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts low due to blur, glare, and algae cover."
+"2014-09-07_YB-Gq8",2014-09-07,2014-09-07,"YB","G","8","Negg","Nucella_eggs","Type 26",21,0.0875,240,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to blur and glare"
+"2014-09-07_YB-Gq3",2014-09-07,2014-09-07,"YB","G","3","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","All counts likely low due to high algae coverage and blur"
+"2014-09-07_YB-Gq5",2014-09-07,2014-09-07,"YB","G","5","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts low due to blur, glare, and algae cover."
+"2014-09-07_YB-Gq8",2014-09-07,2014-09-07,"YB","G","8","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to blur and glare"
+"2014-09-07_YB-Gq3",2014-09-07,2014-09-07,"YB","G","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","All counts likely low due to high algae coverage and blur"
+"2014-09-07_YB-Gq5",2014-09-07,2014-09-07,"YB","G","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts low due to blur, glare, and algae cover."
+"2014-09-07_YB-Gq8",2014-09-07,2014-09-07,"YB","G","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to blur and glare"
+"2014-09-07_YB-Gq3",2014-09-07,2014-09-07,"YB","G","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","All counts likely low due to high algae coverage and blur"
+"2014-09-07_YB-Gq5",2014-09-07,2014-09-07,"YB","G","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts low due to blur, glare, and algae cover."
+"2014-09-07_YB-Gq8",2014-09-07,2014-09-07,"YB","G","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to blur and glare"
+"2014-09-07_YB-Gq3",2014-09-07,2014-09-07,"YB","G","3","Pp","Pollicipes_polymerus","Type 11",12,0.0875,137.142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","60%","All counts likely low due to high algae coverage and blur"
+"2014-09-07_YB-Gq5",2014-09-07,2014-09-07,"YB","G","5","Pp","Pollicipes_polymerus","Type 11",10,0.0875,114.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts low due to blur, glare, and algae cover."
+"2014-09-07_YB-Gq8",2014-09-07,2014-09-07,"YB","G","8","Pp","Pollicipes_polymerus","Type 11",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to blur and glare"
+"2014-09-07_YB-Gq3",2014-09-07,2014-09-07,"YB","G","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","All counts likely low due to high algae coverage and blur"
+"2014-09-07_YB-Gq5",2014-09-07,2014-09-07,"YB","G","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts low due to blur, glare, and algae cover."
+"2014-09-07_YB-Gq8",2014-09-07,2014-09-07,"YB","G","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to blur and glare"
+"2014-09-07_YB-Gq3",2014-09-07,2014-09-07,"YB","G","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","All counts likely low due to high algae coverage and blur"
+"2014-09-07_YB-Gq5",2014-09-07,2014-09-07,"YB","G","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts low due to blur, glare, and algae cover."
+"2014-09-07_YB-Gq8",2014-09-07,2014-09-07,"YB","G","8","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to blur and glare"
+"2014-09-07_YB-Gq3",2014-09-07,2014-09-07,"YB","G","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","All counts likely low due to high algae coverage and blur"
+"2014-09-07_YB-Gq5",2014-09-07,2014-09-07,"YB","G","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts low due to blur, glare, and algae cover."
+"2014-09-07_YB-Gq8",2014-09-07,2014-09-07,"YB","G","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to blur and glare"
+"2014-10-13_YB-Aq6",2014-10-13,2014-10-13,"YB","A","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","25%","Counts likely low due to glare"
+"2014-10-13_YB-Aq7",2014-10-13,2014-10-13,"YB","A","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-10-13_YB-Aq9",2014-10-13,2014-10-13,"YB","A","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2014-10-13_YB-Aq6",2014-10-13,2014-10-13,"YB","A","6","Ae","Anemones","Type 14",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","25%","Counts likely low due to glare"
+"2014-10-13_YB-Aq7",2014-10-13,2014-10-13,"YB","A","7","Ae","Anemones","Type 14",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-10-13_YB-Aq9",2014-10-13,2014-10-13,"YB","A","9","Ae","Anemones","Type 14",40,0.0875,457.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2014-10-13_YB-Aq6",2014-10-13,2014-10-13,"YB","A","6","Bg","Balanus_glandula","Type 1",580,0.0875,6628.57142857143,NA,"Celeste Moen","Finished","Full","Full","25%","Counts likely low due to glare"
+"2014-10-13_YB-Aq7",2014-10-13,2014-10-13,"YB","A","7","Bg","Balanus_glandula","Type 1",287,0.015625,18368,"c","Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-10-13_YB-Aq9",2014-10-13,2014-10-13,"YB","A","9","Bg","Balanus_glandula","Type 1",1806,0.0875,20640,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2014-10-13_YB-Aq6",2014-10-13,2014-10-13,"YB","A","6","BgD","Balanus_glandula_(dead)","Type 2",21,0.0875,240,NA,"Celeste Moen","Finished","Full","Full","25%","Counts likely low due to glare"
+"2014-10-13_YB-Aq7",2014-10-13,2014-10-13,"YB","A","7","BgD","Balanus_glandula_(dead)","Type 2",2,0.015625,128,"c","Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-10-13_YB-Aq9",2014-10-13,2014-10-13,"YB","A","9","BgD","Balanus_glandula_(dead)","Type 2",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2014-10-13_YB-Aq6",2014-10-13,2014-10-13,"YB","A","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","25%","Counts likely low due to glare"
+"2014-10-13_YB-Aq7",2014-10-13,2014-10-13,"YB","A","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-10-13_YB-Aq9",2014-10-13,2014-10-13,"YB","A","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2014-10-13_YB-Aq6",2014-10-13,2014-10-13,"YB","A","6","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","25%","Counts likely low due to glare"
+"2014-10-13_YB-Aq7",2014-10-13,2014-10-13,"YB","A","7","Cth","Chthamalus_dalli","Type 3",3,0.015625,192,"c","Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-10-13_YB-Aq9",2014-10-13,2014-10-13,"YB","A","9","Cth","Chthamalus_dalli","Type 3",24,0.0875,274.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2014-10-13_YB-Aq6",2014-10-13,2014-10-13,"YB","A","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","25%","Counts likely low due to glare"
+"2014-10-13_YB-Aq7",2014-10-13,2014-10-13,"YB","A","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-10-13_YB-Aq9",2014-10-13,2014-10-13,"YB","A","9","CthD","Chthamalus_dalli (dead)","Type 4",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2014-10-13_YB-Aq6",2014-10-13,2014-10-13,"YB","A","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","25%","Counts likely low due to glare"
+"2014-10-13_YB-Aq7",2014-10-13,2014-10-13,"YB","A","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-10-13_YB-Aq9",2014-10-13,2014-10-13,"YB","A","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2014-10-13_YB-Aq6",2014-10-13,2014-10-13,"YB","A","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","25%","Counts likely low due to glare"
+"2014-10-13_YB-Aq7",2014-10-13,2014-10-13,"YB","A","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-10-13_YB-Aq9",2014-10-13,2014-10-13,"YB","A","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2014-10-13_YB-Aq6",2014-10-13,2014-10-13,"YB","A","6","Lim","Limpets","Type 12",2,0.0875,22.8571428571429,NA,"Celeste Moen","Finished","Full","Full","25%","Counts likely low due to glare"
+"2014-10-13_YB-Aq7",2014-10-13,2014-10-13,"YB","A","7","Lim","Limpets","Type 12",294,0.0875,3360,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-10-13_YB-Aq9",2014-10-13,2014-10-13,"YB","A","9","Lim","Limpets","Type 12",392,0.0875,4480,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2014-10-13_YB-Aq6",2014-10-13,2014-10-13,"YB","A","6","Ls","Littorina_sitkana","Type 13",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","25%","Counts likely low due to glare"
+"2014-10-13_YB-Aq7",2014-10-13,2014-10-13,"YB","A","7","Ls","Littorina_sitkana","Type 13",141,0.0875,1611.42857142857,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-10-13_YB-Aq9",2014-10-13,2014-10-13,"YB","A","9","Ls","Littorina_sitkana","Type 13",146,0.0875,1668.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2014-10-13_YB-Aq6",2014-10-13,2014-10-13,"YB","A","6","Mc","Mytilus_californianus","Type 17",1,0.0875,11.4285714285714,NA,"Celeste Moen","Finished","Full","Full","25%","Counts likely low due to glare"
+"2014-10-13_YB-Aq7",2014-10-13,2014-10-13,"YB","A","7","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-10-13_YB-Aq9",2014-10-13,2014-10-13,"YB","A","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2014-10-13_YB-Aq6",2014-10-13,2014-10-13,"YB","A","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","25%","Counts likely low due to glare"
+"2014-10-13_YB-Aq7",2014-10-13,2014-10-13,"YB","A","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-10-13_YB-Aq9",2014-10-13,2014-10-13,"YB","A","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2014-10-13_YB-Aq6",2014-10-13,2014-10-13,"YB","A","6","Myt","Mytilus_spp","Type 7",306,0.0875,3497.14285714286,NA,"Celeste Moen","Finished","Full","Full","25%","Counts likely low due to glare"
+"2014-10-13_YB-Aq7",2014-10-13,2014-10-13,"YB","A","7","Myt","Mytilus_spp","Type 7",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-10-13_YB-Aq9",2014-10-13,2014-10-13,"YB","A","9","Myt","Mytilus_spp","Type 7",44,0.0875,502.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2014-10-13_YB-Aq6",2014-10-13,2014-10-13,"YB","A","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","25%","Counts likely low due to glare"
+"2014-10-13_YB-Aq7",2014-10-13,2014-10-13,"YB","A","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-10-13_YB-Aq9",2014-10-13,2014-10-13,"YB","A","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2014-10-13_YB-Aq6",2014-10-13,2014-10-13,"YB","A","6","Mt","Mytilus_trossulus","Type 15",192,0.0875,2194.28571428571,NA,"Celeste Moen","Finished","Full","Full","25%","Counts likely low due to glare"
+"2014-10-13_YB-Aq7",2014-10-13,2014-10-13,"YB","A","7","Mt","Mytilus_trossulus","Type 15",54,0.015625,3456,"c","Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-10-13_YB-Aq9",2014-10-13,2014-10-13,"YB","A","9","Mt","Mytilus_trossulus","Type 15",334,0.0875,3817.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2014-10-13_YB-Aq6",2014-10-13,2014-10-13,"YB","A","6","MtD","Mytilus_trossulus_(dead)","Type 16",1,0.0875,11.4285714285714,NA,"Celeste Moen","Finished","Full","Full","25%","Counts likely low due to glare"
+"2014-10-13_YB-Aq7",2014-10-13,2014-10-13,"YB","A","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-10-13_YB-Aq9",2014-10-13,2014-10-13,"YB","A","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2014-10-13_YB-Aq6",2014-10-13,2014-10-13,"YB","A","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","25%","Counts likely low due to glare"
+"2014-10-13_YB-Aq7",2014-10-13,2014-10-13,"YB","A","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-10-13_YB-Aq9",2014-10-13,2014-10-13,"YB","A","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2014-10-13_YB-Aq6",2014-10-13,2014-10-13,"YB","A","6","Nc","Nucella_canaliculata","Type 10",5,0.0875,57.1428571428571,NA,"Celeste Moen","Finished","Full","Full","25%","Counts likely low due to glare"
+"2014-10-13_YB-Aq7",2014-10-13,2014-10-13,"YB","A","7","Nc","Nucella_canaliculata","Type 10",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-10-13_YB-Aq9",2014-10-13,2014-10-13,"YB","A","9","Nc","Nucella_canaliculata","Type 10",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2014-10-13_YB-Aq6",2014-10-13,2014-10-13,"YB","A","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","25%","Counts likely low due to glare"
+"2014-10-13_YB-Aq7",2014-10-13,2014-10-13,"YB","A","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-10-13_YB-Aq9",2014-10-13,2014-10-13,"YB","A","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2014-10-13_YB-Aq6",2014-10-13,2014-10-13,"YB","A","6","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Celeste Moen","Finished","Full","Full","25%","Counts likely low due to glare"
+"2014-10-13_YB-Aq7",2014-10-13,2014-10-13,"YB","A","7","No","Nucella_ostrina","Type 9",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-10-13_YB-Aq9",2014-10-13,2014-10-13,"YB","A","9","No","Nucella_ostrina","Type 9",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2014-10-13_YB-Aq6",2014-10-13,2014-10-13,"YB","A","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","25%","Counts likely low due to glare"
+"2014-10-13_YB-Aq7",2014-10-13,2014-10-13,"YB","A","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-10-13_YB-Aq9",2014-10-13,2014-10-13,"YB","A","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2014-10-13_YB-Aq6",2014-10-13,2014-10-13,"YB","A","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","25%","Counts likely low due to glare"
+"2014-10-13_YB-Aq7",2014-10-13,2014-10-13,"YB","A","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-10-13_YB-Aq9",2014-10-13,2014-10-13,"YB","A","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2014-10-13_YB-Aq6",2014-10-13,2014-10-13,"YB","A","6","Pp","Pollicipes_polymerus","Type 11",7,0.0875,80,NA,"Celeste Moen","Finished","Full","Full","25%","Counts likely low due to glare"
+"2014-10-13_YB-Aq7",2014-10-13,2014-10-13,"YB","A","7","Pp","Pollicipes_polymerus","Type 11",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-10-13_YB-Aq9",2014-10-13,2014-10-13,"YB","A","9","Pp","Pollicipes_polymerus","Type 11",48,0.0875,548.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2014-10-13_YB-Aq6",2014-10-13,2014-10-13,"YB","A","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","25%","Counts likely low due to glare"
+"2014-10-13_YB-Aq7",2014-10-13,2014-10-13,"YB","A","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-10-13_YB-Aq9",2014-10-13,2014-10-13,"YB","A","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2014-10-13_YB-Aq6",2014-10-13,2014-10-13,"YB","A","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","25%","Counts likely low due to glare"
+"2014-10-13_YB-Aq7",2014-10-13,2014-10-13,"YB","A","7","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-10-13_YB-Aq9",2014-10-13,2014-10-13,"YB","A","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2014-10-13_YB-Aq6",2014-10-13,2014-10-13,"YB","A","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","25%","Counts likely low due to glare"
+"2014-10-13_YB-Aq7",2014-10-13,2014-10-13,"YB","A","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-10-13_YB-Aq9",2014-10-13,2014-10-13,"YB","A","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2014-10-13_YB-ABq1",2014-10-13,2014-10-13,"YB","AB","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts likely low due to glare, blur, and heavy algae cover"
+"2014-10-13_YB-ABq2",2014-10-13,2014-10-13,"YB","AB","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts likely low due to algal cover, glare, and blur."
+"2014-10-13_YB-ABq4",2014-10-13,2014-10-13,"YB","AB","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to glare and algae."
+"2014-10-13_YB-ABq1",2014-10-13,2014-10-13,"YB","AB","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts likely low due to glare, blur, and heavy algae cover"
+"2014-10-13_YB-ABq2",2014-10-13,2014-10-13,"YB","AB","2","Ae","Anemones","Type 14",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts likely low due to algal cover, glare, and blur."
+"2014-10-13_YB-ABq4",2014-10-13,2014-10-13,"YB","AB","4","Ae","Anemones","Type 14",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to glare and algae."
+"2014-10-13_YB-ABq1",2014-10-13,2014-10-13,"YB","AB","1","Bg","Balanus_glandula","Type 1",299,0.015625,19136,"c","Beatriz Vaca","Finished","Full","Cropped","60%","Counts likely low due to glare, blur, and heavy algae cover"
+"2014-10-13_YB-ABq2",2014-10-13,2014-10-13,"YB","AB","2","Bg","Balanus_glandula","Type 1",82,0.0875,937.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts likely low due to algal cover, glare, and blur."
+"2014-10-13_YB-ABq4",2014-10-13,2014-10-13,"YB","AB","4","Bg","Balanus_glandula","Type 1",941,0.0875,10754.2857142857,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to glare and algae."
+"2014-10-13_YB-ABq1",2014-10-13,2014-10-13,"YB","AB","1","BgD","Balanus_glandula_(dead)","Type 2",2,0.015625,128,"c","Beatriz Vaca","Finished","Full","Cropped","60%","Counts likely low due to glare, blur, and heavy algae cover"
+"2014-10-13_YB-ABq2",2014-10-13,2014-10-13,"YB","AB","2","BgD","Balanus_glandula_(dead)","Type 2",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts likely low due to algal cover, glare, and blur."
+"2014-10-13_YB-ABq4",2014-10-13,2014-10-13,"YB","AB","4","BgD","Balanus_glandula_(dead)","Type 2",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to glare and algae."
+"2014-10-13_YB-ABq1",2014-10-13,2014-10-13,"YB","AB","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts likely low due to glare, blur, and heavy algae cover"
+"2014-10-13_YB-ABq2",2014-10-13,2014-10-13,"YB","AB","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts likely low due to algal cover, glare, and blur."
+"2014-10-13_YB-ABq4",2014-10-13,2014-10-13,"YB","AB","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to glare and algae."
+"2014-10-13_YB-ABq1",2014-10-13,2014-10-13,"YB","AB","1","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","60%","Counts likely low due to glare, blur, and heavy algae cover"
+"2014-10-13_YB-ABq2",2014-10-13,2014-10-13,"YB","AB","2","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts likely low due to algal cover, glare, and blur."
+"2014-10-13_YB-ABq4",2014-10-13,2014-10-13,"YB","AB","4","Cth","Chthamalus_dalli","Type 3",220,0.0875,2514.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to glare and algae."
+"2014-10-13_YB-ABq1",2014-10-13,2014-10-13,"YB","AB","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","60%","Counts likely low due to glare, blur, and heavy algae cover"
+"2014-10-13_YB-ABq2",2014-10-13,2014-10-13,"YB","AB","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts likely low due to algal cover, glare, and blur."
+"2014-10-13_YB-ABq4",2014-10-13,2014-10-13,"YB","AB","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to glare and algae."
+"2014-10-13_YB-ABq1",2014-10-13,2014-10-13,"YB","AB","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts likely low due to glare, blur, and heavy algae cover"
+"2014-10-13_YB-ABq2",2014-10-13,2014-10-13,"YB","AB","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts likely low due to algal cover, glare, and blur."
+"2014-10-13_YB-ABq4",2014-10-13,2014-10-13,"YB","AB","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to glare and algae."
+"2014-10-13_YB-ABq1",2014-10-13,2014-10-13,"YB","AB","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts likely low due to glare, blur, and heavy algae cover"
+"2014-10-13_YB-ABq2",2014-10-13,2014-10-13,"YB","AB","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts likely low due to algal cover, glare, and blur."
+"2014-10-13_YB-ABq4",2014-10-13,2014-10-13,"YB","AB","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to glare and algae."
+"2014-10-13_YB-ABq1",2014-10-13,2014-10-13,"YB","AB","1","Lim","Limpets","Type 12",70,0.0875,800,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts likely low due to glare, blur, and heavy algae cover"
+"2014-10-13_YB-ABq2",2014-10-13,2014-10-13,"YB","AB","2","Lim","Limpets","Type 12",87,0.0875,994.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts likely low due to algal cover, glare, and blur."
+"2014-10-13_YB-ABq4",2014-10-13,2014-10-13,"YB","AB","4","Lim","Limpets","Type 12",446,0.0875,5097.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to glare and algae."
+"2014-10-13_YB-ABq1",2014-10-13,2014-10-13,"YB","AB","1","Ls","Littorina_sitkana","Type 13",55,0.0875,628.571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts likely low due to glare, blur, and heavy algae cover"
+"2014-10-13_YB-ABq2",2014-10-13,2014-10-13,"YB","AB","2","Ls","Littorina_sitkana","Type 13",76,0.0875,868.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts likely low due to algal cover, glare, and blur."
+"2014-10-13_YB-ABq4",2014-10-13,2014-10-13,"YB","AB","4","Ls","Littorina_sitkana","Type 13",192,0.0875,2194.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to glare and algae."
+"2014-10-13_YB-ABq1",2014-10-13,2014-10-13,"YB","AB","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts likely low due to glare, blur, and heavy algae cover"
+"2014-10-13_YB-ABq2",2014-10-13,2014-10-13,"YB","AB","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts likely low due to algal cover, glare, and blur."
+"2014-10-13_YB-ABq4",2014-10-13,2014-10-13,"YB","AB","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to glare and algae."
+"2014-10-13_YB-ABq1",2014-10-13,2014-10-13,"YB","AB","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts likely low due to glare, blur, and heavy algae cover"
+"2014-10-13_YB-ABq2",2014-10-13,2014-10-13,"YB","AB","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts likely low due to algal cover, glare, and blur."
+"2014-10-13_YB-ABq4",2014-10-13,2014-10-13,"YB","AB","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to glare and algae."
+"2014-10-13_YB-ABq1",2014-10-13,2014-10-13,"YB","AB","1","Myt","Mytilus_spp","Type 7",41,0.0875,468.571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts likely low due to glare, blur, and heavy algae cover"
+"2014-10-13_YB-ABq2",2014-10-13,2014-10-13,"YB","AB","2","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts likely low due to algal cover, glare, and blur."
+"2014-10-13_YB-ABq4",2014-10-13,2014-10-13,"YB","AB","4","Myt","Mytilus_spp","Type 7",122,0.0875,1394.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to glare and algae."
+"2014-10-13_YB-ABq1",2014-10-13,2014-10-13,"YB","AB","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts likely low due to glare, blur, and heavy algae cover"
+"2014-10-13_YB-ABq2",2014-10-13,2014-10-13,"YB","AB","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts likely low due to algal cover, glare, and blur."
+"2014-10-13_YB-ABq4",2014-10-13,2014-10-13,"YB","AB","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to glare and algae."
+"2014-10-13_YB-ABq1",2014-10-13,2014-10-13,"YB","AB","1","Mt","Mytilus_trossulus","Type 15",42,0.0875,480,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts likely low due to glare, blur, and heavy algae cover"
+"2014-10-13_YB-ABq2",2014-10-13,2014-10-13,"YB","AB","2","Mt","Mytilus_trossulus","Type 15",217,0.0875,2480,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts likely low due to algal cover, glare, and blur."
+"2014-10-13_YB-ABq4",2014-10-13,2014-10-13,"YB","AB","4","Mt","Mytilus_trossulus","Type 15",351,0.0875,4011.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to glare and algae."
+"2014-10-13_YB-ABq1",2014-10-13,2014-10-13,"YB","AB","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts likely low due to glare, blur, and heavy algae cover"
+"2014-10-13_YB-ABq2",2014-10-13,2014-10-13,"YB","AB","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts likely low due to algal cover, glare, and blur."
+"2014-10-13_YB-ABq4",2014-10-13,2014-10-13,"YB","AB","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to glare and algae."
+"2014-10-13_YB-ABq1",2014-10-13,2014-10-13,"YB","AB","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts likely low due to glare, blur, and heavy algae cover"
+"2014-10-13_YB-ABq2",2014-10-13,2014-10-13,"YB","AB","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts likely low due to algal cover, glare, and blur."
+"2014-10-13_YB-ABq4",2014-10-13,2014-10-13,"YB","AB","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to glare and algae."
+"2014-10-13_YB-ABq1",2014-10-13,2014-10-13,"YB","AB","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts likely low due to glare, blur, and heavy algae cover"
+"2014-10-13_YB-ABq2",2014-10-13,2014-10-13,"YB","AB","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts likely low due to algal cover, glare, and blur."
+"2014-10-13_YB-ABq4",2014-10-13,2014-10-13,"YB","AB","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to glare and algae."
+"2014-10-13_YB-ABq1",2014-10-13,2014-10-13,"YB","AB","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts likely low due to glare, blur, and heavy algae cover"
+"2014-10-13_YB-ABq2",2014-10-13,2014-10-13,"YB","AB","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts likely low due to algal cover, glare, and blur."
+"2014-10-13_YB-ABq4",2014-10-13,2014-10-13,"YB","AB","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to glare and algae."
+"2014-10-13_YB-ABq1",2014-10-13,2014-10-13,"YB","AB","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts likely low due to glare, blur, and heavy algae cover"
+"2014-10-13_YB-ABq2",2014-10-13,2014-10-13,"YB","AB","2","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts likely low due to algal cover, glare, and blur."
+"2014-10-13_YB-ABq4",2014-10-13,2014-10-13,"YB","AB","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to glare and algae."
+"2014-10-13_YB-ABq1",2014-10-13,2014-10-13,"YB","AB","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts likely low due to glare, blur, and heavy algae cover"
+"2014-10-13_YB-ABq2",2014-10-13,2014-10-13,"YB","AB","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts likely low due to algal cover, glare, and blur."
+"2014-10-13_YB-ABq4",2014-10-13,2014-10-13,"YB","AB","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to glare and algae."
+"2014-10-13_YB-ABq1",2014-10-13,2014-10-13,"YB","AB","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts likely low due to glare, blur, and heavy algae cover"
+"2014-10-13_YB-ABq2",2014-10-13,2014-10-13,"YB","AB","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts likely low due to algal cover, glare, and blur."
+"2014-10-13_YB-ABq4",2014-10-13,2014-10-13,"YB","AB","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to glare and algae."
+"2014-10-13_YB-ABq1",2014-10-13,2014-10-13,"YB","AB","1","Pp","Pollicipes_polymerus","Type 11",172,0.0875,1965.71428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts likely low due to glare, blur, and heavy algae cover"
+"2014-10-13_YB-ABq2",2014-10-13,2014-10-13,"YB","AB","2","Pp","Pollicipes_polymerus","Type 11",33,0.0875,377.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts likely low due to algal cover, glare, and blur."
+"2014-10-13_YB-ABq4",2014-10-13,2014-10-13,"YB","AB","4","Pp","Pollicipes_polymerus","Type 11",187,0.0875,2137.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to glare and algae."
+"2014-10-13_YB-ABq1",2014-10-13,2014-10-13,"YB","AB","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts likely low due to glare, blur, and heavy algae cover"
+"2014-10-13_YB-ABq2",2014-10-13,2014-10-13,"YB","AB","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts likely low due to algal cover, glare, and blur."
+"2014-10-13_YB-ABq4",2014-10-13,2014-10-13,"YB","AB","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to glare and algae."
+"2014-10-13_YB-ABq1",2014-10-13,2014-10-13,"YB","AB","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts likely low due to glare, blur, and heavy algae cover"
+"2014-10-13_YB-ABq2",2014-10-13,2014-10-13,"YB","AB","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts likely low due to algal cover, glare, and blur."
+"2014-10-13_YB-ABq4",2014-10-13,2014-10-13,"YB","AB","4","Sc","Semibalanus_cariosus","Type 5",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to glare and algae."
+"2014-10-13_YB-ABq1",2014-10-13,2014-10-13,"YB","AB","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","60%","Counts likely low due to glare, blur, and heavy algae cover"
+"2014-10-13_YB-ABq2",2014-10-13,2014-10-13,"YB","AB","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts likely low due to algal cover, glare, and blur."
+"2014-10-13_YB-ABq4",2014-10-13,2014-10-13,"YB","AB","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to glare and algae."
+"2014-10-13_YB-ACq4",2014-10-13,2014-10-13,"YB","AC","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%","Counts may be low due to glare."
+"2014-10-13_YB-ACq7",2014-10-13,2014-10-13,"YB","AC","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to algae cover, which is a thin filmy layer."
+"2014-10-13_YB-ACq8",2014-10-13,2014-10-13,"YB","AC","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to glare and blur."
+"2014-10-13_YB-ACq4",2014-10-13,2014-10-13,"YB","AC","4","Ae","Anemones","Type 14",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","20%","Counts may be low due to glare."
+"2014-10-13_YB-ACq7",2014-10-13,2014-10-13,"YB","AC","7","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to algae cover, which is a thin filmy layer."
+"2014-10-13_YB-ACq8",2014-10-13,2014-10-13,"YB","AC","8","Ae","Anemones","Type 14",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to glare and blur."
+"2014-10-13_YB-ACq4",2014-10-13,2014-10-13,"YB","AC","4","Bg","Balanus_glandula","Type 1",992,0.015625,63488,"c","Beatriz Vaca","Finished","Full","Cropped","20%","Counts may be low due to glare."
+"2014-10-13_YB-ACq7",2014-10-13,2014-10-13,"YB","AC","7","Bg","Balanus_glandula","Type 1",1313,0.015625,84032,"c","Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to algae cover, which is a thin filmy layer."
+"2014-10-13_YB-ACq8",2014-10-13,2014-10-13,"YB","AC","8","Bg","Balanus_glandula","Type 1",3463,0.0875,39577.1428571429,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to glare and blur."
+"2014-10-13_YB-ACq4",2014-10-13,2014-10-13,"YB","AC","4","BgD","Balanus_glandula_(dead)","Type 2",13,0.015625,832,"c","Beatriz Vaca","Finished","Full","Cropped","20%","Counts may be low due to glare."
+"2014-10-13_YB-ACq7",2014-10-13,2014-10-13,"YB","AC","7","BgD","Balanus_glandula_(dead)","Type 2",4,0.015625,256,"c","Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to algae cover, which is a thin filmy layer."
+"2014-10-13_YB-ACq8",2014-10-13,2014-10-13,"YB","AC","8","BgD","Balanus_glandula_(dead)","Type 2",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to glare and blur."
+"2014-10-13_YB-ACq4",2014-10-13,2014-10-13,"YB","AC","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%","Counts may be low due to glare."
+"2014-10-13_YB-ACq7",2014-10-13,2014-10-13,"YB","AC","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to algae cover, which is a thin filmy layer."
+"2014-10-13_YB-ACq8",2014-10-13,2014-10-13,"YB","AC","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to glare and blur."
+"2014-10-13_YB-ACq4",2014-10-13,2014-10-13,"YB","AC","4","Cth","Chthamalus_dalli","Type 3",1,0.015625,64,"c","Beatriz Vaca","Finished","Full","Cropped","20%","Counts may be low due to glare."
+"2014-10-13_YB-ACq7",2014-10-13,2014-10-13,"YB","AC","7","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to algae cover, which is a thin filmy layer."
+"2014-10-13_YB-ACq8",2014-10-13,2014-10-13,"YB","AC","8","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to glare and blur."
+"2014-10-13_YB-ACq4",2014-10-13,2014-10-13,"YB","AC","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","20%","Counts may be low due to glare."
+"2014-10-13_YB-ACq7",2014-10-13,2014-10-13,"YB","AC","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to algae cover, which is a thin filmy layer."
+"2014-10-13_YB-ACq8",2014-10-13,2014-10-13,"YB","AC","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to glare and blur."
+"2014-10-13_YB-ACq4",2014-10-13,2014-10-13,"YB","AC","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%","Counts may be low due to glare."
+"2014-10-13_YB-ACq7",2014-10-13,2014-10-13,"YB","AC","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to algae cover, which is a thin filmy layer."
+"2014-10-13_YB-ACq8",2014-10-13,2014-10-13,"YB","AC","8","Emp","Emplectonema worm","Type 23",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to glare and blur."
+"2014-10-13_YB-ACq4",2014-10-13,2014-10-13,"YB","AC","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%","Counts may be low due to glare."
+"2014-10-13_YB-ACq7",2014-10-13,2014-10-13,"YB","AC","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to algae cover, which is a thin filmy layer."
+"2014-10-13_YB-ACq8",2014-10-13,2014-10-13,"YB","AC","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to glare and blur."
+"2014-10-13_YB-ACq4",2014-10-13,2014-10-13,"YB","AC","4","Lim","Limpets","Type 12",49,0.0875,560,NA,"Beatriz Vaca","Finished","Full","Cropped","20%","Counts may be low due to glare."
+"2014-10-13_YB-ACq7",2014-10-13,2014-10-13,"YB","AC","7","Lim","Limpets","Type 12",93,0.0875,1062.85714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to algae cover, which is a thin filmy layer."
+"2014-10-13_YB-ACq8",2014-10-13,2014-10-13,"YB","AC","8","Lim","Limpets","Type 12",137,0.0875,1565.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to glare and blur."
+"2014-10-13_YB-ACq4",2014-10-13,2014-10-13,"YB","AC","4","Ls","Littorina_sitkana","Type 13",287,0.0875,3280,NA,"Beatriz Vaca","Finished","Full","Cropped","20%","Counts may be low due to glare."
+"2014-10-13_YB-ACq7",2014-10-13,2014-10-13,"YB","AC","7","Ls","Littorina_sitkana","Type 13",218,0.0875,2491.42857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to algae cover, which is a thin filmy layer."
+"2014-10-13_YB-ACq8",2014-10-13,2014-10-13,"YB","AC","8","Ls","Littorina_sitkana","Type 13",394,0.0875,4502.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to glare and blur."
+"2014-10-13_YB-ACq4",2014-10-13,2014-10-13,"YB","AC","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%","Counts may be low due to glare."
+"2014-10-13_YB-ACq7",2014-10-13,2014-10-13,"YB","AC","7","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to algae cover, which is a thin filmy layer."
+"2014-10-13_YB-ACq8",2014-10-13,2014-10-13,"YB","AC","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to glare and blur."
+"2014-10-13_YB-ACq4",2014-10-13,2014-10-13,"YB","AC","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%","Counts may be low due to glare."
+"2014-10-13_YB-ACq7",2014-10-13,2014-10-13,"YB","AC","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to algae cover, which is a thin filmy layer."
+"2014-10-13_YB-ACq8",2014-10-13,2014-10-13,"YB","AC","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to glare and blur."
+"2014-10-13_YB-ACq4",2014-10-13,2014-10-13,"YB","AC","4","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%","Counts may be low due to glare."
+"2014-10-13_YB-ACq7",2014-10-13,2014-10-13,"YB","AC","7","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to algae cover, which is a thin filmy layer."
+"2014-10-13_YB-ACq8",2014-10-13,2014-10-13,"YB","AC","8","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to glare and blur."
+"2014-10-13_YB-ACq4",2014-10-13,2014-10-13,"YB","AC","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%","Counts may be low due to glare."
+"2014-10-13_YB-ACq7",2014-10-13,2014-10-13,"YB","AC","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to algae cover, which is a thin filmy layer."
+"2014-10-13_YB-ACq8",2014-10-13,2014-10-13,"YB","AC","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to glare and blur."
+"2014-10-13_YB-ACq4",2014-10-13,2014-10-13,"YB","AC","4","Mt","Mytilus_trossulus","Type 15",79,0.0875,902.857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","20%","Counts may be low due to glare."
+"2014-10-13_YB-ACq7",2014-10-13,2014-10-13,"YB","AC","7","Mt","Mytilus_trossulus","Type 15",172,0.0875,1965.71428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to algae cover, which is a thin filmy layer."
+"2014-10-13_YB-ACq8",2014-10-13,2014-10-13,"YB","AC","8","Mt","Mytilus_trossulus","Type 15",183,0.0875,2091.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to glare and blur."
+"2014-10-13_YB-ACq4",2014-10-13,2014-10-13,"YB","AC","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%","Counts may be low due to glare."
+"2014-10-13_YB-ACq7",2014-10-13,2014-10-13,"YB","AC","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to algae cover, which is a thin filmy layer."
+"2014-10-13_YB-ACq8",2014-10-13,2014-10-13,"YB","AC","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to glare and blur."
+"2014-10-13_YB-ACq4",2014-10-13,2014-10-13,"YB","AC","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%","Counts may be low due to glare."
+"2014-10-13_YB-ACq7",2014-10-13,2014-10-13,"YB","AC","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to algae cover, which is a thin filmy layer."
+"2014-10-13_YB-ACq8",2014-10-13,2014-10-13,"YB","AC","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to glare and blur."
+"2014-10-13_YB-ACq4",2014-10-13,2014-10-13,"YB","AC","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%","Counts may be low due to glare."
+"2014-10-13_YB-ACq7",2014-10-13,2014-10-13,"YB","AC","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to algae cover, which is a thin filmy layer."
+"2014-10-13_YB-ACq8",2014-10-13,2014-10-13,"YB","AC","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to glare and blur."
+"2014-10-13_YB-ACq4",2014-10-13,2014-10-13,"YB","AC","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%","Counts may be low due to glare."
+"2014-10-13_YB-ACq7",2014-10-13,2014-10-13,"YB","AC","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to algae cover, which is a thin filmy layer."
+"2014-10-13_YB-ACq8",2014-10-13,2014-10-13,"YB","AC","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to glare and blur."
+"2014-10-13_YB-ACq4",2014-10-13,2014-10-13,"YB","AC","4","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","20%","Counts may be low due to glare."
+"2014-10-13_YB-ACq7",2014-10-13,2014-10-13,"YB","AC","7","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to algae cover, which is a thin filmy layer."
+"2014-10-13_YB-ACq8",2014-10-13,2014-10-13,"YB","AC","8","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to glare and blur."
+"2014-10-13_YB-ACq4",2014-10-13,2014-10-13,"YB","AC","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%","Counts may be low due to glare."
+"2014-10-13_YB-ACq7",2014-10-13,2014-10-13,"YB","AC","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to algae cover, which is a thin filmy layer."
+"2014-10-13_YB-ACq8",2014-10-13,2014-10-13,"YB","AC","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to glare and blur."
+"2014-10-13_YB-ACq4",2014-10-13,2014-10-13,"YB","AC","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%","Counts may be low due to glare."
+"2014-10-13_YB-ACq7",2014-10-13,2014-10-13,"YB","AC","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to algae cover, which is a thin filmy layer."
+"2014-10-13_YB-ACq8",2014-10-13,2014-10-13,"YB","AC","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to glare and blur."
+"2014-10-13_YB-ACq4",2014-10-13,2014-10-13,"YB","AC","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%","Counts may be low due to glare."
+"2014-10-13_YB-ACq7",2014-10-13,2014-10-13,"YB","AC","7","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to algae cover, which is a thin filmy layer."
+"2014-10-13_YB-ACq8",2014-10-13,2014-10-13,"YB","AC","8","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to glare and blur."
+"2014-10-13_YB-ACq4",2014-10-13,2014-10-13,"YB","AC","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%","Counts may be low due to glare."
+"2014-10-13_YB-ACq7",2014-10-13,2014-10-13,"YB","AC","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to algae cover, which is a thin filmy layer."
+"2014-10-13_YB-ACq8",2014-10-13,2014-10-13,"YB","AC","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to glare and blur."
+"2014-10-13_YB-ACq4",2014-10-13,2014-10-13,"YB","AC","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%","Counts may be low due to glare."
+"2014-10-13_YB-ACq7",2014-10-13,2014-10-13,"YB","AC","7","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to algae cover, which is a thin filmy layer."
+"2014-10-13_YB-ACq8",2014-10-13,2014-10-13,"YB","AC","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to glare and blur."
+"2014-10-13_YB-ACq4",2014-10-13,2014-10-13,"YB","AC","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%","Counts may be low due to glare."
+"2014-10-13_YB-ACq7",2014-10-13,2014-10-13,"YB","AC","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","Barnacle counts may be low due to algae cover, which is a thin filmy layer."
+"2014-10-13_YB-ACq8",2014-10-13,2014-10-13,"YB","AC","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to glare and blur."
+"2014-10-13_YB-ADq1",2014-10-13,2014-10-13,"YB","AD","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare."
+"2014-10-13_YB-ADq5",2014-10-13,2014-10-13,"YB","AD","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare."
+"2014-10-13_YB-ADq8",2014-10-13,2014-10-13,"YB","AD","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-10-13_YB-ADq1",2014-10-13,2014-10-13,"YB","AD","1","Ae","Anemones","Type 14",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare."
+"2014-10-13_YB-ADq5",2014-10-13,2014-10-13,"YB","AD","5","Ae","Anemones","Type 14",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare."
+"2014-10-13_YB-ADq8",2014-10-13,2014-10-13,"YB","AD","8","Ae","Anemones","Type 14",26,0.0875,297.142857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-10-13_YB-ADq1",2014-10-13,2014-10-13,"YB","AD","1","Bg","Balanus_glandula","Type 1",257,0.0875,2937.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare."
+"2014-10-13_YB-ADq5",2014-10-13,2014-10-13,"YB","AD","5","Bg","Balanus_glandula","Type 1",357,0.0875,4080,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare."
+"2014-10-13_YB-ADq8",2014-10-13,2014-10-13,"YB","AD","8","Bg","Balanus_glandula","Type 1",362,0.015625,23168,"c","Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-10-13_YB-ADq1",2014-10-13,2014-10-13,"YB","AD","1","BgD","Balanus_glandula_(dead)","Type 2",14,0.0875,160,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare."
+"2014-10-13_YB-ADq5",2014-10-13,2014-10-13,"YB","AD","5","BgD","Balanus_glandula_(dead)","Type 2",14,0.0875,160,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare."
+"2014-10-13_YB-ADq8",2014-10-13,2014-10-13,"YB","AD","8","BgD","Balanus_glandula_(dead)","Type 2",1,0.015625,64,"c","Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-10-13_YB-ADq1",2014-10-13,2014-10-13,"YB","AD","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare."
+"2014-10-13_YB-ADq5",2014-10-13,2014-10-13,"YB","AD","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare."
+"2014-10-13_YB-ADq8",2014-10-13,2014-10-13,"YB","AD","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-10-13_YB-ADq1",2014-10-13,2014-10-13,"YB","AD","1","Cth","Chthamalus_dalli","Type 3",13,0.0875,148.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare."
+"2014-10-13_YB-ADq5",2014-10-13,2014-10-13,"YB","AD","5","Cth","Chthamalus_dalli","Type 3",10,0.0875,114.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare."
+"2014-10-13_YB-ADq8",2014-10-13,2014-10-13,"YB","AD","8","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-10-13_YB-ADq1",2014-10-13,2014-10-13,"YB","AD","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare."
+"2014-10-13_YB-ADq5",2014-10-13,2014-10-13,"YB","AD","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare."
+"2014-10-13_YB-ADq8",2014-10-13,2014-10-13,"YB","AD","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-10-13_YB-ADq1",2014-10-13,2014-10-13,"YB","AD","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare."
+"2014-10-13_YB-ADq5",2014-10-13,2014-10-13,"YB","AD","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare."
+"2014-10-13_YB-ADq8",2014-10-13,2014-10-13,"YB","AD","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-10-13_YB-ADq1",2014-10-13,2014-10-13,"YB","AD","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare."
+"2014-10-13_YB-ADq5",2014-10-13,2014-10-13,"YB","AD","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare."
+"2014-10-13_YB-ADq8",2014-10-13,2014-10-13,"YB","AD","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-10-13_YB-ADq1",2014-10-13,2014-10-13,"YB","AD","1","Lim","Limpets","Type 12",157,0.0875,1794.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare."
+"2014-10-13_YB-ADq5",2014-10-13,2014-10-13,"YB","AD","5","Lim","Limpets","Type 12",160,0.0875,1828.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare."
+"2014-10-13_YB-ADq8",2014-10-13,2014-10-13,"YB","AD","8","Lim","Limpets","Type 12",649,0.0875,7417.14285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-10-13_YB-ADq1",2014-10-13,2014-10-13,"YB","AD","1","Ls","Littorina_sitkana","Type 13",71,0.0875,811.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare."
+"2014-10-13_YB-ADq5",2014-10-13,2014-10-13,"YB","AD","5","Ls","Littorina_sitkana","Type 13",139,0.0875,1588.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare."
+"2014-10-13_YB-ADq8",2014-10-13,2014-10-13,"YB","AD","8","Ls","Littorina_sitkana","Type 13",258,0.0875,2948.57142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-10-13_YB-ADq1",2014-10-13,2014-10-13,"YB","AD","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare."
+"2014-10-13_YB-ADq5",2014-10-13,2014-10-13,"YB","AD","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare."
+"2014-10-13_YB-ADq8",2014-10-13,2014-10-13,"YB","AD","8","Mc","Mytilus_californianus","Type 17",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-10-13_YB-ADq1",2014-10-13,2014-10-13,"YB","AD","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare."
+"2014-10-13_YB-ADq5",2014-10-13,2014-10-13,"YB","AD","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare."
+"2014-10-13_YB-ADq8",2014-10-13,2014-10-13,"YB","AD","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-10-13_YB-ADq1",2014-10-13,2014-10-13,"YB","AD","1","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare."
+"2014-10-13_YB-ADq5",2014-10-13,2014-10-13,"YB","AD","5","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare."
+"2014-10-13_YB-ADq8",2014-10-13,2014-10-13,"YB","AD","8","Myt","Mytilus_spp","Type 7",1486,0.0875,16982.8571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-10-13_YB-ADq1",2014-10-13,2014-10-13,"YB","AD","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare."
+"2014-10-13_YB-ADq5",2014-10-13,2014-10-13,"YB","AD","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare."
+"2014-10-13_YB-ADq8",2014-10-13,2014-10-13,"YB","AD","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-10-13_YB-ADq1",2014-10-13,2014-10-13,"YB","AD","1","Mt","Mytilus_trossulus","Type 15",185,0.0875,2114.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare."
+"2014-10-13_YB-ADq5",2014-10-13,2014-10-13,"YB","AD","5","Mt","Mytilus_trossulus","Type 15",190,0.0875,2171.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare."
+"2014-10-13_YB-ADq8",2014-10-13,2014-10-13,"YB","AD","8","Mt","Mytilus_trossulus","Type 15",9,0.0875,102.857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-10-13_YB-ADq1",2014-10-13,2014-10-13,"YB","AD","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare."
+"2014-10-13_YB-ADq5",2014-10-13,2014-10-13,"YB","AD","5","MtD","Mytilus_trossulus_(dead)","Type 16",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare."
+"2014-10-13_YB-ADq8",2014-10-13,2014-10-13,"YB","AD","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-10-13_YB-ADq1",2014-10-13,2014-10-13,"YB","AD","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare."
+"2014-10-13_YB-ADq5",2014-10-13,2014-10-13,"YB","AD","5","Ner","Nereis_worm","Type 24",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare."
+"2014-10-13_YB-ADq8",2014-10-13,2014-10-13,"YB","AD","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-10-13_YB-ADq1",2014-10-13,2014-10-13,"YB","AD","1","Nc","Nucella_canaliculata","Type 10",15,0.0875,171.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare."
+"2014-10-13_YB-ADq5",2014-10-13,2014-10-13,"YB","AD","5","Nc","Nucella_canaliculata","Type 10",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare."
+"2014-10-13_YB-ADq8",2014-10-13,2014-10-13,"YB","AD","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-10-13_YB-ADq1",2014-10-13,2014-10-13,"YB","AD","1","Negg","Nucella_eggs","Type 26",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare."
+"2014-10-13_YB-ADq5",2014-10-13,2014-10-13,"YB","AD","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare."
+"2014-10-13_YB-ADq8",2014-10-13,2014-10-13,"YB","AD","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-10-13_YB-ADq1",2014-10-13,2014-10-13,"YB","AD","1","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare."
+"2014-10-13_YB-ADq5",2014-10-13,2014-10-13,"YB","AD","5","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare."
+"2014-10-13_YB-ADq8",2014-10-13,2014-10-13,"YB","AD","8","No","Nucella_ostrina","Type 9",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-10-13_YB-ADq1",2014-10-13,2014-10-13,"YB","AD","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare."
+"2014-10-13_YB-ADq5",2014-10-13,2014-10-13,"YB","AD","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare."
+"2014-10-13_YB-ADq8",2014-10-13,2014-10-13,"YB","AD","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-10-13_YB-ADq1",2014-10-13,2014-10-13,"YB","AD","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare."
+"2014-10-13_YB-ADq5",2014-10-13,2014-10-13,"YB","AD","5","Pis","Pisaster","Type 21",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare."
+"2014-10-13_YB-ADq8",2014-10-13,2014-10-13,"YB","AD","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-10-13_YB-ADq1",2014-10-13,2014-10-13,"YB","AD","1","Pp","Pollicipes_polymerus","Type 11",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare."
+"2014-10-13_YB-ADq5",2014-10-13,2014-10-13,"YB","AD","5","Pp","Pollicipes_polymerus","Type 11",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare."
+"2014-10-13_YB-ADq8",2014-10-13,2014-10-13,"YB","AD","8","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-10-13_YB-ADq1",2014-10-13,2014-10-13,"YB","AD","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare."
+"2014-10-13_YB-ADq5",2014-10-13,2014-10-13,"YB","AD","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare."
+"2014-10-13_YB-ADq8",2014-10-13,2014-10-13,"YB","AD","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-10-13_YB-ADq1",2014-10-13,2014-10-13,"YB","AD","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare."
+"2014-10-13_YB-ADq5",2014-10-13,2014-10-13,"YB","AD","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare."
+"2014-10-13_YB-ADq8",2014-10-13,2014-10-13,"YB","AD","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-10-13_YB-ADq1",2014-10-13,2014-10-13,"YB","AD","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare."
+"2014-10-13_YB-ADq5",2014-10-13,2014-10-13,"YB","AD","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare."
+"2014-10-13_YB-ADq8",2014-10-13,2014-10-13,"YB","AD","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-10-13_YB-AEq1",2014-10-13,2014-10-13,"YB","AE","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","65%","Counts likely low due to glare."
+"2014-10-13_YB-AEq4",2014-10-13,2014-10-13,"YB","AE","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae and glare."
+"2014-10-13_YB-AEq8",2014-10-13,2014-10-13,"YB","AE","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-10-13_YB-AEq1",2014-10-13,2014-10-13,"YB","AE","1","Ae","Anemones","Type 14",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","65%","Counts likely low due to glare."
+"2014-10-13_YB-AEq4",2014-10-13,2014-10-13,"YB","AE","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae and glare."
+"2014-10-13_YB-AEq8",2014-10-13,2014-10-13,"YB","AE","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-10-13_YB-AEq1",2014-10-13,2014-10-13,"YB","AE","1","Bg","Balanus_glandula","Type 1",1031,0.0875,11782.8571428571,NA,"Beatriz Vaca","Finished","Full","Full","65%","Counts likely low due to glare."
+"2014-10-13_YB-AEq4",2014-10-13,2014-10-13,"YB","AE","4","Bg","Balanus_glandula","Type 1",1980,0.0875,22628.5714285714,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae and glare."
+"2014-10-13_YB-AEq8",2014-10-13,2014-10-13,"YB","AE","8","Bg","Balanus_glandula","Type 1",734,0.015625,46976,"c","Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-10-13_YB-AEq1",2014-10-13,2014-10-13,"YB","AE","1","BgD","Balanus_glandula_(dead)","Type 2",26,0.0875,297.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","65%","Counts likely low due to glare."
+"2014-10-13_YB-AEq4",2014-10-13,2014-10-13,"YB","AE","4","BgD","Balanus_glandula_(dead)","Type 2",19,0.0875,217.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae and glare."
+"2014-10-13_YB-AEq8",2014-10-13,2014-10-13,"YB","AE","8","BgD","Balanus_glandula_(dead)","Type 2",5,0.015625,320,"c","Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-10-13_YB-AEq1",2014-10-13,2014-10-13,"YB","AE","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","65%","Counts likely low due to glare."
+"2014-10-13_YB-AEq4",2014-10-13,2014-10-13,"YB","AE","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae and glare."
+"2014-10-13_YB-AEq8",2014-10-13,2014-10-13,"YB","AE","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-10-13_YB-AEq1",2014-10-13,2014-10-13,"YB","AE","1","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","65%","Counts likely low due to glare."
+"2014-10-13_YB-AEq4",2014-10-13,2014-10-13,"YB","AE","4","Cth","Chthamalus_dalli","Type 3",53,0.0875,605.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae and glare."
+"2014-10-13_YB-AEq8",2014-10-13,2014-10-13,"YB","AE","8","Cth","Chthamalus_dalli","Type 3",6,0.015625,384,"c","Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-10-13_YB-AEq1",2014-10-13,2014-10-13,"YB","AE","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","65%","Counts likely low due to glare."
+"2014-10-13_YB-AEq4",2014-10-13,2014-10-13,"YB","AE","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae and glare."
+"2014-10-13_YB-AEq8",2014-10-13,2014-10-13,"YB","AE","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-10-13_YB-AEq1",2014-10-13,2014-10-13,"YB","AE","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","65%","Counts likely low due to glare."
+"2014-10-13_YB-AEq4",2014-10-13,2014-10-13,"YB","AE","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae and glare."
+"2014-10-13_YB-AEq8",2014-10-13,2014-10-13,"YB","AE","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-10-13_YB-AEq1",2014-10-13,2014-10-13,"YB","AE","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","65%","Counts likely low due to glare."
+"2014-10-13_YB-AEq4",2014-10-13,2014-10-13,"YB","AE","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae and glare."
+"2014-10-13_YB-AEq8",2014-10-13,2014-10-13,"YB","AE","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-10-13_YB-AEq1",2014-10-13,2014-10-13,"YB","AE","1","Lim","Limpets","Type 12",74,0.0875,845.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","65%","Counts likely low due to glare."
+"2014-10-13_YB-AEq4",2014-10-13,2014-10-13,"YB","AE","4","Lim","Limpets","Type 12",227,0.0875,2594.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae and glare."
+"2014-10-13_YB-AEq8",2014-10-13,2014-10-13,"YB","AE","8","Lim","Limpets","Type 12",553,0.0875,6320,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-10-13_YB-AEq1",2014-10-13,2014-10-13,"YB","AE","1","Ls","Littorina_sitkana","Type 13",193,0.0875,2205.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","65%","Counts likely low due to glare."
+"2014-10-13_YB-AEq4",2014-10-13,2014-10-13,"YB","AE","4","Ls","Littorina_sitkana","Type 13",246,0.0875,2811.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae and glare."
+"2014-10-13_YB-AEq8",2014-10-13,2014-10-13,"YB","AE","8","Ls","Littorina_sitkana","Type 13",391,0.0875,4468.57142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-10-13_YB-AEq1",2014-10-13,2014-10-13,"YB","AE","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","65%","Counts likely low due to glare."
+"2014-10-13_YB-AEq4",2014-10-13,2014-10-13,"YB","AE","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae and glare."
+"2014-10-13_YB-AEq8",2014-10-13,2014-10-13,"YB","AE","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-10-13_YB-AEq1",2014-10-13,2014-10-13,"YB","AE","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","65%","Counts likely low due to glare."
+"2014-10-13_YB-AEq4",2014-10-13,2014-10-13,"YB","AE","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae and glare."
+"2014-10-13_YB-AEq8",2014-10-13,2014-10-13,"YB","AE","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-10-13_YB-AEq1",2014-10-13,2014-10-13,"YB","AE","1","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","65%","Counts likely low due to glare."
+"2014-10-13_YB-AEq4",2014-10-13,2014-10-13,"YB","AE","4","Myt","Mytilus_spp","Type 7",200,0.0875,2285.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae and glare."
+"2014-10-13_YB-AEq8",2014-10-13,2014-10-13,"YB","AE","8","Myt","Mytilus_spp","Type 7",744,0.0875,8502.85714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-10-13_YB-AEq1",2014-10-13,2014-10-13,"YB","AE","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","65%","Counts likely low due to glare."
+"2014-10-13_YB-AEq4",2014-10-13,2014-10-13,"YB","AE","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae and glare."
+"2014-10-13_YB-AEq8",2014-10-13,2014-10-13,"YB","AE","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-10-13_YB-AEq1",2014-10-13,2014-10-13,"YB","AE","1","Mt","Mytilus_trossulus","Type 15",162,0.0875,1851.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","65%","Counts likely low due to glare."
+"2014-10-13_YB-AEq4",2014-10-13,2014-10-13,"YB","AE","4","Mt","Mytilus_trossulus","Type 15",191,0.0875,2182.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae and glare."
+"2014-10-13_YB-AEq8",2014-10-13,2014-10-13,"YB","AE","8","Mt","Mytilus_trossulus","Type 15",32,0.0875,365.714285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-10-13_YB-AEq1",2014-10-13,2014-10-13,"YB","AE","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","65%","Counts likely low due to glare."
+"2014-10-13_YB-AEq4",2014-10-13,2014-10-13,"YB","AE","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae and glare."
+"2014-10-13_YB-AEq8",2014-10-13,2014-10-13,"YB","AE","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-10-13_YB-AEq1",2014-10-13,2014-10-13,"YB","AE","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","65%","Counts likely low due to glare."
+"2014-10-13_YB-AEq4",2014-10-13,2014-10-13,"YB","AE","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae and glare."
+"2014-10-13_YB-AEq8",2014-10-13,2014-10-13,"YB","AE","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-10-13_YB-AEq1",2014-10-13,2014-10-13,"YB","AE","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","65%","Counts likely low due to glare."
+"2014-10-13_YB-AEq4",2014-10-13,2014-10-13,"YB","AE","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae and glare."
+"2014-10-13_YB-AEq8",2014-10-13,2014-10-13,"YB","AE","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-10-13_YB-AEq1",2014-10-13,2014-10-13,"YB","AE","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","65%","Counts likely low due to glare."
+"2014-10-13_YB-AEq4",2014-10-13,2014-10-13,"YB","AE","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae and glare."
+"2014-10-13_YB-AEq8",2014-10-13,2014-10-13,"YB","AE","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-10-13_YB-AEq1",2014-10-13,2014-10-13,"YB","AE","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","65%","Counts likely low due to glare."
+"2014-10-13_YB-AEq4",2014-10-13,2014-10-13,"YB","AE","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae and glare."
+"2014-10-13_YB-AEq8",2014-10-13,2014-10-13,"YB","AE","8","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-10-13_YB-AEq1",2014-10-13,2014-10-13,"YB","AE","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","65%","Counts likely low due to glare."
+"2014-10-13_YB-AEq4",2014-10-13,2014-10-13,"YB","AE","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae and glare."
+"2014-10-13_YB-AEq8",2014-10-13,2014-10-13,"YB","AE","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-10-13_YB-AEq1",2014-10-13,2014-10-13,"YB","AE","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","65%","Counts likely low due to glare."
+"2014-10-13_YB-AEq4",2014-10-13,2014-10-13,"YB","AE","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae and glare."
+"2014-10-13_YB-AEq8",2014-10-13,2014-10-13,"YB","AE","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-10-13_YB-AEq1",2014-10-13,2014-10-13,"YB","AE","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","65%","Counts likely low due to glare."
+"2014-10-13_YB-AEq4",2014-10-13,2014-10-13,"YB","AE","4","Pp","Pollicipes_polymerus","Type 11",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae and glare."
+"2014-10-13_YB-AEq8",2014-10-13,2014-10-13,"YB","AE","8","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-10-13_YB-AEq1",2014-10-13,2014-10-13,"YB","AE","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","65%","Counts likely low due to glare."
+"2014-10-13_YB-AEq4",2014-10-13,2014-10-13,"YB","AE","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae and glare."
+"2014-10-13_YB-AEq8",2014-10-13,2014-10-13,"YB","AE","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-10-13_YB-AEq1",2014-10-13,2014-10-13,"YB","AE","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","65%","Counts likely low due to glare."
+"2014-10-13_YB-AEq4",2014-10-13,2014-10-13,"YB","AE","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae and glare."
+"2014-10-13_YB-AEq8",2014-10-13,2014-10-13,"YB","AE","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-10-13_YB-AEq1",2014-10-13,2014-10-13,"YB","AE","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","65%","Counts likely low due to glare."
+"2014-10-13_YB-AEq4",2014-10-13,2014-10-13,"YB","AE","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae and glare."
+"2014-10-13_YB-AEq8",2014-10-13,2014-10-13,"YB","AE","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-10-13_YB-AFq5",2014-10-13,2014-10-13,"YB","AF","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-10-13_YB-AFq8",2014-10-13,2014-10-13,"YB","AF","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","3%",""
+"2014-10-13_YB-AFq9",2014-10-13,2014-10-13,"YB","AF","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to algae film"
+"2014-10-13_YB-AFq5",2014-10-13,2014-10-13,"YB","AF","5","Ae","Anemones","Type 14",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-10-13_YB-AFq8",2014-10-13,2014-10-13,"YB","AF","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","3%",""
+"2014-10-13_YB-AFq9",2014-10-13,2014-10-13,"YB","AF","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to algae film"
+"2014-10-13_YB-AFq5",2014-10-13,2014-10-13,"YB","AF","5","Bg","Balanus_glandula","Type 1",733,0.015625,46912,"c","Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-10-13_YB-AFq8",2014-10-13,2014-10-13,"YB","AF","8","Bg","Balanus_glandula","Type 1",1003,0.015625,64192,"c","Celeste Moen","Finished","Full","Cropped","3%",""
+"2014-10-13_YB-AFq9",2014-10-13,2014-10-13,"YB","AF","9","Bg","Balanus_glandula","Type 1",780,0.015625,49920,"c","Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to algae film"
+"2014-10-13_YB-AFq5",2014-10-13,2014-10-13,"YB","AF","5","BgD","Balanus_glandula_(dead)","Type 2",16,0.015625,1024,"c","Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-10-13_YB-AFq8",2014-10-13,2014-10-13,"YB","AF","8","BgD","Balanus_glandula_(dead)","Type 2",22,0.015625,1408,"c","Celeste Moen","Finished","Full","Cropped","3%",""
+"2014-10-13_YB-AFq9",2014-10-13,2014-10-13,"YB","AF","9","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to algae film"
+"2014-10-13_YB-AFq5",2014-10-13,2014-10-13,"YB","AF","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-10-13_YB-AFq8",2014-10-13,2014-10-13,"YB","AF","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","3%",""
+"2014-10-13_YB-AFq9",2014-10-13,2014-10-13,"YB","AF","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to algae film"
+"2014-10-13_YB-AFq5",2014-10-13,2014-10-13,"YB","AF","5","Cth","Chthamalus_dalli","Type 3",16,0.015625,1024,"c","Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-10-13_YB-AFq8",2014-10-13,2014-10-13,"YB","AF","8","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Celeste Moen","Finished","Full","Cropped","3%",""
+"2014-10-13_YB-AFq9",2014-10-13,2014-10-13,"YB","AF","9","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to algae film"
+"2014-10-13_YB-AFq5",2014-10-13,2014-10-13,"YB","AF","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-10-13_YB-AFq8",2014-10-13,2014-10-13,"YB","AF","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Celeste Moen","Finished","Full","Cropped","3%",""
+"2014-10-13_YB-AFq9",2014-10-13,2014-10-13,"YB","AF","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to algae film"
+"2014-10-13_YB-AFq5",2014-10-13,2014-10-13,"YB","AF","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-10-13_YB-AFq8",2014-10-13,2014-10-13,"YB","AF","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","3%",""
+"2014-10-13_YB-AFq9",2014-10-13,2014-10-13,"YB","AF","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to algae film"
+"2014-10-13_YB-AFq5",2014-10-13,2014-10-13,"YB","AF","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-10-13_YB-AFq8",2014-10-13,2014-10-13,"YB","AF","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","3%",""
+"2014-10-13_YB-AFq9",2014-10-13,2014-10-13,"YB","AF","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to algae film"
+"2014-10-13_YB-AFq5",2014-10-13,2014-10-13,"YB","AF","5","Lim","Limpets","Type 12",144,0.0875,1645.71428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-10-13_YB-AFq8",2014-10-13,2014-10-13,"YB","AF","8","Lim","Limpets","Type 12",5,0.0875,57.1428571428571,NA,"Celeste Moen","Finished","Full","Cropped","3%",""
+"2014-10-13_YB-AFq9",2014-10-13,2014-10-13,"YB","AF","9","Lim","Limpets","Type 12",26,0.0875,297.142857142857,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to algae film"
+"2014-10-13_YB-AFq5",2014-10-13,2014-10-13,"YB","AF","5","Ls","Littorina_sitkana","Type 13",284,0.0875,3245.71428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-10-13_YB-AFq8",2014-10-13,2014-10-13,"YB","AF","8","Ls","Littorina_sitkana","Type 13",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","3%",""
+"2014-10-13_YB-AFq9",2014-10-13,2014-10-13,"YB","AF","9","Ls","Littorina_sitkana","Type 13",75,0.0875,857.142857142857,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to algae film"
+"2014-10-13_YB-AFq5",2014-10-13,2014-10-13,"YB","AF","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-10-13_YB-AFq8",2014-10-13,2014-10-13,"YB","AF","8","Mc","Mytilus_californianus","Type 17",2,0.0875,22.8571428571429,NA,"Celeste Moen","Finished","Full","Cropped","3%",""
+"2014-10-13_YB-AFq9",2014-10-13,2014-10-13,"YB","AF","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to algae film"
+"2014-10-13_YB-AFq5",2014-10-13,2014-10-13,"YB","AF","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-10-13_YB-AFq8",2014-10-13,2014-10-13,"YB","AF","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","3%",""
+"2014-10-13_YB-AFq9",2014-10-13,2014-10-13,"YB","AF","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to algae film"
+"2014-10-13_YB-AFq5",2014-10-13,2014-10-13,"YB","AF","5","Myt","Mytilus_spp","Type 7",132,0.0875,1508.57142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-10-13_YB-AFq8",2014-10-13,2014-10-13,"YB","AF","8","Myt","Mytilus_spp","Type 7",328,0.0875,3748.57142857143,NA,"Celeste Moen","Finished","Full","Cropped","3%",""
+"2014-10-13_YB-AFq9",2014-10-13,2014-10-13,"YB","AF","9","Myt","Mytilus_spp","Type 7",522,0.0875,5965.71428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to algae film"
+"2014-10-13_YB-AFq5",2014-10-13,2014-10-13,"YB","AF","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-10-13_YB-AFq8",2014-10-13,2014-10-13,"YB","AF","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","3%",""
+"2014-10-13_YB-AFq9",2014-10-13,2014-10-13,"YB","AF","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to algae film"
+"2014-10-13_YB-AFq5",2014-10-13,2014-10-13,"YB","AF","5","Mt","Mytilus_trossulus","Type 15",284,0.0875,3245.71428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-10-13_YB-AFq8",2014-10-13,2014-10-13,"YB","AF","8","Mt","Mytilus_trossulus","Type 15",8,0.0875,91.4285714285714,NA,"Celeste Moen","Finished","Full","Cropped","3%",""
+"2014-10-13_YB-AFq9",2014-10-13,2014-10-13,"YB","AF","9","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to algae film"
+"2014-10-13_YB-AFq5",2014-10-13,2014-10-13,"YB","AF","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-10-13_YB-AFq8",2014-10-13,2014-10-13,"YB","AF","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","3%",""
+"2014-10-13_YB-AFq9",2014-10-13,2014-10-13,"YB","AF","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to algae film"
+"2014-10-13_YB-AFq5",2014-10-13,2014-10-13,"YB","AF","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-10-13_YB-AFq8",2014-10-13,2014-10-13,"YB","AF","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","3%",""
+"2014-10-13_YB-AFq9",2014-10-13,2014-10-13,"YB","AF","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to algae film"
+"2014-10-13_YB-AFq5",2014-10-13,2014-10-13,"YB","AF","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-10-13_YB-AFq8",2014-10-13,2014-10-13,"YB","AF","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","3%",""
+"2014-10-13_YB-AFq9",2014-10-13,2014-10-13,"YB","AF","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to algae film"
+"2014-10-13_YB-AFq5",2014-10-13,2014-10-13,"YB","AF","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-10-13_YB-AFq8",2014-10-13,2014-10-13,"YB","AF","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","3%",""
+"2014-10-13_YB-AFq9",2014-10-13,2014-10-13,"YB","AF","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to algae film"
+"2014-10-13_YB-AFq5",2014-10-13,2014-10-13,"YB","AF","5","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-10-13_YB-AFq8",2014-10-13,2014-10-13,"YB","AF","8","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","3%",""
+"2014-10-13_YB-AFq9",2014-10-13,2014-10-13,"YB","AF","9","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to algae film"
+"2014-10-13_YB-AFq5",2014-10-13,2014-10-13,"YB","AF","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-10-13_YB-AFq8",2014-10-13,2014-10-13,"YB","AF","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","3%",""
+"2014-10-13_YB-AFq9",2014-10-13,2014-10-13,"YB","AF","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to algae film"
+"2014-10-13_YB-AFq5",2014-10-13,2014-10-13,"YB","AF","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-10-13_YB-AFq8",2014-10-13,2014-10-13,"YB","AF","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","3%",""
+"2014-10-13_YB-AFq9",2014-10-13,2014-10-13,"YB","AF","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to algae film"
+"2014-10-13_YB-AFq5",2014-10-13,2014-10-13,"YB","AF","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-10-13_YB-AFq8",2014-10-13,2014-10-13,"YB","AF","8","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","3%",""
+"2014-10-13_YB-AFq9",2014-10-13,2014-10-13,"YB","AF","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to algae film"
+"2014-10-13_YB-AFq5",2014-10-13,2014-10-13,"YB","AF","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-10-13_YB-AFq8",2014-10-13,2014-10-13,"YB","AF","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","3%",""
+"2014-10-13_YB-AFq9",2014-10-13,2014-10-13,"YB","AF","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to algae film"
+"2014-10-13_YB-AFq5",2014-10-13,2014-10-13,"YB","AF","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-10-13_YB-AFq8",2014-10-13,2014-10-13,"YB","AF","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","3%",""
+"2014-10-13_YB-AFq9",2014-10-13,2014-10-13,"YB","AF","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to algae film"
+"2014-10-13_YB-AFq5",2014-10-13,2014-10-13,"YB","AF","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-10-13_YB-AFq8",2014-10-13,2014-10-13,"YB","AF","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","3%",""
+"2014-10-13_YB-AFq9",2014-10-13,2014-10-13,"YB","AF","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to algae film"
+"2014-10-13_YB-AGq1",2014-10-13,2014-10-13,"YB","AG","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Full","40%",""
+"2014-10-13_YB-AGq2",2014-10-13,2014-10-13,"YB","AG","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Cropped","40%","Counts may be low due to glare/ algae."
+"2014-10-13_YB-AGq7",2014-10-13,2014-10-13,"YB","AG","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to glare"
+"2014-10-13_YB-AGq9",2014-10-13,2014-10-13,"YB","AG","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","75%",""
+"2014-10-13_YB-AGq1",2014-10-13,2014-10-13,"YB","AG","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Full","40%",""
+"2014-10-13_YB-AGq2",2014-10-13,2014-10-13,"YB","AG","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Cropped","40%","Counts may be low due to glare/ algae."
+"2014-10-13_YB-AGq7",2014-10-13,2014-10-13,"YB","AG","7","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to glare"
+"2014-10-13_YB-AGq9",2014-10-13,2014-10-13,"YB","AG","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","75%",""
+"2014-10-13_YB-AGq1",2014-10-13,2014-10-13,"YB","AG","1","Bg","Balanus_glandula","Type 1",1026,0.0875,11725.7142857143,NA,"Isaac Shepard","Finished","Full","Full","40%",""
+"2014-10-13_YB-AGq2",2014-10-13,2014-10-13,"YB","AG","2","Bg","Balanus_glandula","Type 1",537,0.015625,34368,"c","Rebecca Friedrich","Finished","Full","Cropped","40%","Counts may be low due to glare/ algae."
+"2014-10-13_YB-AGq7",2014-10-13,2014-10-13,"YB","AG","7","Bg","Balanus_glandula","Type 1",1227,0.0875,14022.8571428571,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to glare"
+"2014-10-13_YB-AGq9",2014-10-13,2014-10-13,"YB","AG","9","Bg","Balanus_glandula","Type 1",330,0.0875,3771.42857142857,NA,"Stephanie Merhoff","Finished","Full","Full","75%",""
+"2014-10-13_YB-AGq1",2014-10-13,2014-10-13,"YB","AG","1","BgD","Balanus_glandula_(dead)","Type 2",1,0.0875,11.4285714285714,NA,"Isaac Shepard","Finished","Full","Full","40%",""
+"2014-10-13_YB-AGq2",2014-10-13,2014-10-13,"YB","AG","2","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Rebecca Friedrich","Finished","Full","Cropped","40%","Counts may be low due to glare/ algae."
+"2014-10-13_YB-AGq7",2014-10-13,2014-10-13,"YB","AG","7","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to glare"
+"2014-10-13_YB-AGq9",2014-10-13,2014-10-13,"YB","AG","9","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","75%",""
+"2014-10-13_YB-AGq1",2014-10-13,2014-10-13,"YB","AG","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Full","40%",""
+"2014-10-13_YB-AGq2",2014-10-13,2014-10-13,"YB","AG","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Cropped","40%","Counts may be low due to glare/ algae."
+"2014-10-13_YB-AGq7",2014-10-13,2014-10-13,"YB","AG","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to glare"
+"2014-10-13_YB-AGq9",2014-10-13,2014-10-13,"YB","AG","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","75%",""
+"2014-10-13_YB-AGq1",2014-10-13,2014-10-13,"YB","AG","1","Cth","Chthamalus_dalli","Type 3",24,0.0875,274.285714285714,NA,"Isaac Shepard","Finished","Full","Full","40%",""
+"2014-10-13_YB-AGq2",2014-10-13,2014-10-13,"YB","AG","2","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Rebecca Friedrich","Finished","Full","Cropped","40%","Counts may be low due to glare/ algae."
+"2014-10-13_YB-AGq7",2014-10-13,2014-10-13,"YB","AG","7","Cth","Chthamalus_dalli","Type 3",13,0.0875,148.571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to glare"
+"2014-10-13_YB-AGq9",2014-10-13,2014-10-13,"YB","AG","9","Cth","Chthamalus_dalli","Type 3",43,0.0875,491.428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","75%",""
+"2014-10-13_YB-AGq1",2014-10-13,2014-10-13,"YB","AG","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Full","40%",""
+"2014-10-13_YB-AGq2",2014-10-13,2014-10-13,"YB","AG","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Rebecca Friedrich","Finished","Full","Cropped","40%","Counts may be low due to glare/ algae."
+"2014-10-13_YB-AGq7",2014-10-13,2014-10-13,"YB","AG","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to glare"
+"2014-10-13_YB-AGq9",2014-10-13,2014-10-13,"YB","AG","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","75%",""
+"2014-10-13_YB-AGq1",2014-10-13,2014-10-13,"YB","AG","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Full","40%",""
+"2014-10-13_YB-AGq2",2014-10-13,2014-10-13,"YB","AG","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Cropped","40%","Counts may be low due to glare/ algae."
+"2014-10-13_YB-AGq7",2014-10-13,2014-10-13,"YB","AG","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to glare"
+"2014-10-13_YB-AGq9",2014-10-13,2014-10-13,"YB","AG","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","75%",""
+"2014-10-13_YB-AGq1",2014-10-13,2014-10-13,"YB","AG","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Full","40%",""
+"2014-10-13_YB-AGq2",2014-10-13,2014-10-13,"YB","AG","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Cropped","40%","Counts may be low due to glare/ algae."
+"2014-10-13_YB-AGq7",2014-10-13,2014-10-13,"YB","AG","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to glare"
+"2014-10-13_YB-AGq9",2014-10-13,2014-10-13,"YB","AG","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","75%",""
+"2014-10-13_YB-AGq1",2014-10-13,2014-10-13,"YB","AG","1","Lim","Limpets","Type 12",86,0.0875,982.857142857143,NA,"Isaac Shepard","Finished","Full","Full","40%",""
+"2014-10-13_YB-AGq2",2014-10-13,2014-10-13,"YB","AG","2","Lim","Limpets","Type 12",93,0.0875,1062.85714285714,NA,"Rebecca Friedrich","Finished","Full","Cropped","40%","Counts may be low due to glare/ algae."
+"2014-10-13_YB-AGq7",2014-10-13,2014-10-13,"YB","AG","7","Lim","Limpets","Type 12",45,0.0875,514.285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to glare"
+"2014-10-13_YB-AGq9",2014-10-13,2014-10-13,"YB","AG","9","Lim","Limpets","Type 12",72,0.0875,822.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","75%",""
+"2014-10-13_YB-AGq1",2014-10-13,2014-10-13,"YB","AG","1","Ls","Littorina_sitkana","Type 13",83,0.0875,948.571428571429,NA,"Isaac Shepard","Finished","Full","Full","40%",""
+"2014-10-13_YB-AGq2",2014-10-13,2014-10-13,"YB","AG","2","Ls","Littorina_sitkana","Type 13",23,0.0875,262.857142857143,NA,"Rebecca Friedrich","Finished","Full","Cropped","40%","Counts may be low due to glare/ algae."
+"2014-10-13_YB-AGq7",2014-10-13,2014-10-13,"YB","AG","7","Ls","Littorina_sitkana","Type 13",82,0.0875,937.142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to glare"
+"2014-10-13_YB-AGq9",2014-10-13,2014-10-13,"YB","AG","9","Ls","Littorina_sitkana","Type 13",16,0.0875,182.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","75%",""
+"2014-10-13_YB-AGq1",2014-10-13,2014-10-13,"YB","AG","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Full","40%",""
+"2014-10-13_YB-AGq2",2014-10-13,2014-10-13,"YB","AG","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Cropped","40%","Counts may be low due to glare/ algae."
+"2014-10-13_YB-AGq7",2014-10-13,2014-10-13,"YB","AG","7","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to glare"
+"2014-10-13_YB-AGq9",2014-10-13,2014-10-13,"YB","AG","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","75%",""
+"2014-10-13_YB-AGq1",2014-10-13,2014-10-13,"YB","AG","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Full","40%",""
+"2014-10-13_YB-AGq2",2014-10-13,2014-10-13,"YB","AG","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Cropped","40%","Counts may be low due to glare/ algae."
+"2014-10-13_YB-AGq7",2014-10-13,2014-10-13,"YB","AG","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to glare"
+"2014-10-13_YB-AGq9",2014-10-13,2014-10-13,"YB","AG","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","75%",""
+"2014-10-13_YB-AGq1",2014-10-13,2014-10-13,"YB","AG","1","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Full","40%",""
+"2014-10-13_YB-AGq2",2014-10-13,2014-10-13,"YB","AG","2","Myt","Mytilus_spp","Type 7",561,0.0875,6411.42857142857,NA,"Rebecca Friedrich","Finished","Full","Cropped","40%","Counts may be low due to glare/ algae."
+"2014-10-13_YB-AGq7",2014-10-13,2014-10-13,"YB","AG","7","Myt","Mytilus_spp","Type 7",533,0.0875,6091.42857142857,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to glare"
+"2014-10-13_YB-AGq9",2014-10-13,2014-10-13,"YB","AG","9","Myt","Mytilus_spp","Type 7",262,0.0875,2994.28571428571,NA,"Stephanie Merhoff","Finished","Full","Full","75%",""
+"2014-10-13_YB-AGq1",2014-10-13,2014-10-13,"YB","AG","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Full","40%",""
+"2014-10-13_YB-AGq2",2014-10-13,2014-10-13,"YB","AG","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Cropped","40%","Counts may be low due to glare/ algae."
+"2014-10-13_YB-AGq7",2014-10-13,2014-10-13,"YB","AG","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to glare"
+"2014-10-13_YB-AGq9",2014-10-13,2014-10-13,"YB","AG","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","75%",""
+"2014-10-13_YB-AGq1",2014-10-13,2014-10-13,"YB","AG","1","Mt","Mytilus_trossulus","Type 15",314,0.0875,3588.57142857143,NA,"Isaac Shepard","Finished","Full","Full","40%",""
+"2014-10-13_YB-AGq2",2014-10-13,2014-10-13,"YB","AG","2","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Cropped","40%","Counts may be low due to glare/ algae."
+"2014-10-13_YB-AGq7",2014-10-13,2014-10-13,"YB","AG","7","Mt","Mytilus_trossulus","Type 15",42,0.0875,480,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to glare"
+"2014-10-13_YB-AGq9",2014-10-13,2014-10-13,"YB","AG","9","Mt","Mytilus_trossulus","Type 15",12,0.0875,137.142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","75%",""
+"2014-10-13_YB-AGq1",2014-10-13,2014-10-13,"YB","AG","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Full","40%",""
+"2014-10-13_YB-AGq2",2014-10-13,2014-10-13,"YB","AG","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Cropped","40%","Counts may be low due to glare/ algae."
+"2014-10-13_YB-AGq7",2014-10-13,2014-10-13,"YB","AG","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to glare"
+"2014-10-13_YB-AGq9",2014-10-13,2014-10-13,"YB","AG","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","75%",""
+"2014-10-13_YB-AGq1",2014-10-13,2014-10-13,"YB","AG","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Full","40%",""
+"2014-10-13_YB-AGq2",2014-10-13,2014-10-13,"YB","AG","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Cropped","40%","Counts may be low due to glare/ algae."
+"2014-10-13_YB-AGq7",2014-10-13,2014-10-13,"YB","AG","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to glare"
+"2014-10-13_YB-AGq9",2014-10-13,2014-10-13,"YB","AG","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","75%",""
+"2014-10-13_YB-AGq1",2014-10-13,2014-10-13,"YB","AG","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Full","40%",""
+"2014-10-13_YB-AGq2",2014-10-13,2014-10-13,"YB","AG","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Cropped","40%","Counts may be low due to glare/ algae."
+"2014-10-13_YB-AGq7",2014-10-13,2014-10-13,"YB","AG","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to glare"
+"2014-10-13_YB-AGq9",2014-10-13,2014-10-13,"YB","AG","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","75%",""
+"2014-10-13_YB-AGq1",2014-10-13,2014-10-13,"YB","AG","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Full","40%",""
+"2014-10-13_YB-AGq2",2014-10-13,2014-10-13,"YB","AG","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Cropped","40%","Counts may be low due to glare/ algae."
+"2014-10-13_YB-AGq7",2014-10-13,2014-10-13,"YB","AG","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to glare"
+"2014-10-13_YB-AGq9",2014-10-13,2014-10-13,"YB","AG","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","75%",""
+"2014-10-13_YB-AGq1",2014-10-13,2014-10-13,"YB","AG","1","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Isaac Shepard","Finished","Full","Full","40%",""
+"2014-10-13_YB-AGq2",2014-10-13,2014-10-13,"YB","AG","2","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Cropped","40%","Counts may be low due to glare/ algae."
+"2014-10-13_YB-AGq7",2014-10-13,2014-10-13,"YB","AG","7","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to glare"
+"2014-10-13_YB-AGq9",2014-10-13,2014-10-13,"YB","AG","9","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","75%",""
+"2014-10-13_YB-AGq1",2014-10-13,2014-10-13,"YB","AG","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Full","40%",""
+"2014-10-13_YB-AGq2",2014-10-13,2014-10-13,"YB","AG","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Cropped","40%","Counts may be low due to glare/ algae."
+"2014-10-13_YB-AGq7",2014-10-13,2014-10-13,"YB","AG","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to glare"
+"2014-10-13_YB-AGq9",2014-10-13,2014-10-13,"YB","AG","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","75%",""
+"2014-10-13_YB-AGq1",2014-10-13,2014-10-13,"YB","AG","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Full","40%",""
+"2014-10-13_YB-AGq2",2014-10-13,2014-10-13,"YB","AG","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Cropped","40%","Counts may be low due to glare/ algae."
+"2014-10-13_YB-AGq7",2014-10-13,2014-10-13,"YB","AG","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to glare"
+"2014-10-13_YB-AGq9",2014-10-13,2014-10-13,"YB","AG","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","75%",""
+"2014-10-13_YB-AGq1",2014-10-13,2014-10-13,"YB","AG","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Full","40%",""
+"2014-10-13_YB-AGq2",2014-10-13,2014-10-13,"YB","AG","2","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Cropped","40%","Counts may be low due to glare/ algae."
+"2014-10-13_YB-AGq7",2014-10-13,2014-10-13,"YB","AG","7","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to glare"
+"2014-10-13_YB-AGq9",2014-10-13,2014-10-13,"YB","AG","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","75%",""
+"2014-10-13_YB-AGq1",2014-10-13,2014-10-13,"YB","AG","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Full","40%",""
+"2014-10-13_YB-AGq2",2014-10-13,2014-10-13,"YB","AG","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Cropped","40%","Counts may be low due to glare/ algae."
+"2014-10-13_YB-AGq7",2014-10-13,2014-10-13,"YB","AG","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to glare"
+"2014-10-13_YB-AGq9",2014-10-13,2014-10-13,"YB","AG","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","75%",""
+"2014-10-13_YB-AGq1",2014-10-13,2014-10-13,"YB","AG","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Full","40%",""
+"2014-10-13_YB-AGq2",2014-10-13,2014-10-13,"YB","AG","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Cropped","40%","Counts may be low due to glare/ algae."
+"2014-10-13_YB-AGq7",2014-10-13,2014-10-13,"YB","AG","7","Sc","Semibalanus_cariosus","Type 5",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to glare"
+"2014-10-13_YB-AGq9",2014-10-13,2014-10-13,"YB","AG","9","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","75%",""
+"2014-10-13_YB-AGq1",2014-10-13,2014-10-13,"YB","AG","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Isaac Shepard","Finished","Full","Full","40%",""
+"2014-10-13_YB-AGq2",2014-10-13,2014-10-13,"YB","AG","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Cropped","40%","Counts may be low due to glare/ algae."
+"2014-10-13_YB-AGq7",2014-10-13,2014-10-13,"YB","AG","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to glare"
+"2014-10-13_YB-AGq9",2014-10-13,2014-10-13,"YB","AG","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","75%",""
+"2014-10-13_YB-Bq1",2014-10-13,2014-10-13,"YB","B","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","All counts likely low due to glare, blur, and algal cover"
+"2014-10-13_YB-Bq5",2014-10-13,2014-10-13,"YB","B","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%","All counts likely low due to glare and blur"
+"2014-10-13_YB-Bq6",2014-10-13,2014-10-13,"YB","B","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","20%","All counts likely low due to glare and blur"
+"2014-10-13_YB-Bq1",2014-10-13,2014-10-13,"YB","B","1","Ae","Anemones","Type 14",24,0.0875,274.285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","All counts likely low due to glare, blur, and algal cover"
+"2014-10-13_YB-Bq5",2014-10-13,2014-10-13,"YB","B","5","Ae","Anemones","Type 14",12,0.0875,137.142857142857,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%","All counts likely low due to glare and blur"
+"2014-10-13_YB-Bq6",2014-10-13,2014-10-13,"YB","B","6","Ae","Anemones","Type 14",11,0.0875,125.714285714286,NA,"Beatriz Vaca","Finished","Cropped","Cropped","20%","All counts likely low due to glare and blur"
+"2014-10-13_YB-Bq1",2014-10-13,2014-10-13,"YB","B","1","Bg","Balanus_glandula","Type 1",121,0.015625,7744,"c","Beatriz Vaca","Finished","Full","Cropped","50%","All counts likely low due to glare, blur, and algal cover"
+"2014-10-13_YB-Bq5",2014-10-13,2014-10-13,"YB","B","5","Bg","Balanus_glandula","Type 1",148,0.015625,9472,"c","Beatriz Vaca","Finished","Cropped","Cropped","5%","All counts likely low due to glare and blur"
+"2014-10-13_YB-Bq6",2014-10-13,2014-10-13,"YB","B","6","Bg","Balanus_glandula","Type 1",233,0.015625,14912,"c","Beatriz Vaca","Finished","Cropped","Cropped","20%","All counts likely low due to glare and blur"
+"2014-10-13_YB-Bq1",2014-10-13,2014-10-13,"YB","B","1","BgD","Balanus_glandula_(dead)","Type 2",1,0.015625,64,"c","Beatriz Vaca","Finished","Full","Cropped","50%","All counts likely low due to glare, blur, and algal cover"
+"2014-10-13_YB-Bq5",2014-10-13,2014-10-13,"YB","B","5","BgD","Balanus_glandula_(dead)","Type 2",11,0.015625,704,"c","Beatriz Vaca","Finished","Cropped","Cropped","5%","All counts likely low due to glare and blur"
+"2014-10-13_YB-Bq6",2014-10-13,2014-10-13,"YB","B","6","BgD","Balanus_glandula_(dead)","Type 2",7,0.015625,448,"c","Beatriz Vaca","Finished","Cropped","Cropped","20%","All counts likely low due to glare and blur"
+"2014-10-13_YB-Bq1",2014-10-13,2014-10-13,"YB","B","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","All counts likely low due to glare, blur, and algal cover"
+"2014-10-13_YB-Bq5",2014-10-13,2014-10-13,"YB","B","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%","All counts likely low due to glare and blur"
+"2014-10-13_YB-Bq6",2014-10-13,2014-10-13,"YB","B","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","20%","All counts likely low due to glare and blur"
+"2014-10-13_YB-Bq1",2014-10-13,2014-10-13,"YB","B","1","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","50%","All counts likely low due to glare, blur, and algal cover"
+"2014-10-13_YB-Bq5",2014-10-13,2014-10-13,"YB","B","5","Cth","Chthamalus_dalli","Type 3",1,0.015625,64,"c","Beatriz Vaca","Finished","Cropped","Cropped","5%","All counts likely low due to glare and blur"
+"2014-10-13_YB-Bq6",2014-10-13,2014-10-13,"YB","B","6","Cth","Chthamalus_dalli","Type 3",24,0.015625,1536,"c","Beatriz Vaca","Finished","Cropped","Cropped","20%","All counts likely low due to glare and blur"
+"2014-10-13_YB-Bq1",2014-10-13,2014-10-13,"YB","B","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","50%","All counts likely low due to glare, blur, and algal cover"
+"2014-10-13_YB-Bq5",2014-10-13,2014-10-13,"YB","B","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","5%","All counts likely low due to glare and blur"
+"2014-10-13_YB-Bq6",2014-10-13,2014-10-13,"YB","B","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","20%","All counts likely low due to glare and blur"
+"2014-10-13_YB-Bq1",2014-10-13,2014-10-13,"YB","B","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","All counts likely low due to glare, blur, and algal cover"
+"2014-10-13_YB-Bq5",2014-10-13,2014-10-13,"YB","B","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%","All counts likely low due to glare and blur"
+"2014-10-13_YB-Bq6",2014-10-13,2014-10-13,"YB","B","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","20%","All counts likely low due to glare and blur"
+"2014-10-13_YB-Bq1",2014-10-13,2014-10-13,"YB","B","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","All counts likely low due to glare, blur, and algal cover"
+"2014-10-13_YB-Bq5",2014-10-13,2014-10-13,"YB","B","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%","All counts likely low due to glare and blur"
+"2014-10-13_YB-Bq6",2014-10-13,2014-10-13,"YB","B","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","20%","All counts likely low due to glare and blur"
+"2014-10-13_YB-Bq1",2014-10-13,2014-10-13,"YB","B","1","Lim","Limpets","Type 12",422,0.0875,4822.85714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","All counts likely low due to glare, blur, and algal cover"
+"2014-10-13_YB-Bq5",2014-10-13,2014-10-13,"YB","B","5","Lim","Limpets","Type 12",424,0.0875,4845.71428571429,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%","All counts likely low due to glare and blur"
+"2014-10-13_YB-Bq6",2014-10-13,2014-10-13,"YB","B","6","Lim","Limpets","Type 12",572,0.0875,6537.14285714286,NA,"Beatriz Vaca","Finished","Cropped","Cropped","20%","All counts likely low due to glare and blur"
+"2014-10-13_YB-Bq1",2014-10-13,2014-10-13,"YB","B","1","Ls","Littorina_sitkana","Type 13",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","All counts likely low due to glare, blur, and algal cover"
+"2014-10-13_YB-Bq5",2014-10-13,2014-10-13,"YB","B","5","Ls","Littorina_sitkana","Type 13",13,0.0875,148.571428571429,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%","All counts likely low due to glare and blur"
+"2014-10-13_YB-Bq6",2014-10-13,2014-10-13,"YB","B","6","Ls","Littorina_sitkana","Type 13",12,0.0875,137.142857142857,NA,"Beatriz Vaca","Finished","Cropped","Cropped","20%","All counts likely low due to glare and blur"
+"2014-10-13_YB-Bq1",2014-10-13,2014-10-13,"YB","B","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","All counts likely low due to glare, blur, and algal cover"
+"2014-10-13_YB-Bq5",2014-10-13,2014-10-13,"YB","B","5","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","5%","All counts likely low due to glare and blur"
+"2014-10-13_YB-Bq6",2014-10-13,2014-10-13,"YB","B","6","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","20%","All counts likely low due to glare and blur"
+"2014-10-13_YB-Bq1",2014-10-13,2014-10-13,"YB","B","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","All counts likely low due to glare, blur, and algal cover"
+"2014-10-13_YB-Bq5",2014-10-13,2014-10-13,"YB","B","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","5%","All counts likely low due to glare and blur"
+"2014-10-13_YB-Bq6",2014-10-13,2014-10-13,"YB","B","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","20%","All counts likely low due to glare and blur"
+"2014-10-13_YB-Bq1",2014-10-13,2014-10-13,"YB","B","1","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","All counts likely low due to glare, blur, and algal cover"
+"2014-10-13_YB-Bq5",2014-10-13,2014-10-13,"YB","B","5","Myt","Mytilus_spp","Type 7",192,0.015625,12288,"c","Beatriz Vaca","Finished","Cropped","Cropped","5%","All counts likely low due to glare and blur"
+"2014-10-13_YB-Bq6",2014-10-13,2014-10-13,"YB","B","6","Myt","Mytilus_spp","Type 7",87,0.015625,5568,"c","Beatriz Vaca","Finished","Cropped","Cropped","20%","All counts likely low due to glare and blur"
+"2014-10-13_YB-Bq1",2014-10-13,2014-10-13,"YB","B","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","All counts likely low due to glare, blur, and algal cover"
+"2014-10-13_YB-Bq5",2014-10-13,2014-10-13,"YB","B","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","5%","All counts likely low due to glare and blur"
+"2014-10-13_YB-Bq6",2014-10-13,2014-10-13,"YB","B","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","20%","All counts likely low due to glare and blur"
+"2014-10-13_YB-Bq1",2014-10-13,2014-10-13,"YB","B","1","Mt","Mytilus_trossulus","Type 15",29,0.0875,331.428571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","All counts likely low due to glare, blur, and algal cover"
+"2014-10-13_YB-Bq5",2014-10-13,2014-10-13,"YB","B","5","Mt","Mytilus_trossulus","Type 15",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","5%","All counts likely low due to glare and blur"
+"2014-10-13_YB-Bq6",2014-10-13,2014-10-13,"YB","B","6","Mt","Mytilus_trossulus","Type 15",1,0.015625,64,"c","Beatriz Vaca","Finished","Cropped","Cropped","20%","All counts likely low due to glare and blur"
+"2014-10-13_YB-Bq1",2014-10-13,2014-10-13,"YB","B","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","All counts likely low due to glare, blur, and algal cover"
+"2014-10-13_YB-Bq5",2014-10-13,2014-10-13,"YB","B","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","5%","All counts likely low due to glare and blur"
+"2014-10-13_YB-Bq6",2014-10-13,2014-10-13,"YB","B","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","20%","All counts likely low due to glare and blur"
+"2014-10-13_YB-Bq1",2014-10-13,2014-10-13,"YB","B","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","All counts likely low due to glare, blur, and algal cover"
+"2014-10-13_YB-Bq5",2014-10-13,2014-10-13,"YB","B","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%","All counts likely low due to glare and blur"
+"2014-10-13_YB-Bq6",2014-10-13,2014-10-13,"YB","B","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","20%","All counts likely low due to glare and blur"
+"2014-10-13_YB-Bq1",2014-10-13,2014-10-13,"YB","B","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","All counts likely low due to glare, blur, and algal cover"
+"2014-10-13_YB-Bq5",2014-10-13,2014-10-13,"YB","B","5","Nc","Nucella_canaliculata","Type 10",23,0.0875,262.857142857143,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%","All counts likely low due to glare and blur"
+"2014-10-13_YB-Bq6",2014-10-13,2014-10-13,"YB","B","6","Nc","Nucella_canaliculata","Type 10",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Cropped","Cropped","20%","All counts likely low due to glare and blur"
+"2014-10-13_YB-Bq1",2014-10-13,2014-10-13,"YB","B","1","Negg","Nucella_eggs","Type 26",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","All counts likely low due to glare, blur, and algal cover"
+"2014-10-13_YB-Bq5",2014-10-13,2014-10-13,"YB","B","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%","All counts likely low due to glare and blur"
+"2014-10-13_YB-Bq6",2014-10-13,2014-10-13,"YB","B","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","20%","All counts likely low due to glare and blur"
+"2014-10-13_YB-Bq1",2014-10-13,2014-10-13,"YB","B","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","All counts likely low due to glare, blur, and algal cover"
+"2014-10-13_YB-Bq5",2014-10-13,2014-10-13,"YB","B","5","No","Nucella_ostrina","Type 9",17,0.0875,194.285714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%","All counts likely low due to glare and blur"
+"2014-10-13_YB-Bq6",2014-10-13,2014-10-13,"YB","B","6","No","Nucella_ostrina","Type 9",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Cropped","Cropped","20%","All counts likely low due to glare and blur"
+"2014-10-13_YB-Bq1",2014-10-13,2014-10-13,"YB","B","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","All counts likely low due to glare, blur, and algal cover"
+"2014-10-13_YB-Bq5",2014-10-13,2014-10-13,"YB","B","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%","All counts likely low due to glare and blur"
+"2014-10-13_YB-Bq6",2014-10-13,2014-10-13,"YB","B","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","20%","All counts likely low due to glare and blur"
+"2014-10-13_YB-Bq1",2014-10-13,2014-10-13,"YB","B","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","All counts likely low due to glare, blur, and algal cover"
+"2014-10-13_YB-Bq5",2014-10-13,2014-10-13,"YB","B","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%","All counts likely low due to glare and blur"
+"2014-10-13_YB-Bq6",2014-10-13,2014-10-13,"YB","B","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","20%","All counts likely low due to glare and blur"
+"2014-10-13_YB-Bq1",2014-10-13,2014-10-13,"YB","B","1","Pp","Pollicipes_polymerus","Type 11",20,0.0875,228.571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","All counts likely low due to glare, blur, and algal cover"
+"2014-10-13_YB-Bq5",2014-10-13,2014-10-13,"YB","B","5","Pp","Pollicipes_polymerus","Type 11",20,0.0875,228.571428571429,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%","All counts likely low due to glare and blur"
+"2014-10-13_YB-Bq6",2014-10-13,2014-10-13,"YB","B","6","Pp","Pollicipes_polymerus","Type 11",9,0.0875,102.857142857143,NA,"Beatriz Vaca","Finished","Cropped","Cropped","20%","All counts likely low due to glare and blur"
+"2014-10-13_YB-Bq1",2014-10-13,2014-10-13,"YB","B","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","All counts likely low due to glare, blur, and algal cover"
+"2014-10-13_YB-Bq5",2014-10-13,2014-10-13,"YB","B","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%","All counts likely low due to glare and blur"
+"2014-10-13_YB-Bq6",2014-10-13,2014-10-13,"YB","B","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","20%","All counts likely low due to glare and blur"
+"2014-10-13_YB-Bq1",2014-10-13,2014-10-13,"YB","B","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","All counts likely low due to glare, blur, and algal cover"
+"2014-10-13_YB-Bq5",2014-10-13,2014-10-13,"YB","B","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%","All counts likely low due to glare and blur"
+"2014-10-13_YB-Bq6",2014-10-13,2014-10-13,"YB","B","6","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","20%","All counts likely low due to glare and blur"
+"2014-10-13_YB-Bq1",2014-10-13,2014-10-13,"YB","B","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","50%","All counts likely low due to glare, blur, and algal cover"
+"2014-10-13_YB-Bq5",2014-10-13,2014-10-13,"YB","B","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%","All counts likely low due to glare and blur"
+"2014-10-13_YB-Bq6",2014-10-13,2014-10-13,"YB","B","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","20%","All counts likely low due to glare and blur"
+"2014-10-13_YB-BBq1",2014-10-13,2014-10-13,"YB","BB","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2014-10-13_YB-BBq2",2014-10-13,2014-10-13,"YB","BB","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to glare"
+"2014-10-13_YB-BBq9",2014-10-13,2014-10-13,"YB","BB","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur and glare"
+"2014-10-13_YB-BBq1",2014-10-13,2014-10-13,"YB","BB","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2014-10-13_YB-BBq2",2014-10-13,2014-10-13,"YB","BB","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to glare"
+"2014-10-13_YB-BBq9",2014-10-13,2014-10-13,"YB","BB","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur and glare"
+"2014-10-13_YB-BBq1",2014-10-13,2014-10-13,"YB","BB","1","Bg","Balanus_glandula","Type 1",260,0.0875,2971.42857142857,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2014-10-13_YB-BBq2",2014-10-13,2014-10-13,"YB","BB","2","Bg","Balanus_glandula","Type 1",460,0.0875,5257.14285714286,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to glare"
+"2014-10-13_YB-BBq9",2014-10-13,2014-10-13,"YB","BB","9","Bg","Balanus_glandula","Type 1",711,0.0875,8125.71428571429,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur and glare"
+"2014-10-13_YB-BBq1",2014-10-13,2014-10-13,"YB","BB","1","BgD","Balanus_glandula_(dead)","Type 2",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2014-10-13_YB-BBq2",2014-10-13,2014-10-13,"YB","BB","2","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to glare"
+"2014-10-13_YB-BBq9",2014-10-13,2014-10-13,"YB","BB","9","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur and glare"
+"2014-10-13_YB-BBq1",2014-10-13,2014-10-13,"YB","BB","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2014-10-13_YB-BBq2",2014-10-13,2014-10-13,"YB","BB","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to glare"
+"2014-10-13_YB-BBq9",2014-10-13,2014-10-13,"YB","BB","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur and glare"
+"2014-10-13_YB-BBq1",2014-10-13,2014-10-13,"YB","BB","1","Cth","Chthamalus_dalli","Type 3",4,0.0875,45.7142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2014-10-13_YB-BBq2",2014-10-13,2014-10-13,"YB","BB","2","Cth","Chthamalus_dalli","Type 3",5,0.0875,57.1428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to glare"
+"2014-10-13_YB-BBq9",2014-10-13,2014-10-13,"YB","BB","9","Cth","Chthamalus_dalli","Type 3",33,0.0875,377.142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur and glare"
+"2014-10-13_YB-BBq1",2014-10-13,2014-10-13,"YB","BB","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2014-10-13_YB-BBq2",2014-10-13,2014-10-13,"YB","BB","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to glare"
+"2014-10-13_YB-BBq9",2014-10-13,2014-10-13,"YB","BB","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur and glare"
+"2014-10-13_YB-BBq1",2014-10-13,2014-10-13,"YB","BB","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2014-10-13_YB-BBq2",2014-10-13,2014-10-13,"YB","BB","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to glare"
+"2014-10-13_YB-BBq9",2014-10-13,2014-10-13,"YB","BB","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur and glare"
+"2014-10-13_YB-BBq1",2014-10-13,2014-10-13,"YB","BB","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2014-10-13_YB-BBq2",2014-10-13,2014-10-13,"YB","BB","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to glare"
+"2014-10-13_YB-BBq9",2014-10-13,2014-10-13,"YB","BB","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur and glare"
+"2014-10-13_YB-BBq1",2014-10-13,2014-10-13,"YB","BB","1","Lim","Limpets","Type 12",43,0.0875,491.428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2014-10-13_YB-BBq2",2014-10-13,2014-10-13,"YB","BB","2","Lim","Limpets","Type 12",159,0.0875,1817.14285714286,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to glare"
+"2014-10-13_YB-BBq9",2014-10-13,2014-10-13,"YB","BB","9","Lim","Limpets","Type 12",61,0.0875,697.142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur and glare"
+"2014-10-13_YB-BBq1",2014-10-13,2014-10-13,"YB","BB","1","Ls","Littorina_sitkana","Type 13",86,0.0875,982.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2014-10-13_YB-BBq2",2014-10-13,2014-10-13,"YB","BB","2","Ls","Littorina_sitkana","Type 13",121,0.0875,1382.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to glare"
+"2014-10-13_YB-BBq9",2014-10-13,2014-10-13,"YB","BB","9","Ls","Littorina_sitkana","Type 13",98,0.0875,1120,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur and glare"
+"2014-10-13_YB-BBq1",2014-10-13,2014-10-13,"YB","BB","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2014-10-13_YB-BBq2",2014-10-13,2014-10-13,"YB","BB","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to glare"
+"2014-10-13_YB-BBq9",2014-10-13,2014-10-13,"YB","BB","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur and glare"
+"2014-10-13_YB-BBq1",2014-10-13,2014-10-13,"YB","BB","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2014-10-13_YB-BBq2",2014-10-13,2014-10-13,"YB","BB","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to glare"
+"2014-10-13_YB-BBq9",2014-10-13,2014-10-13,"YB","BB","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur and glare"
+"2014-10-13_YB-BBq1",2014-10-13,2014-10-13,"YB","BB","1","Myt","Mytilus_spp","Type 7",305,0.0875,3485.71428571429,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2014-10-13_YB-BBq2",2014-10-13,2014-10-13,"YB","BB","2","Myt","Mytilus_spp","Type 7",258,0.0875,2948.57142857143,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to glare"
+"2014-10-13_YB-BBq9",2014-10-13,2014-10-13,"YB","BB","9","Myt","Mytilus_spp","Type 7",224,0.0875,2560,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur and glare"
+"2014-10-13_YB-BBq1",2014-10-13,2014-10-13,"YB","BB","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2014-10-13_YB-BBq2",2014-10-13,2014-10-13,"YB","BB","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to glare"
+"2014-10-13_YB-BBq9",2014-10-13,2014-10-13,"YB","BB","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur and glare"
+"2014-10-13_YB-BBq1",2014-10-13,2014-10-13,"YB","BB","1","Mt","Mytilus_trossulus","Type 15",135,0.0875,1542.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2014-10-13_YB-BBq2",2014-10-13,2014-10-13,"YB","BB","2","Mt","Mytilus_trossulus","Type 15",67,0.0875,765.714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to glare"
+"2014-10-13_YB-BBq9",2014-10-13,2014-10-13,"YB","BB","9","Mt","Mytilus_trossulus","Type 15",183,0.0875,2091.42857142857,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur and glare"
+"2014-10-13_YB-BBq1",2014-10-13,2014-10-13,"YB","BB","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2014-10-13_YB-BBq2",2014-10-13,2014-10-13,"YB","BB","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to glare"
+"2014-10-13_YB-BBq9",2014-10-13,2014-10-13,"YB","BB","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur and glare"
+"2014-10-13_YB-BBq1",2014-10-13,2014-10-13,"YB","BB","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2014-10-13_YB-BBq2",2014-10-13,2014-10-13,"YB","BB","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to glare"
+"2014-10-13_YB-BBq9",2014-10-13,2014-10-13,"YB","BB","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur and glare"
+"2014-10-13_YB-BBq1",2014-10-13,2014-10-13,"YB","BB","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2014-10-13_YB-BBq2",2014-10-13,2014-10-13,"YB","BB","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to glare"
+"2014-10-13_YB-BBq9",2014-10-13,2014-10-13,"YB","BB","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur and glare"
+"2014-10-13_YB-BBq1",2014-10-13,2014-10-13,"YB","BB","1","Negg","Nucella_eggs","Type 26",7,0.0875,80,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2014-10-13_YB-BBq2",2014-10-13,2014-10-13,"YB","BB","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to glare"
+"2014-10-13_YB-BBq9",2014-10-13,2014-10-13,"YB","BB","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur and glare"
+"2014-10-13_YB-BBq1",2014-10-13,2014-10-13,"YB","BB","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2014-10-13_YB-BBq2",2014-10-13,2014-10-13,"YB","BB","2","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to glare"
+"2014-10-13_YB-BBq9",2014-10-13,2014-10-13,"YB","BB","9","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur and glare"
+"2014-10-13_YB-BBq1",2014-10-13,2014-10-13,"YB","BB","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2014-10-13_YB-BBq2",2014-10-13,2014-10-13,"YB","BB","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to glare"
+"2014-10-13_YB-BBq9",2014-10-13,2014-10-13,"YB","BB","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur and glare"
+"2014-10-13_YB-BBq1",2014-10-13,2014-10-13,"YB","BB","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2014-10-13_YB-BBq2",2014-10-13,2014-10-13,"YB","BB","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to glare"
+"2014-10-13_YB-BBq9",2014-10-13,2014-10-13,"YB","BB","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur and glare"
+"2014-10-13_YB-BBq1",2014-10-13,2014-10-13,"YB","BB","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2014-10-13_YB-BBq2",2014-10-13,2014-10-13,"YB","BB","2","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to glare"
+"2014-10-13_YB-BBq9",2014-10-13,2014-10-13,"YB","BB","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur and glare"
+"2014-10-13_YB-BBq1",2014-10-13,2014-10-13,"YB","BB","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2014-10-13_YB-BBq2",2014-10-13,2014-10-13,"YB","BB","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to glare"
+"2014-10-13_YB-BBq9",2014-10-13,2014-10-13,"YB","BB","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur and glare"
+"2014-10-13_YB-BBq1",2014-10-13,2014-10-13,"YB","BB","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2014-10-13_YB-BBq2",2014-10-13,2014-10-13,"YB","BB","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to glare"
+"2014-10-13_YB-BBq9",2014-10-13,2014-10-13,"YB","BB","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur and glare"
+"2014-10-13_YB-BBq1",2014-10-13,2014-10-13,"YB","BB","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2014-10-13_YB-BBq2",2014-10-13,2014-10-13,"YB","BB","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to glare"
+"2014-10-13_YB-BBq9",2014-10-13,2014-10-13,"YB","BB","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur and glare"
+"2014-10-13_YB-BCq3",2014-10-13,2014-10-13,"YB","BC","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%",""
+"2014-10-13_YB-BCq5",2014-10-13,2014-10-13,"YB","BC","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-10-13_YB-BCq9",2014-10-13,2014-10-13,"YB","BC","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2014-10-13_YB-BCq3",2014-10-13,2014-10-13,"YB","BC","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%",""
+"2014-10-13_YB-BCq5",2014-10-13,2014-10-13,"YB","BC","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-10-13_YB-BCq9",2014-10-13,2014-10-13,"YB","BC","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2014-10-13_YB-BCq3",2014-10-13,2014-10-13,"YB","BC","3","Bg","Balanus_glandula","Type 1",320,0.015625,20480,"c","Stephanie Merhoff","Finished","Full","Cropped","20%",""
+"2014-10-13_YB-BCq5",2014-10-13,2014-10-13,"YB","BC","5","Bg","Balanus_glandula","Type 1",1002,0.0875,11451.4285714286,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-10-13_YB-BCq9",2014-10-13,2014-10-13,"YB","BC","9","Bg","Balanus_glandula","Type 1",684,0.0875,7817.14285714286,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2014-10-13_YB-BCq3",2014-10-13,2014-10-13,"YB","BC","3","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","20%",""
+"2014-10-13_YB-BCq5",2014-10-13,2014-10-13,"YB","BC","5","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-10-13_YB-BCq9",2014-10-13,2014-10-13,"YB","BC","9","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2014-10-13_YB-BCq3",2014-10-13,2014-10-13,"YB","BC","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%",""
+"2014-10-13_YB-BCq5",2014-10-13,2014-10-13,"YB","BC","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-10-13_YB-BCq9",2014-10-13,2014-10-13,"YB","BC","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2014-10-13_YB-BCq3",2014-10-13,2014-10-13,"YB","BC","3","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","20%",""
+"2014-10-13_YB-BCq5",2014-10-13,2014-10-13,"YB","BC","5","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-10-13_YB-BCq9",2014-10-13,2014-10-13,"YB","BC","9","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2014-10-13_YB-BCq3",2014-10-13,2014-10-13,"YB","BC","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","20%",""
+"2014-10-13_YB-BCq5",2014-10-13,2014-10-13,"YB","BC","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-10-13_YB-BCq9",2014-10-13,2014-10-13,"YB","BC","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2014-10-13_YB-BCq3",2014-10-13,2014-10-13,"YB","BC","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%",""
+"2014-10-13_YB-BCq5",2014-10-13,2014-10-13,"YB","BC","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-10-13_YB-BCq9",2014-10-13,2014-10-13,"YB","BC","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2014-10-13_YB-BCq3",2014-10-13,2014-10-13,"YB","BC","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%",""
+"2014-10-13_YB-BCq5",2014-10-13,2014-10-13,"YB","BC","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-10-13_YB-BCq9",2014-10-13,2014-10-13,"YB","BC","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2014-10-13_YB-BCq3",2014-10-13,2014-10-13,"YB","BC","3","Lim","Limpets","Type 12",131,0.0875,1497.14285714286,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%",""
+"2014-10-13_YB-BCq5",2014-10-13,2014-10-13,"YB","BC","5","Lim","Limpets","Type 12",59,0.0875,674.285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-10-13_YB-BCq9",2014-10-13,2014-10-13,"YB","BC","9","Lim","Limpets","Type 12",86,0.0875,982.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2014-10-13_YB-BCq3",2014-10-13,2014-10-13,"YB","BC","3","Ls","Littorina_sitkana","Type 13",149,0.0875,1702.85714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%",""
+"2014-10-13_YB-BCq5",2014-10-13,2014-10-13,"YB","BC","5","Ls","Littorina_sitkana","Type 13",108,0.0875,1234.28571428571,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-10-13_YB-BCq9",2014-10-13,2014-10-13,"YB","BC","9","Ls","Littorina_sitkana","Type 13",157,0.0875,1794.28571428571,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2014-10-13_YB-BCq3",2014-10-13,2014-10-13,"YB","BC","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%",""
+"2014-10-13_YB-BCq5",2014-10-13,2014-10-13,"YB","BC","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-10-13_YB-BCq9",2014-10-13,2014-10-13,"YB","BC","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2014-10-13_YB-BCq3",2014-10-13,2014-10-13,"YB","BC","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%",""
+"2014-10-13_YB-BCq5",2014-10-13,2014-10-13,"YB","BC","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-10-13_YB-BCq9",2014-10-13,2014-10-13,"YB","BC","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2014-10-13_YB-BCq3",2014-10-13,2014-10-13,"YB","BC","3","Myt","Mytilus_spp","Type 7",381,0.0875,4354.28571428571,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%",""
+"2014-10-13_YB-BCq5",2014-10-13,2014-10-13,"YB","BC","5","Myt","Mytilus_spp","Type 7",472,0.0875,5394.28571428571,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-10-13_YB-BCq9",2014-10-13,2014-10-13,"YB","BC","9","Myt","Mytilus_spp","Type 7",248,0.0875,2834.28571428571,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2014-10-13_YB-BCq3",2014-10-13,2014-10-13,"YB","BC","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%",""
+"2014-10-13_YB-BCq5",2014-10-13,2014-10-13,"YB","BC","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-10-13_YB-BCq9",2014-10-13,2014-10-13,"YB","BC","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2014-10-13_YB-BCq3",2014-10-13,2014-10-13,"YB","BC","3","Mt","Mytilus_trossulus","Type 15",67,0.0875,765.714285714286,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%",""
+"2014-10-13_YB-BCq5",2014-10-13,2014-10-13,"YB","BC","5","Mt","Mytilus_trossulus","Type 15",257,0.0875,2937.14285714286,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-10-13_YB-BCq9",2014-10-13,2014-10-13,"YB","BC","9","Mt","Mytilus_trossulus","Type 15",138,0.0875,1577.14285714286,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2014-10-13_YB-BCq3",2014-10-13,2014-10-13,"YB","BC","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%",""
+"2014-10-13_YB-BCq5",2014-10-13,2014-10-13,"YB","BC","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-10-13_YB-BCq9",2014-10-13,2014-10-13,"YB","BC","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2014-10-13_YB-BCq3",2014-10-13,2014-10-13,"YB","BC","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%",""
+"2014-10-13_YB-BCq5",2014-10-13,2014-10-13,"YB","BC","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-10-13_YB-BCq9",2014-10-13,2014-10-13,"YB","BC","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2014-10-13_YB-BCq3",2014-10-13,2014-10-13,"YB","BC","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%",""
+"2014-10-13_YB-BCq5",2014-10-13,2014-10-13,"YB","BC","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-10-13_YB-BCq9",2014-10-13,2014-10-13,"YB","BC","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2014-10-13_YB-BCq3",2014-10-13,2014-10-13,"YB","BC","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%",""
+"2014-10-13_YB-BCq5",2014-10-13,2014-10-13,"YB","BC","5","Negg","Nucella_eggs","Type 26",24,0.0875,274.285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-10-13_YB-BCq9",2014-10-13,2014-10-13,"YB","BC","9","Negg","Nucella_eggs","Type 26",4,0.0875,45.7142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2014-10-13_YB-BCq3",2014-10-13,2014-10-13,"YB","BC","3","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%",""
+"2014-10-13_YB-BCq5",2014-10-13,2014-10-13,"YB","BC","5","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-10-13_YB-BCq9",2014-10-13,2014-10-13,"YB","BC","9","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2014-10-13_YB-BCq3",2014-10-13,2014-10-13,"YB","BC","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%",""
+"2014-10-13_YB-BCq5",2014-10-13,2014-10-13,"YB","BC","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-10-13_YB-BCq9",2014-10-13,2014-10-13,"YB","BC","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2014-10-13_YB-BCq3",2014-10-13,2014-10-13,"YB","BC","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%",""
+"2014-10-13_YB-BCq5",2014-10-13,2014-10-13,"YB","BC","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-10-13_YB-BCq9",2014-10-13,2014-10-13,"YB","BC","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2014-10-13_YB-BCq3",2014-10-13,2014-10-13,"YB","BC","3","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%",""
+"2014-10-13_YB-BCq5",2014-10-13,2014-10-13,"YB","BC","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-10-13_YB-BCq9",2014-10-13,2014-10-13,"YB","BC","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2014-10-13_YB-BCq3",2014-10-13,2014-10-13,"YB","BC","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%",""
+"2014-10-13_YB-BCq5",2014-10-13,2014-10-13,"YB","BC","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-10-13_YB-BCq9",2014-10-13,2014-10-13,"YB","BC","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2014-10-13_YB-BCq3",2014-10-13,2014-10-13,"YB","BC","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%",""
+"2014-10-13_YB-BCq5",2014-10-13,2014-10-13,"YB","BC","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-10-13_YB-BCq9",2014-10-13,2014-10-13,"YB","BC","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2014-10-13_YB-BCq3",2014-10-13,2014-10-13,"YB","BC","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%",""
+"2014-10-13_YB-BCq5",2014-10-13,2014-10-13,"YB","BC","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-10-13_YB-BCq9",2014-10-13,2014-10-13,"YB","BC","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2014-10-13_YB-BDq1",2014-10-13,2014-10-13,"YB","BD","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts low due to lots of glare and blur."
+"2014-10-13_YB-BDq5",2014-10-13,2014-10-13,"YB","BD","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts low due to lots of glare and blur."
+"2014-10-13_YB-BDq7",2014-10-13,2014-10-13,"YB","BD","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts low due to lots of glare and blur."
+"2014-10-13_YB-BDq1",2014-10-13,2014-10-13,"YB","BD","1","Ae","Anemones","Type 14",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts low due to lots of glare and blur."
+"2014-10-13_YB-BDq5",2014-10-13,2014-10-13,"YB","BD","5","Ae","Anemones","Type 14",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts low due to lots of glare and blur."
+"2014-10-13_YB-BDq7",2014-10-13,2014-10-13,"YB","BD","7","Ae","Anemones","Type 14",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts low due to lots of glare and blur."
+"2014-10-13_YB-BDq1",2014-10-13,2014-10-13,"YB","BD","1","Bg","Balanus_glandula","Type 1",332,0.0875,3794.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts low due to lots of glare and blur."
+"2014-10-13_YB-BDq5",2014-10-13,2014-10-13,"YB","BD","5","Bg","Balanus_glandula","Type 1",312,0.0875,3565.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts low due to lots of glare and blur."
+"2014-10-13_YB-BDq7",2014-10-13,2014-10-13,"YB","BD","7","Bg","Balanus_glandula","Type 1",624,0.0875,7131.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts low due to lots of glare and blur."
+"2014-10-13_YB-BDq1",2014-10-13,2014-10-13,"YB","BD","1","BgD","Balanus_glandula_(dead)","Type 2",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts low due to lots of glare and blur."
+"2014-10-13_YB-BDq5",2014-10-13,2014-10-13,"YB","BD","5","BgD","Balanus_glandula_(dead)","Type 2",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts low due to lots of glare and blur."
+"2014-10-13_YB-BDq7",2014-10-13,2014-10-13,"YB","BD","7","BgD","Balanus_glandula_(dead)","Type 2",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts low due to lots of glare and blur."
+"2014-10-13_YB-BDq1",2014-10-13,2014-10-13,"YB","BD","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts low due to lots of glare and blur."
+"2014-10-13_YB-BDq5",2014-10-13,2014-10-13,"YB","BD","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts low due to lots of glare and blur."
+"2014-10-13_YB-BDq7",2014-10-13,2014-10-13,"YB","BD","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts low due to lots of glare and blur."
+"2014-10-13_YB-BDq1",2014-10-13,2014-10-13,"YB","BD","1","Cth","Chthamalus_dalli","Type 3",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts low due to lots of glare and blur."
+"2014-10-13_YB-BDq5",2014-10-13,2014-10-13,"YB","BD","5","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts low due to lots of glare and blur."
+"2014-10-13_YB-BDq7",2014-10-13,2014-10-13,"YB","BD","7","Cth","Chthamalus_dalli","Type 3",42,0.0875,480,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts low due to lots of glare and blur."
+"2014-10-13_YB-BDq1",2014-10-13,2014-10-13,"YB","BD","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts low due to lots of glare and blur."
+"2014-10-13_YB-BDq5",2014-10-13,2014-10-13,"YB","BD","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts low due to lots of glare and blur."
+"2014-10-13_YB-BDq7",2014-10-13,2014-10-13,"YB","BD","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts low due to lots of glare and blur."
+"2014-10-13_YB-BDq1",2014-10-13,2014-10-13,"YB","BD","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts low due to lots of glare and blur."
+"2014-10-13_YB-BDq5",2014-10-13,2014-10-13,"YB","BD","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts low due to lots of glare and blur."
+"2014-10-13_YB-BDq7",2014-10-13,2014-10-13,"YB","BD","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts low due to lots of glare and blur."
+"2014-10-13_YB-BDq1",2014-10-13,2014-10-13,"YB","BD","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts low due to lots of glare and blur."
+"2014-10-13_YB-BDq5",2014-10-13,2014-10-13,"YB","BD","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts low due to lots of glare and blur."
+"2014-10-13_YB-BDq7",2014-10-13,2014-10-13,"YB","BD","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts low due to lots of glare and blur."
+"2014-10-13_YB-BDq1",2014-10-13,2014-10-13,"YB","BD","1","Lim","Limpets","Type 12",296,0.0875,3382.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts low due to lots of glare and blur."
+"2014-10-13_YB-BDq5",2014-10-13,2014-10-13,"YB","BD","5","Lim","Limpets","Type 12",236,0.0875,2697.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts low due to lots of glare and blur."
+"2014-10-13_YB-BDq7",2014-10-13,2014-10-13,"YB","BD","7","Lim","Limpets","Type 12",311,0.0875,3554.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts low due to lots of glare and blur."
+"2014-10-13_YB-BDq1",2014-10-13,2014-10-13,"YB","BD","1","Ls","Littorina_sitkana","Type 13",41,0.0875,468.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts low due to lots of glare and blur."
+"2014-10-13_YB-BDq5",2014-10-13,2014-10-13,"YB","BD","5","Ls","Littorina_sitkana","Type 13",28,0.0875,320,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts low due to lots of glare and blur."
+"2014-10-13_YB-BDq7",2014-10-13,2014-10-13,"YB","BD","7","Ls","Littorina_sitkana","Type 13",108,0.0875,1234.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts low due to lots of glare and blur."
+"2014-10-13_YB-BDq1",2014-10-13,2014-10-13,"YB","BD","1","Mc","Mytilus_californianus","Type 17",10,0.0875,114.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts low due to lots of glare and blur."
+"2014-10-13_YB-BDq5",2014-10-13,2014-10-13,"YB","BD","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts low due to lots of glare and blur."
+"2014-10-13_YB-BDq7",2014-10-13,2014-10-13,"YB","BD","7","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts low due to lots of glare and blur."
+"2014-10-13_YB-BDq1",2014-10-13,2014-10-13,"YB","BD","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts low due to lots of glare and blur."
+"2014-10-13_YB-BDq5",2014-10-13,2014-10-13,"YB","BD","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts low due to lots of glare and blur."
+"2014-10-13_YB-BDq7",2014-10-13,2014-10-13,"YB","BD","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts low due to lots of glare and blur."
+"2014-10-13_YB-BDq1",2014-10-13,2014-10-13,"YB","BD","1","Myt","Mytilus_spp","Type 7",45,0.0875,514.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts low due to lots of glare and blur."
+"2014-10-13_YB-BDq5",2014-10-13,2014-10-13,"YB","BD","5","Myt","Mytilus_spp","Type 7",115,0.0875,1314.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts low due to lots of glare and blur."
+"2014-10-13_YB-BDq7",2014-10-13,2014-10-13,"YB","BD","7","Myt","Mytilus_spp","Type 7",49,0.0875,560,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts low due to lots of glare and blur."
+"2014-10-13_YB-BDq1",2014-10-13,2014-10-13,"YB","BD","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts low due to lots of glare and blur."
+"2014-10-13_YB-BDq5",2014-10-13,2014-10-13,"YB","BD","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts low due to lots of glare and blur."
+"2014-10-13_YB-BDq7",2014-10-13,2014-10-13,"YB","BD","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts low due to lots of glare and blur."
+"2014-10-13_YB-BDq1",2014-10-13,2014-10-13,"YB","BD","1","Mt","Mytilus_trossulus","Type 15",73,0.0875,834.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts low due to lots of glare and blur."
+"2014-10-13_YB-BDq5",2014-10-13,2014-10-13,"YB","BD","5","Mt","Mytilus_trossulus","Type 15",349,0.0875,3988.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts low due to lots of glare and blur."
+"2014-10-13_YB-BDq7",2014-10-13,2014-10-13,"YB","BD","7","Mt","Mytilus_trossulus","Type 15",155,0.0875,1771.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts low due to lots of glare and blur."
+"2014-10-13_YB-BDq1",2014-10-13,2014-10-13,"YB","BD","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts low due to lots of glare and blur."
+"2014-10-13_YB-BDq5",2014-10-13,2014-10-13,"YB","BD","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts low due to lots of glare and blur."
+"2014-10-13_YB-BDq7",2014-10-13,2014-10-13,"YB","BD","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts low due to lots of glare and blur."
+"2014-10-13_YB-BDq1",2014-10-13,2014-10-13,"YB","BD","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts low due to lots of glare and blur."
+"2014-10-13_YB-BDq5",2014-10-13,2014-10-13,"YB","BD","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts low due to lots of glare and blur."
+"2014-10-13_YB-BDq7",2014-10-13,2014-10-13,"YB","BD","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts low due to lots of glare and blur."
+"2014-10-13_YB-BDq1",2014-10-13,2014-10-13,"YB","BD","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts low due to lots of glare and blur."
+"2014-10-13_YB-BDq5",2014-10-13,2014-10-13,"YB","BD","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts low due to lots of glare and blur."
+"2014-10-13_YB-BDq7",2014-10-13,2014-10-13,"YB","BD","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts low due to lots of glare and blur."
+"2014-10-13_YB-BDq1",2014-10-13,2014-10-13,"YB","BD","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts low due to lots of glare and blur."
+"2014-10-13_YB-BDq5",2014-10-13,2014-10-13,"YB","BD","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts low due to lots of glare and blur."
+"2014-10-13_YB-BDq7",2014-10-13,2014-10-13,"YB","BD","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts low due to lots of glare and blur."
+"2014-10-13_YB-BDq1",2014-10-13,2014-10-13,"YB","BD","1","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts low due to lots of glare and blur."
+"2014-10-13_YB-BDq5",2014-10-13,2014-10-13,"YB","BD","5","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts low due to lots of glare and blur."
+"2014-10-13_YB-BDq7",2014-10-13,2014-10-13,"YB","BD","7","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts low due to lots of glare and blur."
+"2014-10-13_YB-BDq1",2014-10-13,2014-10-13,"YB","BD","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts low due to lots of glare and blur."
+"2014-10-13_YB-BDq5",2014-10-13,2014-10-13,"YB","BD","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts low due to lots of glare and blur."
+"2014-10-13_YB-BDq7",2014-10-13,2014-10-13,"YB","BD","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts low due to lots of glare and blur."
+"2014-10-13_YB-BDq1",2014-10-13,2014-10-13,"YB","BD","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts low due to lots of glare and blur."
+"2014-10-13_YB-BDq5",2014-10-13,2014-10-13,"YB","BD","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts low due to lots of glare and blur."
+"2014-10-13_YB-BDq7",2014-10-13,2014-10-13,"YB","BD","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts low due to lots of glare and blur."
+"2014-10-13_YB-BDq1",2014-10-13,2014-10-13,"YB","BD","1","Pp","Pollicipes_polymerus","Type 11",495,0.0875,5657.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts low due to lots of glare and blur."
+"2014-10-13_YB-BDq5",2014-10-13,2014-10-13,"YB","BD","5","Pp","Pollicipes_polymerus","Type 11",508,0.0875,5805.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts low due to lots of glare and blur."
+"2014-10-13_YB-BDq7",2014-10-13,2014-10-13,"YB","BD","7","Pp","Pollicipes_polymerus","Type 11",427,0.0875,4880,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts low due to lots of glare and blur."
+"2014-10-13_YB-BDq1",2014-10-13,2014-10-13,"YB","BD","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts low due to lots of glare and blur."
+"2014-10-13_YB-BDq5",2014-10-13,2014-10-13,"YB","BD","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts low due to lots of glare and blur."
+"2014-10-13_YB-BDq7",2014-10-13,2014-10-13,"YB","BD","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts low due to lots of glare and blur."
+"2014-10-13_YB-BDq1",2014-10-13,2014-10-13,"YB","BD","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts low due to lots of glare and blur."
+"2014-10-13_YB-BDq5",2014-10-13,2014-10-13,"YB","BD","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts low due to lots of glare and blur."
+"2014-10-13_YB-BDq7",2014-10-13,2014-10-13,"YB","BD","7","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts low due to lots of glare and blur."
+"2014-10-13_YB-BDq1",2014-10-13,2014-10-13,"YB","BD","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts low due to lots of glare and blur."
+"2014-10-13_YB-BDq5",2014-10-13,2014-10-13,"YB","BD","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts low due to lots of glare and blur."
+"2014-10-13_YB-BDq7",2014-10-13,2014-10-13,"YB","BD","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts low due to lots of glare and blur."
+"2014-10-13_YB-BEq2",2014-10-13,2014-10-13,"YB","BE","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2014-10-13_YB-BEq3",2014-10-13,2014-10-13,"YB","BE","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is mostly a thin film."
+"2014-10-13_YB-BEq4",2014-10-13,2014-10-13,"YB","BE","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","8%",""
+"2014-10-13_YB-BEq6",2014-10-13,2014-10-13,"YB","BE","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2014-10-13_YB-BEq2",2014-10-13,2014-10-13,"YB","BE","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2014-10-13_YB-BEq3",2014-10-13,2014-10-13,"YB","BE","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is mostly a thin film."
+"2014-10-13_YB-BEq4",2014-10-13,2014-10-13,"YB","BE","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","8%",""
+"2014-10-13_YB-BEq6",2014-10-13,2014-10-13,"YB","BE","6","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2014-10-13_YB-BEq2",2014-10-13,2014-10-13,"YB","BE","2","Bg","Balanus_glandula","Type 1",910,0.015625,58240,"c","Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2014-10-13_YB-BEq3",2014-10-13,2014-10-13,"YB","BE","3","Bg","Balanus_glandula","Type 1",1200,0.015625,76800,"c","Beatriz Vaca","Finished","Full","Cropped","40%","Algae is mostly a thin film."
+"2014-10-13_YB-BEq4",2014-10-13,2014-10-13,"YB","BE","4","Bg","Balanus_glandula","Type 1",1925,0.015625,123200,"c","Julia Bingham","Finished","Full","Cropped","8%",""
+"2014-10-13_YB-BEq6",2014-10-13,2014-10-13,"YB","BE","6","Bg","Balanus_glandula","Type 1",1525,0.015625,97600,"c","Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2014-10-13_YB-BEq2",2014-10-13,2014-10-13,"YB","BE","2","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2014-10-13_YB-BEq3",2014-10-13,2014-10-13,"YB","BE","3","BgD","Balanus_glandula_(dead)","Type 2",17,0.015625,1088,"c","Beatriz Vaca","Finished","Full","Cropped","40%","Algae is mostly a thin film."
+"2014-10-13_YB-BEq4",2014-10-13,2014-10-13,"YB","BE","4","BgD","Balanus_glandula_(dead)","Type 2",118,0.015625,7552,"c","Julia Bingham","Finished","Full","Cropped","8%",""
+"2014-10-13_YB-BEq6",2014-10-13,2014-10-13,"YB","BE","6","BgD","Balanus_glandula_(dead)","Type 2",21,0.015625,1344,"c","Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2014-10-13_YB-BEq2",2014-10-13,2014-10-13,"YB","BE","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2014-10-13_YB-BEq3",2014-10-13,2014-10-13,"YB","BE","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is mostly a thin film."
+"2014-10-13_YB-BEq4",2014-10-13,2014-10-13,"YB","BE","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","8%",""
+"2014-10-13_YB-BEq6",2014-10-13,2014-10-13,"YB","BE","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2014-10-13_YB-BEq2",2014-10-13,2014-10-13,"YB","BE","2","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2014-10-13_YB-BEq3",2014-10-13,2014-10-13,"YB","BE","3","Cth","Chthamalus_dalli","Type 3",4,0.015625,256,"c","Beatriz Vaca","Finished","Full","Cropped","40%","Algae is mostly a thin film."
+"2014-10-13_YB-BEq4",2014-10-13,2014-10-13,"YB","BE","4","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Julia Bingham","Finished","Full","Cropped","8%",""
+"2014-10-13_YB-BEq6",2014-10-13,2014-10-13,"YB","BE","6","Cth","Chthamalus_dalli","Type 3",3,0.015625,192,"c","Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2014-10-13_YB-BEq2",2014-10-13,2014-10-13,"YB","BE","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2014-10-13_YB-BEq3",2014-10-13,2014-10-13,"YB","BE","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","40%","Algae is mostly a thin film."
+"2014-10-13_YB-BEq4",2014-10-13,2014-10-13,"YB","BE","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Julia Bingham","Finished","Full","Cropped","8%",""
+"2014-10-13_YB-BEq6",2014-10-13,2014-10-13,"YB","BE","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2014-10-13_YB-BEq2",2014-10-13,2014-10-13,"YB","BE","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2014-10-13_YB-BEq3",2014-10-13,2014-10-13,"YB","BE","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is mostly a thin film."
+"2014-10-13_YB-BEq4",2014-10-13,2014-10-13,"YB","BE","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","8%",""
+"2014-10-13_YB-BEq6",2014-10-13,2014-10-13,"YB","BE","6","Emp","Emplectonema worm","Type 23",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2014-10-13_YB-BEq2",2014-10-13,2014-10-13,"YB","BE","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2014-10-13_YB-BEq3",2014-10-13,2014-10-13,"YB","BE","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is mostly a thin film."
+"2014-10-13_YB-BEq4",2014-10-13,2014-10-13,"YB","BE","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","8%",""
+"2014-10-13_YB-BEq6",2014-10-13,2014-10-13,"YB","BE","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2014-10-13_YB-BEq2",2014-10-13,2014-10-13,"YB","BE","2","Lim","Limpets","Type 12",39,0.0875,445.714285714286,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2014-10-13_YB-BEq3",2014-10-13,2014-10-13,"YB","BE","3","Lim","Limpets","Type 12",324,0.0875,3702.85714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is mostly a thin film."
+"2014-10-13_YB-BEq4",2014-10-13,2014-10-13,"YB","BE","4","Lim","Limpets","Type 12",84,0.0875,960,NA,"Julia Bingham","Finished","Full","Cropped","8%",""
+"2014-10-13_YB-BEq6",2014-10-13,2014-10-13,"YB","BE","6","Lim","Limpets","Type 12",149,0.0875,1702.85714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2014-10-13_YB-BEq2",2014-10-13,2014-10-13,"YB","BE","2","Ls","Littorina_sitkana","Type 13",144,0.0875,1645.71428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2014-10-13_YB-BEq3",2014-10-13,2014-10-13,"YB","BE","3","Ls","Littorina_sitkana","Type 13",408,0.0875,4662.85714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is mostly a thin film."
+"2014-10-13_YB-BEq4",2014-10-13,2014-10-13,"YB","BE","4","Ls","Littorina_sitkana","Type 13",466,0.0875,5325.71428571429,NA,"Julia Bingham","Finished","Full","Cropped","8%",""
+"2014-10-13_YB-BEq6",2014-10-13,2014-10-13,"YB","BE","6","Ls","Littorina_sitkana","Type 13",433,0.0875,4948.57142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2014-10-13_YB-BEq2",2014-10-13,2014-10-13,"YB","BE","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2014-10-13_YB-BEq3",2014-10-13,2014-10-13,"YB","BE","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is mostly a thin film."
+"2014-10-13_YB-BEq4",2014-10-13,2014-10-13,"YB","BE","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","8%",""
+"2014-10-13_YB-BEq6",2014-10-13,2014-10-13,"YB","BE","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2014-10-13_YB-BEq2",2014-10-13,2014-10-13,"YB","BE","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2014-10-13_YB-BEq3",2014-10-13,2014-10-13,"YB","BE","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is mostly a thin film."
+"2014-10-13_YB-BEq4",2014-10-13,2014-10-13,"YB","BE","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","8%",""
+"2014-10-13_YB-BEq6",2014-10-13,2014-10-13,"YB","BE","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2014-10-13_YB-BEq2",2014-10-13,2014-10-13,"YB","BE","2","Myt","Mytilus_spp","Type 7",181,0.0875,2068.57142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2014-10-13_YB-BEq3",2014-10-13,2014-10-13,"YB","BE","3","Myt","Mytilus_spp","Type 7",172,0.0875,1965.71428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is mostly a thin film."
+"2014-10-13_YB-BEq4",2014-10-13,2014-10-13,"YB","BE","4","Myt","Mytilus_spp","Type 7",1269,0.0875,14502.8571428571,NA,"Julia Bingham","Finished","Full","Cropped","8%",""
+"2014-10-13_YB-BEq6",2014-10-13,2014-10-13,"YB","BE","6","Myt","Mytilus_spp","Type 7",98,0.0875,1120,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2014-10-13_YB-BEq2",2014-10-13,2014-10-13,"YB","BE","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2014-10-13_YB-BEq3",2014-10-13,2014-10-13,"YB","BE","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is mostly a thin film."
+"2014-10-13_YB-BEq4",2014-10-13,2014-10-13,"YB","BE","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","8%",""
+"2014-10-13_YB-BEq6",2014-10-13,2014-10-13,"YB","BE","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2014-10-13_YB-BEq2",2014-10-13,2014-10-13,"YB","BE","2","Mt","Mytilus_trossulus","Type 15",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2014-10-13_YB-BEq3",2014-10-13,2014-10-13,"YB","BE","3","Mt","Mytilus_trossulus","Type 15",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is mostly a thin film."
+"2014-10-13_YB-BEq4",2014-10-13,2014-10-13,"YB","BE","4","Mt","Mytilus_trossulus","Type 15",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Cropped","8%",""
+"2014-10-13_YB-BEq6",2014-10-13,2014-10-13,"YB","BE","6","Mt","Mytilus_trossulus","Type 15",53,0.0875,605.714285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2014-10-13_YB-BEq2",2014-10-13,2014-10-13,"YB","BE","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2014-10-13_YB-BEq3",2014-10-13,2014-10-13,"YB","BE","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is mostly a thin film."
+"2014-10-13_YB-BEq4",2014-10-13,2014-10-13,"YB","BE","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","8%",""
+"2014-10-13_YB-BEq6",2014-10-13,2014-10-13,"YB","BE","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2014-10-13_YB-BEq2",2014-10-13,2014-10-13,"YB","BE","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2014-10-13_YB-BEq3",2014-10-13,2014-10-13,"YB","BE","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is mostly a thin film."
+"2014-10-13_YB-BEq4",2014-10-13,2014-10-13,"YB","BE","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","8%",""
+"2014-10-13_YB-BEq6",2014-10-13,2014-10-13,"YB","BE","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2014-10-13_YB-BEq2",2014-10-13,2014-10-13,"YB","BE","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2014-10-13_YB-BEq3",2014-10-13,2014-10-13,"YB","BE","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is mostly a thin film."
+"2014-10-13_YB-BEq4",2014-10-13,2014-10-13,"YB","BE","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","8%",""
+"2014-10-13_YB-BEq6",2014-10-13,2014-10-13,"YB","BE","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2014-10-13_YB-BEq2",2014-10-13,2014-10-13,"YB","BE","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2014-10-13_YB-BEq3",2014-10-13,2014-10-13,"YB","BE","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is mostly a thin film."
+"2014-10-13_YB-BEq4",2014-10-13,2014-10-13,"YB","BE","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","8%",""
+"2014-10-13_YB-BEq6",2014-10-13,2014-10-13,"YB","BE","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2014-10-13_YB-BEq2",2014-10-13,2014-10-13,"YB","BE","2","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2014-10-13_YB-BEq3",2014-10-13,2014-10-13,"YB","BE","3","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is mostly a thin film."
+"2014-10-13_YB-BEq4",2014-10-13,2014-10-13,"YB","BE","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","8%",""
+"2014-10-13_YB-BEq6",2014-10-13,2014-10-13,"YB","BE","6","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2014-10-13_YB-BEq2",2014-10-13,2014-10-13,"YB","BE","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2014-10-13_YB-BEq3",2014-10-13,2014-10-13,"YB","BE","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is mostly a thin film."
+"2014-10-13_YB-BEq4",2014-10-13,2014-10-13,"YB","BE","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","8%",""
+"2014-10-13_YB-BEq6",2014-10-13,2014-10-13,"YB","BE","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2014-10-13_YB-BEq2",2014-10-13,2014-10-13,"YB","BE","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2014-10-13_YB-BEq3",2014-10-13,2014-10-13,"YB","BE","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is mostly a thin film."
+"2014-10-13_YB-BEq4",2014-10-13,2014-10-13,"YB","BE","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","8%",""
+"2014-10-13_YB-BEq6",2014-10-13,2014-10-13,"YB","BE","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2014-10-13_YB-BEq2",2014-10-13,2014-10-13,"YB","BE","2","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2014-10-13_YB-BEq3",2014-10-13,2014-10-13,"YB","BE","3","Pp","Pollicipes_polymerus","Type 11",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is mostly a thin film."
+"2014-10-13_YB-BEq4",2014-10-13,2014-10-13,"YB","BE","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","8%",""
+"2014-10-13_YB-BEq6",2014-10-13,2014-10-13,"YB","BE","6","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2014-10-13_YB-BEq2",2014-10-13,2014-10-13,"YB","BE","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2014-10-13_YB-BEq3",2014-10-13,2014-10-13,"YB","BE","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is mostly a thin film."
+"2014-10-13_YB-BEq4",2014-10-13,2014-10-13,"YB","BE","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","8%",""
+"2014-10-13_YB-BEq6",2014-10-13,2014-10-13,"YB","BE","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2014-10-13_YB-BEq2",2014-10-13,2014-10-13,"YB","BE","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2014-10-13_YB-BEq3",2014-10-13,2014-10-13,"YB","BE","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is mostly a thin film."
+"2014-10-13_YB-BEq4",2014-10-13,2014-10-13,"YB","BE","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","8%",""
+"2014-10-13_YB-BEq6",2014-10-13,2014-10-13,"YB","BE","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2014-10-13_YB-BEq2",2014-10-13,2014-10-13,"YB","BE","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2014-10-13_YB-BEq3",2014-10-13,2014-10-13,"YB","BE","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is mostly a thin film."
+"2014-10-13_YB-BEq4",2014-10-13,2014-10-13,"YB","BE","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","8%",""
+"2014-10-13_YB-BEq6",2014-10-13,2014-10-13,"YB","BE","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Algae is a thin film."
+"2014-10-13_YB-BFq1",2014-10-13,2014-10-13,"YB","BF","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts low due to glare and algae."
+"2014-10-13_YB-BFq4",2014-10-13,2014-10-13,"YB","BF","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Algae is mostly a thin film."
+"2014-10-13_YB-BFq9",2014-10-13,2014-10-13,"YB","BF","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","35%",""
+"2014-10-13_YB-BFq1",2014-10-13,2014-10-13,"YB","BF","1","Ae","Anemones","Type 14",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts low due to glare and algae."
+"2014-10-13_YB-BFq4",2014-10-13,2014-10-13,"YB","BF","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Algae is mostly a thin film."
+"2014-10-13_YB-BFq9",2014-10-13,2014-10-13,"YB","BF","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","35%",""
+"2014-10-13_YB-BFq1",2014-10-13,2014-10-13,"YB","BF","1","Bg","Balanus_glandula","Type 1",2455,0.0875,28057.1428571429,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts low due to glare and algae."
+"2014-10-13_YB-BFq4",2014-10-13,2014-10-13,"YB","BF","4","Bg","Balanus_glandula","Type 1",1123,0.015625,71872,"c","Beatriz Vaca","Finished","Full","Cropped","55%","Algae is mostly a thin film."
+"2014-10-13_YB-BFq9",2014-10-13,2014-10-13,"YB","BF","9","Bg","Balanus_glandula","Type 1",410,0.015625,26240,"c","Julia Bingham","Finished","Full","Cropped","35%",""
+"2014-10-13_YB-BFq1",2014-10-13,2014-10-13,"YB","BF","1","BgD","Balanus_glandula_(dead)","Type 2",19,0.0875,217.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts low due to glare and algae."
+"2014-10-13_YB-BFq4",2014-10-13,2014-10-13,"YB","BF","4","BgD","Balanus_glandula_(dead)","Type 2",4,0.015625,256,"c","Beatriz Vaca","Finished","Full","Cropped","55%","Algae is mostly a thin film."
+"2014-10-13_YB-BFq9",2014-10-13,2014-10-13,"YB","BF","9","BgD","Balanus_glandula_(dead)","Type 2",68,0.015625,4352,"c","Julia Bingham","Finished","Full","Cropped","35%",""
+"2014-10-13_YB-BFq1",2014-10-13,2014-10-13,"YB","BF","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts low due to glare and algae."
+"2014-10-13_YB-BFq4",2014-10-13,2014-10-13,"YB","BF","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Algae is mostly a thin film."
+"2014-10-13_YB-BFq9",2014-10-13,2014-10-13,"YB","BF","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","35%",""
+"2014-10-13_YB-BFq1",2014-10-13,2014-10-13,"YB","BF","1","Cth","Chthamalus_dalli","Type 3",108,0.0875,1234.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts low due to glare and algae."
+"2014-10-13_YB-BFq4",2014-10-13,2014-10-13,"YB","BF","4","Cth","Chthamalus_dalli","Type 3",2,0.015625,128,"c","Beatriz Vaca","Finished","Full","Cropped","55%","Algae is mostly a thin film."
+"2014-10-13_YB-BFq9",2014-10-13,2014-10-13,"YB","BF","9","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Julia Bingham","Finished","Full","Cropped","35%",""
+"2014-10-13_YB-BFq1",2014-10-13,2014-10-13,"YB","BF","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts low due to glare and algae."
+"2014-10-13_YB-BFq4",2014-10-13,2014-10-13,"YB","BF","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","55%","Algae is mostly a thin film."
+"2014-10-13_YB-BFq9",2014-10-13,2014-10-13,"YB","BF","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Julia Bingham","Finished","Full","Cropped","35%",""
+"2014-10-13_YB-BFq1",2014-10-13,2014-10-13,"YB","BF","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts low due to glare and algae."
+"2014-10-13_YB-BFq4",2014-10-13,2014-10-13,"YB","BF","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Algae is mostly a thin film."
+"2014-10-13_YB-BFq9",2014-10-13,2014-10-13,"YB","BF","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","35%",""
+"2014-10-13_YB-BFq1",2014-10-13,2014-10-13,"YB","BF","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts low due to glare and algae."
+"2014-10-13_YB-BFq4",2014-10-13,2014-10-13,"YB","BF","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Algae is mostly a thin film."
+"2014-10-13_YB-BFq9",2014-10-13,2014-10-13,"YB","BF","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","35%",""
+"2014-10-13_YB-BFq1",2014-10-13,2014-10-13,"YB","BF","1","Lim","Limpets","Type 12",333,0.0875,3805.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts low due to glare and algae."
+"2014-10-13_YB-BFq4",2014-10-13,2014-10-13,"YB","BF","4","Lim","Limpets","Type 12",285,0.0875,3257.14285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Algae is mostly a thin film."
+"2014-10-13_YB-BFq9",2014-10-13,2014-10-13,"YB","BF","9","Lim","Limpets","Type 12",53,0.0875,605.714285714286,NA,"Julia Bingham","Finished","Full","Cropped","35%",""
+"2014-10-13_YB-BFq1",2014-10-13,2014-10-13,"YB","BF","1","Ls","Littorina_sitkana","Type 13",545,0.0875,6228.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts low due to glare and algae."
+"2014-10-13_YB-BFq4",2014-10-13,2014-10-13,"YB","BF","4","Ls","Littorina_sitkana","Type 13",507,0.0875,5794.28571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Algae is mostly a thin film."
+"2014-10-13_YB-BFq9",2014-10-13,2014-10-13,"YB","BF","9","Ls","Littorina_sitkana","Type 13",361,0.0875,4125.71428571429,NA,"Julia Bingham","Finished","Full","Cropped","35%",""
+"2014-10-13_YB-BFq1",2014-10-13,2014-10-13,"YB","BF","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts low due to glare and algae."
+"2014-10-13_YB-BFq4",2014-10-13,2014-10-13,"YB","BF","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Algae is mostly a thin film."
+"2014-10-13_YB-BFq9",2014-10-13,2014-10-13,"YB","BF","9","Mc","Mytilus_californianus","Type 17",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Cropped","35%",""
+"2014-10-13_YB-BFq1",2014-10-13,2014-10-13,"YB","BF","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts low due to glare and algae."
+"2014-10-13_YB-BFq4",2014-10-13,2014-10-13,"YB","BF","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Algae is mostly a thin film."
+"2014-10-13_YB-BFq9",2014-10-13,2014-10-13,"YB","BF","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","35%",""
+"2014-10-13_YB-BFq1",2014-10-13,2014-10-13,"YB","BF","1","Myt","Mytilus_spp","Type 7",92,0.0875,1051.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts low due to glare and algae."
+"2014-10-13_YB-BFq4",2014-10-13,2014-10-13,"YB","BF","4","Myt","Mytilus_spp","Type 7",126,0.0875,1440,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Algae is mostly a thin film."
+"2014-10-13_YB-BFq9",2014-10-13,2014-10-13,"YB","BF","9","Myt","Mytilus_spp","Type 7",685,0.0875,7828.57142857143,NA,"Julia Bingham","Finished","Full","Cropped","35%",""
+"2014-10-13_YB-BFq1",2014-10-13,2014-10-13,"YB","BF","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts low due to glare and algae."
+"2014-10-13_YB-BFq4",2014-10-13,2014-10-13,"YB","BF","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Algae is mostly a thin film."
+"2014-10-13_YB-BFq9",2014-10-13,2014-10-13,"YB","BF","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","35%",""
+"2014-10-13_YB-BFq1",2014-10-13,2014-10-13,"YB","BF","1","Mt","Mytilus_trossulus","Type 15",219,0.0875,2502.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts low due to glare and algae."
+"2014-10-13_YB-BFq4",2014-10-13,2014-10-13,"YB","BF","4","Mt","Mytilus_trossulus","Type 15",24,0.0875,274.285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Algae is mostly a thin film."
+"2014-10-13_YB-BFq9",2014-10-13,2014-10-13,"YB","BF","9","Mt","Mytilus_trossulus","Type 15",56,0.0875,640,NA,"Julia Bingham","Finished","Full","Cropped","35%",""
+"2014-10-13_YB-BFq1",2014-10-13,2014-10-13,"YB","BF","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts low due to glare and algae."
+"2014-10-13_YB-BFq4",2014-10-13,2014-10-13,"YB","BF","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Algae is mostly a thin film."
+"2014-10-13_YB-BFq9",2014-10-13,2014-10-13,"YB","BF","9","MtD","Mytilus_trossulus_(dead)","Type 16",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Cropped","35%",""
+"2014-10-13_YB-BFq1",2014-10-13,2014-10-13,"YB","BF","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts low due to glare and algae."
+"2014-10-13_YB-BFq4",2014-10-13,2014-10-13,"YB","BF","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Algae is mostly a thin film."
+"2014-10-13_YB-BFq9",2014-10-13,2014-10-13,"YB","BF","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","35%",""
+"2014-10-13_YB-BFq1",2014-10-13,2014-10-13,"YB","BF","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts low due to glare and algae."
+"2014-10-13_YB-BFq4",2014-10-13,2014-10-13,"YB","BF","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Algae is mostly a thin film."
+"2014-10-13_YB-BFq9",2014-10-13,2014-10-13,"YB","BF","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","35%",""
+"2014-10-13_YB-BFq1",2014-10-13,2014-10-13,"YB","BF","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts low due to glare and algae."
+"2014-10-13_YB-BFq4",2014-10-13,2014-10-13,"YB","BF","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Algae is mostly a thin film."
+"2014-10-13_YB-BFq9",2014-10-13,2014-10-13,"YB","BF","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","35%",""
+"2014-10-13_YB-BFq1",2014-10-13,2014-10-13,"YB","BF","1","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts low due to glare and algae."
+"2014-10-13_YB-BFq4",2014-10-13,2014-10-13,"YB","BF","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Algae is mostly a thin film."
+"2014-10-13_YB-BFq9",2014-10-13,2014-10-13,"YB","BF","9","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Cropped","35%",""
+"2014-10-13_YB-BFq1",2014-10-13,2014-10-13,"YB","BF","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts low due to glare and algae."
+"2014-10-13_YB-BFq4",2014-10-13,2014-10-13,"YB","BF","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Algae is mostly a thin film."
+"2014-10-13_YB-BFq9",2014-10-13,2014-10-13,"YB","BF","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","35%",""
+"2014-10-13_YB-BFq1",2014-10-13,2014-10-13,"YB","BF","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts low due to glare and algae."
+"2014-10-13_YB-BFq4",2014-10-13,2014-10-13,"YB","BF","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Algae is mostly a thin film."
+"2014-10-13_YB-BFq9",2014-10-13,2014-10-13,"YB","BF","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","35%",""
+"2014-10-13_YB-BFq1",2014-10-13,2014-10-13,"YB","BF","1","Pp","Pollicipes_polymerus","Type 11",9,0.0875,102.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts low due to glare and algae."
+"2014-10-13_YB-BFq4",2014-10-13,2014-10-13,"YB","BF","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Algae is mostly a thin film."
+"2014-10-13_YB-BFq9",2014-10-13,2014-10-13,"YB","BF","9","Pp","Pollicipes_polymerus","Type 11",3,0.0875,34.2857142857143,NA,"Julia Bingham","Finished","Full","Cropped","35%",""
+"2014-10-13_YB-BFq1",2014-10-13,2014-10-13,"YB","BF","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts low due to glare and algae."
+"2014-10-13_YB-BFq4",2014-10-13,2014-10-13,"YB","BF","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Algae is mostly a thin film."
+"2014-10-13_YB-BFq9",2014-10-13,2014-10-13,"YB","BF","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","35%",""
+"2014-10-13_YB-BFq1",2014-10-13,2014-10-13,"YB","BF","1","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts low due to glare and algae."
+"2014-10-13_YB-BFq4",2014-10-13,2014-10-13,"YB","BF","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Algae is mostly a thin film."
+"2014-10-13_YB-BFq9",2014-10-13,2014-10-13,"YB","BF","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","35%",""
+"2014-10-13_YB-BFq1",2014-10-13,2014-10-13,"YB","BF","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts low due to glare and algae."
+"2014-10-13_YB-BFq4",2014-10-13,2014-10-13,"YB","BF","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Algae is mostly a thin film."
+"2014-10-13_YB-BFq9",2014-10-13,2014-10-13,"YB","BF","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","35%",""
+"2014-10-13_YB-Cq2",2014-10-13,2014-10-13,"YB","C","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2014-10-13_YB-Cq4",2014-10-13,2014-10-13,"YB","C","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to blur and glare."
+"2014-10-13_YB-Cq6",2014-10-13,2014-10-13,"YB","C","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Counts likely low due to blur and glare."
+"2014-10-13_YB-Cq2",2014-10-13,2014-10-13,"YB","C","2","Ae","Anemones","Type 14",13,0.0875,148.571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2014-10-13_YB-Cq4",2014-10-13,2014-10-13,"YB","C","4","Ae","Anemones","Type 14",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to blur and glare."
+"2014-10-13_YB-Cq6",2014-10-13,2014-10-13,"YB","C","6","Ae","Anemones","Type 14",9,0.0875,102.857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Counts likely low due to blur and glare."
+"2014-10-13_YB-Cq2",2014-10-13,2014-10-13,"YB","C","2","Bg","Balanus_glandula","Type 1",91,0.015625,5824,"c","Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2014-10-13_YB-Cq4",2014-10-13,2014-10-13,"YB","C","4","Bg","Balanus_glandula","Type 1",509,0.015625,32576,"c","Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to blur and glare."
+"2014-10-13_YB-Cq6",2014-10-13,2014-10-13,"YB","C","6","Bg","Balanus_glandula","Type 1",310,0.015625,19840,"c","Beatriz Vaca","Finished","Full","Cropped","40%","Counts likely low due to blur and glare."
+"2014-10-13_YB-Cq2",2014-10-13,2014-10-13,"YB","C","2","BgD","Balanus_glandula_(dead)","Type 2",12,0.015625,768,"c","Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2014-10-13_YB-Cq4",2014-10-13,2014-10-13,"YB","C","4","BgD","Balanus_glandula_(dead)","Type 2",12,0.015625,768,"c","Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to blur and glare."
+"2014-10-13_YB-Cq6",2014-10-13,2014-10-13,"YB","C","6","BgD","Balanus_glandula_(dead)","Type 2",9,0.015625,576,"c","Beatriz Vaca","Finished","Full","Cropped","40%","Counts likely low due to blur and glare."
+"2014-10-13_YB-Cq2",2014-10-13,2014-10-13,"YB","C","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2014-10-13_YB-Cq4",2014-10-13,2014-10-13,"YB","C","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to blur and glare."
+"2014-10-13_YB-Cq6",2014-10-13,2014-10-13,"YB","C","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Counts likely low due to blur and glare."
+"2014-10-13_YB-Cq2",2014-10-13,2014-10-13,"YB","C","2","Cth","Chthamalus_dalli","Type 3",11,0.015625,704,"c","Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2014-10-13_YB-Cq4",2014-10-13,2014-10-13,"YB","C","4","Cth","Chthamalus_dalli","Type 3",17,0.015625,1088,"c","Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to blur and glare."
+"2014-10-13_YB-Cq6",2014-10-13,2014-10-13,"YB","C","6","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","40%","Counts likely low due to blur and glare."
+"2014-10-13_YB-Cq2",2014-10-13,2014-10-13,"YB","C","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2014-10-13_YB-Cq4",2014-10-13,2014-10-13,"YB","C","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to blur and glare."
+"2014-10-13_YB-Cq6",2014-10-13,2014-10-13,"YB","C","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","40%","Counts likely low due to blur and glare."
+"2014-10-13_YB-Cq2",2014-10-13,2014-10-13,"YB","C","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2014-10-13_YB-Cq4",2014-10-13,2014-10-13,"YB","C","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to blur and glare."
+"2014-10-13_YB-Cq6",2014-10-13,2014-10-13,"YB","C","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Counts likely low due to blur and glare."
+"2014-10-13_YB-Cq2",2014-10-13,2014-10-13,"YB","C","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2014-10-13_YB-Cq4",2014-10-13,2014-10-13,"YB","C","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to blur and glare."
+"2014-10-13_YB-Cq6",2014-10-13,2014-10-13,"YB","C","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Counts likely low due to blur and glare."
+"2014-10-13_YB-Cq2",2014-10-13,2014-10-13,"YB","C","2","Lim","Limpets","Type 12",394,0.0875,4502.85714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2014-10-13_YB-Cq4",2014-10-13,2014-10-13,"YB","C","4","Lim","Limpets","Type 12",325,0.0875,3714.28571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to blur and glare."
+"2014-10-13_YB-Cq6",2014-10-13,2014-10-13,"YB","C","6","Lim","Limpets","Type 12",404,0.0875,4617.14285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Counts likely low due to blur and glare."
+"2014-10-13_YB-Cq2",2014-10-13,2014-10-13,"YB","C","2","Ls","Littorina_sitkana","Type 13",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2014-10-13_YB-Cq4",2014-10-13,2014-10-13,"YB","C","4","Ls","Littorina_sitkana","Type 13",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to blur and glare."
+"2014-10-13_YB-Cq6",2014-10-13,2014-10-13,"YB","C","6","Ls","Littorina_sitkana","Type 13",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Counts likely low due to blur and glare."
+"2014-10-13_YB-Cq2",2014-10-13,2014-10-13,"YB","C","2","Mc","Mytilus_californianus","Type 17",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2014-10-13_YB-Cq4",2014-10-13,2014-10-13,"YB","C","4","Mc","Mytilus_californianus","Type 17",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to blur and glare."
+"2014-10-13_YB-Cq6",2014-10-13,2014-10-13,"YB","C","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Counts likely low due to blur and glare."
+"2014-10-13_YB-Cq2",2014-10-13,2014-10-13,"YB","C","2","McD","Mytilus_californianus_(dead)","Type 18",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2014-10-13_YB-Cq4",2014-10-13,2014-10-13,"YB","C","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to blur and glare."
+"2014-10-13_YB-Cq6",2014-10-13,2014-10-13,"YB","C","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Counts likely low due to blur and glare."
+"2014-10-13_YB-Cq2",2014-10-13,2014-10-13,"YB","C","2","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2014-10-13_YB-Cq4",2014-10-13,2014-10-13,"YB","C","4","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to blur and glare."
+"2014-10-13_YB-Cq6",2014-10-13,2014-10-13,"YB","C","6","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Counts likely low due to blur and glare."
+"2014-10-13_YB-Cq2",2014-10-13,2014-10-13,"YB","C","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2014-10-13_YB-Cq4",2014-10-13,2014-10-13,"YB","C","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to blur and glare."
+"2014-10-13_YB-Cq6",2014-10-13,2014-10-13,"YB","C","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Counts likely low due to blur and glare."
+"2014-10-13_YB-Cq2",2014-10-13,2014-10-13,"YB","C","2","Mt","Mytilus_trossulus","Type 15",91,0.0875,1040,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2014-10-13_YB-Cq4",2014-10-13,2014-10-13,"YB","C","4","Mt","Mytilus_trossulus","Type 15",108,0.0875,1234.28571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to blur and glare."
+"2014-10-13_YB-Cq6",2014-10-13,2014-10-13,"YB","C","6","Mt","Mytilus_trossulus","Type 15",108,0.0875,1234.28571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Counts likely low due to blur and glare."
+"2014-10-13_YB-Cq2",2014-10-13,2014-10-13,"YB","C","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2014-10-13_YB-Cq4",2014-10-13,2014-10-13,"YB","C","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to blur and glare."
+"2014-10-13_YB-Cq6",2014-10-13,2014-10-13,"YB","C","6","MtD","Mytilus_trossulus_(dead)","Type 16",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Counts likely low due to blur and glare."
+"2014-10-13_YB-Cq2",2014-10-13,2014-10-13,"YB","C","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2014-10-13_YB-Cq4",2014-10-13,2014-10-13,"YB","C","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to blur and glare."
+"2014-10-13_YB-Cq6",2014-10-13,2014-10-13,"YB","C","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Counts likely low due to blur and glare."
+"2014-10-13_YB-Cq2",2014-10-13,2014-10-13,"YB","C","2","Nc","Nucella_canaliculata","Type 10",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2014-10-13_YB-Cq4",2014-10-13,2014-10-13,"YB","C","4","Nc","Nucella_canaliculata","Type 10",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to blur and glare."
+"2014-10-13_YB-Cq6",2014-10-13,2014-10-13,"YB","C","6","Nc","Nucella_canaliculata","Type 10",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Counts likely low due to blur and glare."
+"2014-10-13_YB-Cq2",2014-10-13,2014-10-13,"YB","C","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2014-10-13_YB-Cq4",2014-10-13,2014-10-13,"YB","C","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to blur and glare."
+"2014-10-13_YB-Cq6",2014-10-13,2014-10-13,"YB","C","6","Negg","Nucella_eggs","Type 26",16,0.0875,182.857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Counts likely low due to blur and glare."
+"2014-10-13_YB-Cq2",2014-10-13,2014-10-13,"YB","C","2","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2014-10-13_YB-Cq4",2014-10-13,2014-10-13,"YB","C","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to blur and glare."
+"2014-10-13_YB-Cq6",2014-10-13,2014-10-13,"YB","C","6","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Counts likely low due to blur and glare."
+"2014-10-13_YB-Cq2",2014-10-13,2014-10-13,"YB","C","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2014-10-13_YB-Cq4",2014-10-13,2014-10-13,"YB","C","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to blur and glare."
+"2014-10-13_YB-Cq6",2014-10-13,2014-10-13,"YB","C","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Counts likely low due to blur and glare."
+"2014-10-13_YB-Cq2",2014-10-13,2014-10-13,"YB","C","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2014-10-13_YB-Cq4",2014-10-13,2014-10-13,"YB","C","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to blur and glare."
+"2014-10-13_YB-Cq6",2014-10-13,2014-10-13,"YB","C","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Counts likely low due to blur and glare."
+"2014-10-13_YB-Cq2",2014-10-13,2014-10-13,"YB","C","2","Pp","Pollicipes_polymerus","Type 11",35,0.0875,400,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2014-10-13_YB-Cq4",2014-10-13,2014-10-13,"YB","C","4","Pp","Pollicipes_polymerus","Type 11",14,0.0875,160,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to blur and glare."
+"2014-10-13_YB-Cq6",2014-10-13,2014-10-13,"YB","C","6","Pp","Pollicipes_polymerus","Type 11",13,0.0875,148.571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Counts likely low due to blur and glare."
+"2014-10-13_YB-Cq2",2014-10-13,2014-10-13,"YB","C","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2014-10-13_YB-Cq4",2014-10-13,2014-10-13,"YB","C","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to blur and glare."
+"2014-10-13_YB-Cq6",2014-10-13,2014-10-13,"YB","C","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Counts likely low due to blur and glare."
+"2014-10-13_YB-Cq2",2014-10-13,2014-10-13,"YB","C","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2014-10-13_YB-Cq4",2014-10-13,2014-10-13,"YB","C","4","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to blur and glare."
+"2014-10-13_YB-Cq6",2014-10-13,2014-10-13,"YB","C","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Counts likely low due to blur and glare."
+"2014-10-13_YB-Cq2",2014-10-13,2014-10-13,"YB","C","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2014-10-13_YB-Cq4",2014-10-13,2014-10-13,"YB","C","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to blur and glare."
+"2014-10-13_YB-Cq6",2014-10-13,2014-10-13,"YB","C","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","40%","Counts likely low due to blur and glare."
+"2014-10-13_YB-Dq3",2014-10-13,2014-10-13,"YB","D","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","75%","Counts likely low due to blur and glare."
+"2014-10-13_YB-Dq4",2014-10-13,2014-10-13,"YB","D","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to glare"
+"2014-10-13_YB-Dq5",2014-10-13,2014-10-13,"YB","D","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Counts low due to glare and algae cover."
+"2014-10-13_YB-Dq3",2014-10-13,2014-10-13,"YB","D","3","Ae","Anemones","Type 14",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Cropped","Full","75%","Counts likely low due to blur and glare."
+"2014-10-13_YB-Dq4",2014-10-13,2014-10-13,"YB","D","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to glare"
+"2014-10-13_YB-Dq5",2014-10-13,2014-10-13,"YB","D","5","Ae","Anemones","Type 14",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Counts low due to glare and algae cover."
+"2014-10-13_YB-Dq3",2014-10-13,2014-10-13,"YB","D","3","Bg","Balanus_glandula","Type 1",310,0.0875,3542.85714285714,NA,"Beatriz Vaca","Finished","Cropped","Full","75%","Counts likely low due to blur and glare."
+"2014-10-13_YB-Dq4",2014-10-13,2014-10-13,"YB","D","4","Bg","Balanus_glandula","Type 1",443,0.015625,28352,"c","Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to glare"
+"2014-10-13_YB-Dq5",2014-10-13,2014-10-13,"YB","D","5","Bg","Balanus_glandula","Type 1",261,0.015625,16704,"c","Beatriz Vaca","Finished","Full","Cropped","45%","Counts low due to glare and algae cover."
+"2014-10-13_YB-Dq3",2014-10-13,2014-10-13,"YB","D","3","BgD","Balanus_glandula_(dead)","Type 2",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Cropped","Full","75%","Counts likely low due to blur and glare."
+"2014-10-13_YB-Dq4",2014-10-13,2014-10-13,"YB","D","4","BgD","Balanus_glandula_(dead)","Type 2",1,0.015625,64,"c","Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to glare"
+"2014-10-13_YB-Dq5",2014-10-13,2014-10-13,"YB","D","5","BgD","Balanus_glandula_(dead)","Type 2",6,0.015625,384,"c","Beatriz Vaca","Finished","Full","Cropped","45%","Counts low due to glare and algae cover."
+"2014-10-13_YB-Dq3",2014-10-13,2014-10-13,"YB","D","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","75%","Counts likely low due to blur and glare."
+"2014-10-13_YB-Dq4",2014-10-13,2014-10-13,"YB","D","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to glare"
+"2014-10-13_YB-Dq5",2014-10-13,2014-10-13,"YB","D","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Counts low due to glare and algae cover."
+"2014-10-13_YB-Dq3",2014-10-13,2014-10-13,"YB","D","3","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","75%","Counts likely low due to blur and glare."
+"2014-10-13_YB-Dq4",2014-10-13,2014-10-13,"YB","D","4","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to glare"
+"2014-10-13_YB-Dq5",2014-10-13,2014-10-13,"YB","D","5","Cth","Chthamalus_dalli","Type 3",8,0.015625,512,"c","Beatriz Vaca","Finished","Full","Cropped","45%","Counts low due to glare and algae cover."
+"2014-10-13_YB-Dq3",2014-10-13,2014-10-13,"YB","D","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","75%","Counts likely low due to blur and glare."
+"2014-10-13_YB-Dq4",2014-10-13,2014-10-13,"YB","D","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to glare"
+"2014-10-13_YB-Dq5",2014-10-13,2014-10-13,"YB","D","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","45%","Counts low due to glare and algae cover."
+"2014-10-13_YB-Dq3",2014-10-13,2014-10-13,"YB","D","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","75%","Counts likely low due to blur and glare."
+"2014-10-13_YB-Dq4",2014-10-13,2014-10-13,"YB","D","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to glare"
+"2014-10-13_YB-Dq5",2014-10-13,2014-10-13,"YB","D","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Counts low due to glare and algae cover."
+"2014-10-13_YB-Dq3",2014-10-13,2014-10-13,"YB","D","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","75%","Counts likely low due to blur and glare."
+"2014-10-13_YB-Dq4",2014-10-13,2014-10-13,"YB","D","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to glare"
+"2014-10-13_YB-Dq5",2014-10-13,2014-10-13,"YB","D","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Counts low due to glare and algae cover."
+"2014-10-13_YB-Dq3",2014-10-13,2014-10-13,"YB","D","3","Lim","Limpets","Type 12",86,0.0875,982.857142857143,NA,"Beatriz Vaca","Finished","Cropped","Full","75%","Counts likely low due to blur and glare."
+"2014-10-13_YB-Dq4",2014-10-13,2014-10-13,"YB","D","4","Lim","Limpets","Type 12",56,0.0875,640,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to glare"
+"2014-10-13_YB-Dq5",2014-10-13,2014-10-13,"YB","D","5","Lim","Limpets","Type 12",471,0.0875,5382.85714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Counts low due to glare and algae cover."
+"2014-10-13_YB-Dq3",2014-10-13,2014-10-13,"YB","D","3","Ls","Littorina_sitkana","Type 13",26,0.0875,297.142857142857,NA,"Beatriz Vaca","Finished","Cropped","Full","75%","Counts likely low due to blur and glare."
+"2014-10-13_YB-Dq4",2014-10-13,2014-10-13,"YB","D","4","Ls","Littorina_sitkana","Type 13",99,0.0875,1131.42857142857,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to glare"
+"2014-10-13_YB-Dq5",2014-10-13,2014-10-13,"YB","D","5","Ls","Littorina_sitkana","Type 13",171,0.0875,1954.28571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Counts low due to glare and algae cover."
+"2014-10-13_YB-Dq3",2014-10-13,2014-10-13,"YB","D","3","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","75%","Counts likely low due to blur and glare."
+"2014-10-13_YB-Dq4",2014-10-13,2014-10-13,"YB","D","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to glare"
+"2014-10-13_YB-Dq5",2014-10-13,2014-10-13,"YB","D","5","Mc","Mytilus_californianus","Type 17",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Counts low due to glare and algae cover."
+"2014-10-13_YB-Dq3",2014-10-13,2014-10-13,"YB","D","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","75%","Counts likely low due to blur and glare."
+"2014-10-13_YB-Dq4",2014-10-13,2014-10-13,"YB","D","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to glare"
+"2014-10-13_YB-Dq5",2014-10-13,2014-10-13,"YB","D","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Counts low due to glare and algae cover."
+"2014-10-13_YB-Dq3",2014-10-13,2014-10-13,"YB","D","3","Myt","Mytilus_spp","Type 7",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","75%","Counts likely low due to blur and glare."
+"2014-10-13_YB-Dq4",2014-10-13,2014-10-13,"YB","D","4","Myt","Mytilus_spp","Type 7",314,0.0875,3588.57142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to glare"
+"2014-10-13_YB-Dq5",2014-10-13,2014-10-13,"YB","D","5","Myt","Mytilus_spp","Type 7",50,0.0875,571.428571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Counts low due to glare and algae cover."
+"2014-10-13_YB-Dq3",2014-10-13,2014-10-13,"YB","D","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","75%","Counts likely low due to blur and glare."
+"2014-10-13_YB-Dq4",2014-10-13,2014-10-13,"YB","D","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to glare"
+"2014-10-13_YB-Dq5",2014-10-13,2014-10-13,"YB","D","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Counts low due to glare and algae cover."
+"2014-10-13_YB-Dq3",2014-10-13,2014-10-13,"YB","D","3","Mt","Mytilus_trossulus","Type 15",96,0.015625,6144,"c","Beatriz Vaca","Finished","Cropped","Full","75%","Counts likely low due to blur and glare."
+"2014-10-13_YB-Dq4",2014-10-13,2014-10-13,"YB","D","4","Mt","Mytilus_trossulus","Type 15",127,0.0875,1451.42857142857,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to glare"
+"2014-10-13_YB-Dq5",2014-10-13,2014-10-13,"YB","D","5","Mt","Mytilus_trossulus","Type 15",380,0.0875,4342.85714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Counts low due to glare and algae cover."
+"2014-10-13_YB-Dq3",2014-10-13,2014-10-13,"YB","D","3","MtD","Mytilus_trossulus_(dead)","Type 16",2,0.015625,128,"c","Beatriz Vaca","Finished","Cropped","Full","75%","Counts likely low due to blur and glare."
+"2014-10-13_YB-Dq4",2014-10-13,2014-10-13,"YB","D","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to glare"
+"2014-10-13_YB-Dq5",2014-10-13,2014-10-13,"YB","D","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Counts low due to glare and algae cover."
+"2014-10-13_YB-Dq3",2014-10-13,2014-10-13,"YB","D","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","75%","Counts likely low due to blur and glare."
+"2014-10-13_YB-Dq4",2014-10-13,2014-10-13,"YB","D","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to glare"
+"2014-10-13_YB-Dq5",2014-10-13,2014-10-13,"YB","D","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Counts low due to glare and algae cover."
+"2014-10-13_YB-Dq3",2014-10-13,2014-10-13,"YB","D","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","75%","Counts likely low due to blur and glare."
+"2014-10-13_YB-Dq4",2014-10-13,2014-10-13,"YB","D","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to glare"
+"2014-10-13_YB-Dq5",2014-10-13,2014-10-13,"YB","D","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Counts low due to glare and algae cover."
+"2014-10-13_YB-Dq3",2014-10-13,2014-10-13,"YB","D","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","75%","Counts likely low due to blur and glare."
+"2014-10-13_YB-Dq4",2014-10-13,2014-10-13,"YB","D","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to glare"
+"2014-10-13_YB-Dq5",2014-10-13,2014-10-13,"YB","D","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Counts low due to glare and algae cover."
+"2014-10-13_YB-Dq3",2014-10-13,2014-10-13,"YB","D","3","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Cropped","Full","75%","Counts likely low due to blur and glare."
+"2014-10-13_YB-Dq4",2014-10-13,2014-10-13,"YB","D","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to glare"
+"2014-10-13_YB-Dq5",2014-10-13,2014-10-13,"YB","D","5","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Counts low due to glare and algae cover."
+"2014-10-13_YB-Dq3",2014-10-13,2014-10-13,"YB","D","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","75%","Counts likely low due to blur and glare."
+"2014-10-13_YB-Dq4",2014-10-13,2014-10-13,"YB","D","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to glare"
+"2014-10-13_YB-Dq5",2014-10-13,2014-10-13,"YB","D","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Counts low due to glare and algae cover."
+"2014-10-13_YB-Dq3",2014-10-13,2014-10-13,"YB","D","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","75%","Counts likely low due to blur and glare."
+"2014-10-13_YB-Dq4",2014-10-13,2014-10-13,"YB","D","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to glare"
+"2014-10-13_YB-Dq5",2014-10-13,2014-10-13,"YB","D","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Counts low due to glare and algae cover."
+"2014-10-13_YB-Dq3",2014-10-13,2014-10-13,"YB","D","3","Pp","Pollicipes_polymerus","Type 11",12,0.0875,137.142857142857,NA,"Beatriz Vaca","Finished","Cropped","Full","75%","Counts likely low due to blur and glare."
+"2014-10-13_YB-Dq4",2014-10-13,2014-10-13,"YB","D","4","Pp","Pollicipes_polymerus","Type 11",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to glare"
+"2014-10-13_YB-Dq5",2014-10-13,2014-10-13,"YB","D","5","Pp","Pollicipes_polymerus","Type 11",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Counts low due to glare and algae cover."
+"2014-10-13_YB-Dq3",2014-10-13,2014-10-13,"YB","D","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","75%","Counts likely low due to blur and glare."
+"2014-10-13_YB-Dq4",2014-10-13,2014-10-13,"YB","D","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to glare"
+"2014-10-13_YB-Dq5",2014-10-13,2014-10-13,"YB","D","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Counts low due to glare and algae cover."
+"2014-10-13_YB-Dq3",2014-10-13,2014-10-13,"YB","D","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","75%","Counts likely low due to blur and glare."
+"2014-10-13_YB-Dq4",2014-10-13,2014-10-13,"YB","D","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to glare"
+"2014-10-13_YB-Dq5",2014-10-13,2014-10-13,"YB","D","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Counts low due to glare and algae cover."
+"2014-10-13_YB-Dq3",2014-10-13,2014-10-13,"YB","D","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","75%","Counts likely low due to blur and glare."
+"2014-10-13_YB-Dq4",2014-10-13,2014-10-13,"YB","D","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to glare"
+"2014-10-13_YB-Dq5",2014-10-13,2014-10-13,"YB","D","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Counts low due to glare and algae cover."
+"2014-10-13_YB-Eq3",2014-10-13,2014-10-13,"YB","E","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","65%",""
+"2014-10-13_YB-Eq4",2014-10-13,2014-10-13,"YB","E","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","counts may be low due to glare and high algae coverage"
+"2014-10-13_YB-Eq8",2014-10-13,2014-10-13,"YB","E","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Al counts likely low due to high algae coverage"
+"2014-10-13_YB-Eq3",2014-10-13,2014-10-13,"YB","E","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","65%",""
+"2014-10-13_YB-Eq4",2014-10-13,2014-10-13,"YB","E","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","counts may be low due to glare and high algae coverage"
+"2014-10-13_YB-Eq8",2014-10-13,2014-10-13,"YB","E","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Al counts likely low due to high algae coverage"
+"2014-10-13_YB-Eq3",2014-10-13,2014-10-13,"YB","E","3","Bg","Balanus_glandula","Type 1",179,0.0875,2045.71428571429,NA,"Stephanie Merhoff","Finished","Full","Full","65%",""
+"2014-10-13_YB-Eq4",2014-10-13,2014-10-13,"YB","E","4","Bg","Balanus_glandula","Type 1",476,0.0875,5440,NA,"Stephanie Merhoff","Finished","Full","Full","50%","counts may be low due to glare and high algae coverage"
+"2014-10-13_YB-Eq8",2014-10-13,2014-10-13,"YB","E","8","Bg","Balanus_glandula","Type 1",106,0.0875,1211.42857142857,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Al counts likely low due to high algae coverage"
+"2014-10-13_YB-Eq3",2014-10-13,2014-10-13,"YB","E","3","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","65%",""
+"2014-10-13_YB-Eq4",2014-10-13,2014-10-13,"YB","E","4","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","counts may be low due to glare and high algae coverage"
+"2014-10-13_YB-Eq8",2014-10-13,2014-10-13,"YB","E","8","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Al counts likely low due to high algae coverage"
+"2014-10-13_YB-Eq3",2014-10-13,2014-10-13,"YB","E","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","65%",""
+"2014-10-13_YB-Eq4",2014-10-13,2014-10-13,"YB","E","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","counts may be low due to glare and high algae coverage"
+"2014-10-13_YB-Eq8",2014-10-13,2014-10-13,"YB","E","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Al counts likely low due to high algae coverage"
+"2014-10-13_YB-Eq3",2014-10-13,2014-10-13,"YB","E","3","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","65%",""
+"2014-10-13_YB-Eq4",2014-10-13,2014-10-13,"YB","E","4","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","counts may be low due to glare and high algae coverage"
+"2014-10-13_YB-Eq8",2014-10-13,2014-10-13,"YB","E","8","Cth","Chthamalus_dalli","Type 3",26,0.0875,297.142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Al counts likely low due to high algae coverage"
+"2014-10-13_YB-Eq3",2014-10-13,2014-10-13,"YB","E","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","65%",""
+"2014-10-13_YB-Eq4",2014-10-13,2014-10-13,"YB","E","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","counts may be low due to glare and high algae coverage"
+"2014-10-13_YB-Eq8",2014-10-13,2014-10-13,"YB","E","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Al counts likely low due to high algae coverage"
+"2014-10-13_YB-Eq3",2014-10-13,2014-10-13,"YB","E","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","65%",""
+"2014-10-13_YB-Eq4",2014-10-13,2014-10-13,"YB","E","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","counts may be low due to glare and high algae coverage"
+"2014-10-13_YB-Eq8",2014-10-13,2014-10-13,"YB","E","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Al counts likely low due to high algae coverage"
+"2014-10-13_YB-Eq3",2014-10-13,2014-10-13,"YB","E","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","65%",""
+"2014-10-13_YB-Eq4",2014-10-13,2014-10-13,"YB","E","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","counts may be low due to glare and high algae coverage"
+"2014-10-13_YB-Eq8",2014-10-13,2014-10-13,"YB","E","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Al counts likely low due to high algae coverage"
+"2014-10-13_YB-Eq3",2014-10-13,2014-10-13,"YB","E","3","Lim","Limpets","Type 12",45,0.0875,514.285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","65%",""
+"2014-10-13_YB-Eq4",2014-10-13,2014-10-13,"YB","E","4","Lim","Limpets","Type 12",13,0.0875,148.571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","50%","counts may be low due to glare and high algae coverage"
+"2014-10-13_YB-Eq8",2014-10-13,2014-10-13,"YB","E","8","Lim","Limpets","Type 12",108,0.0875,1234.28571428571,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Al counts likely low due to high algae coverage"
+"2014-10-13_YB-Eq3",2014-10-13,2014-10-13,"YB","E","3","Ls","Littorina_sitkana","Type 13",27,0.0875,308.571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","65%",""
+"2014-10-13_YB-Eq4",2014-10-13,2014-10-13,"YB","E","4","Ls","Littorina_sitkana","Type 13",9,0.0875,102.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","50%","counts may be low due to glare and high algae coverage"
+"2014-10-13_YB-Eq8",2014-10-13,2014-10-13,"YB","E","8","Ls","Littorina_sitkana","Type 13",93,0.0875,1062.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Al counts likely low due to high algae coverage"
+"2014-10-13_YB-Eq3",2014-10-13,2014-10-13,"YB","E","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","65%",""
+"2014-10-13_YB-Eq4",2014-10-13,2014-10-13,"YB","E","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","counts may be low due to glare and high algae coverage"
+"2014-10-13_YB-Eq8",2014-10-13,2014-10-13,"YB","E","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Al counts likely low due to high algae coverage"
+"2014-10-13_YB-Eq3",2014-10-13,2014-10-13,"YB","E","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","65%",""
+"2014-10-13_YB-Eq4",2014-10-13,2014-10-13,"YB","E","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","counts may be low due to glare and high algae coverage"
+"2014-10-13_YB-Eq8",2014-10-13,2014-10-13,"YB","E","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Al counts likely low due to high algae coverage"
+"2014-10-13_YB-Eq3",2014-10-13,2014-10-13,"YB","E","3","Myt","Mytilus_spp","Type 7",159,0.0875,1817.14285714286,NA,"Stephanie Merhoff","Finished","Full","Full","65%",""
+"2014-10-13_YB-Eq4",2014-10-13,2014-10-13,"YB","E","4","Myt","Mytilus_spp","Type 7",454,0.0875,5188.57142857143,NA,"Stephanie Merhoff","Finished","Full","Full","50%","counts may be low due to glare and high algae coverage"
+"2014-10-13_YB-Eq8",2014-10-13,2014-10-13,"YB","E","8","Myt","Mytilus_spp","Type 7",124,0.0875,1417.14285714286,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Al counts likely low due to high algae coverage"
+"2014-10-13_YB-Eq3",2014-10-13,2014-10-13,"YB","E","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","65%",""
+"2014-10-13_YB-Eq4",2014-10-13,2014-10-13,"YB","E","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","counts may be low due to glare and high algae coverage"
+"2014-10-13_YB-Eq8",2014-10-13,2014-10-13,"YB","E","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Al counts likely low due to high algae coverage"
+"2014-10-13_YB-Eq3",2014-10-13,2014-10-13,"YB","E","3","Mt","Mytilus_trossulus","Type 15",26,0.0875,297.142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","65%",""
+"2014-10-13_YB-Eq4",2014-10-13,2014-10-13,"YB","E","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","counts may be low due to glare and high algae coverage"
+"2014-10-13_YB-Eq8",2014-10-13,2014-10-13,"YB","E","8","Mt","Mytilus_trossulus","Type 15",17,0.0875,194.285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Al counts likely low due to high algae coverage"
+"2014-10-13_YB-Eq3",2014-10-13,2014-10-13,"YB","E","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","65%",""
+"2014-10-13_YB-Eq4",2014-10-13,2014-10-13,"YB","E","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","counts may be low due to glare and high algae coverage"
+"2014-10-13_YB-Eq8",2014-10-13,2014-10-13,"YB","E","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Al counts likely low due to high algae coverage"
+"2014-10-13_YB-Eq3",2014-10-13,2014-10-13,"YB","E","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","65%",""
+"2014-10-13_YB-Eq4",2014-10-13,2014-10-13,"YB","E","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","counts may be low due to glare and high algae coverage"
+"2014-10-13_YB-Eq8",2014-10-13,2014-10-13,"YB","E","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Al counts likely low due to high algae coverage"
+"2014-10-13_YB-Eq3",2014-10-13,2014-10-13,"YB","E","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","65%",""
+"2014-10-13_YB-Eq4",2014-10-13,2014-10-13,"YB","E","4","Nc","Nucella_canaliculata","Type 10",5,0.0875,57.1428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","50%","counts may be low due to glare and high algae coverage"
+"2014-10-13_YB-Eq8",2014-10-13,2014-10-13,"YB","E","8","Nc","Nucella_canaliculata","Type 10",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Al counts likely low due to high algae coverage"
+"2014-10-13_YB-Eq3",2014-10-13,2014-10-13,"YB","E","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","65%",""
+"2014-10-13_YB-Eq4",2014-10-13,2014-10-13,"YB","E","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","counts may be low due to glare and high algae coverage"
+"2014-10-13_YB-Eq8",2014-10-13,2014-10-13,"YB","E","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Al counts likely low due to high algae coverage"
+"2014-10-13_YB-Eq3",2014-10-13,2014-10-13,"YB","E","3","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","65%",""
+"2014-10-13_YB-Eq4",2014-10-13,2014-10-13,"YB","E","4","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","50%","counts may be low due to glare and high algae coverage"
+"2014-10-13_YB-Eq8",2014-10-13,2014-10-13,"YB","E","8","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Al counts likely low due to high algae coverage"
+"2014-10-13_YB-Eq3",2014-10-13,2014-10-13,"YB","E","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","65%",""
+"2014-10-13_YB-Eq4",2014-10-13,2014-10-13,"YB","E","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","counts may be low due to glare and high algae coverage"
+"2014-10-13_YB-Eq8",2014-10-13,2014-10-13,"YB","E","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Al counts likely low due to high algae coverage"
+"2014-10-13_YB-Eq3",2014-10-13,2014-10-13,"YB","E","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","65%",""
+"2014-10-13_YB-Eq4",2014-10-13,2014-10-13,"YB","E","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","counts may be low due to glare and high algae coverage"
+"2014-10-13_YB-Eq8",2014-10-13,2014-10-13,"YB","E","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Al counts likely low due to high algae coverage"
+"2014-10-13_YB-Eq3",2014-10-13,2014-10-13,"YB","E","3","Pp","Pollicipes_polymerus","Type 11",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","65%",""
+"2014-10-13_YB-Eq4",2014-10-13,2014-10-13,"YB","E","4","Pp","Pollicipes_polymerus","Type 11",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","50%","counts may be low due to glare and high algae coverage"
+"2014-10-13_YB-Eq8",2014-10-13,2014-10-13,"YB","E","8","Pp","Pollicipes_polymerus","Type 11",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Al counts likely low due to high algae coverage"
+"2014-10-13_YB-Eq3",2014-10-13,2014-10-13,"YB","E","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","65%",""
+"2014-10-13_YB-Eq4",2014-10-13,2014-10-13,"YB","E","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","counts may be low due to glare and high algae coverage"
+"2014-10-13_YB-Eq8",2014-10-13,2014-10-13,"YB","E","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Al counts likely low due to high algae coverage"
+"2014-10-13_YB-Eq3",2014-10-13,2014-10-13,"YB","E","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","65%",""
+"2014-10-13_YB-Eq4",2014-10-13,2014-10-13,"YB","E","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","counts may be low due to glare and high algae coverage"
+"2014-10-13_YB-Eq8",2014-10-13,2014-10-13,"YB","E","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Al counts likely low due to high algae coverage"
+"2014-10-13_YB-Eq3",2014-10-13,2014-10-13,"YB","E","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","65%",""
+"2014-10-13_YB-Eq4",2014-10-13,2014-10-13,"YB","E","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","counts may be low due to glare and high algae coverage"
+"2014-10-13_YB-Eq8",2014-10-13,2014-10-13,"YB","E","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Al counts likely low due to high algae coverage"
+"2014-10-13_YB-Fq4",2014-10-13,2014-10-13,"YB","F","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","15%",""
+"2014-10-13_YB-Fq5",2014-10-13,2014-10-13,"YB","F","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts may be low due to glare and algae cover."
+"2014-10-13_YB-Fq6",2014-10-13,2014-10-13,"YB","F","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%",""
+"2014-10-13_YB-Fq4",2014-10-13,2014-10-13,"YB","F","4","Ae","Anemones","Type 14",12,0.0875,137.142857142857,NA,"Beatriz Vaca","Finished","Cropped","Cropped","15%",""
+"2014-10-13_YB-Fq5",2014-10-13,2014-10-13,"YB","F","5","Ae","Anemones","Type 14",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts may be low due to glare and algae cover."
+"2014-10-13_YB-Fq6",2014-10-13,2014-10-13,"YB","F","6","Ae","Anemones","Type 14",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","55%",""
+"2014-10-13_YB-Fq4",2014-10-13,2014-10-13,"YB","F","4","Bg","Balanus_glandula","Type 1",338,0.015625,21632,"c","Beatriz Vaca","Finished","Cropped","Cropped","15%",""
+"2014-10-13_YB-Fq5",2014-10-13,2014-10-13,"YB","F","5","Bg","Balanus_glandula","Type 1",495,0.0875,5657.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts may be low due to glare and algae cover."
+"2014-10-13_YB-Fq6",2014-10-13,2014-10-13,"YB","F","6","Bg","Balanus_glandula","Type 1",752,0.0875,8594.28571428572,NA,"Beatriz Vaca","Finished","Full","Full","55%",""
+"2014-10-13_YB-Fq4",2014-10-13,2014-10-13,"YB","F","4","BgD","Balanus_glandula_(dead)","Type 2",4,0.015625,256,"c","Beatriz Vaca","Finished","Cropped","Cropped","15%",""
+"2014-10-13_YB-Fq5",2014-10-13,2014-10-13,"YB","F","5","BgD","Balanus_glandula_(dead)","Type 2",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts may be low due to glare and algae cover."
+"2014-10-13_YB-Fq6",2014-10-13,2014-10-13,"YB","F","6","BgD","Balanus_glandula_(dead)","Type 2",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","55%",""
+"2014-10-13_YB-Fq4",2014-10-13,2014-10-13,"YB","F","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","15%",""
+"2014-10-13_YB-Fq5",2014-10-13,2014-10-13,"YB","F","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts may be low due to glare and algae cover."
+"2014-10-13_YB-Fq6",2014-10-13,2014-10-13,"YB","F","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%",""
+"2014-10-13_YB-Fq4",2014-10-13,2014-10-13,"YB","F","4","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","15%",""
+"2014-10-13_YB-Fq5",2014-10-13,2014-10-13,"YB","F","5","Cth","Chthamalus_dalli","Type 3",14,0.0875,160,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts may be low due to glare and algae cover."
+"2014-10-13_YB-Fq6",2014-10-13,2014-10-13,"YB","F","6","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%",""
+"2014-10-13_YB-Fq4",2014-10-13,2014-10-13,"YB","F","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","15%",""
+"2014-10-13_YB-Fq5",2014-10-13,2014-10-13,"YB","F","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts may be low due to glare and algae cover."
+"2014-10-13_YB-Fq6",2014-10-13,2014-10-13,"YB","F","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%",""
+"2014-10-13_YB-Fq4",2014-10-13,2014-10-13,"YB","F","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","15%",""
+"2014-10-13_YB-Fq5",2014-10-13,2014-10-13,"YB","F","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts may be low due to glare and algae cover."
+"2014-10-13_YB-Fq6",2014-10-13,2014-10-13,"YB","F","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%",""
+"2014-10-13_YB-Fq4",2014-10-13,2014-10-13,"YB","F","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","15%",""
+"2014-10-13_YB-Fq5",2014-10-13,2014-10-13,"YB","F","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts may be low due to glare and algae cover."
+"2014-10-13_YB-Fq6",2014-10-13,2014-10-13,"YB","F","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%",""
+"2014-10-13_YB-Fq4",2014-10-13,2014-10-13,"YB","F","4","Lim","Limpets","Type 12",702,0.0875,8022.85714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","15%",""
+"2014-10-13_YB-Fq5",2014-10-13,2014-10-13,"YB","F","5","Lim","Limpets","Type 12",344,0.0875,3931.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts may be low due to glare and algae cover."
+"2014-10-13_YB-Fq6",2014-10-13,2014-10-13,"YB","F","6","Lim","Limpets","Type 12",341,0.0875,3897.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","55%",""
+"2014-10-13_YB-Fq4",2014-10-13,2014-10-13,"YB","F","4","Ls","Littorina_sitkana","Type 13",216,0.0875,2468.57142857143,NA,"Beatriz Vaca","Finished","Cropped","Cropped","15%",""
+"2014-10-13_YB-Fq5",2014-10-13,2014-10-13,"YB","F","5","Ls","Littorina_sitkana","Type 13",90,0.0875,1028.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts may be low due to glare and algae cover."
+"2014-10-13_YB-Fq6",2014-10-13,2014-10-13,"YB","F","6","Ls","Littorina_sitkana","Type 13",132,0.0875,1508.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","55%",""
+"2014-10-13_YB-Fq4",2014-10-13,2014-10-13,"YB","F","4","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","15%",""
+"2014-10-13_YB-Fq5",2014-10-13,2014-10-13,"YB","F","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts may be low due to glare and algae cover."
+"2014-10-13_YB-Fq6",2014-10-13,2014-10-13,"YB","F","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%",""
+"2014-10-13_YB-Fq4",2014-10-13,2014-10-13,"YB","F","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","15%",""
+"2014-10-13_YB-Fq5",2014-10-13,2014-10-13,"YB","F","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts may be low due to glare and algae cover."
+"2014-10-13_YB-Fq6",2014-10-13,2014-10-13,"YB","F","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%",""
+"2014-10-13_YB-Fq4",2014-10-13,2014-10-13,"YB","F","4","Myt","Mytilus_spp","Type 7",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","15%",""
+"2014-10-13_YB-Fq5",2014-10-13,2014-10-13,"YB","F","5","Myt","Mytilus_spp","Type 7",11,0.0875,125.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts may be low due to glare and algae cover."
+"2014-10-13_YB-Fq6",2014-10-13,2014-10-13,"YB","F","6","Myt","Mytilus_spp","Type 7",115,0.0875,1314.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","55%",""
+"2014-10-13_YB-Fq4",2014-10-13,2014-10-13,"YB","F","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","15%",""
+"2014-10-13_YB-Fq5",2014-10-13,2014-10-13,"YB","F","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts may be low due to glare and algae cover."
+"2014-10-13_YB-Fq6",2014-10-13,2014-10-13,"YB","F","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%",""
+"2014-10-13_YB-Fq4",2014-10-13,2014-10-13,"YB","F","4","Mt","Mytilus_trossulus","Type 15",127,0.015625,8128,"c","Beatriz Vaca","Finished","Cropped","Cropped","15%",""
+"2014-10-13_YB-Fq5",2014-10-13,2014-10-13,"YB","F","5","Mt","Mytilus_trossulus","Type 15",548,0.0875,6262.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts may be low due to glare and algae cover."
+"2014-10-13_YB-Fq6",2014-10-13,2014-10-13,"YB","F","6","Mt","Mytilus_trossulus","Type 15",365,0.0875,4171.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","55%",""
+"2014-10-13_YB-Fq4",2014-10-13,2014-10-13,"YB","F","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","15%",""
+"2014-10-13_YB-Fq5",2014-10-13,2014-10-13,"YB","F","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts may be low due to glare and algae cover."
+"2014-10-13_YB-Fq6",2014-10-13,2014-10-13,"YB","F","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%",""
+"2014-10-13_YB-Fq4",2014-10-13,2014-10-13,"YB","F","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","15%",""
+"2014-10-13_YB-Fq5",2014-10-13,2014-10-13,"YB","F","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts may be low due to glare and algae cover."
+"2014-10-13_YB-Fq6",2014-10-13,2014-10-13,"YB","F","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%",""
+"2014-10-13_YB-Fq4",2014-10-13,2014-10-13,"YB","F","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","15%",""
+"2014-10-13_YB-Fq5",2014-10-13,2014-10-13,"YB","F","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts may be low due to glare and algae cover."
+"2014-10-13_YB-Fq6",2014-10-13,2014-10-13,"YB","F","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%",""
+"2014-10-13_YB-Fq4",2014-10-13,2014-10-13,"YB","F","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","15%",""
+"2014-10-13_YB-Fq5",2014-10-13,2014-10-13,"YB","F","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts may be low due to glare and algae cover."
+"2014-10-13_YB-Fq6",2014-10-13,2014-10-13,"YB","F","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%",""
+"2014-10-13_YB-Fq4",2014-10-13,2014-10-13,"YB","F","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","15%",""
+"2014-10-13_YB-Fq5",2014-10-13,2014-10-13,"YB","F","5","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts may be low due to glare and algae cover."
+"2014-10-13_YB-Fq6",2014-10-13,2014-10-13,"YB","F","6","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","55%",""
+"2014-10-13_YB-Fq4",2014-10-13,2014-10-13,"YB","F","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","15%",""
+"2014-10-13_YB-Fq5",2014-10-13,2014-10-13,"YB","F","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts may be low due to glare and algae cover."
+"2014-10-13_YB-Fq6",2014-10-13,2014-10-13,"YB","F","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%",""
+"2014-10-13_YB-Fq4",2014-10-13,2014-10-13,"YB","F","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","15%",""
+"2014-10-13_YB-Fq5",2014-10-13,2014-10-13,"YB","F","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts may be low due to glare and algae cover."
+"2014-10-13_YB-Fq6",2014-10-13,2014-10-13,"YB","F","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%",""
+"2014-10-13_YB-Fq4",2014-10-13,2014-10-13,"YB","F","4","Pp","Pollicipes_polymerus","Type 11",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Cropped","Cropped","15%",""
+"2014-10-13_YB-Fq5",2014-10-13,2014-10-13,"YB","F","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts may be low due to glare and algae cover."
+"2014-10-13_YB-Fq6",2014-10-13,2014-10-13,"YB","F","6","Pp","Pollicipes_polymerus","Type 11",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","55%",""
+"2014-10-13_YB-Fq4",2014-10-13,2014-10-13,"YB","F","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","15%",""
+"2014-10-13_YB-Fq5",2014-10-13,2014-10-13,"YB","F","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts may be low due to glare and algae cover."
+"2014-10-13_YB-Fq6",2014-10-13,2014-10-13,"YB","F","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%",""
+"2014-10-13_YB-Fq4",2014-10-13,2014-10-13,"YB","F","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","15%",""
+"2014-10-13_YB-Fq5",2014-10-13,2014-10-13,"YB","F","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts may be low due to glare and algae cover."
+"2014-10-13_YB-Fq6",2014-10-13,2014-10-13,"YB","F","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%",""
+"2014-10-13_YB-Fq4",2014-10-13,2014-10-13,"YB","F","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","15%",""
+"2014-10-13_YB-Fq5",2014-10-13,2014-10-13,"YB","F","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts may be low due to glare and algae cover."
+"2014-10-13_YB-Fq6",2014-10-13,2014-10-13,"YB","F","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%",""
+"2014-10-13_YB-Gq3",2014-10-13,2014-10-13,"YB","G","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur and algae coverage"
+"2014-10-13_YB-Gq5",2014-10-13,2014-10-13,"YB","G","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","30%","Counts low due to glare and algae cover."
+"2014-10-13_YB-Gq8",2014-10-13,2014-10-13,"YB","G","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2014-10-13_YB-Gq3",2014-10-13,2014-10-13,"YB","G","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur and algae coverage"
+"2014-10-13_YB-Gq5",2014-10-13,2014-10-13,"YB","G","5","Ae","Anemones","Type 14",25,0.0875,285.714285714286,NA,"Beatriz Vaca","Finished","Cropped","Full","30%","Counts low due to glare and algae cover."
+"2014-10-13_YB-Gq8",2014-10-13,2014-10-13,"YB","G","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2014-10-13_YB-Gq3",2014-10-13,2014-10-13,"YB","G","3","Bg","Balanus_glandula","Type 1",223,0.0875,2548.57142857143,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur and algae coverage"
+"2014-10-13_YB-Gq5",2014-10-13,2014-10-13,"YB","G","5","Bg","Balanus_glandula","Type 1",486,0.0875,5554.28571428571,NA,"Beatriz Vaca","Finished","Cropped","Full","30%","Counts low due to glare and algae cover."
+"2014-10-13_YB-Gq8",2014-10-13,2014-10-13,"YB","G","8","Bg","Balanus_glandula","Type 1",2774,0.0875,31702.8571428571,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2014-10-13_YB-Gq3",2014-10-13,2014-10-13,"YB","G","3","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur and algae coverage"
+"2014-10-13_YB-Gq5",2014-10-13,2014-10-13,"YB","G","5","BgD","Balanus_glandula_(dead)","Type 2",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Cropped","Full","30%","Counts low due to glare and algae cover."
+"2014-10-13_YB-Gq8",2014-10-13,2014-10-13,"YB","G","8","BgD","Balanus_glandula_(dead)","Type 2",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2014-10-13_YB-Gq3",2014-10-13,2014-10-13,"YB","G","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur and algae coverage"
+"2014-10-13_YB-Gq5",2014-10-13,2014-10-13,"YB","G","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","30%","Counts low due to glare and algae cover."
+"2014-10-13_YB-Gq8",2014-10-13,2014-10-13,"YB","G","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2014-10-13_YB-Gq3",2014-10-13,2014-10-13,"YB","G","3","Cth","Chthamalus_dalli","Type 3",31,0.0875,354.285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur and algae coverage"
+"2014-10-13_YB-Gq5",2014-10-13,2014-10-13,"YB","G","5","Cth","Chthamalus_dalli","Type 3",9,0.0875,102.857142857143,NA,"Beatriz Vaca","Finished","Cropped","Full","30%","Counts low due to glare and algae cover."
+"2014-10-13_YB-Gq8",2014-10-13,2014-10-13,"YB","G","8","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2014-10-13_YB-Gq3",2014-10-13,2014-10-13,"YB","G","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur and algae coverage"
+"2014-10-13_YB-Gq5",2014-10-13,2014-10-13,"YB","G","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","30%","Counts low due to glare and algae cover."
+"2014-10-13_YB-Gq8",2014-10-13,2014-10-13,"YB","G","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2014-10-13_YB-Gq3",2014-10-13,2014-10-13,"YB","G","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur and algae coverage"
+"2014-10-13_YB-Gq5",2014-10-13,2014-10-13,"YB","G","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","30%","Counts low due to glare and algae cover."
+"2014-10-13_YB-Gq8",2014-10-13,2014-10-13,"YB","G","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2014-10-13_YB-Gq3",2014-10-13,2014-10-13,"YB","G","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur and algae coverage"
+"2014-10-13_YB-Gq5",2014-10-13,2014-10-13,"YB","G","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","30%","Counts low due to glare and algae cover."
+"2014-10-13_YB-Gq8",2014-10-13,2014-10-13,"YB","G","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2014-10-13_YB-Gq3",2014-10-13,2014-10-13,"YB","G","3","Lim","Limpets","Type 12",6,0.0875,68.5714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur and algae coverage"
+"2014-10-13_YB-Gq5",2014-10-13,2014-10-13,"YB","G","5","Lim","Limpets","Type 12",389,0.0875,4445.71428571429,NA,"Beatriz Vaca","Finished","Cropped","Full","30%","Counts low due to glare and algae cover."
+"2014-10-13_YB-Gq8",2014-10-13,2014-10-13,"YB","G","8","Lim","Limpets","Type 12",52,0.0875,594.285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2014-10-13_YB-Gq3",2014-10-13,2014-10-13,"YB","G","3","Ls","Littorina_sitkana","Type 13",7,0.0875,80,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur and algae coverage"
+"2014-10-13_YB-Gq5",2014-10-13,2014-10-13,"YB","G","5","Ls","Littorina_sitkana","Type 13",76,0.0875,868.571428571429,NA,"Beatriz Vaca","Finished","Cropped","Full","30%","Counts low due to glare and algae cover."
+"2014-10-13_YB-Gq8",2014-10-13,2014-10-13,"YB","G","8","Ls","Littorina_sitkana","Type 13",60,0.0875,685.714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2014-10-13_YB-Gq3",2014-10-13,2014-10-13,"YB","G","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur and algae coverage"
+"2014-10-13_YB-Gq5",2014-10-13,2014-10-13,"YB","G","5","Mc","Mytilus_californianus","Type 17",5,0.015625,320,"c","Beatriz Vaca","Finished","Cropped","Full","30%","Counts low due to glare and algae cover."
+"2014-10-13_YB-Gq8",2014-10-13,2014-10-13,"YB","G","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2014-10-13_YB-Gq3",2014-10-13,2014-10-13,"YB","G","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur and algae coverage"
+"2014-10-13_YB-Gq5",2014-10-13,2014-10-13,"YB","G","5","McD","Mytilus_californianus_(dead)","Type 18",1,0.015625,64,"c","Beatriz Vaca","Finished","Cropped","Full","30%","Counts low due to glare and algae cover."
+"2014-10-13_YB-Gq8",2014-10-13,2014-10-13,"YB","G","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2014-10-13_YB-Gq3",2014-10-13,2014-10-13,"YB","G","3","Myt","Mytilus_spp","Type 7",557,0.0875,6365.71428571429,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur and algae coverage"
+"2014-10-13_YB-Gq5",2014-10-13,2014-10-13,"YB","G","5","Myt","Mytilus_spp","Type 7",7,0.015625,448,"c","Beatriz Vaca","Finished","Cropped","Full","30%","Counts low due to glare and algae cover."
+"2014-10-13_YB-Gq8",2014-10-13,2014-10-13,"YB","G","8","Myt","Mytilus_spp","Type 7",592,0.0875,6765.71428571429,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2014-10-13_YB-Gq3",2014-10-13,2014-10-13,"YB","G","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur and algae coverage"
+"2014-10-13_YB-Gq5",2014-10-13,2014-10-13,"YB","G","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","30%","Counts low due to glare and algae cover."
+"2014-10-13_YB-Gq8",2014-10-13,2014-10-13,"YB","G","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2014-10-13_YB-Gq3",2014-10-13,2014-10-13,"YB","G","3","Mt","Mytilus_trossulus","Type 15",131,0.0875,1497.14285714286,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur and algae coverage"
+"2014-10-13_YB-Gq5",2014-10-13,2014-10-13,"YB","G","5","Mt","Mytilus_trossulus","Type 15",68,0.015625,4352,"c","Beatriz Vaca","Finished","Cropped","Full","30%","Counts low due to glare and algae cover."
+"2014-10-13_YB-Gq8",2014-10-13,2014-10-13,"YB","G","8","Mt","Mytilus_trossulus","Type 15",122,0.0875,1394.28571428571,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2014-10-13_YB-Gq3",2014-10-13,2014-10-13,"YB","G","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur and algae coverage"
+"2014-10-13_YB-Gq5",2014-10-13,2014-10-13,"YB","G","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","30%","Counts low due to glare and algae cover."
+"2014-10-13_YB-Gq8",2014-10-13,2014-10-13,"YB","G","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2014-10-13_YB-Gq3",2014-10-13,2014-10-13,"YB","G","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur and algae coverage"
+"2014-10-13_YB-Gq5",2014-10-13,2014-10-13,"YB","G","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","30%","Counts low due to glare and algae cover."
+"2014-10-13_YB-Gq8",2014-10-13,2014-10-13,"YB","G","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2014-10-13_YB-Gq3",2014-10-13,2014-10-13,"YB","G","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur and algae coverage"
+"2014-10-13_YB-Gq5",2014-10-13,2014-10-13,"YB","G","5","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Cropped","Full","30%","Counts low due to glare and algae cover."
+"2014-10-13_YB-Gq8",2014-10-13,2014-10-13,"YB","G","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2014-10-13_YB-Gq3",2014-10-13,2014-10-13,"YB","G","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur and algae coverage"
+"2014-10-13_YB-Gq5",2014-10-13,2014-10-13,"YB","G","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","30%","Counts low due to glare and algae cover."
+"2014-10-13_YB-Gq8",2014-10-13,2014-10-13,"YB","G","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2014-10-13_YB-Gq3",2014-10-13,2014-10-13,"YB","G","3","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur and algae coverage"
+"2014-10-13_YB-Gq5",2014-10-13,2014-10-13,"YB","G","5","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","30%","Counts low due to glare and algae cover."
+"2014-10-13_YB-Gq8",2014-10-13,2014-10-13,"YB","G","8","No","Nucella_ostrina","Type 9",5,0.0875,57.1428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2014-10-13_YB-Gq3",2014-10-13,2014-10-13,"YB","G","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur and algae coverage"
+"2014-10-13_YB-Gq5",2014-10-13,2014-10-13,"YB","G","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","30%","Counts low due to glare and algae cover."
+"2014-10-13_YB-Gq8",2014-10-13,2014-10-13,"YB","G","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2014-10-13_YB-Gq3",2014-10-13,2014-10-13,"YB","G","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur and algae coverage"
+"2014-10-13_YB-Gq5",2014-10-13,2014-10-13,"YB","G","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","30%","Counts low due to glare and algae cover."
+"2014-10-13_YB-Gq8",2014-10-13,2014-10-13,"YB","G","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2014-10-13_YB-Gq3",2014-10-13,2014-10-13,"YB","G","3","Pp","Pollicipes_polymerus","Type 11",5,0.0875,57.1428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur and algae coverage"
+"2014-10-13_YB-Gq5",2014-10-13,2014-10-13,"YB","G","5","Pp","Pollicipes_polymerus","Type 11",14,0.0875,160,NA,"Beatriz Vaca","Finished","Cropped","Full","30%","Counts low due to glare and algae cover."
+"2014-10-13_YB-Gq8",2014-10-13,2014-10-13,"YB","G","8","Pp","Pollicipes_polymerus","Type 11",10,0.0875,114.285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2014-10-13_YB-Gq3",2014-10-13,2014-10-13,"YB","G","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur and algae coverage"
+"2014-10-13_YB-Gq5",2014-10-13,2014-10-13,"YB","G","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","30%","Counts low due to glare and algae cover."
+"2014-10-13_YB-Gq8",2014-10-13,2014-10-13,"YB","G","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2014-10-13_YB-Gq3",2014-10-13,2014-10-13,"YB","G","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur and algae coverage"
+"2014-10-13_YB-Gq5",2014-10-13,2014-10-13,"YB","G","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","30%","Counts low due to glare and algae cover."
+"2014-10-13_YB-Gq8",2014-10-13,2014-10-13,"YB","G","8","Sc","Semibalanus_cariosus","Type 5",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2014-10-13_YB-Gq3",2014-10-13,2014-10-13,"YB","G","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur and algae coverage"
+"2014-10-13_YB-Gq5",2014-10-13,2014-10-13,"YB","G","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","30%","Counts low due to glare and algae cover."
+"2014-10-13_YB-Gq8",2014-10-13,2014-10-13,"YB","G","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2014-11-04_YB-Aq6",2014-11-04,2014-11-04,"YB","A","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","2%","Counts likely low due to slight blur"
+"2014-11-04_YB-Aq7",2014-11-04,2014-11-04,"YB","A","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-11-04_YB-Aq9",2014-11-04,2014-11-04,"YB","A","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2014-11-04_YB-Aq6",2014-11-04,2014-11-04,"YB","A","6","Ae","Anemones","Type 14",12,0.0875,137.142857142857,NA,"Celeste Moen","Finished","Full","Full","2%","Counts likely low due to slight blur"
+"2014-11-04_YB-Aq7",2014-11-04,2014-11-04,"YB","A","7","Ae","Anemones","Type 14",29,0.0875,331.428571428571,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-11-04_YB-Aq9",2014-11-04,2014-11-04,"YB","A","9","Ae","Anemones","Type 14",40,0.0875,457.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2014-11-04_YB-Aq6",2014-11-04,2014-11-04,"YB","A","6","Bg","Balanus_glandula","Type 1",634,0.0875,7245.71428571429,NA,"Celeste Moen","Finished","Full","Full","2%","Counts likely low due to slight blur"
+"2014-11-04_YB-Aq7",2014-11-04,2014-11-04,"YB","A","7","Bg","Balanus_glandula","Type 1",294,0.015625,18816,"c","Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-11-04_YB-Aq9",2014-11-04,2014-11-04,"YB","A","9","Bg","Balanus_glandula","Type 1",2754,0.0875,31474.2857142857,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2014-11-04_YB-Aq6",2014-11-04,2014-11-04,"YB","A","6","BgD","Balanus_glandula_(dead)","Type 2",135,0.0875,1542.85714285714,NA,"Celeste Moen","Finished","Full","Full","2%","Counts likely low due to slight blur"
+"2014-11-04_YB-Aq7",2014-11-04,2014-11-04,"YB","A","7","BgD","Balanus_glandula_(dead)","Type 2",5,0.015625,320,"c","Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-11-04_YB-Aq9",2014-11-04,2014-11-04,"YB","A","9","BgD","Balanus_glandula_(dead)","Type 2",36,0.0875,411.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2014-11-04_YB-Aq6",2014-11-04,2014-11-04,"YB","A","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","2%","Counts likely low due to slight blur"
+"2014-11-04_YB-Aq7",2014-11-04,2014-11-04,"YB","A","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-11-04_YB-Aq9",2014-11-04,2014-11-04,"YB","A","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2014-11-04_YB-Aq6",2014-11-04,2014-11-04,"YB","A","6","Cth","Chthamalus_dalli","Type 3",8,0.0875,91.4285714285714,NA,"Celeste Moen","Finished","Full","Full","2%","Counts likely low due to slight blur"
+"2014-11-04_YB-Aq7",2014-11-04,2014-11-04,"YB","A","7","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-11-04_YB-Aq9",2014-11-04,2014-11-04,"YB","A","9","Cth","Chthamalus_dalli","Type 3",81,0.0875,925.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2014-11-04_YB-Aq6",2014-11-04,2014-11-04,"YB","A","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","2%","Counts likely low due to slight blur"
+"2014-11-04_YB-Aq7",2014-11-04,2014-11-04,"YB","A","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-11-04_YB-Aq9",2014-11-04,2014-11-04,"YB","A","9","CthD","Chthamalus_dalli (dead)","Type 4",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2014-11-04_YB-Aq6",2014-11-04,2014-11-04,"YB","A","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","2%","Counts likely low due to slight blur"
+"2014-11-04_YB-Aq7",2014-11-04,2014-11-04,"YB","A","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-11-04_YB-Aq9",2014-11-04,2014-11-04,"YB","A","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2014-11-04_YB-Aq6",2014-11-04,2014-11-04,"YB","A","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","2%","Counts likely low due to slight blur"
+"2014-11-04_YB-Aq7",2014-11-04,2014-11-04,"YB","A","7","Lep","Leptasterias","Type 20",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-11-04_YB-Aq9",2014-11-04,2014-11-04,"YB","A","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2014-11-04_YB-Aq6",2014-11-04,2014-11-04,"YB","A","6","Lim","Limpets","Type 12",263,0.0875,3005.71428571429,NA,"Celeste Moen","Finished","Full","Full","2%","Counts likely low due to slight blur"
+"2014-11-04_YB-Aq7",2014-11-04,2014-11-04,"YB","A","7","Lim","Limpets","Type 12",267,0.0875,3051.42857142857,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-11-04_YB-Aq9",2014-11-04,2014-11-04,"YB","A","9","Lim","Limpets","Type 12",299,0.0875,3417.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2014-11-04_YB-Aq6",2014-11-04,2014-11-04,"YB","A","6","Ls","Littorina_sitkana","Type 13",19,0.0875,217.142857142857,NA,"Celeste Moen","Finished","Full","Full","2%","Counts likely low due to slight blur"
+"2014-11-04_YB-Aq7",2014-11-04,2014-11-04,"YB","A","7","Ls","Littorina_sitkana","Type 13",113,0.0875,1291.42857142857,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-11-04_YB-Aq9",2014-11-04,2014-11-04,"YB","A","9","Ls","Littorina_sitkana","Type 13",256,0.0875,2925.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2014-11-04_YB-Aq6",2014-11-04,2014-11-04,"YB","A","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","2%","Counts likely low due to slight blur"
+"2014-11-04_YB-Aq7",2014-11-04,2014-11-04,"YB","A","7","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-11-04_YB-Aq9",2014-11-04,2014-11-04,"YB","A","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2014-11-04_YB-Aq6",2014-11-04,2014-11-04,"YB","A","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","2%","Counts likely low due to slight blur"
+"2014-11-04_YB-Aq7",2014-11-04,2014-11-04,"YB","A","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-11-04_YB-Aq9",2014-11-04,2014-11-04,"YB","A","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2014-11-04_YB-Aq6",2014-11-04,2014-11-04,"YB","A","6","Myt","Mytilus_spp","Type 7",101,0.0875,1154.28571428571,NA,"Celeste Moen","Finished","Full","Full","2%","Counts likely low due to slight blur"
+"2014-11-04_YB-Aq7",2014-11-04,2014-11-04,"YB","A","7","Myt","Mytilus_spp","Type 7",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-11-04_YB-Aq9",2014-11-04,2014-11-04,"YB","A","9","Myt","Mytilus_spp","Type 7",218,0.0875,2491.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2014-11-04_YB-Aq6",2014-11-04,2014-11-04,"YB","A","6","MytD","Mytilus_spp_(dead)","Type 8",1,0.0875,11.4285714285714,NA,"Celeste Moen","Finished","Full","Full","2%","Counts likely low due to slight blur"
+"2014-11-04_YB-Aq7",2014-11-04,2014-11-04,"YB","A","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-11-04_YB-Aq9",2014-11-04,2014-11-04,"YB","A","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2014-11-04_YB-Aq6",2014-11-04,2014-11-04,"YB","A","6","Mt","Mytilus_trossulus","Type 15",235,0.0875,2685.71428571429,NA,"Celeste Moen","Finished","Full","Full","2%","Counts likely low due to slight blur"
+"2014-11-04_YB-Aq7",2014-11-04,2014-11-04,"YB","A","7","Mt","Mytilus_trossulus","Type 15",58,0.015625,3712,"c","Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-11-04_YB-Aq9",2014-11-04,2014-11-04,"YB","A","9","Mt","Mytilus_trossulus","Type 15",443,0.0875,5062.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2014-11-04_YB-Aq6",2014-11-04,2014-11-04,"YB","A","6","MtD","Mytilus_trossulus_(dead)","Type 16",2,0.0875,22.8571428571429,NA,"Celeste Moen","Finished","Full","Full","2%","Counts likely low due to slight blur"
+"2014-11-04_YB-Aq7",2014-11-04,2014-11-04,"YB","A","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-11-04_YB-Aq9",2014-11-04,2014-11-04,"YB","A","9","MtD","Mytilus_trossulus_(dead)","Type 16",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2014-11-04_YB-Aq6",2014-11-04,2014-11-04,"YB","A","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","2%","Counts likely low due to slight blur"
+"2014-11-04_YB-Aq7",2014-11-04,2014-11-04,"YB","A","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-11-04_YB-Aq9",2014-11-04,2014-11-04,"YB","A","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2014-11-04_YB-Aq6",2014-11-04,2014-11-04,"YB","A","6","Nc","Nucella_canaliculata","Type 10",25,0.0875,285.714285714286,NA,"Celeste Moen","Finished","Full","Full","2%","Counts likely low due to slight blur"
+"2014-11-04_YB-Aq7",2014-11-04,2014-11-04,"YB","A","7","Nc","Nucella_canaliculata","Type 10",9,0.0875,102.857142857143,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-11-04_YB-Aq9",2014-11-04,2014-11-04,"YB","A","9","Nc","Nucella_canaliculata","Type 10",17,0.0875,194.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2014-11-04_YB-Aq6",2014-11-04,2014-11-04,"YB","A","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","2%","Counts likely low due to slight blur"
+"2014-11-04_YB-Aq7",2014-11-04,2014-11-04,"YB","A","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-11-04_YB-Aq9",2014-11-04,2014-11-04,"YB","A","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2014-11-04_YB-Aq6",2014-11-04,2014-11-04,"YB","A","6","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Celeste Moen","Finished","Full","Full","2%","Counts likely low due to slight blur"
+"2014-11-04_YB-Aq7",2014-11-04,2014-11-04,"YB","A","7","No","Nucella_ostrina","Type 9",16,0.0875,182.857142857143,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-11-04_YB-Aq9",2014-11-04,2014-11-04,"YB","A","9","No","Nucella_ostrina","Type 9",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2014-11-04_YB-Aq6",2014-11-04,2014-11-04,"YB","A","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","2%","Counts likely low due to slight blur"
+"2014-11-04_YB-Aq7",2014-11-04,2014-11-04,"YB","A","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-11-04_YB-Aq9",2014-11-04,2014-11-04,"YB","A","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2014-11-04_YB-Aq6",2014-11-04,2014-11-04,"YB","A","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","2%","Counts likely low due to slight blur"
+"2014-11-04_YB-Aq7",2014-11-04,2014-11-04,"YB","A","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-11-04_YB-Aq9",2014-11-04,2014-11-04,"YB","A","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2014-11-04_YB-Aq6",2014-11-04,2014-11-04,"YB","A","6","Pp","Pollicipes_polymerus","Type 11",12,0.0875,137.142857142857,NA,"Celeste Moen","Finished","Full","Full","2%","Counts likely low due to slight blur"
+"2014-11-04_YB-Aq7",2014-11-04,2014-11-04,"YB","A","7","Pp","Pollicipes_polymerus","Type 11",19,0.0875,217.142857142857,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-11-04_YB-Aq9",2014-11-04,2014-11-04,"YB","A","9","Pp","Pollicipes_polymerus","Type 11",92,0.0875,1051.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2014-11-04_YB-Aq6",2014-11-04,2014-11-04,"YB","A","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","2%","Counts likely low due to slight blur"
+"2014-11-04_YB-Aq7",2014-11-04,2014-11-04,"YB","A","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-11-04_YB-Aq9",2014-11-04,2014-11-04,"YB","A","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2014-11-04_YB-Aq6",2014-11-04,2014-11-04,"YB","A","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","2%","Counts likely low due to slight blur"
+"2014-11-04_YB-Aq7",2014-11-04,2014-11-04,"YB","A","7","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-11-04_YB-Aq9",2014-11-04,2014-11-04,"YB","A","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2014-11-04_YB-Aq6",2014-11-04,2014-11-04,"YB","A","6","ScD","Semibalanus_cariosus_(dead)","Type 6",2,0.0875,22.8571428571429,NA,"Celeste Moen","Finished","Full","Full","2%","Counts likely low due to slight blur"
+"2014-11-04_YB-Aq7",2014-11-04,2014-11-04,"YB","A","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-11-04_YB-Aq9",2014-11-04,2014-11-04,"YB","A","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2014-11-04_YB-ABq1",2014-11-04,2014-11-04,"YB","AB","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2014-11-04_YB-ABq2",2014-11-04,2014-11-04,"YB","AB","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2014-11-04_YB-ABq4",2014-11-04,2014-11-04,"YB","AB","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-11-04_YB-ABq1",2014-11-04,2014-11-04,"YB","AB","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2014-11-04_YB-ABq2",2014-11-04,2014-11-04,"YB","AB","2","Ae","Anemones","Type 14",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2014-11-04_YB-ABq4",2014-11-04,2014-11-04,"YB","AB","4","Ae","Anemones","Type 14",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-11-04_YB-ABq1",2014-11-04,2014-11-04,"YB","AB","1","Bg","Balanus_glandula","Type 1",561,0.015625,35904,"c","Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2014-11-04_YB-ABq2",2014-11-04,2014-11-04,"YB","AB","2","Bg","Balanus_glandula","Type 1",301,0.0875,3440,NA,"Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2014-11-04_YB-ABq4",2014-11-04,2014-11-04,"YB","AB","4","Bg","Balanus_glandula","Type 1",1049,0.0875,11988.5714285714,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-11-04_YB-ABq1",2014-11-04,2014-11-04,"YB","AB","1","BgD","Balanus_glandula_(dead)","Type 2",3,0.015625,192,"c","Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2014-11-04_YB-ABq2",2014-11-04,2014-11-04,"YB","AB","2","BgD","Balanus_glandula_(dead)","Type 2",13,0.0875,148.571428571429,NA,"Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2014-11-04_YB-ABq4",2014-11-04,2014-11-04,"YB","AB","4","BgD","Balanus_glandula_(dead)","Type 2",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-11-04_YB-ABq1",2014-11-04,2014-11-04,"YB","AB","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2014-11-04_YB-ABq2",2014-11-04,2014-11-04,"YB","AB","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2014-11-04_YB-ABq4",2014-11-04,2014-11-04,"YB","AB","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-11-04_YB-ABq1",2014-11-04,2014-11-04,"YB","AB","1","Cth","Chthamalus_dalli","Type 3",2,0.015625,128,"c","Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2014-11-04_YB-ABq2",2014-11-04,2014-11-04,"YB","AB","2","Cth","Chthamalus_dalli","Type 3",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2014-11-04_YB-ABq4",2014-11-04,2014-11-04,"YB","AB","4","Cth","Chthamalus_dalli","Type 3",169,0.0875,1931.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-11-04_YB-ABq1",2014-11-04,2014-11-04,"YB","AB","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2014-11-04_YB-ABq2",2014-11-04,2014-11-04,"YB","AB","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2014-11-04_YB-ABq4",2014-11-04,2014-11-04,"YB","AB","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-11-04_YB-ABq1",2014-11-04,2014-11-04,"YB","AB","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2014-11-04_YB-ABq2",2014-11-04,2014-11-04,"YB","AB","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2014-11-04_YB-ABq4",2014-11-04,2014-11-04,"YB","AB","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-11-04_YB-ABq1",2014-11-04,2014-11-04,"YB","AB","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2014-11-04_YB-ABq2",2014-11-04,2014-11-04,"YB","AB","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2014-11-04_YB-ABq4",2014-11-04,2014-11-04,"YB","AB","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-11-04_YB-ABq1",2014-11-04,2014-11-04,"YB","AB","1","Lim","Limpets","Type 12",61,0.0875,697.142857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2014-11-04_YB-ABq2",2014-11-04,2014-11-04,"YB","AB","2","Lim","Limpets","Type 12",24,0.0875,274.285714285714,NA,"Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2014-11-04_YB-ABq4",2014-11-04,2014-11-04,"YB","AB","4","Lim","Limpets","Type 12",243,0.0875,2777.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-11-04_YB-ABq1",2014-11-04,2014-11-04,"YB","AB","1","Ls","Littorina_sitkana","Type 13",16,0.0875,182.857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2014-11-04_YB-ABq2",2014-11-04,2014-11-04,"YB","AB","2","Ls","Littorina_sitkana","Type 13",89,0.0875,1017.14285714286,NA,"Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2014-11-04_YB-ABq4",2014-11-04,2014-11-04,"YB","AB","4","Ls","Littorina_sitkana","Type 13",312,0.0875,3565.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-11-04_YB-ABq1",2014-11-04,2014-11-04,"YB","AB","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2014-11-04_YB-ABq2",2014-11-04,2014-11-04,"YB","AB","2","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2014-11-04_YB-ABq4",2014-11-04,2014-11-04,"YB","AB","4","Mc","Mytilus_californianus","Type 17",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-11-04_YB-ABq1",2014-11-04,2014-11-04,"YB","AB","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2014-11-04_YB-ABq2",2014-11-04,2014-11-04,"YB","AB","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2014-11-04_YB-ABq4",2014-11-04,2014-11-04,"YB","AB","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-11-04_YB-ABq1",2014-11-04,2014-11-04,"YB","AB","1","Myt","Mytilus_spp","Type 7",1300,0.0875,14857.1428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2014-11-04_YB-ABq2",2014-11-04,2014-11-04,"YB","AB","2","Myt","Mytilus_spp","Type 7",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2014-11-04_YB-ABq4",2014-11-04,2014-11-04,"YB","AB","4","Myt","Mytilus_spp","Type 7",339,0.0875,3874.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-11-04_YB-ABq1",2014-11-04,2014-11-04,"YB","AB","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2014-11-04_YB-ABq2",2014-11-04,2014-11-04,"YB","AB","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2014-11-04_YB-ABq4",2014-11-04,2014-11-04,"YB","AB","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-11-04_YB-ABq1",2014-11-04,2014-11-04,"YB","AB","1","Mt","Mytilus_trossulus","Type 15",14,0.0875,160,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2014-11-04_YB-ABq2",2014-11-04,2014-11-04,"YB","AB","2","Mt","Mytilus_trossulus","Type 15",310,0.015625,19840,"c","Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2014-11-04_YB-ABq4",2014-11-04,2014-11-04,"YB","AB","4","Mt","Mytilus_trossulus","Type 15",947,0.0875,10822.8571428571,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-11-04_YB-ABq1",2014-11-04,2014-11-04,"YB","AB","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2014-11-04_YB-ABq2",2014-11-04,2014-11-04,"YB","AB","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2014-11-04_YB-ABq4",2014-11-04,2014-11-04,"YB","AB","4","MtD","Mytilus_trossulus_(dead)","Type 16",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-11-04_YB-ABq1",2014-11-04,2014-11-04,"YB","AB","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2014-11-04_YB-ABq2",2014-11-04,2014-11-04,"YB","AB","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2014-11-04_YB-ABq4",2014-11-04,2014-11-04,"YB","AB","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-11-04_YB-ABq1",2014-11-04,2014-11-04,"YB","AB","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2014-11-04_YB-ABq2",2014-11-04,2014-11-04,"YB","AB","2","Nc","Nucella_canaliculata","Type 10",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2014-11-04_YB-ABq4",2014-11-04,2014-11-04,"YB","AB","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-11-04_YB-ABq1",2014-11-04,2014-11-04,"YB","AB","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2014-11-04_YB-ABq2",2014-11-04,2014-11-04,"YB","AB","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2014-11-04_YB-ABq4",2014-11-04,2014-11-04,"YB","AB","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-11-04_YB-ABq1",2014-11-04,2014-11-04,"YB","AB","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2014-11-04_YB-ABq2",2014-11-04,2014-11-04,"YB","AB","2","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2014-11-04_YB-ABq4",2014-11-04,2014-11-04,"YB","AB","4","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-11-04_YB-ABq1",2014-11-04,2014-11-04,"YB","AB","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2014-11-04_YB-ABq2",2014-11-04,2014-11-04,"YB","AB","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2014-11-04_YB-ABq4",2014-11-04,2014-11-04,"YB","AB","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-11-04_YB-ABq1",2014-11-04,2014-11-04,"YB","AB","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2014-11-04_YB-ABq2",2014-11-04,2014-11-04,"YB","AB","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2014-11-04_YB-ABq4",2014-11-04,2014-11-04,"YB","AB","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-11-04_YB-ABq1",2014-11-04,2014-11-04,"YB","AB","1","Pp","Pollicipes_polymerus","Type 11",327,0.0875,3737.14285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2014-11-04_YB-ABq2",2014-11-04,2014-11-04,"YB","AB","2","Pp","Pollicipes_polymerus","Type 11",61,0.0875,697.142857142857,NA,"Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2014-11-04_YB-ABq4",2014-11-04,2014-11-04,"YB","AB","4","Pp","Pollicipes_polymerus","Type 11",356,0.0875,4068.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-11-04_YB-ABq1",2014-11-04,2014-11-04,"YB","AB","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2014-11-04_YB-ABq2",2014-11-04,2014-11-04,"YB","AB","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2014-11-04_YB-ABq4",2014-11-04,2014-11-04,"YB","AB","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-11-04_YB-ABq1",2014-11-04,2014-11-04,"YB","AB","1","Sc","Semibalanus_cariosus","Type 5",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2014-11-04_YB-ABq2",2014-11-04,2014-11-04,"YB","AB","2","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2014-11-04_YB-ABq4",2014-11-04,2014-11-04,"YB","AB","4","Sc","Semibalanus_cariosus","Type 5",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-11-04_YB-ABq1",2014-11-04,2014-11-04,"YB","AB","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2014-11-04_YB-ABq2",2014-11-04,2014-11-04,"YB","AB","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2014-11-04_YB-ABq4",2014-11-04,2014-11-04,"YB","AB","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-11-04_YB-ACq4",2014-11-04,2014-11-04,"YB","AC","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts may be low due to glare and blur"
+"2014-11-04_YB-ACq7",2014-11-04,2014-11-04,"YB","AC","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Counts likely low due to glare, blur, and algae cover."
+"2014-11-04_YB-ACq8",2014-11-04,2014-11-04,"YB","AC","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Mussel, limpet, and littorine counts likely low due to glare."
+"2014-11-04_YB-ACq4",2014-11-04,2014-11-04,"YB","AC","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts may be low due to glare and blur"
+"2014-11-04_YB-ACq7",2014-11-04,2014-11-04,"YB","AC","7","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Counts likely low due to glare, blur, and algae cover."
+"2014-11-04_YB-ACq8",2014-11-04,2014-11-04,"YB","AC","8","Ae","Anemones","Type 14",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Mussel, limpet, and littorine counts likely low due to glare."
+"2014-11-04_YB-ACq4",2014-11-04,2014-11-04,"YB","AC","4","Bg","Balanus_glandula","Type 1",1465,0.015625,93760,"c","Beatriz Vaca","Finished","Full","Cropped","15%","Counts may be low due to glare and blur"
+"2014-11-04_YB-ACq7",2014-11-04,2014-11-04,"YB","AC","7","Bg","Balanus_glandula","Type 1",772,0.015625,49408,"c","Beatriz Vaca","Finished","Full","Cropped","45%","Counts likely low due to glare, blur, and algae cover."
+"2014-11-04_YB-ACq8",2014-11-04,2014-11-04,"YB","AC","8","Bg","Balanus_glandula","Type 1",743,0.015625,47552,"c","Beatriz Vaca","Finished","Full","Cropped","0%","Mussel, limpet, and littorine counts likely low due to glare."
+"2014-11-04_YB-ACq4",2014-11-04,2014-11-04,"YB","AC","4","BgD","Balanus_glandula_(dead)","Type 2",16,0.015625,1024,"c","Beatriz Vaca","Finished","Full","Cropped","15%","Counts may be low due to glare and blur"
+"2014-11-04_YB-ACq7",2014-11-04,2014-11-04,"YB","AC","7","BgD","Balanus_glandula_(dead)","Type 2",9,0.015625,576,"c","Beatriz Vaca","Finished","Full","Cropped","45%","Counts likely low due to glare, blur, and algae cover."
+"2014-11-04_YB-ACq8",2014-11-04,2014-11-04,"YB","AC","8","BgD","Balanus_glandula_(dead)","Type 2",4,0.015625,256,"c","Beatriz Vaca","Finished","Full","Cropped","0%","Mussel, limpet, and littorine counts likely low due to glare."
+"2014-11-04_YB-ACq4",2014-11-04,2014-11-04,"YB","AC","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts may be low due to glare and blur"
+"2014-11-04_YB-ACq7",2014-11-04,2014-11-04,"YB","AC","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Counts likely low due to glare, blur, and algae cover."
+"2014-11-04_YB-ACq8",2014-11-04,2014-11-04,"YB","AC","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Mussel, limpet, and littorine counts likely low due to glare."
+"2014-11-04_YB-ACq4",2014-11-04,2014-11-04,"YB","AC","4","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","15%","Counts may be low due to glare and blur"
+"2014-11-04_YB-ACq7",2014-11-04,2014-11-04,"YB","AC","7","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","45%","Counts likely low due to glare, blur, and algae cover."
+"2014-11-04_YB-ACq8",2014-11-04,2014-11-04,"YB","AC","8","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","0%","Mussel, limpet, and littorine counts likely low due to glare."
+"2014-11-04_YB-ACq4",2014-11-04,2014-11-04,"YB","AC","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","15%","Counts may be low due to glare and blur"
+"2014-11-04_YB-ACq7",2014-11-04,2014-11-04,"YB","AC","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","45%","Counts likely low due to glare, blur, and algae cover."
+"2014-11-04_YB-ACq8",2014-11-04,2014-11-04,"YB","AC","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","0%","Mussel, limpet, and littorine counts likely low due to glare."
+"2014-11-04_YB-ACq4",2014-11-04,2014-11-04,"YB","AC","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts may be low due to glare and blur"
+"2014-11-04_YB-ACq7",2014-11-04,2014-11-04,"YB","AC","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Counts likely low due to glare, blur, and algae cover."
+"2014-11-04_YB-ACq8",2014-11-04,2014-11-04,"YB","AC","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Mussel, limpet, and littorine counts likely low due to glare."
+"2014-11-04_YB-ACq4",2014-11-04,2014-11-04,"YB","AC","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts may be low due to glare and blur"
+"2014-11-04_YB-ACq7",2014-11-04,2014-11-04,"YB","AC","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Counts likely low due to glare, blur, and algae cover."
+"2014-11-04_YB-ACq8",2014-11-04,2014-11-04,"YB","AC","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Mussel, limpet, and littorine counts likely low due to glare."
+"2014-11-04_YB-ACq4",2014-11-04,2014-11-04,"YB","AC","4","Lim","Limpets","Type 12",10,0.0875,114.285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts may be low due to glare and blur"
+"2014-11-04_YB-ACq7",2014-11-04,2014-11-04,"YB","AC","7","Lim","Limpets","Type 12",11,0.0875,125.714285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Counts likely low due to glare, blur, and algae cover."
+"2014-11-04_YB-ACq8",2014-11-04,2014-11-04,"YB","AC","8","Lim","Limpets","Type 12",47,0.0875,537.142857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Mussel, limpet, and littorine counts likely low due to glare."
+"2014-11-04_YB-ACq4",2014-11-04,2014-11-04,"YB","AC","4","Ls","Littorina_sitkana","Type 13",345,0.0875,3942.85714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts may be low due to glare and blur"
+"2014-11-04_YB-ACq7",2014-11-04,2014-11-04,"YB","AC","7","Ls","Littorina_sitkana","Type 13",573,0.0875,6548.57142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Counts likely low due to glare, blur, and algae cover."
+"2014-11-04_YB-ACq8",2014-11-04,2014-11-04,"YB","AC","8","Ls","Littorina_sitkana","Type 13",576,0.0875,6582.85714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Mussel, limpet, and littorine counts likely low due to glare."
+"2014-11-04_YB-ACq4",2014-11-04,2014-11-04,"YB","AC","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts may be low due to glare and blur"
+"2014-11-04_YB-ACq7",2014-11-04,2014-11-04,"YB","AC","7","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Counts likely low due to glare, blur, and algae cover."
+"2014-11-04_YB-ACq8",2014-11-04,2014-11-04,"YB","AC","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Mussel, limpet, and littorine counts likely low due to glare."
+"2014-11-04_YB-ACq4",2014-11-04,2014-11-04,"YB","AC","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts may be low due to glare and blur"
+"2014-11-04_YB-ACq7",2014-11-04,2014-11-04,"YB","AC","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Counts likely low due to glare, blur, and algae cover."
+"2014-11-04_YB-ACq8",2014-11-04,2014-11-04,"YB","AC","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Mussel, limpet, and littorine counts likely low due to glare."
+"2014-11-04_YB-ACq4",2014-11-04,2014-11-04,"YB","AC","4","Myt","Mytilus_spp","Type 7",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts may be low due to glare and blur"
+"2014-11-04_YB-ACq7",2014-11-04,2014-11-04,"YB","AC","7","Myt","Mytilus_spp","Type 7",38,0.0875,434.285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Counts likely low due to glare, blur, and algae cover."
+"2014-11-04_YB-ACq8",2014-11-04,2014-11-04,"YB","AC","8","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Mussel, limpet, and littorine counts likely low due to glare."
+"2014-11-04_YB-ACq4",2014-11-04,2014-11-04,"YB","AC","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts may be low due to glare and blur"
+"2014-11-04_YB-ACq7",2014-11-04,2014-11-04,"YB","AC","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Counts likely low due to glare, blur, and algae cover."
+"2014-11-04_YB-ACq8",2014-11-04,2014-11-04,"YB","AC","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Mussel, limpet, and littorine counts likely low due to glare."
+"2014-11-04_YB-ACq4",2014-11-04,2014-11-04,"YB","AC","4","Mt","Mytilus_trossulus","Type 15",96,0.0875,1097.14285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts may be low due to glare and blur"
+"2014-11-04_YB-ACq7",2014-11-04,2014-11-04,"YB","AC","7","Mt","Mytilus_trossulus","Type 15",158,0.0875,1805.71428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Counts likely low due to glare, blur, and algae cover."
+"2014-11-04_YB-ACq8",2014-11-04,2014-11-04,"YB","AC","8","Mt","Mytilus_trossulus","Type 15",738,0.0875,8434.28571428572,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Mussel, limpet, and littorine counts likely low due to glare."
+"2014-11-04_YB-ACq4",2014-11-04,2014-11-04,"YB","AC","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts may be low due to glare and blur"
+"2014-11-04_YB-ACq7",2014-11-04,2014-11-04,"YB","AC","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Counts likely low due to glare, blur, and algae cover."
+"2014-11-04_YB-ACq8",2014-11-04,2014-11-04,"YB","AC","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Mussel, limpet, and littorine counts likely low due to glare."
+"2014-11-04_YB-ACq4",2014-11-04,2014-11-04,"YB","AC","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts may be low due to glare and blur"
+"2014-11-04_YB-ACq7",2014-11-04,2014-11-04,"YB","AC","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Counts likely low due to glare, blur, and algae cover."
+"2014-11-04_YB-ACq8",2014-11-04,2014-11-04,"YB","AC","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Mussel, limpet, and littorine counts likely low due to glare."
+"2014-11-04_YB-ACq4",2014-11-04,2014-11-04,"YB","AC","4","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts may be low due to glare and blur"
+"2014-11-04_YB-ACq7",2014-11-04,2014-11-04,"YB","AC","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Counts likely low due to glare, blur, and algae cover."
+"2014-11-04_YB-ACq8",2014-11-04,2014-11-04,"YB","AC","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Mussel, limpet, and littorine counts likely low due to glare."
+"2014-11-04_YB-ACq4",2014-11-04,2014-11-04,"YB","AC","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts may be low due to glare and blur"
+"2014-11-04_YB-ACq7",2014-11-04,2014-11-04,"YB","AC","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Counts likely low due to glare, blur, and algae cover."
+"2014-11-04_YB-ACq8",2014-11-04,2014-11-04,"YB","AC","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Mussel, limpet, and littorine counts likely low due to glare."
+"2014-11-04_YB-ACq4",2014-11-04,2014-11-04,"YB","AC","4","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts may be low due to glare and blur"
+"2014-11-04_YB-ACq7",2014-11-04,2014-11-04,"YB","AC","7","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Counts likely low due to glare, blur, and algae cover."
+"2014-11-04_YB-ACq8",2014-11-04,2014-11-04,"YB","AC","8","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Mussel, limpet, and littorine counts likely low due to glare."
+"2014-11-04_YB-ACq4",2014-11-04,2014-11-04,"YB","AC","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts may be low due to glare and blur"
+"2014-11-04_YB-ACq7",2014-11-04,2014-11-04,"YB","AC","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Counts likely low due to glare, blur, and algae cover."
+"2014-11-04_YB-ACq8",2014-11-04,2014-11-04,"YB","AC","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Mussel, limpet, and littorine counts likely low due to glare."
+"2014-11-04_YB-ACq4",2014-11-04,2014-11-04,"YB","AC","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts may be low due to glare and blur"
+"2014-11-04_YB-ACq7",2014-11-04,2014-11-04,"YB","AC","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Counts likely low due to glare, blur, and algae cover."
+"2014-11-04_YB-ACq8",2014-11-04,2014-11-04,"YB","AC","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Mussel, limpet, and littorine counts likely low due to glare."
+"2014-11-04_YB-ACq4",2014-11-04,2014-11-04,"YB","AC","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts may be low due to glare and blur"
+"2014-11-04_YB-ACq7",2014-11-04,2014-11-04,"YB","AC","7","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Counts likely low due to glare, blur, and algae cover."
+"2014-11-04_YB-ACq8",2014-11-04,2014-11-04,"YB","AC","8","Pp","Pollicipes_polymerus","Type 11",53,0.0875,605.714285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Mussel, limpet, and littorine counts likely low due to glare."
+"2014-11-04_YB-ACq4",2014-11-04,2014-11-04,"YB","AC","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts may be low due to glare and blur"
+"2014-11-04_YB-ACq7",2014-11-04,2014-11-04,"YB","AC","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Counts likely low due to glare, blur, and algae cover."
+"2014-11-04_YB-ACq8",2014-11-04,2014-11-04,"YB","AC","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Mussel, limpet, and littorine counts likely low due to glare."
+"2014-11-04_YB-ACq4",2014-11-04,2014-11-04,"YB","AC","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts may be low due to glare and blur"
+"2014-11-04_YB-ACq7",2014-11-04,2014-11-04,"YB","AC","7","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Counts likely low due to glare, blur, and algae cover."
+"2014-11-04_YB-ACq8",2014-11-04,2014-11-04,"YB","AC","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Mussel, limpet, and littorine counts likely low due to glare."
+"2014-11-04_YB-ACq4",2014-11-04,2014-11-04,"YB","AC","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts may be low due to glare and blur"
+"2014-11-04_YB-ACq7",2014-11-04,2014-11-04,"YB","AC","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","45%","Counts likely low due to glare, blur, and algae cover."
+"2014-11-04_YB-ACq8",2014-11-04,2014-11-04,"YB","AC","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%","Mussel, limpet, and littorine counts likely low due to glare."
+"2014-11-04_YB-ADq1",2014-11-04,2014-11-04,"YB","AD","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare and algae cover."
+"2014-11-04_YB-ADq5",2014-11-04,2014-11-04,"YB","AD","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to glare."
+"2014-11-04_YB-ADq8",2014-11-04,2014-11-04,"YB","AD","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-11-04_YB-ADq1",2014-11-04,2014-11-04,"YB","AD","1","Ae","Anemones","Type 14",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare and algae cover."
+"2014-11-04_YB-ADq5",2014-11-04,2014-11-04,"YB","AD","5","Ae","Anemones","Type 14",31,0.0875,354.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to glare."
+"2014-11-04_YB-ADq8",2014-11-04,2014-11-04,"YB","AD","8","Ae","Anemones","Type 14",35,0.0875,400,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-11-04_YB-ADq1",2014-11-04,2014-11-04,"YB","AD","1","Bg","Balanus_glandula","Type 1",257,0.0875,2937.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare and algae cover."
+"2014-11-04_YB-ADq5",2014-11-04,2014-11-04,"YB","AD","5","Bg","Balanus_glandula","Type 1",925,0.0875,10571.4285714286,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to glare."
+"2014-11-04_YB-ADq8",2014-11-04,2014-11-04,"YB","AD","8","Bg","Balanus_glandula","Type 1",1720,0.0875,19657.1428571429,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-11-04_YB-ADq1",2014-11-04,2014-11-04,"YB","AD","1","BgD","Balanus_glandula_(dead)","Type 2",19,0.0875,217.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare and algae cover."
+"2014-11-04_YB-ADq5",2014-11-04,2014-11-04,"YB","AD","5","BgD","Balanus_glandula_(dead)","Type 2",32,0.0875,365.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to glare."
+"2014-11-04_YB-ADq8",2014-11-04,2014-11-04,"YB","AD","8","BgD","Balanus_glandula_(dead)","Type 2",43,0.0875,491.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-11-04_YB-ADq1",2014-11-04,2014-11-04,"YB","AD","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare and algae cover."
+"2014-11-04_YB-ADq5",2014-11-04,2014-11-04,"YB","AD","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to glare."
+"2014-11-04_YB-ADq8",2014-11-04,2014-11-04,"YB","AD","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-11-04_YB-ADq1",2014-11-04,2014-11-04,"YB","AD","1","Cth","Chthamalus_dalli","Type 3",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare and algae cover."
+"2014-11-04_YB-ADq5",2014-11-04,2014-11-04,"YB","AD","5","Cth","Chthamalus_dalli","Type 3",9,0.0875,102.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to glare."
+"2014-11-04_YB-ADq8",2014-11-04,2014-11-04,"YB","AD","8","Cth","Chthamalus_dalli","Type 3",43,0.0875,491.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-11-04_YB-ADq1",2014-11-04,2014-11-04,"YB","AD","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare and algae cover."
+"2014-11-04_YB-ADq5",2014-11-04,2014-11-04,"YB","AD","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to glare."
+"2014-11-04_YB-ADq8",2014-11-04,2014-11-04,"YB","AD","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-11-04_YB-ADq1",2014-11-04,2014-11-04,"YB","AD","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare and algae cover."
+"2014-11-04_YB-ADq5",2014-11-04,2014-11-04,"YB","AD","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to glare."
+"2014-11-04_YB-ADq8",2014-11-04,2014-11-04,"YB","AD","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-11-04_YB-ADq1",2014-11-04,2014-11-04,"YB","AD","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare and algae cover."
+"2014-11-04_YB-ADq5",2014-11-04,2014-11-04,"YB","AD","5","Lep","Leptasterias","Type 20",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to glare."
+"2014-11-04_YB-ADq8",2014-11-04,2014-11-04,"YB","AD","8","Lep","Leptasterias","Type 20",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-11-04_YB-ADq1",2014-11-04,2014-11-04,"YB","AD","1","Lim","Limpets","Type 12",61,0.0875,697.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare and algae cover."
+"2014-11-04_YB-ADq5",2014-11-04,2014-11-04,"YB","AD","5","Lim","Limpets","Type 12",79,0.0875,902.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to glare."
+"2014-11-04_YB-ADq8",2014-11-04,2014-11-04,"YB","AD","8","Lim","Limpets","Type 12",311,0.0875,3554.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-11-04_YB-ADq1",2014-11-04,2014-11-04,"YB","AD","1","Ls","Littorina_sitkana","Type 13",143,0.0875,1634.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare and algae cover."
+"2014-11-04_YB-ADq5",2014-11-04,2014-11-04,"YB","AD","5","Ls","Littorina_sitkana","Type 13",54,0.0875,617.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to glare."
+"2014-11-04_YB-ADq8",2014-11-04,2014-11-04,"YB","AD","8","Ls","Littorina_sitkana","Type 13",68,0.0875,777.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-11-04_YB-ADq1",2014-11-04,2014-11-04,"YB","AD","1","Mc","Mytilus_californianus","Type 17",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare and algae cover."
+"2014-11-04_YB-ADq5",2014-11-04,2014-11-04,"YB","AD","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to glare."
+"2014-11-04_YB-ADq8",2014-11-04,2014-11-04,"YB","AD","8","Mc","Mytilus_californianus","Type 17",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-11-04_YB-ADq1",2014-11-04,2014-11-04,"YB","AD","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare and algae cover."
+"2014-11-04_YB-ADq5",2014-11-04,2014-11-04,"YB","AD","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to glare."
+"2014-11-04_YB-ADq8",2014-11-04,2014-11-04,"YB","AD","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-11-04_YB-ADq1",2014-11-04,2014-11-04,"YB","AD","1","Myt","Mytilus_spp","Type 7",11,0.0875,125.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare and algae cover."
+"2014-11-04_YB-ADq5",2014-11-04,2014-11-04,"YB","AD","5","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to glare."
+"2014-11-04_YB-ADq8",2014-11-04,2014-11-04,"YB","AD","8","Myt","Mytilus_spp","Type 7",1491,0.0875,17040,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-11-04_YB-ADq1",2014-11-04,2014-11-04,"YB","AD","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare and algae cover."
+"2014-11-04_YB-ADq5",2014-11-04,2014-11-04,"YB","AD","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to glare."
+"2014-11-04_YB-ADq8",2014-11-04,2014-11-04,"YB","AD","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-11-04_YB-ADq1",2014-11-04,2014-11-04,"YB","AD","1","Mt","Mytilus_trossulus","Type 15",388,0.0875,4434.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare and algae cover."
+"2014-11-04_YB-ADq5",2014-11-04,2014-11-04,"YB","AD","5","Mt","Mytilus_trossulus","Type 15",641,0.0875,7325.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to glare."
+"2014-11-04_YB-ADq8",2014-11-04,2014-11-04,"YB","AD","8","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-11-04_YB-ADq1",2014-11-04,2014-11-04,"YB","AD","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare and algae cover."
+"2014-11-04_YB-ADq5",2014-11-04,2014-11-04,"YB","AD","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to glare."
+"2014-11-04_YB-ADq8",2014-11-04,2014-11-04,"YB","AD","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-11-04_YB-ADq1",2014-11-04,2014-11-04,"YB","AD","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare and algae cover."
+"2014-11-04_YB-ADq5",2014-11-04,2014-11-04,"YB","AD","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to glare."
+"2014-11-04_YB-ADq8",2014-11-04,2014-11-04,"YB","AD","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-11-04_YB-ADq1",2014-11-04,2014-11-04,"YB","AD","1","Nc","Nucella_canaliculata","Type 10",9,0.0875,102.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare and algae cover."
+"2014-11-04_YB-ADq5",2014-11-04,2014-11-04,"YB","AD","5","Nc","Nucella_canaliculata","Type 10",11,0.0875,125.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to glare."
+"2014-11-04_YB-ADq8",2014-11-04,2014-11-04,"YB","AD","8","Nc","Nucella_canaliculata","Type 10",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-11-04_YB-ADq1",2014-11-04,2014-11-04,"YB","AD","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare and algae cover."
+"2014-11-04_YB-ADq5",2014-11-04,2014-11-04,"YB","AD","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to glare."
+"2014-11-04_YB-ADq8",2014-11-04,2014-11-04,"YB","AD","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-11-04_YB-ADq1",2014-11-04,2014-11-04,"YB","AD","1","No","Nucella_ostrina","Type 9",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare and algae cover."
+"2014-11-04_YB-ADq5",2014-11-04,2014-11-04,"YB","AD","5","No","Nucella_ostrina","Type 9",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to glare."
+"2014-11-04_YB-ADq8",2014-11-04,2014-11-04,"YB","AD","8","No","Nucella_ostrina","Type 9",22,0.0875,251.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-11-04_YB-ADq1",2014-11-04,2014-11-04,"YB","AD","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare and algae cover."
+"2014-11-04_YB-ADq5",2014-11-04,2014-11-04,"YB","AD","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to glare."
+"2014-11-04_YB-ADq8",2014-11-04,2014-11-04,"YB","AD","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-11-04_YB-ADq1",2014-11-04,2014-11-04,"YB","AD","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare and algae cover."
+"2014-11-04_YB-ADq5",2014-11-04,2014-11-04,"YB","AD","5","Pis","Pisaster","Type 21",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to glare."
+"2014-11-04_YB-ADq8",2014-11-04,2014-11-04,"YB","AD","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-11-04_YB-ADq1",2014-11-04,2014-11-04,"YB","AD","1","Pp","Pollicipes_polymerus","Type 11",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare and algae cover."
+"2014-11-04_YB-ADq5",2014-11-04,2014-11-04,"YB","AD","5","Pp","Pollicipes_polymerus","Type 11",12,0.0875,137.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to glare."
+"2014-11-04_YB-ADq8",2014-11-04,2014-11-04,"YB","AD","8","Pp","Pollicipes_polymerus","Type 11",15,0.0875,171.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-11-04_YB-ADq1",2014-11-04,2014-11-04,"YB","AD","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare and algae cover."
+"2014-11-04_YB-ADq5",2014-11-04,2014-11-04,"YB","AD","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to glare."
+"2014-11-04_YB-ADq8",2014-11-04,2014-11-04,"YB","AD","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-11-04_YB-ADq1",2014-11-04,2014-11-04,"YB","AD","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare and algae cover."
+"2014-11-04_YB-ADq5",2014-11-04,2014-11-04,"YB","AD","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to glare."
+"2014-11-04_YB-ADq8",2014-11-04,2014-11-04,"YB","AD","8","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-11-04_YB-ADq1",2014-11-04,2014-11-04,"YB","AD","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare and algae cover."
+"2014-11-04_YB-ADq5",2014-11-04,2014-11-04,"YB","AD","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to glare."
+"2014-11-04_YB-ADq8",2014-11-04,2014-11-04,"YB","AD","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2014-11-04_YB-AEq1",2014-11-04,2014-11-04,"YB","AE","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae cover."
+"2014-11-04_YB-AEq4",2014-11-04,2014-11-04,"YB","AE","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae and glare."
+"2014-11-04_YB-AEq8",2014-11-04,2014-11-04,"YB","AE","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-11-04_YB-AEq1",2014-11-04,2014-11-04,"YB","AE","1","Ae","Anemones","Type 14",10,0.0875,114.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae cover."
+"2014-11-04_YB-AEq4",2014-11-04,2014-11-04,"YB","AE","4","Ae","Anemones","Type 14",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae and glare."
+"2014-11-04_YB-AEq8",2014-11-04,2014-11-04,"YB","AE","8","Ae","Anemones","Type 14",7,0.0875,80,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-11-04_YB-AEq1",2014-11-04,2014-11-04,"YB","AE","1","Bg","Balanus_glandula","Type 1",681,0.0875,7782.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae cover."
+"2014-11-04_YB-AEq4",2014-11-04,2014-11-04,"YB","AE","4","Bg","Balanus_glandula","Type 1",1338,0.0875,15291.4285714286,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae and glare."
+"2014-11-04_YB-AEq8",2014-11-04,2014-11-04,"YB","AE","8","Bg","Balanus_glandula","Type 1",532,0.015625,34048,"c","Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-11-04_YB-AEq1",2014-11-04,2014-11-04,"YB","AE","1","BgD","Balanus_glandula_(dead)","Type 2",16,0.0875,182.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae cover."
+"2014-11-04_YB-AEq4",2014-11-04,2014-11-04,"YB","AE","4","BgD","Balanus_glandula_(dead)","Type 2",20,0.0875,228.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae and glare."
+"2014-11-04_YB-AEq8",2014-11-04,2014-11-04,"YB","AE","8","BgD","Balanus_glandula_(dead)","Type 2",14,0.015625,896,"c","Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-11-04_YB-AEq1",2014-11-04,2014-11-04,"YB","AE","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae cover."
+"2014-11-04_YB-AEq4",2014-11-04,2014-11-04,"YB","AE","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae and glare."
+"2014-11-04_YB-AEq8",2014-11-04,2014-11-04,"YB","AE","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-11-04_YB-AEq1",2014-11-04,2014-11-04,"YB","AE","1","Cth","Chthamalus_dalli","Type 3",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae cover."
+"2014-11-04_YB-AEq4",2014-11-04,2014-11-04,"YB","AE","4","Cth","Chthamalus_dalli","Type 3",87,0.0875,994.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae and glare."
+"2014-11-04_YB-AEq8",2014-11-04,2014-11-04,"YB","AE","8","Cth","Chthamalus_dalli","Type 3",19,0.015625,1216,"c","Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-11-04_YB-AEq1",2014-11-04,2014-11-04,"YB","AE","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae cover."
+"2014-11-04_YB-AEq4",2014-11-04,2014-11-04,"YB","AE","4","CthD","Chthamalus_dalli (dead)","Type 4",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae and glare."
+"2014-11-04_YB-AEq8",2014-11-04,2014-11-04,"YB","AE","8","CthD","Chthamalus_dalli (dead)","Type 4",1,0.015625,64,"c","Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-11-04_YB-AEq1",2014-11-04,2014-11-04,"YB","AE","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae cover."
+"2014-11-04_YB-AEq4",2014-11-04,2014-11-04,"YB","AE","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae and glare."
+"2014-11-04_YB-AEq8",2014-11-04,2014-11-04,"YB","AE","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-11-04_YB-AEq1",2014-11-04,2014-11-04,"YB","AE","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae cover."
+"2014-11-04_YB-AEq4",2014-11-04,2014-11-04,"YB","AE","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae and glare."
+"2014-11-04_YB-AEq8",2014-11-04,2014-11-04,"YB","AE","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-11-04_YB-AEq1",2014-11-04,2014-11-04,"YB","AE","1","Lim","Limpets","Type 12",27,0.0875,308.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae cover."
+"2014-11-04_YB-AEq4",2014-11-04,2014-11-04,"YB","AE","4","Lim","Limpets","Type 12",164,0.0875,1874.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae and glare."
+"2014-11-04_YB-AEq8",2014-11-04,2014-11-04,"YB","AE","8","Lim","Limpets","Type 12",261,0.0875,2982.85714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-11-04_YB-AEq1",2014-11-04,2014-11-04,"YB","AE","1","Ls","Littorina_sitkana","Type 13",418,0.0875,4777.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae cover."
+"2014-11-04_YB-AEq4",2014-11-04,2014-11-04,"YB","AE","4","Ls","Littorina_sitkana","Type 13",194,0.0875,2217.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae and glare."
+"2014-11-04_YB-AEq8",2014-11-04,2014-11-04,"YB","AE","8","Ls","Littorina_sitkana","Type 13",168,0.0875,1920,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-11-04_YB-AEq1",2014-11-04,2014-11-04,"YB","AE","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae cover."
+"2014-11-04_YB-AEq4",2014-11-04,2014-11-04,"YB","AE","4","Mc","Mytilus_californianus","Type 17",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae and glare."
+"2014-11-04_YB-AEq8",2014-11-04,2014-11-04,"YB","AE","8","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-11-04_YB-AEq1",2014-11-04,2014-11-04,"YB","AE","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae cover."
+"2014-11-04_YB-AEq4",2014-11-04,2014-11-04,"YB","AE","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae and glare."
+"2014-11-04_YB-AEq8",2014-11-04,2014-11-04,"YB","AE","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-11-04_YB-AEq1",2014-11-04,2014-11-04,"YB","AE","1","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae cover."
+"2014-11-04_YB-AEq4",2014-11-04,2014-11-04,"YB","AE","4","Myt","Mytilus_spp","Type 7",67,0.0875,765.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae and glare."
+"2014-11-04_YB-AEq8",2014-11-04,2014-11-04,"YB","AE","8","Myt","Mytilus_spp","Type 7",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-11-04_YB-AEq1",2014-11-04,2014-11-04,"YB","AE","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae cover."
+"2014-11-04_YB-AEq4",2014-11-04,2014-11-04,"YB","AE","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae and glare."
+"2014-11-04_YB-AEq8",2014-11-04,2014-11-04,"YB","AE","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-11-04_YB-AEq1",2014-11-04,2014-11-04,"YB","AE","1","Mt","Mytilus_trossulus","Type 15",377,0.0875,4308.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae cover."
+"2014-11-04_YB-AEq4",2014-11-04,2014-11-04,"YB","AE","4","Mt","Mytilus_trossulus","Type 15",225,0.0875,2571.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae and glare."
+"2014-11-04_YB-AEq8",2014-11-04,2014-11-04,"YB","AE","8","Mt","Mytilus_trossulus","Type 15",301,0.015625,19264,"c","Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-11-04_YB-AEq1",2014-11-04,2014-11-04,"YB","AE","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae cover."
+"2014-11-04_YB-AEq4",2014-11-04,2014-11-04,"YB","AE","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae and glare."
+"2014-11-04_YB-AEq8",2014-11-04,2014-11-04,"YB","AE","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-11-04_YB-AEq1",2014-11-04,2014-11-04,"YB","AE","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae cover."
+"2014-11-04_YB-AEq4",2014-11-04,2014-11-04,"YB","AE","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae and glare."
+"2014-11-04_YB-AEq8",2014-11-04,2014-11-04,"YB","AE","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-11-04_YB-AEq1",2014-11-04,2014-11-04,"YB","AE","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae cover."
+"2014-11-04_YB-AEq4",2014-11-04,2014-11-04,"YB","AE","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae and glare."
+"2014-11-04_YB-AEq8",2014-11-04,2014-11-04,"YB","AE","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-11-04_YB-AEq1",2014-11-04,2014-11-04,"YB","AE","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae cover."
+"2014-11-04_YB-AEq4",2014-11-04,2014-11-04,"YB","AE","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae and glare."
+"2014-11-04_YB-AEq8",2014-11-04,2014-11-04,"YB","AE","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-11-04_YB-AEq1",2014-11-04,2014-11-04,"YB","AE","1","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae cover."
+"2014-11-04_YB-AEq4",2014-11-04,2014-11-04,"YB","AE","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae and glare."
+"2014-11-04_YB-AEq8",2014-11-04,2014-11-04,"YB","AE","8","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-11-04_YB-AEq1",2014-11-04,2014-11-04,"YB","AE","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae cover."
+"2014-11-04_YB-AEq4",2014-11-04,2014-11-04,"YB","AE","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae and glare."
+"2014-11-04_YB-AEq8",2014-11-04,2014-11-04,"YB","AE","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-11-04_YB-AEq1",2014-11-04,2014-11-04,"YB","AE","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae cover."
+"2014-11-04_YB-AEq4",2014-11-04,2014-11-04,"YB","AE","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae and glare."
+"2014-11-04_YB-AEq8",2014-11-04,2014-11-04,"YB","AE","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-11-04_YB-AEq1",2014-11-04,2014-11-04,"YB","AE","1","Pp","Pollicipes_polymerus","Type 11",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae cover."
+"2014-11-04_YB-AEq4",2014-11-04,2014-11-04,"YB","AE","4","Pp","Pollicipes_polymerus","Type 11",9,0.0875,102.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae and glare."
+"2014-11-04_YB-AEq8",2014-11-04,2014-11-04,"YB","AE","8","Pp","Pollicipes_polymerus","Type 11",23,0.0875,262.857142857143,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-11-04_YB-AEq1",2014-11-04,2014-11-04,"YB","AE","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae cover."
+"2014-11-04_YB-AEq4",2014-11-04,2014-11-04,"YB","AE","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae and glare."
+"2014-11-04_YB-AEq8",2014-11-04,2014-11-04,"YB","AE","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-11-04_YB-AEq1",2014-11-04,2014-11-04,"YB","AE","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae cover."
+"2014-11-04_YB-AEq4",2014-11-04,2014-11-04,"YB","AE","4","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae and glare."
+"2014-11-04_YB-AEq8",2014-11-04,2014-11-04,"YB","AE","8","Sc","Semibalanus_cariosus","Type 5",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-11-04_YB-AEq1",2014-11-04,2014-11-04,"YB","AE","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae cover."
+"2014-11-04_YB-AEq4",2014-11-04,2014-11-04,"YB","AE","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae and glare."
+"2014-11-04_YB-AEq8",2014-11-04,2014-11-04,"YB","AE","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-11-04_YB-AFq5",2014-11-04,2014-11-04,"YB","AF","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","17%",""
+"2014-11-04_YB-AFq8",2014-11-04,2014-11-04,"YB","AF","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","1%",""
+"2014-11-04_YB-AFq9",2014-11-04,2014-11-04,"YB","AF","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Counts may be low due to glare"
+"2014-11-04_YB-AFq5",2014-11-04,2014-11-04,"YB","AF","5","Ae","Anemones","Type 14",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","17%",""
+"2014-11-04_YB-AFq8",2014-11-04,2014-11-04,"YB","AF","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","1%",""
+"2014-11-04_YB-AFq9",2014-11-04,2014-11-04,"YB","AF","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Counts may be low due to glare"
+"2014-11-04_YB-AFq5",2014-11-04,2014-11-04,"YB","AF","5","Bg","Balanus_glandula","Type 1",992,0.015625,63488,"c","Beatriz Vaca","Finished","Full","Cropped","17%",""
+"2014-11-04_YB-AFq8",2014-11-04,2014-11-04,"YB","AF","8","Bg","Balanus_glandula","Type 1",1108,0.015625,70912,"c","Celeste Moen","Finished","Full","Cropped","1%",""
+"2014-11-04_YB-AFq9",2014-11-04,2014-11-04,"YB","AF","9","Bg","Balanus_glandula","Type 1",923,0.015625,59072,"c","Stephanie Merhoff","Finished","Full","Cropped","0%","Counts may be low due to glare"
+"2014-11-04_YB-AFq5",2014-11-04,2014-11-04,"YB","AF","5","BgD","Balanus_glandula_(dead)","Type 2",17,0.015625,1088,"c","Beatriz Vaca","Finished","Full","Cropped","17%",""
+"2014-11-04_YB-AFq8",2014-11-04,2014-11-04,"YB","AF","8","BgD","Balanus_glandula_(dead)","Type 2",86,0.015625,5504,"c","Celeste Moen","Finished","Full","Cropped","1%",""
+"2014-11-04_YB-AFq9",2014-11-04,2014-11-04,"YB","AF","9","BgD","Balanus_glandula_(dead)","Type 2",1,0.015625,64,"c","Stephanie Merhoff","Finished","Full","Cropped","0%","Counts may be low due to glare"
+"2014-11-04_YB-AFq5",2014-11-04,2014-11-04,"YB","AF","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","17%",""
+"2014-11-04_YB-AFq8",2014-11-04,2014-11-04,"YB","AF","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","1%",""
+"2014-11-04_YB-AFq9",2014-11-04,2014-11-04,"YB","AF","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Counts may be low due to glare"
+"2014-11-04_YB-AFq5",2014-11-04,2014-11-04,"YB","AF","5","Cth","Chthamalus_dalli","Type 3",42,0.015625,2688,"c","Beatriz Vaca","Finished","Full","Cropped","17%",""
+"2014-11-04_YB-AFq8",2014-11-04,2014-11-04,"YB","AF","8","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Celeste Moen","Finished","Full","Cropped","1%",""
+"2014-11-04_YB-AFq9",2014-11-04,2014-11-04,"YB","AF","9","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","0%","Counts may be low due to glare"
+"2014-11-04_YB-AFq5",2014-11-04,2014-11-04,"YB","AF","5","CthD","Chthamalus_dalli (dead)","Type 4",1,0.015625,64,"c","Beatriz Vaca","Finished","Full","Cropped","17%",""
+"2014-11-04_YB-AFq8",2014-11-04,2014-11-04,"YB","AF","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Celeste Moen","Finished","Full","Cropped","1%",""
+"2014-11-04_YB-AFq9",2014-11-04,2014-11-04,"YB","AF","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","0%","Counts may be low due to glare"
+"2014-11-04_YB-AFq5",2014-11-04,2014-11-04,"YB","AF","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","17%",""
+"2014-11-04_YB-AFq8",2014-11-04,2014-11-04,"YB","AF","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","1%",""
+"2014-11-04_YB-AFq9",2014-11-04,2014-11-04,"YB","AF","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Counts may be low due to glare"
+"2014-11-04_YB-AFq5",2014-11-04,2014-11-04,"YB","AF","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","17%",""
+"2014-11-04_YB-AFq8",2014-11-04,2014-11-04,"YB","AF","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","1%",""
+"2014-11-04_YB-AFq9",2014-11-04,2014-11-04,"YB","AF","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Counts may be low due to glare"
+"2014-11-04_YB-AFq5",2014-11-04,2014-11-04,"YB","AF","5","Lim","Limpets","Type 12",232,0.0875,2651.42857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","17%",""
+"2014-11-04_YB-AFq8",2014-11-04,2014-11-04,"YB","AF","8","Lim","Limpets","Type 12",35,0.0875,400,NA,"Celeste Moen","Finished","Full","Cropped","1%",""
+"2014-11-04_YB-AFq9",2014-11-04,2014-11-04,"YB","AF","9","Lim","Limpets","Type 12",53,0.0875,605.714285714286,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Counts may be low due to glare"
+"2014-11-04_YB-AFq5",2014-11-04,2014-11-04,"YB","AF","5","Ls","Littorina_sitkana","Type 13",314,0.0875,3588.57142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","17%",""
+"2014-11-04_YB-AFq8",2014-11-04,2014-11-04,"YB","AF","8","Ls","Littorina_sitkana","Type 13",61,0.0875,697.142857142857,NA,"Celeste Moen","Finished","Full","Cropped","1%",""
+"2014-11-04_YB-AFq9",2014-11-04,2014-11-04,"YB","AF","9","Ls","Littorina_sitkana","Type 13",156,0.0875,1782.85714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Counts may be low due to glare"
+"2014-11-04_YB-AFq5",2014-11-04,2014-11-04,"YB","AF","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","17%",""
+"2014-11-04_YB-AFq8",2014-11-04,2014-11-04,"YB","AF","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","1%",""
+"2014-11-04_YB-AFq9",2014-11-04,2014-11-04,"YB","AF","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Counts may be low due to glare"
+"2014-11-04_YB-AFq5",2014-11-04,2014-11-04,"YB","AF","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","17%",""
+"2014-11-04_YB-AFq8",2014-11-04,2014-11-04,"YB","AF","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","1%",""
+"2014-11-04_YB-AFq9",2014-11-04,2014-11-04,"YB","AF","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Counts may be low due to glare"
+"2014-11-04_YB-AFq5",2014-11-04,2014-11-04,"YB","AF","5","Myt","Mytilus_spp","Type 7",131,0.0875,1497.14285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","17%",""
+"2014-11-04_YB-AFq8",2014-11-04,2014-11-04,"YB","AF","8","Myt","Mytilus_spp","Type 7",658,0.0875,7520,NA,"Celeste Moen","Finished","Full","Cropped","1%",""
+"2014-11-04_YB-AFq9",2014-11-04,2014-11-04,"YB","AF","9","Myt","Mytilus_spp","Type 7",1152,0.0875,13165.7142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Counts may be low due to glare"
+"2014-11-04_YB-AFq5",2014-11-04,2014-11-04,"YB","AF","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","17%",""
+"2014-11-04_YB-AFq8",2014-11-04,2014-11-04,"YB","AF","8","MytD","Mytilus_spp_(dead)","Type 8",1,0.0875,11.4285714285714,NA,"Celeste Moen","Finished","Full","Cropped","1%",""
+"2014-11-04_YB-AFq9",2014-11-04,2014-11-04,"YB","AF","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Counts may be low due to glare"
+"2014-11-04_YB-AFq5",2014-11-04,2014-11-04,"YB","AF","5","Mt","Mytilus_trossulus","Type 15",650,0.0875,7428.57142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","17%",""
+"2014-11-04_YB-AFq8",2014-11-04,2014-11-04,"YB","AF","8","Mt","Mytilus_trossulus","Type 15",68,0.0875,777.142857142857,NA,"Celeste Moen","Finished","Full","Cropped","1%",""
+"2014-11-04_YB-AFq9",2014-11-04,2014-11-04,"YB","AF","9","Mt","Mytilus_trossulus","Type 15",98,0.0875,1120,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Counts may be low due to glare"
+"2014-11-04_YB-AFq5",2014-11-04,2014-11-04,"YB","AF","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","17%",""
+"2014-11-04_YB-AFq8",2014-11-04,2014-11-04,"YB","AF","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","1%",""
+"2014-11-04_YB-AFq9",2014-11-04,2014-11-04,"YB","AF","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Counts may be low due to glare"
+"2014-11-04_YB-AFq5",2014-11-04,2014-11-04,"YB","AF","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","17%",""
+"2014-11-04_YB-AFq8",2014-11-04,2014-11-04,"YB","AF","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","1%",""
+"2014-11-04_YB-AFq9",2014-11-04,2014-11-04,"YB","AF","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Counts may be low due to glare"
+"2014-11-04_YB-AFq5",2014-11-04,2014-11-04,"YB","AF","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","17%",""
+"2014-11-04_YB-AFq8",2014-11-04,2014-11-04,"YB","AF","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","1%",""
+"2014-11-04_YB-AFq9",2014-11-04,2014-11-04,"YB","AF","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Counts may be low due to glare"
+"2014-11-04_YB-AFq5",2014-11-04,2014-11-04,"YB","AF","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","17%",""
+"2014-11-04_YB-AFq8",2014-11-04,2014-11-04,"YB","AF","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","1%",""
+"2014-11-04_YB-AFq9",2014-11-04,2014-11-04,"YB","AF","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Counts may be low due to glare"
+"2014-11-04_YB-AFq5",2014-11-04,2014-11-04,"YB","AF","5","No","Nucella_ostrina","Type 9",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","17%",""
+"2014-11-04_YB-AFq8",2014-11-04,2014-11-04,"YB","AF","8","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Celeste Moen","Finished","Full","Cropped","1%",""
+"2014-11-04_YB-AFq9",2014-11-04,2014-11-04,"YB","AF","9","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Counts may be low due to glare"
+"2014-11-04_YB-AFq5",2014-11-04,2014-11-04,"YB","AF","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","17%",""
+"2014-11-04_YB-AFq8",2014-11-04,2014-11-04,"YB","AF","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","1%",""
+"2014-11-04_YB-AFq9",2014-11-04,2014-11-04,"YB","AF","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Counts may be low due to glare"
+"2014-11-04_YB-AFq5",2014-11-04,2014-11-04,"YB","AF","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","17%",""
+"2014-11-04_YB-AFq8",2014-11-04,2014-11-04,"YB","AF","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","1%",""
+"2014-11-04_YB-AFq9",2014-11-04,2014-11-04,"YB","AF","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Counts may be low due to glare"
+"2014-11-04_YB-AFq5",2014-11-04,2014-11-04,"YB","AF","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","17%",""
+"2014-11-04_YB-AFq8",2014-11-04,2014-11-04,"YB","AF","8","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","1%",""
+"2014-11-04_YB-AFq9",2014-11-04,2014-11-04,"YB","AF","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Counts may be low due to glare"
+"2014-11-04_YB-AFq5",2014-11-04,2014-11-04,"YB","AF","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","17%",""
+"2014-11-04_YB-AFq8",2014-11-04,2014-11-04,"YB","AF","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","1%",""
+"2014-11-04_YB-AFq9",2014-11-04,2014-11-04,"YB","AF","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Counts may be low due to glare"
+"2014-11-04_YB-AFq5",2014-11-04,2014-11-04,"YB","AF","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","17%",""
+"2014-11-04_YB-AFq8",2014-11-04,2014-11-04,"YB","AF","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","1%",""
+"2014-11-04_YB-AFq9",2014-11-04,2014-11-04,"YB","AF","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Counts may be low due to glare"
+"2014-11-04_YB-AFq5",2014-11-04,2014-11-04,"YB","AF","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","17%",""
+"2014-11-04_YB-AFq8",2014-11-04,2014-11-04,"YB","AF","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","1%",""
+"2014-11-04_YB-AFq9",2014-11-04,2014-11-04,"YB","AF","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Counts may be low due to glare"
+"2014-11-04_YB-AGq2",2014-11-04,2014-11-04,"YB","AG","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Cropped","15%","Muscle counts may be low due to glare."
+"2014-11-04_YB-AGq7",2014-11-04,2014-11-04,"YB","AG","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patches"
+"2014-11-04_YB-AGq9",2014-11-04,2014-11-04,"YB","AG","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","80%",""
+"2014-11-04_YB-AGq2",2014-11-04,2014-11-04,"YB","AG","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Cropped","15%","Muscle counts may be low due to glare."
+"2014-11-04_YB-AGq7",2014-11-04,2014-11-04,"YB","AG","7","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patches"
+"2014-11-04_YB-AGq9",2014-11-04,2014-11-04,"YB","AG","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","80%",""
+"2014-11-04_YB-AGq2",2014-11-04,2014-11-04,"YB","AG","2","Bg","Balanus_glandula","Type 1",460,0.015625,29440,"c","Rebecca Friedrich","Finished","Full","Cropped","15%","Muscle counts may be low due to glare."
+"2014-11-04_YB-AGq7",2014-11-04,2014-11-04,"YB","AG","7","Bg","Balanus_glandula","Type 1",1148,0.0875,13120,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patches"
+"2014-11-04_YB-AGq9",2014-11-04,2014-11-04,"YB","AG","9","Bg","Balanus_glandula","Type 1",329,0.0875,3760,NA,"Stephanie Merhoff","Finished","Full","Full","80%",""
+"2014-11-04_YB-AGq2",2014-11-04,2014-11-04,"YB","AG","2","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Rebecca Friedrich","Finished","Full","Cropped","15%","Muscle counts may be low due to glare."
+"2014-11-04_YB-AGq7",2014-11-04,2014-11-04,"YB","AG","7","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patches"
+"2014-11-04_YB-AGq9",2014-11-04,2014-11-04,"YB","AG","9","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","80%",""
+"2014-11-04_YB-AGq2",2014-11-04,2014-11-04,"YB","AG","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Cropped","15%","Muscle counts may be low due to glare."
+"2014-11-04_YB-AGq7",2014-11-04,2014-11-04,"YB","AG","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patches"
+"2014-11-04_YB-AGq9",2014-11-04,2014-11-04,"YB","AG","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","80%",""
+"2014-11-04_YB-AGq2",2014-11-04,2014-11-04,"YB","AG","2","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Rebecca Friedrich","Finished","Full","Cropped","15%","Muscle counts may be low due to glare."
+"2014-11-04_YB-AGq7",2014-11-04,2014-11-04,"YB","AG","7","Cth","Chthamalus_dalli","Type 3",11,0.0875,125.714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patches"
+"2014-11-04_YB-AGq9",2014-11-04,2014-11-04,"YB","AG","9","Cth","Chthamalus_dalli","Type 3",33,0.0875,377.142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","80%",""
+"2014-11-04_YB-AGq2",2014-11-04,2014-11-04,"YB","AG","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Rebecca Friedrich","Finished","Full","Cropped","15%","Muscle counts may be low due to glare."
+"2014-11-04_YB-AGq7",2014-11-04,2014-11-04,"YB","AG","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patches"
+"2014-11-04_YB-AGq9",2014-11-04,2014-11-04,"YB","AG","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","80%",""
+"2014-11-04_YB-AGq2",2014-11-04,2014-11-04,"YB","AG","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Cropped","15%","Muscle counts may be low due to glare."
+"2014-11-04_YB-AGq7",2014-11-04,2014-11-04,"YB","AG","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patches"
+"2014-11-04_YB-AGq9",2014-11-04,2014-11-04,"YB","AG","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","80%",""
+"2014-11-04_YB-AGq2",2014-11-04,2014-11-04,"YB","AG","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Cropped","15%","Muscle counts may be low due to glare."
+"2014-11-04_YB-AGq7",2014-11-04,2014-11-04,"YB","AG","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patches"
+"2014-11-04_YB-AGq9",2014-11-04,2014-11-04,"YB","AG","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","80%",""
+"2014-11-04_YB-AGq2",2014-11-04,2014-11-04,"YB","AG","2","Lim","Limpets","Type 12",255,0.0875,2914.28571428571,NA,"Rebecca Friedrich","Finished","Full","Cropped","15%","Muscle counts may be low due to glare."
+"2014-11-04_YB-AGq7",2014-11-04,2014-11-04,"YB","AG","7","Lim","Limpets","Type 12",57,0.0875,651.428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patches"
+"2014-11-04_YB-AGq9",2014-11-04,2014-11-04,"YB","AG","9","Lim","Limpets","Type 12",50,0.0875,571.428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","80%",""
+"2014-11-04_YB-AGq2",2014-11-04,2014-11-04,"YB","AG","2","Ls","Littorina_sitkana","Type 13",71,0.0875,811.428571428571,NA,"Rebecca Friedrich","Finished","Full","Cropped","15%","Muscle counts may be low due to glare."
+"2014-11-04_YB-AGq7",2014-11-04,2014-11-04,"YB","AG","7","Ls","Littorina_sitkana","Type 13",64,0.0875,731.428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patches"
+"2014-11-04_YB-AGq9",2014-11-04,2014-11-04,"YB","AG","9","Ls","Littorina_sitkana","Type 13",22,0.0875,251.428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","80%",""
+"2014-11-04_YB-AGq2",2014-11-04,2014-11-04,"YB","AG","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Cropped","15%","Muscle counts may be low due to glare."
+"2014-11-04_YB-AGq7",2014-11-04,2014-11-04,"YB","AG","7","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patches"
+"2014-11-04_YB-AGq9",2014-11-04,2014-11-04,"YB","AG","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","80%",""
+"2014-11-04_YB-AGq2",2014-11-04,2014-11-04,"YB","AG","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Cropped","15%","Muscle counts may be low due to glare."
+"2014-11-04_YB-AGq7",2014-11-04,2014-11-04,"YB","AG","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patches"
+"2014-11-04_YB-AGq9",2014-11-04,2014-11-04,"YB","AG","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","80%",""
+"2014-11-04_YB-AGq2",2014-11-04,2014-11-04,"YB","AG","2","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Cropped","15%","Muscle counts may be low due to glare."
+"2014-11-04_YB-AGq7",2014-11-04,2014-11-04,"YB","AG","7","Myt","Mytilus_spp","Type 7",674,0.0875,7702.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patches"
+"2014-11-04_YB-AGq9",2014-11-04,2014-11-04,"YB","AG","9","Myt","Mytilus_spp","Type 7",602,0.0875,6880,NA,"Stephanie Merhoff","Finished","Full","Full","80%",""
+"2014-11-04_YB-AGq2",2014-11-04,2014-11-04,"YB","AG","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Cropped","15%","Muscle counts may be low due to glare."
+"2014-11-04_YB-AGq7",2014-11-04,2014-11-04,"YB","AG","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patches"
+"2014-11-04_YB-AGq9",2014-11-04,2014-11-04,"YB","AG","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","80%",""
+"2014-11-04_YB-AGq2",2014-11-04,2014-11-04,"YB","AG","2","Mt","Mytilus_trossulus","Type 15",306,0.0875,3497.14285714286,NA,"Rebecca Friedrich","Finished","Full","Cropped","15%","Muscle counts may be low due to glare."
+"2014-11-04_YB-AGq7",2014-11-04,2014-11-04,"YB","AG","7","Mt","Mytilus_trossulus","Type 15",93,0.0875,1062.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patches"
+"2014-11-04_YB-AGq9",2014-11-04,2014-11-04,"YB","AG","9","Mt","Mytilus_trossulus","Type 15",34,0.0875,388.571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","80%",""
+"2014-11-04_YB-AGq2",2014-11-04,2014-11-04,"YB","AG","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Cropped","15%","Muscle counts may be low due to glare."
+"2014-11-04_YB-AGq7",2014-11-04,2014-11-04,"YB","AG","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patches"
+"2014-11-04_YB-AGq9",2014-11-04,2014-11-04,"YB","AG","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","80%",""
+"2014-11-04_YB-AGq2",2014-11-04,2014-11-04,"YB","AG","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Cropped","15%","Muscle counts may be low due to glare."
+"2014-11-04_YB-AGq7",2014-11-04,2014-11-04,"YB","AG","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patches"
+"2014-11-04_YB-AGq9",2014-11-04,2014-11-04,"YB","AG","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","80%",""
+"2014-11-04_YB-AGq2",2014-11-04,2014-11-04,"YB","AG","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Cropped","15%","Muscle counts may be low due to glare."
+"2014-11-04_YB-AGq7",2014-11-04,2014-11-04,"YB","AG","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patches"
+"2014-11-04_YB-AGq9",2014-11-04,2014-11-04,"YB","AG","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","80%",""
+"2014-11-04_YB-AGq2",2014-11-04,2014-11-04,"YB","AG","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Cropped","15%","Muscle counts may be low due to glare."
+"2014-11-04_YB-AGq7",2014-11-04,2014-11-04,"YB","AG","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patches"
+"2014-11-04_YB-AGq9",2014-11-04,2014-11-04,"YB","AG","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","80%",""
+"2014-11-04_YB-AGq2",2014-11-04,2014-11-04,"YB","AG","2","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Cropped","15%","Muscle counts may be low due to glare."
+"2014-11-04_YB-AGq7",2014-11-04,2014-11-04,"YB","AG","7","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patches"
+"2014-11-04_YB-AGq9",2014-11-04,2014-11-04,"YB","AG","9","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","80%",""
+"2014-11-04_YB-AGq2",2014-11-04,2014-11-04,"YB","AG","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Cropped","15%","Muscle counts may be low due to glare."
+"2014-11-04_YB-AGq7",2014-11-04,2014-11-04,"YB","AG","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patches"
+"2014-11-04_YB-AGq9",2014-11-04,2014-11-04,"YB","AG","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","80%",""
+"2014-11-04_YB-AGq2",2014-11-04,2014-11-04,"YB","AG","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Cropped","15%","Muscle counts may be low due to glare."
+"2014-11-04_YB-AGq7",2014-11-04,2014-11-04,"YB","AG","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patches"
+"2014-11-04_YB-AGq9",2014-11-04,2014-11-04,"YB","AG","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","80%",""
+"2014-11-04_YB-AGq2",2014-11-04,2014-11-04,"YB","AG","2","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Cropped","15%","Muscle counts may be low due to glare."
+"2014-11-04_YB-AGq7",2014-11-04,2014-11-04,"YB","AG","7","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patches"
+"2014-11-04_YB-AGq9",2014-11-04,2014-11-04,"YB","AG","9","Pp","Pollicipes_polymerus","Type 11",18,0.0875,205.714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","80%",""
+"2014-11-04_YB-AGq2",2014-11-04,2014-11-04,"YB","AG","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Cropped","15%","Muscle counts may be low due to glare."
+"2014-11-04_YB-AGq7",2014-11-04,2014-11-04,"YB","AG","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patches"
+"2014-11-04_YB-AGq9",2014-11-04,2014-11-04,"YB","AG","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","80%",""
+"2014-11-04_YB-AGq2",2014-11-04,2014-11-04,"YB","AG","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Cropped","15%","Muscle counts may be low due to glare."
+"2014-11-04_YB-AGq7",2014-11-04,2014-11-04,"YB","AG","7","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patches"
+"2014-11-04_YB-AGq9",2014-11-04,2014-11-04,"YB","AG","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","80%",""
+"2014-11-04_YB-AGq2",2014-11-04,2014-11-04,"YB","AG","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Cropped","15%","Muscle counts may be low due to glare."
+"2014-11-04_YB-AGq7",2014-11-04,2014-11-04,"YB","AG","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to water patches"
+"2014-11-04_YB-AGq9",2014-11-04,2014-11-04,"YB","AG","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","80%",""
+"2014-11-04_YB-Bq1",2014-11-04,2014-11-04,"YB","B","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","2%","Counts likely low due to glare."
+"2014-11-04_YB-Bq5",2014-11-04,2014-11-04,"YB","B","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%","Counts likely low due to glare."
+"2014-11-04_YB-Bq6",2014-11-04,2014-11-04,"YB","B","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-11-04_YB-Bq1",2014-11-04,2014-11-04,"YB","B","1","Ae","Anemones","Type 14",17,0.0875,194.285714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","2%","Counts likely low due to glare."
+"2014-11-04_YB-Bq5",2014-11-04,2014-11-04,"YB","B","5","Ae","Anemones","Type 14",24,0.0875,274.285714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%","Counts likely low due to glare."
+"2014-11-04_YB-Bq6",2014-11-04,2014-11-04,"YB","B","6","Ae","Anemones","Type 14",38,0.0875,434.285714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-11-04_YB-Bq1",2014-11-04,2014-11-04,"YB","B","1","Bg","Balanus_glandula","Type 1",232,0.015625,14848,"c","Beatriz Vaca","Finished","Cropped","Cropped","2%","Counts likely low due to glare."
+"2014-11-04_YB-Bq5",2014-11-04,2014-11-04,"YB","B","5","Bg","Balanus_glandula","Type 1",89,0.015625,5696,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%","Counts likely low due to glare."
+"2014-11-04_YB-Bq6",2014-11-04,2014-11-04,"YB","B","6","Bg","Balanus_glandula","Type 1",138,0.015625,8832,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-11-04_YB-Bq1",2014-11-04,2014-11-04,"YB","B","1","BgD","Balanus_glandula_(dead)","Type 2",5,0.015625,320,"c","Beatriz Vaca","Finished","Cropped","Cropped","2%","Counts likely low due to glare."
+"2014-11-04_YB-Bq5",2014-11-04,2014-11-04,"YB","B","5","BgD","Balanus_glandula_(dead)","Type 2",11,0.015625,704,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%","Counts likely low due to glare."
+"2014-11-04_YB-Bq6",2014-11-04,2014-11-04,"YB","B","6","BgD","Balanus_glandula_(dead)","Type 2",12,0.015625,768,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-11-04_YB-Bq1",2014-11-04,2014-11-04,"YB","B","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","2%","Counts likely low due to glare."
+"2014-11-04_YB-Bq5",2014-11-04,2014-11-04,"YB","B","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%","Counts likely low due to glare."
+"2014-11-04_YB-Bq6",2014-11-04,2014-11-04,"YB","B","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-11-04_YB-Bq1",2014-11-04,2014-11-04,"YB","B","1","Cth","Chthamalus_dalli","Type 3",7,0.015625,448,"c","Beatriz Vaca","Finished","Cropped","Cropped","2%","Counts likely low due to glare."
+"2014-11-04_YB-Bq5",2014-11-04,2014-11-04,"YB","B","5","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%","Counts likely low due to glare."
+"2014-11-04_YB-Bq6",2014-11-04,2014-11-04,"YB","B","6","Cth","Chthamalus_dalli","Type 3",12,0.015625,768,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-11-04_YB-Bq1",2014-11-04,2014-11-04,"YB","B","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","2%","Counts likely low due to glare."
+"2014-11-04_YB-Bq5",2014-11-04,2014-11-04,"YB","B","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%","Counts likely low due to glare."
+"2014-11-04_YB-Bq6",2014-11-04,2014-11-04,"YB","B","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-11-04_YB-Bq1",2014-11-04,2014-11-04,"YB","B","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","2%","Counts likely low due to glare."
+"2014-11-04_YB-Bq5",2014-11-04,2014-11-04,"YB","B","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%","Counts likely low due to glare."
+"2014-11-04_YB-Bq6",2014-11-04,2014-11-04,"YB","B","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-11-04_YB-Bq1",2014-11-04,2014-11-04,"YB","B","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","2%","Counts likely low due to glare."
+"2014-11-04_YB-Bq5",2014-11-04,2014-11-04,"YB","B","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%","Counts likely low due to glare."
+"2014-11-04_YB-Bq6",2014-11-04,2014-11-04,"YB","B","6","Lep","Leptasterias","Type 20",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-11-04_YB-Bq1",2014-11-04,2014-11-04,"YB","B","1","Lim","Limpets","Type 12",310,0.0875,3542.85714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","2%","Counts likely low due to glare."
+"2014-11-04_YB-Bq5",2014-11-04,2014-11-04,"YB","B","5","Lim","Limpets","Type 12",303,0.0875,3462.85714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%","Counts likely low due to glare."
+"2014-11-04_YB-Bq6",2014-11-04,2014-11-04,"YB","B","6","Lim","Limpets","Type 12",313,0.0875,3577.14285714286,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-11-04_YB-Bq1",2014-11-04,2014-11-04,"YB","B","1","Ls","Littorina_sitkana","Type 13",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Cropped","Cropped","2%","Counts likely low due to glare."
+"2014-11-04_YB-Bq5",2014-11-04,2014-11-04,"YB","B","5","Ls","Littorina_sitkana","Type 13",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%","Counts likely low due to glare."
+"2014-11-04_YB-Bq6",2014-11-04,2014-11-04,"YB","B","6","Ls","Littorina_sitkana","Type 13",17,0.0875,194.285714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-11-04_YB-Bq1",2014-11-04,2014-11-04,"YB","B","1","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","2%","Counts likely low due to glare."
+"2014-11-04_YB-Bq5",2014-11-04,2014-11-04,"YB","B","5","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%","Counts likely low due to glare."
+"2014-11-04_YB-Bq6",2014-11-04,2014-11-04,"YB","B","6","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-11-04_YB-Bq1",2014-11-04,2014-11-04,"YB","B","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","2%","Counts likely low due to glare."
+"2014-11-04_YB-Bq5",2014-11-04,2014-11-04,"YB","B","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%","Counts likely low due to glare."
+"2014-11-04_YB-Bq6",2014-11-04,2014-11-04,"YB","B","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-11-04_YB-Bq1",2014-11-04,2014-11-04,"YB","B","1","Myt","Mytilus_spp","Type 7",90,0.015625,5760,"c","Beatriz Vaca","Finished","Cropped","Cropped","2%","Counts likely low due to glare."
+"2014-11-04_YB-Bq5",2014-11-04,2014-11-04,"YB","B","5","Myt","Mytilus_spp","Type 7",79,0.015625,5056,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%","Counts likely low due to glare."
+"2014-11-04_YB-Bq6",2014-11-04,2014-11-04,"YB","B","6","Myt","Mytilus_spp","Type 7",157,0.015625,10048,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-11-04_YB-Bq1",2014-11-04,2014-11-04,"YB","B","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","2%","Counts likely low due to glare."
+"2014-11-04_YB-Bq5",2014-11-04,2014-11-04,"YB","B","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%","Counts likely low due to glare."
+"2014-11-04_YB-Bq6",2014-11-04,2014-11-04,"YB","B","6","MytD","Mytilus_spp_(dead)","Type 8",1,0.015625,64,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-11-04_YB-Bq1",2014-11-04,2014-11-04,"YB","B","1","Mt","Mytilus_trossulus","Type 15",8,0.015625,512,"c","Beatriz Vaca","Finished","Cropped","Cropped","2%","Counts likely low due to glare."
+"2014-11-04_YB-Bq5",2014-11-04,2014-11-04,"YB","B","5","Mt","Mytilus_trossulus","Type 15",2,0.015625,128,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%","Counts likely low due to glare."
+"2014-11-04_YB-Bq6",2014-11-04,2014-11-04,"YB","B","6","Mt","Mytilus_trossulus","Type 15",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-11-04_YB-Bq1",2014-11-04,2014-11-04,"YB","B","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","2%","Counts likely low due to glare."
+"2014-11-04_YB-Bq5",2014-11-04,2014-11-04,"YB","B","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%","Counts likely low due to glare."
+"2014-11-04_YB-Bq6",2014-11-04,2014-11-04,"YB","B","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-11-04_YB-Bq1",2014-11-04,2014-11-04,"YB","B","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","2%","Counts likely low due to glare."
+"2014-11-04_YB-Bq5",2014-11-04,2014-11-04,"YB","B","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%","Counts likely low due to glare."
+"2014-11-04_YB-Bq6",2014-11-04,2014-11-04,"YB","B","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-11-04_YB-Bq1",2014-11-04,2014-11-04,"YB","B","1","Nc","Nucella_canaliculata","Type 10",13,0.0875,148.571428571429,NA,"Beatriz Vaca","Finished","Cropped","Cropped","2%","Counts likely low due to glare."
+"2014-11-04_YB-Bq5",2014-11-04,2014-11-04,"YB","B","5","Nc","Nucella_canaliculata","Type 10",10,0.0875,114.285714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%","Counts likely low due to glare."
+"2014-11-04_YB-Bq6",2014-11-04,2014-11-04,"YB","B","6","Nc","Nucella_canaliculata","Type 10",29,0.0875,331.428571428571,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-11-04_YB-Bq1",2014-11-04,2014-11-04,"YB","B","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","2%","Counts likely low due to glare."
+"2014-11-04_YB-Bq5",2014-11-04,2014-11-04,"YB","B","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%","Counts likely low due to glare."
+"2014-11-04_YB-Bq6",2014-11-04,2014-11-04,"YB","B","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-11-04_YB-Bq1",2014-11-04,2014-11-04,"YB","B","1","No","Nucella_ostrina","Type 9",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Cropped","Cropped","2%","Counts likely low due to glare."
+"2014-11-04_YB-Bq5",2014-11-04,2014-11-04,"YB","B","5","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%","Counts likely low due to glare."
+"2014-11-04_YB-Bq6",2014-11-04,2014-11-04,"YB","B","6","No","Nucella_ostrina","Type 9",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-11-04_YB-Bq1",2014-11-04,2014-11-04,"YB","B","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","2%","Counts likely low due to glare."
+"2014-11-04_YB-Bq5",2014-11-04,2014-11-04,"YB","B","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%","Counts likely low due to glare."
+"2014-11-04_YB-Bq6",2014-11-04,2014-11-04,"YB","B","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-11-04_YB-Bq1",2014-11-04,2014-11-04,"YB","B","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","2%","Counts likely low due to glare."
+"2014-11-04_YB-Bq5",2014-11-04,2014-11-04,"YB","B","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%","Counts likely low due to glare."
+"2014-11-04_YB-Bq6",2014-11-04,2014-11-04,"YB","B","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-11-04_YB-Bq1",2014-11-04,2014-11-04,"YB","B","1","Pp","Pollicipes_polymerus","Type 11",46,0.0875,525.714285714286,NA,"Beatriz Vaca","Finished","Cropped","Cropped","2%","Counts likely low due to glare."
+"2014-11-04_YB-Bq5",2014-11-04,2014-11-04,"YB","B","5","Pp","Pollicipes_polymerus","Type 11",18,0.0875,205.714285714286,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%","Counts likely low due to glare."
+"2014-11-04_YB-Bq6",2014-11-04,2014-11-04,"YB","B","6","Pp","Pollicipes_polymerus","Type 11",60,0.0875,685.714285714286,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-11-04_YB-Bq1",2014-11-04,2014-11-04,"YB","B","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","2%","Counts likely low due to glare."
+"2014-11-04_YB-Bq5",2014-11-04,2014-11-04,"YB","B","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%","Counts likely low due to glare."
+"2014-11-04_YB-Bq6",2014-11-04,2014-11-04,"YB","B","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-11-04_YB-Bq1",2014-11-04,2014-11-04,"YB","B","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","2%","Counts likely low due to glare."
+"2014-11-04_YB-Bq5",2014-11-04,2014-11-04,"YB","B","5","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%","Counts likely low due to glare."
+"2014-11-04_YB-Bq6",2014-11-04,2014-11-04,"YB","B","6","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-11-04_YB-Bq1",2014-11-04,2014-11-04,"YB","B","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","2%","Counts likely low due to glare."
+"2014-11-04_YB-Bq5",2014-11-04,2014-11-04,"YB","B","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%","Counts likely low due to glare."
+"2014-11-04_YB-Bq6",2014-11-04,2014-11-04,"YB","B","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","1%",""
+"2014-11-04_YB-BBq1",2014-11-04,2014-11-04,"YB","BB","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to water patches and algae"
+"2014-11-04_YB-BBq2",2014-11-04,2014-11-04,"YB","BB","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to water patches and algae"
+"2014-11-04_YB-BBq9",2014-11-04,2014-11-04,"YB","BB","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur and glare"
+"2014-11-04_YB-BBq1",2014-11-04,2014-11-04,"YB","BB","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to water patches and algae"
+"2014-11-04_YB-BBq2",2014-11-04,2014-11-04,"YB","BB","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to water patches and algae"
+"2014-11-04_YB-BBq9",2014-11-04,2014-11-04,"YB","BB","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur and glare"
+"2014-11-04_YB-BBq1",2014-11-04,2014-11-04,"YB","BB","1","Bg","Balanus_glandula","Type 1",316,0.0875,3611.42857142857,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to water patches and algae"
+"2014-11-04_YB-BBq2",2014-11-04,2014-11-04,"YB","BB","2","Bg","Balanus_glandula","Type 1",327,0.0875,3737.14285714286,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to water patches and algae"
+"2014-11-04_YB-BBq9",2014-11-04,2014-11-04,"YB","BB","9","Bg","Balanus_glandula","Type 1",629,0.0875,7188.57142857143,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur and glare"
+"2014-11-04_YB-BBq1",2014-11-04,2014-11-04,"YB","BB","1","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to water patches and algae"
+"2014-11-04_YB-BBq2",2014-11-04,2014-11-04,"YB","BB","2","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to water patches and algae"
+"2014-11-04_YB-BBq9",2014-11-04,2014-11-04,"YB","BB","9","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur and glare"
+"2014-11-04_YB-BBq1",2014-11-04,2014-11-04,"YB","BB","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to water patches and algae"
+"2014-11-04_YB-BBq2",2014-11-04,2014-11-04,"YB","BB","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to water patches and algae"
+"2014-11-04_YB-BBq9",2014-11-04,2014-11-04,"YB","BB","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur and glare"
+"2014-11-04_YB-BBq1",2014-11-04,2014-11-04,"YB","BB","1","Cth","Chthamalus_dalli","Type 3",5,0.0875,57.1428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to water patches and algae"
+"2014-11-04_YB-BBq2",2014-11-04,2014-11-04,"YB","BB","2","Cth","Chthamalus_dalli","Type 3",10,0.0875,114.285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to water patches and algae"
+"2014-11-04_YB-BBq9",2014-11-04,2014-11-04,"YB","BB","9","Cth","Chthamalus_dalli","Type 3",25,0.0875,285.714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur and glare"
+"2014-11-04_YB-BBq1",2014-11-04,2014-11-04,"YB","BB","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to water patches and algae"
+"2014-11-04_YB-BBq2",2014-11-04,2014-11-04,"YB","BB","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to water patches and algae"
+"2014-11-04_YB-BBq9",2014-11-04,2014-11-04,"YB","BB","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur and glare"
+"2014-11-04_YB-BBq1",2014-11-04,2014-11-04,"YB","BB","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to water patches and algae"
+"2014-11-04_YB-BBq2",2014-11-04,2014-11-04,"YB","BB","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to water patches and algae"
+"2014-11-04_YB-BBq9",2014-11-04,2014-11-04,"YB","BB","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur and glare"
+"2014-11-04_YB-BBq1",2014-11-04,2014-11-04,"YB","BB","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to water patches and algae"
+"2014-11-04_YB-BBq2",2014-11-04,2014-11-04,"YB","BB","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to water patches and algae"
+"2014-11-04_YB-BBq9",2014-11-04,2014-11-04,"YB","BB","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur and glare"
+"2014-11-04_YB-BBq1",2014-11-04,2014-11-04,"YB","BB","1","Lim","Limpets","Type 12",38,0.0875,434.285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to water patches and algae"
+"2014-11-04_YB-BBq2",2014-11-04,2014-11-04,"YB","BB","2","Lim","Limpets","Type 12",97,0.0875,1108.57142857143,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to water patches and algae"
+"2014-11-04_YB-BBq9",2014-11-04,2014-11-04,"YB","BB","9","Lim","Limpets","Type 12",30,0.0875,342.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur and glare"
+"2014-11-04_YB-BBq1",2014-11-04,2014-11-04,"YB","BB","1","Ls","Littorina_sitkana","Type 13",74,0.0875,845.714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to water patches and algae"
+"2014-11-04_YB-BBq2",2014-11-04,2014-11-04,"YB","BB","2","Ls","Littorina_sitkana","Type 13",98,0.0875,1120,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to water patches and algae"
+"2014-11-04_YB-BBq9",2014-11-04,2014-11-04,"YB","BB","9","Ls","Littorina_sitkana","Type 13",73,0.0875,834.285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur and glare"
+"2014-11-04_YB-BBq1",2014-11-04,2014-11-04,"YB","BB","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to water patches and algae"
+"2014-11-04_YB-BBq2",2014-11-04,2014-11-04,"YB","BB","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to water patches and algae"
+"2014-11-04_YB-BBq9",2014-11-04,2014-11-04,"YB","BB","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur and glare"
+"2014-11-04_YB-BBq1",2014-11-04,2014-11-04,"YB","BB","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to water patches and algae"
+"2014-11-04_YB-BBq2",2014-11-04,2014-11-04,"YB","BB","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to water patches and algae"
+"2014-11-04_YB-BBq9",2014-11-04,2014-11-04,"YB","BB","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur and glare"
+"2014-11-04_YB-BBq1",2014-11-04,2014-11-04,"YB","BB","1","Myt","Mytilus_spp","Type 7",324,0.0875,3702.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to water patches and algae"
+"2014-11-04_YB-BBq2",2014-11-04,2014-11-04,"YB","BB","2","Myt","Mytilus_spp","Type 7",258,0.0875,2948.57142857143,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to water patches and algae"
+"2014-11-04_YB-BBq9",2014-11-04,2014-11-04,"YB","BB","9","Myt","Mytilus_spp","Type 7",355,0.0875,4057.14285714286,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur and glare"
+"2014-11-04_YB-BBq1",2014-11-04,2014-11-04,"YB","BB","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to water patches and algae"
+"2014-11-04_YB-BBq2",2014-11-04,2014-11-04,"YB","BB","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to water patches and algae"
+"2014-11-04_YB-BBq9",2014-11-04,2014-11-04,"YB","BB","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur and glare"
+"2014-11-04_YB-BBq1",2014-11-04,2014-11-04,"YB","BB","1","Mt","Mytilus_trossulus","Type 15",205,0.0875,2342.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to water patches and algae"
+"2014-11-04_YB-BBq2",2014-11-04,2014-11-04,"YB","BB","2","Mt","Mytilus_trossulus","Type 15",98,0.0875,1120,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to water patches and algae"
+"2014-11-04_YB-BBq9",2014-11-04,2014-11-04,"YB","BB","9","Mt","Mytilus_trossulus","Type 15",230,0.0875,2628.57142857143,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur and glare"
+"2014-11-04_YB-BBq1",2014-11-04,2014-11-04,"YB","BB","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to water patches and algae"
+"2014-11-04_YB-BBq2",2014-11-04,2014-11-04,"YB","BB","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to water patches and algae"
+"2014-11-04_YB-BBq9",2014-11-04,2014-11-04,"YB","BB","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur and glare"
+"2014-11-04_YB-BBq1",2014-11-04,2014-11-04,"YB","BB","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to water patches and algae"
+"2014-11-04_YB-BBq2",2014-11-04,2014-11-04,"YB","BB","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to water patches and algae"
+"2014-11-04_YB-BBq9",2014-11-04,2014-11-04,"YB","BB","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur and glare"
+"2014-11-04_YB-BBq1",2014-11-04,2014-11-04,"YB","BB","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to water patches and algae"
+"2014-11-04_YB-BBq2",2014-11-04,2014-11-04,"YB","BB","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to water patches and algae"
+"2014-11-04_YB-BBq9",2014-11-04,2014-11-04,"YB","BB","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur and glare"
+"2014-11-04_YB-BBq1",2014-11-04,2014-11-04,"YB","BB","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to water patches and algae"
+"2014-11-04_YB-BBq2",2014-11-04,2014-11-04,"YB","BB","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to water patches and algae"
+"2014-11-04_YB-BBq9",2014-11-04,2014-11-04,"YB","BB","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur and glare"
+"2014-11-04_YB-BBq1",2014-11-04,2014-11-04,"YB","BB","1","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to water patches and algae"
+"2014-11-04_YB-BBq2",2014-11-04,2014-11-04,"YB","BB","2","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to water patches and algae"
+"2014-11-04_YB-BBq9",2014-11-04,2014-11-04,"YB","BB","9","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur and glare"
+"2014-11-04_YB-BBq1",2014-11-04,2014-11-04,"YB","BB","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to water patches and algae"
+"2014-11-04_YB-BBq2",2014-11-04,2014-11-04,"YB","BB","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to water patches and algae"
+"2014-11-04_YB-BBq9",2014-11-04,2014-11-04,"YB","BB","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur and glare"
+"2014-11-04_YB-BBq1",2014-11-04,2014-11-04,"YB","BB","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to water patches and algae"
+"2014-11-04_YB-BBq2",2014-11-04,2014-11-04,"YB","BB","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to water patches and algae"
+"2014-11-04_YB-BBq9",2014-11-04,2014-11-04,"YB","BB","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur and glare"
+"2014-11-04_YB-BBq1",2014-11-04,2014-11-04,"YB","BB","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to water patches and algae"
+"2014-11-04_YB-BBq2",2014-11-04,2014-11-04,"YB","BB","2","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to water patches and algae"
+"2014-11-04_YB-BBq9",2014-11-04,2014-11-04,"YB","BB","9","Pp","Pollicipes_polymerus","Type 11",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur and glare"
+"2014-11-04_YB-BBq1",2014-11-04,2014-11-04,"YB","BB","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to water patches and algae"
+"2014-11-04_YB-BBq2",2014-11-04,2014-11-04,"YB","BB","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to water patches and algae"
+"2014-11-04_YB-BBq9",2014-11-04,2014-11-04,"YB","BB","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur and glare"
+"2014-11-04_YB-BBq1",2014-11-04,2014-11-04,"YB","BB","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to water patches and algae"
+"2014-11-04_YB-BBq2",2014-11-04,2014-11-04,"YB","BB","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to water patches and algae"
+"2014-11-04_YB-BBq9",2014-11-04,2014-11-04,"YB","BB","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur and glare"
+"2014-11-04_YB-BBq1",2014-11-04,2014-11-04,"YB","BB","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to water patches and algae"
+"2014-11-04_YB-BBq2",2014-11-04,2014-11-04,"YB","BB","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to water patches and algae"
+"2014-11-04_YB-BBq9",2014-11-04,2014-11-04,"YB","BB","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur and glare"
+"2014-11-04_YB-BCq3",2014-11-04,2014-11-04,"YB","BC","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%",""
+"2014-11-04_YB-BCq5",2014-11-04,2014-11-04,"YB","BC","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to water patches"
+"2014-11-04_YB-BCq9",2014-11-04,2014-11-04,"YB","BC","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2014-11-04_YB-BCq3",2014-11-04,2014-11-04,"YB","BC","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%",""
+"2014-11-04_YB-BCq5",2014-11-04,2014-11-04,"YB","BC","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to water patches"
+"2014-11-04_YB-BCq9",2014-11-04,2014-11-04,"YB","BC","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2014-11-04_YB-BCq3",2014-11-04,2014-11-04,"YB","BC","3","Bg","Balanus_glandula","Type 1",310,0.015625,19840,"c","Stephanie Merhoff","Finished","Full","Cropped","25%",""
+"2014-11-04_YB-BCq5",2014-11-04,2014-11-04,"YB","BC","5","Bg","Balanus_glandula","Type 1",918,0.0875,10491.4285714286,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to water patches"
+"2014-11-04_YB-BCq9",2014-11-04,2014-11-04,"YB","BC","9","Bg","Balanus_glandula","Type 1",570,0.0875,6514.28571428571,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2014-11-04_YB-BCq3",2014-11-04,2014-11-04,"YB","BC","3","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","25%",""
+"2014-11-04_YB-BCq5",2014-11-04,2014-11-04,"YB","BC","5","BgD","Balanus_glandula_(dead)","Type 2",6,0.0875,68.5714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to water patches"
+"2014-11-04_YB-BCq9",2014-11-04,2014-11-04,"YB","BC","9","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2014-11-04_YB-BCq3",2014-11-04,2014-11-04,"YB","BC","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%",""
+"2014-11-04_YB-BCq5",2014-11-04,2014-11-04,"YB","BC","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to water patches"
+"2014-11-04_YB-BCq9",2014-11-04,2014-11-04,"YB","BC","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2014-11-04_YB-BCq3",2014-11-04,2014-11-04,"YB","BC","3","Cth","Chthamalus_dalli","Type 3",5,0.015625,320,"c","Stephanie Merhoff","Finished","Full","Cropped","25%",""
+"2014-11-04_YB-BCq5",2014-11-04,2014-11-04,"YB","BC","5","Cth","Chthamalus_dalli","Type 3",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to water patches"
+"2014-11-04_YB-BCq9",2014-11-04,2014-11-04,"YB","BC","9","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2014-11-04_YB-BCq3",2014-11-04,2014-11-04,"YB","BC","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","25%",""
+"2014-11-04_YB-BCq5",2014-11-04,2014-11-04,"YB","BC","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to water patches"
+"2014-11-04_YB-BCq9",2014-11-04,2014-11-04,"YB","BC","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2014-11-04_YB-BCq3",2014-11-04,2014-11-04,"YB","BC","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%",""
+"2014-11-04_YB-BCq5",2014-11-04,2014-11-04,"YB","BC","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to water patches"
+"2014-11-04_YB-BCq9",2014-11-04,2014-11-04,"YB","BC","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2014-11-04_YB-BCq3",2014-11-04,2014-11-04,"YB","BC","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%",""
+"2014-11-04_YB-BCq5",2014-11-04,2014-11-04,"YB","BC","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to water patches"
+"2014-11-04_YB-BCq9",2014-11-04,2014-11-04,"YB","BC","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2014-11-04_YB-BCq3",2014-11-04,2014-11-04,"YB","BC","3","Lim","Limpets","Type 12",98,0.0875,1120,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%",""
+"2014-11-04_YB-BCq5",2014-11-04,2014-11-04,"YB","BC","5","Lim","Limpets","Type 12",38,0.0875,434.285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to water patches"
+"2014-11-04_YB-BCq9",2014-11-04,2014-11-04,"YB","BC","9","Lim","Limpets","Type 12",55,0.0875,628.571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2014-11-04_YB-BCq3",2014-11-04,2014-11-04,"YB","BC","3","Ls","Littorina_sitkana","Type 13",187,0.0875,2137.14285714286,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%",""
+"2014-11-04_YB-BCq5",2014-11-04,2014-11-04,"YB","BC","5","Ls","Littorina_sitkana","Type 13",138,0.0875,1577.14285714286,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to water patches"
+"2014-11-04_YB-BCq9",2014-11-04,2014-11-04,"YB","BC","9","Ls","Littorina_sitkana","Type 13",156,0.0875,1782.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2014-11-04_YB-BCq3",2014-11-04,2014-11-04,"YB","BC","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%",""
+"2014-11-04_YB-BCq5",2014-11-04,2014-11-04,"YB","BC","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to water patches"
+"2014-11-04_YB-BCq9",2014-11-04,2014-11-04,"YB","BC","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2014-11-04_YB-BCq3",2014-11-04,2014-11-04,"YB","BC","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%",""
+"2014-11-04_YB-BCq5",2014-11-04,2014-11-04,"YB","BC","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to water patches"
+"2014-11-04_YB-BCq9",2014-11-04,2014-11-04,"YB","BC","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2014-11-04_YB-BCq3",2014-11-04,2014-11-04,"YB","BC","3","Myt","Mytilus_spp","Type 7",354,0.0875,4045.71428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%",""
+"2014-11-04_YB-BCq5",2014-11-04,2014-11-04,"YB","BC","5","Myt","Mytilus_spp","Type 7",392,0.0875,4480,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to water patches"
+"2014-11-04_YB-BCq9",2014-11-04,2014-11-04,"YB","BC","9","Myt","Mytilus_spp","Type 7",291,0.0875,3325.71428571429,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2014-11-04_YB-BCq3",2014-11-04,2014-11-04,"YB","BC","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%",""
+"2014-11-04_YB-BCq5",2014-11-04,2014-11-04,"YB","BC","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to water patches"
+"2014-11-04_YB-BCq9",2014-11-04,2014-11-04,"YB","BC","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2014-11-04_YB-BCq3",2014-11-04,2014-11-04,"YB","BC","3","Mt","Mytilus_trossulus","Type 15",86,0.0875,982.857142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%",""
+"2014-11-04_YB-BCq5",2014-11-04,2014-11-04,"YB","BC","5","Mt","Mytilus_trossulus","Type 15",310,0.0875,3542.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to water patches"
+"2014-11-04_YB-BCq9",2014-11-04,2014-11-04,"YB","BC","9","Mt","Mytilus_trossulus","Type 15",178,0.0875,2034.28571428571,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2014-11-04_YB-BCq3",2014-11-04,2014-11-04,"YB","BC","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%",""
+"2014-11-04_YB-BCq5",2014-11-04,2014-11-04,"YB","BC","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to water patches"
+"2014-11-04_YB-BCq9",2014-11-04,2014-11-04,"YB","BC","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2014-11-04_YB-BCq3",2014-11-04,2014-11-04,"YB","BC","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%",""
+"2014-11-04_YB-BCq5",2014-11-04,2014-11-04,"YB","BC","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to water patches"
+"2014-11-04_YB-BCq9",2014-11-04,2014-11-04,"YB","BC","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2014-11-04_YB-BCq3",2014-11-04,2014-11-04,"YB","BC","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%",""
+"2014-11-04_YB-BCq5",2014-11-04,2014-11-04,"YB","BC","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to water patches"
+"2014-11-04_YB-BCq9",2014-11-04,2014-11-04,"YB","BC","9","Nc","Nucella_canaliculata","Type 10",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2014-11-04_YB-BCq3",2014-11-04,2014-11-04,"YB","BC","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%",""
+"2014-11-04_YB-BCq5",2014-11-04,2014-11-04,"YB","BC","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to water patches"
+"2014-11-04_YB-BCq9",2014-11-04,2014-11-04,"YB","BC","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2014-11-04_YB-BCq3",2014-11-04,2014-11-04,"YB","BC","3","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%",""
+"2014-11-04_YB-BCq5",2014-11-04,2014-11-04,"YB","BC","5","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to water patches"
+"2014-11-04_YB-BCq9",2014-11-04,2014-11-04,"YB","BC","9","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2014-11-04_YB-BCq3",2014-11-04,2014-11-04,"YB","BC","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%",""
+"2014-11-04_YB-BCq5",2014-11-04,2014-11-04,"YB","BC","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to water patches"
+"2014-11-04_YB-BCq9",2014-11-04,2014-11-04,"YB","BC","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2014-11-04_YB-BCq3",2014-11-04,2014-11-04,"YB","BC","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%",""
+"2014-11-04_YB-BCq5",2014-11-04,2014-11-04,"YB","BC","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to water patches"
+"2014-11-04_YB-BCq9",2014-11-04,2014-11-04,"YB","BC","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2014-11-04_YB-BCq3",2014-11-04,2014-11-04,"YB","BC","3","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%",""
+"2014-11-04_YB-BCq5",2014-11-04,2014-11-04,"YB","BC","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to water patches"
+"2014-11-04_YB-BCq9",2014-11-04,2014-11-04,"YB","BC","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2014-11-04_YB-BCq3",2014-11-04,2014-11-04,"YB","BC","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%",""
+"2014-11-04_YB-BCq5",2014-11-04,2014-11-04,"YB","BC","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to water patches"
+"2014-11-04_YB-BCq9",2014-11-04,2014-11-04,"YB","BC","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2014-11-04_YB-BCq3",2014-11-04,2014-11-04,"YB","BC","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%",""
+"2014-11-04_YB-BCq5",2014-11-04,2014-11-04,"YB","BC","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to water patches"
+"2014-11-04_YB-BCq9",2014-11-04,2014-11-04,"YB","BC","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2014-11-04_YB-BCq3",2014-11-04,2014-11-04,"YB","BC","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","25%",""
+"2014-11-04_YB-BCq5",2014-11-04,2014-11-04,"YB","BC","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to water patches"
+"2014-11-04_YB-BCq9",2014-11-04,2014-11-04,"YB","BC","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2014-11-04_YB-BDq1",2014-11-04,2014-11-04,"YB","BD","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts low due to lots of glare, under water patches, and blur. ~10% underwater."
+"2014-11-04_YB-BDq5",2014-11-04,2014-11-04,"YB","BD","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts low due to lots of glare, under water patches, and blur. ~20% underwater."
+"2014-11-04_YB-BDq7",2014-11-04,2014-11-04,"YB","BD","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts low due to lots of glare and blur."
+"2014-11-04_YB-BDq1",2014-11-04,2014-11-04,"YB","BD","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts low due to lots of glare, under water patches, and blur. ~10% underwater."
+"2014-11-04_YB-BDq5",2014-11-04,2014-11-04,"YB","BD","5","Ae","Anemones","Type 14",12,0.0875,137.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts low due to lots of glare, under water patches, and blur. ~20% underwater."
+"2014-11-04_YB-BDq7",2014-11-04,2014-11-04,"YB","BD","7","Ae","Anemones","Type 14",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts low due to lots of glare and blur."
+"2014-11-04_YB-BDq1",2014-11-04,2014-11-04,"YB","BD","1","Bg","Balanus_glandula","Type 1",636,0.0875,7268.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts low due to lots of glare, under water patches, and blur. ~10% underwater."
+"2014-11-04_YB-BDq5",2014-11-04,2014-11-04,"YB","BD","5","Bg","Balanus_glandula","Type 1",634,0.0875,7245.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts low due to lots of glare, under water patches, and blur. ~20% underwater."
+"2014-11-04_YB-BDq7",2014-11-04,2014-11-04,"YB","BD","7","Bg","Balanus_glandula","Type 1",988,0.0875,11291.4285714286,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts low due to lots of glare and blur."
+"2014-11-04_YB-BDq1",2014-11-04,2014-11-04,"YB","BD","1","BgD","Balanus_glandula_(dead)","Type 2",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts low due to lots of glare, under water patches, and blur. ~10% underwater."
+"2014-11-04_YB-BDq5",2014-11-04,2014-11-04,"YB","BD","5","BgD","Balanus_glandula_(dead)","Type 2",13,0.0875,148.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts low due to lots of glare, under water patches, and blur. ~20% underwater."
+"2014-11-04_YB-BDq7",2014-11-04,2014-11-04,"YB","BD","7","BgD","Balanus_glandula_(dead)","Type 2",19,0.0875,217.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts low due to lots of glare and blur."
+"2014-11-04_YB-BDq1",2014-11-04,2014-11-04,"YB","BD","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts low due to lots of glare, under water patches, and blur. ~10% underwater."
+"2014-11-04_YB-BDq5",2014-11-04,2014-11-04,"YB","BD","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts low due to lots of glare, under water patches, and blur. ~20% underwater."
+"2014-11-04_YB-BDq7",2014-11-04,2014-11-04,"YB","BD","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts low due to lots of glare and blur."
+"2014-11-04_YB-BDq1",2014-11-04,2014-11-04,"YB","BD","1","Cth","Chthamalus_dalli","Type 3",20,0.0875,228.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts low due to lots of glare, under water patches, and blur. ~10% underwater."
+"2014-11-04_YB-BDq5",2014-11-04,2014-11-04,"YB","BD","5","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts low due to lots of glare, under water patches, and blur. ~20% underwater."
+"2014-11-04_YB-BDq7",2014-11-04,2014-11-04,"YB","BD","7","Cth","Chthamalus_dalli","Type 3",68,0.0875,777.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts low due to lots of glare and blur."
+"2014-11-04_YB-BDq1",2014-11-04,2014-11-04,"YB","BD","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts low due to lots of glare, under water patches, and blur. ~10% underwater."
+"2014-11-04_YB-BDq5",2014-11-04,2014-11-04,"YB","BD","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts low due to lots of glare, under water patches, and blur. ~20% underwater."
+"2014-11-04_YB-BDq7",2014-11-04,2014-11-04,"YB","BD","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts low due to lots of glare and blur."
+"2014-11-04_YB-BDq1",2014-11-04,2014-11-04,"YB","BD","1","Emp","Emplectonema worm","Type 23",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts low due to lots of glare, under water patches, and blur. ~10% underwater."
+"2014-11-04_YB-BDq5",2014-11-04,2014-11-04,"YB","BD","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts low due to lots of glare, under water patches, and blur. ~20% underwater."
+"2014-11-04_YB-BDq7",2014-11-04,2014-11-04,"YB","BD","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts low due to lots of glare and blur."
+"2014-11-04_YB-BDq1",2014-11-04,2014-11-04,"YB","BD","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts low due to lots of glare, under water patches, and blur. ~10% underwater."
+"2014-11-04_YB-BDq5",2014-11-04,2014-11-04,"YB","BD","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts low due to lots of glare, under water patches, and blur. ~20% underwater."
+"2014-11-04_YB-BDq7",2014-11-04,2014-11-04,"YB","BD","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts low due to lots of glare and blur."
+"2014-11-04_YB-BDq1",2014-11-04,2014-11-04,"YB","BD","1","Lim","Limpets","Type 12",279,0.0875,3188.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts low due to lots of glare, under water patches, and blur. ~10% underwater."
+"2014-11-04_YB-BDq5",2014-11-04,2014-11-04,"YB","BD","5","Lim","Limpets","Type 12",193,0.0875,2205.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts low due to lots of glare, under water patches, and blur. ~20% underwater."
+"2014-11-04_YB-BDq7",2014-11-04,2014-11-04,"YB","BD","7","Lim","Limpets","Type 12",347,0.0875,3965.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts low due to lots of glare and blur."
+"2014-11-04_YB-BDq1",2014-11-04,2014-11-04,"YB","BD","1","Ls","Littorina_sitkana","Type 13",74,0.0875,845.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts low due to lots of glare, under water patches, and blur. ~10% underwater."
+"2014-11-04_YB-BDq5",2014-11-04,2014-11-04,"YB","BD","5","Ls","Littorina_sitkana","Type 13",97,0.0875,1108.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts low due to lots of glare, under water patches, and blur. ~20% underwater."
+"2014-11-04_YB-BDq7",2014-11-04,2014-11-04,"YB","BD","7","Ls","Littorina_sitkana","Type 13",226,0.0875,2582.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts low due to lots of glare and blur."
+"2014-11-04_YB-BDq1",2014-11-04,2014-11-04,"YB","BD","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts low due to lots of glare, under water patches, and blur. ~10% underwater."
+"2014-11-04_YB-BDq5",2014-11-04,2014-11-04,"YB","BD","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts low due to lots of glare, under water patches, and blur. ~20% underwater."
+"2014-11-04_YB-BDq7",2014-11-04,2014-11-04,"YB","BD","7","Mc","Mytilus_californianus","Type 17",21,0.0875,240,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts low due to lots of glare and blur."
+"2014-11-04_YB-BDq1",2014-11-04,2014-11-04,"YB","BD","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts low due to lots of glare, under water patches, and blur. ~10% underwater."
+"2014-11-04_YB-BDq5",2014-11-04,2014-11-04,"YB","BD","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts low due to lots of glare, under water patches, and blur. ~20% underwater."
+"2014-11-04_YB-BDq7",2014-11-04,2014-11-04,"YB","BD","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts low due to lots of glare and blur."
+"2014-11-04_YB-BDq1",2014-11-04,2014-11-04,"YB","BD","1","Myt","Mytilus_spp","Type 7",575,0.0875,6571.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts low due to lots of glare, under water patches, and blur. ~10% underwater."
+"2014-11-04_YB-BDq5",2014-11-04,2014-11-04,"YB","BD","5","Myt","Mytilus_spp","Type 7",370,0.0875,4228.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts low due to lots of glare, under water patches, and blur. ~20% underwater."
+"2014-11-04_YB-BDq7",2014-11-04,2014-11-04,"YB","BD","7","Myt","Mytilus_spp","Type 7",125,0.0875,1428.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts low due to lots of glare and blur."
+"2014-11-04_YB-BDq1",2014-11-04,2014-11-04,"YB","BD","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts low due to lots of glare, under water patches, and blur. ~10% underwater."
+"2014-11-04_YB-BDq5",2014-11-04,2014-11-04,"YB","BD","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts low due to lots of glare, under water patches, and blur. ~20% underwater."
+"2014-11-04_YB-BDq7",2014-11-04,2014-11-04,"YB","BD","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts low due to lots of glare and blur."
+"2014-11-04_YB-BDq1",2014-11-04,2014-11-04,"YB","BD","1","Mt","Mytilus_trossulus","Type 15",349,0.0875,3988.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts low due to lots of glare, under water patches, and blur. ~10% underwater."
+"2014-11-04_YB-BDq5",2014-11-04,2014-11-04,"YB","BD","5","Mt","Mytilus_trossulus","Type 15",882,0.0875,10080,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts low due to lots of glare, under water patches, and blur. ~20% underwater."
+"2014-11-04_YB-BDq7",2014-11-04,2014-11-04,"YB","BD","7","Mt","Mytilus_trossulus","Type 15",535,0.0875,6114.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts low due to lots of glare and blur."
+"2014-11-04_YB-BDq1",2014-11-04,2014-11-04,"YB","BD","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts low due to lots of glare, under water patches, and blur. ~10% underwater."
+"2014-11-04_YB-BDq5",2014-11-04,2014-11-04,"YB","BD","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts low due to lots of glare, under water patches, and blur. ~20% underwater."
+"2014-11-04_YB-BDq7",2014-11-04,2014-11-04,"YB","BD","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts low due to lots of glare and blur."
+"2014-11-04_YB-BDq1",2014-11-04,2014-11-04,"YB","BD","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts low due to lots of glare, under water patches, and blur. ~10% underwater."
+"2014-11-04_YB-BDq5",2014-11-04,2014-11-04,"YB","BD","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts low due to lots of glare, under water patches, and blur. ~20% underwater."
+"2014-11-04_YB-BDq7",2014-11-04,2014-11-04,"YB","BD","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts low due to lots of glare and blur."
+"2014-11-04_YB-BDq1",2014-11-04,2014-11-04,"YB","BD","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts low due to lots of glare, under water patches, and blur. ~10% underwater."
+"2014-11-04_YB-BDq5",2014-11-04,2014-11-04,"YB","BD","5","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts low due to lots of glare, under water patches, and blur. ~20% underwater."
+"2014-11-04_YB-BDq7",2014-11-04,2014-11-04,"YB","BD","7","Nc","Nucella_canaliculata","Type 10",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts low due to lots of glare and blur."
+"2014-11-04_YB-BDq1",2014-11-04,2014-11-04,"YB","BD","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts low due to lots of glare, under water patches, and blur. ~10% underwater."
+"2014-11-04_YB-BDq5",2014-11-04,2014-11-04,"YB","BD","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts low due to lots of glare, under water patches, and blur. ~20% underwater."
+"2014-11-04_YB-BDq7",2014-11-04,2014-11-04,"YB","BD","7","Negg","Nucella_eggs","Type 26",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts low due to lots of glare and blur."
+"2014-11-04_YB-BDq1",2014-11-04,2014-11-04,"YB","BD","1","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts low due to lots of glare, under water patches, and blur. ~10% underwater."
+"2014-11-04_YB-BDq5",2014-11-04,2014-11-04,"YB","BD","5","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts low due to lots of glare, under water patches, and blur. ~20% underwater."
+"2014-11-04_YB-BDq7",2014-11-04,2014-11-04,"YB","BD","7","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts low due to lots of glare and blur."
+"2014-11-04_YB-BDq1",2014-11-04,2014-11-04,"YB","BD","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts low due to lots of glare, under water patches, and blur. ~10% underwater."
+"2014-11-04_YB-BDq5",2014-11-04,2014-11-04,"YB","BD","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts low due to lots of glare, under water patches, and blur. ~20% underwater."
+"2014-11-04_YB-BDq7",2014-11-04,2014-11-04,"YB","BD","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts low due to lots of glare and blur."
+"2014-11-04_YB-BDq1",2014-11-04,2014-11-04,"YB","BD","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts low due to lots of glare, under water patches, and blur. ~10% underwater."
+"2014-11-04_YB-BDq5",2014-11-04,2014-11-04,"YB","BD","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts low due to lots of glare, under water patches, and blur. ~20% underwater."
+"2014-11-04_YB-BDq7",2014-11-04,2014-11-04,"YB","BD","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts low due to lots of glare and blur."
+"2014-11-04_YB-BDq1",2014-11-04,2014-11-04,"YB","BD","1","Pp","Pollicipes_polymerus","Type 11",1077,0.0875,12308.5714285714,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts low due to lots of glare, under water patches, and blur. ~10% underwater."
+"2014-11-04_YB-BDq5",2014-11-04,2014-11-04,"YB","BD","5","Pp","Pollicipes_polymerus","Type 11",837,0.0875,9565.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts low due to lots of glare, under water patches, and blur. ~20% underwater."
+"2014-11-04_YB-BDq7",2014-11-04,2014-11-04,"YB","BD","7","Pp","Pollicipes_polymerus","Type 11",825,0.0875,9428.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts low due to lots of glare and blur."
+"2014-11-04_YB-BDq1",2014-11-04,2014-11-04,"YB","BD","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts low due to lots of glare, under water patches, and blur. ~10% underwater."
+"2014-11-04_YB-BDq5",2014-11-04,2014-11-04,"YB","BD","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts low due to lots of glare, under water patches, and blur. ~20% underwater."
+"2014-11-04_YB-BDq7",2014-11-04,2014-11-04,"YB","BD","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts low due to lots of glare and blur."
+"2014-11-04_YB-BDq1",2014-11-04,2014-11-04,"YB","BD","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts low due to lots of glare, under water patches, and blur. ~10% underwater."
+"2014-11-04_YB-BDq5",2014-11-04,2014-11-04,"YB","BD","5","Sc","Semibalanus_cariosus","Type 5",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts low due to lots of glare, under water patches, and blur. ~20% underwater."
+"2014-11-04_YB-BDq7",2014-11-04,2014-11-04,"YB","BD","7","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts low due to lots of glare and blur."
+"2014-11-04_YB-BDq1",2014-11-04,2014-11-04,"YB","BD","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts low due to lots of glare, under water patches, and blur. ~10% underwater."
+"2014-11-04_YB-BDq5",2014-11-04,2014-11-04,"YB","BD","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts low due to lots of glare, under water patches, and blur. ~20% underwater."
+"2014-11-04_YB-BDq7",2014-11-04,2014-11-04,"YB","BD","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts low due to lots of glare and blur."
+"2014-11-04_YB-BEq2",2014-11-04,2014-11-04,"YB","BE","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-11-04_YB-BEq3",2014-11-04,2014-11-04,"YB","BE","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-BEq4",2014-11-04,2014-11-04,"YB","BE","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","15%","some glare, may reduce littorine and mussel counts"
+"2014-11-04_YB-BEq6",2014-11-04,2014-11-04,"YB","BE","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-11-04_YB-BEq2",2014-11-04,2014-11-04,"YB","BE","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-11-04_YB-BEq3",2014-11-04,2014-11-04,"YB","BE","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-BEq4",2014-11-04,2014-11-04,"YB","BE","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","15%","some glare, may reduce littorine and mussel counts"
+"2014-11-04_YB-BEq6",2014-11-04,2014-11-04,"YB","BE","6","Ae","Anemones","Type 14",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-11-04_YB-BEq2",2014-11-04,2014-11-04,"YB","BE","2","Bg","Balanus_glandula","Type 1",2381,0.0875,27211.4285714286,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-11-04_YB-BEq3",2014-11-04,2014-11-04,"YB","BE","3","Bg","Balanus_glandula","Type 1",976,0.015625,62464,"c","Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-BEq4",2014-11-04,2014-11-04,"YB","BE","4","Bg","Balanus_glandula","Type 1",979,0.015625,62656,"c","Julia Bingham","Finished","Full","Cropped","15%","some glare, may reduce littorine and mussel counts"
+"2014-11-04_YB-BEq6",2014-11-04,2014-11-04,"YB","BE","6","Bg","Balanus_glandula","Type 1",1253,0.015625,80192,"c","Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-11-04_YB-BEq2",2014-11-04,2014-11-04,"YB","BE","2","BgD","Balanus_glandula_(dead)","Type 2",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-11-04_YB-BEq3",2014-11-04,2014-11-04,"YB","BE","3","BgD","Balanus_glandula_(dead)","Type 2",45,0.015625,2880,"c","Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-BEq4",2014-11-04,2014-11-04,"YB","BE","4","BgD","Balanus_glandula_(dead)","Type 2",163,0.015625,10432,"c","Julia Bingham","Finished","Full","Cropped","15%","some glare, may reduce littorine and mussel counts"
+"2014-11-04_YB-BEq6",2014-11-04,2014-11-04,"YB","BE","6","BgD","Balanus_glandula_(dead)","Type 2",38,0.015625,2432,"c","Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-11-04_YB-BEq2",2014-11-04,2014-11-04,"YB","BE","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-11-04_YB-BEq3",2014-11-04,2014-11-04,"YB","BE","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-BEq4",2014-11-04,2014-11-04,"YB","BE","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","15%","some glare, may reduce littorine and mussel counts"
+"2014-11-04_YB-BEq6",2014-11-04,2014-11-04,"YB","BE","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-11-04_YB-BEq2",2014-11-04,2014-11-04,"YB","BE","2","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-11-04_YB-BEq3",2014-11-04,2014-11-04,"YB","BE","3","Cth","Chthamalus_dalli","Type 3",4,0.015625,256,"c","Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-BEq4",2014-11-04,2014-11-04,"YB","BE","4","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Julia Bingham","Finished","Full","Cropped","15%","some glare, may reduce littorine and mussel counts"
+"2014-11-04_YB-BEq6",2014-11-04,2014-11-04,"YB","BE","6","Cth","Chthamalus_dalli","Type 3",20,0.015625,1280,"c","Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-11-04_YB-BEq2",2014-11-04,2014-11-04,"YB","BE","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-11-04_YB-BEq3",2014-11-04,2014-11-04,"YB","BE","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-BEq4",2014-11-04,2014-11-04,"YB","BE","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Julia Bingham","Finished","Full","Cropped","15%","some glare, may reduce littorine and mussel counts"
+"2014-11-04_YB-BEq6",2014-11-04,2014-11-04,"YB","BE","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-11-04_YB-BEq2",2014-11-04,2014-11-04,"YB","BE","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-11-04_YB-BEq3",2014-11-04,2014-11-04,"YB","BE","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-BEq4",2014-11-04,2014-11-04,"YB","BE","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","15%","some glare, may reduce littorine and mussel counts"
+"2014-11-04_YB-BEq6",2014-11-04,2014-11-04,"YB","BE","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-11-04_YB-BEq2",2014-11-04,2014-11-04,"YB","BE","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-11-04_YB-BEq3",2014-11-04,2014-11-04,"YB","BE","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-BEq4",2014-11-04,2014-11-04,"YB","BE","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","15%","some glare, may reduce littorine and mussel counts"
+"2014-11-04_YB-BEq6",2014-11-04,2014-11-04,"YB","BE","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-11-04_YB-BEq2",2014-11-04,2014-11-04,"YB","BE","2","Lim","Limpets","Type 12",39,0.0875,445.714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-11-04_YB-BEq3",2014-11-04,2014-11-04,"YB","BE","3","Lim","Limpets","Type 12",247,0.0875,2822.85714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-BEq4",2014-11-04,2014-11-04,"YB","BE","4","Lim","Limpets","Type 12",159,0.0875,1817.14285714286,NA,"Julia Bingham","Finished","Full","Cropped","15%","some glare, may reduce littorine and mussel counts"
+"2014-11-04_YB-BEq6",2014-11-04,2014-11-04,"YB","BE","6","Lim","Limpets","Type 12",283,0.0875,3234.28571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-11-04_YB-BEq2",2014-11-04,2014-11-04,"YB","BE","2","Ls","Littorina_sitkana","Type 13",76,0.0875,868.571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-11-04_YB-BEq3",2014-11-04,2014-11-04,"YB","BE","3","Ls","Littorina_sitkana","Type 13",416,0.0875,4754.28571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-BEq4",2014-11-04,2014-11-04,"YB","BE","4","Ls","Littorina_sitkana","Type 13",495,0.0875,5657.14285714286,NA,"Julia Bingham","Finished","Full","Cropped","15%","some glare, may reduce littorine and mussel counts"
+"2014-11-04_YB-BEq6",2014-11-04,2014-11-04,"YB","BE","6","Ls","Littorina_sitkana","Type 13",520,0.0875,5942.85714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-11-04_YB-BEq2",2014-11-04,2014-11-04,"YB","BE","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-11-04_YB-BEq3",2014-11-04,2014-11-04,"YB","BE","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-BEq4",2014-11-04,2014-11-04,"YB","BE","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","15%","some glare, may reduce littorine and mussel counts"
+"2014-11-04_YB-BEq6",2014-11-04,2014-11-04,"YB","BE","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-11-04_YB-BEq2",2014-11-04,2014-11-04,"YB","BE","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-11-04_YB-BEq3",2014-11-04,2014-11-04,"YB","BE","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-BEq4",2014-11-04,2014-11-04,"YB","BE","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","15%","some glare, may reduce littorine and mussel counts"
+"2014-11-04_YB-BEq6",2014-11-04,2014-11-04,"YB","BE","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-11-04_YB-BEq2",2014-11-04,2014-11-04,"YB","BE","2","Myt","Mytilus_spp","Type 7",202,0.0875,2308.57142857143,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-11-04_YB-BEq3",2014-11-04,2014-11-04,"YB","BE","3","Myt","Mytilus_spp","Type 7",369,0.0875,4217.14285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-BEq4",2014-11-04,2014-11-04,"YB","BE","4","Myt","Mytilus_spp","Type 7",2827,0.0875,32308.5714285714,NA,"Julia Bingham","Finished","Full","Cropped","15%","some glare, may reduce littorine and mussel counts"
+"2014-11-04_YB-BEq6",2014-11-04,2014-11-04,"YB","BE","6","Myt","Mytilus_spp","Type 7",363,0.0875,4148.57142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-11-04_YB-BEq2",2014-11-04,2014-11-04,"YB","BE","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-11-04_YB-BEq3",2014-11-04,2014-11-04,"YB","BE","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-BEq4",2014-11-04,2014-11-04,"YB","BE","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","15%","some glare, may reduce littorine and mussel counts"
+"2014-11-04_YB-BEq6",2014-11-04,2014-11-04,"YB","BE","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-11-04_YB-BEq2",2014-11-04,2014-11-04,"YB","BE","2","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-11-04_YB-BEq3",2014-11-04,2014-11-04,"YB","BE","3","Mt","Mytilus_trossulus","Type 15",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-BEq4",2014-11-04,2014-11-04,"YB","BE","4","Mt","Mytilus_trossulus","Type 15",3,0.0875,34.2857142857143,NA,"Julia Bingham","Finished","Full","Cropped","15%","some glare, may reduce littorine and mussel counts"
+"2014-11-04_YB-BEq6",2014-11-04,2014-11-04,"YB","BE","6","Mt","Mytilus_trossulus","Type 15",37,0.0875,422.857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-11-04_YB-BEq2",2014-11-04,2014-11-04,"YB","BE","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-11-04_YB-BEq3",2014-11-04,2014-11-04,"YB","BE","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-BEq4",2014-11-04,2014-11-04,"YB","BE","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","15%","some glare, may reduce littorine and mussel counts"
+"2014-11-04_YB-BEq6",2014-11-04,2014-11-04,"YB","BE","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-11-04_YB-BEq2",2014-11-04,2014-11-04,"YB","BE","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-11-04_YB-BEq3",2014-11-04,2014-11-04,"YB","BE","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-BEq4",2014-11-04,2014-11-04,"YB","BE","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","15%","some glare, may reduce littorine and mussel counts"
+"2014-11-04_YB-BEq6",2014-11-04,2014-11-04,"YB","BE","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-11-04_YB-BEq2",2014-11-04,2014-11-04,"YB","BE","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-11-04_YB-BEq3",2014-11-04,2014-11-04,"YB","BE","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-BEq4",2014-11-04,2014-11-04,"YB","BE","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","15%","some glare, may reduce littorine and mussel counts"
+"2014-11-04_YB-BEq6",2014-11-04,2014-11-04,"YB","BE","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-11-04_YB-BEq2",2014-11-04,2014-11-04,"YB","BE","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-11-04_YB-BEq3",2014-11-04,2014-11-04,"YB","BE","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-BEq4",2014-11-04,2014-11-04,"YB","BE","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","15%","some glare, may reduce littorine and mussel counts"
+"2014-11-04_YB-BEq6",2014-11-04,2014-11-04,"YB","BE","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-11-04_YB-BEq2",2014-11-04,2014-11-04,"YB","BE","2","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-11-04_YB-BEq3",2014-11-04,2014-11-04,"YB","BE","3","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-BEq4",2014-11-04,2014-11-04,"YB","BE","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","15%","some glare, may reduce littorine and mussel counts"
+"2014-11-04_YB-BEq6",2014-11-04,2014-11-04,"YB","BE","6","No","Nucella_ostrina","Type 9",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-11-04_YB-BEq2",2014-11-04,2014-11-04,"YB","BE","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-11-04_YB-BEq3",2014-11-04,2014-11-04,"YB","BE","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-BEq4",2014-11-04,2014-11-04,"YB","BE","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","15%","some glare, may reduce littorine and mussel counts"
+"2014-11-04_YB-BEq6",2014-11-04,2014-11-04,"YB","BE","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-11-04_YB-BEq2",2014-11-04,2014-11-04,"YB","BE","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-11-04_YB-BEq3",2014-11-04,2014-11-04,"YB","BE","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-BEq4",2014-11-04,2014-11-04,"YB","BE","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","15%","some glare, may reduce littorine and mussel counts"
+"2014-11-04_YB-BEq6",2014-11-04,2014-11-04,"YB","BE","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-11-04_YB-BEq2",2014-11-04,2014-11-04,"YB","BE","2","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-11-04_YB-BEq3",2014-11-04,2014-11-04,"YB","BE","3","Pp","Pollicipes_polymerus","Type 11",21,0.0875,240,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-BEq4",2014-11-04,2014-11-04,"YB","BE","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","15%","some glare, may reduce littorine and mussel counts"
+"2014-11-04_YB-BEq6",2014-11-04,2014-11-04,"YB","BE","6","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-11-04_YB-BEq2",2014-11-04,2014-11-04,"YB","BE","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-11-04_YB-BEq3",2014-11-04,2014-11-04,"YB","BE","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-BEq4",2014-11-04,2014-11-04,"YB","BE","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","15%","some glare, may reduce littorine and mussel counts"
+"2014-11-04_YB-BEq6",2014-11-04,2014-11-04,"YB","BE","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-11-04_YB-BEq2",2014-11-04,2014-11-04,"YB","BE","2","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-11-04_YB-BEq3",2014-11-04,2014-11-04,"YB","BE","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-BEq4",2014-11-04,2014-11-04,"YB","BE","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","15%","some glare, may reduce littorine and mussel counts"
+"2014-11-04_YB-BEq6",2014-11-04,2014-11-04,"YB","BE","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-11-04_YB-BEq2",2014-11-04,2014-11-04,"YB","BE","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-11-04_YB-BEq3",2014-11-04,2014-11-04,"YB","BE","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-BEq4",2014-11-04,2014-11-04,"YB","BE","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","15%","some glare, may reduce littorine and mussel counts"
+"2014-11-04_YB-BEq6",2014-11-04,2014-11-04,"YB","BE","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2014-11-04_YB-BFq1",2014-11-04,2014-11-04,"YB","BF","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts low due to algae."
+"2014-11-04_YB-BFq4",2014-11-04,2014-11-04,"YB","BF","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%",""
+"2014-11-04_YB-BFq9",2014-11-04,2014-11-04,"YB","BF","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","35%","Counts likely low due to glare, some blur"
+"2014-11-04_YB-BFq1",2014-11-04,2014-11-04,"YB","BF","1","Ae","Anemones","Type 14",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts low due to algae."
+"2014-11-04_YB-BFq4",2014-11-04,2014-11-04,"YB","BF","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%",""
+"2014-11-04_YB-BFq9",2014-11-04,2014-11-04,"YB","BF","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","35%","Counts likely low due to glare, some blur"
+"2014-11-04_YB-BFq1",2014-11-04,2014-11-04,"YB","BF","1","Bg","Balanus_glandula","Type 1",1393,0.0875,15920,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts low due to algae."
+"2014-11-04_YB-BFq4",2014-11-04,2014-11-04,"YB","BF","4","Bg","Balanus_glandula","Type 1",1133,0.015625,72512,"c","Beatriz Vaca","Finished","Full","Cropped","25%",""
+"2014-11-04_YB-BFq9",2014-11-04,2014-11-04,"YB","BF","9","Bg","Balanus_glandula","Type 1",1795,0.0875,20514.2857142857,NA,"Julia Bingham","Finished","Full","Full","35%","Counts likely low due to glare, some blur"
+"2014-11-04_YB-BFq1",2014-11-04,2014-11-04,"YB","BF","1","BgD","Balanus_glandula_(dead)","Type 2",19,0.0875,217.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts low due to algae."
+"2014-11-04_YB-BFq4",2014-11-04,2014-11-04,"YB","BF","4","BgD","Balanus_glandula_(dead)","Type 2",16,0.015625,1024,"c","Beatriz Vaca","Finished","Full","Cropped","25%",""
+"2014-11-04_YB-BFq9",2014-11-04,2014-11-04,"YB","BF","9","BgD","Balanus_glandula_(dead)","Type 2",255,0.0875,2914.28571428571,NA,"Julia Bingham","Finished","Full","Full","35%","Counts likely low due to glare, some blur"
+"2014-11-04_YB-BFq1",2014-11-04,2014-11-04,"YB","BF","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts low due to algae."
+"2014-11-04_YB-BFq4",2014-11-04,2014-11-04,"YB","BF","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%",""
+"2014-11-04_YB-BFq9",2014-11-04,2014-11-04,"YB","BF","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","35%","Counts likely low due to glare, some blur"
+"2014-11-04_YB-BFq1",2014-11-04,2014-11-04,"YB","BF","1","Cth","Chthamalus_dalli","Type 3",93,0.0875,1062.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts low due to algae."
+"2014-11-04_YB-BFq4",2014-11-04,2014-11-04,"YB","BF","4","Cth","Chthamalus_dalli","Type 3",15,0.015625,960,"c","Beatriz Vaca","Finished","Full","Cropped","25%",""
+"2014-11-04_YB-BFq9",2014-11-04,2014-11-04,"YB","BF","9","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","35%","Counts likely low due to glare, some blur"
+"2014-11-04_YB-BFq1",2014-11-04,2014-11-04,"YB","BF","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts low due to algae."
+"2014-11-04_YB-BFq4",2014-11-04,2014-11-04,"YB","BF","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","25%",""
+"2014-11-04_YB-BFq9",2014-11-04,2014-11-04,"YB","BF","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","35%","Counts likely low due to glare, some blur"
+"2014-11-04_YB-BFq1",2014-11-04,2014-11-04,"YB","BF","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts low due to algae."
+"2014-11-04_YB-BFq4",2014-11-04,2014-11-04,"YB","BF","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%",""
+"2014-11-04_YB-BFq9",2014-11-04,2014-11-04,"YB","BF","9","Emp","Emplectonema worm","Type 23",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","35%","Counts likely low due to glare, some blur"
+"2014-11-04_YB-BFq1",2014-11-04,2014-11-04,"YB","BF","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts low due to algae."
+"2014-11-04_YB-BFq4",2014-11-04,2014-11-04,"YB","BF","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%",""
+"2014-11-04_YB-BFq9",2014-11-04,2014-11-04,"YB","BF","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","35%","Counts likely low due to glare, some blur"
+"2014-11-04_YB-BFq1",2014-11-04,2014-11-04,"YB","BF","1","Lim","Limpets","Type 12",187,0.0875,2137.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts low due to algae."
+"2014-11-04_YB-BFq4",2014-11-04,2014-11-04,"YB","BF","4","Lim","Limpets","Type 12",359,0.0875,4102.85714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","25%",""
+"2014-11-04_YB-BFq9",2014-11-04,2014-11-04,"YB","BF","9","Lim","Limpets","Type 12",56,0.0875,640,NA,"Julia Bingham","Finished","Full","Full","35%","Counts likely low due to glare, some blur"
+"2014-11-04_YB-BFq1",2014-11-04,2014-11-04,"YB","BF","1","Ls","Littorina_sitkana","Type 13",293,0.0875,3348.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts low due to algae."
+"2014-11-04_YB-BFq4",2014-11-04,2014-11-04,"YB","BF","4","Ls","Littorina_sitkana","Type 13",590,0.0875,6742.85714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","25%",""
+"2014-11-04_YB-BFq9",2014-11-04,2014-11-04,"YB","BF","9","Ls","Littorina_sitkana","Type 13",585,0.0875,6685.71428571429,NA,"Julia Bingham","Finished","Full","Full","35%","Counts likely low due to glare, some blur"
+"2014-11-04_YB-BFq1",2014-11-04,2014-11-04,"YB","BF","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts low due to algae."
+"2014-11-04_YB-BFq4",2014-11-04,2014-11-04,"YB","BF","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%",""
+"2014-11-04_YB-BFq9",2014-11-04,2014-11-04,"YB","BF","9","Mc","Mytilus_californianus","Type 17",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","35%","Counts likely low due to glare, some blur"
+"2014-11-04_YB-BFq1",2014-11-04,2014-11-04,"YB","BF","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts low due to algae."
+"2014-11-04_YB-BFq4",2014-11-04,2014-11-04,"YB","BF","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%",""
+"2014-11-04_YB-BFq9",2014-11-04,2014-11-04,"YB","BF","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","35%","Counts likely low due to glare, some blur"
+"2014-11-04_YB-BFq1",2014-11-04,2014-11-04,"YB","BF","1","Myt","Mytilus_spp","Type 7",186,0.0875,2125.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts low due to algae."
+"2014-11-04_YB-BFq4",2014-11-04,2014-11-04,"YB","BF","4","Myt","Mytilus_spp","Type 7",184,0.0875,2102.85714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","25%",""
+"2014-11-04_YB-BFq9",2014-11-04,2014-11-04,"YB","BF","9","Myt","Mytilus_spp","Type 7",2349,0.0875,26845.7142857143,NA,"Julia Bingham","Finished","Full","Full","35%","Counts likely low due to glare, some blur"
+"2014-11-04_YB-BFq1",2014-11-04,2014-11-04,"YB","BF","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts low due to algae."
+"2014-11-04_YB-BFq4",2014-11-04,2014-11-04,"YB","BF","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%",""
+"2014-11-04_YB-BFq9",2014-11-04,2014-11-04,"YB","BF","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","35%","Counts likely low due to glare, some blur"
+"2014-11-04_YB-BFq1",2014-11-04,2014-11-04,"YB","BF","1","Mt","Mytilus_trossulus","Type 15",210,0.0875,2400,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts low due to algae."
+"2014-11-04_YB-BFq4",2014-11-04,2014-11-04,"YB","BF","4","Mt","Mytilus_trossulus","Type 15",67,0.0875,765.714285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","25%",""
+"2014-11-04_YB-BFq9",2014-11-04,2014-11-04,"YB","BF","9","Mt","Mytilus_trossulus","Type 15",92,0.0875,1051.42857142857,NA,"Julia Bingham","Finished","Full","Full","35%","Counts likely low due to glare, some blur"
+"2014-11-04_YB-BFq1",2014-11-04,2014-11-04,"YB","BF","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts low due to algae."
+"2014-11-04_YB-BFq4",2014-11-04,2014-11-04,"YB","BF","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%",""
+"2014-11-04_YB-BFq9",2014-11-04,2014-11-04,"YB","BF","9","MtD","Mytilus_trossulus_(dead)","Type 16",3,0.0875,34.2857142857143,NA,"Julia Bingham","Finished","Full","Full","35%","Counts likely low due to glare, some blur"
+"2014-11-04_YB-BFq1",2014-11-04,2014-11-04,"YB","BF","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts low due to algae."
+"2014-11-04_YB-BFq4",2014-11-04,2014-11-04,"YB","BF","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%",""
+"2014-11-04_YB-BFq9",2014-11-04,2014-11-04,"YB","BF","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","35%","Counts likely low due to glare, some blur"
+"2014-11-04_YB-BFq1",2014-11-04,2014-11-04,"YB","BF","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts low due to algae."
+"2014-11-04_YB-BFq4",2014-11-04,2014-11-04,"YB","BF","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%",""
+"2014-11-04_YB-BFq9",2014-11-04,2014-11-04,"YB","BF","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","35%","Counts likely low due to glare, some blur"
+"2014-11-04_YB-BFq1",2014-11-04,2014-11-04,"YB","BF","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts low due to algae."
+"2014-11-04_YB-BFq4",2014-11-04,2014-11-04,"YB","BF","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%",""
+"2014-11-04_YB-BFq9",2014-11-04,2014-11-04,"YB","BF","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","35%","Counts likely low due to glare, some blur"
+"2014-11-04_YB-BFq1",2014-11-04,2014-11-04,"YB","BF","1","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts low due to algae."
+"2014-11-04_YB-BFq4",2014-11-04,2014-11-04,"YB","BF","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%",""
+"2014-11-04_YB-BFq9",2014-11-04,2014-11-04,"YB","BF","9","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","35%","Counts likely low due to glare, some blur"
+"2014-11-04_YB-BFq1",2014-11-04,2014-11-04,"YB","BF","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts low due to algae."
+"2014-11-04_YB-BFq4",2014-11-04,2014-11-04,"YB","BF","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%",""
+"2014-11-04_YB-BFq9",2014-11-04,2014-11-04,"YB","BF","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","35%","Counts likely low due to glare, some blur"
+"2014-11-04_YB-BFq1",2014-11-04,2014-11-04,"YB","BF","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts low due to algae."
+"2014-11-04_YB-BFq4",2014-11-04,2014-11-04,"YB","BF","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%",""
+"2014-11-04_YB-BFq9",2014-11-04,2014-11-04,"YB","BF","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","35%","Counts likely low due to glare, some blur"
+"2014-11-04_YB-BFq1",2014-11-04,2014-11-04,"YB","BF","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts low due to algae."
+"2014-11-04_YB-BFq4",2014-11-04,2014-11-04,"YB","BF","4","Pp","Pollicipes_polymerus","Type 11",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","25%",""
+"2014-11-04_YB-BFq9",2014-11-04,2014-11-04,"YB","BF","9","Pp","Pollicipes_polymerus","Type 11",3,0.0875,34.2857142857143,NA,"Julia Bingham","Finished","Full","Full","35%","Counts likely low due to glare, some blur"
+"2014-11-04_YB-BFq1",2014-11-04,2014-11-04,"YB","BF","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts low due to algae."
+"2014-11-04_YB-BFq4",2014-11-04,2014-11-04,"YB","BF","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%",""
+"2014-11-04_YB-BFq9",2014-11-04,2014-11-04,"YB","BF","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","35%","Counts likely low due to glare, some blur"
+"2014-11-04_YB-BFq1",2014-11-04,2014-11-04,"YB","BF","1","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts low due to algae."
+"2014-11-04_YB-BFq4",2014-11-04,2014-11-04,"YB","BF","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%",""
+"2014-11-04_YB-BFq9",2014-11-04,2014-11-04,"YB","BF","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","35%","Counts likely low due to glare, some blur"
+"2014-11-04_YB-BFq1",2014-11-04,2014-11-04,"YB","BF","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts low due to algae."
+"2014-11-04_YB-BFq4",2014-11-04,2014-11-04,"YB","BF","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%",""
+"2014-11-04_YB-BFq9",2014-11-04,2014-11-04,"YB","BF","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","35%","Counts likely low due to glare, some blur"
+"2014-11-04_YB-Cq2",2014-11-04,2014-11-04,"YB","C","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","25%",""
+"2014-11-04_YB-Cq4",2014-11-04,2014-11-04,"YB","C","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%",""
+"2014-11-04_YB-Cq6",2014-11-04,2014-11-04,"YB","C","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-Cq2",2014-11-04,2014-11-04,"YB","C","2","Ae","Anemones","Type 14",19,0.0875,217.142857142857,NA,"Beatriz Vaca","Finished","Cropped","Cropped","25%",""
+"2014-11-04_YB-Cq4",2014-11-04,2014-11-04,"YB","C","4","Ae","Anemones","Type 14",14,0.0875,160,NA,"Beatriz Vaca","Finished","Full","Cropped","25%",""
+"2014-11-04_YB-Cq6",2014-11-04,2014-11-04,"YB","C","6","Ae","Anemones","Type 14",25,0.0875,285.714285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-Cq2",2014-11-04,2014-11-04,"YB","C","2","Bg","Balanus_glandula","Type 1",51,0.015625,3264,"c","Beatriz Vaca","Finished","Cropped","Cropped","25%",""
+"2014-11-04_YB-Cq4",2014-11-04,2014-11-04,"YB","C","4","Bg","Balanus_glandula","Type 1",299,0.015625,19136,"c","Beatriz Vaca","Finished","Full","Cropped","25%",""
+"2014-11-04_YB-Cq6",2014-11-04,2014-11-04,"YB","C","6","Bg","Balanus_glandula","Type 1",221,0.015625,14144,"c","Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-Cq2",2014-11-04,2014-11-04,"YB","C","2","BgD","Balanus_glandula_(dead)","Type 2",10,0.015625,640,"c","Beatriz Vaca","Finished","Cropped","Cropped","25%",""
+"2014-11-04_YB-Cq4",2014-11-04,2014-11-04,"YB","C","4","BgD","Balanus_glandula_(dead)","Type 2",11,0.015625,704,"c","Beatriz Vaca","Finished","Full","Cropped","25%",""
+"2014-11-04_YB-Cq6",2014-11-04,2014-11-04,"YB","C","6","BgD","Balanus_glandula_(dead)","Type 2",7,0.015625,448,"c","Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-Cq2",2014-11-04,2014-11-04,"YB","C","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","25%",""
+"2014-11-04_YB-Cq4",2014-11-04,2014-11-04,"YB","C","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%",""
+"2014-11-04_YB-Cq6",2014-11-04,2014-11-04,"YB","C","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-Cq2",2014-11-04,2014-11-04,"YB","C","2","Cth","Chthamalus_dalli","Type 3",10,0.015625,640,"c","Beatriz Vaca","Finished","Cropped","Cropped","25%",""
+"2014-11-04_YB-Cq4",2014-11-04,2014-11-04,"YB","C","4","Cth","Chthamalus_dalli","Type 3",26,0.015625,1664,"c","Beatriz Vaca","Finished","Full","Cropped","25%",""
+"2014-11-04_YB-Cq6",2014-11-04,2014-11-04,"YB","C","6","Cth","Chthamalus_dalli","Type 3",23,0.015625,1472,"c","Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-Cq2",2014-11-04,2014-11-04,"YB","C","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","25%",""
+"2014-11-04_YB-Cq4",2014-11-04,2014-11-04,"YB","C","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","25%",""
+"2014-11-04_YB-Cq6",2014-11-04,2014-11-04,"YB","C","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-Cq2",2014-11-04,2014-11-04,"YB","C","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","25%",""
+"2014-11-04_YB-Cq4",2014-11-04,2014-11-04,"YB","C","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%",""
+"2014-11-04_YB-Cq6",2014-11-04,2014-11-04,"YB","C","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-Cq2",2014-11-04,2014-11-04,"YB","C","2","Lep","Leptasterias","Type 20",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Cropped","Cropped","25%",""
+"2014-11-04_YB-Cq4",2014-11-04,2014-11-04,"YB","C","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%",""
+"2014-11-04_YB-Cq6",2014-11-04,2014-11-04,"YB","C","6","Lep","Leptasterias","Type 20",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-Cq2",2014-11-04,2014-11-04,"YB","C","2","Lim","Limpets","Type 12",224,0.0875,2560,NA,"Beatriz Vaca","Finished","Cropped","Cropped","25%",""
+"2014-11-04_YB-Cq4",2014-11-04,2014-11-04,"YB","C","4","Lim","Limpets","Type 12",300,0.0875,3428.57142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","25%",""
+"2014-11-04_YB-Cq6",2014-11-04,2014-11-04,"YB","C","6","Lim","Limpets","Type 12",327,0.0875,3737.14285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-Cq2",2014-11-04,2014-11-04,"YB","C","2","Ls","Littorina_sitkana","Type 13",14,0.0875,160,NA,"Beatriz Vaca","Finished","Cropped","Cropped","25%",""
+"2014-11-04_YB-Cq4",2014-11-04,2014-11-04,"YB","C","4","Ls","Littorina_sitkana","Type 13",17,0.0875,194.285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","25%",""
+"2014-11-04_YB-Cq6",2014-11-04,2014-11-04,"YB","C","6","Ls","Littorina_sitkana","Type 13",16,0.0875,182.857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-Cq2",2014-11-04,2014-11-04,"YB","C","2","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","25%",""
+"2014-11-04_YB-Cq4",2014-11-04,2014-11-04,"YB","C","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%",""
+"2014-11-04_YB-Cq6",2014-11-04,2014-11-04,"YB","C","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-Cq2",2014-11-04,2014-11-04,"YB","C","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","25%",""
+"2014-11-04_YB-Cq4",2014-11-04,2014-11-04,"YB","C","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%",""
+"2014-11-04_YB-Cq6",2014-11-04,2014-11-04,"YB","C","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-Cq2",2014-11-04,2014-11-04,"YB","C","2","Myt","Mytilus_spp","Type 7",26,0.015625,1664,"c","Beatriz Vaca","Finished","Cropped","Cropped","25%",""
+"2014-11-04_YB-Cq4",2014-11-04,2014-11-04,"YB","C","4","Myt","Mytilus_spp","Type 7",118,0.0875,1348.57142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","25%",""
+"2014-11-04_YB-Cq6",2014-11-04,2014-11-04,"YB","C","6","Myt","Mytilus_spp","Type 7",90,0.0875,1028.57142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-Cq2",2014-11-04,2014-11-04,"YB","C","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","25%",""
+"2014-11-04_YB-Cq4",2014-11-04,2014-11-04,"YB","C","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%",""
+"2014-11-04_YB-Cq6",2014-11-04,2014-11-04,"YB","C","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-Cq2",2014-11-04,2014-11-04,"YB","C","2","Mt","Mytilus_trossulus","Type 15",22,0.015625,1408,"c","Beatriz Vaca","Finished","Cropped","Cropped","25%",""
+"2014-11-04_YB-Cq4",2014-11-04,2014-11-04,"YB","C","4","Mt","Mytilus_trossulus","Type 15",91,0.0875,1040,NA,"Beatriz Vaca","Finished","Full","Cropped","25%",""
+"2014-11-04_YB-Cq6",2014-11-04,2014-11-04,"YB","C","6","Mt","Mytilus_trossulus","Type 15",121,0.0875,1382.85714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-Cq2",2014-11-04,2014-11-04,"YB","C","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","25%",""
+"2014-11-04_YB-Cq4",2014-11-04,2014-11-04,"YB","C","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%",""
+"2014-11-04_YB-Cq6",2014-11-04,2014-11-04,"YB","C","6","MtD","Mytilus_trossulus_(dead)","Type 16",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-Cq2",2014-11-04,2014-11-04,"YB","C","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","25%",""
+"2014-11-04_YB-Cq4",2014-11-04,2014-11-04,"YB","C","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%",""
+"2014-11-04_YB-Cq6",2014-11-04,2014-11-04,"YB","C","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-Cq2",2014-11-04,2014-11-04,"YB","C","2","Nc","Nucella_canaliculata","Type 10",19,0.0875,217.142857142857,NA,"Beatriz Vaca","Finished","Cropped","Cropped","25%",""
+"2014-11-04_YB-Cq4",2014-11-04,2014-11-04,"YB","C","4","Nc","Nucella_canaliculata","Type 10",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Cropped","25%",""
+"2014-11-04_YB-Cq6",2014-11-04,2014-11-04,"YB","C","6","Nc","Nucella_canaliculata","Type 10",11,0.0875,125.714285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-Cq2",2014-11-04,2014-11-04,"YB","C","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","25%",""
+"2014-11-04_YB-Cq4",2014-11-04,2014-11-04,"YB","C","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%",""
+"2014-11-04_YB-Cq6",2014-11-04,2014-11-04,"YB","C","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-Cq2",2014-11-04,2014-11-04,"YB","C","2","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","25%",""
+"2014-11-04_YB-Cq4",2014-11-04,2014-11-04,"YB","C","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%",""
+"2014-11-04_YB-Cq6",2014-11-04,2014-11-04,"YB","C","6","No","Nucella_ostrina","Type 9",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-Cq2",2014-11-04,2014-11-04,"YB","C","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","25%",""
+"2014-11-04_YB-Cq4",2014-11-04,2014-11-04,"YB","C","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%",""
+"2014-11-04_YB-Cq6",2014-11-04,2014-11-04,"YB","C","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-Cq2",2014-11-04,2014-11-04,"YB","C","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","25%",""
+"2014-11-04_YB-Cq4",2014-11-04,2014-11-04,"YB","C","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%",""
+"2014-11-04_YB-Cq6",2014-11-04,2014-11-04,"YB","C","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-Cq2",2014-11-04,2014-11-04,"YB","C","2","Pp","Pollicipes_polymerus","Type 11",36,0.0875,411.428571428571,NA,"Beatriz Vaca","Finished","Cropped","Cropped","25%",""
+"2014-11-04_YB-Cq4",2014-11-04,2014-11-04,"YB","C","4","Pp","Pollicipes_polymerus","Type 11",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","25%",""
+"2014-11-04_YB-Cq6",2014-11-04,2014-11-04,"YB","C","6","Pp","Pollicipes_polymerus","Type 11",13,0.0875,148.571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-Cq2",2014-11-04,2014-11-04,"YB","C","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","25%",""
+"2014-11-04_YB-Cq4",2014-11-04,2014-11-04,"YB","C","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%",""
+"2014-11-04_YB-Cq6",2014-11-04,2014-11-04,"YB","C","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-Cq2",2014-11-04,2014-11-04,"YB","C","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","25%",""
+"2014-11-04_YB-Cq4",2014-11-04,2014-11-04,"YB","C","4","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","25%",""
+"2014-11-04_YB-Cq6",2014-11-04,2014-11-04,"YB","C","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-Cq2",2014-11-04,2014-11-04,"YB","C","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","25%",""
+"2014-11-04_YB-Cq4",2014-11-04,2014-11-04,"YB","C","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","25%",""
+"2014-11-04_YB-Cq6",2014-11-04,2014-11-04,"YB","C","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-Dq3",2014-11-04,2014-11-04,"YB","D","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","40%",""
+"2014-11-04_YB-Dq4",2014-11-04,2014-11-04,"YB","D","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-Dq5",2014-11-04,2014-11-04,"YB","D","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2014-11-04_YB-Dq3",2014-11-04,2014-11-04,"YB","D","3","Ae","Anemones","Type 14",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Cropped","Full","40%",""
+"2014-11-04_YB-Dq4",2014-11-04,2014-11-04,"YB","D","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-Dq5",2014-11-04,2014-11-04,"YB","D","5","Ae","Anemones","Type 14",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2014-11-04_YB-Dq3",2014-11-04,2014-11-04,"YB","D","3","Bg","Balanus_glandula","Type 1",732,0.0875,8365.71428571429,NA,"Beatriz Vaca","Finished","Cropped","Full","40%",""
+"2014-11-04_YB-Dq4",2014-11-04,2014-11-04,"YB","D","4","Bg","Balanus_glandula","Type 1",358,0.015625,22912,"c","Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-Dq5",2014-11-04,2014-11-04,"YB","D","5","Bg","Balanus_glandula","Type 1",866,0.0875,9897.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2014-11-04_YB-Dq3",2014-11-04,2014-11-04,"YB","D","3","BgD","Balanus_glandula_(dead)","Type 2",23,0.0875,262.857142857143,NA,"Beatriz Vaca","Finished","Cropped","Full","40%",""
+"2014-11-04_YB-Dq4",2014-11-04,2014-11-04,"YB","D","4","BgD","Balanus_glandula_(dead)","Type 2",1,0.015625,64,"c","Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-Dq5",2014-11-04,2014-11-04,"YB","D","5","BgD","Balanus_glandula_(dead)","Type 2",22,0.0875,251.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2014-11-04_YB-Dq3",2014-11-04,2014-11-04,"YB","D","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","40%",""
+"2014-11-04_YB-Dq4",2014-11-04,2014-11-04,"YB","D","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-Dq5",2014-11-04,2014-11-04,"YB","D","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2014-11-04_YB-Dq3",2014-11-04,2014-11-04,"YB","D","3","Cth","Chthamalus_dalli","Type 3",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Cropped","Full","40%",""
+"2014-11-04_YB-Dq4",2014-11-04,2014-11-04,"YB","D","4","Cth","Chthamalus_dalli","Type 3",4,0.015625,256,"c","Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-Dq5",2014-11-04,2014-11-04,"YB","D","5","Cth","Chthamalus_dalli","Type 3",44,0.0875,502.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2014-11-04_YB-Dq3",2014-11-04,2014-11-04,"YB","D","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","40%",""
+"2014-11-04_YB-Dq4",2014-11-04,2014-11-04,"YB","D","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-Dq5",2014-11-04,2014-11-04,"YB","D","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2014-11-04_YB-Dq3",2014-11-04,2014-11-04,"YB","D","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","40%",""
+"2014-11-04_YB-Dq4",2014-11-04,2014-11-04,"YB","D","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-Dq5",2014-11-04,2014-11-04,"YB","D","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2014-11-04_YB-Dq3",2014-11-04,2014-11-04,"YB","D","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","40%",""
+"2014-11-04_YB-Dq4",2014-11-04,2014-11-04,"YB","D","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-Dq5",2014-11-04,2014-11-04,"YB","D","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2014-11-04_YB-Dq3",2014-11-04,2014-11-04,"YB","D","3","Lim","Limpets","Type 12",116,0.0875,1325.71428571429,NA,"Beatriz Vaca","Finished","Cropped","Full","40%",""
+"2014-11-04_YB-Dq4",2014-11-04,2014-11-04,"YB","D","4","Lim","Limpets","Type 12",46,0.0875,525.714285714286,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-Dq5",2014-11-04,2014-11-04,"YB","D","5","Lim","Limpets","Type 12",336,0.0875,3840,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2014-11-04_YB-Dq3",2014-11-04,2014-11-04,"YB","D","3","Ls","Littorina_sitkana","Type 13",81,0.0875,925.714285714286,NA,"Beatriz Vaca","Finished","Cropped","Full","40%",""
+"2014-11-04_YB-Dq4",2014-11-04,2014-11-04,"YB","D","4","Ls","Littorina_sitkana","Type 13",280,0.0875,3200,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-Dq5",2014-11-04,2014-11-04,"YB","D","5","Ls","Littorina_sitkana","Type 13",165,0.0875,1885.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2014-11-04_YB-Dq3",2014-11-04,2014-11-04,"YB","D","3","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","40%",""
+"2014-11-04_YB-Dq4",2014-11-04,2014-11-04,"YB","D","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-Dq5",2014-11-04,2014-11-04,"YB","D","5","Mc","Mytilus_californianus","Type 17",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2014-11-04_YB-Dq3",2014-11-04,2014-11-04,"YB","D","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","40%",""
+"2014-11-04_YB-Dq4",2014-11-04,2014-11-04,"YB","D","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-Dq5",2014-11-04,2014-11-04,"YB","D","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2014-11-04_YB-Dq3",2014-11-04,2014-11-04,"YB","D","3","Myt","Mytilus_spp","Type 7",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","40%",""
+"2014-11-04_YB-Dq4",2014-11-04,2014-11-04,"YB","D","4","Myt","Mytilus_spp","Type 7",371,0.0875,4240,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-Dq5",2014-11-04,2014-11-04,"YB","D","5","Myt","Mytilus_spp","Type 7",47,0.0875,537.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2014-11-04_YB-Dq3",2014-11-04,2014-11-04,"YB","D","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","40%",""
+"2014-11-04_YB-Dq4",2014-11-04,2014-11-04,"YB","D","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-Dq5",2014-11-04,2014-11-04,"YB","D","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2014-11-04_YB-Dq3",2014-11-04,2014-11-04,"YB","D","3","Mt","Mytilus_trossulus","Type 15",142,0.015625,9088,"c","Beatriz Vaca","Finished","Cropped","Full","40%",""
+"2014-11-04_YB-Dq4",2014-11-04,2014-11-04,"YB","D","4","Mt","Mytilus_trossulus","Type 15",160,0.0875,1828.57142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-Dq5",2014-11-04,2014-11-04,"YB","D","5","Mt","Mytilus_trossulus","Type 15",452,0.0875,5165.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2014-11-04_YB-Dq3",2014-11-04,2014-11-04,"YB","D","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","40%",""
+"2014-11-04_YB-Dq4",2014-11-04,2014-11-04,"YB","D","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-Dq5",2014-11-04,2014-11-04,"YB","D","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2014-11-04_YB-Dq3",2014-11-04,2014-11-04,"YB","D","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","40%",""
+"2014-11-04_YB-Dq4",2014-11-04,2014-11-04,"YB","D","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-Dq5",2014-11-04,2014-11-04,"YB","D","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2014-11-04_YB-Dq3",2014-11-04,2014-11-04,"YB","D","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","40%",""
+"2014-11-04_YB-Dq4",2014-11-04,2014-11-04,"YB","D","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-Dq5",2014-11-04,2014-11-04,"YB","D","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2014-11-04_YB-Dq3",2014-11-04,2014-11-04,"YB","D","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","40%",""
+"2014-11-04_YB-Dq4",2014-11-04,2014-11-04,"YB","D","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-Dq5",2014-11-04,2014-11-04,"YB","D","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2014-11-04_YB-Dq3",2014-11-04,2014-11-04,"YB","D","3","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Cropped","Full","40%",""
+"2014-11-04_YB-Dq4",2014-11-04,2014-11-04,"YB","D","4","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-Dq5",2014-11-04,2014-11-04,"YB","D","5","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2014-11-04_YB-Dq3",2014-11-04,2014-11-04,"YB","D","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","40%",""
+"2014-11-04_YB-Dq4",2014-11-04,2014-11-04,"YB","D","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-Dq5",2014-11-04,2014-11-04,"YB","D","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2014-11-04_YB-Dq3",2014-11-04,2014-11-04,"YB","D","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","40%",""
+"2014-11-04_YB-Dq4",2014-11-04,2014-11-04,"YB","D","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-Dq5",2014-11-04,2014-11-04,"YB","D","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2014-11-04_YB-Dq3",2014-11-04,2014-11-04,"YB","D","3","Pp","Pollicipes_polymerus","Type 11",11,0.0875,125.714285714286,NA,"Beatriz Vaca","Finished","Cropped","Full","40%",""
+"2014-11-04_YB-Dq4",2014-11-04,2014-11-04,"YB","D","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-Dq5",2014-11-04,2014-11-04,"YB","D","5","Pp","Pollicipes_polymerus","Type 11",16,0.0875,182.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2014-11-04_YB-Dq3",2014-11-04,2014-11-04,"YB","D","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","40%",""
+"2014-11-04_YB-Dq4",2014-11-04,2014-11-04,"YB","D","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-Dq5",2014-11-04,2014-11-04,"YB","D","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2014-11-04_YB-Dq3",2014-11-04,2014-11-04,"YB","D","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","40%",""
+"2014-11-04_YB-Dq4",2014-11-04,2014-11-04,"YB","D","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-Dq5",2014-11-04,2014-11-04,"YB","D","5","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2014-11-04_YB-Dq3",2014-11-04,2014-11-04,"YB","D","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","40%",""
+"2014-11-04_YB-Dq4",2014-11-04,2014-11-04,"YB","D","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-Dq5",2014-11-04,2014-11-04,"YB","D","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2014-11-04_YB-Eq3",2014-11-04,2014-11-04,"YB","E","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to high water patches and glare"
+"2014-11-04_YB-Eq4",2014-11-04,2014-11-04,"YB","E","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","counts may be low due to glare and high algae coverage"
+"2014-11-04_YB-Eq8",2014-11-04,2014-11-04,"YB","E","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","All counts likely low due to glare and blur"
+"2014-11-04_YB-Eq3",2014-11-04,2014-11-04,"YB","E","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to high water patches and glare"
+"2014-11-04_YB-Eq4",2014-11-04,2014-11-04,"YB","E","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","counts may be low due to glare and high algae coverage"
+"2014-11-04_YB-Eq8",2014-11-04,2014-11-04,"YB","E","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","All counts likely low due to glare and blur"
+"2014-11-04_YB-Eq3",2014-11-04,2014-11-04,"YB","E","3","Bg","Balanus_glandula","Type 1",282,0.0875,3222.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to high water patches and glare"
+"2014-11-04_YB-Eq4",2014-11-04,2014-11-04,"YB","E","4","Bg","Balanus_glandula","Type 1",416,0.0875,4754.28571428571,NA,"Stephanie Merhoff","Finished","Full","Full","60%","counts may be low due to glare and high algae coverage"
+"2014-11-04_YB-Eq8",2014-11-04,2014-11-04,"YB","E","8","Bg","Balanus_glandula","Type 1",91,0.0875,1040,NA,"Stephanie Merhoff","Finished","Full","Full","45%","All counts likely low due to glare and blur"
+"2014-11-04_YB-Eq3",2014-11-04,2014-11-04,"YB","E","3","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to high water patches and glare"
+"2014-11-04_YB-Eq4",2014-11-04,2014-11-04,"YB","E","4","BgD","Balanus_glandula_(dead)","Type 2",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","60%","counts may be low due to glare and high algae coverage"
+"2014-11-04_YB-Eq8",2014-11-04,2014-11-04,"YB","E","8","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","All counts likely low due to glare and blur"
+"2014-11-04_YB-Eq3",2014-11-04,2014-11-04,"YB","E","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to high water patches and glare"
+"2014-11-04_YB-Eq4",2014-11-04,2014-11-04,"YB","E","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","counts may be low due to glare and high algae coverage"
+"2014-11-04_YB-Eq8",2014-11-04,2014-11-04,"YB","E","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","All counts likely low due to glare and blur"
+"2014-11-04_YB-Eq3",2014-11-04,2014-11-04,"YB","E","3","Cth","Chthamalus_dalli","Type 3",77,0.0875,880,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to high water patches and glare"
+"2014-11-04_YB-Eq4",2014-11-04,2014-11-04,"YB","E","4","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","counts may be low due to glare and high algae coverage"
+"2014-11-04_YB-Eq8",2014-11-04,2014-11-04,"YB","E","8","Cth","Chthamalus_dalli","Type 3",448,0.0875,5120,NA,"Stephanie Merhoff","Finished","Full","Full","45%","All counts likely low due to glare and blur"
+"2014-11-04_YB-Eq3",2014-11-04,2014-11-04,"YB","E","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to high water patches and glare"
+"2014-11-04_YB-Eq4",2014-11-04,2014-11-04,"YB","E","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","counts may be low due to glare and high algae coverage"
+"2014-11-04_YB-Eq8",2014-11-04,2014-11-04,"YB","E","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","All counts likely low due to glare and blur"
+"2014-11-04_YB-Eq3",2014-11-04,2014-11-04,"YB","E","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to high water patches and glare"
+"2014-11-04_YB-Eq4",2014-11-04,2014-11-04,"YB","E","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","counts may be low due to glare and high algae coverage"
+"2014-11-04_YB-Eq8",2014-11-04,2014-11-04,"YB","E","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","All counts likely low due to glare and blur"
+"2014-11-04_YB-Eq3",2014-11-04,2014-11-04,"YB","E","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to high water patches and glare"
+"2014-11-04_YB-Eq4",2014-11-04,2014-11-04,"YB","E","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","counts may be low due to glare and high algae coverage"
+"2014-11-04_YB-Eq8",2014-11-04,2014-11-04,"YB","E","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","All counts likely low due to glare and blur"
+"2014-11-04_YB-Eq3",2014-11-04,2014-11-04,"YB","E","3","Lim","Limpets","Type 12",35,0.0875,400,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to high water patches and glare"
+"2014-11-04_YB-Eq4",2014-11-04,2014-11-04,"YB","E","4","Lim","Limpets","Type 12",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","60%","counts may be low due to glare and high algae coverage"
+"2014-11-04_YB-Eq8",2014-11-04,2014-11-04,"YB","E","8","Lim","Limpets","Type 12",121,0.0875,1382.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","45%","All counts likely low due to glare and blur"
+"2014-11-04_YB-Eq3",2014-11-04,2014-11-04,"YB","E","3","Ls","Littorina_sitkana","Type 13",53,0.0875,605.714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to high water patches and glare"
+"2014-11-04_YB-Eq4",2014-11-04,2014-11-04,"YB","E","4","Ls","Littorina_sitkana","Type 13",45,0.0875,514.285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","60%","counts may be low due to glare and high algae coverage"
+"2014-11-04_YB-Eq8",2014-11-04,2014-11-04,"YB","E","8","Ls","Littorina_sitkana","Type 13",97,0.0875,1108.57142857143,NA,"Stephanie Merhoff","Finished","Full","Full","45%","All counts likely low due to glare and blur"
+"2014-11-04_YB-Eq3",2014-11-04,2014-11-04,"YB","E","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to high water patches and glare"
+"2014-11-04_YB-Eq4",2014-11-04,2014-11-04,"YB","E","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","counts may be low due to glare and high algae coverage"
+"2014-11-04_YB-Eq8",2014-11-04,2014-11-04,"YB","E","8","Mc","Mytilus_californianus","Type 17",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","45%","All counts likely low due to glare and blur"
+"2014-11-04_YB-Eq3",2014-11-04,2014-11-04,"YB","E","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to high water patches and glare"
+"2014-11-04_YB-Eq4",2014-11-04,2014-11-04,"YB","E","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","counts may be low due to glare and high algae coverage"
+"2014-11-04_YB-Eq8",2014-11-04,2014-11-04,"YB","E","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","All counts likely low due to glare and blur"
+"2014-11-04_YB-Eq3",2014-11-04,2014-11-04,"YB","E","3","Myt","Mytilus_spp","Type 7",117,0.0875,1337.14285714286,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to high water patches and glare"
+"2014-11-04_YB-Eq4",2014-11-04,2014-11-04,"YB","E","4","Myt","Mytilus_spp","Type 7",287,0.0875,3280,NA,"Stephanie Merhoff","Finished","Full","Full","60%","counts may be low due to glare and high algae coverage"
+"2014-11-04_YB-Eq8",2014-11-04,2014-11-04,"YB","E","8","Myt","Mytilus_spp","Type 7",728,0.0875,8320,NA,"Stephanie Merhoff","Finished","Full","Full","45%","All counts likely low due to glare and blur"
+"2014-11-04_YB-Eq3",2014-11-04,2014-11-04,"YB","E","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to high water patches and glare"
+"2014-11-04_YB-Eq4",2014-11-04,2014-11-04,"YB","E","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","counts may be low due to glare and high algae coverage"
+"2014-11-04_YB-Eq8",2014-11-04,2014-11-04,"YB","E","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","All counts likely low due to glare and blur"
+"2014-11-04_YB-Eq3",2014-11-04,2014-11-04,"YB","E","3","Mt","Mytilus_trossulus","Type 15",55,0.0875,628.571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to high water patches and glare"
+"2014-11-04_YB-Eq4",2014-11-04,2014-11-04,"YB","E","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","counts may be low due to glare and high algae coverage"
+"2014-11-04_YB-Eq8",2014-11-04,2014-11-04,"YB","E","8","Mt","Mytilus_trossulus","Type 15",24,0.0875,274.285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","45%","All counts likely low due to glare and blur"
+"2014-11-04_YB-Eq3",2014-11-04,2014-11-04,"YB","E","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to high water patches and glare"
+"2014-11-04_YB-Eq4",2014-11-04,2014-11-04,"YB","E","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","counts may be low due to glare and high algae coverage"
+"2014-11-04_YB-Eq8",2014-11-04,2014-11-04,"YB","E","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","All counts likely low due to glare and blur"
+"2014-11-04_YB-Eq3",2014-11-04,2014-11-04,"YB","E","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to high water patches and glare"
+"2014-11-04_YB-Eq4",2014-11-04,2014-11-04,"YB","E","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","counts may be low due to glare and high algae coverage"
+"2014-11-04_YB-Eq8",2014-11-04,2014-11-04,"YB","E","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","All counts likely low due to glare and blur"
+"2014-11-04_YB-Eq3",2014-11-04,2014-11-04,"YB","E","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to high water patches and glare"
+"2014-11-04_YB-Eq4",2014-11-04,2014-11-04,"YB","E","4","Nc","Nucella_canaliculata","Type 10",19,0.0875,217.142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","60%","counts may be low due to glare and high algae coverage"
+"2014-11-04_YB-Eq8",2014-11-04,2014-11-04,"YB","E","8","Nc","Nucella_canaliculata","Type 10",12,0.0875,137.142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","45%","All counts likely low due to glare and blur"
+"2014-11-04_YB-Eq3",2014-11-04,2014-11-04,"YB","E","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to high water patches and glare"
+"2014-11-04_YB-Eq4",2014-11-04,2014-11-04,"YB","E","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","counts may be low due to glare and high algae coverage"
+"2014-11-04_YB-Eq8",2014-11-04,2014-11-04,"YB","E","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","All counts likely low due to glare and blur"
+"2014-11-04_YB-Eq3",2014-11-04,2014-11-04,"YB","E","3","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to high water patches and glare"
+"2014-11-04_YB-Eq4",2014-11-04,2014-11-04,"YB","E","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","counts may be low due to glare and high algae coverage"
+"2014-11-04_YB-Eq8",2014-11-04,2014-11-04,"YB","E","8","No","Nucella_ostrina","Type 9",4,0.0875,45.7142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","45%","All counts likely low due to glare and blur"
+"2014-11-04_YB-Eq3",2014-11-04,2014-11-04,"YB","E","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to high water patches and glare"
+"2014-11-04_YB-Eq4",2014-11-04,2014-11-04,"YB","E","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","counts may be low due to glare and high algae coverage"
+"2014-11-04_YB-Eq8",2014-11-04,2014-11-04,"YB","E","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","All counts likely low due to glare and blur"
+"2014-11-04_YB-Eq3",2014-11-04,2014-11-04,"YB","E","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to high water patches and glare"
+"2014-11-04_YB-Eq4",2014-11-04,2014-11-04,"YB","E","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","counts may be low due to glare and high algae coverage"
+"2014-11-04_YB-Eq8",2014-11-04,2014-11-04,"YB","E","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","All counts likely low due to glare and blur"
+"2014-11-04_YB-Eq3",2014-11-04,2014-11-04,"YB","E","3","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to high water patches and glare"
+"2014-11-04_YB-Eq4",2014-11-04,2014-11-04,"YB","E","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","counts may be low due to glare and high algae coverage"
+"2014-11-04_YB-Eq8",2014-11-04,2014-11-04,"YB","E","8","Pp","Pollicipes_polymerus","Type 11",114,0.0875,1302.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","45%","All counts likely low due to glare and blur"
+"2014-11-04_YB-Eq3",2014-11-04,2014-11-04,"YB","E","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to high water patches and glare"
+"2014-11-04_YB-Eq4",2014-11-04,2014-11-04,"YB","E","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","counts may be low due to glare and high algae coverage"
+"2014-11-04_YB-Eq8",2014-11-04,2014-11-04,"YB","E","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","All counts likely low due to glare and blur"
+"2014-11-04_YB-Eq3",2014-11-04,2014-11-04,"YB","E","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to high water patches and glare"
+"2014-11-04_YB-Eq4",2014-11-04,2014-11-04,"YB","E","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","counts may be low due to glare and high algae coverage"
+"2014-11-04_YB-Eq8",2014-11-04,2014-11-04,"YB","E","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","All counts likely low due to glare and blur"
+"2014-11-04_YB-Eq3",2014-11-04,2014-11-04,"YB","E","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to high water patches and glare"
+"2014-11-04_YB-Eq4",2014-11-04,2014-11-04,"YB","E","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","counts may be low due to glare and high algae coverage"
+"2014-11-04_YB-Eq8",2014-11-04,2014-11-04,"YB","E","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","All counts likely low due to glare and blur"
+"2014-11-04_YB-Fq4",2014-11-04,2014-11-04,"YB","F","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-11-04_YB-Fq5",2014-11-04,2014-11-04,"YB","F","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2014-11-04_YB-Fq6",2014-11-04,2014-11-04,"YB","F","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2014-11-04_YB-Fq4",2014-11-04,2014-11-04,"YB","F","4","Ae","Anemones","Type 14",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-11-04_YB-Fq5",2014-11-04,2014-11-04,"YB","F","5","Ae","Anemones","Type 14",12,0.0875,137.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2014-11-04_YB-Fq6",2014-11-04,2014-11-04,"YB","F","6","Ae","Anemones","Type 14",11,0.0875,125.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2014-11-04_YB-Fq4",2014-11-04,2014-11-04,"YB","F","4","Bg","Balanus_glandula","Type 1",1399,0.0875,15988.5714285714,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-11-04_YB-Fq5",2014-11-04,2014-11-04,"YB","F","5","Bg","Balanus_glandula","Type 1",739,0.0875,8445.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2014-11-04_YB-Fq6",2014-11-04,2014-11-04,"YB","F","6","Bg","Balanus_glandula","Type 1",973,0.0875,11120,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2014-11-04_YB-Fq4",2014-11-04,2014-11-04,"YB","F","4","BgD","Balanus_glandula_(dead)","Type 2",10,0.0875,114.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-11-04_YB-Fq5",2014-11-04,2014-11-04,"YB","F","5","BgD","Balanus_glandula_(dead)","Type 2",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2014-11-04_YB-Fq6",2014-11-04,2014-11-04,"YB","F","6","BgD","Balanus_glandula_(dead)","Type 2",13,0.0875,148.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2014-11-04_YB-Fq4",2014-11-04,2014-11-04,"YB","F","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-11-04_YB-Fq5",2014-11-04,2014-11-04,"YB","F","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2014-11-04_YB-Fq6",2014-11-04,2014-11-04,"YB","F","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2014-11-04_YB-Fq4",2014-11-04,2014-11-04,"YB","F","4","Cth","Chthamalus_dalli","Type 3",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-11-04_YB-Fq5",2014-11-04,2014-11-04,"YB","F","5","Cth","Chthamalus_dalli","Type 3",39,0.0875,445.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2014-11-04_YB-Fq6",2014-11-04,2014-11-04,"YB","F","6","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2014-11-04_YB-Fq4",2014-11-04,2014-11-04,"YB","F","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-11-04_YB-Fq5",2014-11-04,2014-11-04,"YB","F","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2014-11-04_YB-Fq6",2014-11-04,2014-11-04,"YB","F","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2014-11-04_YB-Fq4",2014-11-04,2014-11-04,"YB","F","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-11-04_YB-Fq5",2014-11-04,2014-11-04,"YB","F","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2014-11-04_YB-Fq6",2014-11-04,2014-11-04,"YB","F","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2014-11-04_YB-Fq4",2014-11-04,2014-11-04,"YB","F","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-11-04_YB-Fq5",2014-11-04,2014-11-04,"YB","F","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2014-11-04_YB-Fq6",2014-11-04,2014-11-04,"YB","F","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2014-11-04_YB-Fq4",2014-11-04,2014-11-04,"YB","F","4","Lim","Limpets","Type 12",437,0.0875,4994.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-11-04_YB-Fq5",2014-11-04,2014-11-04,"YB","F","5","Lim","Limpets","Type 12",186,0.0875,2125.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2014-11-04_YB-Fq6",2014-11-04,2014-11-04,"YB","F","6","Lim","Limpets","Type 12",244,0.0875,2788.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2014-11-04_YB-Fq4",2014-11-04,2014-11-04,"YB","F","4","Ls","Littorina_sitkana","Type 13",477,0.0875,5451.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-11-04_YB-Fq5",2014-11-04,2014-11-04,"YB","F","5","Ls","Littorina_sitkana","Type 13",304,0.0875,3474.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2014-11-04_YB-Fq6",2014-11-04,2014-11-04,"YB","F","6","Ls","Littorina_sitkana","Type 13",309,0.0875,3531.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2014-11-04_YB-Fq4",2014-11-04,2014-11-04,"YB","F","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-11-04_YB-Fq5",2014-11-04,2014-11-04,"YB","F","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2014-11-04_YB-Fq6",2014-11-04,2014-11-04,"YB","F","6","Mc","Mytilus_californianus","Type 17",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2014-11-04_YB-Fq4",2014-11-04,2014-11-04,"YB","F","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-11-04_YB-Fq5",2014-11-04,2014-11-04,"YB","F","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2014-11-04_YB-Fq6",2014-11-04,2014-11-04,"YB","F","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2014-11-04_YB-Fq4",2014-11-04,2014-11-04,"YB","F","4","Myt","Mytilus_spp","Type 7",66,0.0875,754.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-11-04_YB-Fq5",2014-11-04,2014-11-04,"YB","F","5","Myt","Mytilus_spp","Type 7",85,0.0875,971.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2014-11-04_YB-Fq6",2014-11-04,2014-11-04,"YB","F","6","Myt","Mytilus_spp","Type 7",59,0.0875,674.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2014-11-04_YB-Fq4",2014-11-04,2014-11-04,"YB","F","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-11-04_YB-Fq5",2014-11-04,2014-11-04,"YB","F","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2014-11-04_YB-Fq6",2014-11-04,2014-11-04,"YB","F","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2014-11-04_YB-Fq4",2014-11-04,2014-11-04,"YB","F","4","Mt","Mytilus_trossulus","Type 15",717,0.0875,8194.28571428572,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-11-04_YB-Fq5",2014-11-04,2014-11-04,"YB","F","5","Mt","Mytilus_trossulus","Type 15",665,0.0875,7600,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2014-11-04_YB-Fq6",2014-11-04,2014-11-04,"YB","F","6","Mt","Mytilus_trossulus","Type 15",507,0.0875,5794.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2014-11-04_YB-Fq4",2014-11-04,2014-11-04,"YB","F","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-11-04_YB-Fq5",2014-11-04,2014-11-04,"YB","F","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2014-11-04_YB-Fq6",2014-11-04,2014-11-04,"YB","F","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2014-11-04_YB-Fq4",2014-11-04,2014-11-04,"YB","F","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-11-04_YB-Fq5",2014-11-04,2014-11-04,"YB","F","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2014-11-04_YB-Fq6",2014-11-04,2014-11-04,"YB","F","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2014-11-04_YB-Fq4",2014-11-04,2014-11-04,"YB","F","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-11-04_YB-Fq5",2014-11-04,2014-11-04,"YB","F","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2014-11-04_YB-Fq6",2014-11-04,2014-11-04,"YB","F","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2014-11-04_YB-Fq4",2014-11-04,2014-11-04,"YB","F","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-11-04_YB-Fq5",2014-11-04,2014-11-04,"YB","F","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2014-11-04_YB-Fq6",2014-11-04,2014-11-04,"YB","F","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2014-11-04_YB-Fq4",2014-11-04,2014-11-04,"YB","F","4","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-11-04_YB-Fq5",2014-11-04,2014-11-04,"YB","F","5","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2014-11-04_YB-Fq6",2014-11-04,2014-11-04,"YB","F","6","No","Nucella_ostrina","Type 9",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2014-11-04_YB-Fq4",2014-11-04,2014-11-04,"YB","F","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-11-04_YB-Fq5",2014-11-04,2014-11-04,"YB","F","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2014-11-04_YB-Fq6",2014-11-04,2014-11-04,"YB","F","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2014-11-04_YB-Fq4",2014-11-04,2014-11-04,"YB","F","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-11-04_YB-Fq5",2014-11-04,2014-11-04,"YB","F","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2014-11-04_YB-Fq6",2014-11-04,2014-11-04,"YB","F","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2014-11-04_YB-Fq4",2014-11-04,2014-11-04,"YB","F","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-11-04_YB-Fq5",2014-11-04,2014-11-04,"YB","F","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2014-11-04_YB-Fq6",2014-11-04,2014-11-04,"YB","F","6","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2014-11-04_YB-Fq4",2014-11-04,2014-11-04,"YB","F","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-11-04_YB-Fq5",2014-11-04,2014-11-04,"YB","F","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2014-11-04_YB-Fq6",2014-11-04,2014-11-04,"YB","F","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2014-11-04_YB-Fq4",2014-11-04,2014-11-04,"YB","F","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-11-04_YB-Fq5",2014-11-04,2014-11-04,"YB","F","5","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2014-11-04_YB-Fq6",2014-11-04,2014-11-04,"YB","F","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2014-11-04_YB-Fq4",2014-11-04,2014-11-04,"YB","F","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2014-11-04_YB-Fq5",2014-11-04,2014-11-04,"YB","F","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2014-11-04_YB-Fq6",2014-11-04,2014-11-04,"YB","F","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2014-11-04_YB-Gq3",2014-11-04,2014-11-04,"YB","G","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to glare"
+"2014-11-04_YB-Gq5",2014-11-04,2014-11-04,"YB","G","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts low due to glare and water cover. Water cover~20%"
+"2014-11-04_YB-Gq8",2014-11-04,2014-11-04,"YB","G","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-Gq3",2014-11-04,2014-11-04,"YB","G","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to glare"
+"2014-11-04_YB-Gq5",2014-11-04,2014-11-04,"YB","G","5","Ae","Anemones","Type 14",59,0.0875,674.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts low due to glare and water cover. Water cover~20%"
+"2014-11-04_YB-Gq8",2014-11-04,2014-11-04,"YB","G","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-Gq3",2014-11-04,2014-11-04,"YB","G","3","Bg","Balanus_glandula","Type 1",421,0.0875,4811.42857142857,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to glare"
+"2014-11-04_YB-Gq5",2014-11-04,2014-11-04,"YB","G","5","Bg","Balanus_glandula","Type 1",578,0.0875,6605.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts low due to glare and water cover. Water cover~20%"
+"2014-11-04_YB-Gq8",2014-11-04,2014-11-04,"YB","G","8","Bg","Balanus_glandula","Type 1",501,0.015625,32064,"c","Celeste Moen","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-Gq3",2014-11-04,2014-11-04,"YB","G","3","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to glare"
+"2014-11-04_YB-Gq5",2014-11-04,2014-11-04,"YB","G","5","BgD","Balanus_glandula_(dead)","Type 2",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts low due to glare and water cover. Water cover~20%"
+"2014-11-04_YB-Gq8",2014-11-04,2014-11-04,"YB","G","8","BgD","Balanus_glandula_(dead)","Type 2",13,0.015625,832,"c","Celeste Moen","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-Gq3",2014-11-04,2014-11-04,"YB","G","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to glare"
+"2014-11-04_YB-Gq5",2014-11-04,2014-11-04,"YB","G","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts low due to glare and water cover. Water cover~20%"
+"2014-11-04_YB-Gq8",2014-11-04,2014-11-04,"YB","G","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-Gq3",2014-11-04,2014-11-04,"YB","G","3","Cth","Chthamalus_dalli","Type 3",4,0.0875,45.7142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to glare"
+"2014-11-04_YB-Gq5",2014-11-04,2014-11-04,"YB","G","5","Cth","Chthamalus_dalli","Type 3",28,0.0875,320,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts low due to glare and water cover. Water cover~20%"
+"2014-11-04_YB-Gq8",2014-11-04,2014-11-04,"YB","G","8","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Celeste Moen","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-Gq3",2014-11-04,2014-11-04,"YB","G","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to glare"
+"2014-11-04_YB-Gq5",2014-11-04,2014-11-04,"YB","G","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts low due to glare and water cover. Water cover~20%"
+"2014-11-04_YB-Gq8",2014-11-04,2014-11-04,"YB","G","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Celeste Moen","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-Gq3",2014-11-04,2014-11-04,"YB","G","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to glare"
+"2014-11-04_YB-Gq5",2014-11-04,2014-11-04,"YB","G","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts low due to glare and water cover. Water cover~20%"
+"2014-11-04_YB-Gq8",2014-11-04,2014-11-04,"YB","G","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-Gq3",2014-11-04,2014-11-04,"YB","G","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to glare"
+"2014-11-04_YB-Gq5",2014-11-04,2014-11-04,"YB","G","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts low due to glare and water cover. Water cover~20%"
+"2014-11-04_YB-Gq8",2014-11-04,2014-11-04,"YB","G","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-Gq3",2014-11-04,2014-11-04,"YB","G","3","Lim","Limpets","Type 12",12,0.0875,137.142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to glare"
+"2014-11-04_YB-Gq5",2014-11-04,2014-11-04,"YB","G","5","Lim","Limpets","Type 12",162,0.0875,1851.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts low due to glare and water cover. Water cover~20%"
+"2014-11-04_YB-Gq8",2014-11-04,2014-11-04,"YB","G","8","Lim","Limpets","Type 12",107,0.0875,1222.85714285714,NA,"Celeste Moen","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-Gq3",2014-11-04,2014-11-04,"YB","G","3","Ls","Littorina_sitkana","Type 13",27,0.0875,308.571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to glare"
+"2014-11-04_YB-Gq5",2014-11-04,2014-11-04,"YB","G","5","Ls","Littorina_sitkana","Type 13",44,0.0875,502.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts low due to glare and water cover. Water cover~20%"
+"2014-11-04_YB-Gq8",2014-11-04,2014-11-04,"YB","G","8","Ls","Littorina_sitkana","Type 13",65,0.0875,742.857142857143,NA,"Celeste Moen","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-Gq3",2014-11-04,2014-11-04,"YB","G","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to glare"
+"2014-11-04_YB-Gq5",2014-11-04,2014-11-04,"YB","G","5","Mc","Mytilus_californianus","Type 17",85,0.0875,971.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts low due to glare and water cover. Water cover~20%"
+"2014-11-04_YB-Gq8",2014-11-04,2014-11-04,"YB","G","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-Gq3",2014-11-04,2014-11-04,"YB","G","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to glare"
+"2014-11-04_YB-Gq5",2014-11-04,2014-11-04,"YB","G","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts low due to glare and water cover. Water cover~20%"
+"2014-11-04_YB-Gq8",2014-11-04,2014-11-04,"YB","G","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-Gq3",2014-11-04,2014-11-04,"YB","G","3","Myt","Mytilus_spp","Type 7",560,0.0875,6400,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to glare"
+"2014-11-04_YB-Gq5",2014-11-04,2014-11-04,"YB","G","5","Myt","Mytilus_spp","Type 7",532,0.0875,6080,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts low due to glare and water cover. Water cover~20%"
+"2014-11-04_YB-Gq8",2014-11-04,2014-11-04,"YB","G","8","Myt","Mytilus_spp","Type 7",355,0.0875,4057.14285714286,NA,"Celeste Moen","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-Gq3",2014-11-04,2014-11-04,"YB","G","3","MytD","Mytilus_spp_(dead)","Type 8",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to glare"
+"2014-11-04_YB-Gq5",2014-11-04,2014-11-04,"YB","G","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts low due to glare and water cover. Water cover~20%"
+"2014-11-04_YB-Gq8",2014-11-04,2014-11-04,"YB","G","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-Gq3",2014-11-04,2014-11-04,"YB","G","3","Mt","Mytilus_trossulus","Type 15",150,0.0875,1714.28571428571,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to glare"
+"2014-11-04_YB-Gq5",2014-11-04,2014-11-04,"YB","G","5","Mt","Mytilus_trossulus","Type 15",462,0.0875,5280,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts low due to glare and water cover. Water cover~20%"
+"2014-11-04_YB-Gq8",2014-11-04,2014-11-04,"YB","G","8","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-Gq3",2014-11-04,2014-11-04,"YB","G","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to glare"
+"2014-11-04_YB-Gq5",2014-11-04,2014-11-04,"YB","G","5","MtD","Mytilus_trossulus_(dead)","Type 16",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts low due to glare and water cover. Water cover~20%"
+"2014-11-04_YB-Gq8",2014-11-04,2014-11-04,"YB","G","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-Gq3",2014-11-04,2014-11-04,"YB","G","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to glare"
+"2014-11-04_YB-Gq5",2014-11-04,2014-11-04,"YB","G","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts low due to glare and water cover. Water cover~20%"
+"2014-11-04_YB-Gq8",2014-11-04,2014-11-04,"YB","G","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-Gq3",2014-11-04,2014-11-04,"YB","G","3","Nc","Nucella_canaliculata","Type 10",4,0.0875,45.7142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to glare"
+"2014-11-04_YB-Gq5",2014-11-04,2014-11-04,"YB","G","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts low due to glare and water cover. Water cover~20%"
+"2014-11-04_YB-Gq8",2014-11-04,2014-11-04,"YB","G","8","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Celeste Moen","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-Gq3",2014-11-04,2014-11-04,"YB","G","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to glare"
+"2014-11-04_YB-Gq5",2014-11-04,2014-11-04,"YB","G","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts low due to glare and water cover. Water cover~20%"
+"2014-11-04_YB-Gq8",2014-11-04,2014-11-04,"YB","G","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-Gq3",2014-11-04,2014-11-04,"YB","G","3","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to glare"
+"2014-11-04_YB-Gq5",2014-11-04,2014-11-04,"YB","G","5","No","Nucella_ostrina","Type 9",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts low due to glare and water cover. Water cover~20%"
+"2014-11-04_YB-Gq8",2014-11-04,2014-11-04,"YB","G","8","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-Gq3",2014-11-04,2014-11-04,"YB","G","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to glare"
+"2014-11-04_YB-Gq5",2014-11-04,2014-11-04,"YB","G","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts low due to glare and water cover. Water cover~20%"
+"2014-11-04_YB-Gq8",2014-11-04,2014-11-04,"YB","G","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-Gq3",2014-11-04,2014-11-04,"YB","G","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to glare"
+"2014-11-04_YB-Gq5",2014-11-04,2014-11-04,"YB","G","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts low due to glare and water cover. Water cover~20%"
+"2014-11-04_YB-Gq8",2014-11-04,2014-11-04,"YB","G","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-Gq3",2014-11-04,2014-11-04,"YB","G","3","Pp","Pollicipes_polymerus","Type 11",9,0.0875,102.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to glare"
+"2014-11-04_YB-Gq5",2014-11-04,2014-11-04,"YB","G","5","Pp","Pollicipes_polymerus","Type 11",49,0.0875,560,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts low due to glare and water cover. Water cover~20%"
+"2014-11-04_YB-Gq8",2014-11-04,2014-11-04,"YB","G","8","Pp","Pollicipes_polymerus","Type 11",36,0.0875,411.428571428571,NA,"Celeste Moen","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-Gq3",2014-11-04,2014-11-04,"YB","G","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to glare"
+"2014-11-04_YB-Gq5",2014-11-04,2014-11-04,"YB","G","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts low due to glare and water cover. Water cover~20%"
+"2014-11-04_YB-Gq8",2014-11-04,2014-11-04,"YB","G","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-Gq3",2014-11-04,2014-11-04,"YB","G","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to glare"
+"2014-11-04_YB-Gq5",2014-11-04,2014-11-04,"YB","G","5","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts low due to glare and water cover. Water cover~20%"
+"2014-11-04_YB-Gq8",2014-11-04,2014-11-04,"YB","G","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","15%",""
+"2014-11-04_YB-Gq3",2014-11-04,2014-11-04,"YB","G","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to glare"
+"2014-11-04_YB-Gq5",2014-11-04,2014-11-04,"YB","G","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts low due to glare and water cover. Water cover~20%"
+"2014-11-04_YB-Gq8",2014-11-04,2014-11-04,"YB","G","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","15%",""
+"2014-12-04_YB-Aq6",2014-12-04,2014-12-04,"YB","A","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","7%",""
+"2014-12-04_YB-Aq7",2014-12-04,2014-12-04,"YB","A","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-12-04_YB-Aq9",2014-12-04,2014-12-04,"YB","A","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%","Counts may be low due to blur in corners of photo"
+"2014-12-04_YB-Aq6",2014-12-04,2014-12-04,"YB","A","6","Ae","Anemones","Type 14",17,0.0875,194.285714285714,NA,"Celeste Moen","Finished","Full","Full","7%",""
+"2014-12-04_YB-Aq7",2014-12-04,2014-12-04,"YB","A","7","Ae","Anemones","Type 14",65,0.0875,742.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-12-04_YB-Aq9",2014-12-04,2014-12-04,"YB","A","9","Ae","Anemones","Type 14",79,0.0875,902.857142857143,NA,"Julia Bingham","Finished","Full","Full","15%","Counts may be low due to blur in corners of photo"
+"2014-12-04_YB-Aq6",2014-12-04,2014-12-04,"YB","A","6","Bg","Balanus_glandula","Type 1",509,0.0875,5817.14285714286,NA,"Celeste Moen","Finished","Full","Full","7%",""
+"2014-12-04_YB-Aq7",2014-12-04,2014-12-04,"YB","A","7","Bg","Balanus_glandula","Type 1",1057,0.0875,12080,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-12-04_YB-Aq9",2014-12-04,2014-12-04,"YB","A","9","Bg","Balanus_glandula","Type 1",1518,0.0875,17348.5714285714,NA,"Julia Bingham","Finished","Full","Full","15%","Counts may be low due to blur in corners of photo"
+"2014-12-04_YB-Aq6",2014-12-04,2014-12-04,"YB","A","6","BgD","Balanus_glandula_(dead)","Type 2",94,0.0875,1074.28571428571,NA,"Celeste Moen","Finished","Full","Full","7%",""
+"2014-12-04_YB-Aq7",2014-12-04,2014-12-04,"YB","A","7","BgD","Balanus_glandula_(dead)","Type 2",91,0.0875,1040,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-12-04_YB-Aq9",2014-12-04,2014-12-04,"YB","A","9","BgD","Balanus_glandula_(dead)","Type 2",185,0.0875,2114.28571428571,NA,"Julia Bingham","Finished","Full","Full","15%","Counts may be low due to blur in corners of photo"
+"2014-12-04_YB-Aq6",2014-12-04,2014-12-04,"YB","A","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","7%",""
+"2014-12-04_YB-Aq7",2014-12-04,2014-12-04,"YB","A","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-12-04_YB-Aq9",2014-12-04,2014-12-04,"YB","A","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%","Counts may be low due to blur in corners of photo"
+"2014-12-04_YB-Aq6",2014-12-04,2014-12-04,"YB","A","6","Cth","Chthamalus_dalli","Type 3",4,0.0875,45.7142857142857,NA,"Celeste Moen","Finished","Full","Full","7%",""
+"2014-12-04_YB-Aq7",2014-12-04,2014-12-04,"YB","A","7","Cth","Chthamalus_dalli","Type 3",97,0.0875,1108.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-12-04_YB-Aq9",2014-12-04,2014-12-04,"YB","A","9","Cth","Chthamalus_dalli","Type 3",182,0.0875,2080,NA,"Julia Bingham","Finished","Full","Full","15%","Counts may be low due to blur in corners of photo"
+"2014-12-04_YB-Aq6",2014-12-04,2014-12-04,"YB","A","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","7%",""
+"2014-12-04_YB-Aq7",2014-12-04,2014-12-04,"YB","A","7","CthD","Chthamalus_dalli (dead)","Type 4",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-12-04_YB-Aq9",2014-12-04,2014-12-04,"YB","A","9","CthD","Chthamalus_dalli (dead)","Type 4",8,0.0875,91.4285714285714,NA,"Julia Bingham","Finished","Full","Full","15%","Counts may be low due to blur in corners of photo"
+"2014-12-04_YB-Aq6",2014-12-04,2014-12-04,"YB","A","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","7%",""
+"2014-12-04_YB-Aq7",2014-12-04,2014-12-04,"YB","A","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-12-04_YB-Aq9",2014-12-04,2014-12-04,"YB","A","9","Emp","Emplectonema worm","Type 23",3,0.0875,34.2857142857143,NA,"Julia Bingham","Finished","Full","Full","15%","Counts may be low due to blur in corners of photo"
+"2014-12-04_YB-Aq6",2014-12-04,2014-12-04,"YB","A","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","7%",""
+"2014-12-04_YB-Aq7",2014-12-04,2014-12-04,"YB","A","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-12-04_YB-Aq9",2014-12-04,2014-12-04,"YB","A","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%","Counts may be low due to blur in corners of photo"
+"2014-12-04_YB-Aq6",2014-12-04,2014-12-04,"YB","A","6","Lim","Limpets","Type 12",121,0.0875,1382.85714285714,NA,"Celeste Moen","Finished","Full","Full","7%",""
+"2014-12-04_YB-Aq7",2014-12-04,2014-12-04,"YB","A","7","Lim","Limpets","Type 12",218,0.0875,2491.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-12-04_YB-Aq9",2014-12-04,2014-12-04,"YB","A","9","Lim","Limpets","Type 12",141,0.0875,1611.42857142857,NA,"Julia Bingham","Finished","Full","Full","15%","Counts may be low due to blur in corners of photo"
+"2014-12-04_YB-Aq6",2014-12-04,2014-12-04,"YB","A","6","Ls","Littorina_sitkana","Type 13",5,0.0875,57.1428571428571,NA,"Celeste Moen","Finished","Full","Full","7%",""
+"2014-12-04_YB-Aq7",2014-12-04,2014-12-04,"YB","A","7","Ls","Littorina_sitkana","Type 13",37,0.0875,422.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-12-04_YB-Aq9",2014-12-04,2014-12-04,"YB","A","9","Ls","Littorina_sitkana","Type 13",122,0.0875,1394.28571428571,NA,"Julia Bingham","Finished","Full","Full","15%","Counts may be low due to blur in corners of photo"
+"2014-12-04_YB-Aq6",2014-12-04,2014-12-04,"YB","A","6","Mc","Mytilus_californianus","Type 17",153,0.0875,1748.57142857143,NA,"Celeste Moen","Finished","Full","Full","7%",""
+"2014-12-04_YB-Aq7",2014-12-04,2014-12-04,"YB","A","7","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-12-04_YB-Aq9",2014-12-04,2014-12-04,"YB","A","9","Mc","Mytilus_californianus","Type 17",8,0.0875,91.4285714285714,NA,"Julia Bingham","Finished","Full","Full","15%","Counts may be low due to blur in corners of photo"
+"2014-12-04_YB-Aq6",2014-12-04,2014-12-04,"YB","A","6","McD","Mytilus_californianus_(dead)","Type 18",2,0.0875,22.8571428571429,NA,"Celeste Moen","Finished","Full","Full","7%",""
+"2014-12-04_YB-Aq7",2014-12-04,2014-12-04,"YB","A","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-12-04_YB-Aq9",2014-12-04,2014-12-04,"YB","A","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%","Counts may be low due to blur in corners of photo"
+"2014-12-04_YB-Aq6",2014-12-04,2014-12-04,"YB","A","6","Myt","Mytilus_spp","Type 7",123,0.0875,1405.71428571429,NA,"Celeste Moen","Finished","Full","Full","7%",""
+"2014-12-04_YB-Aq7",2014-12-04,2014-12-04,"YB","A","7","Myt","Mytilus_spp","Type 7",68,0.0875,777.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-12-04_YB-Aq9",2014-12-04,2014-12-04,"YB","A","9","Myt","Mytilus_spp","Type 7",850,0.0875,9714.28571428572,NA,"Julia Bingham","Finished","Full","Full","15%","Counts may be low due to blur in corners of photo"
+"2014-12-04_YB-Aq6",2014-12-04,2014-12-04,"YB","A","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","7%",""
+"2014-12-04_YB-Aq7",2014-12-04,2014-12-04,"YB","A","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-12-04_YB-Aq9",2014-12-04,2014-12-04,"YB","A","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%","Counts may be low due to blur in corners of photo"
+"2014-12-04_YB-Aq6",2014-12-04,2014-12-04,"YB","A","6","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","7%",""
+"2014-12-04_YB-Aq7",2014-12-04,2014-12-04,"YB","A","7","Mt","Mytilus_trossulus","Type 15",284,0.0875,3245.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-12-04_YB-Aq9",2014-12-04,2014-12-04,"YB","A","9","Mt","Mytilus_trossulus","Type 15",584,0.0875,6674.28571428571,NA,"Julia Bingham","Finished","Full","Full","15%","Counts may be low due to blur in corners of photo"
+"2014-12-04_YB-Aq6",2014-12-04,2014-12-04,"YB","A","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","7%",""
+"2014-12-04_YB-Aq7",2014-12-04,2014-12-04,"YB","A","7","MtD","Mytilus_trossulus_(dead)","Type 16",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-12-04_YB-Aq9",2014-12-04,2014-12-04,"YB","A","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%","Counts may be low due to blur in corners of photo"
+"2014-12-04_YB-Aq6",2014-12-04,2014-12-04,"YB","A","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","7%",""
+"2014-12-04_YB-Aq7",2014-12-04,2014-12-04,"YB","A","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-12-04_YB-Aq9",2014-12-04,2014-12-04,"YB","A","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%","Counts may be low due to blur in corners of photo"
+"2014-12-04_YB-Aq6",2014-12-04,2014-12-04,"YB","A","6","Nc","Nucella_canaliculata","Type 10",17,0.0875,194.285714285714,NA,"Celeste Moen","Finished","Full","Full","7%",""
+"2014-12-04_YB-Aq7",2014-12-04,2014-12-04,"YB","A","7","Nc","Nucella_canaliculata","Type 10",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-12-04_YB-Aq9",2014-12-04,2014-12-04,"YB","A","9","Nc","Nucella_canaliculata","Type 10",16,0.0875,182.857142857143,NA,"Julia Bingham","Finished","Full","Full","15%","Counts may be low due to blur in corners of photo"
+"2014-12-04_YB-Aq6",2014-12-04,2014-12-04,"YB","A","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","7%",""
+"2014-12-04_YB-Aq7",2014-12-04,2014-12-04,"YB","A","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-12-04_YB-Aq9",2014-12-04,2014-12-04,"YB","A","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%","Counts may be low due to blur in corners of photo"
+"2014-12-04_YB-Aq6",2014-12-04,2014-12-04,"YB","A","6","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","7%",""
+"2014-12-04_YB-Aq7",2014-12-04,2014-12-04,"YB","A","7","No","Nucella_ostrina","Type 9",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-12-04_YB-Aq9",2014-12-04,2014-12-04,"YB","A","9","No","Nucella_ostrina","Type 9",4,0.0875,45.7142857142857,NA,"Julia Bingham","Finished","Full","Full","15%","Counts may be low due to blur in corners of photo"
+"2014-12-04_YB-Aq6",2014-12-04,2014-12-04,"YB","A","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","7%",""
+"2014-12-04_YB-Aq7",2014-12-04,2014-12-04,"YB","A","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-12-04_YB-Aq9",2014-12-04,2014-12-04,"YB","A","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%","Counts may be low due to blur in corners of photo"
+"2014-12-04_YB-Aq6",2014-12-04,2014-12-04,"YB","A","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","7%",""
+"2014-12-04_YB-Aq7",2014-12-04,2014-12-04,"YB","A","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-12-04_YB-Aq9",2014-12-04,2014-12-04,"YB","A","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%","Counts may be low due to blur in corners of photo"
+"2014-12-04_YB-Aq6",2014-12-04,2014-12-04,"YB","A","6","Pp","Pollicipes_polymerus","Type 11",11,0.0875,125.714285714286,NA,"Celeste Moen","Finished","Full","Full","7%",""
+"2014-12-04_YB-Aq7",2014-12-04,2014-12-04,"YB","A","7","Pp","Pollicipes_polymerus","Type 11",132,0.0875,1508.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-12-04_YB-Aq9",2014-12-04,2014-12-04,"YB","A","9","Pp","Pollicipes_polymerus","Type 11",176,0.0875,2011.42857142857,NA,"Julia Bingham","Finished","Full","Full","15%","Counts may be low due to blur in corners of photo"
+"2014-12-04_YB-Aq6",2014-12-04,2014-12-04,"YB","A","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","7%",""
+"2014-12-04_YB-Aq7",2014-12-04,2014-12-04,"YB","A","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-12-04_YB-Aq9",2014-12-04,2014-12-04,"YB","A","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%","Counts may be low due to blur in corners of photo"
+"2014-12-04_YB-Aq6",2014-12-04,2014-12-04,"YB","A","6","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Celeste Moen","Finished","Full","Full","7%",""
+"2014-12-04_YB-Aq7",2014-12-04,2014-12-04,"YB","A","7","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-12-04_YB-Aq9",2014-12-04,2014-12-04,"YB","A","9","Sc","Semibalanus_cariosus","Type 5",6,0.0875,68.5714285714286,NA,"Julia Bingham","Finished","Full","Full","15%","Counts may be low due to blur in corners of photo"
+"2014-12-04_YB-Aq6",2014-12-04,2014-12-04,"YB","A","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","7%",""
+"2014-12-04_YB-Aq7",2014-12-04,2014-12-04,"YB","A","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-12-04_YB-Aq9",2014-12-04,2014-12-04,"YB","A","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%","Counts may be low due to blur in corners of photo"
+"2014-12-08_YB-ABq1",2014-12-04,2014-12-08,"YB","AB","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-12-08_YB-ABq2",2014-12-04,2014-12-08,"YB","AB","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","2%","Counts likely low due to glare and blur, especially acorn barnacles"
+"2014-12-08_YB-ABq4",2014-12-04,2014-12-08,"YB","AB","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-12-08_YB-ABq1",2014-12-04,2014-12-08,"YB","AB","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-12-08_YB-ABq2",2014-12-04,2014-12-08,"YB","AB","2","Ae","Anemones","Type 14",11,0.0875,125.714285714286,NA,"Beatriz Vaca","Finished","Cropped","Full","2%","Counts likely low due to glare and blur, especially acorn barnacles"
+"2014-12-08_YB-ABq4",2014-12-04,2014-12-08,"YB","AB","4","Ae","Anemones","Type 14",15,0.0875,171.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-12-08_YB-ABq1",2014-12-04,2014-12-08,"YB","AB","1","Bg","Balanus_glandula","Type 1",301,0.015625,19264,"c","Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-12-08_YB-ABq2",2014-12-04,2014-12-08,"YB","AB","2","Bg","Balanus_glandula","Type 1",146,0.0875,1668.57142857143,NA,"Beatriz Vaca","Finished","Cropped","Full","2%","Counts likely low due to glare and blur, especially acorn barnacles"
+"2014-12-08_YB-ABq4",2014-12-04,2014-12-08,"YB","AB","4","Bg","Balanus_glandula","Type 1",1195,0.0875,13657.1428571429,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-12-08_YB-ABq1",2014-12-04,2014-12-08,"YB","AB","1","BgD","Balanus_glandula_(dead)","Type 2",12,0.015625,768,"c","Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-12-08_YB-ABq2",2014-12-04,2014-12-08,"YB","AB","2","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","2%","Counts likely low due to glare and blur, especially acorn barnacles"
+"2014-12-08_YB-ABq4",2014-12-04,2014-12-08,"YB","AB","4","BgD","Balanus_glandula_(dead)","Type 2",10,0.0875,114.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-12-08_YB-ABq1",2014-12-04,2014-12-08,"YB","AB","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-12-08_YB-ABq2",2014-12-04,2014-12-08,"YB","AB","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","2%","Counts likely low due to glare and blur, especially acorn barnacles"
+"2014-12-08_YB-ABq4",2014-12-04,2014-12-08,"YB","AB","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-12-08_YB-ABq1",2014-12-04,2014-12-08,"YB","AB","1","Cth","Chthamalus_dalli","Type 3",1,0.015625,64,"c","Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-12-08_YB-ABq2",2014-12-04,2014-12-08,"YB","AB","2","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","2%","Counts likely low due to glare and blur, especially acorn barnacles"
+"2014-12-08_YB-ABq4",2014-12-04,2014-12-08,"YB","AB","4","Cth","Chthamalus_dalli","Type 3",260,0.0875,2971.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-12-08_YB-ABq1",2014-12-04,2014-12-08,"YB","AB","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-12-08_YB-ABq2",2014-12-04,2014-12-08,"YB","AB","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","2%","Counts likely low due to glare and blur, especially acorn barnacles"
+"2014-12-08_YB-ABq4",2014-12-04,2014-12-08,"YB","AB","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-12-08_YB-ABq1",2014-12-04,2014-12-08,"YB","AB","1","Emp","Emplectonema worm","Type 23",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-12-08_YB-ABq2",2014-12-04,2014-12-08,"YB","AB","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","2%","Counts likely low due to glare and blur, especially acorn barnacles"
+"2014-12-08_YB-ABq4",2014-12-04,2014-12-08,"YB","AB","4","Emp","Emplectonema worm","Type 23",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-12-08_YB-ABq1",2014-12-04,2014-12-08,"YB","AB","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-12-08_YB-ABq2",2014-12-04,2014-12-08,"YB","AB","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","2%","Counts likely low due to glare and blur, especially acorn barnacles"
+"2014-12-08_YB-ABq4",2014-12-04,2014-12-08,"YB","AB","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-12-08_YB-ABq1",2014-12-04,2014-12-08,"YB","AB","1","Lim","Limpets","Type 12",45,0.0875,514.285714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-12-08_YB-ABq2",2014-12-04,2014-12-08,"YB","AB","2","Lim","Limpets","Type 12",14,0.0875,160,NA,"Beatriz Vaca","Finished","Cropped","Full","2%","Counts likely low due to glare and blur, especially acorn barnacles"
+"2014-12-08_YB-ABq4",2014-12-04,2014-12-08,"YB","AB","4","Lim","Limpets","Type 12",310,0.0875,3542.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-12-08_YB-ABq1",2014-12-04,2014-12-08,"YB","AB","1","Ls","Littorina_sitkana","Type 13",35,0.0875,400,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-12-08_YB-ABq2",2014-12-04,2014-12-08,"YB","AB","2","Ls","Littorina_sitkana","Type 13",109,0.0875,1245.71428571429,NA,"Beatriz Vaca","Finished","Cropped","Full","2%","Counts likely low due to glare and blur, especially acorn barnacles"
+"2014-12-08_YB-ABq4",2014-12-04,2014-12-08,"YB","AB","4","Ls","Littorina_sitkana","Type 13",187,0.0875,2137.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-12-08_YB-ABq1",2014-12-04,2014-12-08,"YB","AB","1","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-12-08_YB-ABq2",2014-12-04,2014-12-08,"YB","AB","2","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","2%","Counts likely low due to glare and blur, especially acorn barnacles"
+"2014-12-08_YB-ABq4",2014-12-04,2014-12-08,"YB","AB","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-12-08_YB-ABq1",2014-12-04,2014-12-08,"YB","AB","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-12-08_YB-ABq2",2014-12-04,2014-12-08,"YB","AB","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","2%","Counts likely low due to glare and blur, especially acorn barnacles"
+"2014-12-08_YB-ABq4",2014-12-04,2014-12-08,"YB","AB","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-12-08_YB-ABq1",2014-12-04,2014-12-08,"YB","AB","1","Myt","Mytilus_spp","Type 7",312,0.015625,19968,"c","Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-12-08_YB-ABq2",2014-12-04,2014-12-08,"YB","AB","2","Myt","Mytilus_spp","Type 7",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","2%","Counts likely low due to glare and blur, especially acorn barnacles"
+"2014-12-08_YB-ABq4",2014-12-04,2014-12-08,"YB","AB","4","Myt","Mytilus_spp","Type 7",211,0.0875,2411.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-12-08_YB-ABq1",2014-12-04,2014-12-08,"YB","AB","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-12-08_YB-ABq2",2014-12-04,2014-12-08,"YB","AB","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","2%","Counts likely low due to glare and blur, especially acorn barnacles"
+"2014-12-08_YB-ABq4",2014-12-04,2014-12-08,"YB","AB","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-12-08_YB-ABq1",2014-12-04,2014-12-08,"YB","AB","1","Mt","Mytilus_trossulus","Type 15",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-12-08_YB-ABq2",2014-12-04,2014-12-08,"YB","AB","2","Mt","Mytilus_trossulus","Type 15",459,0.015625,29376,"c","Beatriz Vaca","Finished","Cropped","Full","2%","Counts likely low due to glare and blur, especially acorn barnacles"
+"2014-12-08_YB-ABq4",2014-12-04,2014-12-08,"YB","AB","4","Mt","Mytilus_trossulus","Type 15",1392,0.0875,15908.5714285714,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-12-08_YB-ABq1",2014-12-04,2014-12-08,"YB","AB","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-12-08_YB-ABq2",2014-12-04,2014-12-08,"YB","AB","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","2%","Counts likely low due to glare and blur, especially acorn barnacles"
+"2014-12-08_YB-ABq4",2014-12-04,2014-12-08,"YB","AB","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-12-08_YB-ABq1",2014-12-04,2014-12-08,"YB","AB","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-12-08_YB-ABq2",2014-12-04,2014-12-08,"YB","AB","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","2%","Counts likely low due to glare and blur, especially acorn barnacles"
+"2014-12-08_YB-ABq4",2014-12-04,2014-12-08,"YB","AB","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-12-08_YB-ABq1",2014-12-04,2014-12-08,"YB","AB","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-12-08_YB-ABq2",2014-12-04,2014-12-08,"YB","AB","2","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Cropped","Full","2%","Counts likely low due to glare and blur, especially acorn barnacles"
+"2014-12-08_YB-ABq4",2014-12-04,2014-12-08,"YB","AB","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-12-08_YB-ABq1",2014-12-04,2014-12-08,"YB","AB","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-12-08_YB-ABq2",2014-12-04,2014-12-08,"YB","AB","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","2%","Counts likely low due to glare and blur, especially acorn barnacles"
+"2014-12-08_YB-ABq4",2014-12-04,2014-12-08,"YB","AB","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-12-08_YB-ABq1",2014-12-04,2014-12-08,"YB","AB","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-12-08_YB-ABq2",2014-12-04,2014-12-08,"YB","AB","2","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","2%","Counts likely low due to glare and blur, especially acorn barnacles"
+"2014-12-08_YB-ABq4",2014-12-04,2014-12-08,"YB","AB","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-12-08_YB-ABq1",2014-12-04,2014-12-08,"YB","AB","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-12-08_YB-ABq2",2014-12-04,2014-12-08,"YB","AB","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","2%","Counts likely low due to glare and blur, especially acorn barnacles"
+"2014-12-08_YB-ABq4",2014-12-04,2014-12-08,"YB","AB","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-12-08_YB-ABq1",2014-12-04,2014-12-08,"YB","AB","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-12-08_YB-ABq2",2014-12-04,2014-12-08,"YB","AB","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","2%","Counts likely low due to glare and blur, especially acorn barnacles"
+"2014-12-08_YB-ABq4",2014-12-04,2014-12-08,"YB","AB","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-12-08_YB-ABq1",2014-12-04,2014-12-08,"YB","AB","1","Pp","Pollicipes_polymerus","Type 11",314,0.0875,3588.57142857143,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-12-08_YB-ABq2",2014-12-04,2014-12-08,"YB","AB","2","Pp","Pollicipes_polymerus","Type 11",104,0.0875,1188.57142857143,NA,"Beatriz Vaca","Finished","Cropped","Full","2%","Counts likely low due to glare and blur, especially acorn barnacles"
+"2014-12-08_YB-ABq4",2014-12-04,2014-12-08,"YB","AB","4","Pp","Pollicipes_polymerus","Type 11",644,0.0875,7360,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-12-08_YB-ABq1",2014-12-04,2014-12-08,"YB","AB","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-12-08_YB-ABq2",2014-12-04,2014-12-08,"YB","AB","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","2%","Counts likely low due to glare and blur, especially acorn barnacles"
+"2014-12-08_YB-ABq4",2014-12-04,2014-12-08,"YB","AB","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-12-08_YB-ABq1",2014-12-04,2014-12-08,"YB","AB","1","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-12-08_YB-ABq2",2014-12-04,2014-12-08,"YB","AB","2","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Cropped","Full","2%","Counts likely low due to glare and blur, especially acorn barnacles"
+"2014-12-08_YB-ABq4",2014-12-04,2014-12-08,"YB","AB","4","Sc","Semibalanus_cariosus","Type 5",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-12-08_YB-ABq1",2014-12-04,2014-12-08,"YB","AB","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2014-12-08_YB-ABq2",2014-12-04,2014-12-08,"YB","AB","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","2%","Counts likely low due to glare and blur, especially acorn barnacles"
+"2014-12-08_YB-ABq4",2014-12-04,2014-12-08,"YB","AB","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2014-12-04_YB-ACq2",2014-12-04,2014-12-04,"YB","AC","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-12-04_YB-ACq4",2014-12-04,2014-12-04,"YB","AC","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-12-04_YB-ACq7",2014-12-04,2014-12-04,"YB","AC","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Counts may be low due to algae film."
+"2014-12-04_YB-ACq8",2014-12-04,2014-12-04,"YB","AC","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Counts may be low due to glare and water cover. 10% underwater."
+"2014-12-04_YB-ACq2",2014-12-04,2014-12-04,"YB","AC","2","Ae","Anemones","Type 14",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-12-04_YB-ACq4",2014-12-04,2014-12-04,"YB","AC","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-12-04_YB-ACq7",2014-12-04,2014-12-04,"YB","AC","7","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Counts may be low due to algae film."
+"2014-12-04_YB-ACq8",2014-12-04,2014-12-04,"YB","AC","8","Ae","Anemones","Type 14",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Counts may be low due to glare and water cover. 10% underwater."
+"2014-12-04_YB-ACq2",2014-12-04,2014-12-04,"YB","AC","2","Bg","Balanus_glandula","Type 1",850,0.015625,54400,"c","Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-12-04_YB-ACq4",2014-12-04,2014-12-04,"YB","AC","4","Bg","Balanus_glandula","Type 1",990,0.015625,63360,"c","Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-12-04_YB-ACq7",2014-12-04,2014-12-04,"YB","AC","7","Bg","Balanus_glandula","Type 1",1068,0.015625,68352,"c","Beatriz Vaca","Finished","Full","Cropped","55%","Counts may be low due to algae film."
+"2014-12-04_YB-ACq8",2014-12-04,2014-12-04,"YB","AC","8","Bg","Balanus_glandula","Type 1",602,0.015625,38528,"c","Beatriz Vaca","Finished","Full","Cropped","5%","Counts may be low due to glare and water cover. 10% underwater."
+"2014-12-04_YB-ACq2",2014-12-04,2014-12-04,"YB","AC","2","BgD","Balanus_glandula_(dead)","Type 2",34,0.015625,2176,"c","Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-12-04_YB-ACq4",2014-12-04,2014-12-04,"YB","AC","4","BgD","Balanus_glandula_(dead)","Type 2",7,0.015625,448,"c","Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-12-04_YB-ACq7",2014-12-04,2014-12-04,"YB","AC","7","BgD","Balanus_glandula_(dead)","Type 2",3,0.015625,192,"c","Beatriz Vaca","Finished","Full","Cropped","55%","Counts may be low due to algae film."
+"2014-12-04_YB-ACq8",2014-12-04,2014-12-04,"YB","AC","8","BgD","Balanus_glandula_(dead)","Type 2",10,0.015625,640,"c","Beatriz Vaca","Finished","Full","Cropped","5%","Counts may be low due to glare and water cover. 10% underwater."
+"2014-12-04_YB-ACq2",2014-12-04,2014-12-04,"YB","AC","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-12-04_YB-ACq4",2014-12-04,2014-12-04,"YB","AC","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-12-04_YB-ACq7",2014-12-04,2014-12-04,"YB","AC","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Counts may be low due to algae film."
+"2014-12-04_YB-ACq8",2014-12-04,2014-12-04,"YB","AC","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Counts may be low due to glare and water cover. 10% underwater."
+"2014-12-04_YB-ACq2",2014-12-04,2014-12-04,"YB","AC","2","Cth","Chthamalus_dalli","Type 3",20,0.015625,1280,"c","Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-12-04_YB-ACq4",2014-12-04,2014-12-04,"YB","AC","4","Cth","Chthamalus_dalli","Type 3",30,0.015625,1920,"c","Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-12-04_YB-ACq7",2014-12-04,2014-12-04,"YB","AC","7","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","55%","Counts may be low due to algae film."
+"2014-12-04_YB-ACq8",2014-12-04,2014-12-04,"YB","AC","8","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","5%","Counts may be low due to glare and water cover. 10% underwater."
+"2014-12-04_YB-ACq2",2014-12-04,2014-12-04,"YB","AC","2","CthD","Chthamalus_dalli (dead)","Type 4",2,0.015625,128,"c","Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-12-04_YB-ACq4",2014-12-04,2014-12-04,"YB","AC","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-12-04_YB-ACq7",2014-12-04,2014-12-04,"YB","AC","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","55%","Counts may be low due to algae film."
+"2014-12-04_YB-ACq8",2014-12-04,2014-12-04,"YB","AC","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","5%","Counts may be low due to glare and water cover. 10% underwater."
+"2014-12-04_YB-ACq2",2014-12-04,2014-12-04,"YB","AC","2","Emp","Emplectonema worm","Type 23",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-12-04_YB-ACq4",2014-12-04,2014-12-04,"YB","AC","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-12-04_YB-ACq7",2014-12-04,2014-12-04,"YB","AC","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Counts may be low due to algae film."
+"2014-12-04_YB-ACq8",2014-12-04,2014-12-04,"YB","AC","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Counts may be low due to glare and water cover. 10% underwater."
+"2014-12-04_YB-ACq2",2014-12-04,2014-12-04,"YB","AC","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-12-04_YB-ACq4",2014-12-04,2014-12-04,"YB","AC","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-12-04_YB-ACq7",2014-12-04,2014-12-04,"YB","AC","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Counts may be low due to algae film."
+"2014-12-04_YB-ACq8",2014-12-04,2014-12-04,"YB","AC","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Counts may be low due to glare and water cover. 10% underwater."
+"2014-12-04_YB-ACq2",2014-12-04,2014-12-04,"YB","AC","2","Lim","Limpets","Type 12",19,0.0875,217.142857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-12-04_YB-ACq4",2014-12-04,2014-12-04,"YB","AC","4","Lim","Limpets","Type 12",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-12-04_YB-ACq7",2014-12-04,2014-12-04,"YB","AC","7","Lim","Limpets","Type 12",17,0.0875,194.285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Counts may be low due to algae film."
+"2014-12-04_YB-ACq8",2014-12-04,2014-12-04,"YB","AC","8","Lim","Limpets","Type 12",13,0.0875,148.571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Counts may be low due to glare and water cover. 10% underwater."
+"2014-12-04_YB-ACq2",2014-12-04,2014-12-04,"YB","AC","2","Ls","Littorina_sitkana","Type 13",420,0.0875,4800,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-12-04_YB-ACq4",2014-12-04,2014-12-04,"YB","AC","4","Ls","Littorina_sitkana","Type 13",550,0.0875,6285.71428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-12-04_YB-ACq7",2014-12-04,2014-12-04,"YB","AC","7","Ls","Littorina_sitkana","Type 13",580,0.0875,6628.57142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Counts may be low due to algae film."
+"2014-12-04_YB-ACq8",2014-12-04,2014-12-04,"YB","AC","8","Ls","Littorina_sitkana","Type 13",548,0.0875,6262.85714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Counts may be low due to glare and water cover. 10% underwater."
+"2014-12-04_YB-ACq2",2014-12-04,2014-12-04,"YB","AC","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-12-04_YB-ACq4",2014-12-04,2014-12-04,"YB","AC","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-12-04_YB-ACq7",2014-12-04,2014-12-04,"YB","AC","7","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Counts may be low due to algae film."
+"2014-12-04_YB-ACq8",2014-12-04,2014-12-04,"YB","AC","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Counts may be low due to glare and water cover. 10% underwater."
+"2014-12-04_YB-ACq2",2014-12-04,2014-12-04,"YB","AC","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-12-04_YB-ACq4",2014-12-04,2014-12-04,"YB","AC","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-12-04_YB-ACq7",2014-12-04,2014-12-04,"YB","AC","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Counts may be low due to algae film."
+"2014-12-04_YB-ACq8",2014-12-04,2014-12-04,"YB","AC","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Counts may be low due to glare and water cover. 10% underwater."
+"2014-12-04_YB-ACq2",2014-12-04,2014-12-04,"YB","AC","2","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-12-04_YB-ACq4",2014-12-04,2014-12-04,"YB","AC","4","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-12-04_YB-ACq7",2014-12-04,2014-12-04,"YB","AC","7","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Counts may be low due to algae film."
+"2014-12-04_YB-ACq8",2014-12-04,2014-12-04,"YB","AC","8","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Counts may be low due to glare and water cover. 10% underwater."
+"2014-12-04_YB-ACq2",2014-12-04,2014-12-04,"YB","AC","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-12-04_YB-ACq4",2014-12-04,2014-12-04,"YB","AC","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-12-04_YB-ACq7",2014-12-04,2014-12-04,"YB","AC","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Counts may be low due to algae film."
+"2014-12-04_YB-ACq8",2014-12-04,2014-12-04,"YB","AC","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Counts may be low due to glare and water cover. 10% underwater."
+"2014-12-04_YB-ACq2",2014-12-04,2014-12-04,"YB","AC","2","Mt","Mytilus_trossulus","Type 15",176,0.0875,2011.42857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-12-04_YB-ACq4",2014-12-04,2014-12-04,"YB","AC","4","Mt","Mytilus_trossulus","Type 15",89,0.0875,1017.14285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-12-04_YB-ACq7",2014-12-04,2014-12-04,"YB","AC","7","Mt","Mytilus_trossulus","Type 15",156,0.0875,1782.85714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Counts may be low due to algae film."
+"2014-12-04_YB-ACq8",2014-12-04,2014-12-04,"YB","AC","8","Mt","Mytilus_trossulus","Type 15",586,0.0875,6697.14285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Counts may be low due to glare and water cover. 10% underwater."
+"2014-12-04_YB-ACq2",2014-12-04,2014-12-04,"YB","AC","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-12-04_YB-ACq4",2014-12-04,2014-12-04,"YB","AC","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-12-04_YB-ACq7",2014-12-04,2014-12-04,"YB","AC","7","MtD","Mytilus_trossulus_(dead)","Type 16",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Counts may be low due to algae film."
+"2014-12-04_YB-ACq8",2014-12-04,2014-12-04,"YB","AC","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Counts may be low due to glare and water cover. 10% underwater."
+"2014-12-04_YB-ACq2",2014-12-04,2014-12-04,"YB","AC","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-12-04_YB-ACq4",2014-12-04,2014-12-04,"YB","AC","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-12-04_YB-ACq7",2014-12-04,2014-12-04,"YB","AC","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Counts may be low due to algae film."
+"2014-12-04_YB-ACq8",2014-12-04,2014-12-04,"YB","AC","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Counts may be low due to glare and water cover. 10% underwater."
+"2014-12-04_YB-ACq2",2014-12-04,2014-12-04,"YB","AC","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-12-04_YB-ACq4",2014-12-04,2014-12-04,"YB","AC","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-12-04_YB-ACq7",2014-12-04,2014-12-04,"YB","AC","7","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Counts may be low due to algae film."
+"2014-12-04_YB-ACq8",2014-12-04,2014-12-04,"YB","AC","8","Nc","Nucella_canaliculata","Type 10",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Counts may be low due to glare and water cover. 10% underwater."
+"2014-12-04_YB-ACq2",2014-12-04,2014-12-04,"YB","AC","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-12-04_YB-ACq4",2014-12-04,2014-12-04,"YB","AC","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-12-04_YB-ACq7",2014-12-04,2014-12-04,"YB","AC","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Counts may be low due to algae film."
+"2014-12-04_YB-ACq8",2014-12-04,2014-12-04,"YB","AC","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Counts may be low due to glare and water cover. 10% underwater."
+"2014-12-04_YB-ACq2",2014-12-04,2014-12-04,"YB","AC","2","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-12-04_YB-ACq4",2014-12-04,2014-12-04,"YB","AC","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-12-04_YB-ACq7",2014-12-04,2014-12-04,"YB","AC","7","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Counts may be low due to algae film."
+"2014-12-04_YB-ACq8",2014-12-04,2014-12-04,"YB","AC","8","No","Nucella_ostrina","Type 9",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Counts may be low due to glare and water cover. 10% underwater."
+"2014-12-04_YB-ACq2",2014-12-04,2014-12-04,"YB","AC","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-12-04_YB-ACq4",2014-12-04,2014-12-04,"YB","AC","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-12-04_YB-ACq7",2014-12-04,2014-12-04,"YB","AC","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Counts may be low due to algae film."
+"2014-12-04_YB-ACq8",2014-12-04,2014-12-04,"YB","AC","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Counts may be low due to glare and water cover. 10% underwater."
+"2014-12-04_YB-ACq2",2014-12-04,2014-12-04,"YB","AC","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-12-04_YB-ACq4",2014-12-04,2014-12-04,"YB","AC","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-12-04_YB-ACq7",2014-12-04,2014-12-04,"YB","AC","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Counts may be low due to algae film."
+"2014-12-04_YB-ACq8",2014-12-04,2014-12-04,"YB","AC","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Counts may be low due to glare and water cover. 10% underwater."
+"2014-12-04_YB-ACq2",2014-12-04,2014-12-04,"YB","AC","2","Pp","Pollicipes_polymerus","Type 11",16,0.0875,182.857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-12-04_YB-ACq4",2014-12-04,2014-12-04,"YB","AC","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-12-04_YB-ACq7",2014-12-04,2014-12-04,"YB","AC","7","Pp","Pollicipes_polymerus","Type 11",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Counts may be low due to algae film."
+"2014-12-04_YB-ACq8",2014-12-04,2014-12-04,"YB","AC","8","Pp","Pollicipes_polymerus","Type 11",48,0.0875,548.571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Counts may be low due to glare and water cover. 10% underwater."
+"2014-12-04_YB-ACq2",2014-12-04,2014-12-04,"YB","AC","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-12-04_YB-ACq4",2014-12-04,2014-12-04,"YB","AC","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-12-04_YB-ACq7",2014-12-04,2014-12-04,"YB","AC","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Counts may be low due to algae film."
+"2014-12-04_YB-ACq8",2014-12-04,2014-12-04,"YB","AC","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Counts may be low due to glare and water cover. 10% underwater."
+"2014-12-04_YB-ACq2",2014-12-04,2014-12-04,"YB","AC","2","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-12-04_YB-ACq4",2014-12-04,2014-12-04,"YB","AC","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-12-04_YB-ACq7",2014-12-04,2014-12-04,"YB","AC","7","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Counts may be low due to algae film."
+"2014-12-04_YB-ACq8",2014-12-04,2014-12-04,"YB","AC","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Counts may be low due to glare and water cover. 10% underwater."
+"2014-12-04_YB-ACq2",2014-12-04,2014-12-04,"YB","AC","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-12-04_YB-ACq4",2014-12-04,2014-12-04,"YB","AC","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-12-04_YB-ACq7",2014-12-04,2014-12-04,"YB","AC","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","55%","Counts may be low due to algae film."
+"2014-12-04_YB-ACq8",2014-12-04,2014-12-04,"YB","AC","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Counts may be low due to glare and water cover. 10% underwater."
+"2014-12-04_YB-ADq1",2014-12-04,2014-12-04,"YB","AD","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Count likely low due to glare, blur, and algae coverage."
+"2014-12-04_YB-ADq5",2014-12-04,2014-12-04,"YB","AD","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare, blur, and algae cover."
+"2014-12-04_YB-ADq8",2014-12-04,2014-12-04,"YB","AD","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-12-04_YB-ADq1",2014-12-04,2014-12-04,"YB","AD","1","Ae","Anemones","Type 14",14,0.0875,160,NA,"Beatriz Vaca","Finished","Full","Full","50%","Count likely low due to glare, blur, and algae coverage."
+"2014-12-04_YB-ADq5",2014-12-04,2014-12-04,"YB","AD","5","Ae","Anemones","Type 14",27,0.0875,308.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare, blur, and algae cover."
+"2014-12-04_YB-ADq8",2014-12-04,2014-12-04,"YB","AD","8","Ae","Anemones","Type 14",54,0.0875,617.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-12-04_YB-ADq1",2014-12-04,2014-12-04,"YB","AD","1","Bg","Balanus_glandula","Type 1",401,0.0875,4582.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","50%","Count likely low due to glare, blur, and algae coverage."
+"2014-12-04_YB-ADq5",2014-12-04,2014-12-04,"YB","AD","5","Bg","Balanus_glandula","Type 1",735,0.0875,8400,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare, blur, and algae cover."
+"2014-12-04_YB-ADq8",2014-12-04,2014-12-04,"YB","AD","8","Bg","Balanus_glandula","Type 1",900,0.0875,10285.7142857143,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-12-04_YB-ADq1",2014-12-04,2014-12-04,"YB","AD","1","BgD","Balanus_glandula_(dead)","Type 2",13,0.0875,148.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","50%","Count likely low due to glare, blur, and algae coverage."
+"2014-12-04_YB-ADq5",2014-12-04,2014-12-04,"YB","AD","5","BgD","Balanus_glandula_(dead)","Type 2",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare, blur, and algae cover."
+"2014-12-04_YB-ADq8",2014-12-04,2014-12-04,"YB","AD","8","BgD","Balanus_glandula_(dead)","Type 2",18,0.0875,205.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-12-04_YB-ADq1",2014-12-04,2014-12-04,"YB","AD","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Count likely low due to glare, blur, and algae coverage."
+"2014-12-04_YB-ADq5",2014-12-04,2014-12-04,"YB","AD","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare, blur, and algae cover."
+"2014-12-04_YB-ADq8",2014-12-04,2014-12-04,"YB","AD","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-12-04_YB-ADq1",2014-12-04,2014-12-04,"YB","AD","1","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Count likely low due to glare, blur, and algae coverage."
+"2014-12-04_YB-ADq5",2014-12-04,2014-12-04,"YB","AD","5","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare, blur, and algae cover."
+"2014-12-04_YB-ADq8",2014-12-04,2014-12-04,"YB","AD","8","Cth","Chthamalus_dalli","Type 3",73,0.0875,834.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-12-04_YB-ADq1",2014-12-04,2014-12-04,"YB","AD","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Count likely low due to glare, blur, and algae coverage."
+"2014-12-04_YB-ADq5",2014-12-04,2014-12-04,"YB","AD","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare, blur, and algae cover."
+"2014-12-04_YB-ADq8",2014-12-04,2014-12-04,"YB","AD","8","CthD","Chthamalus_dalli (dead)","Type 4",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-12-04_YB-ADq1",2014-12-04,2014-12-04,"YB","AD","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Count likely low due to glare, blur, and algae coverage."
+"2014-12-04_YB-ADq5",2014-12-04,2014-12-04,"YB","AD","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare, blur, and algae cover."
+"2014-12-04_YB-ADq8",2014-12-04,2014-12-04,"YB","AD","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-12-04_YB-ADq1",2014-12-04,2014-12-04,"YB","AD","1","Lep","Leptasterias","Type 20",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","50%","Count likely low due to glare, blur, and algae coverage."
+"2014-12-04_YB-ADq5",2014-12-04,2014-12-04,"YB","AD","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare, blur, and algae cover."
+"2014-12-04_YB-ADq8",2014-12-04,2014-12-04,"YB","AD","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-12-04_YB-ADq1",2014-12-04,2014-12-04,"YB","AD","1","Lim","Limpets","Type 12",44,0.0875,502.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","50%","Count likely low due to glare, blur, and algae coverage."
+"2014-12-04_YB-ADq5",2014-12-04,2014-12-04,"YB","AD","5","Lim","Limpets","Type 12",36,0.0875,411.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare, blur, and algae cover."
+"2014-12-04_YB-ADq8",2014-12-04,2014-12-04,"YB","AD","8","Lim","Limpets","Type 12",380,0.0875,4342.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-12-04_YB-ADq1",2014-12-04,2014-12-04,"YB","AD","1","Ls","Littorina_sitkana","Type 13",250,0.0875,2857.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","50%","Count likely low due to glare, blur, and algae coverage."
+"2014-12-04_YB-ADq5",2014-12-04,2014-12-04,"YB","AD","5","Ls","Littorina_sitkana","Type 13",205,0.0875,2342.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare, blur, and algae cover."
+"2014-12-04_YB-ADq8",2014-12-04,2014-12-04,"YB","AD","8","Ls","Littorina_sitkana","Type 13",208,0.0875,2377.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-12-04_YB-ADq1",2014-12-04,2014-12-04,"YB","AD","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Count likely low due to glare, blur, and algae coverage."
+"2014-12-04_YB-ADq5",2014-12-04,2014-12-04,"YB","AD","5","Mc","Mytilus_californianus","Type 17",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare, blur, and algae cover."
+"2014-12-04_YB-ADq8",2014-12-04,2014-12-04,"YB","AD","8","Mc","Mytilus_californianus","Type 17",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-12-04_YB-ADq1",2014-12-04,2014-12-04,"YB","AD","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Count likely low due to glare, blur, and algae coverage."
+"2014-12-04_YB-ADq5",2014-12-04,2014-12-04,"YB","AD","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare, blur, and algae cover."
+"2014-12-04_YB-ADq8",2014-12-04,2014-12-04,"YB","AD","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-12-04_YB-ADq1",2014-12-04,2014-12-04,"YB","AD","1","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Count likely low due to glare, blur, and algae coverage."
+"2014-12-04_YB-ADq5",2014-12-04,2014-12-04,"YB","AD","5","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare, blur, and algae cover."
+"2014-12-04_YB-ADq8",2014-12-04,2014-12-04,"YB","AD","8","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-12-04_YB-ADq1",2014-12-04,2014-12-04,"YB","AD","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Count likely low due to glare, blur, and algae coverage."
+"2014-12-04_YB-ADq5",2014-12-04,2014-12-04,"YB","AD","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare, blur, and algae cover."
+"2014-12-04_YB-ADq8",2014-12-04,2014-12-04,"YB","AD","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-12-04_YB-ADq1",2014-12-04,2014-12-04,"YB","AD","1","Mt","Mytilus_trossulus","Type 15",638,0.0875,7291.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","50%","Count likely low due to glare, blur, and algae coverage."
+"2014-12-04_YB-ADq5",2014-12-04,2014-12-04,"YB","AD","5","Mt","Mytilus_trossulus","Type 15",739,0.0875,8445.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare, blur, and algae cover."
+"2014-12-04_YB-ADq8",2014-12-04,2014-12-04,"YB","AD","8","Mt","Mytilus_trossulus","Type 15",1101,0.0875,12582.8571428571,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-12-04_YB-ADq1",2014-12-04,2014-12-04,"YB","AD","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Count likely low due to glare, blur, and algae coverage."
+"2014-12-04_YB-ADq5",2014-12-04,2014-12-04,"YB","AD","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare, blur, and algae cover."
+"2014-12-04_YB-ADq8",2014-12-04,2014-12-04,"YB","AD","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-12-04_YB-ADq1",2014-12-04,2014-12-04,"YB","AD","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Count likely low due to glare, blur, and algae coverage."
+"2014-12-04_YB-ADq5",2014-12-04,2014-12-04,"YB","AD","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare, blur, and algae cover."
+"2014-12-04_YB-ADq8",2014-12-04,2014-12-04,"YB","AD","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-12-04_YB-ADq1",2014-12-04,2014-12-04,"YB","AD","1","Nc","Nucella_canaliculata","Type 10",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","50%","Count likely low due to glare, blur, and algae coverage."
+"2014-12-04_YB-ADq5",2014-12-04,2014-12-04,"YB","AD","5","Nc","Nucella_canaliculata","Type 10",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare, blur, and algae cover."
+"2014-12-04_YB-ADq8",2014-12-04,2014-12-04,"YB","AD","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-12-04_YB-ADq1",2014-12-04,2014-12-04,"YB","AD","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Count likely low due to glare, blur, and algae coverage."
+"2014-12-04_YB-ADq5",2014-12-04,2014-12-04,"YB","AD","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare, blur, and algae cover."
+"2014-12-04_YB-ADq8",2014-12-04,2014-12-04,"YB","AD","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-12-04_YB-ADq1",2014-12-04,2014-12-04,"YB","AD","1","No","Nucella_ostrina","Type 9",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","50%","Count likely low due to glare, blur, and algae coverage."
+"2014-12-04_YB-ADq5",2014-12-04,2014-12-04,"YB","AD","5","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare, blur, and algae cover."
+"2014-12-04_YB-ADq8",2014-12-04,2014-12-04,"YB","AD","8","No","Nucella_ostrina","Type 9",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-12-04_YB-ADq1",2014-12-04,2014-12-04,"YB","AD","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Count likely low due to glare, blur, and algae coverage."
+"2014-12-04_YB-ADq5",2014-12-04,2014-12-04,"YB","AD","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare, blur, and algae cover."
+"2014-12-04_YB-ADq8",2014-12-04,2014-12-04,"YB","AD","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-12-04_YB-ADq1",2014-12-04,2014-12-04,"YB","AD","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Count likely low due to glare, blur, and algae coverage."
+"2014-12-04_YB-ADq5",2014-12-04,2014-12-04,"YB","AD","5","Pis","Pisaster","Type 21",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare, blur, and algae cover."
+"2014-12-04_YB-ADq8",2014-12-04,2014-12-04,"YB","AD","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-12-04_YB-ADq1",2014-12-04,2014-12-04,"YB","AD","1","Pp","Pollicipes_polymerus","Type 11",11,0.0875,125.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","50%","Count likely low due to glare, blur, and algae coverage."
+"2014-12-04_YB-ADq5",2014-12-04,2014-12-04,"YB","AD","5","Pp","Pollicipes_polymerus","Type 11",91,0.0875,1040,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare, blur, and algae cover."
+"2014-12-04_YB-ADq8",2014-12-04,2014-12-04,"YB","AD","8","Pp","Pollicipes_polymerus","Type 11",10,0.0875,114.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-12-04_YB-ADq1",2014-12-04,2014-12-04,"YB","AD","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Count likely low due to glare, blur, and algae coverage."
+"2014-12-04_YB-ADq5",2014-12-04,2014-12-04,"YB","AD","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare, blur, and algae cover."
+"2014-12-04_YB-ADq8",2014-12-04,2014-12-04,"YB","AD","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-12-04_YB-ADq1",2014-12-04,2014-12-04,"YB","AD","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Count likely low due to glare, blur, and algae coverage."
+"2014-12-04_YB-ADq5",2014-12-04,2014-12-04,"YB","AD","5","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare, blur, and algae cover."
+"2014-12-04_YB-ADq8",2014-12-04,2014-12-04,"YB","AD","8","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-12-04_YB-ADq1",2014-12-04,2014-12-04,"YB","AD","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Count likely low due to glare, blur, and algae coverage."
+"2014-12-04_YB-ADq5",2014-12-04,2014-12-04,"YB","AD","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare, blur, and algae cover."
+"2014-12-04_YB-ADq8",2014-12-04,2014-12-04,"YB","AD","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-12-04_YB-AEq1",2014-12-04,2014-12-04,"YB","AE","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare and algae cover."
+"2014-12-04_YB-AEq4",2014-12-04,2014-12-04,"YB","AE","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Counts may be low due to algae and glare."
+"2014-12-04_YB-AEq8",2014-12-04,2014-12-04,"YB","AE","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-12-04_YB-AEq1",2014-12-04,2014-12-04,"YB","AE","1","Ae","Anemones","Type 14",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare and algae cover."
+"2014-12-04_YB-AEq4",2014-12-04,2014-12-04,"YB","AE","4","Ae","Anemones","Type 14",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Counts may be low due to algae and glare."
+"2014-12-04_YB-AEq8",2014-12-04,2014-12-04,"YB","AE","8","Ae","Anemones","Type 14",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-12-04_YB-AEq1",2014-12-04,2014-12-04,"YB","AE","1","Bg","Balanus_glandula","Type 1",1081,0.0875,12354.2857142857,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare and algae cover."
+"2014-12-04_YB-AEq4",2014-12-04,2014-12-04,"YB","AE","4","Bg","Balanus_glandula","Type 1",341,0.015625,21824,"c","Beatriz Vaca","Finished","Full","Cropped","30%","Counts may be low due to algae and glare."
+"2014-12-04_YB-AEq8",2014-12-04,2014-12-04,"YB","AE","8","Bg","Balanus_glandula","Type 1",338,0.015625,21632,"c","Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-12-04_YB-AEq1",2014-12-04,2014-12-04,"YB","AE","1","BgD","Balanus_glandula_(dead)","Type 2",23,0.0875,262.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare and algae cover."
+"2014-12-04_YB-AEq4",2014-12-04,2014-12-04,"YB","AE","4","BgD","Balanus_glandula_(dead)","Type 2",5,0.015625,320,"c","Beatriz Vaca","Finished","Full","Cropped","30%","Counts may be low due to algae and glare."
+"2014-12-04_YB-AEq8",2014-12-04,2014-12-04,"YB","AE","8","BgD","Balanus_glandula_(dead)","Type 2",10,0.015625,640,"c","Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-12-04_YB-AEq1",2014-12-04,2014-12-04,"YB","AE","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare and algae cover."
+"2014-12-04_YB-AEq4",2014-12-04,2014-12-04,"YB","AE","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Counts may be low due to algae and glare."
+"2014-12-04_YB-AEq8",2014-12-04,2014-12-04,"YB","AE","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-12-04_YB-AEq1",2014-12-04,2014-12-04,"YB","AE","1","Cth","Chthamalus_dalli","Type 3",18,0.0875,205.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare and algae cover."
+"2014-12-04_YB-AEq4",2014-12-04,2014-12-04,"YB","AE","4","Cth","Chthamalus_dalli","Type 3",25,0.015625,1600,"c","Beatriz Vaca","Finished","Full","Cropped","30%","Counts may be low due to algae and glare."
+"2014-12-04_YB-AEq8",2014-12-04,2014-12-04,"YB","AE","8","Cth","Chthamalus_dalli","Type 3",18,0.015625,1152,"c","Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-12-04_YB-AEq1",2014-12-04,2014-12-04,"YB","AE","1","CthD","Chthamalus_dalli (dead)","Type 4",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare and algae cover."
+"2014-12-04_YB-AEq4",2014-12-04,2014-12-04,"YB","AE","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","30%","Counts may be low due to algae and glare."
+"2014-12-04_YB-AEq8",2014-12-04,2014-12-04,"YB","AE","8","CthD","Chthamalus_dalli (dead)","Type 4",5,0.015625,320,"c","Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-12-04_YB-AEq1",2014-12-04,2014-12-04,"YB","AE","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare and algae cover."
+"2014-12-04_YB-AEq4",2014-12-04,2014-12-04,"YB","AE","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Counts may be low due to algae and glare."
+"2014-12-04_YB-AEq8",2014-12-04,2014-12-04,"YB","AE","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-12-04_YB-AEq1",2014-12-04,2014-12-04,"YB","AE","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare and algae cover."
+"2014-12-04_YB-AEq4",2014-12-04,2014-12-04,"YB","AE","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Counts may be low due to algae and glare."
+"2014-12-04_YB-AEq8",2014-12-04,2014-12-04,"YB","AE","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-12-04_YB-AEq1",2014-12-04,2014-12-04,"YB","AE","1","Lim","Limpets","Type 12",41,0.0875,468.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare and algae cover."
+"2014-12-04_YB-AEq4",2014-12-04,2014-12-04,"YB","AE","4","Lim","Limpets","Type 12",323,0.0875,3691.42857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Counts may be low due to algae and glare."
+"2014-12-04_YB-AEq8",2014-12-04,2014-12-04,"YB","AE","8","Lim","Limpets","Type 12",290,0.0875,3314.28571428571,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-12-04_YB-AEq1",2014-12-04,2014-12-04,"YB","AE","1","Ls","Littorina_sitkana","Type 13",385,0.0875,4400,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare and algae cover."
+"2014-12-04_YB-AEq4",2014-12-04,2014-12-04,"YB","AE","4","Ls","Littorina_sitkana","Type 13",325,0.0875,3714.28571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Counts may be low due to algae and glare."
+"2014-12-04_YB-AEq8",2014-12-04,2014-12-04,"YB","AE","8","Ls","Littorina_sitkana","Type 13",221,0.0875,2525.71428571429,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-12-04_YB-AEq1",2014-12-04,2014-12-04,"YB","AE","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare and algae cover."
+"2014-12-04_YB-AEq4",2014-12-04,2014-12-04,"YB","AE","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Counts may be low due to algae and glare."
+"2014-12-04_YB-AEq8",2014-12-04,2014-12-04,"YB","AE","8","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-12-04_YB-AEq1",2014-12-04,2014-12-04,"YB","AE","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare and algae cover."
+"2014-12-04_YB-AEq4",2014-12-04,2014-12-04,"YB","AE","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Counts may be low due to algae and glare."
+"2014-12-04_YB-AEq8",2014-12-04,2014-12-04,"YB","AE","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-12-04_YB-AEq1",2014-12-04,2014-12-04,"YB","AE","1","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare and algae cover."
+"2014-12-04_YB-AEq4",2014-12-04,2014-12-04,"YB","AE","4","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Counts may be low due to algae and glare."
+"2014-12-04_YB-AEq8",2014-12-04,2014-12-04,"YB","AE","8","Myt","Mytilus_spp","Type 7",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-12-04_YB-AEq1",2014-12-04,2014-12-04,"YB","AE","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare and algae cover."
+"2014-12-04_YB-AEq4",2014-12-04,2014-12-04,"YB","AE","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Counts may be low due to algae and glare."
+"2014-12-04_YB-AEq8",2014-12-04,2014-12-04,"YB","AE","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-12-04_YB-AEq1",2014-12-04,2014-12-04,"YB","AE","1","Mt","Mytilus_trossulus","Type 15",625,0.0875,7142.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare and algae cover."
+"2014-12-04_YB-AEq4",2014-12-04,2014-12-04,"YB","AE","4","Mt","Mytilus_trossulus","Type 15",349,0.0875,3988.57142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Counts may be low due to algae and glare."
+"2014-12-04_YB-AEq8",2014-12-04,2014-12-04,"YB","AE","8","Mt","Mytilus_trossulus","Type 15",315,0.015625,20160,"c","Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-12-04_YB-AEq1",2014-12-04,2014-12-04,"YB","AE","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare and algae cover."
+"2014-12-04_YB-AEq4",2014-12-04,2014-12-04,"YB","AE","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Counts may be low due to algae and glare."
+"2014-12-04_YB-AEq8",2014-12-04,2014-12-04,"YB","AE","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-12-04_YB-AEq1",2014-12-04,2014-12-04,"YB","AE","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare and algae cover."
+"2014-12-04_YB-AEq4",2014-12-04,2014-12-04,"YB","AE","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Counts may be low due to algae and glare."
+"2014-12-04_YB-AEq8",2014-12-04,2014-12-04,"YB","AE","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-12-04_YB-AEq1",2014-12-04,2014-12-04,"YB","AE","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare and algae cover."
+"2014-12-04_YB-AEq4",2014-12-04,2014-12-04,"YB","AE","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Counts may be low due to algae and glare."
+"2014-12-04_YB-AEq8",2014-12-04,2014-12-04,"YB","AE","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-12-04_YB-AEq1",2014-12-04,2014-12-04,"YB","AE","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare and algae cover."
+"2014-12-04_YB-AEq4",2014-12-04,2014-12-04,"YB","AE","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Counts may be low due to algae and glare."
+"2014-12-04_YB-AEq8",2014-12-04,2014-12-04,"YB","AE","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-12-04_YB-AEq1",2014-12-04,2014-12-04,"YB","AE","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare and algae cover."
+"2014-12-04_YB-AEq4",2014-12-04,2014-12-04,"YB","AE","4","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Counts may be low due to algae and glare."
+"2014-12-04_YB-AEq8",2014-12-04,2014-12-04,"YB","AE","8","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-12-04_YB-AEq1",2014-12-04,2014-12-04,"YB","AE","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare and algae cover."
+"2014-12-04_YB-AEq4",2014-12-04,2014-12-04,"YB","AE","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Counts may be low due to algae and glare."
+"2014-12-04_YB-AEq8",2014-12-04,2014-12-04,"YB","AE","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-12-04_YB-AEq1",2014-12-04,2014-12-04,"YB","AE","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare and algae cover."
+"2014-12-04_YB-AEq4",2014-12-04,2014-12-04,"YB","AE","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Counts may be low due to algae and glare."
+"2014-12-04_YB-AEq8",2014-12-04,2014-12-04,"YB","AE","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-12-04_YB-AEq1",2014-12-04,2014-12-04,"YB","AE","1","Pp","Pollicipes_polymerus","Type 11",14,0.0875,160,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare and algae cover."
+"2014-12-04_YB-AEq4",2014-12-04,2014-12-04,"YB","AE","4","Pp","Pollicipes_polymerus","Type 11",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Counts may be low due to algae and glare."
+"2014-12-04_YB-AEq8",2014-12-04,2014-12-04,"YB","AE","8","Pp","Pollicipes_polymerus","Type 11",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-12-04_YB-AEq1",2014-12-04,2014-12-04,"YB","AE","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare and algae cover."
+"2014-12-04_YB-AEq4",2014-12-04,2014-12-04,"YB","AE","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Counts may be low due to algae and glare."
+"2014-12-04_YB-AEq8",2014-12-04,2014-12-04,"YB","AE","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-12-04_YB-AEq1",2014-12-04,2014-12-04,"YB","AE","1","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare and algae cover."
+"2014-12-04_YB-AEq4",2014-12-04,2014-12-04,"YB","AE","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Counts may be low due to algae and glare."
+"2014-12-04_YB-AEq8",2014-12-04,2014-12-04,"YB","AE","8","Sc","Semibalanus_cariosus","Type 5",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-12-04_YB-AEq1",2014-12-04,2014-12-04,"YB","AE","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare and algae cover."
+"2014-12-04_YB-AEq4",2014-12-04,2014-12-04,"YB","AE","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%","Counts may be low due to algae and glare."
+"2014-12-04_YB-AEq8",2014-12-04,2014-12-04,"YB","AE","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","10%",""
+"2014-12-04_YB-AFq5",2014-12-04,2014-12-04,"YB","AF","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","15%",""
+"2014-12-04_YB-AFq8",2014-12-04,2014-12-04,"YB","AF","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2014-12-04_YB-AFq9",2014-12-04,2014-12-04,"YB","AF","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Cropped","0%","Counts likely low due to water patches"
+"2014-12-04_YB-AFq5",2014-12-04,2014-12-04,"YB","AF","5","Ae","Anemones","Type 14",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Cropped","Cropped","15%",""
+"2014-12-04_YB-AFq8",2014-12-04,2014-12-04,"YB","AF","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2014-12-04_YB-AFq9",2014-12-04,2014-12-04,"YB","AF","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Cropped","0%","Counts likely low due to water patches"
+"2014-12-04_YB-AFq5",2014-12-04,2014-12-04,"YB","AF","5","Bg","Balanus_glandula","Type 1",404,0.015625,25856,"c","Beatriz Vaca","Finished","Cropped","Cropped","15%",""
+"2014-12-04_YB-AFq8",2014-12-04,2014-12-04,"YB","AF","8","Bg","Balanus_glandula","Type 1",1008,0.015625,64512,"c","Celeste Moen","Finished","Full","Cropped","0%",""
+"2014-12-04_YB-AFq9",2014-12-04,2014-12-04,"YB","AF","9","Bg","Balanus_glandula","Type 1",669,0.015625,42816,"c","Stephanie Merhoff","Finished","Cropped","Cropped","0%","Counts likely low due to water patches"
+"2014-12-04_YB-AFq5",2014-12-04,2014-12-04,"YB","AF","5","BgD","Balanus_glandula_(dead)","Type 2",18,0.015625,1152,"c","Beatriz Vaca","Finished","Cropped","Cropped","15%",""
+"2014-12-04_YB-AFq8",2014-12-04,2014-12-04,"YB","AF","8","BgD","Balanus_glandula_(dead)","Type 2",68,0.015625,4352,"c","Celeste Moen","Finished","Full","Cropped","0%",""
+"2014-12-04_YB-AFq9",2014-12-04,2014-12-04,"YB","AF","9","BgD","Balanus_glandula_(dead)","Type 2",2,0.015625,128,"c","Stephanie Merhoff","Finished","Cropped","Cropped","0%","Counts likely low due to water patches"
+"2014-12-04_YB-AFq5",2014-12-04,2014-12-04,"YB","AF","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","15%",""
+"2014-12-04_YB-AFq8",2014-12-04,2014-12-04,"YB","AF","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2014-12-04_YB-AFq9",2014-12-04,2014-12-04,"YB","AF","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Cropped","0%","Counts likely low due to water patches"
+"2014-12-04_YB-AFq5",2014-12-04,2014-12-04,"YB","AF","5","Cth","Chthamalus_dalli","Type 3",50,0.015625,3200,"c","Beatriz Vaca","Finished","Cropped","Cropped","15%",""
+"2014-12-04_YB-AFq8",2014-12-04,2014-12-04,"YB","AF","8","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Celeste Moen","Finished","Full","Cropped","0%",""
+"2014-12-04_YB-AFq9",2014-12-04,2014-12-04,"YB","AF","9","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Cropped","Cropped","0%","Counts likely low due to water patches"
+"2014-12-04_YB-AFq5",2014-12-04,2014-12-04,"YB","AF","5","CthD","Chthamalus_dalli (dead)","Type 4",5,0.015625,320,"c","Beatriz Vaca","Finished","Cropped","Cropped","15%",""
+"2014-12-04_YB-AFq8",2014-12-04,2014-12-04,"YB","AF","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Celeste Moen","Finished","Full","Cropped","0%",""
+"2014-12-04_YB-AFq9",2014-12-04,2014-12-04,"YB","AF","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Cropped","Cropped","0%","Counts likely low due to water patches"
+"2014-12-04_YB-AFq5",2014-12-04,2014-12-04,"YB","AF","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","15%",""
+"2014-12-04_YB-AFq8",2014-12-04,2014-12-04,"YB","AF","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2014-12-04_YB-AFq9",2014-12-04,2014-12-04,"YB","AF","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Cropped","0%","Counts likely low due to water patches"
+"2014-12-04_YB-AFq5",2014-12-04,2014-12-04,"YB","AF","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","15%",""
+"2014-12-04_YB-AFq8",2014-12-04,2014-12-04,"YB","AF","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2014-12-04_YB-AFq9",2014-12-04,2014-12-04,"YB","AF","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Cropped","0%","Counts likely low due to water patches"
+"2014-12-04_YB-AFq5",2014-12-04,2014-12-04,"YB","AF","5","Lim","Limpets","Type 12",148,0.0875,1691.42857142857,NA,"Beatriz Vaca","Finished","Cropped","Cropped","15%",""
+"2014-12-04_YB-AFq8",2014-12-04,2014-12-04,"YB","AF","8","Lim","Limpets","Type 12",67,0.0875,765.714285714286,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2014-12-04_YB-AFq9",2014-12-04,2014-12-04,"YB","AF","9","Lim","Limpets","Type 12",23,0.0875,262.857142857143,NA,"Stephanie Merhoff","Finished","Cropped","Cropped","0%","Counts likely low due to water patches"
+"2014-12-04_YB-AFq5",2014-12-04,2014-12-04,"YB","AF","5","Ls","Littorina_sitkana","Type 13",232,0.0875,2651.42857142857,NA,"Beatriz Vaca","Finished","Cropped","Cropped","15%",""
+"2014-12-04_YB-AFq8",2014-12-04,2014-12-04,"YB","AF","8","Ls","Littorina_sitkana","Type 13",198,0.0875,2262.85714285714,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2014-12-04_YB-AFq9",2014-12-04,2014-12-04,"YB","AF","9","Ls","Littorina_sitkana","Type 13",231,0.0875,2640,NA,"Stephanie Merhoff","Finished","Cropped","Cropped","0%","Counts likely low due to water patches"
+"2014-12-04_YB-AFq5",2014-12-04,2014-12-04,"YB","AF","5","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","15%",""
+"2014-12-04_YB-AFq8",2014-12-04,2014-12-04,"YB","AF","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2014-12-04_YB-AFq9",2014-12-04,2014-12-04,"YB","AF","9","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Stephanie Merhoff","Finished","Cropped","Cropped","0%","Counts likely low due to water patches"
+"2014-12-04_YB-AFq5",2014-12-04,2014-12-04,"YB","AF","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","15%",""
+"2014-12-04_YB-AFq8",2014-12-04,2014-12-04,"YB","AF","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2014-12-04_YB-AFq9",2014-12-04,2014-12-04,"YB","AF","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Stephanie Merhoff","Finished","Cropped","Cropped","0%","Counts likely low due to water patches"
+"2014-12-04_YB-AFq5",2014-12-04,2014-12-04,"YB","AF","5","Myt","Mytilus_spp","Type 7",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","15%",""
+"2014-12-04_YB-AFq8",2014-12-04,2014-12-04,"YB","AF","8","Myt","Mytilus_spp","Type 7",674,0.0875,7702.85714285714,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2014-12-04_YB-AFq9",2014-12-04,2014-12-04,"YB","AF","9","Myt","Mytilus_spp","Type 7",234,0.015625,14976,"c","Stephanie Merhoff","Finished","Cropped","Cropped","0%","Counts likely low due to water patches"
+"2014-12-04_YB-AFq5",2014-12-04,2014-12-04,"YB","AF","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","15%",""
+"2014-12-04_YB-AFq8",2014-12-04,2014-12-04,"YB","AF","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2014-12-04_YB-AFq9",2014-12-04,2014-12-04,"YB","AF","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Stephanie Merhoff","Finished","Cropped","Cropped","0%","Counts likely low due to water patches"
+"2014-12-04_YB-AFq5",2014-12-04,2014-12-04,"YB","AF","5","Mt","Mytilus_trossulus","Type 15",127,0.015625,8128,"c","Beatriz Vaca","Finished","Cropped","Cropped","15%",""
+"2014-12-04_YB-AFq8",2014-12-04,2014-12-04,"YB","AF","8","Mt","Mytilus_trossulus","Type 15",3,0.0875,34.2857142857143,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2014-12-04_YB-AFq9",2014-12-04,2014-12-04,"YB","AF","9","Mt","Mytilus_trossulus","Type 15",82,0.015625,5248,"c","Stephanie Merhoff","Finished","Cropped","Cropped","0%","Counts likely low due to water patches"
+"2014-12-04_YB-AFq5",2014-12-04,2014-12-04,"YB","AF","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","15%",""
+"2014-12-04_YB-AFq8",2014-12-04,2014-12-04,"YB","AF","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2014-12-04_YB-AFq9",2014-12-04,2014-12-04,"YB","AF","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Stephanie Merhoff","Finished","Cropped","Cropped","0%","Counts likely low due to water patches"
+"2014-12-04_YB-AFq5",2014-12-04,2014-12-04,"YB","AF","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","15%",""
+"2014-12-04_YB-AFq8",2014-12-04,2014-12-04,"YB","AF","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2014-12-04_YB-AFq9",2014-12-04,2014-12-04,"YB","AF","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Cropped","0%","Counts likely low due to water patches"
+"2014-12-04_YB-AFq5",2014-12-04,2014-12-04,"YB","AF","5","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","15%",""
+"2014-12-04_YB-AFq8",2014-12-04,2014-12-04,"YB","AF","8","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2014-12-04_YB-AFq9",2014-12-04,2014-12-04,"YB","AF","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Cropped","0%","Counts likely low due to water patches"
+"2014-12-04_YB-AFq5",2014-12-04,2014-12-04,"YB","AF","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","15%",""
+"2014-12-04_YB-AFq8",2014-12-04,2014-12-04,"YB","AF","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2014-12-04_YB-AFq9",2014-12-04,2014-12-04,"YB","AF","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Cropped","0%","Counts likely low due to water patches"
+"2014-12-04_YB-AFq5",2014-12-04,2014-12-04,"YB","AF","5","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Cropped","Cropped","15%",""
+"2014-12-04_YB-AFq8",2014-12-04,2014-12-04,"YB","AF","8","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2014-12-04_YB-AFq9",2014-12-04,2014-12-04,"YB","AF","9","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Cropped","0%","Counts likely low due to water patches"
+"2014-12-04_YB-AFq5",2014-12-04,2014-12-04,"YB","AF","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","15%",""
+"2014-12-04_YB-AFq8",2014-12-04,2014-12-04,"YB","AF","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2014-12-04_YB-AFq9",2014-12-04,2014-12-04,"YB","AF","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Cropped","0%","Counts likely low due to water patches"
+"2014-12-04_YB-AFq5",2014-12-04,2014-12-04,"YB","AF","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","15%",""
+"2014-12-04_YB-AFq8",2014-12-04,2014-12-04,"YB","AF","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2014-12-04_YB-AFq9",2014-12-04,2014-12-04,"YB","AF","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Cropped","0%","Counts likely low due to water patches"
+"2014-12-04_YB-AFq5",2014-12-04,2014-12-04,"YB","AF","5","Pp","Pollicipes_polymerus","Type 11",10,0.0875,114.285714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","15%",""
+"2014-12-04_YB-AFq8",2014-12-04,2014-12-04,"YB","AF","8","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2014-12-04_YB-AFq9",2014-12-04,2014-12-04,"YB","AF","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Cropped","0%","Counts likely low due to water patches"
+"2014-12-04_YB-AFq5",2014-12-04,2014-12-04,"YB","AF","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","15%",""
+"2014-12-04_YB-AFq8",2014-12-04,2014-12-04,"YB","AF","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2014-12-04_YB-AFq9",2014-12-04,2014-12-04,"YB","AF","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Cropped","0%","Counts likely low due to water patches"
+"2014-12-04_YB-AFq5",2014-12-04,2014-12-04,"YB","AF","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","15%",""
+"2014-12-04_YB-AFq8",2014-12-04,2014-12-04,"YB","AF","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2014-12-04_YB-AFq9",2014-12-04,2014-12-04,"YB","AF","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Cropped","0%","Counts likely low due to water patches"
+"2014-12-04_YB-AFq5",2014-12-04,2014-12-04,"YB","AF","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","15%",""
+"2014-12-04_YB-AFq8",2014-12-04,2014-12-04,"YB","AF","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2014-12-04_YB-AFq9",2014-12-04,2014-12-04,"YB","AF","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Cropped","Cropped","0%","Counts likely low due to water patches"
+"2014-12-04_YB-AGq2",2014-12-04,2014-12-04,"YB","AG","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Cropped","10%","Counts may be low due to glare and algae."
+"2014-12-04_YB-AGq7",2014-12-04,2014-12-04,"YB","AG","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to water patches"
+"2014-12-04_YB-AGq9",2014-12-04,2014-12-04,"YB","AG","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%",""
+"2014-12-04_YB-AGq2",2014-12-04,2014-12-04,"YB","AG","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Cropped","10%","Counts may be low due to glare and algae."
+"2014-12-04_YB-AGq7",2014-12-04,2014-12-04,"YB","AG","7","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to water patches"
+"2014-12-04_YB-AGq9",2014-12-04,2014-12-04,"YB","AG","9","Ae","Anemones","Type 14",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","70%",""
+"2014-12-04_YB-AGq2",2014-12-04,2014-12-04,"YB","AG","2","Bg","Balanus_glandula","Type 1",413,0.015625,26432,"c","Rebecca Friedrich","Finished","Full","Cropped","10%","Counts may be low due to glare and algae."
+"2014-12-04_YB-AGq7",2014-12-04,2014-12-04,"YB","AG","7","Bg","Balanus_glandula","Type 1",273,0.015625,17472,"c","Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to water patches"
+"2014-12-04_YB-AGq9",2014-12-04,2014-12-04,"YB","AG","9","Bg","Balanus_glandula","Type 1",436,0.0875,4982.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","70%",""
+"2014-12-04_YB-AGq2",2014-12-04,2014-12-04,"YB","AG","2","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Rebecca Friedrich","Finished","Full","Cropped","10%","Counts may be low due to glare and algae."
+"2014-12-04_YB-AGq7",2014-12-04,2014-12-04,"YB","AG","7","BgD","Balanus_glandula_(dead)","Type 2",1,0.015625,64,"c","Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to water patches"
+"2014-12-04_YB-AGq9",2014-12-04,2014-12-04,"YB","AG","9","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%",""
+"2014-12-04_YB-AGq2",2014-12-04,2014-12-04,"YB","AG","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Cropped","10%","Counts may be low due to glare and algae."
+"2014-12-04_YB-AGq7",2014-12-04,2014-12-04,"YB","AG","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to water patches"
+"2014-12-04_YB-AGq9",2014-12-04,2014-12-04,"YB","AG","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%",""
+"2014-12-04_YB-AGq2",2014-12-04,2014-12-04,"YB","AG","2","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Rebecca Friedrich","Finished","Full","Cropped","10%","Counts may be low due to glare and algae."
+"2014-12-04_YB-AGq7",2014-12-04,2014-12-04,"YB","AG","7","Cth","Chthamalus_dalli","Type 3",4,0.015625,256,"c","Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to water patches"
+"2014-12-04_YB-AGq9",2014-12-04,2014-12-04,"YB","AG","9","Cth","Chthamalus_dalli","Type 3",23,0.0875,262.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","70%",""
+"2014-12-04_YB-AGq2",2014-12-04,2014-12-04,"YB","AG","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Rebecca Friedrich","Finished","Full","Cropped","10%","Counts may be low due to glare and algae."
+"2014-12-04_YB-AGq7",2014-12-04,2014-12-04,"YB","AG","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to water patches"
+"2014-12-04_YB-AGq9",2014-12-04,2014-12-04,"YB","AG","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%",""
+"2014-12-04_YB-AGq2",2014-12-04,2014-12-04,"YB","AG","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Cropped","10%","Counts may be low due to glare and algae."
+"2014-12-04_YB-AGq7",2014-12-04,2014-12-04,"YB","AG","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to water patches"
+"2014-12-04_YB-AGq9",2014-12-04,2014-12-04,"YB","AG","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%",""
+"2014-12-04_YB-AGq2",2014-12-04,2014-12-04,"YB","AG","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Cropped","10%","Counts may be low due to glare and algae."
+"2014-12-04_YB-AGq7",2014-12-04,2014-12-04,"YB","AG","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to water patches"
+"2014-12-04_YB-AGq9",2014-12-04,2014-12-04,"YB","AG","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%",""
+"2014-12-04_YB-AGq2",2014-12-04,2014-12-04,"YB","AG","2","Lim","Limpets","Type 12",181,0.0875,2068.57142857143,NA,"Rebecca Friedrich","Finished","Full","Cropped","10%","Counts may be low due to glare and algae."
+"2014-12-04_YB-AGq7",2014-12-04,2014-12-04,"YB","AG","7","Lim","Limpets","Type 12",24,0.0875,274.285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to water patches"
+"2014-12-04_YB-AGq9",2014-12-04,2014-12-04,"YB","AG","9","Lim","Limpets","Type 12",44,0.0875,502.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","70%",""
+"2014-12-04_YB-AGq2",2014-12-04,2014-12-04,"YB","AG","2","Ls","Littorina_sitkana","Type 13",90,0.0875,1028.57142857143,NA,"Rebecca Friedrich","Finished","Full","Cropped","10%","Counts may be low due to glare and algae."
+"2014-12-04_YB-AGq7",2014-12-04,2014-12-04,"YB","AG","7","Ls","Littorina_sitkana","Type 13",100,0.0875,1142.85714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to water patches"
+"2014-12-04_YB-AGq9",2014-12-04,2014-12-04,"YB","AG","9","Ls","Littorina_sitkana","Type 13",62,0.0875,708.571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","70%",""
+"2014-12-04_YB-AGq2",2014-12-04,2014-12-04,"YB","AG","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Cropped","10%","Counts may be low due to glare and algae."
+"2014-12-04_YB-AGq7",2014-12-04,2014-12-04,"YB","AG","7","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to water patches"
+"2014-12-04_YB-AGq9",2014-12-04,2014-12-04,"YB","AG","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%",""
+"2014-12-04_YB-AGq2",2014-12-04,2014-12-04,"YB","AG","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Cropped","10%","Counts may be low due to glare and algae."
+"2014-12-04_YB-AGq7",2014-12-04,2014-12-04,"YB","AG","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to water patches"
+"2014-12-04_YB-AGq9",2014-12-04,2014-12-04,"YB","AG","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%",""
+"2014-12-04_YB-AGq2",2014-12-04,2014-12-04,"YB","AG","2","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Cropped","10%","Counts may be low due to glare and algae."
+"2014-12-04_YB-AGq7",2014-12-04,2014-12-04,"YB","AG","7","Myt","Mytilus_spp","Type 7",557,0.0875,6365.71428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to water patches"
+"2014-12-04_YB-AGq9",2014-12-04,2014-12-04,"YB","AG","9","Myt","Mytilus_spp","Type 7",744,0.0875,8502.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","70%",""
+"2014-12-04_YB-AGq2",2014-12-04,2014-12-04,"YB","AG","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Cropped","10%","Counts may be low due to glare and algae."
+"2014-12-04_YB-AGq7",2014-12-04,2014-12-04,"YB","AG","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to water patches"
+"2014-12-04_YB-AGq9",2014-12-04,2014-12-04,"YB","AG","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%",""
+"2014-12-04_YB-AGq2",2014-12-04,2014-12-04,"YB","AG","2","Mt","Mytilus_trossulus","Type 15",339,0.0875,3874.28571428571,NA,"Rebecca Friedrich","Finished","Full","Cropped","10%","Counts may be low due to glare and algae."
+"2014-12-04_YB-AGq7",2014-12-04,2014-12-04,"YB","AG","7","Mt","Mytilus_trossulus","Type 15",81,0.0875,925.714285714286,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to water patches"
+"2014-12-04_YB-AGq9",2014-12-04,2014-12-04,"YB","AG","9","Mt","Mytilus_trossulus","Type 15",63,0.0875,720,NA,"Stephanie Merhoff","Finished","Full","Full","70%",""
+"2014-12-04_YB-AGq2",2014-12-04,2014-12-04,"YB","AG","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Cropped","10%","Counts may be low due to glare and algae."
+"2014-12-04_YB-AGq7",2014-12-04,2014-12-04,"YB","AG","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to water patches"
+"2014-12-04_YB-AGq9",2014-12-04,2014-12-04,"YB","AG","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%",""
+"2014-12-04_YB-AGq2",2014-12-04,2014-12-04,"YB","AG","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Cropped","10%","Counts may be low due to glare and algae."
+"2014-12-04_YB-AGq7",2014-12-04,2014-12-04,"YB","AG","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to water patches"
+"2014-12-04_YB-AGq9",2014-12-04,2014-12-04,"YB","AG","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%",""
+"2014-12-04_YB-AGq2",2014-12-04,2014-12-04,"YB","AG","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Cropped","10%","Counts may be low due to glare and algae."
+"2014-12-04_YB-AGq7",2014-12-04,2014-12-04,"YB","AG","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to water patches"
+"2014-12-04_YB-AGq9",2014-12-04,2014-12-04,"YB","AG","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%",""
+"2014-12-04_YB-AGq2",2014-12-04,2014-12-04,"YB","AG","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Cropped","10%","Counts may be low due to glare and algae."
+"2014-12-04_YB-AGq7",2014-12-04,2014-12-04,"YB","AG","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to water patches"
+"2014-12-04_YB-AGq9",2014-12-04,2014-12-04,"YB","AG","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%",""
+"2014-12-04_YB-AGq2",2014-12-04,2014-12-04,"YB","AG","2","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Cropped","10%","Counts may be low due to glare and algae."
+"2014-12-04_YB-AGq7",2014-12-04,2014-12-04,"YB","AG","7","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to water patches"
+"2014-12-04_YB-AGq9",2014-12-04,2014-12-04,"YB","AG","9","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%",""
+"2014-12-04_YB-AGq2",2014-12-04,2014-12-04,"YB","AG","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Cropped","10%","Counts may be low due to glare and algae."
+"2014-12-04_YB-AGq7",2014-12-04,2014-12-04,"YB","AG","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to water patches"
+"2014-12-04_YB-AGq9",2014-12-04,2014-12-04,"YB","AG","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%",""
+"2014-12-04_YB-AGq2",2014-12-04,2014-12-04,"YB","AG","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Cropped","10%","Counts may be low due to glare and algae."
+"2014-12-04_YB-AGq7",2014-12-04,2014-12-04,"YB","AG","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to water patches"
+"2014-12-04_YB-AGq9",2014-12-04,2014-12-04,"YB","AG","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%",""
+"2014-12-04_YB-AGq2",2014-12-04,2014-12-04,"YB","AG","2","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Cropped","10%","Counts may be low due to glare and algae."
+"2014-12-04_YB-AGq7",2014-12-04,2014-12-04,"YB","AG","7","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to water patches"
+"2014-12-04_YB-AGq9",2014-12-04,2014-12-04,"YB","AG","9","Pp","Pollicipes_polymerus","Type 11",42,0.0875,480,NA,"Stephanie Merhoff","Finished","Full","Full","70%",""
+"2014-12-04_YB-AGq2",2014-12-04,2014-12-04,"YB","AG","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Cropped","10%","Counts may be low due to glare and algae."
+"2014-12-04_YB-AGq7",2014-12-04,2014-12-04,"YB","AG","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to water patches"
+"2014-12-04_YB-AGq9",2014-12-04,2014-12-04,"YB","AG","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%",""
+"2014-12-04_YB-AGq2",2014-12-04,2014-12-04,"YB","AG","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Cropped","10%","Counts may be low due to glare and algae."
+"2014-12-04_YB-AGq7",2014-12-04,2014-12-04,"YB","AG","7","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to water patches"
+"2014-12-04_YB-AGq9",2014-12-04,2014-12-04,"YB","AG","9","Sc","Semibalanus_cariosus","Type 5",4,0.0875,45.7142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","70%",""
+"2014-12-04_YB-AGq2",2014-12-04,2014-12-04,"YB","AG","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Cropped","10%","Counts may be low due to glare and algae."
+"2014-12-04_YB-AGq7",2014-12-04,2014-12-04,"YB","AG","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts may be low due to water patches"
+"2014-12-04_YB-AGq9",2014-12-04,2014-12-04,"YB","AG","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%",""
+"2014-12-04_YB-Bq1",2014-12-04,2014-12-04,"YB","B","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-12-04_YB-Bq5",2014-12-04,2014-12-04,"YB","B","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-12-04_YB-Bq6",2014-12-04,2014-12-04,"YB","B","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-12-04_YB-Bq1",2014-12-04,2014-12-04,"YB","B","1","Ae","Anemones","Type 14",45,0.0875,514.285714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-12-04_YB-Bq5",2014-12-04,2014-12-04,"YB","B","5","Ae","Anemones","Type 14",49,0.0875,560,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-12-04_YB-Bq6",2014-12-04,2014-12-04,"YB","B","6","Ae","Anemones","Type 14",52,0.0875,594.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-12-04_YB-Bq1",2014-12-04,2014-12-04,"YB","B","1","Bg","Balanus_glandula","Type 1",144,0.015625,9216,"c","Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-12-04_YB-Bq5",2014-12-04,2014-12-04,"YB","B","5","Bg","Balanus_glandula","Type 1",264,0.0875,3017.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-12-04_YB-Bq6",2014-12-04,2014-12-04,"YB","B","6","Bg","Balanus_glandula","Type 1",342,0.0875,3908.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-12-04_YB-Bq1",2014-12-04,2014-12-04,"YB","B","1","BgD","Balanus_glandula_(dead)","Type 2",10,0.015625,640,"c","Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-12-04_YB-Bq5",2014-12-04,2014-12-04,"YB","B","5","BgD","Balanus_glandula_(dead)","Type 2",22,0.0875,251.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-12-04_YB-Bq6",2014-12-04,2014-12-04,"YB","B","6","BgD","Balanus_glandula_(dead)","Type 2",73,0.0875,834.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-12-04_YB-Bq1",2014-12-04,2014-12-04,"YB","B","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-12-04_YB-Bq5",2014-12-04,2014-12-04,"YB","B","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-12-04_YB-Bq6",2014-12-04,2014-12-04,"YB","B","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-12-04_YB-Bq1",2014-12-04,2014-12-04,"YB","B","1","Cth","Chthamalus_dalli","Type 3",18,0.015625,1152,"c","Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-12-04_YB-Bq5",2014-12-04,2014-12-04,"YB","B","5","Cth","Chthamalus_dalli","Type 3",32,0.0875,365.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-12-04_YB-Bq6",2014-12-04,2014-12-04,"YB","B","6","Cth","Chthamalus_dalli","Type 3",64,0.0875,731.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-12-04_YB-Bq1",2014-12-04,2014-12-04,"YB","B","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-12-04_YB-Bq5",2014-12-04,2014-12-04,"YB","B","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-12-04_YB-Bq6",2014-12-04,2014-12-04,"YB","B","6","CthD","Chthamalus_dalli (dead)","Type 4",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-12-04_YB-Bq1",2014-12-04,2014-12-04,"YB","B","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-12-04_YB-Bq5",2014-12-04,2014-12-04,"YB","B","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-12-04_YB-Bq6",2014-12-04,2014-12-04,"YB","B","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-12-04_YB-Bq1",2014-12-04,2014-12-04,"YB","B","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-12-04_YB-Bq5",2014-12-04,2014-12-04,"YB","B","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-12-04_YB-Bq6",2014-12-04,2014-12-04,"YB","B","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-12-04_YB-Bq1",2014-12-04,2014-12-04,"YB","B","1","Lim","Limpets","Type 12",189,0.0875,2160,NA,"Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-12-04_YB-Bq5",2014-12-04,2014-12-04,"YB","B","5","Lim","Limpets","Type 12",232,0.0875,2651.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-12-04_YB-Bq6",2014-12-04,2014-12-04,"YB","B","6","Lim","Limpets","Type 12",175,0.0875,2000,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-12-04_YB-Bq1",2014-12-04,2014-12-04,"YB","B","1","Ls","Littorina_sitkana","Type 13",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-12-04_YB-Bq5",2014-12-04,2014-12-04,"YB","B","5","Ls","Littorina_sitkana","Type 13",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-12-04_YB-Bq6",2014-12-04,2014-12-04,"YB","B","6","Ls","Littorina_sitkana","Type 13",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-12-04_YB-Bq1",2014-12-04,2014-12-04,"YB","B","1","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-12-04_YB-Bq5",2014-12-04,2014-12-04,"YB","B","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-12-04_YB-Bq6",2014-12-04,2014-12-04,"YB","B","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-12-04_YB-Bq1",2014-12-04,2014-12-04,"YB","B","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-12-04_YB-Bq5",2014-12-04,2014-12-04,"YB","B","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-12-04_YB-Bq6",2014-12-04,2014-12-04,"YB","B","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-12-04_YB-Bq1",2014-12-04,2014-12-04,"YB","B","1","Myt","Mytilus_spp","Type 7",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-12-04_YB-Bq5",2014-12-04,2014-12-04,"YB","B","5","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-12-04_YB-Bq6",2014-12-04,2014-12-04,"YB","B","6","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-12-04_YB-Bq1",2014-12-04,2014-12-04,"YB","B","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-12-04_YB-Bq5",2014-12-04,2014-12-04,"YB","B","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-12-04_YB-Bq6",2014-12-04,2014-12-04,"YB","B","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-12-04_YB-Bq1",2014-12-04,2014-12-04,"YB","B","1","Mt","Mytilus_trossulus","Type 15",131,0.015625,8384,"c","Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-12-04_YB-Bq5",2014-12-04,2014-12-04,"YB","B","5","Mt","Mytilus_trossulus","Type 15",307,0.0875,3508.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-12-04_YB-Bq6",2014-12-04,2014-12-04,"YB","B","6","Mt","Mytilus_trossulus","Type 15",446,0.0875,5097.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-12-04_YB-Bq1",2014-12-04,2014-12-04,"YB","B","1","MtD","Mytilus_trossulus_(dead)","Type 16",1,0.015625,64,"c","Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-12-04_YB-Bq5",2014-12-04,2014-12-04,"YB","B","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-12-04_YB-Bq6",2014-12-04,2014-12-04,"YB","B","6","MtD","Mytilus_trossulus_(dead)","Type 16",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-12-04_YB-Bq1",2014-12-04,2014-12-04,"YB","B","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-12-04_YB-Bq5",2014-12-04,2014-12-04,"YB","B","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-12-04_YB-Bq6",2014-12-04,2014-12-04,"YB","B","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-12-04_YB-Bq1",2014-12-04,2014-12-04,"YB","B","1","Nc","Nucella_canaliculata","Type 10",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-12-04_YB-Bq5",2014-12-04,2014-12-04,"YB","B","5","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-12-04_YB-Bq6",2014-12-04,2014-12-04,"YB","B","6","Nc","Nucella_canaliculata","Type 10",10,0.0875,114.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-12-04_YB-Bq1",2014-12-04,2014-12-04,"YB","B","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-12-04_YB-Bq5",2014-12-04,2014-12-04,"YB","B","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-12-04_YB-Bq6",2014-12-04,2014-12-04,"YB","B","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-12-04_YB-Bq1",2014-12-04,2014-12-04,"YB","B","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-12-04_YB-Bq5",2014-12-04,2014-12-04,"YB","B","5","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-12-04_YB-Bq6",2014-12-04,2014-12-04,"YB","B","6","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-12-04_YB-Bq1",2014-12-04,2014-12-04,"YB","B","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-12-04_YB-Bq5",2014-12-04,2014-12-04,"YB","B","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-12-04_YB-Bq6",2014-12-04,2014-12-04,"YB","B","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-12-04_YB-Bq1",2014-12-04,2014-12-04,"YB","B","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-12-04_YB-Bq5",2014-12-04,2014-12-04,"YB","B","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-12-04_YB-Bq6",2014-12-04,2014-12-04,"YB","B","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-12-04_YB-Bq1",2014-12-04,2014-12-04,"YB","B","1","Pp","Pollicipes_polymerus","Type 11",160,0.0875,1828.57142857143,NA,"Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-12-04_YB-Bq5",2014-12-04,2014-12-04,"YB","B","5","Pp","Pollicipes_polymerus","Type 11",40,0.0875,457.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-12-04_YB-Bq6",2014-12-04,2014-12-04,"YB","B","6","Pp","Pollicipes_polymerus","Type 11",67,0.0875,765.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-12-04_YB-Bq1",2014-12-04,2014-12-04,"YB","B","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-12-04_YB-Bq5",2014-12-04,2014-12-04,"YB","B","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-12-04_YB-Bq6",2014-12-04,2014-12-04,"YB","B","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-12-04_YB-Bq1",2014-12-04,2014-12-04,"YB","B","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-12-04_YB-Bq5",2014-12-04,2014-12-04,"YB","B","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-12-04_YB-Bq6",2014-12-04,2014-12-04,"YB","B","6","Sc","Semibalanus_cariosus","Type 5",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-12-04_YB-Bq1",2014-12-04,2014-12-04,"YB","B","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","2%",""
+"2014-12-04_YB-Bq5",2014-12-04,2014-12-04,"YB","B","5","ScD","Semibalanus_cariosus_(dead)","Type 6",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2014-12-04_YB-Bq6",2014-12-04,2014-12-04,"YB","B","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-12-04_YB-BBq1",2014-12-04,2014-12-04,"YB","BB","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to glare"
+"2014-12-04_YB-BBq2",2014-12-04,2014-12-04,"YB","BB","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to water patches and glare"
+"2014-12-04_YB-BBq9",2014-12-04,2014-12-04,"YB","BB","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to blur"
+"2014-12-04_YB-BBq1",2014-12-04,2014-12-04,"YB","BB","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to glare"
+"2014-12-04_YB-BBq2",2014-12-04,2014-12-04,"YB","BB","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to water patches and glare"
+"2014-12-04_YB-BBq9",2014-12-04,2014-12-04,"YB","BB","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to blur"
+"2014-12-04_YB-BBq1",2014-12-04,2014-12-04,"YB","BB","1","Bg","Balanus_glandula","Type 1",342,0.0875,3908.57142857143,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to glare"
+"2014-12-04_YB-BBq2",2014-12-04,2014-12-04,"YB","BB","2","Bg","Balanus_glandula","Type 1",321,0.0875,3668.57142857143,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to water patches and glare"
+"2014-12-04_YB-BBq9",2014-12-04,2014-12-04,"YB","BB","9","Bg","Balanus_glandula","Type 1",977,0.0875,11165.7142857143,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to blur"
+"2014-12-04_YB-BBq1",2014-12-04,2014-12-04,"YB","BB","1","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to glare"
+"2014-12-04_YB-BBq2",2014-12-04,2014-12-04,"YB","BB","2","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to water patches and glare"
+"2014-12-04_YB-BBq9",2014-12-04,2014-12-04,"YB","BB","9","BgD","Balanus_glandula_(dead)","Type 2",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to blur"
+"2014-12-04_YB-BBq1",2014-12-04,2014-12-04,"YB","BB","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to glare"
+"2014-12-04_YB-BBq2",2014-12-04,2014-12-04,"YB","BB","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to water patches and glare"
+"2014-12-04_YB-BBq9",2014-12-04,2014-12-04,"YB","BB","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to blur"
+"2014-12-04_YB-BBq1",2014-12-04,2014-12-04,"YB","BB","1","Cth","Chthamalus_dalli","Type 3",41,0.0875,468.571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to glare"
+"2014-12-04_YB-BBq2",2014-12-04,2014-12-04,"YB","BB","2","Cth","Chthamalus_dalli","Type 3",20,0.0875,228.571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to water patches and glare"
+"2014-12-04_YB-BBq9",2014-12-04,2014-12-04,"YB","BB","9","Cth","Chthamalus_dalli","Type 3",6,0.0875,68.5714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to blur"
+"2014-12-04_YB-BBq1",2014-12-04,2014-12-04,"YB","BB","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to glare"
+"2014-12-04_YB-BBq2",2014-12-04,2014-12-04,"YB","BB","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to water patches and glare"
+"2014-12-04_YB-BBq9",2014-12-04,2014-12-04,"YB","BB","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to blur"
+"2014-12-04_YB-BBq1",2014-12-04,2014-12-04,"YB","BB","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to glare"
+"2014-12-04_YB-BBq2",2014-12-04,2014-12-04,"YB","BB","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to water patches and glare"
+"2014-12-04_YB-BBq9",2014-12-04,2014-12-04,"YB","BB","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to blur"
+"2014-12-04_YB-BBq1",2014-12-04,2014-12-04,"YB","BB","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to glare"
+"2014-12-04_YB-BBq2",2014-12-04,2014-12-04,"YB","BB","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to water patches and glare"
+"2014-12-04_YB-BBq9",2014-12-04,2014-12-04,"YB","BB","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to blur"
+"2014-12-04_YB-BBq1",2014-12-04,2014-12-04,"YB","BB","1","Lim","Limpets","Type 12",38,0.0875,434.285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to glare"
+"2014-12-04_YB-BBq2",2014-12-04,2014-12-04,"YB","BB","2","Lim","Limpets","Type 12",74,0.0875,845.714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to water patches and glare"
+"2014-12-04_YB-BBq9",2014-12-04,2014-12-04,"YB","BB","9","Lim","Limpets","Type 12",23,0.0875,262.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to blur"
+"2014-12-04_YB-BBq1",2014-12-04,2014-12-04,"YB","BB","1","Ls","Littorina_sitkana","Type 13",115,0.0875,1314.28571428571,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to glare"
+"2014-12-04_YB-BBq2",2014-12-04,2014-12-04,"YB","BB","2","Ls","Littorina_sitkana","Type 13",95,0.0875,1085.71428571429,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to water patches and glare"
+"2014-12-04_YB-BBq9",2014-12-04,2014-12-04,"YB","BB","9","Ls","Littorina_sitkana","Type 13",173,0.0875,1977.14285714286,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to blur"
+"2014-12-04_YB-BBq1",2014-12-04,2014-12-04,"YB","BB","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to glare"
+"2014-12-04_YB-BBq2",2014-12-04,2014-12-04,"YB","BB","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to water patches and glare"
+"2014-12-04_YB-BBq9",2014-12-04,2014-12-04,"YB","BB","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to blur"
+"2014-12-04_YB-BBq1",2014-12-04,2014-12-04,"YB","BB","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to glare"
+"2014-12-04_YB-BBq2",2014-12-04,2014-12-04,"YB","BB","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to water patches and glare"
+"2014-12-04_YB-BBq9",2014-12-04,2014-12-04,"YB","BB","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to blur"
+"2014-12-04_YB-BBq1",2014-12-04,2014-12-04,"YB","BB","1","Myt","Mytilus_spp","Type 7",279,0.0875,3188.57142857143,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to glare"
+"2014-12-04_YB-BBq2",2014-12-04,2014-12-04,"YB","BB","2","Myt","Mytilus_spp","Type 7",223,0.0875,2548.57142857143,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to water patches and glare"
+"2014-12-04_YB-BBq9",2014-12-04,2014-12-04,"YB","BB","9","Myt","Mytilus_spp","Type 7",447,0.0875,5108.57142857143,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to blur"
+"2014-12-04_YB-BBq1",2014-12-04,2014-12-04,"YB","BB","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to glare"
+"2014-12-04_YB-BBq2",2014-12-04,2014-12-04,"YB","BB","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to water patches and glare"
+"2014-12-04_YB-BBq9",2014-12-04,2014-12-04,"YB","BB","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to blur"
+"2014-12-04_YB-BBq1",2014-12-04,2014-12-04,"YB","BB","1","Mt","Mytilus_trossulus","Type 15",252,0.0875,2880,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to glare"
+"2014-12-04_YB-BBq2",2014-12-04,2014-12-04,"YB","BB","2","Mt","Mytilus_trossulus","Type 15",117,0.0875,1337.14285714286,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to water patches and glare"
+"2014-12-04_YB-BBq9",2014-12-04,2014-12-04,"YB","BB","9","Mt","Mytilus_trossulus","Type 15",206,0.0875,2354.28571428571,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to blur"
+"2014-12-04_YB-BBq1",2014-12-04,2014-12-04,"YB","BB","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to glare"
+"2014-12-04_YB-BBq2",2014-12-04,2014-12-04,"YB","BB","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to water patches and glare"
+"2014-12-04_YB-BBq9",2014-12-04,2014-12-04,"YB","BB","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to blur"
+"2014-12-04_YB-BBq1",2014-12-04,2014-12-04,"YB","BB","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to glare"
+"2014-12-04_YB-BBq2",2014-12-04,2014-12-04,"YB","BB","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to water patches and glare"
+"2014-12-04_YB-BBq9",2014-12-04,2014-12-04,"YB","BB","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to blur"
+"2014-12-04_YB-BBq1",2014-12-04,2014-12-04,"YB","BB","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to glare"
+"2014-12-04_YB-BBq2",2014-12-04,2014-12-04,"YB","BB","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to water patches and glare"
+"2014-12-04_YB-BBq9",2014-12-04,2014-12-04,"YB","BB","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to blur"
+"2014-12-04_YB-BBq1",2014-12-04,2014-12-04,"YB","BB","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to glare"
+"2014-12-04_YB-BBq2",2014-12-04,2014-12-04,"YB","BB","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to water patches and glare"
+"2014-12-04_YB-BBq9",2014-12-04,2014-12-04,"YB","BB","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to blur"
+"2014-12-04_YB-BBq1",2014-12-04,2014-12-04,"YB","BB","1","No","Nucella_ostrina","Type 9",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to glare"
+"2014-12-04_YB-BBq2",2014-12-04,2014-12-04,"YB","BB","2","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to water patches and glare"
+"2014-12-04_YB-BBq9",2014-12-04,2014-12-04,"YB","BB","9","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to blur"
+"2014-12-04_YB-BBq1",2014-12-04,2014-12-04,"YB","BB","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to glare"
+"2014-12-04_YB-BBq2",2014-12-04,2014-12-04,"YB","BB","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to water patches and glare"
+"2014-12-04_YB-BBq9",2014-12-04,2014-12-04,"YB","BB","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to blur"
+"2014-12-04_YB-BBq1",2014-12-04,2014-12-04,"YB","BB","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to glare"
+"2014-12-04_YB-BBq2",2014-12-04,2014-12-04,"YB","BB","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to water patches and glare"
+"2014-12-04_YB-BBq9",2014-12-04,2014-12-04,"YB","BB","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to blur"
+"2014-12-04_YB-BBq1",2014-12-04,2014-12-04,"YB","BB","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to glare"
+"2014-12-04_YB-BBq2",2014-12-04,2014-12-04,"YB","BB","2","Pp","Pollicipes_polymerus","Type 11",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to water patches and glare"
+"2014-12-04_YB-BBq9",2014-12-04,2014-12-04,"YB","BB","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to blur"
+"2014-12-04_YB-BBq1",2014-12-04,2014-12-04,"YB","BB","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to glare"
+"2014-12-04_YB-BBq2",2014-12-04,2014-12-04,"YB","BB","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to water patches and glare"
+"2014-12-04_YB-BBq9",2014-12-04,2014-12-04,"YB","BB","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to blur"
+"2014-12-04_YB-BBq1",2014-12-04,2014-12-04,"YB","BB","1","Sc","Semibalanus_cariosus","Type 5",5,0.0875,57.1428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to glare"
+"2014-12-04_YB-BBq2",2014-12-04,2014-12-04,"YB","BB","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to water patches and glare"
+"2014-12-04_YB-BBq9",2014-12-04,2014-12-04,"YB","BB","9","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to blur"
+"2014-12-04_YB-BBq1",2014-12-04,2014-12-04,"YB","BB","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to glare"
+"2014-12-04_YB-BBq2",2014-12-04,2014-12-04,"YB","BB","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts may be low due to water patches and glare"
+"2014-12-04_YB-BBq9",2014-12-04,2014-12-04,"YB","BB","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to blur"
+"2014-12-08_YB-BCq3",2014-12-04,2014-12-08,"YB","BC","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to glare."
+"2014-12-08_YB-BCq5",2014-12-04,2014-12-08,"YB","BC","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2014-12-08_YB-BCq9",2014-12-04,2014-12-08,"YB","BC","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-12-08_YB-BCq3",2014-12-04,2014-12-08,"YB","BC","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to glare."
+"2014-12-08_YB-BCq5",2014-12-04,2014-12-08,"YB","BC","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2014-12-08_YB-BCq9",2014-12-04,2014-12-08,"YB","BC","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-12-08_YB-BCq3",2014-12-04,2014-12-08,"YB","BC","3","Bg","Balanus_glandula","Type 1",317,0.015625,20288,"c","Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to glare."
+"2014-12-08_YB-BCq5",2014-12-04,2014-12-08,"YB","BC","5","Bg","Balanus_glandula","Type 1",191,0.015625,12224,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2014-12-08_YB-BCq9",2014-12-04,2014-12-08,"YB","BC","9","Bg","Balanus_glandula","Type 1",951,0.0875,10868.5714285714,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-12-08_YB-BCq3",2014-12-04,2014-12-08,"YB","BC","3","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to glare."
+"2014-12-08_YB-BCq5",2014-12-04,2014-12-08,"YB","BC","5","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2014-12-08_YB-BCq9",2014-12-04,2014-12-08,"YB","BC","9","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-12-08_YB-BCq3",2014-12-04,2014-12-08,"YB","BC","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to glare."
+"2014-12-08_YB-BCq5",2014-12-04,2014-12-08,"YB","BC","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2014-12-08_YB-BCq9",2014-12-04,2014-12-08,"YB","BC","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-12-08_YB-BCq3",2014-12-04,2014-12-08,"YB","BC","3","Cth","Chthamalus_dalli","Type 3",15,0.015625,960,"c","Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to glare."
+"2014-12-08_YB-BCq5",2014-12-04,2014-12-08,"YB","BC","5","Cth","Chthamalus_dalli","Type 3",5,0.015625,320,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2014-12-08_YB-BCq9",2014-12-04,2014-12-08,"YB","BC","9","Cth","Chthamalus_dalli","Type 3",6,0.0875,68.5714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-12-08_YB-BCq3",2014-12-04,2014-12-08,"YB","BC","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to glare."
+"2014-12-08_YB-BCq5",2014-12-04,2014-12-08,"YB","BC","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2014-12-08_YB-BCq9",2014-12-04,2014-12-08,"YB","BC","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-12-08_YB-BCq3",2014-12-04,2014-12-08,"YB","BC","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to glare."
+"2014-12-08_YB-BCq5",2014-12-04,2014-12-08,"YB","BC","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2014-12-08_YB-BCq9",2014-12-04,2014-12-08,"YB","BC","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-12-08_YB-BCq3",2014-12-04,2014-12-08,"YB","BC","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to glare."
+"2014-12-08_YB-BCq5",2014-12-04,2014-12-08,"YB","BC","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2014-12-08_YB-BCq9",2014-12-04,2014-12-08,"YB","BC","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-12-08_YB-BCq3",2014-12-04,2014-12-08,"YB","BC","3","Lim","Limpets","Type 12",139,0.0875,1588.57142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to glare."
+"2014-12-08_YB-BCq5",2014-12-04,2014-12-08,"YB","BC","5","Lim","Limpets","Type 12",65,0.0875,742.857142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2014-12-08_YB-BCq9",2014-12-04,2014-12-08,"YB","BC","9","Lim","Limpets","Type 12",125,0.0875,1428.57142857143,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-12-08_YB-BCq3",2014-12-04,2014-12-08,"YB","BC","3","Ls","Littorina_sitkana","Type 13",255,0.0875,2914.28571428571,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to glare."
+"2014-12-08_YB-BCq5",2014-12-04,2014-12-08,"YB","BC","5","Ls","Littorina_sitkana","Type 13",181,0.0875,2068.57142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2014-12-08_YB-BCq9",2014-12-04,2014-12-08,"YB","BC","9","Ls","Littorina_sitkana","Type 13",161,0.0875,1840,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-12-08_YB-BCq3",2014-12-04,2014-12-08,"YB","BC","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to glare."
+"2014-12-08_YB-BCq5",2014-12-04,2014-12-08,"YB","BC","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2014-12-08_YB-BCq9",2014-12-04,2014-12-08,"YB","BC","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-12-08_YB-BCq3",2014-12-04,2014-12-08,"YB","BC","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to glare."
+"2014-12-08_YB-BCq5",2014-12-04,2014-12-08,"YB","BC","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2014-12-08_YB-BCq9",2014-12-04,2014-12-08,"YB","BC","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-12-08_YB-BCq3",2014-12-04,2014-12-08,"YB","BC","3","Myt","Mytilus_spp","Type 7",611,0.0875,6982.85714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to glare."
+"2014-12-08_YB-BCq5",2014-12-04,2014-12-08,"YB","BC","5","Myt","Mytilus_spp","Type 7",483,0.0875,5520,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2014-12-08_YB-BCq9",2014-12-04,2014-12-08,"YB","BC","9","Myt","Mytilus_spp","Type 7",449,0.0875,5131.42857142857,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-12-08_YB-BCq3",2014-12-04,2014-12-08,"YB","BC","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to glare."
+"2014-12-08_YB-BCq5",2014-12-04,2014-12-08,"YB","BC","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2014-12-08_YB-BCq9",2014-12-04,2014-12-08,"YB","BC","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-12-08_YB-BCq3",2014-12-04,2014-12-08,"YB","BC","3","Mt","Mytilus_trossulus","Type 15",99,0.0875,1131.42857142857,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to glare."
+"2014-12-08_YB-BCq5",2014-12-04,2014-12-08,"YB","BC","5","Mt","Mytilus_trossulus","Type 15",281,0.0875,3211.42857142857,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2014-12-08_YB-BCq9",2014-12-04,2014-12-08,"YB","BC","9","Mt","Mytilus_trossulus","Type 15",158,0.0875,1805.71428571429,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-12-08_YB-BCq3",2014-12-04,2014-12-08,"YB","BC","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to glare."
+"2014-12-08_YB-BCq5",2014-12-04,2014-12-08,"YB","BC","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2014-12-08_YB-BCq9",2014-12-04,2014-12-08,"YB","BC","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-12-08_YB-BCq3",2014-12-04,2014-12-08,"YB","BC","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to glare."
+"2014-12-08_YB-BCq5",2014-12-04,2014-12-08,"YB","BC","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2014-12-08_YB-BCq9",2014-12-04,2014-12-08,"YB","BC","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-12-08_YB-BCq3",2014-12-04,2014-12-08,"YB","BC","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to glare."
+"2014-12-08_YB-BCq5",2014-12-04,2014-12-08,"YB","BC","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2014-12-08_YB-BCq9",2014-12-04,2014-12-08,"YB","BC","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-12-08_YB-BCq3",2014-12-04,2014-12-08,"YB","BC","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to glare."
+"2014-12-08_YB-BCq5",2014-12-04,2014-12-08,"YB","BC","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2014-12-08_YB-BCq9",2014-12-04,2014-12-08,"YB","BC","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-12-08_YB-BCq3",2014-12-04,2014-12-08,"YB","BC","3","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to glare."
+"2014-12-08_YB-BCq5",2014-12-04,2014-12-08,"YB","BC","5","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2014-12-08_YB-BCq9",2014-12-04,2014-12-08,"YB","BC","9","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-12-08_YB-BCq3",2014-12-04,2014-12-08,"YB","BC","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to glare."
+"2014-12-08_YB-BCq5",2014-12-04,2014-12-08,"YB","BC","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2014-12-08_YB-BCq9",2014-12-04,2014-12-08,"YB","BC","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-12-08_YB-BCq3",2014-12-04,2014-12-08,"YB","BC","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to glare."
+"2014-12-08_YB-BCq5",2014-12-04,2014-12-08,"YB","BC","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2014-12-08_YB-BCq9",2014-12-04,2014-12-08,"YB","BC","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-12-08_YB-BCq3",2014-12-04,2014-12-08,"YB","BC","3","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to glare."
+"2014-12-08_YB-BCq5",2014-12-04,2014-12-08,"YB","BC","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2014-12-08_YB-BCq9",2014-12-04,2014-12-08,"YB","BC","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-12-08_YB-BCq3",2014-12-04,2014-12-08,"YB","BC","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to glare."
+"2014-12-08_YB-BCq5",2014-12-04,2014-12-08,"YB","BC","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2014-12-08_YB-BCq9",2014-12-04,2014-12-08,"YB","BC","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-12-08_YB-BCq3",2014-12-04,2014-12-08,"YB","BC","3","Sc","Semibalanus_cariosus","Type 5",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to glare."
+"2014-12-08_YB-BCq5",2014-12-04,2014-12-08,"YB","BC","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2014-12-08_YB-BCq9",2014-12-04,2014-12-08,"YB","BC","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-12-08_YB-BCq3",2014-12-04,2014-12-08,"YB","BC","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","20%","Counts may be low due to glare."
+"2014-12-08_YB-BCq5",2014-12-04,2014-12-08,"YB","BC","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2014-12-08_YB-BCq9",2014-12-04,2014-12-08,"YB","BC","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2014-12-04_YB-BDq1",2014-12-04,2014-12-04,"YB","BD","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","10%","Counts low due to blur"
+"2014-12-04_YB-BDq5",2014-12-04,2014-12-04,"YB","BD","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","8%","Barnacle counts may be low due to glare"
+"2014-12-04_YB-BDq7",2014-12-04,2014-12-04,"YB","BD","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%","Counts low due to blur"
+"2014-12-04_YB-BDq1",2014-12-04,2014-12-04,"YB","BD","1","Ae","Anemones","Type 14",5,0.0875,57.1428571428571,NA,"Julia Bingham","Finished","Full","Full","10%","Counts low due to blur"
+"2014-12-04_YB-BDq5",2014-12-04,2014-12-04,"YB","BD","5","Ae","Anemones","Type 14",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Cropped","Full","8%","Barnacle counts may be low due to glare"
+"2014-12-04_YB-BDq7",2014-12-04,2014-12-04,"YB","BD","7","Ae","Anemones","Type 14",5,0.0875,57.1428571428571,NA,"Julia Bingham","Finished","Full","Full","12%","Counts low due to blur"
+"2014-12-04_YB-BDq1",2014-12-04,2014-12-04,"YB","BD","1","Bg","Balanus_glandula","Type 1",1657,0.0875,18937.1428571429,NA,"Julia Bingham","Finished","Full","Full","10%","Counts low due to blur"
+"2014-12-04_YB-BDq5",2014-12-04,2014-12-04,"YB","BD","5","Bg","Balanus_glandula","Type 1",981,0.0875,11211.4285714286,NA,"Julia Bingham","Finished","Cropped","Full","8%","Barnacle counts may be low due to glare"
+"2014-12-04_YB-BDq7",2014-12-04,2014-12-04,"YB","BD","7","Bg","Balanus_glandula","Type 1",1974,0.0875,22560,NA,"Julia Bingham","Finished","Full","Full","12%","Counts low due to blur"
+"2014-12-04_YB-BDq1",2014-12-04,2014-12-04,"YB","BD","1","BgD","Balanus_glandula_(dead)","Type 2",38,0.0875,434.285714285714,NA,"Julia Bingham","Finished","Full","Full","10%","Counts low due to blur"
+"2014-12-04_YB-BDq5",2014-12-04,2014-12-04,"YB","BD","5","BgD","Balanus_glandula_(dead)","Type 2",24,0.0875,274.285714285714,NA,"Julia Bingham","Finished","Cropped","Full","8%","Barnacle counts may be low due to glare"
+"2014-12-04_YB-BDq7",2014-12-04,2014-12-04,"YB","BD","7","BgD","Balanus_glandula_(dead)","Type 2",54,0.0875,617.142857142857,NA,"Julia Bingham","Finished","Full","Full","12%","Counts low due to blur"
+"2014-12-04_YB-BDq1",2014-12-04,2014-12-04,"YB","BD","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","10%","Counts low due to blur"
+"2014-12-04_YB-BDq5",2014-12-04,2014-12-04,"YB","BD","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","8%","Barnacle counts may be low due to glare"
+"2014-12-04_YB-BDq7",2014-12-04,2014-12-04,"YB","BD","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%","Counts low due to blur"
+"2014-12-04_YB-BDq1",2014-12-04,2014-12-04,"YB","BD","1","Cth","Chthamalus_dalli","Type 3",70,0.0875,800,NA,"Julia Bingham","Finished","Full","Full","10%","Counts low due to blur"
+"2014-12-04_YB-BDq5",2014-12-04,2014-12-04,"YB","BD","5","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","8%","Barnacle counts may be low due to glare"
+"2014-12-04_YB-BDq7",2014-12-04,2014-12-04,"YB","BD","7","Cth","Chthamalus_dalli","Type 3",105,0.0875,1200,NA,"Julia Bingham","Finished","Full","Full","12%","Counts low due to blur"
+"2014-12-04_YB-BDq1",2014-12-04,2014-12-04,"YB","BD","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","10%","Counts low due to blur"
+"2014-12-04_YB-BDq5",2014-12-04,2014-12-04,"YB","BD","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","8%","Barnacle counts may be low due to glare"
+"2014-12-04_YB-BDq7",2014-12-04,2014-12-04,"YB","BD","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%","Counts low due to blur"
+"2014-12-04_YB-BDq1",2014-12-04,2014-12-04,"YB","BD","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","10%","Counts low due to blur"
+"2014-12-04_YB-BDq5",2014-12-04,2014-12-04,"YB","BD","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","8%","Barnacle counts may be low due to glare"
+"2014-12-04_YB-BDq7",2014-12-04,2014-12-04,"YB","BD","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%","Counts low due to blur"
+"2014-12-04_YB-BDq1",2014-12-04,2014-12-04,"YB","BD","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","10%","Counts low due to blur"
+"2014-12-04_YB-BDq5",2014-12-04,2014-12-04,"YB","BD","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","8%","Barnacle counts may be low due to glare"
+"2014-12-04_YB-BDq7",2014-12-04,2014-12-04,"YB","BD","7","Lep","Leptasterias","Type 20",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","12%","Counts low due to blur"
+"2014-12-04_YB-BDq1",2014-12-04,2014-12-04,"YB","BD","1","Lim","Limpets","Type 12",245,0.0875,2800,NA,"Julia Bingham","Finished","Full","Full","10%","Counts low due to blur"
+"2014-12-04_YB-BDq5",2014-12-04,2014-12-04,"YB","BD","5","Lim","Limpets","Type 12",69,0.0875,788.571428571429,NA,"Julia Bingham","Finished","Cropped","Full","8%","Barnacle counts may be low due to glare"
+"2014-12-04_YB-BDq7",2014-12-04,2014-12-04,"YB","BD","7","Lim","Limpets","Type 12",255,0.0875,2914.28571428571,NA,"Julia Bingham","Finished","Full","Full","12%","Counts low due to blur"
+"2014-12-04_YB-BDq1",2014-12-04,2014-12-04,"YB","BD","1","Ls","Littorina_sitkana","Type 13",357,0.0875,4080,NA,"Julia Bingham","Finished","Full","Full","10%","Counts low due to blur"
+"2014-12-04_YB-BDq5",2014-12-04,2014-12-04,"YB","BD","5","Ls","Littorina_sitkana","Type 13",23,0.0875,262.857142857143,NA,"Julia Bingham","Finished","Cropped","Full","8%","Barnacle counts may be low due to glare"
+"2014-12-04_YB-BDq7",2014-12-04,2014-12-04,"YB","BD","7","Ls","Littorina_sitkana","Type 13",186,0.0875,2125.71428571429,NA,"Julia Bingham","Finished","Full","Full","12%","Counts low due to blur"
+"2014-12-04_YB-BDq1",2014-12-04,2014-12-04,"YB","BD","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","10%","Counts low due to blur"
+"2014-12-04_YB-BDq5",2014-12-04,2014-12-04,"YB","BD","5","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Julia Bingham","Finished","Cropped","Full","8%","Barnacle counts may be low due to glare"
+"2014-12-04_YB-BDq7",2014-12-04,2014-12-04,"YB","BD","7","Mc","Mytilus_californianus","Type 17",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","12%","Counts low due to blur"
+"2014-12-04_YB-BDq1",2014-12-04,2014-12-04,"YB","BD","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","10%","Counts low due to blur"
+"2014-12-04_YB-BDq5",2014-12-04,2014-12-04,"YB","BD","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Julia Bingham","Finished","Cropped","Full","8%","Barnacle counts may be low due to glare"
+"2014-12-04_YB-BDq7",2014-12-04,2014-12-04,"YB","BD","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%","Counts low due to blur"
+"2014-12-04_YB-BDq1",2014-12-04,2014-12-04,"YB","BD","1","Myt","Mytilus_spp","Type 7",2962,0.0875,33851.4285714286,NA,"Julia Bingham","Finished","Full","Full","10%","Counts low due to blur"
+"2014-12-04_YB-BDq5",2014-12-04,2014-12-04,"YB","BD","5","Myt","Mytilus_spp","Type 7",649,0.015625,41536,"c","Julia Bingham","Finished","Cropped","Full","8%","Barnacle counts may be low due to glare"
+"2014-12-04_YB-BDq7",2014-12-04,2014-12-04,"YB","BD","7","Myt","Mytilus_spp","Type 7",1270,0.0875,14514.2857142857,NA,"Julia Bingham","Finished","Full","Full","12%","Counts low due to blur"
+"2014-12-04_YB-BDq1",2014-12-04,2014-12-04,"YB","BD","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","10%","Counts low due to blur"
+"2014-12-04_YB-BDq5",2014-12-04,2014-12-04,"YB","BD","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Julia Bingham","Finished","Cropped","Full","8%","Barnacle counts may be low due to glare"
+"2014-12-04_YB-BDq7",2014-12-04,2014-12-04,"YB","BD","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%","Counts low due to blur"
+"2014-12-04_YB-BDq1",2014-12-04,2014-12-04,"YB","BD","1","Mt","Mytilus_trossulus","Type 15",650,0.0875,7428.57142857143,NA,"Julia Bingham","Finished","Full","Full","10%","Counts low due to blur"
+"2014-12-04_YB-BDq5",2014-12-04,2014-12-04,"YB","BD","5","Mt","Mytilus_trossulus","Type 15",98,0.015625,6272,"c","Julia Bingham","Finished","Cropped","Full","8%","Barnacle counts may be low due to glare"
+"2014-12-04_YB-BDq7",2014-12-04,2014-12-04,"YB","BD","7","Mt","Mytilus_trossulus","Type 15",469,0.0875,5360,NA,"Julia Bingham","Finished","Full","Full","12%","Counts low due to blur"
+"2014-12-04_YB-BDq1",2014-12-04,2014-12-04,"YB","BD","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","10%","Counts low due to blur"
+"2014-12-04_YB-BDq5",2014-12-04,2014-12-04,"YB","BD","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Julia Bingham","Finished","Cropped","Full","8%","Barnacle counts may be low due to glare"
+"2014-12-04_YB-BDq7",2014-12-04,2014-12-04,"YB","BD","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%","Counts low due to blur"
+"2014-12-04_YB-BDq1",2014-12-04,2014-12-04,"YB","BD","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","10%","Counts low due to blur"
+"2014-12-04_YB-BDq5",2014-12-04,2014-12-04,"YB","BD","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","8%","Barnacle counts may be low due to glare"
+"2014-12-04_YB-BDq7",2014-12-04,2014-12-04,"YB","BD","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%","Counts low due to blur"
+"2014-12-04_YB-BDq1",2014-12-04,2014-12-04,"YB","BD","1","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","10%","Counts low due to blur"
+"2014-12-04_YB-BDq5",2014-12-04,2014-12-04,"YB","BD","5","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Cropped","Full","8%","Barnacle counts may be low due to glare"
+"2014-12-04_YB-BDq7",2014-12-04,2014-12-04,"YB","BD","7","Nc","Nucella_canaliculata","Type 10",8,0.0875,91.4285714285714,NA,"Julia Bingham","Finished","Full","Full","12%","Counts low due to blur"
+"2014-12-04_YB-BDq1",2014-12-04,2014-12-04,"YB","BD","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","10%","Counts low due to blur"
+"2014-12-04_YB-BDq5",2014-12-04,2014-12-04,"YB","BD","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","8%","Barnacle counts may be low due to glare"
+"2014-12-04_YB-BDq7",2014-12-04,2014-12-04,"YB","BD","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%","Counts low due to blur"
+"2014-12-04_YB-BDq1",2014-12-04,2014-12-04,"YB","BD","1","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","10%","Counts low due to blur"
+"2014-12-04_YB-BDq5",2014-12-04,2014-12-04,"YB","BD","5","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Cropped","Full","8%","Barnacle counts may be low due to glare"
+"2014-12-04_YB-BDq7",2014-12-04,2014-12-04,"YB","BD","7","No","Nucella_ostrina","Type 9",3,0.0875,34.2857142857143,NA,"Julia Bingham","Finished","Full","Full","12%","Counts low due to blur"
+"2014-12-04_YB-BDq1",2014-12-04,2014-12-04,"YB","BD","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","10%","Counts low due to blur"
+"2014-12-04_YB-BDq5",2014-12-04,2014-12-04,"YB","BD","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","8%","Barnacle counts may be low due to glare"
+"2014-12-04_YB-BDq7",2014-12-04,2014-12-04,"YB","BD","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%","Counts low due to blur"
+"2014-12-04_YB-BDq1",2014-12-04,2014-12-04,"YB","BD","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","10%","Counts low due to blur"
+"2014-12-04_YB-BDq5",2014-12-04,2014-12-04,"YB","BD","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","8%","Barnacle counts may be low due to glare"
+"2014-12-04_YB-BDq7",2014-12-04,2014-12-04,"YB","BD","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%","Counts low due to blur"
+"2014-12-04_YB-BDq1",2014-12-04,2014-12-04,"YB","BD","1","Pp","Pollicipes_polymerus","Type 11",1852,0.0875,21165.7142857143,NA,"Julia Bingham","Finished","Full","Full","10%","Counts low due to blur"
+"2014-12-04_YB-BDq5",2014-12-04,2014-12-04,"YB","BD","5","Pp","Pollicipes_polymerus","Type 11",848,0.0875,9691.42857142857,NA,"Julia Bingham","Finished","Cropped","Full","8%","Barnacle counts may be low due to glare"
+"2014-12-04_YB-BDq7",2014-12-04,2014-12-04,"YB","BD","7","Pp","Pollicipes_polymerus","Type 11",315,0.0875,3600,NA,"Julia Bingham","Finished","Full","Full","12%","Counts low due to blur"
+"2014-12-04_YB-BDq1",2014-12-04,2014-12-04,"YB","BD","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","10%","Counts low due to blur"
+"2014-12-04_YB-BDq5",2014-12-04,2014-12-04,"YB","BD","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","8%","Barnacle counts may be low due to glare"
+"2014-12-04_YB-BDq7",2014-12-04,2014-12-04,"YB","BD","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%","Counts low due to blur"
+"2014-12-04_YB-BDq1",2014-12-04,2014-12-04,"YB","BD","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","10%","Counts low due to blur"
+"2014-12-04_YB-BDq5",2014-12-04,2014-12-04,"YB","BD","5","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Cropped","Full","8%","Barnacle counts may be low due to glare"
+"2014-12-04_YB-BDq7",2014-12-04,2014-12-04,"YB","BD","7","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%","Counts low due to blur"
+"2014-12-04_YB-BDq1",2014-12-04,2014-12-04,"YB","BD","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","10%","Counts low due to blur"
+"2014-12-04_YB-BDq5",2014-12-04,2014-12-04,"YB","BD","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","8%","Barnacle counts may be low due to glare"
+"2014-12-04_YB-BDq7",2014-12-04,2014-12-04,"YB","BD","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%","Counts low due to blur"
+"2014-12-08_YB-BEq2",2014-12-04,2014-12-08,"YB","BE","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likley low due to blur and glare"
+"2014-12-08_YB-BEq3",2014-12-04,2014-12-08,"YB","BE","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Counts may be low due to algae. Algae is mostly a thin film."
+"2014-12-08_YB-BEq4",2014-12-04,2014-12-08,"YB","BE","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","35%","glare"
+"2014-12-08_YB-BEq6",2014-12-04,2014-12-08,"YB","BE","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Counts may be low due to algae. Algae is mostly a thin film."
+"2014-12-08_YB-BEq2",2014-12-04,2014-12-08,"YB","BE","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likley low due to blur and glare"
+"2014-12-08_YB-BEq3",2014-12-04,2014-12-08,"YB","BE","3","Ae","Anemones","Type 14",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Counts may be low due to algae. Algae is mostly a thin film."
+"2014-12-08_YB-BEq4",2014-12-04,2014-12-08,"YB","BE","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","35%","glare"
+"2014-12-08_YB-BEq6",2014-12-04,2014-12-08,"YB","BE","6","Ae","Anemones","Type 14",10,0.0875,114.285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Counts may be low due to algae. Algae is mostly a thin film."
+"2014-12-08_YB-BEq2",2014-12-04,2014-12-08,"YB","BE","2","Bg","Balanus_glandula","Type 1",1439,0.0875,16445.7142857143,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likley low due to blur and glare"
+"2014-12-08_YB-BEq3",2014-12-04,2014-12-08,"YB","BE","3","Bg","Balanus_glandula","Type 1",783,0.015625,50112,"c","Beatriz Vaca","Finished","Full","Cropped","65%","Counts may be low due to algae. Algae is mostly a thin film."
+"2014-12-08_YB-BEq4",2014-12-04,2014-12-08,"YB","BE","4","Bg","Balanus_glandula","Type 1",2985,0.0875,34114.2857142857,NA,"Julia Bingham","Finished","Full","Full","35%","glare"
+"2014-12-08_YB-BEq6",2014-12-04,2014-12-08,"YB","BE","6","Bg","Balanus_glandula","Type 1",1126,0.015625,72064,"c","Beatriz Vaca","Finished","Full","Cropped","70%","Counts may be low due to algae. Algae is mostly a thin film."
+"2014-12-08_YB-BEq2",2014-12-04,2014-12-08,"YB","BE","2","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likley low due to blur and glare"
+"2014-12-08_YB-BEq3",2014-12-04,2014-12-08,"YB","BE","3","BgD","Balanus_glandula_(dead)","Type 2",15,0.015625,960,"c","Beatriz Vaca","Finished","Full","Cropped","65%","Counts may be low due to algae. Algae is mostly a thin film."
+"2014-12-08_YB-BEq4",2014-12-04,2014-12-08,"YB","BE","4","BgD","Balanus_glandula_(dead)","Type 2",269,0.0875,3074.28571428571,NA,"Julia Bingham","Finished","Full","Full","35%","glare"
+"2014-12-08_YB-BEq6",2014-12-04,2014-12-08,"YB","BE","6","BgD","Balanus_glandula_(dead)","Type 2",6,0.015625,384,"c","Beatriz Vaca","Finished","Full","Cropped","70%","Counts may be low due to algae. Algae is mostly a thin film."
+"2014-12-08_YB-BEq2",2014-12-04,2014-12-08,"YB","BE","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likley low due to blur and glare"
+"2014-12-08_YB-BEq3",2014-12-04,2014-12-08,"YB","BE","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Counts may be low due to algae. Algae is mostly a thin film."
+"2014-12-08_YB-BEq4",2014-12-04,2014-12-08,"YB","BE","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","35%","glare"
+"2014-12-08_YB-BEq6",2014-12-04,2014-12-08,"YB","BE","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Counts may be low due to algae. Algae is mostly a thin film."
+"2014-12-08_YB-BEq2",2014-12-04,2014-12-08,"YB","BE","2","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likley low due to blur and glare"
+"2014-12-08_YB-BEq3",2014-12-04,2014-12-08,"YB","BE","3","Cth","Chthamalus_dalli","Type 3",8,0.015625,512,"c","Beatriz Vaca","Finished","Full","Cropped","65%","Counts may be low due to algae. Algae is mostly a thin film."
+"2014-12-08_YB-BEq4",2014-12-04,2014-12-08,"YB","BE","4","Cth","Chthamalus_dalli","Type 3",35,0.0875,400,NA,"Julia Bingham","Finished","Full","Full","35%","glare"
+"2014-12-08_YB-BEq6",2014-12-04,2014-12-08,"YB","BE","6","Cth","Chthamalus_dalli","Type 3",29,0.015625,1856,"c","Beatriz Vaca","Finished","Full","Cropped","70%","Counts may be low due to algae. Algae is mostly a thin film."
+"2014-12-08_YB-BEq2",2014-12-04,2014-12-08,"YB","BE","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likley low due to blur and glare"
+"2014-12-08_YB-BEq3",2014-12-04,2014-12-08,"YB","BE","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","65%","Counts may be low due to algae. Algae is mostly a thin film."
+"2014-12-08_YB-BEq4",2014-12-04,2014-12-08,"YB","BE","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","35%","glare"
+"2014-12-08_YB-BEq6",2014-12-04,2014-12-08,"YB","BE","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","70%","Counts may be low due to algae. Algae is mostly a thin film."
+"2014-12-08_YB-BEq2",2014-12-04,2014-12-08,"YB","BE","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likley low due to blur and glare"
+"2014-12-08_YB-BEq3",2014-12-04,2014-12-08,"YB","BE","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Counts may be low due to algae. Algae is mostly a thin film."
+"2014-12-08_YB-BEq4",2014-12-04,2014-12-08,"YB","BE","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","35%","glare"
+"2014-12-08_YB-BEq6",2014-12-04,2014-12-08,"YB","BE","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Counts may be low due to algae. Algae is mostly a thin film."
+"2014-12-08_YB-BEq2",2014-12-04,2014-12-08,"YB","BE","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likley low due to blur and glare"
+"2014-12-08_YB-BEq3",2014-12-04,2014-12-08,"YB","BE","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Counts may be low due to algae. Algae is mostly a thin film."
+"2014-12-08_YB-BEq4",2014-12-04,2014-12-08,"YB","BE","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","35%","glare"
+"2014-12-08_YB-BEq6",2014-12-04,2014-12-08,"YB","BE","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Counts may be low due to algae. Algae is mostly a thin film."
+"2014-12-08_YB-BEq2",2014-12-04,2014-12-08,"YB","BE","2","Lim","Limpets","Type 12",47,0.0875,537.142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likley low due to blur and glare"
+"2014-12-08_YB-BEq3",2014-12-04,2014-12-08,"YB","BE","3","Lim","Limpets","Type 12",461,0.0875,5268.57142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Counts may be low due to algae. Algae is mostly a thin film."
+"2014-12-08_YB-BEq4",2014-12-04,2014-12-08,"YB","BE","4","Lim","Limpets","Type 12",69,0.0875,788.571428571429,NA,"Julia Bingham","Finished","Full","Full","35%","glare"
+"2014-12-08_YB-BEq6",2014-12-04,2014-12-08,"YB","BE","6","Lim","Limpets","Type 12",317,0.0875,3622.85714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Counts may be low due to algae. Algae is mostly a thin film."
+"2014-12-08_YB-BEq2",2014-12-04,2014-12-08,"YB","BE","2","Ls","Littorina_sitkana","Type 13",65,0.0875,742.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likley low due to blur and glare"
+"2014-12-08_YB-BEq3",2014-12-04,2014-12-08,"YB","BE","3","Ls","Littorina_sitkana","Type 13",806,0.0875,9211.42857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Counts may be low due to algae. Algae is mostly a thin film."
+"2014-12-08_YB-BEq4",2014-12-04,2014-12-08,"YB","BE","4","Ls","Littorina_sitkana","Type 13",301,0.0875,3440,NA,"Julia Bingham","Finished","Full","Full","35%","glare"
+"2014-12-08_YB-BEq6",2014-12-04,2014-12-08,"YB","BE","6","Ls","Littorina_sitkana","Type 13",368,0.0875,4205.71428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Counts may be low due to algae. Algae is mostly a thin film."
+"2014-12-08_YB-BEq2",2014-12-04,2014-12-08,"YB","BE","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likley low due to blur and glare"
+"2014-12-08_YB-BEq3",2014-12-04,2014-12-08,"YB","BE","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Counts may be low due to algae. Algae is mostly a thin film."
+"2014-12-08_YB-BEq4",2014-12-04,2014-12-08,"YB","BE","4","Mc","Mytilus_californianus","Type 17",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","35%","glare"
+"2014-12-08_YB-BEq6",2014-12-04,2014-12-08,"YB","BE","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Counts may be low due to algae. Algae is mostly a thin film."
+"2014-12-08_YB-BEq2",2014-12-04,2014-12-08,"YB","BE","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likley low due to blur and glare"
+"2014-12-08_YB-BEq3",2014-12-04,2014-12-08,"YB","BE","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Counts may be low due to algae. Algae is mostly a thin film."
+"2014-12-08_YB-BEq4",2014-12-04,2014-12-08,"YB","BE","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","35%","glare"
+"2014-12-08_YB-BEq6",2014-12-04,2014-12-08,"YB","BE","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Counts may be low due to algae. Algae is mostly a thin film."
+"2014-12-08_YB-BEq2",2014-12-04,2014-12-08,"YB","BE","2","Myt","Mytilus_spp","Type 7",435,0.0875,4971.42857142857,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likley low due to blur and glare"
+"2014-12-08_YB-BEq3",2014-12-04,2014-12-08,"YB","BE","3","Myt","Mytilus_spp","Type 7",591,0.0875,6754.28571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Counts may be low due to algae. Algae is mostly a thin film."
+"2014-12-08_YB-BEq4",2014-12-04,2014-12-08,"YB","BE","4","Myt","Mytilus_spp","Type 7",1061,0.0875,12125.7142857143,NA,"Julia Bingham","Finished","Full","Full","35%","glare"
+"2014-12-08_YB-BEq6",2014-12-04,2014-12-08,"YB","BE","6","Myt","Mytilus_spp","Type 7",297,0.0875,3394.28571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Counts may be low due to algae. Algae is mostly a thin film."
+"2014-12-08_YB-BEq2",2014-12-04,2014-12-08,"YB","BE","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likley low due to blur and glare"
+"2014-12-08_YB-BEq3",2014-12-04,2014-12-08,"YB","BE","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Counts may be low due to algae. Algae is mostly a thin film."
+"2014-12-08_YB-BEq4",2014-12-04,2014-12-08,"YB","BE","4","MytD","Mytilus_spp_(dead)","Type 8",4,0.0875,45.7142857142857,NA,"Julia Bingham","Finished","Full","Full","35%","glare"
+"2014-12-08_YB-BEq6",2014-12-04,2014-12-08,"YB","BE","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Counts may be low due to algae. Algae is mostly a thin film."
+"2014-12-08_YB-BEq2",2014-12-04,2014-12-08,"YB","BE","2","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likley low due to blur and glare"
+"2014-12-08_YB-BEq3",2014-12-04,2014-12-08,"YB","BE","3","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Counts may be low due to algae. Algae is mostly a thin film."
+"2014-12-08_YB-BEq4",2014-12-04,2014-12-08,"YB","BE","4","Mt","Mytilus_trossulus","Type 15",13,0.0875,148.571428571429,NA,"Julia Bingham","Finished","Full","Full","35%","glare"
+"2014-12-08_YB-BEq6",2014-12-04,2014-12-08,"YB","BE","6","Mt","Mytilus_trossulus","Type 15",19,0.0875,217.142857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Counts may be low due to algae. Algae is mostly a thin film."
+"2014-12-08_YB-BEq2",2014-12-04,2014-12-08,"YB","BE","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likley low due to blur and glare"
+"2014-12-08_YB-BEq3",2014-12-04,2014-12-08,"YB","BE","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Counts may be low due to algae. Algae is mostly a thin film."
+"2014-12-08_YB-BEq4",2014-12-04,2014-12-08,"YB","BE","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","35%","glare"
+"2014-12-08_YB-BEq6",2014-12-04,2014-12-08,"YB","BE","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Counts may be low due to algae. Algae is mostly a thin film."
+"2014-12-08_YB-BEq2",2014-12-04,2014-12-08,"YB","BE","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likley low due to blur and glare"
+"2014-12-08_YB-BEq3",2014-12-04,2014-12-08,"YB","BE","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Counts may be low due to algae. Algae is mostly a thin film."
+"2014-12-08_YB-BEq4",2014-12-04,2014-12-08,"YB","BE","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","35%","glare"
+"2014-12-08_YB-BEq6",2014-12-04,2014-12-08,"YB","BE","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Counts may be low due to algae. Algae is mostly a thin film."
+"2014-12-08_YB-BEq2",2014-12-04,2014-12-08,"YB","BE","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likley low due to blur and glare"
+"2014-12-08_YB-BEq3",2014-12-04,2014-12-08,"YB","BE","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Counts may be low due to algae. Algae is mostly a thin film."
+"2014-12-08_YB-BEq4",2014-12-04,2014-12-08,"YB","BE","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","35%","glare"
+"2014-12-08_YB-BEq6",2014-12-04,2014-12-08,"YB","BE","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Counts may be low due to algae. Algae is mostly a thin film."
+"2014-12-08_YB-BEq2",2014-12-04,2014-12-08,"YB","BE","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likley low due to blur and glare"
+"2014-12-08_YB-BEq3",2014-12-04,2014-12-08,"YB","BE","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Counts may be low due to algae. Algae is mostly a thin film."
+"2014-12-08_YB-BEq4",2014-12-04,2014-12-08,"YB","BE","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","35%","glare"
+"2014-12-08_YB-BEq6",2014-12-04,2014-12-08,"YB","BE","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Counts may be low due to algae. Algae is mostly a thin film."
+"2014-12-08_YB-BEq2",2014-12-04,2014-12-08,"YB","BE","2","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likley low due to blur and glare"
+"2014-12-08_YB-BEq3",2014-12-04,2014-12-08,"YB","BE","3","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Counts may be low due to algae. Algae is mostly a thin film."
+"2014-12-08_YB-BEq4",2014-12-04,2014-12-08,"YB","BE","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","35%","glare"
+"2014-12-08_YB-BEq6",2014-12-04,2014-12-08,"YB","BE","6","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Counts may be low due to algae. Algae is mostly a thin film."
+"2014-12-08_YB-BEq2",2014-12-04,2014-12-08,"YB","BE","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likley low due to blur and glare"
+"2014-12-08_YB-BEq3",2014-12-04,2014-12-08,"YB","BE","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Counts may be low due to algae. Algae is mostly a thin film."
+"2014-12-08_YB-BEq4",2014-12-04,2014-12-08,"YB","BE","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","35%","glare"
+"2014-12-08_YB-BEq6",2014-12-04,2014-12-08,"YB","BE","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Counts may be low due to algae. Algae is mostly a thin film."
+"2014-12-08_YB-BEq2",2014-12-04,2014-12-08,"YB","BE","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likley low due to blur and glare"
+"2014-12-08_YB-BEq3",2014-12-04,2014-12-08,"YB","BE","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Counts may be low due to algae. Algae is mostly a thin film."
+"2014-12-08_YB-BEq4",2014-12-04,2014-12-08,"YB","BE","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","35%","glare"
+"2014-12-08_YB-BEq6",2014-12-04,2014-12-08,"YB","BE","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Counts may be low due to algae. Algae is mostly a thin film."
+"2014-12-08_YB-BEq2",2014-12-04,2014-12-08,"YB","BE","2","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likley low due to blur and glare"
+"2014-12-08_YB-BEq3",2014-12-04,2014-12-08,"YB","BE","3","Pp","Pollicipes_polymerus","Type 11",38,0.0875,434.285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Counts may be low due to algae. Algae is mostly a thin film."
+"2014-12-08_YB-BEq4",2014-12-04,2014-12-08,"YB","BE","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","35%","glare"
+"2014-12-08_YB-BEq6",2014-12-04,2014-12-08,"YB","BE","6","Pp","Pollicipes_polymerus","Type 11",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Counts may be low due to algae. Algae is mostly a thin film."
+"2014-12-08_YB-BEq2",2014-12-04,2014-12-08,"YB","BE","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likley low due to blur and glare"
+"2014-12-08_YB-BEq3",2014-12-04,2014-12-08,"YB","BE","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Counts may be low due to algae. Algae is mostly a thin film."
+"2014-12-08_YB-BEq4",2014-12-04,2014-12-08,"YB","BE","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","35%","glare"
+"2014-12-08_YB-BEq6",2014-12-04,2014-12-08,"YB","BE","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Counts may be low due to algae. Algae is mostly a thin film."
+"2014-12-08_YB-BEq2",2014-12-04,2014-12-08,"YB","BE","2","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likley low due to blur and glare"
+"2014-12-08_YB-BEq3",2014-12-04,2014-12-08,"YB","BE","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Counts may be low due to algae. Algae is mostly a thin film."
+"2014-12-08_YB-BEq4",2014-12-04,2014-12-08,"YB","BE","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","35%","glare"
+"2014-12-08_YB-BEq6",2014-12-04,2014-12-08,"YB","BE","6","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Counts may be low due to algae. Algae is mostly a thin film."
+"2014-12-08_YB-BEq2",2014-12-04,2014-12-08,"YB","BE","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likley low due to blur and glare"
+"2014-12-08_YB-BEq3",2014-12-04,2014-12-08,"YB","BE","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","65%","Counts may be low due to algae. Algae is mostly a thin film."
+"2014-12-08_YB-BEq4",2014-12-04,2014-12-08,"YB","BE","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","35%","glare"
+"2014-12-08_YB-BEq6",2014-12-04,2014-12-08,"YB","BE","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","70%","Counts may be low due to algae. Algae is mostly a thin film."
+"2014-12-08_YB-BFq1",2014-12-04,2014-12-08,"YB","BF","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae."
+"2014-12-08_YB-BFq4",2014-12-04,2014-12-08,"YB","BF","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Counts may be low due to algae. Algae is mostly a thin film."
+"2014-12-08_YB-BFq9",2014-12-04,2014-12-08,"YB","BF","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","5%","some glare - littorine counts likely low, indistinguishable from juvenile mytelus"
+"2014-12-08_YB-BFq1",2014-12-04,2014-12-08,"YB","BF","1","Ae","Anemones","Type 14",11,0.0875,125.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae."
+"2014-12-08_YB-BFq4",2014-12-04,2014-12-08,"YB","BF","4","Ae","Anemones","Type 14",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Counts may be low due to algae. Algae is mostly a thin film."
+"2014-12-08_YB-BFq9",2014-12-04,2014-12-08,"YB","BF","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","5%","some glare - littorine counts likely low, indistinguishable from juvenile mytelus"
+"2014-12-08_YB-BFq1",2014-12-04,2014-12-08,"YB","BF","1","Bg","Balanus_glandula","Type 1",1221,0.0875,13954.2857142857,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae."
+"2014-12-08_YB-BFq4",2014-12-04,2014-12-08,"YB","BF","4","Bg","Balanus_glandula","Type 1",814,0.015625,52096,"c","Beatriz Vaca","Finished","Full","Cropped","80%","Counts may be low due to algae. Algae is mostly a thin film."
+"2014-12-08_YB-BFq9",2014-12-04,2014-12-08,"YB","BF","9","Bg","Balanus_glandula","Type 1",1221,0.0875,13954.2857142857,NA,"Julia Bingham","Finished","Cropped","Full","5%","some glare - littorine counts likely low, indistinguishable from juvenile mytelus"
+"2014-12-08_YB-BFq1",2014-12-04,2014-12-08,"YB","BF","1","BgD","Balanus_glandula_(dead)","Type 2",13,0.0875,148.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae."
+"2014-12-08_YB-BFq4",2014-12-04,2014-12-08,"YB","BF","4","BgD","Balanus_glandula_(dead)","Type 2",4,0.015625,256,"c","Beatriz Vaca","Finished","Full","Cropped","80%","Counts may be low due to algae. Algae is mostly a thin film."
+"2014-12-08_YB-BFq9",2014-12-04,2014-12-08,"YB","BF","9","BgD","Balanus_glandula_(dead)","Type 2",195,0.0875,2228.57142857143,NA,"Julia Bingham","Finished","Cropped","Full","5%","some glare - littorine counts likely low, indistinguishable from juvenile mytelus"
+"2014-12-08_YB-BFq1",2014-12-04,2014-12-08,"YB","BF","1","Chi","Chiton_spp","Type 22",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae."
+"2014-12-08_YB-BFq4",2014-12-04,2014-12-08,"YB","BF","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Counts may be low due to algae. Algae is mostly a thin film."
+"2014-12-08_YB-BFq9",2014-12-04,2014-12-08,"YB","BF","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","5%","some glare - littorine counts likely low, indistinguishable from juvenile mytelus"
+"2014-12-08_YB-BFq1",2014-12-04,2014-12-08,"YB","BF","1","Cth","Chthamalus_dalli","Type 3",159,0.0875,1817.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae."
+"2014-12-08_YB-BFq4",2014-12-04,2014-12-08,"YB","BF","4","Cth","Chthamalus_dalli","Type 3",21,0.015625,1344,"c","Beatriz Vaca","Finished","Full","Cropped","80%","Counts may be low due to algae. Algae is mostly a thin film."
+"2014-12-08_YB-BFq9",2014-12-04,2014-12-08,"YB","BF","9","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","5%","some glare - littorine counts likely low, indistinguishable from juvenile mytelus"
+"2014-12-08_YB-BFq1",2014-12-04,2014-12-08,"YB","BF","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae."
+"2014-12-08_YB-BFq4",2014-12-04,2014-12-08,"YB","BF","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","80%","Counts may be low due to algae. Algae is mostly a thin film."
+"2014-12-08_YB-BFq9",2014-12-04,2014-12-08,"YB","BF","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","5%","some glare - littorine counts likely low, indistinguishable from juvenile mytelus"
+"2014-12-08_YB-BFq1",2014-12-04,2014-12-08,"YB","BF","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae."
+"2014-12-08_YB-BFq4",2014-12-04,2014-12-08,"YB","BF","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Counts may be low due to algae. Algae is mostly a thin film."
+"2014-12-08_YB-BFq9",2014-12-04,2014-12-08,"YB","BF","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","5%","some glare - littorine counts likely low, indistinguishable from juvenile mytelus"
+"2014-12-08_YB-BFq1",2014-12-04,2014-12-08,"YB","BF","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae."
+"2014-12-08_YB-BFq4",2014-12-04,2014-12-08,"YB","BF","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Counts may be low due to algae. Algae is mostly a thin film."
+"2014-12-08_YB-BFq9",2014-12-04,2014-12-08,"YB","BF","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","5%","some glare - littorine counts likely low, indistinguishable from juvenile mytelus"
+"2014-12-08_YB-BFq1",2014-12-04,2014-12-08,"YB","BF","1","Lim","Limpets","Type 12",357,0.0875,4080,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae."
+"2014-12-08_YB-BFq4",2014-12-04,2014-12-08,"YB","BF","4","Lim","Limpets","Type 12",444,0.0875,5074.28571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Counts may be low due to algae. Algae is mostly a thin film."
+"2014-12-08_YB-BFq9",2014-12-04,2014-12-08,"YB","BF","9","Lim","Limpets","Type 12",49,0.0875,560,NA,"Julia Bingham","Finished","Cropped","Full","5%","some glare - littorine counts likely low, indistinguishable from juvenile mytelus"
+"2014-12-08_YB-BFq1",2014-12-04,2014-12-08,"YB","BF","1","Ls","Littorina_sitkana","Type 13",289,0.0875,3302.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae."
+"2014-12-08_YB-BFq4",2014-12-04,2014-12-08,"YB","BF","4","Ls","Littorina_sitkana","Type 13",462,0.0875,5280,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Counts may be low due to algae. Algae is mostly a thin film."
+"2014-12-08_YB-BFq9",2014-12-04,2014-12-08,"YB","BF","9","Ls","Littorina_sitkana","Type 13",105,0.0875,1200,NA,"Julia Bingham","Finished","Cropped","Full","5%","some glare - littorine counts likely low, indistinguishable from juvenile mytelus"
+"2014-12-08_YB-BFq1",2014-12-04,2014-12-08,"YB","BF","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae."
+"2014-12-08_YB-BFq4",2014-12-04,2014-12-08,"YB","BF","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Counts may be low due to algae. Algae is mostly a thin film."
+"2014-12-08_YB-BFq9",2014-12-04,2014-12-08,"YB","BF","9","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Julia Bingham","Finished","Cropped","Full","5%","some glare - littorine counts likely low, indistinguishable from juvenile mytelus"
+"2014-12-08_YB-BFq1",2014-12-04,2014-12-08,"YB","BF","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae."
+"2014-12-08_YB-BFq4",2014-12-04,2014-12-08,"YB","BF","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Counts may be low due to algae. Algae is mostly a thin film."
+"2014-12-08_YB-BFq9",2014-12-04,2014-12-08,"YB","BF","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Julia Bingham","Finished","Cropped","Full","5%","some glare - littorine counts likely low, indistinguishable from juvenile mytelus"
+"2014-12-08_YB-BFq1",2014-12-04,2014-12-08,"YB","BF","1","Myt","Mytilus_spp","Type 7",308,0.0875,3520,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae."
+"2014-12-08_YB-BFq4",2014-12-04,2014-12-08,"YB","BF","4","Myt","Mytilus_spp","Type 7",403,0.0875,4605.71428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Counts may be low due to algae. Algae is mostly a thin film."
+"2014-12-08_YB-BFq9",2014-12-04,2014-12-08,"YB","BF","9","Myt","Mytilus_spp","Type 7",969,0.015625,62016,"c","Julia Bingham","Finished","Cropped","Full","5%","some glare - littorine counts likely low, indistinguishable from juvenile mytelus"
+"2014-12-08_YB-BFq1",2014-12-04,2014-12-08,"YB","BF","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae."
+"2014-12-08_YB-BFq4",2014-12-04,2014-12-08,"YB","BF","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Counts may be low due to algae. Algae is mostly a thin film."
+"2014-12-08_YB-BFq9",2014-12-04,2014-12-08,"YB","BF","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Julia Bingham","Finished","Cropped","Full","5%","some glare - littorine counts likely low, indistinguishable from juvenile mytelus"
+"2014-12-08_YB-BFq1",2014-12-04,2014-12-08,"YB","BF","1","Mt","Mytilus_trossulus","Type 15",171,0.0875,1954.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae."
+"2014-12-08_YB-BFq4",2014-12-04,2014-12-08,"YB","BF","4","Mt","Mytilus_trossulus","Type 15",34,0.0875,388.571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Counts may be low due to algae. Algae is mostly a thin film."
+"2014-12-08_YB-BFq9",2014-12-04,2014-12-08,"YB","BF","9","Mt","Mytilus_trossulus","Type 15",129,0.015625,8256,"c","Julia Bingham","Finished","Cropped","Full","5%","some glare - littorine counts likely low, indistinguishable from juvenile mytelus"
+"2014-12-08_YB-BFq1",2014-12-04,2014-12-08,"YB","BF","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae."
+"2014-12-08_YB-BFq4",2014-12-04,2014-12-08,"YB","BF","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Counts may be low due to algae. Algae is mostly a thin film."
+"2014-12-08_YB-BFq9",2014-12-04,2014-12-08,"YB","BF","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Julia Bingham","Finished","Cropped","Full","5%","some glare - littorine counts likely low, indistinguishable from juvenile mytelus"
+"2014-12-08_YB-BFq1",2014-12-04,2014-12-08,"YB","BF","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae."
+"2014-12-08_YB-BFq4",2014-12-04,2014-12-08,"YB","BF","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Counts may be low due to algae. Algae is mostly a thin film."
+"2014-12-08_YB-BFq9",2014-12-04,2014-12-08,"YB","BF","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","5%","some glare - littorine counts likely low, indistinguishable from juvenile mytelus"
+"2014-12-08_YB-BFq1",2014-12-04,2014-12-08,"YB","BF","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae."
+"2014-12-08_YB-BFq4",2014-12-04,2014-12-08,"YB","BF","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Counts may be low due to algae. Algae is mostly a thin film."
+"2014-12-08_YB-BFq9",2014-12-04,2014-12-08,"YB","BF","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","5%","some glare - littorine counts likely low, indistinguishable from juvenile mytelus"
+"2014-12-08_YB-BFq1",2014-12-04,2014-12-08,"YB","BF","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae."
+"2014-12-08_YB-BFq4",2014-12-04,2014-12-08,"YB","BF","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Counts may be low due to algae. Algae is mostly a thin film."
+"2014-12-08_YB-BFq9",2014-12-04,2014-12-08,"YB","BF","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","5%","some glare - littorine counts likely low, indistinguishable from juvenile mytelus"
+"2014-12-08_YB-BFq1",2014-12-04,2014-12-08,"YB","BF","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae."
+"2014-12-08_YB-BFq4",2014-12-04,2014-12-08,"YB","BF","4","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Counts may be low due to algae. Algae is mostly a thin film."
+"2014-12-08_YB-BFq9",2014-12-04,2014-12-08,"YB","BF","9","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","5%","some glare - littorine counts likely low, indistinguishable from juvenile mytelus"
+"2014-12-08_YB-BFq1",2014-12-04,2014-12-08,"YB","BF","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae."
+"2014-12-08_YB-BFq4",2014-12-04,2014-12-08,"YB","BF","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Counts may be low due to algae. Algae is mostly a thin film."
+"2014-12-08_YB-BFq9",2014-12-04,2014-12-08,"YB","BF","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","5%","some glare - littorine counts likely low, indistinguishable from juvenile mytelus"
+"2014-12-08_YB-BFq1",2014-12-04,2014-12-08,"YB","BF","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae."
+"2014-12-08_YB-BFq4",2014-12-04,2014-12-08,"YB","BF","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Counts may be low due to algae. Algae is mostly a thin film."
+"2014-12-08_YB-BFq9",2014-12-04,2014-12-08,"YB","BF","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","5%","some glare - littorine counts likely low, indistinguishable from juvenile mytelus"
+"2014-12-08_YB-BFq1",2014-12-04,2014-12-08,"YB","BF","1","Pp","Pollicipes_polymerus","Type 11",72,0.0875,822.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae."
+"2014-12-08_YB-BFq4",2014-12-04,2014-12-08,"YB","BF","4","Pp","Pollicipes_polymerus","Type 11",27,0.0875,308.571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Counts may be low due to algae. Algae is mostly a thin film."
+"2014-12-08_YB-BFq9",2014-12-04,2014-12-08,"YB","BF","9","Pp","Pollicipes_polymerus","Type 11",22,0.0875,251.428571428571,NA,"Julia Bingham","Finished","Cropped","Full","5%","some glare - littorine counts likely low, indistinguishable from juvenile mytelus"
+"2014-12-08_YB-BFq1",2014-12-04,2014-12-08,"YB","BF","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae."
+"2014-12-08_YB-BFq4",2014-12-04,2014-12-08,"YB","BF","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Counts may be low due to algae. Algae is mostly a thin film."
+"2014-12-08_YB-BFq9",2014-12-04,2014-12-08,"YB","BF","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","5%","some glare - littorine counts likely low, indistinguishable from juvenile mytelus"
+"2014-12-08_YB-BFq1",2014-12-04,2014-12-08,"YB","BF","1","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae."
+"2014-12-08_YB-BFq4",2014-12-04,2014-12-08,"YB","BF","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Counts may be low due to algae. Algae is mostly a thin film."
+"2014-12-08_YB-BFq9",2014-12-04,2014-12-08,"YB","BF","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","5%","some glare - littorine counts likely low, indistinguishable from juvenile mytelus"
+"2014-12-08_YB-BFq1",2014-12-04,2014-12-08,"YB","BF","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae."
+"2014-12-08_YB-BFq4",2014-12-04,2014-12-08,"YB","BF","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","80%","Counts may be low due to algae. Algae is mostly a thin film."
+"2014-12-08_YB-BFq9",2014-12-04,2014-12-08,"YB","BF","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","5%","some glare - littorine counts likely low, indistinguishable from juvenile mytelus"
+"2014-12-04_YB-Cq2",2014-12-04,2014-12-04,"YB","C","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2014-12-04_YB-Cq4",2014-12-04,2014-12-04,"YB","C","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-12-04_YB-Cq6",2014-12-04,2014-12-04,"YB","C","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-12-04_YB-Cq2",2014-12-04,2014-12-04,"YB","C","2","Ae","Anemones","Type 14",32,0.0875,365.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2014-12-04_YB-Cq4",2014-12-04,2014-12-04,"YB","C","4","Ae","Anemones","Type 14",35,0.0875,400,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-12-04_YB-Cq6",2014-12-04,2014-12-04,"YB","C","6","Ae","Anemones","Type 14",27,0.0875,308.571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-12-04_YB-Cq2",2014-12-04,2014-12-04,"YB","C","2","Bg","Balanus_glandula","Type 1",448,0.0875,5120,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2014-12-04_YB-Cq4",2014-12-04,2014-12-04,"YB","C","4","Bg","Balanus_glandula","Type 1",193,0.015625,12352,"c","Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-12-04_YB-Cq6",2014-12-04,2014-12-04,"YB","C","6","Bg","Balanus_glandula","Type 1",167,0.015625,10688,"c","Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-12-04_YB-Cq2",2014-12-04,2014-12-04,"YB","C","2","BgD","Balanus_glandula_(dead)","Type 2",31,0.0875,354.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2014-12-04_YB-Cq4",2014-12-04,2014-12-04,"YB","C","4","BgD","Balanus_glandula_(dead)","Type 2",17,0.015625,1088,"c","Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-12-04_YB-Cq6",2014-12-04,2014-12-04,"YB","C","6","BgD","Balanus_glandula_(dead)","Type 2",14,0.015625,896,"c","Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-12-04_YB-Cq2",2014-12-04,2014-12-04,"YB","C","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2014-12-04_YB-Cq4",2014-12-04,2014-12-04,"YB","C","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-12-04_YB-Cq6",2014-12-04,2014-12-04,"YB","C","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-12-04_YB-Cq2",2014-12-04,2014-12-04,"YB","C","2","Cth","Chthamalus_dalli","Type 3",108,0.0875,1234.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2014-12-04_YB-Cq4",2014-12-04,2014-12-04,"YB","C","4","Cth","Chthamalus_dalli","Type 3",52,0.015625,3328,"c","Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-12-04_YB-Cq6",2014-12-04,2014-12-04,"YB","C","6","Cth","Chthamalus_dalli","Type 3",47,0.015625,3008,"c","Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-12-04_YB-Cq2",2014-12-04,2014-12-04,"YB","C","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2014-12-04_YB-Cq4",2014-12-04,2014-12-04,"YB","C","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-12-04_YB-Cq6",2014-12-04,2014-12-04,"YB","C","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-12-04_YB-Cq2",2014-12-04,2014-12-04,"YB","C","2","Emp","Emplectonema worm","Type 23",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2014-12-04_YB-Cq4",2014-12-04,2014-12-04,"YB","C","4","Emp","Emplectonema worm","Type 23",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-12-04_YB-Cq6",2014-12-04,2014-12-04,"YB","C","6","Emp","Emplectonema worm","Type 23",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-12-04_YB-Cq2",2014-12-04,2014-12-04,"YB","C","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2014-12-04_YB-Cq4",2014-12-04,2014-12-04,"YB","C","4","Lep","Leptasterias","Type 20",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-12-04_YB-Cq6",2014-12-04,2014-12-04,"YB","C","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-12-04_YB-Cq2",2014-12-04,2014-12-04,"YB","C","2","Lim","Limpets","Type 12",147,0.0875,1680,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2014-12-04_YB-Cq4",2014-12-04,2014-12-04,"YB","C","4","Lim","Limpets","Type 12",159,0.0875,1817.14285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-12-04_YB-Cq6",2014-12-04,2014-12-04,"YB","C","6","Lim","Limpets","Type 12",167,0.0875,1908.57142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-12-04_YB-Cq2",2014-12-04,2014-12-04,"YB","C","2","Ls","Littorina_sitkana","Type 13",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2014-12-04_YB-Cq4",2014-12-04,2014-12-04,"YB","C","4","Ls","Littorina_sitkana","Type 13",20,0.0875,228.571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-12-04_YB-Cq6",2014-12-04,2014-12-04,"YB","C","6","Ls","Littorina_sitkana","Type 13",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-12-04_YB-Cq2",2014-12-04,2014-12-04,"YB","C","2","Mc","Mytilus_californianus","Type 17",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2014-12-04_YB-Cq4",2014-12-04,2014-12-04,"YB","C","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-12-04_YB-Cq6",2014-12-04,2014-12-04,"YB","C","6","Mc","Mytilus_californianus","Type 17",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-12-04_YB-Cq2",2014-12-04,2014-12-04,"YB","C","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2014-12-04_YB-Cq4",2014-12-04,2014-12-04,"YB","C","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-12-04_YB-Cq6",2014-12-04,2014-12-04,"YB","C","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-12-04_YB-Cq2",2014-12-04,2014-12-04,"YB","C","2","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2014-12-04_YB-Cq4",2014-12-04,2014-12-04,"YB","C","4","Myt","Mytilus_spp","Type 7",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-12-04_YB-Cq6",2014-12-04,2014-12-04,"YB","C","6","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-12-04_YB-Cq2",2014-12-04,2014-12-04,"YB","C","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2014-12-04_YB-Cq4",2014-12-04,2014-12-04,"YB","C","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-12-04_YB-Cq6",2014-12-04,2014-12-04,"YB","C","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-12-04_YB-Cq2",2014-12-04,2014-12-04,"YB","C","2","Mt","Mytilus_trossulus","Type 15",197,0.0875,2251.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2014-12-04_YB-Cq4",2014-12-04,2014-12-04,"YB","C","4","Mt","Mytilus_trossulus","Type 15",206,0.0875,2354.28571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-12-04_YB-Cq6",2014-12-04,2014-12-04,"YB","C","6","Mt","Mytilus_trossulus","Type 15",257,0.0875,2937.14285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-12-04_YB-Cq2",2014-12-04,2014-12-04,"YB","C","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2014-12-04_YB-Cq4",2014-12-04,2014-12-04,"YB","C","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-12-04_YB-Cq6",2014-12-04,2014-12-04,"YB","C","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-12-04_YB-Cq2",2014-12-04,2014-12-04,"YB","C","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2014-12-04_YB-Cq4",2014-12-04,2014-12-04,"YB","C","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-12-04_YB-Cq6",2014-12-04,2014-12-04,"YB","C","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-12-04_YB-Cq2",2014-12-04,2014-12-04,"YB","C","2","Nc","Nucella_canaliculata","Type 10",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2014-12-04_YB-Cq4",2014-12-04,2014-12-04,"YB","C","4","Nc","Nucella_canaliculata","Type 10",9,0.0875,102.857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-12-04_YB-Cq6",2014-12-04,2014-12-04,"YB","C","6","Nc","Nucella_canaliculata","Type 10",12,0.0875,137.142857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-12-04_YB-Cq2",2014-12-04,2014-12-04,"YB","C","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2014-12-04_YB-Cq4",2014-12-04,2014-12-04,"YB","C","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-12-04_YB-Cq6",2014-12-04,2014-12-04,"YB","C","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-12-04_YB-Cq2",2014-12-04,2014-12-04,"YB","C","2","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2014-12-04_YB-Cq4",2014-12-04,2014-12-04,"YB","C","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-12-04_YB-Cq6",2014-12-04,2014-12-04,"YB","C","6","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-12-04_YB-Cq2",2014-12-04,2014-12-04,"YB","C","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2014-12-04_YB-Cq4",2014-12-04,2014-12-04,"YB","C","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-12-04_YB-Cq6",2014-12-04,2014-12-04,"YB","C","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-12-04_YB-Cq2",2014-12-04,2014-12-04,"YB","C","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2014-12-04_YB-Cq4",2014-12-04,2014-12-04,"YB","C","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-12-04_YB-Cq6",2014-12-04,2014-12-04,"YB","C","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-12-04_YB-Cq2",2014-12-04,2014-12-04,"YB","C","2","Pp","Pollicipes_polymerus","Type 11",112,0.0875,1280,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2014-12-04_YB-Cq4",2014-12-04,2014-12-04,"YB","C","4","Pp","Pollicipes_polymerus","Type 11",107,0.0875,1222.85714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-12-04_YB-Cq6",2014-12-04,2014-12-04,"YB","C","6","Pp","Pollicipes_polymerus","Type 11",49,0.0875,560,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-12-04_YB-Cq2",2014-12-04,2014-12-04,"YB","C","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2014-12-04_YB-Cq4",2014-12-04,2014-12-04,"YB","C","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-12-04_YB-Cq6",2014-12-04,2014-12-04,"YB","C","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-12-04_YB-Cq2",2014-12-04,2014-12-04,"YB","C","2","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2014-12-04_YB-Cq4",2014-12-04,2014-12-04,"YB","C","4","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-12-04_YB-Cq6",2014-12-04,2014-12-04,"YB","C","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-12-04_YB-Cq2",2014-12-04,2014-12-04,"YB","C","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2014-12-04_YB-Cq4",2014-12-04,2014-12-04,"YB","C","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-12-04_YB-Cq6",2014-12-04,2014-12-04,"YB","C","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2014-12-04_YB-Dq3",2014-12-04,2014-12-04,"YB","D","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-12-04_YB-Dq4",2014-12-04,2014-12-04,"YB","D","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","",""
+"2014-12-04_YB-Dq5",2014-12-04,2014-12-04,"YB","D","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-12-04_YB-Dq3",2014-12-04,2014-12-04,"YB","D","3","Ae","Anemones","Type 14",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-12-04_YB-Dq4",2014-12-04,2014-12-04,"YB","D","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","",""
+"2014-12-04_YB-Dq5",2014-12-04,2014-12-04,"YB","D","5","Ae","Anemones","Type 14",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-12-04_YB-Dq3",2014-12-04,2014-12-04,"YB","D","3","Bg","Balanus_glandula","Type 1",126,0.015625,8064,"c","Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-12-04_YB-Dq4",2014-12-04,2014-12-04,"YB","D","4","Bg","Balanus_glandula","Type 1",1393,0.0875,15920,NA,"Stephanie Merhoff","Finished","Full","Full","",""
+"2014-12-04_YB-Dq5",2014-12-04,2014-12-04,"YB","D","5","Bg","Balanus_glandula","Type 1",224,0.015625,14336,"c","Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-12-04_YB-Dq3",2014-12-04,2014-12-04,"YB","D","3","BgD","Balanus_glandula_(dead)","Type 2",8,0.015625,512,"c","Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-12-04_YB-Dq4",2014-12-04,2014-12-04,"YB","D","4","BgD","Balanus_glandula_(dead)","Type 2",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","",""
+"2014-12-04_YB-Dq5",2014-12-04,2014-12-04,"YB","D","5","BgD","Balanus_glandula_(dead)","Type 2",14,0.015625,896,"c","Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-12-04_YB-Dq3",2014-12-04,2014-12-04,"YB","D","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-12-04_YB-Dq4",2014-12-04,2014-12-04,"YB","D","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","",""
+"2014-12-04_YB-Dq5",2014-12-04,2014-12-04,"YB","D","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-12-04_YB-Dq3",2014-12-04,2014-12-04,"YB","D","3","Cth","Chthamalus_dalli","Type 3",4,0.015625,256,"c","Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-12-04_YB-Dq4",2014-12-04,2014-12-04,"YB","D","4","Cth","Chthamalus_dalli","Type 3",15,0.0875,171.428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","",""
+"2014-12-04_YB-Dq5",2014-12-04,2014-12-04,"YB","D","5","Cth","Chthamalus_dalli","Type 3",22,0.015625,1408,"c","Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-12-04_YB-Dq3",2014-12-04,2014-12-04,"YB","D","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-12-04_YB-Dq4",2014-12-04,2014-12-04,"YB","D","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","",""
+"2014-12-04_YB-Dq5",2014-12-04,2014-12-04,"YB","D","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-12-04_YB-Dq3",2014-12-04,2014-12-04,"YB","D","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-12-04_YB-Dq4",2014-12-04,2014-12-04,"YB","D","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","",""
+"2014-12-04_YB-Dq5",2014-12-04,2014-12-04,"YB","D","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-12-04_YB-Dq3",2014-12-04,2014-12-04,"YB","D","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-12-04_YB-Dq4",2014-12-04,2014-12-04,"YB","D","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","",""
+"2014-12-04_YB-Dq5",2014-12-04,2014-12-04,"YB","D","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-12-04_YB-Dq3",2014-12-04,2014-12-04,"YB","D","3","Lim","Limpets","Type 12",59,0.0875,674.285714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-12-04_YB-Dq4",2014-12-04,2014-12-04,"YB","D","4","Lim","Limpets","Type 12",27,0.0875,308.571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","",""
+"2014-12-04_YB-Dq5",2014-12-04,2014-12-04,"YB","D","5","Lim","Limpets","Type 12",245,0.0875,2800,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-12-04_YB-Dq3",2014-12-04,2014-12-04,"YB","D","3","Ls","Littorina_sitkana","Type 13",111,0.0875,1268.57142857143,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-12-04_YB-Dq4",2014-12-04,2014-12-04,"YB","D","4","Ls","Littorina_sitkana","Type 13",238,0.0875,2720,NA,"Stephanie Merhoff","Finished","Full","Full","",""
+"2014-12-04_YB-Dq5",2014-12-04,2014-12-04,"YB","D","5","Ls","Littorina_sitkana","Type 13",223,0.0875,2548.57142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-12-04_YB-Dq3",2014-12-04,2014-12-04,"YB","D","3","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-12-04_YB-Dq4",2014-12-04,2014-12-04,"YB","D","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","",""
+"2014-12-04_YB-Dq5",2014-12-04,2014-12-04,"YB","D","5","Mc","Mytilus_californianus","Type 17",46,0.0875,525.714285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-12-04_YB-Dq3",2014-12-04,2014-12-04,"YB","D","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-12-04_YB-Dq4",2014-12-04,2014-12-04,"YB","D","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","",""
+"2014-12-04_YB-Dq5",2014-12-04,2014-12-04,"YB","D","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-12-04_YB-Dq3",2014-12-04,2014-12-04,"YB","D","3","Myt","Mytilus_spp","Type 7",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-12-04_YB-Dq4",2014-12-04,2014-12-04,"YB","D","4","Myt","Mytilus_spp","Type 7",192,0.0875,2194.28571428571,NA,"Stephanie Merhoff","Finished","Full","Full","",""
+"2014-12-04_YB-Dq5",2014-12-04,2014-12-04,"YB","D","5","Myt","Mytilus_spp","Type 7",78,0.0875,891.428571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-12-04_YB-Dq3",2014-12-04,2014-12-04,"YB","D","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-12-04_YB-Dq4",2014-12-04,2014-12-04,"YB","D","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","",""
+"2014-12-04_YB-Dq5",2014-12-04,2014-12-04,"YB","D","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-12-04_YB-Dq3",2014-12-04,2014-12-04,"YB","D","3","Mt","Mytilus_trossulus","Type 15",114,0.015625,7296,"c","Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-12-04_YB-Dq4",2014-12-04,2014-12-04,"YB","D","4","Mt","Mytilus_trossulus","Type 15",220,0.0875,2514.28571428571,NA,"Stephanie Merhoff","Finished","Full","Full","",""
+"2014-12-04_YB-Dq5",2014-12-04,2014-12-04,"YB","D","5","Mt","Mytilus_trossulus","Type 15",389,0.0875,4445.71428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-12-04_YB-Dq3",2014-12-04,2014-12-04,"YB","D","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-12-04_YB-Dq4",2014-12-04,2014-12-04,"YB","D","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","",""
+"2014-12-04_YB-Dq5",2014-12-04,2014-12-04,"YB","D","5","MtD","Mytilus_trossulus_(dead)","Type 16",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-12-04_YB-Dq3",2014-12-04,2014-12-04,"YB","D","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-12-04_YB-Dq4",2014-12-04,2014-12-04,"YB","D","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","",""
+"2014-12-04_YB-Dq5",2014-12-04,2014-12-04,"YB","D","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-12-04_YB-Dq3",2014-12-04,2014-12-04,"YB","D","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-12-04_YB-Dq4",2014-12-04,2014-12-04,"YB","D","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","",""
+"2014-12-04_YB-Dq5",2014-12-04,2014-12-04,"YB","D","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-12-04_YB-Dq3",2014-12-04,2014-12-04,"YB","D","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-12-04_YB-Dq4",2014-12-04,2014-12-04,"YB","D","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","",""
+"2014-12-04_YB-Dq5",2014-12-04,2014-12-04,"YB","D","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-12-04_YB-Dq3",2014-12-04,2014-12-04,"YB","D","3","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-12-04_YB-Dq4",2014-12-04,2014-12-04,"YB","D","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","",""
+"2014-12-04_YB-Dq5",2014-12-04,2014-12-04,"YB","D","5","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-12-04_YB-Dq3",2014-12-04,2014-12-04,"YB","D","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-12-04_YB-Dq4",2014-12-04,2014-12-04,"YB","D","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","",""
+"2014-12-04_YB-Dq5",2014-12-04,2014-12-04,"YB","D","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-12-04_YB-Dq3",2014-12-04,2014-12-04,"YB","D","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-12-04_YB-Dq4",2014-12-04,2014-12-04,"YB","D","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","",""
+"2014-12-04_YB-Dq5",2014-12-04,2014-12-04,"YB","D","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-12-04_YB-Dq3",2014-12-04,2014-12-04,"YB","D","3","Pp","Pollicipes_polymerus","Type 11",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-12-04_YB-Dq4",2014-12-04,2014-12-04,"YB","D","4","Pp","Pollicipes_polymerus","Type 11",19,0.0875,217.142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","",""
+"2014-12-04_YB-Dq5",2014-12-04,2014-12-04,"YB","D","5","Pp","Pollicipes_polymerus","Type 11",15,0.0875,171.428571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-12-04_YB-Dq3",2014-12-04,2014-12-04,"YB","D","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-12-04_YB-Dq4",2014-12-04,2014-12-04,"YB","D","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","",""
+"2014-12-04_YB-Dq5",2014-12-04,2014-12-04,"YB","D","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-12-04_YB-Dq3",2014-12-04,2014-12-04,"YB","D","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-12-04_YB-Dq4",2014-12-04,2014-12-04,"YB","D","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","",""
+"2014-12-04_YB-Dq5",2014-12-04,2014-12-04,"YB","D","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-12-04_YB-Dq3",2014-12-04,2014-12-04,"YB","D","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","3%",""
+"2014-12-04_YB-Dq4",2014-12-04,2014-12-04,"YB","D","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","",""
+"2014-12-04_YB-Dq5",2014-12-04,2014-12-04,"YB","D","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2014-12-08_YB-Eq3",2014-12-04,2014-12-08,"YB","E","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","All counts likely low due to glare, blur, and thin algae film"
+"2014-12-08_YB-Eq4",2014-12-04,2014-12-08,"YB","E","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","65%","counts may be low due to glare and high algae coverage"
+"2014-12-08_YB-Eq8",2014-12-04,2014-12-08,"YB","E","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to glare, blur and algae film"
+"2014-12-08_YB-Eq3",2014-12-04,2014-12-08,"YB","E","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","All counts likely low due to glare, blur, and thin algae film"
+"2014-12-08_YB-Eq4",2014-12-04,2014-12-08,"YB","E","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","65%","counts may be low due to glare and high algae coverage"
+"2014-12-08_YB-Eq8",2014-12-04,2014-12-08,"YB","E","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to glare, blur and algae film"
+"2014-12-08_YB-Eq3",2014-12-04,2014-12-08,"YB","E","3","Bg","Balanus_glandula","Type 1",316,0.0875,3611.42857142857,NA,"Stephanie Merhoff","Finished","Full","Full","40%","All counts likely low due to glare, blur, and thin algae film"
+"2014-12-08_YB-Eq4",2014-12-04,2014-12-08,"YB","E","4","Bg","Balanus_glandula","Type 1",437,0.0875,4994.28571428571,NA,"Stephanie Merhoff","Finished","Full","Full","65%","counts may be low due to glare and high algae coverage"
+"2014-12-08_YB-Eq8",2014-12-04,2014-12-08,"YB","E","8","Bg","Balanus_glandula","Type 1",75,0.0875,857.142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to glare, blur and algae film"
+"2014-12-08_YB-Eq3",2014-12-04,2014-12-08,"YB","E","3","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","All counts likely low due to glare, blur, and thin algae film"
+"2014-12-08_YB-Eq4",2014-12-04,2014-12-08,"YB","E","4","BgD","Balanus_glandula_(dead)","Type 2",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","65%","counts may be low due to glare and high algae coverage"
+"2014-12-08_YB-Eq8",2014-12-04,2014-12-08,"YB","E","8","BgD","Balanus_glandula_(dead)","Type 2",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to glare, blur and algae film"
+"2014-12-08_YB-Eq3",2014-12-04,2014-12-08,"YB","E","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","All counts likely low due to glare, blur, and thin algae film"
+"2014-12-08_YB-Eq4",2014-12-04,2014-12-08,"YB","E","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","65%","counts may be low due to glare and high algae coverage"
+"2014-12-08_YB-Eq8",2014-12-04,2014-12-08,"YB","E","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to glare, blur and algae film"
+"2014-12-08_YB-Eq3",2014-12-04,2014-12-08,"YB","E","3","Cth","Chthamalus_dalli","Type 3",50,0.0875,571.428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","40%","All counts likely low due to glare, blur, and thin algae film"
+"2014-12-08_YB-Eq4",2014-12-04,2014-12-08,"YB","E","4","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","65%","counts may be low due to glare and high algae coverage"
+"2014-12-08_YB-Eq8",2014-12-04,2014-12-08,"YB","E","8","Cth","Chthamalus_dalli","Type 3",449,0.0875,5131.42857142857,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to glare, blur and algae film"
+"2014-12-08_YB-Eq3",2014-12-04,2014-12-08,"YB","E","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","All counts likely low due to glare, blur, and thin algae film"
+"2014-12-08_YB-Eq4",2014-12-04,2014-12-08,"YB","E","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","65%","counts may be low due to glare and high algae coverage"
+"2014-12-08_YB-Eq8",2014-12-04,2014-12-08,"YB","E","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to glare, blur and algae film"
+"2014-12-08_YB-Eq3",2014-12-04,2014-12-08,"YB","E","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","All counts likely low due to glare, blur, and thin algae film"
+"2014-12-08_YB-Eq4",2014-12-04,2014-12-08,"YB","E","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","65%","counts may be low due to glare and high algae coverage"
+"2014-12-08_YB-Eq8",2014-12-04,2014-12-08,"YB","E","8","Emp","Emplectonema worm","Type 23",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to glare, blur and algae film"
+"2014-12-08_YB-Eq3",2014-12-04,2014-12-08,"YB","E","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","All counts likely low due to glare, blur, and thin algae film"
+"2014-12-08_YB-Eq4",2014-12-04,2014-12-08,"YB","E","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","65%","counts may be low due to glare and high algae coverage"
+"2014-12-08_YB-Eq8",2014-12-04,2014-12-08,"YB","E","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to glare, blur and algae film"
+"2014-12-08_YB-Eq3",2014-12-04,2014-12-08,"YB","E","3","Lim","Limpets","Type 12",23,0.0875,262.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","40%","All counts likely low due to glare, blur, and thin algae film"
+"2014-12-08_YB-Eq4",2014-12-04,2014-12-08,"YB","E","4","Lim","Limpets","Type 12",10,0.0875,114.285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","65%","counts may be low due to glare and high algae coverage"
+"2014-12-08_YB-Eq8",2014-12-04,2014-12-08,"YB","E","8","Lim","Limpets","Type 12",100,0.0875,1142.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to glare, blur and algae film"
+"2014-12-08_YB-Eq3",2014-12-04,2014-12-08,"YB","E","3","Ls","Littorina_sitkana","Type 13",33,0.0875,377.142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","40%","All counts likely low due to glare, blur, and thin algae film"
+"2014-12-08_YB-Eq4",2014-12-04,2014-12-08,"YB","E","4","Ls","Littorina_sitkana","Type 13",46,0.0875,525.714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","65%","counts may be low due to glare and high algae coverage"
+"2014-12-08_YB-Eq8",2014-12-04,2014-12-08,"YB","E","8","Ls","Littorina_sitkana","Type 13",130,0.0875,1485.71428571429,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to glare, blur and algae film"
+"2014-12-08_YB-Eq3",2014-12-04,2014-12-08,"YB","E","3","Mc","Mytilus_californianus","Type 17",19,0.0875,217.142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","40%","All counts likely low due to glare, blur, and thin algae film"
+"2014-12-08_YB-Eq4",2014-12-04,2014-12-08,"YB","E","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","65%","counts may be low due to glare and high algae coverage"
+"2014-12-08_YB-Eq8",2014-12-04,2014-12-08,"YB","E","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to glare, blur and algae film"
+"2014-12-08_YB-Eq3",2014-12-04,2014-12-08,"YB","E","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","All counts likely low due to glare, blur, and thin algae film"
+"2014-12-08_YB-Eq4",2014-12-04,2014-12-08,"YB","E","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","65%","counts may be low due to glare and high algae coverage"
+"2014-12-08_YB-Eq8",2014-12-04,2014-12-08,"YB","E","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to glare, blur and algae film"
+"2014-12-08_YB-Eq3",2014-12-04,2014-12-08,"YB","E","3","Myt","Mytilus_spp","Type 7",187,0.0875,2137.14285714286,NA,"Stephanie Merhoff","Finished","Full","Full","40%","All counts likely low due to glare, blur, and thin algae film"
+"2014-12-08_YB-Eq4",2014-12-04,2014-12-08,"YB","E","4","Myt","Mytilus_spp","Type 7",235,0.0875,2685.71428571429,NA,"Stephanie Merhoff","Finished","Full","Full","65%","counts may be low due to glare and high algae coverage"
+"2014-12-08_YB-Eq8",2014-12-04,2014-12-08,"YB","E","8","Myt","Mytilus_spp","Type 7",1192,0.0875,13622.8571428571,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to glare, blur and algae film"
+"2014-12-08_YB-Eq3",2014-12-04,2014-12-08,"YB","E","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","All counts likely low due to glare, blur, and thin algae film"
+"2014-12-08_YB-Eq4",2014-12-04,2014-12-08,"YB","E","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","65%","counts may be low due to glare and high algae coverage"
+"2014-12-08_YB-Eq8",2014-12-04,2014-12-08,"YB","E","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to glare, blur and algae film"
+"2014-12-08_YB-Eq3",2014-12-04,2014-12-08,"YB","E","3","Mt","Mytilus_trossulus","Type 15",26,0.0875,297.142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","40%","All counts likely low due to glare, blur, and thin algae film"
+"2014-12-08_YB-Eq4",2014-12-04,2014-12-08,"YB","E","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","65%","counts may be low due to glare and high algae coverage"
+"2014-12-08_YB-Eq8",2014-12-04,2014-12-08,"YB","E","8","Mt","Mytilus_trossulus","Type 15",23,0.0875,262.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to glare, blur and algae film"
+"2014-12-08_YB-Eq3",2014-12-04,2014-12-08,"YB","E","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","All counts likely low due to glare, blur, and thin algae film"
+"2014-12-08_YB-Eq4",2014-12-04,2014-12-08,"YB","E","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","65%","counts may be low due to glare and high algae coverage"
+"2014-12-08_YB-Eq8",2014-12-04,2014-12-08,"YB","E","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to glare, blur and algae film"
+"2014-12-08_YB-Eq3",2014-12-04,2014-12-08,"YB","E","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","All counts likely low due to glare, blur, and thin algae film"
+"2014-12-08_YB-Eq4",2014-12-04,2014-12-08,"YB","E","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","65%","counts may be low due to glare and high algae coverage"
+"2014-12-08_YB-Eq8",2014-12-04,2014-12-08,"YB","E","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to glare, blur and algae film"
+"2014-12-08_YB-Eq3",2014-12-04,2014-12-08,"YB","E","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","All counts likely low due to glare, blur, and thin algae film"
+"2014-12-08_YB-Eq4",2014-12-04,2014-12-08,"YB","E","4","Nc","Nucella_canaliculata","Type 10",15,0.0875,171.428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","65%","counts may be low due to glare and high algae coverage"
+"2014-12-08_YB-Eq8",2014-12-04,2014-12-08,"YB","E","8","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to glare, blur and algae film"
+"2014-12-08_YB-Eq3",2014-12-04,2014-12-08,"YB","E","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","All counts likely low due to glare, blur, and thin algae film"
+"2014-12-08_YB-Eq4",2014-12-04,2014-12-08,"YB","E","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","65%","counts may be low due to glare and high algae coverage"
+"2014-12-08_YB-Eq8",2014-12-04,2014-12-08,"YB","E","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to glare, blur and algae film"
+"2014-12-08_YB-Eq3",2014-12-04,2014-12-08,"YB","E","3","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","All counts likely low due to glare, blur, and thin algae film"
+"2014-12-08_YB-Eq4",2014-12-04,2014-12-08,"YB","E","4","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","65%","counts may be low due to glare and high algae coverage"
+"2014-12-08_YB-Eq8",2014-12-04,2014-12-08,"YB","E","8","No","Nucella_ostrina","Type 9",4,0.0875,45.7142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to glare, blur and algae film"
+"2014-12-08_YB-Eq3",2014-12-04,2014-12-08,"YB","E","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","All counts likely low due to glare, blur, and thin algae film"
+"2014-12-08_YB-Eq4",2014-12-04,2014-12-08,"YB","E","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","65%","counts may be low due to glare and high algae coverage"
+"2014-12-08_YB-Eq8",2014-12-04,2014-12-08,"YB","E","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to glare, blur and algae film"
+"2014-12-08_YB-Eq3",2014-12-04,2014-12-08,"YB","E","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","All counts likely low due to glare, blur, and thin algae film"
+"2014-12-08_YB-Eq4",2014-12-04,2014-12-08,"YB","E","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","65%","counts may be low due to glare and high algae coverage"
+"2014-12-08_YB-Eq8",2014-12-04,2014-12-08,"YB","E","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to glare, blur and algae film"
+"2014-12-08_YB-Eq3",2014-12-04,2014-12-08,"YB","E","3","Pp","Pollicipes_polymerus","Type 11",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","40%","All counts likely low due to glare, blur, and thin algae film"
+"2014-12-08_YB-Eq4",2014-12-04,2014-12-08,"YB","E","4","Pp","Pollicipes_polymerus","Type 11",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","65%","counts may be low due to glare and high algae coverage"
+"2014-12-08_YB-Eq8",2014-12-04,2014-12-08,"YB","E","8","Pp","Pollicipes_polymerus","Type 11",158,0.0875,1805.71428571429,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to glare, blur and algae film"
+"2014-12-08_YB-Eq3",2014-12-04,2014-12-08,"YB","E","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","All counts likely low due to glare, blur, and thin algae film"
+"2014-12-08_YB-Eq4",2014-12-04,2014-12-08,"YB","E","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","65%","counts may be low due to glare and high algae coverage"
+"2014-12-08_YB-Eq8",2014-12-04,2014-12-08,"YB","E","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to glare, blur and algae film"
+"2014-12-08_YB-Eq3",2014-12-04,2014-12-08,"YB","E","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","All counts likely low due to glare, blur, and thin algae film"
+"2014-12-08_YB-Eq4",2014-12-04,2014-12-08,"YB","E","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","65%","counts may be low due to glare and high algae coverage"
+"2014-12-08_YB-Eq8",2014-12-04,2014-12-08,"YB","E","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to glare, blur and algae film"
+"2014-12-08_YB-Eq3",2014-12-04,2014-12-08,"YB","E","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","All counts likely low due to glare, blur, and thin algae film"
+"2014-12-08_YB-Eq4",2014-12-04,2014-12-08,"YB","E","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","65%","counts may be low due to glare and high algae coverage"
+"2014-12-08_YB-Eq8",2014-12-04,2014-12-08,"YB","E","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to glare, blur and algae film"
+"2014-12-04_YB-Fq4",2014-12-04,2014-12-04,"YB","F","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-12-04_YB-Fq5",2014-12-04,2014-12-04,"YB","F","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-12-04_YB-Fq6",2014-12-04,2014-12-04,"YB","F","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover."
+"2014-12-04_YB-Fq4",2014-12-04,2014-12-04,"YB","F","4","Ae","Anemones","Type 14",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-12-04_YB-Fq5",2014-12-04,2014-12-04,"YB","F","5","Ae","Anemones","Type 14",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-12-04_YB-Fq6",2014-12-04,2014-12-04,"YB","F","6","Ae","Anemones","Type 14",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover."
+"2014-12-04_YB-Fq4",2014-12-04,2014-12-04,"YB","F","4","Bg","Balanus_glandula","Type 1",299,0.015625,19136,"c","Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-12-04_YB-Fq5",2014-12-04,2014-12-04,"YB","F","5","Bg","Balanus_glandula","Type 1",775,0.0875,8857.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-12-04_YB-Fq6",2014-12-04,2014-12-04,"YB","F","6","Bg","Balanus_glandula","Type 1",1141,0.0875,13040,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover."
+"2014-12-04_YB-Fq4",2014-12-04,2014-12-04,"YB","F","4","BgD","Balanus_glandula_(dead)","Type 2",10,0.015625,640,"c","Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-12-04_YB-Fq5",2014-12-04,2014-12-04,"YB","F","5","BgD","Balanus_glandula_(dead)","Type 2",22,0.0875,251.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-12-04_YB-Fq6",2014-12-04,2014-12-04,"YB","F","6","BgD","Balanus_glandula_(dead)","Type 2",11,0.0875,125.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover."
+"2014-12-04_YB-Fq4",2014-12-04,2014-12-04,"YB","F","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-12-04_YB-Fq5",2014-12-04,2014-12-04,"YB","F","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-12-04_YB-Fq6",2014-12-04,2014-12-04,"YB","F","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover."
+"2014-12-04_YB-Fq4",2014-12-04,2014-12-04,"YB","F","4","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-12-04_YB-Fq5",2014-12-04,2014-12-04,"YB","F","5","Cth","Chthamalus_dalli","Type 3",59,0.0875,674.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-12-04_YB-Fq6",2014-12-04,2014-12-04,"YB","F","6","Cth","Chthamalus_dalli","Type 3",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover."
+"2014-12-04_YB-Fq4",2014-12-04,2014-12-04,"YB","F","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-12-04_YB-Fq5",2014-12-04,2014-12-04,"YB","F","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-12-04_YB-Fq6",2014-12-04,2014-12-04,"YB","F","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover."
+"2014-12-04_YB-Fq4",2014-12-04,2014-12-04,"YB","F","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-12-04_YB-Fq5",2014-12-04,2014-12-04,"YB","F","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-12-04_YB-Fq6",2014-12-04,2014-12-04,"YB","F","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover."
+"2014-12-04_YB-Fq4",2014-12-04,2014-12-04,"YB","F","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-12-04_YB-Fq5",2014-12-04,2014-12-04,"YB","F","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-12-04_YB-Fq6",2014-12-04,2014-12-04,"YB","F","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover."
+"2014-12-04_YB-Fq4",2014-12-04,2014-12-04,"YB","F","4","Lim","Limpets","Type 12",635,0.0875,7257.14285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-12-04_YB-Fq5",2014-12-04,2014-12-04,"YB","F","5","Lim","Limpets","Type 12",377,0.0875,4308.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-12-04_YB-Fq6",2014-12-04,2014-12-04,"YB","F","6","Lim","Limpets","Type 12",440,0.0875,5028.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover."
+"2014-12-04_YB-Fq4",2014-12-04,2014-12-04,"YB","F","4","Ls","Littorina_sitkana","Type 13",231,0.0875,2640,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-12-04_YB-Fq5",2014-12-04,2014-12-04,"YB","F","5","Ls","Littorina_sitkana","Type 13",166,0.0875,1897.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-12-04_YB-Fq6",2014-12-04,2014-12-04,"YB","F","6","Ls","Littorina_sitkana","Type 13",276,0.0875,3154.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover."
+"2014-12-04_YB-Fq4",2014-12-04,2014-12-04,"YB","F","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-12-04_YB-Fq5",2014-12-04,2014-12-04,"YB","F","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-12-04_YB-Fq6",2014-12-04,2014-12-04,"YB","F","6","Mc","Mytilus_californianus","Type 17",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover."
+"2014-12-04_YB-Fq4",2014-12-04,2014-12-04,"YB","F","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-12-04_YB-Fq5",2014-12-04,2014-12-04,"YB","F","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-12-04_YB-Fq6",2014-12-04,2014-12-04,"YB","F","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover."
+"2014-12-04_YB-Fq4",2014-12-04,2014-12-04,"YB","F","4","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-12-04_YB-Fq5",2014-12-04,2014-12-04,"YB","F","5","Myt","Mytilus_spp","Type 7",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-12-04_YB-Fq6",2014-12-04,2014-12-04,"YB","F","6","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover."
+"2014-12-04_YB-Fq4",2014-12-04,2014-12-04,"YB","F","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-12-04_YB-Fq5",2014-12-04,2014-12-04,"YB","F","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-12-04_YB-Fq6",2014-12-04,2014-12-04,"YB","F","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover."
+"2014-12-04_YB-Fq4",2014-12-04,2014-12-04,"YB","F","4","Mt","Mytilus_trossulus","Type 15",622,0.0875,7108.57142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-12-04_YB-Fq5",2014-12-04,2014-12-04,"YB","F","5","Mt","Mytilus_trossulus","Type 15",642,0.0875,7337.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-12-04_YB-Fq6",2014-12-04,2014-12-04,"YB","F","6","Mt","Mytilus_trossulus","Type 15",654,0.0875,7474.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover."
+"2014-12-04_YB-Fq4",2014-12-04,2014-12-04,"YB","F","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-12-04_YB-Fq5",2014-12-04,2014-12-04,"YB","F","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-12-04_YB-Fq6",2014-12-04,2014-12-04,"YB","F","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover."
+"2014-12-04_YB-Fq4",2014-12-04,2014-12-04,"YB","F","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-12-04_YB-Fq5",2014-12-04,2014-12-04,"YB","F","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-12-04_YB-Fq6",2014-12-04,2014-12-04,"YB","F","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover."
+"2014-12-04_YB-Fq4",2014-12-04,2014-12-04,"YB","F","4","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-12-04_YB-Fq5",2014-12-04,2014-12-04,"YB","F","5","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-12-04_YB-Fq6",2014-12-04,2014-12-04,"YB","F","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover."
+"2014-12-04_YB-Fq4",2014-12-04,2014-12-04,"YB","F","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-12-04_YB-Fq5",2014-12-04,2014-12-04,"YB","F","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-12-04_YB-Fq6",2014-12-04,2014-12-04,"YB","F","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover."
+"2014-12-04_YB-Fq4",2014-12-04,2014-12-04,"YB","F","4","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-12-04_YB-Fq5",2014-12-04,2014-12-04,"YB","F","5","No","Nucella_ostrina","Type 9",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-12-04_YB-Fq6",2014-12-04,2014-12-04,"YB","F","6","No","Nucella_ostrina","Type 9",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover."
+"2014-12-04_YB-Fq4",2014-12-04,2014-12-04,"YB","F","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-12-04_YB-Fq5",2014-12-04,2014-12-04,"YB","F","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-12-04_YB-Fq6",2014-12-04,2014-12-04,"YB","F","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover."
+"2014-12-04_YB-Fq4",2014-12-04,2014-12-04,"YB","F","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-12-04_YB-Fq5",2014-12-04,2014-12-04,"YB","F","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-12-04_YB-Fq6",2014-12-04,2014-12-04,"YB","F","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover."
+"2014-12-04_YB-Fq4",2014-12-04,2014-12-04,"YB","F","4","Pp","Pollicipes_polymerus","Type 11",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-12-04_YB-Fq5",2014-12-04,2014-12-04,"YB","F","5","Pp","Pollicipes_polymerus","Type 11",12,0.0875,137.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-12-04_YB-Fq6",2014-12-04,2014-12-04,"YB","F","6","Pp","Pollicipes_polymerus","Type 11",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover."
+"2014-12-04_YB-Fq4",2014-12-04,2014-12-04,"YB","F","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-12-04_YB-Fq5",2014-12-04,2014-12-04,"YB","F","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-12-04_YB-Fq6",2014-12-04,2014-12-04,"YB","F","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover."
+"2014-12-04_YB-Fq4",2014-12-04,2014-12-04,"YB","F","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-12-04_YB-Fq5",2014-12-04,2014-12-04,"YB","F","5","Sc","Semibalanus_cariosus","Type 5",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-12-04_YB-Fq6",2014-12-04,2014-12-04,"YB","F","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover."
+"2014-12-04_YB-Fq4",2014-12-04,2014-12-04,"YB","F","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%",""
+"2014-12-04_YB-Fq5",2014-12-04,2014-12-04,"YB","F","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2014-12-04_YB-Fq6",2014-12-04,2014-12-04,"YB","F","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover."
+"2014-12-04_YB-Gq3",2014-12-04,2014-12-04,"YB","G","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%",""
+"2014-12-04_YB-Gq5",2014-12-04,2014-12-04,"YB","G","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","3%","counts may be low due to blur in corners and top half submerged by water"
+"2014-12-04_YB-Gq8",2014-12-04,2014-12-04,"YB","G","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","15%","high # of p/polymerus, ~95% are juveniles "
+"2014-12-04_YB-Gq3",2014-12-04,2014-12-04,"YB","G","3","Ae","Anemones","Type 14",77,0.0875,880,NA,"Julia Bingham","Finished","Full","Full","5%",""
+"2014-12-04_YB-Gq5",2014-12-04,2014-12-04,"YB","G","5","Ae","Anemones","Type 14",27,0.0875,308.571428571429,NA,"Julia Bingham","Finished","Cropped","Full","3%","counts may be low due to blur in corners and top half submerged by water"
+"2014-12-04_YB-Gq8",2014-12-04,2014-12-04,"YB","G","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","15%","high # of p/polymerus, ~95% are juveniles "
+"2014-12-04_YB-Gq3",2014-12-04,2014-12-04,"YB","G","3","Bg","Balanus_glandula","Type 1",638,0.0875,7291.42857142857,NA,"Julia Bingham","Finished","Full","Full","5%",""
+"2014-12-04_YB-Gq5",2014-12-04,2014-12-04,"YB","G","5","Bg","Balanus_glandula","Type 1",2321,0.0875,26525.7142857143,NA,"Julia Bingham","Finished","Cropped","Full","3%","counts may be low due to blur in corners and top half submerged by water"
+"2014-12-04_YB-Gq8",2014-12-04,2014-12-04,"YB","G","8","Bg","Balanus_glandula","Type 1",1263,0.015625,80832,"c","Julia Bingham","Finished","Full","Cropped","15%","high # of p/polymerus, ~95% are juveniles "
+"2014-12-04_YB-Gq3",2014-12-04,2014-12-04,"YB","G","3","BgD","Balanus_glandula_(dead)","Type 2",219,0.0875,2502.85714285714,NA,"Julia Bingham","Finished","Full","Full","5%",""
+"2014-12-04_YB-Gq5",2014-12-04,2014-12-04,"YB","G","5","BgD","Balanus_glandula_(dead)","Type 2",502,0.0875,5737.14285714286,NA,"Julia Bingham","Finished","Cropped","Full","3%","counts may be low due to blur in corners and top half submerged by water"
+"2014-12-04_YB-Gq8",2014-12-04,2014-12-04,"YB","G","8","BgD","Balanus_glandula_(dead)","Type 2",231,0.015625,14784,"c","Julia Bingham","Finished","Full","Cropped","15%","high # of p/polymerus, ~95% are juveniles "
+"2014-12-04_YB-Gq3",2014-12-04,2014-12-04,"YB","G","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%",""
+"2014-12-04_YB-Gq5",2014-12-04,2014-12-04,"YB","G","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","3%","counts may be low due to blur in corners and top half submerged by water"
+"2014-12-04_YB-Gq8",2014-12-04,2014-12-04,"YB","G","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","15%","high # of p/polymerus, ~95% are juveniles "
+"2014-12-04_YB-Gq3",2014-12-04,2014-12-04,"YB","G","3","Cth","Chthamalus_dalli","Type 3",519,0.0875,5931.42857142857,NA,"Julia Bingham","Finished","Full","Full","5%",""
+"2014-12-04_YB-Gq5",2014-12-04,2014-12-04,"YB","G","5","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","3%","counts may be low due to blur in corners and top half submerged by water"
+"2014-12-04_YB-Gq8",2014-12-04,2014-12-04,"YB","G","8","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Julia Bingham","Finished","Full","Cropped","15%","high # of p/polymerus, ~95% are juveniles "
+"2014-12-04_YB-Gq3",2014-12-04,2014-12-04,"YB","G","3","CthD","Chthamalus_dalli (dead)","Type 4",262,0.0875,2994.28571428571,NA,"Julia Bingham","Finished","Full","Full","5%",""
+"2014-12-04_YB-Gq5",2014-12-04,2014-12-04,"YB","G","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","3%","counts may be low due to blur in corners and top half submerged by water"
+"2014-12-04_YB-Gq8",2014-12-04,2014-12-04,"YB","G","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Julia Bingham","Finished","Full","Cropped","15%","high # of p/polymerus, ~95% are juveniles "
+"2014-12-04_YB-Gq3",2014-12-04,2014-12-04,"YB","G","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%",""
+"2014-12-04_YB-Gq5",2014-12-04,2014-12-04,"YB","G","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","3%","counts may be low due to blur in corners and top half submerged by water"
+"2014-12-04_YB-Gq8",2014-12-04,2014-12-04,"YB","G","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","15%","high # of p/polymerus, ~95% are juveniles "
+"2014-12-04_YB-Gq3",2014-12-04,2014-12-04,"YB","G","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%",""
+"2014-12-04_YB-Gq5",2014-12-04,2014-12-04,"YB","G","5","Lep","Leptasterias","Type 20",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Cropped","Full","3%","counts may be low due to blur in corners and top half submerged by water"
+"2014-12-04_YB-Gq8",2014-12-04,2014-12-04,"YB","G","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","15%","high # of p/polymerus, ~95% are juveniles "
+"2014-12-04_YB-Gq3",2014-12-04,2014-12-04,"YB","G","3","Lim","Limpets","Type 12",74,0.0875,845.714285714286,NA,"Julia Bingham","Finished","Full","Full","5%",""
+"2014-12-04_YB-Gq5",2014-12-04,2014-12-04,"YB","G","5","Lim","Limpets","Type 12",46,0.0875,525.714285714286,NA,"Julia Bingham","Finished","Cropped","Full","3%","counts may be low due to blur in corners and top half submerged by water"
+"2014-12-04_YB-Gq8",2014-12-04,2014-12-04,"YB","G","8","Lim","Limpets","Type 12",122,0.0875,1394.28571428571,NA,"Julia Bingham","Finished","Full","Cropped","15%","high # of p/polymerus, ~95% are juveniles "
+"2014-12-04_YB-Gq3",2014-12-04,2014-12-04,"YB","G","3","Ls","Littorina_sitkana","Type 13",352,0.0875,4022.85714285714,NA,"Julia Bingham","Finished","Full","Full","5%",""
+"2014-12-04_YB-Gq5",2014-12-04,2014-12-04,"YB","G","5","Ls","Littorina_sitkana","Type 13",409,0.0875,4674.28571428571,NA,"Julia Bingham","Finished","Cropped","Full","3%","counts may be low due to blur in corners and top half submerged by water"
+"2014-12-04_YB-Gq8",2014-12-04,2014-12-04,"YB","G","8","Ls","Littorina_sitkana","Type 13",571,0.0875,6525.71428571429,NA,"Julia Bingham","Finished","Full","Cropped","15%","high # of p/polymerus, ~95% are juveniles "
+"2014-12-04_YB-Gq3",2014-12-04,2014-12-04,"YB","G","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%",""
+"2014-12-04_YB-Gq5",2014-12-04,2014-12-04,"YB","G","5","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Julia Bingham","Finished","Cropped","Full","3%","counts may be low due to blur in corners and top half submerged by water"
+"2014-12-04_YB-Gq8",2014-12-04,2014-12-04,"YB","G","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","15%","high # of p/polymerus, ~95% are juveniles "
+"2014-12-04_YB-Gq3",2014-12-04,2014-12-04,"YB","G","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%",""
+"2014-12-04_YB-Gq5",2014-12-04,2014-12-04,"YB","G","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Julia Bingham","Finished","Cropped","Full","3%","counts may be low due to blur in corners and top half submerged by water"
+"2014-12-04_YB-Gq8",2014-12-04,2014-12-04,"YB","G","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","15%","high # of p/polymerus, ~95% are juveniles "
+"2014-12-04_YB-Gq3",2014-12-04,2014-12-04,"YB","G","3","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%",""
+"2014-12-04_YB-Gq5",2014-12-04,2014-12-04,"YB","G","5","Myt","Mytilus_spp","Type 7",0,0.015625,0,"c","Julia Bingham","Finished","Cropped","Full","3%","counts may be low due to blur in corners and top half submerged by water"
+"2014-12-04_YB-Gq8",2014-12-04,2014-12-04,"YB","G","8","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","15%","high # of p/polymerus, ~95% are juveniles "
+"2014-12-04_YB-Gq3",2014-12-04,2014-12-04,"YB","G","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%",""
+"2014-12-04_YB-Gq5",2014-12-04,2014-12-04,"YB","G","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Julia Bingham","Finished","Cropped","Full","3%","counts may be low due to blur in corners and top half submerged by water"
+"2014-12-04_YB-Gq8",2014-12-04,2014-12-04,"YB","G","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","15%","high # of p/polymerus, ~95% are juveniles "
+"2014-12-04_YB-Gq3",2014-12-04,2014-12-04,"YB","G","3","Mt","Mytilus_trossulus","Type 15",2984,0.0875,34102.8571428571,NA,"Julia Bingham","Finished","Full","Full","5%",""
+"2014-12-04_YB-Gq5",2014-12-04,2014-12-04,"YB","G","5","Mt","Mytilus_trossulus","Type 15",590,0.015625,37760,"c","Julia Bingham","Finished","Cropped","Full","3%","counts may be low due to blur in corners and top half submerged by water"
+"2014-12-04_YB-Gq8",2014-12-04,2014-12-04,"YB","G","8","Mt","Mytilus_trossulus","Type 15",2030,0.0875,23200,NA,"Julia Bingham","Finished","Full","Cropped","15%","high # of p/polymerus, ~95% are juveniles "
+"2014-12-04_YB-Gq3",2014-12-04,2014-12-04,"YB","G","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%",""
+"2014-12-04_YB-Gq5",2014-12-04,2014-12-04,"YB","G","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Julia Bingham","Finished","Cropped","Full","3%","counts may be low due to blur in corners and top half submerged by water"
+"2014-12-04_YB-Gq8",2014-12-04,2014-12-04,"YB","G","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","15%","high # of p/polymerus, ~95% are juveniles "
+"2014-12-04_YB-Gq3",2014-12-04,2014-12-04,"YB","G","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%",""
+"2014-12-04_YB-Gq5",2014-12-04,2014-12-04,"YB","G","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","3%","counts may be low due to blur in corners and top half submerged by water"
+"2014-12-04_YB-Gq8",2014-12-04,2014-12-04,"YB","G","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","15%","high # of p/polymerus, ~95% are juveniles "
+"2014-12-04_YB-Gq3",2014-12-04,2014-12-04,"YB","G","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%",""
+"2014-12-04_YB-Gq5",2014-12-04,2014-12-04,"YB","G","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","3%","counts may be low due to blur in corners and top half submerged by water"
+"2014-12-04_YB-Gq8",2014-12-04,2014-12-04,"YB","G","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","15%","high # of p/polymerus, ~95% are juveniles "
+"2014-12-04_YB-Gq3",2014-12-04,2014-12-04,"YB","G","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%",""
+"2014-12-04_YB-Gq5",2014-12-04,2014-12-04,"YB","G","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","3%","counts may be low due to blur in corners and top half submerged by water"
+"2014-12-04_YB-Gq8",2014-12-04,2014-12-04,"YB","G","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","15%","high # of p/polymerus, ~95% are juveniles "
+"2014-12-04_YB-Gq3",2014-12-04,2014-12-04,"YB","G","3","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","5%",""
+"2014-12-04_YB-Gq5",2014-12-04,2014-12-04,"YB","G","5","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","3%","counts may be low due to blur in corners and top half submerged by water"
+"2014-12-04_YB-Gq8",2014-12-04,2014-12-04,"YB","G","8","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","15%","high # of p/polymerus, ~95% are juveniles "
+"2014-12-04_YB-Gq3",2014-12-04,2014-12-04,"YB","G","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%",""
+"2014-12-04_YB-Gq5",2014-12-04,2014-12-04,"YB","G","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","3%","counts may be low due to blur in corners and top half submerged by water"
+"2014-12-04_YB-Gq8",2014-12-04,2014-12-04,"YB","G","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","15%","high # of p/polymerus, ~95% are juveniles "
+"2014-12-04_YB-Gq3",2014-12-04,2014-12-04,"YB","G","3","Pis","Pisaster","Type 21",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","5%",""
+"2014-12-04_YB-Gq5",2014-12-04,2014-12-04,"YB","G","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","3%","counts may be low due to blur in corners and top half submerged by water"
+"2014-12-04_YB-Gq8",2014-12-04,2014-12-04,"YB","G","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","15%","high # of p/polymerus, ~95% are juveniles "
+"2014-12-04_YB-Gq3",2014-12-04,2014-12-04,"YB","G","3","Pp","Pollicipes_polymerus","Type 11",40,0.0875,457.142857142857,NA,"Julia Bingham","Finished","Full","Full","5%",""
+"2014-12-04_YB-Gq5",2014-12-04,2014-12-04,"YB","G","5","Pp","Pollicipes_polymerus","Type 11",181,0.0875,2068.57142857143,NA,"Julia Bingham","Finished","Cropped","Full","3%","counts may be low due to blur in corners and top half submerged by water"
+"2014-12-04_YB-Gq8",2014-12-04,2014-12-04,"YB","G","8","Pp","Pollicipes_polymerus","Type 11",998,0.0875,11405.7142857143,NA,"Julia Bingham","Finished","Full","Cropped","15%","high # of p/polymerus, ~95% are juveniles "
+"2014-12-04_YB-Gq3",2014-12-04,2014-12-04,"YB","G","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%",""
+"2014-12-04_YB-Gq5",2014-12-04,2014-12-04,"YB","G","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","3%","counts may be low due to blur in corners and top half submerged by water"
+"2014-12-04_YB-Gq8",2014-12-04,2014-12-04,"YB","G","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","15%","high # of p/polymerus, ~95% are juveniles "
+"2014-12-04_YB-Gq3",2014-12-04,2014-12-04,"YB","G","3","Sc","Semibalanus_cariosus","Type 5",40,0.0875,457.142857142857,NA,"Julia Bingham","Finished","Full","Full","5%",""
+"2014-12-04_YB-Gq5",2014-12-04,2014-12-04,"YB","G","5","Sc","Semibalanus_cariosus","Type 5",16,0.0875,182.857142857143,NA,"Julia Bingham","Finished","Cropped","Full","3%","counts may be low due to blur in corners and top half submerged by water"
+"2014-12-04_YB-Gq8",2014-12-04,2014-12-04,"YB","G","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","15%","high # of p/polymerus, ~95% are juveniles "
+"2014-12-04_YB-Gq3",2014-12-04,2014-12-04,"YB","G","3","ScD","Semibalanus_cariosus_(dead)","Type 6",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Full","5%",""
+"2014-12-04_YB-Gq5",2014-12-04,2014-12-04,"YB","G","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","3%","counts may be low due to blur in corners and top half submerged by water"
+"2014-12-04_YB-Gq8",2014-12-04,2014-12-04,"YB","G","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","15%","high # of p/polymerus, ~95% are juveniles "
+"2015-01-18_YB-Aq6",2015-01-18,2015-01-18,"YB","A","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2015-01-18_YB-Aq7",2015-01-18,2015-01-18,"YB","A","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","4%",""
+"2015-01-18_YB-Aq9",2015-01-18,2015-01-18,"YB","A","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-01-18_YB-Aq6",2015-01-18,2015-01-18,"YB","A","6","Ae","Anemones","Type 14",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2015-01-18_YB-Aq7",2015-01-18,2015-01-18,"YB","A","7","Ae","Anemones","Type 14",88,0.0875,1005.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","4%",""
+"2015-01-18_YB-Aq9",2015-01-18,2015-01-18,"YB","A","9","Ae","Anemones","Type 14",53,0.0875,605.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-01-18_YB-Aq6",2015-01-18,2015-01-18,"YB","A","6","Bg","Balanus_glandula","Type 1",254,0.0875,2902.85714285714,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2015-01-18_YB-Aq7",2015-01-18,2015-01-18,"YB","A","7","Bg","Balanus_glandula","Type 1",627,0.0875,7165.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","4%",""
+"2015-01-18_YB-Aq9",2015-01-18,2015-01-18,"YB","A","9","Bg","Balanus_glandula","Type 1",660,0.0875,7542.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-01-18_YB-Aq6",2015-01-18,2015-01-18,"YB","A","6","BgD","Balanus_glandula_(dead)","Type 2",49,0.0875,560,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2015-01-18_YB-Aq7",2015-01-18,2015-01-18,"YB","A","7","BgD","Balanus_glandula_(dead)","Type 2",37,0.0875,422.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","4%",""
+"2015-01-18_YB-Aq9",2015-01-18,2015-01-18,"YB","A","9","BgD","Balanus_glandula_(dead)","Type 2",38,0.0875,434.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-01-18_YB-Aq6",2015-01-18,2015-01-18,"YB","A","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2015-01-18_YB-Aq7",2015-01-18,2015-01-18,"YB","A","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","4%",""
+"2015-01-18_YB-Aq9",2015-01-18,2015-01-18,"YB","A","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-01-18_YB-Aq6",2015-01-18,2015-01-18,"YB","A","6","Cth","Chthamalus_dalli","Type 3",71,0.0875,811.428571428571,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2015-01-18_YB-Aq7",2015-01-18,2015-01-18,"YB","A","7","Cth","Chthamalus_dalli","Type 3",34,0.0875,388.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","4%",""
+"2015-01-18_YB-Aq9",2015-01-18,2015-01-18,"YB","A","9","Cth","Chthamalus_dalli","Type 3",66,0.0875,754.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-01-18_YB-Aq6",2015-01-18,2015-01-18,"YB","A","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2015-01-18_YB-Aq7",2015-01-18,2015-01-18,"YB","A","7","CthD","Chthamalus_dalli (dead)","Type 4",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","4%",""
+"2015-01-18_YB-Aq9",2015-01-18,2015-01-18,"YB","A","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-01-18_YB-Aq6",2015-01-18,2015-01-18,"YB","A","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2015-01-18_YB-Aq7",2015-01-18,2015-01-18,"YB","A","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","4%",""
+"2015-01-18_YB-Aq9",2015-01-18,2015-01-18,"YB","A","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-01-18_YB-Aq6",2015-01-18,2015-01-18,"YB","A","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2015-01-18_YB-Aq7",2015-01-18,2015-01-18,"YB","A","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","4%",""
+"2015-01-18_YB-Aq9",2015-01-18,2015-01-18,"YB","A","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-01-18_YB-Aq6",2015-01-18,2015-01-18,"YB","A","6","Lim","Limpets","Type 12",11,0.0875,125.714285714286,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2015-01-18_YB-Aq7",2015-01-18,2015-01-18,"YB","A","7","Lim","Limpets","Type 12",123,0.0875,1405.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","4%",""
+"2015-01-18_YB-Aq9",2015-01-18,2015-01-18,"YB","A","9","Lim","Limpets","Type 12",164,0.0875,1874.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-01-18_YB-Aq6",2015-01-18,2015-01-18,"YB","A","6","Ls","Littorina_sitkana","Type 13",2,0.0875,22.8571428571429,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2015-01-18_YB-Aq7",2015-01-18,2015-01-18,"YB","A","7","Ls","Littorina_sitkana","Type 13",24,0.0875,274.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","4%",""
+"2015-01-18_YB-Aq9",2015-01-18,2015-01-18,"YB","A","9","Ls","Littorina_sitkana","Type 13",42,0.0875,480,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-01-18_YB-Aq6",2015-01-18,2015-01-18,"YB","A","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2015-01-18_YB-Aq7",2015-01-18,2015-01-18,"YB","A","7","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","4%",""
+"2015-01-18_YB-Aq9",2015-01-18,2015-01-18,"YB","A","9","Mc","Mytilus_californianus","Type 17",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-01-18_YB-Aq6",2015-01-18,2015-01-18,"YB","A","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2015-01-18_YB-Aq7",2015-01-18,2015-01-18,"YB","A","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","4%",""
+"2015-01-18_YB-Aq9",2015-01-18,2015-01-18,"YB","A","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-01-18_YB-Aq6",2015-01-18,2015-01-18,"YB","A","6","Myt","Mytilus_spp","Type 7",85,0.0875,971.428571428571,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2015-01-18_YB-Aq7",2015-01-18,2015-01-18,"YB","A","7","Myt","Mytilus_spp","Type 7",28,0.0875,320,NA,"Beatriz Vaca","Finished","Full","Full","4%",""
+"2015-01-18_YB-Aq9",2015-01-18,2015-01-18,"YB","A","9","Myt","Mytilus_spp","Type 7",29,0.0875,331.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-01-18_YB-Aq6",2015-01-18,2015-01-18,"YB","A","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2015-01-18_YB-Aq7",2015-01-18,2015-01-18,"YB","A","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","4%",""
+"2015-01-18_YB-Aq9",2015-01-18,2015-01-18,"YB","A","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-01-18_YB-Aq6",2015-01-18,2015-01-18,"YB","A","6","Mt","Mytilus_trossulus","Type 15",111,0.0875,1268.57142857143,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2015-01-18_YB-Aq7",2015-01-18,2015-01-18,"YB","A","7","Mt","Mytilus_trossulus","Type 15",239,0.0875,2731.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","4%",""
+"2015-01-18_YB-Aq9",2015-01-18,2015-01-18,"YB","A","9","Mt","Mytilus_trossulus","Type 15",257,0.0875,2937.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-01-18_YB-Aq6",2015-01-18,2015-01-18,"YB","A","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2015-01-18_YB-Aq7",2015-01-18,2015-01-18,"YB","A","7","MtD","Mytilus_trossulus_(dead)","Type 16",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","4%",""
+"2015-01-18_YB-Aq9",2015-01-18,2015-01-18,"YB","A","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-01-18_YB-Aq6",2015-01-18,2015-01-18,"YB","A","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2015-01-18_YB-Aq7",2015-01-18,2015-01-18,"YB","A","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","4%",""
+"2015-01-18_YB-Aq9",2015-01-18,2015-01-18,"YB","A","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-01-18_YB-Aq6",2015-01-18,2015-01-18,"YB","A","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2015-01-18_YB-Aq7",2015-01-18,2015-01-18,"YB","A","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","4%",""
+"2015-01-18_YB-Aq9",2015-01-18,2015-01-18,"YB","A","9","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-01-18_YB-Aq6",2015-01-18,2015-01-18,"YB","A","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2015-01-18_YB-Aq7",2015-01-18,2015-01-18,"YB","A","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","4%",""
+"2015-01-18_YB-Aq9",2015-01-18,2015-01-18,"YB","A","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-01-18_YB-Aq6",2015-01-18,2015-01-18,"YB","A","6","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2015-01-18_YB-Aq7",2015-01-18,2015-01-18,"YB","A","7","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","4%",""
+"2015-01-18_YB-Aq9",2015-01-18,2015-01-18,"YB","A","9","No","Nucella_ostrina","Type 9",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-01-18_YB-Aq6",2015-01-18,2015-01-18,"YB","A","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2015-01-18_YB-Aq7",2015-01-18,2015-01-18,"YB","A","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","4%",""
+"2015-01-18_YB-Aq9",2015-01-18,2015-01-18,"YB","A","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-01-18_YB-Aq6",2015-01-18,2015-01-18,"YB","A","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2015-01-18_YB-Aq7",2015-01-18,2015-01-18,"YB","A","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","4%",""
+"2015-01-18_YB-Aq9",2015-01-18,2015-01-18,"YB","A","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-01-18_YB-Aq6",2015-01-18,2015-01-18,"YB","A","6","Pp","Pollicipes_polymerus","Type 11",18,0.0875,205.714285714286,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2015-01-18_YB-Aq7",2015-01-18,2015-01-18,"YB","A","7","Pp","Pollicipes_polymerus","Type 11",83,0.0875,948.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","4%",""
+"2015-01-18_YB-Aq9",2015-01-18,2015-01-18,"YB","A","9","Pp","Pollicipes_polymerus","Type 11",87,0.0875,994.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-01-18_YB-Aq6",2015-01-18,2015-01-18,"YB","A","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2015-01-18_YB-Aq7",2015-01-18,2015-01-18,"YB","A","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","4%",""
+"2015-01-18_YB-Aq9",2015-01-18,2015-01-18,"YB","A","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-01-18_YB-Aq6",2015-01-18,2015-01-18,"YB","A","6","Sc","Semibalanus_cariosus","Type 5",3,0.0875,34.2857142857143,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2015-01-18_YB-Aq7",2015-01-18,2015-01-18,"YB","A","7","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","4%",""
+"2015-01-18_YB-Aq9",2015-01-18,2015-01-18,"YB","A","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-01-18_YB-Aq6",2015-01-18,2015-01-18,"YB","A","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%",""
+"2015-01-18_YB-Aq7",2015-01-18,2015-01-18,"YB","A","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","4%",""
+"2015-01-18_YB-Aq9",2015-01-18,2015-01-18,"YB","A","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-01-18_YB-ABq1",2015-01-18,2015-01-18,"YB","AB","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2015-01-18_YB-ABq2",2015-01-18,2015-01-18,"YB","AB","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","15%",""
+"2015-01-18_YB-ABq4",2015-01-18,2015-01-18,"YB","AB","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-01-18_YB-ABq1",2015-01-18,2015-01-18,"YB","AB","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2015-01-18_YB-ABq2",2015-01-18,2015-01-18,"YB","AB","2","Ae","Anemones","Type 14",22,0.0875,251.428571428571,NA,"Beatriz Vaca","Finished","Cropped","Full","15%",""
+"2015-01-18_YB-ABq4",2015-01-18,2015-01-18,"YB","AB","4","Ae","Anemones","Type 14",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-01-18_YB-ABq1",2015-01-18,2015-01-18,"YB","AB","1","Bg","Balanus_glandula","Type 1",148,0.015625,9472,"c","Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2015-01-18_YB-ABq2",2015-01-18,2015-01-18,"YB","AB","2","Bg","Balanus_glandula","Type 1",189,0.0875,2160,NA,"Beatriz Vaca","Finished","Cropped","Full","15%",""
+"2015-01-18_YB-ABq4",2015-01-18,2015-01-18,"YB","AB","4","Bg","Balanus_glandula","Type 1",312,0.015625,19968,"c","Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-01-18_YB-ABq1",2015-01-18,2015-01-18,"YB","AB","1","BgD","Balanus_glandula_(dead)","Type 2",22,0.015625,1408,"c","Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2015-01-18_YB-ABq2",2015-01-18,2015-01-18,"YB","AB","2","BgD","Balanus_glandula_(dead)","Type 2",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Cropped","Full","15%",""
+"2015-01-18_YB-ABq4",2015-01-18,2015-01-18,"YB","AB","4","BgD","Balanus_glandula_(dead)","Type 2",29,0.015625,1856,"c","Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-01-18_YB-ABq1",2015-01-18,2015-01-18,"YB","AB","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2015-01-18_YB-ABq2",2015-01-18,2015-01-18,"YB","AB","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","15%",""
+"2015-01-18_YB-ABq4",2015-01-18,2015-01-18,"YB","AB","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-01-18_YB-ABq1",2015-01-18,2015-01-18,"YB","AB","1","Cth","Chthamalus_dalli","Type 3",29,0.015625,1856,"c","Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2015-01-18_YB-ABq2",2015-01-18,2015-01-18,"YB","AB","2","Cth","Chthamalus_dalli","Type 3",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Cropped","Full","15%",""
+"2015-01-18_YB-ABq4",2015-01-18,2015-01-18,"YB","AB","4","Cth","Chthamalus_dalli","Type 3",65,0.015625,4160,"c","Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-01-18_YB-ABq1",2015-01-18,2015-01-18,"YB","AB","1","CthD","Chthamalus_dalli (dead)","Type 4",1,0.015625,64,"c","Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2015-01-18_YB-ABq2",2015-01-18,2015-01-18,"YB","AB","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","15%",""
+"2015-01-18_YB-ABq4",2015-01-18,2015-01-18,"YB","AB","4","CthD","Chthamalus_dalli (dead)","Type 4",3,0.015625,192,"c","Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-01-18_YB-ABq1",2015-01-18,2015-01-18,"YB","AB","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2015-01-18_YB-ABq2",2015-01-18,2015-01-18,"YB","AB","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","15%",""
+"2015-01-18_YB-ABq4",2015-01-18,2015-01-18,"YB","AB","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-01-18_YB-ABq1",2015-01-18,2015-01-18,"YB","AB","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2015-01-18_YB-ABq2",2015-01-18,2015-01-18,"YB","AB","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","15%",""
+"2015-01-18_YB-ABq4",2015-01-18,2015-01-18,"YB","AB","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-01-18_YB-ABq1",2015-01-18,2015-01-18,"YB","AB","1","Lim","Limpets","Type 12",59,0.0875,674.285714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2015-01-18_YB-ABq2",2015-01-18,2015-01-18,"YB","AB","2","Lim","Limpets","Type 12",49,0.0875,560,NA,"Beatriz Vaca","Finished","Cropped","Full","15%",""
+"2015-01-18_YB-ABq4",2015-01-18,2015-01-18,"YB","AB","4","Lim","Limpets","Type 12",113,0.0875,1291.42857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-01-18_YB-ABq1",2015-01-18,2015-01-18,"YB","AB","1","Ls","Littorina_sitkana","Type 13",11,0.0875,125.714285714286,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2015-01-18_YB-ABq2",2015-01-18,2015-01-18,"YB","AB","2","Ls","Littorina_sitkana","Type 13",38,0.0875,434.285714285714,NA,"Beatriz Vaca","Finished","Cropped","Full","15%",""
+"2015-01-18_YB-ABq4",2015-01-18,2015-01-18,"YB","AB","4","Ls","Littorina_sitkana","Type 13",174,0.0875,1988.57142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-01-18_YB-ABq1",2015-01-18,2015-01-18,"YB","AB","1","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2015-01-18_YB-ABq2",2015-01-18,2015-01-18,"YB","AB","2","Mc","Mytilus_californianus","Type 17",4,0.015625,256,"c","Beatriz Vaca","Finished","Cropped","Full","15%",""
+"2015-01-18_YB-ABq4",2015-01-18,2015-01-18,"YB","AB","4","Mc","Mytilus_californianus","Type 17",62,0.0875,708.571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-01-18_YB-ABq1",2015-01-18,2015-01-18,"YB","AB","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2015-01-18_YB-ABq2",2015-01-18,2015-01-18,"YB","AB","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","15%",""
+"2015-01-18_YB-ABq4",2015-01-18,2015-01-18,"YB","AB","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-01-18_YB-ABq1",2015-01-18,2015-01-18,"YB","AB","1","Myt","Mytilus_spp","Type 7",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2015-01-18_YB-ABq2",2015-01-18,2015-01-18,"YB","AB","2","Myt","Mytilus_spp","Type 7",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","15%",""
+"2015-01-18_YB-ABq4",2015-01-18,2015-01-18,"YB","AB","4","Myt","Mytilus_spp","Type 7",10,0.0875,114.285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-01-18_YB-ABq1",2015-01-18,2015-01-18,"YB","AB","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2015-01-18_YB-ABq2",2015-01-18,2015-01-18,"YB","AB","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","15%",""
+"2015-01-18_YB-ABq4",2015-01-18,2015-01-18,"YB","AB","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-01-18_YB-ABq1",2015-01-18,2015-01-18,"YB","AB","1","Mt","Mytilus_trossulus","Type 15",272,0.015625,17408,"c","Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2015-01-18_YB-ABq2",2015-01-18,2015-01-18,"YB","AB","2","Mt","Mytilus_trossulus","Type 15",309,0.015625,19776,"c","Beatriz Vaca","Finished","Cropped","Full","15%",""
+"2015-01-18_YB-ABq4",2015-01-18,2015-01-18,"YB","AB","4","Mt","Mytilus_trossulus","Type 15",1123,0.0875,12834.2857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-01-18_YB-ABq1",2015-01-18,2015-01-18,"YB","AB","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2015-01-18_YB-ABq2",2015-01-18,2015-01-18,"YB","AB","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","15%",""
+"2015-01-18_YB-ABq4",2015-01-18,2015-01-18,"YB","AB","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-01-18_YB-ABq1",2015-01-18,2015-01-18,"YB","AB","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2015-01-18_YB-ABq2",2015-01-18,2015-01-18,"YB","AB","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","15%",""
+"2015-01-18_YB-ABq4",2015-01-18,2015-01-18,"YB","AB","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-01-18_YB-ABq1",2015-01-18,2015-01-18,"YB","AB","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2015-01-18_YB-ABq2",2015-01-18,2015-01-18,"YB","AB","2","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Cropped","Full","15%",""
+"2015-01-18_YB-ABq4",2015-01-18,2015-01-18,"YB","AB","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-01-18_YB-ABq1",2015-01-18,2015-01-18,"YB","AB","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2015-01-18_YB-ABq2",2015-01-18,2015-01-18,"YB","AB","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","15%",""
+"2015-01-18_YB-ABq4",2015-01-18,2015-01-18,"YB","AB","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-01-18_YB-ABq1",2015-01-18,2015-01-18,"YB","AB","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2015-01-18_YB-ABq2",2015-01-18,2015-01-18,"YB","AB","2","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Cropped","Full","15%",""
+"2015-01-18_YB-ABq4",2015-01-18,2015-01-18,"YB","AB","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-01-18_YB-ABq1",2015-01-18,2015-01-18,"YB","AB","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2015-01-18_YB-ABq2",2015-01-18,2015-01-18,"YB","AB","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","15%",""
+"2015-01-18_YB-ABq4",2015-01-18,2015-01-18,"YB","AB","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-01-18_YB-ABq1",2015-01-18,2015-01-18,"YB","AB","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2015-01-18_YB-ABq2",2015-01-18,2015-01-18,"YB","AB","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","15%",""
+"2015-01-18_YB-ABq4",2015-01-18,2015-01-18,"YB","AB","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-01-18_YB-ABq1",2015-01-18,2015-01-18,"YB","AB","1","Pp","Pollicipes_polymerus","Type 11",387,0.0875,4422.85714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2015-01-18_YB-ABq2",2015-01-18,2015-01-18,"YB","AB","2","Pp","Pollicipes_polymerus","Type 11",244,0.0875,2788.57142857143,NA,"Beatriz Vaca","Finished","Cropped","Full","15%",""
+"2015-01-18_YB-ABq4",2015-01-18,2015-01-18,"YB","AB","4","Pp","Pollicipes_polymerus","Type 11",153,0.0875,1748.57142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-01-18_YB-ABq1",2015-01-18,2015-01-18,"YB","AB","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2015-01-18_YB-ABq2",2015-01-18,2015-01-18,"YB","AB","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","15%",""
+"2015-01-18_YB-ABq4",2015-01-18,2015-01-18,"YB","AB","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-01-18_YB-ABq1",2015-01-18,2015-01-18,"YB","AB","1","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2015-01-18_YB-ABq2",2015-01-18,2015-01-18,"YB","AB","2","Sc","Semibalanus_cariosus","Type 5",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Cropped","Full","15%",""
+"2015-01-18_YB-ABq4",2015-01-18,2015-01-18,"YB","AB","4","Sc","Semibalanus_cariosus","Type 5",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-01-18_YB-ABq1",2015-01-18,2015-01-18,"YB","AB","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2015-01-18_YB-ABq2",2015-01-18,2015-01-18,"YB","AB","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","15%",""
+"2015-01-18_YB-ABq4",2015-01-18,2015-01-18,"YB","AB","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-01-18_YB-ACq4",2015-01-18,2015-01-18,"YB","AC","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Counts likely low because picture is very blurry."
+"2015-01-18_YB-ACq7",2015-01-18,2015-01-18,"YB","AC","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare and algae cover."
+"2015-01-18_YB-ACq8",2015-01-18,2015-01-18,"YB","AC","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low due to glare and blur."
+"2015-01-18_YB-ACq4",2015-01-18,2015-01-18,"YB","AC","4","Ae","Anemones","Type 14",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Counts likely low because picture is very blurry."
+"2015-01-18_YB-ACq7",2015-01-18,2015-01-18,"YB","AC","7","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare and algae cover."
+"2015-01-18_YB-ACq8",2015-01-18,2015-01-18,"YB","AC","8","Ae","Anemones","Type 14",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low due to glare and blur."
+"2015-01-18_YB-ACq4",2015-01-18,2015-01-18,"YB","AC","4","Bg","Balanus_glandula","Type 1",556,0.015625,35584,"c","Beatriz Vaca","Finished","Full","Cropped","5%","Counts likely low because picture is very blurry."
+"2015-01-18_YB-ACq7",2015-01-18,2015-01-18,"YB","AC","7","Bg","Balanus_glandula","Type 1",2001,0.0875,22868.5714285714,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare and algae cover."
+"2015-01-18_YB-ACq8",2015-01-18,2015-01-18,"YB","AC","8","Bg","Balanus_glandula","Type 1",432,0.015625,27648,"c","Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low due to glare and blur."
+"2015-01-18_YB-ACq4",2015-01-18,2015-01-18,"YB","AC","4","BgD","Balanus_glandula_(dead)","Type 2",25,0.015625,1600,"c","Beatriz Vaca","Finished","Full","Cropped","5%","Counts likely low because picture is very blurry."
+"2015-01-18_YB-ACq7",2015-01-18,2015-01-18,"YB","AC","7","BgD","Balanus_glandula_(dead)","Type 2",110,0.0875,1257.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare and algae cover."
+"2015-01-18_YB-ACq8",2015-01-18,2015-01-18,"YB","AC","8","BgD","Balanus_glandula_(dead)","Type 2",56,0.015625,3584,"c","Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low due to glare and blur."
+"2015-01-18_YB-ACq4",2015-01-18,2015-01-18,"YB","AC","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Counts likely low because picture is very blurry."
+"2015-01-18_YB-ACq7",2015-01-18,2015-01-18,"YB","AC","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare and algae cover."
+"2015-01-18_YB-ACq8",2015-01-18,2015-01-18,"YB","AC","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low due to glare and blur."
+"2015-01-18_YB-ACq4",2015-01-18,2015-01-18,"YB","AC","4","Cth","Chthamalus_dalli","Type 3",33,0.015625,2112,"c","Beatriz Vaca","Finished","Full","Cropped","5%","Counts likely low because picture is very blurry."
+"2015-01-18_YB-ACq7",2015-01-18,2015-01-18,"YB","AC","7","Cth","Chthamalus_dalli","Type 3",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare and algae cover."
+"2015-01-18_YB-ACq8",2015-01-18,2015-01-18,"YB","AC","8","Cth","Chthamalus_dalli","Type 3",1,0.015625,64,"c","Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low due to glare and blur."
+"2015-01-18_YB-ACq4",2015-01-18,2015-01-18,"YB","AC","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","5%","Counts likely low because picture is very blurry."
+"2015-01-18_YB-ACq7",2015-01-18,2015-01-18,"YB","AC","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare and algae cover."
+"2015-01-18_YB-ACq8",2015-01-18,2015-01-18,"YB","AC","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low due to glare and blur."
+"2015-01-18_YB-ACq4",2015-01-18,2015-01-18,"YB","AC","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Counts likely low because picture is very blurry."
+"2015-01-18_YB-ACq7",2015-01-18,2015-01-18,"YB","AC","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare and algae cover."
+"2015-01-18_YB-ACq8",2015-01-18,2015-01-18,"YB","AC","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low due to glare and blur."
+"2015-01-18_YB-ACq4",2015-01-18,2015-01-18,"YB","AC","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Counts likely low because picture is very blurry."
+"2015-01-18_YB-ACq7",2015-01-18,2015-01-18,"YB","AC","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare and algae cover."
+"2015-01-18_YB-ACq8",2015-01-18,2015-01-18,"YB","AC","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low due to glare and blur."
+"2015-01-18_YB-ACq4",2015-01-18,2015-01-18,"YB","AC","4","Lim","Limpets","Type 12",190,0.0875,2171.42857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Counts likely low because picture is very blurry."
+"2015-01-18_YB-ACq7",2015-01-18,2015-01-18,"YB","AC","7","Lim","Limpets","Type 12",9,0.0875,102.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare and algae cover."
+"2015-01-18_YB-ACq8",2015-01-18,2015-01-18,"YB","AC","8","Lim","Limpets","Type 12",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low due to glare and blur."
+"2015-01-18_YB-ACq4",2015-01-18,2015-01-18,"YB","AC","4","Ls","Littorina_sitkana","Type 13",296,0.0875,3382.85714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Counts likely low because picture is very blurry."
+"2015-01-18_YB-ACq7",2015-01-18,2015-01-18,"YB","AC","7","Ls","Littorina_sitkana","Type 13",701,0.0875,8011.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare and algae cover."
+"2015-01-18_YB-ACq8",2015-01-18,2015-01-18,"YB","AC","8","Ls","Littorina_sitkana","Type 13",478,0.0875,5462.85714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low due to glare and blur."
+"2015-01-18_YB-ACq4",2015-01-18,2015-01-18,"YB","AC","4","Mc","Mytilus_californianus","Type 17",10,0.0875,114.285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Counts likely low because picture is very blurry."
+"2015-01-18_YB-ACq7",2015-01-18,2015-01-18,"YB","AC","7","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare and algae cover."
+"2015-01-18_YB-ACq8",2015-01-18,2015-01-18,"YB","AC","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low due to glare and blur."
+"2015-01-18_YB-ACq4",2015-01-18,2015-01-18,"YB","AC","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Counts likely low because picture is very blurry."
+"2015-01-18_YB-ACq7",2015-01-18,2015-01-18,"YB","AC","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare and algae cover."
+"2015-01-18_YB-ACq8",2015-01-18,2015-01-18,"YB","AC","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low due to glare and blur."
+"2015-01-18_YB-ACq4",2015-01-18,2015-01-18,"YB","AC","4","Myt","Mytilus_spp","Type 7",391,0.0875,4468.57142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Counts likely low because picture is very blurry."
+"2015-01-18_YB-ACq7",2015-01-18,2015-01-18,"YB","AC","7","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare and algae cover."
+"2015-01-18_YB-ACq8",2015-01-18,2015-01-18,"YB","AC","8","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low due to glare and blur."
+"2015-01-18_YB-ACq4",2015-01-18,2015-01-18,"YB","AC","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Counts likely low because picture is very blurry."
+"2015-01-18_YB-ACq7",2015-01-18,2015-01-18,"YB","AC","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare and algae cover."
+"2015-01-18_YB-ACq8",2015-01-18,2015-01-18,"YB","AC","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low due to glare and blur."
+"2015-01-18_YB-ACq4",2015-01-18,2015-01-18,"YB","AC","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Counts likely low because picture is very blurry."
+"2015-01-18_YB-ACq7",2015-01-18,2015-01-18,"YB","AC","7","Mt","Mytilus_trossulus","Type 15",320,0.0875,3657.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare and algae cover."
+"2015-01-18_YB-ACq8",2015-01-18,2015-01-18,"YB","AC","8","Mt","Mytilus_trossulus","Type 15",611,0.0875,6982.85714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low due to glare and blur."
+"2015-01-18_YB-ACq4",2015-01-18,2015-01-18,"YB","AC","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Counts likely low because picture is very blurry."
+"2015-01-18_YB-ACq7",2015-01-18,2015-01-18,"YB","AC","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare and algae cover."
+"2015-01-18_YB-ACq8",2015-01-18,2015-01-18,"YB","AC","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low due to glare and blur."
+"2015-01-18_YB-ACq4",2015-01-18,2015-01-18,"YB","AC","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Counts likely low because picture is very blurry."
+"2015-01-18_YB-ACq7",2015-01-18,2015-01-18,"YB","AC","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare and algae cover."
+"2015-01-18_YB-ACq8",2015-01-18,2015-01-18,"YB","AC","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low due to glare and blur."
+"2015-01-18_YB-ACq4",2015-01-18,2015-01-18,"YB","AC","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Counts likely low because picture is very blurry."
+"2015-01-18_YB-ACq7",2015-01-18,2015-01-18,"YB","AC","7","Nc","Nucella_canaliculata","Type 10",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare and algae cover."
+"2015-01-18_YB-ACq8",2015-01-18,2015-01-18,"YB","AC","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low due to glare and blur."
+"2015-01-18_YB-ACq4",2015-01-18,2015-01-18,"YB","AC","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Counts likely low because picture is very blurry."
+"2015-01-18_YB-ACq7",2015-01-18,2015-01-18,"YB","AC","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare and algae cover."
+"2015-01-18_YB-ACq8",2015-01-18,2015-01-18,"YB","AC","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low due to glare and blur."
+"2015-01-18_YB-ACq4",2015-01-18,2015-01-18,"YB","AC","4","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Counts likely low because picture is very blurry."
+"2015-01-18_YB-ACq7",2015-01-18,2015-01-18,"YB","AC","7","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare and algae cover."
+"2015-01-18_YB-ACq8",2015-01-18,2015-01-18,"YB","AC","8","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low due to glare and blur."
+"2015-01-18_YB-ACq4",2015-01-18,2015-01-18,"YB","AC","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Counts likely low because picture is very blurry."
+"2015-01-18_YB-ACq7",2015-01-18,2015-01-18,"YB","AC","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare and algae cover."
+"2015-01-18_YB-ACq8",2015-01-18,2015-01-18,"YB","AC","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low due to glare and blur."
+"2015-01-18_YB-ACq4",2015-01-18,2015-01-18,"YB","AC","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Counts likely low because picture is very blurry."
+"2015-01-18_YB-ACq7",2015-01-18,2015-01-18,"YB","AC","7","Pis","Pisaster","Type 21",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare and algae cover."
+"2015-01-18_YB-ACq8",2015-01-18,2015-01-18,"YB","AC","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low due to glare and blur."
+"2015-01-18_YB-ACq4",2015-01-18,2015-01-18,"YB","AC","4","Pp","Pollicipes_polymerus","Type 11",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Counts likely low because picture is very blurry."
+"2015-01-18_YB-ACq7",2015-01-18,2015-01-18,"YB","AC","7","Pp","Pollicipes_polymerus","Type 11",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare and algae cover."
+"2015-01-18_YB-ACq8",2015-01-18,2015-01-18,"YB","AC","8","Pp","Pollicipes_polymerus","Type 11",60,0.0875,685.714285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low due to glare and blur."
+"2015-01-18_YB-ACq4",2015-01-18,2015-01-18,"YB","AC","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Counts likely low because picture is very blurry."
+"2015-01-18_YB-ACq7",2015-01-18,2015-01-18,"YB","AC","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare and algae cover."
+"2015-01-18_YB-ACq8",2015-01-18,2015-01-18,"YB","AC","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low due to glare and blur."
+"2015-01-18_YB-ACq4",2015-01-18,2015-01-18,"YB","AC","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Counts likely low because picture is very blurry."
+"2015-01-18_YB-ACq7",2015-01-18,2015-01-18,"YB","AC","7","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare and algae cover."
+"2015-01-18_YB-ACq8",2015-01-18,2015-01-18,"YB","AC","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low due to glare and blur."
+"2015-01-18_YB-ACq4",2015-01-18,2015-01-18,"YB","AC","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%","Counts likely low because picture is very blurry."
+"2015-01-18_YB-ACq7",2015-01-18,2015-01-18,"YB","AC","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare and algae cover."
+"2015-01-18_YB-ACq8",2015-01-18,2015-01-18,"YB","AC","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","1%","Counts likely low due to glare and blur."
+"2015-01-18_YB-ADq1",2015-01-18,2015-01-18,"YB","AD","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to blur and algae cover."
+"2015-01-18_YB-ADq5",2015-01-18,2015-01-18,"YB","AD","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare, blur, and algae cover."
+"2015-01-18_YB-ADq8",2015-01-18,2015-01-18,"YB","AD","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-01-18_YB-ADq1",2015-01-18,2015-01-18,"YB","AD","1","Ae","Anemones","Type 14",16,0.0875,182.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to blur and algae cover."
+"2015-01-18_YB-ADq5",2015-01-18,2015-01-18,"YB","AD","5","Ae","Anemones","Type 14",25,0.0875,285.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare, blur, and algae cover."
+"2015-01-18_YB-ADq8",2015-01-18,2015-01-18,"YB","AD","8","Ae","Anemones","Type 14",48,0.0875,548.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-01-18_YB-ADq1",2015-01-18,2015-01-18,"YB","AD","1","Bg","Balanus_glandula","Type 1",237,0.0875,2708.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to blur and algae cover."
+"2015-01-18_YB-ADq5",2015-01-18,2015-01-18,"YB","AD","5","Bg","Balanus_glandula","Type 1",225,0.0875,2571.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare, blur, and algae cover."
+"2015-01-18_YB-ADq8",2015-01-18,2015-01-18,"YB","AD","8","Bg","Balanus_glandula","Type 1",498,0.0875,5691.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-01-18_YB-ADq1",2015-01-18,2015-01-18,"YB","AD","1","BgD","Balanus_glandula_(dead)","Type 2",24,0.0875,274.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to blur and algae cover."
+"2015-01-18_YB-ADq5",2015-01-18,2015-01-18,"YB","AD","5","BgD","Balanus_glandula_(dead)","Type 2",28,0.0875,320,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare, blur, and algae cover."
+"2015-01-18_YB-ADq8",2015-01-18,2015-01-18,"YB","AD","8","BgD","Balanus_glandula_(dead)","Type 2",21,0.0875,240,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-01-18_YB-ADq1",2015-01-18,2015-01-18,"YB","AD","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to blur and algae cover."
+"2015-01-18_YB-ADq5",2015-01-18,2015-01-18,"YB","AD","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare, blur, and algae cover."
+"2015-01-18_YB-ADq8",2015-01-18,2015-01-18,"YB","AD","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-01-18_YB-ADq1",2015-01-18,2015-01-18,"YB","AD","1","Cth","Chthamalus_dalli","Type 3",53,0.0875,605.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to blur and algae cover."
+"2015-01-18_YB-ADq5",2015-01-18,2015-01-18,"YB","AD","5","Cth","Chthamalus_dalli","Type 3",25,0.0875,285.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare, blur, and algae cover."
+"2015-01-18_YB-ADq8",2015-01-18,2015-01-18,"YB","AD","8","Cth","Chthamalus_dalli","Type 3",77,0.0875,880,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-01-18_YB-ADq1",2015-01-18,2015-01-18,"YB","AD","1","CthD","Chthamalus_dalli (dead)","Type 4",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to blur and algae cover."
+"2015-01-18_YB-ADq5",2015-01-18,2015-01-18,"YB","AD","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare, blur, and algae cover."
+"2015-01-18_YB-ADq8",2015-01-18,2015-01-18,"YB","AD","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-01-18_YB-ADq1",2015-01-18,2015-01-18,"YB","AD","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to blur and algae cover."
+"2015-01-18_YB-ADq5",2015-01-18,2015-01-18,"YB","AD","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare, blur, and algae cover."
+"2015-01-18_YB-ADq8",2015-01-18,2015-01-18,"YB","AD","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-01-18_YB-ADq1",2015-01-18,2015-01-18,"YB","AD","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to blur and algae cover."
+"2015-01-18_YB-ADq5",2015-01-18,2015-01-18,"YB","AD","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare, blur, and algae cover."
+"2015-01-18_YB-ADq8",2015-01-18,2015-01-18,"YB","AD","8","Lep","Leptasterias","Type 20",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-01-18_YB-ADq1",2015-01-18,2015-01-18,"YB","AD","1","Lim","Limpets","Type 12",91,0.0875,1040,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to blur and algae cover."
+"2015-01-18_YB-ADq5",2015-01-18,2015-01-18,"YB","AD","5","Lim","Limpets","Type 12",100,0.0875,1142.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare, blur, and algae cover."
+"2015-01-18_YB-ADq8",2015-01-18,2015-01-18,"YB","AD","8","Lim","Limpets","Type 12",276,0.0875,3154.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-01-18_YB-ADq1",2015-01-18,2015-01-18,"YB","AD","1","Ls","Littorina_sitkana","Type 13",38,0.0875,434.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to blur and algae cover."
+"2015-01-18_YB-ADq5",2015-01-18,2015-01-18,"YB","AD","5","Ls","Littorina_sitkana","Type 13",67,0.0875,765.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare, blur, and algae cover."
+"2015-01-18_YB-ADq8",2015-01-18,2015-01-18,"YB","AD","8","Ls","Littorina_sitkana","Type 13",90,0.0875,1028.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-01-18_YB-ADq1",2015-01-18,2015-01-18,"YB","AD","1","Mc","Mytilus_californianus","Type 17",9,0.0875,102.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to blur and algae cover."
+"2015-01-18_YB-ADq5",2015-01-18,2015-01-18,"YB","AD","5","Mc","Mytilus_californianus","Type 17",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare, blur, and algae cover."
+"2015-01-18_YB-ADq8",2015-01-18,2015-01-18,"YB","AD","8","Mc","Mytilus_californianus","Type 17",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-01-18_YB-ADq1",2015-01-18,2015-01-18,"YB","AD","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to blur and algae cover."
+"2015-01-18_YB-ADq5",2015-01-18,2015-01-18,"YB","AD","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare, blur, and algae cover."
+"2015-01-18_YB-ADq8",2015-01-18,2015-01-18,"YB","AD","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-01-18_YB-ADq1",2015-01-18,2015-01-18,"YB","AD","1","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to blur and algae cover."
+"2015-01-18_YB-ADq5",2015-01-18,2015-01-18,"YB","AD","5","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare, blur, and algae cover."
+"2015-01-18_YB-ADq8",2015-01-18,2015-01-18,"YB","AD","8","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-01-18_YB-ADq1",2015-01-18,2015-01-18,"YB","AD","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to blur and algae cover."
+"2015-01-18_YB-ADq5",2015-01-18,2015-01-18,"YB","AD","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare, blur, and algae cover."
+"2015-01-18_YB-ADq8",2015-01-18,2015-01-18,"YB","AD","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-01-18_YB-ADq1",2015-01-18,2015-01-18,"YB","AD","1","Mt","Mytilus_trossulus","Type 15",482,0.0875,5508.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to blur and algae cover."
+"2015-01-18_YB-ADq5",2015-01-18,2015-01-18,"YB","AD","5","Mt","Mytilus_trossulus","Type 15",646,0.0875,7382.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare, blur, and algae cover."
+"2015-01-18_YB-ADq8",2015-01-18,2015-01-18,"YB","AD","8","Mt","Mytilus_trossulus","Type 15",636,0.0875,7268.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-01-18_YB-ADq1",2015-01-18,2015-01-18,"YB","AD","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to blur and algae cover."
+"2015-01-18_YB-ADq5",2015-01-18,2015-01-18,"YB","AD","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare, blur, and algae cover."
+"2015-01-18_YB-ADq8",2015-01-18,2015-01-18,"YB","AD","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-01-18_YB-ADq1",2015-01-18,2015-01-18,"YB","AD","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to blur and algae cover."
+"2015-01-18_YB-ADq5",2015-01-18,2015-01-18,"YB","AD","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare, blur, and algae cover."
+"2015-01-18_YB-ADq8",2015-01-18,2015-01-18,"YB","AD","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-01-18_YB-ADq1",2015-01-18,2015-01-18,"YB","AD","1","Nc","Nucella_canaliculata","Type 10",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to blur and algae cover."
+"2015-01-18_YB-ADq5",2015-01-18,2015-01-18,"YB","AD","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare, blur, and algae cover."
+"2015-01-18_YB-ADq8",2015-01-18,2015-01-18,"YB","AD","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-01-18_YB-ADq1",2015-01-18,2015-01-18,"YB","AD","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to blur and algae cover."
+"2015-01-18_YB-ADq5",2015-01-18,2015-01-18,"YB","AD","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare, blur, and algae cover."
+"2015-01-18_YB-ADq8",2015-01-18,2015-01-18,"YB","AD","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-01-18_YB-ADq1",2015-01-18,2015-01-18,"YB","AD","1","No","Nucella_ostrina","Type 9",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to blur and algae cover."
+"2015-01-18_YB-ADq5",2015-01-18,2015-01-18,"YB","AD","5","No","Nucella_ostrina","Type 9",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare, blur, and algae cover."
+"2015-01-18_YB-ADq8",2015-01-18,2015-01-18,"YB","AD","8","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-01-18_YB-ADq1",2015-01-18,2015-01-18,"YB","AD","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to blur and algae cover."
+"2015-01-18_YB-ADq5",2015-01-18,2015-01-18,"YB","AD","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare, blur, and algae cover."
+"2015-01-18_YB-ADq8",2015-01-18,2015-01-18,"YB","AD","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-01-18_YB-ADq1",2015-01-18,2015-01-18,"YB","AD","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to blur and algae cover."
+"2015-01-18_YB-ADq5",2015-01-18,2015-01-18,"YB","AD","5","Pis","Pisaster","Type 21",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare, blur, and algae cover."
+"2015-01-18_YB-ADq8",2015-01-18,2015-01-18,"YB","AD","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-01-18_YB-ADq1",2015-01-18,2015-01-18,"YB","AD","1","Pp","Pollicipes_polymerus","Type 11",22,0.0875,251.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to blur and algae cover."
+"2015-01-18_YB-ADq5",2015-01-18,2015-01-18,"YB","AD","5","Pp","Pollicipes_polymerus","Type 11",142,0.0875,1622.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare, blur, and algae cover."
+"2015-01-18_YB-ADq8",2015-01-18,2015-01-18,"YB","AD","8","Pp","Pollicipes_polymerus","Type 11",11,0.0875,125.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-01-18_YB-ADq1",2015-01-18,2015-01-18,"YB","AD","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to blur and algae cover."
+"2015-01-18_YB-ADq5",2015-01-18,2015-01-18,"YB","AD","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare, blur, and algae cover."
+"2015-01-18_YB-ADq8",2015-01-18,2015-01-18,"YB","AD","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-01-18_YB-ADq1",2015-01-18,2015-01-18,"YB","AD","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to blur and algae cover."
+"2015-01-18_YB-ADq5",2015-01-18,2015-01-18,"YB","AD","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare, blur, and algae cover."
+"2015-01-18_YB-ADq8",2015-01-18,2015-01-18,"YB","AD","8","Sc","Semibalanus_cariosus","Type 5",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-01-18_YB-ADq1",2015-01-18,2015-01-18,"YB","AD","1","ScD","Semibalanus_cariosus_(dead)","Type 6",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to blur and algae cover."
+"2015-01-18_YB-ADq5",2015-01-18,2015-01-18,"YB","AD","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare, blur, and algae cover."
+"2015-01-18_YB-ADq8",2015-01-18,2015-01-18,"YB","AD","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-01-18_YB-AEq1",2015-01-18,2015-01-18,"YB","AE","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to lots of glare."
+"2015-01-18_YB-AEq4",2015-01-18,2015-01-18,"YB","AE","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2015-01-18_YB-AEq8",2015-01-18,2015-01-18,"YB","AE","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-01-18_YB-AEq1",2015-01-18,2015-01-18,"YB","AE","1","Ae","Anemones","Type 14",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to lots of glare."
+"2015-01-18_YB-AEq4",2015-01-18,2015-01-18,"YB","AE","4","Ae","Anemones","Type 14",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2015-01-18_YB-AEq8",2015-01-18,2015-01-18,"YB","AE","8","Ae","Anemones","Type 14",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-01-18_YB-AEq1",2015-01-18,2015-01-18,"YB","AE","1","Bg","Balanus_glandula","Type 1",629,0.0875,7188.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to lots of glare."
+"2015-01-18_YB-AEq4",2015-01-18,2015-01-18,"YB","AE","4","Bg","Balanus_glandula","Type 1",252,0.015625,16128,"c","Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2015-01-18_YB-AEq8",2015-01-18,2015-01-18,"YB","AE","8","Bg","Balanus_glandula","Type 1",1187,0.0875,13565.7142857143,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-01-18_YB-AEq1",2015-01-18,2015-01-18,"YB","AE","1","BgD","Balanus_glandula_(dead)","Type 2",21,0.0875,240,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to lots of glare."
+"2015-01-18_YB-AEq4",2015-01-18,2015-01-18,"YB","AE","4","BgD","Balanus_glandula_(dead)","Type 2",12,0.015625,768,"c","Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2015-01-18_YB-AEq8",2015-01-18,2015-01-18,"YB","AE","8","BgD","Balanus_glandula_(dead)","Type 2",27,0.0875,308.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-01-18_YB-AEq1",2015-01-18,2015-01-18,"YB","AE","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to lots of glare."
+"2015-01-18_YB-AEq4",2015-01-18,2015-01-18,"YB","AE","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2015-01-18_YB-AEq8",2015-01-18,2015-01-18,"YB","AE","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-01-18_YB-AEq1",2015-01-18,2015-01-18,"YB","AE","1","Cth","Chthamalus_dalli","Type 3",60,0.0875,685.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to lots of glare."
+"2015-01-18_YB-AEq4",2015-01-18,2015-01-18,"YB","AE","4","Cth","Chthamalus_dalli","Type 3",62,0.015625,3968,"c","Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2015-01-18_YB-AEq8",2015-01-18,2015-01-18,"YB","AE","8","Cth","Chthamalus_dalli","Type 3",67,0.0875,765.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-01-18_YB-AEq1",2015-01-18,2015-01-18,"YB","AE","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to lots of glare."
+"2015-01-18_YB-AEq4",2015-01-18,2015-01-18,"YB","AE","4","CthD","Chthamalus_dalli (dead)","Type 4",1,0.015625,64,"c","Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2015-01-18_YB-AEq8",2015-01-18,2015-01-18,"YB","AE","8","CthD","Chthamalus_dalli (dead)","Type 4",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-01-18_YB-AEq1",2015-01-18,2015-01-18,"YB","AE","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to lots of glare."
+"2015-01-18_YB-AEq4",2015-01-18,2015-01-18,"YB","AE","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2015-01-18_YB-AEq8",2015-01-18,2015-01-18,"YB","AE","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-01-18_YB-AEq1",2015-01-18,2015-01-18,"YB","AE","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to lots of glare."
+"2015-01-18_YB-AEq4",2015-01-18,2015-01-18,"YB","AE","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2015-01-18_YB-AEq8",2015-01-18,2015-01-18,"YB","AE","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-01-18_YB-AEq1",2015-01-18,2015-01-18,"YB","AE","1","Lim","Limpets","Type 12",41,0.0875,468.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to lots of glare."
+"2015-01-18_YB-AEq4",2015-01-18,2015-01-18,"YB","AE","4","Lim","Limpets","Type 12",167,0.0875,1908.57142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2015-01-18_YB-AEq8",2015-01-18,2015-01-18,"YB","AE","8","Lim","Limpets","Type 12",214,0.0875,2445.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-01-18_YB-AEq1",2015-01-18,2015-01-18,"YB","AE","1","Ls","Littorina_sitkana","Type 13",116,0.0875,1325.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to lots of glare."
+"2015-01-18_YB-AEq4",2015-01-18,2015-01-18,"YB","AE","4","Ls","Littorina_sitkana","Type 13",252,0.0875,2880,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2015-01-18_YB-AEq8",2015-01-18,2015-01-18,"YB","AE","8","Ls","Littorina_sitkana","Type 13",131,0.0875,1497.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-01-18_YB-AEq1",2015-01-18,2015-01-18,"YB","AE","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to lots of glare."
+"2015-01-18_YB-AEq4",2015-01-18,2015-01-18,"YB","AE","4","Mc","Mytilus_californianus","Type 17",71,0.0875,811.428571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2015-01-18_YB-AEq8",2015-01-18,2015-01-18,"YB","AE","8","Mc","Mytilus_californianus","Type 17",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-01-18_YB-AEq1",2015-01-18,2015-01-18,"YB","AE","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to lots of glare."
+"2015-01-18_YB-AEq4",2015-01-18,2015-01-18,"YB","AE","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2015-01-18_YB-AEq8",2015-01-18,2015-01-18,"YB","AE","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-01-18_YB-AEq1",2015-01-18,2015-01-18,"YB","AE","1","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to lots of glare."
+"2015-01-18_YB-AEq4",2015-01-18,2015-01-18,"YB","AE","4","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2015-01-18_YB-AEq8",2015-01-18,2015-01-18,"YB","AE","8","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-01-18_YB-AEq1",2015-01-18,2015-01-18,"YB","AE","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to lots of glare."
+"2015-01-18_YB-AEq4",2015-01-18,2015-01-18,"YB","AE","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2015-01-18_YB-AEq8",2015-01-18,2015-01-18,"YB","AE","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-01-18_YB-AEq1",2015-01-18,2015-01-18,"YB","AE","1","Mt","Mytilus_trossulus","Type 15",713,0.0875,8148.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to lots of glare."
+"2015-01-18_YB-AEq4",2015-01-18,2015-01-18,"YB","AE","4","Mt","Mytilus_trossulus","Type 15",259,0.0875,2960,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2015-01-18_YB-AEq8",2015-01-18,2015-01-18,"YB","AE","8","Mt","Mytilus_trossulus","Type 15",1190,0.0875,13600,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-01-18_YB-AEq1",2015-01-18,2015-01-18,"YB","AE","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to lots of glare."
+"2015-01-18_YB-AEq4",2015-01-18,2015-01-18,"YB","AE","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2015-01-18_YB-AEq8",2015-01-18,2015-01-18,"YB","AE","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-01-18_YB-AEq1",2015-01-18,2015-01-18,"YB","AE","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to lots of glare."
+"2015-01-18_YB-AEq4",2015-01-18,2015-01-18,"YB","AE","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2015-01-18_YB-AEq8",2015-01-18,2015-01-18,"YB","AE","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-01-18_YB-AEq1",2015-01-18,2015-01-18,"YB","AE","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to lots of glare."
+"2015-01-18_YB-AEq4",2015-01-18,2015-01-18,"YB","AE","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2015-01-18_YB-AEq8",2015-01-18,2015-01-18,"YB","AE","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-01-18_YB-AEq1",2015-01-18,2015-01-18,"YB","AE","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to lots of glare."
+"2015-01-18_YB-AEq4",2015-01-18,2015-01-18,"YB","AE","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2015-01-18_YB-AEq8",2015-01-18,2015-01-18,"YB","AE","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-01-18_YB-AEq1",2015-01-18,2015-01-18,"YB","AE","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to lots of glare."
+"2015-01-18_YB-AEq4",2015-01-18,2015-01-18,"YB","AE","4","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2015-01-18_YB-AEq8",2015-01-18,2015-01-18,"YB","AE","8","No","Nucella_ostrina","Type 9",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-01-18_YB-AEq1",2015-01-18,2015-01-18,"YB","AE","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to lots of glare."
+"2015-01-18_YB-AEq4",2015-01-18,2015-01-18,"YB","AE","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2015-01-18_YB-AEq8",2015-01-18,2015-01-18,"YB","AE","8","Wor","Other_worm spp.","Type 25",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-01-18_YB-AEq1",2015-01-18,2015-01-18,"YB","AE","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to lots of glare."
+"2015-01-18_YB-AEq4",2015-01-18,2015-01-18,"YB","AE","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2015-01-18_YB-AEq8",2015-01-18,2015-01-18,"YB","AE","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-01-18_YB-AEq1",2015-01-18,2015-01-18,"YB","AE","1","Pp","Pollicipes_polymerus","Type 11",26,0.0875,297.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to lots of glare."
+"2015-01-18_YB-AEq4",2015-01-18,2015-01-18,"YB","AE","4","Pp","Pollicipes_polymerus","Type 11",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2015-01-18_YB-AEq8",2015-01-18,2015-01-18,"YB","AE","8","Pp","Pollicipes_polymerus","Type 11",16,0.0875,182.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-01-18_YB-AEq1",2015-01-18,2015-01-18,"YB","AE","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to lots of glare."
+"2015-01-18_YB-AEq4",2015-01-18,2015-01-18,"YB","AE","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2015-01-18_YB-AEq8",2015-01-18,2015-01-18,"YB","AE","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-01-18_YB-AEq1",2015-01-18,2015-01-18,"YB","AE","1","Sc","Semibalanus_cariosus","Type 5",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to lots of glare."
+"2015-01-18_YB-AEq4",2015-01-18,2015-01-18,"YB","AE","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2015-01-18_YB-AEq8",2015-01-18,2015-01-18,"YB","AE","8","Sc","Semibalanus_cariosus","Type 5",11,0.0875,125.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-01-18_YB-AEq1",2015-01-18,2015-01-18,"YB","AE","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to lots of glare."
+"2015-01-18_YB-AEq4",2015-01-18,2015-01-18,"YB","AE","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","30%",""
+"2015-01-18_YB-AEq8",2015-01-18,2015-01-18,"YB","AE","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-01-18_YB-AFq5",2015-01-18,2015-01-18,"YB","AF","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-01-18_YB-AFq8",2015-01-18,2015-01-18,"YB","AF","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2015-01-18_YB-AFq9",2015-01-18,2015-01-18,"YB","AF","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","0%","Counts may be low due to blur"
+"2015-01-18_YB-AFq5",2015-01-18,2015-01-18,"YB","AF","5","Ae","Anemones","Type 14",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-01-18_YB-AFq8",2015-01-18,2015-01-18,"YB","AF","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2015-01-18_YB-AFq9",2015-01-18,2015-01-18,"YB","AF","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","0%","Counts may be low due to blur"
+"2015-01-18_YB-AFq5",2015-01-18,2015-01-18,"YB","AF","5","Bg","Balanus_glandula","Type 1",227,0.015625,14528,"c","Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-01-18_YB-AFq8",2015-01-18,2015-01-18,"YB","AF","8","Bg","Balanus_glandula","Type 1",2805,0.0875,32057.1428571429,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2015-01-18_YB-AFq9",2015-01-18,2015-01-18,"YB","AF","9","Bg","Balanus_glandula","Type 1",1222,0.0875,13965.7142857143,NA,"Stephanie Merhoff","Finished","Full","Full","0%","Counts may be low due to blur"
+"2015-01-18_YB-AFq5",2015-01-18,2015-01-18,"YB","AF","5","BgD","Balanus_glandula_(dead)","Type 2",12,0.015625,768,"c","Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-01-18_YB-AFq8",2015-01-18,2015-01-18,"YB","AF","8","BgD","Balanus_glandula_(dead)","Type 2",354,0.0875,4045.71428571429,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2015-01-18_YB-AFq9",2015-01-18,2015-01-18,"YB","AF","9","BgD","Balanus_glandula_(dead)","Type 2",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","0%","Counts may be low due to blur"
+"2015-01-18_YB-AFq5",2015-01-18,2015-01-18,"YB","AF","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-01-18_YB-AFq8",2015-01-18,2015-01-18,"YB","AF","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2015-01-18_YB-AFq9",2015-01-18,2015-01-18,"YB","AF","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","0%","Counts may be low due to blur"
+"2015-01-18_YB-AFq5",2015-01-18,2015-01-18,"YB","AF","5","Cth","Chthamalus_dalli","Type 3",19,0.015625,1216,"c","Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-01-18_YB-AFq8",2015-01-18,2015-01-18,"YB","AF","8","Cth","Chthamalus_dalli","Type 3",29,0.0875,331.428571428571,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2015-01-18_YB-AFq9",2015-01-18,2015-01-18,"YB","AF","9","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","0%","Counts may be low due to blur"
+"2015-01-18_YB-AFq5",2015-01-18,2015-01-18,"YB","AF","5","CthD","Chthamalus_dalli (dead)","Type 4",7,0.015625,448,"c","Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-01-18_YB-AFq8",2015-01-18,2015-01-18,"YB","AF","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2015-01-18_YB-AFq9",2015-01-18,2015-01-18,"YB","AF","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","0%","Counts may be low due to blur"
+"2015-01-18_YB-AFq5",2015-01-18,2015-01-18,"YB","AF","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-01-18_YB-AFq8",2015-01-18,2015-01-18,"YB","AF","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2015-01-18_YB-AFq9",2015-01-18,2015-01-18,"YB","AF","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","0%","Counts may be low due to blur"
+"2015-01-18_YB-AFq5",2015-01-18,2015-01-18,"YB","AF","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-01-18_YB-AFq8",2015-01-18,2015-01-18,"YB","AF","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2015-01-18_YB-AFq9",2015-01-18,2015-01-18,"YB","AF","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","0%","Counts may be low due to blur"
+"2015-01-18_YB-AFq5",2015-01-18,2015-01-18,"YB","AF","5","Lim","Limpets","Type 12",138,0.0875,1577.14285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-01-18_YB-AFq8",2015-01-18,2015-01-18,"YB","AF","8","Lim","Limpets","Type 12",2,0.0875,22.8571428571429,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2015-01-18_YB-AFq9",2015-01-18,2015-01-18,"YB","AF","9","Lim","Limpets","Type 12",7,0.0875,80,NA,"Stephanie Merhoff","Finished","Full","Full","0%","Counts may be low due to blur"
+"2015-01-18_YB-AFq5",2015-01-18,2015-01-18,"YB","AF","5","Ls","Littorina_sitkana","Type 13",132,0.0875,1508.57142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-01-18_YB-AFq8",2015-01-18,2015-01-18,"YB","AF","8","Ls","Littorina_sitkana","Type 13",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2015-01-18_YB-AFq9",2015-01-18,2015-01-18,"YB","AF","9","Ls","Littorina_sitkana","Type 13",72,0.0875,822.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","0%","Counts may be low due to blur"
+"2015-01-18_YB-AFq5",2015-01-18,2015-01-18,"YB","AF","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-01-18_YB-AFq8",2015-01-18,2015-01-18,"YB","AF","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2015-01-18_YB-AFq9",2015-01-18,2015-01-18,"YB","AF","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","0%","Counts may be low due to blur"
+"2015-01-18_YB-AFq5",2015-01-18,2015-01-18,"YB","AF","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-01-18_YB-AFq8",2015-01-18,2015-01-18,"YB","AF","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2015-01-18_YB-AFq9",2015-01-18,2015-01-18,"YB","AF","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","0%","Counts may be low due to blur"
+"2015-01-18_YB-AFq5",2015-01-18,2015-01-18,"YB","AF","5","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-01-18_YB-AFq8",2015-01-18,2015-01-18,"YB","AF","8","Myt","Mytilus_spp","Type 7",318,0.0875,3634.28571428571,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2015-01-18_YB-AFq9",2015-01-18,2015-01-18,"YB","AF","9","Myt","Mytilus_spp","Type 7",780,0.0875,8914.28571428572,NA,"Stephanie Merhoff","Finished","Full","Full","0%","Counts may be low due to blur"
+"2015-01-18_YB-AFq5",2015-01-18,2015-01-18,"YB","AF","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-01-18_YB-AFq8",2015-01-18,2015-01-18,"YB","AF","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2015-01-18_YB-AFq9",2015-01-18,2015-01-18,"YB","AF","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","0%","Counts may be low due to blur"
+"2015-01-18_YB-AFq5",2015-01-18,2015-01-18,"YB","AF","5","Mt","Mytilus_trossulus","Type 15",528,0.0875,6034.28571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-01-18_YB-AFq8",2015-01-18,2015-01-18,"YB","AF","8","Mt","Mytilus_trossulus","Type 15",149,0.0875,1702.85714285714,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2015-01-18_YB-AFq9",2015-01-18,2015-01-18,"YB","AF","9","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","0%","Counts may be low due to blur"
+"2015-01-18_YB-AFq5",2015-01-18,2015-01-18,"YB","AF","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-01-18_YB-AFq8",2015-01-18,2015-01-18,"YB","AF","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2015-01-18_YB-AFq9",2015-01-18,2015-01-18,"YB","AF","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","0%","Counts may be low due to blur"
+"2015-01-18_YB-AFq5",2015-01-18,2015-01-18,"YB","AF","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-01-18_YB-AFq8",2015-01-18,2015-01-18,"YB","AF","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2015-01-18_YB-AFq9",2015-01-18,2015-01-18,"YB","AF","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","0%","Counts may be low due to blur"
+"2015-01-18_YB-AFq5",2015-01-18,2015-01-18,"YB","AF","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-01-18_YB-AFq8",2015-01-18,2015-01-18,"YB","AF","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2015-01-18_YB-AFq9",2015-01-18,2015-01-18,"YB","AF","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","0%","Counts may be low due to blur"
+"2015-01-18_YB-AFq5",2015-01-18,2015-01-18,"YB","AF","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-01-18_YB-AFq8",2015-01-18,2015-01-18,"YB","AF","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2015-01-18_YB-AFq9",2015-01-18,2015-01-18,"YB","AF","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","0%","Counts may be low due to blur"
+"2015-01-18_YB-AFq5",2015-01-18,2015-01-18,"YB","AF","5","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-01-18_YB-AFq8",2015-01-18,2015-01-18,"YB","AF","8","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2015-01-18_YB-AFq9",2015-01-18,2015-01-18,"YB","AF","9","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","0%","Counts may be low due to blur"
+"2015-01-18_YB-AFq5",2015-01-18,2015-01-18,"YB","AF","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-01-18_YB-AFq8",2015-01-18,2015-01-18,"YB","AF","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2015-01-18_YB-AFq9",2015-01-18,2015-01-18,"YB","AF","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","0%","Counts may be low due to blur"
+"2015-01-18_YB-AFq5",2015-01-18,2015-01-18,"YB","AF","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-01-18_YB-AFq8",2015-01-18,2015-01-18,"YB","AF","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2015-01-18_YB-AFq9",2015-01-18,2015-01-18,"YB","AF","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","0%","Counts may be low due to blur"
+"2015-01-18_YB-AFq5",2015-01-18,2015-01-18,"YB","AF","5","Pp","Pollicipes_polymerus","Type 11",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-01-18_YB-AFq8",2015-01-18,2015-01-18,"YB","AF","8","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2015-01-18_YB-AFq9",2015-01-18,2015-01-18,"YB","AF","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","0%","Counts may be low due to blur"
+"2015-01-18_YB-AFq5",2015-01-18,2015-01-18,"YB","AF","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-01-18_YB-AFq8",2015-01-18,2015-01-18,"YB","AF","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2015-01-18_YB-AFq9",2015-01-18,2015-01-18,"YB","AF","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","0%","Counts may be low due to blur"
+"2015-01-18_YB-AFq5",2015-01-18,2015-01-18,"YB","AF","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-01-18_YB-AFq8",2015-01-18,2015-01-18,"YB","AF","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2015-01-18_YB-AFq9",2015-01-18,2015-01-18,"YB","AF","9","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","0%","Counts may be low due to blur"
+"2015-01-18_YB-AFq5",2015-01-18,2015-01-18,"YB","AF","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-01-18_YB-AFq8",2015-01-18,2015-01-18,"YB","AF","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2015-01-18_YB-AFq9",2015-01-18,2015-01-18,"YB","AF","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","0%","Counts may be low due to blur"
+"2015-01-18_YB-AGq2",2015-01-18,2015-01-18,"YB","AG","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","5%","Counts may be low due to poor image quality on the corners."
+"2015-01-18_YB-AGq7",2015-01-18,2015-01-18,"YB","AG","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-01-18_YB-AGq9",2015-01-18,2015-01-18,"YB","AG","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-01-18_YB-AGq2",2015-01-18,2015-01-18,"YB","AG","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","5%","Counts may be low due to poor image quality on the corners."
+"2015-01-18_YB-AGq7",2015-01-18,2015-01-18,"YB","AG","7","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-01-18_YB-AGq9",2015-01-18,2015-01-18,"YB","AG","9","Ae","Anemones","Type 14",4,0.0875,45.7142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-01-18_YB-AGq2",2015-01-18,2015-01-18,"YB","AG","2","Bg","Balanus_glandula","Type 1",1320,0.0875,15085.7142857143,NA,"Rebecca Friedrich","Finished","Full","Full","5%","Counts may be low due to poor image quality on the corners."
+"2015-01-18_YB-AGq7",2015-01-18,2015-01-18,"YB","AG","7","Bg","Balanus_glandula","Type 1",1018,0.0875,11634.2857142857,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-01-18_YB-AGq9",2015-01-18,2015-01-18,"YB","AG","9","Bg","Balanus_glandula","Type 1",615,0.0875,7028.57142857143,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-01-18_YB-AGq2",2015-01-18,2015-01-18,"YB","AG","2","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","5%","Counts may be low due to poor image quality on the corners."
+"2015-01-18_YB-AGq7",2015-01-18,2015-01-18,"YB","AG","7","BgD","Balanus_glandula_(dead)","Type 2",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-01-18_YB-AGq9",2015-01-18,2015-01-18,"YB","AG","9","BgD","Balanus_glandula_(dead)","Type 2",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-01-18_YB-AGq2",2015-01-18,2015-01-18,"YB","AG","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","5%","Counts may be low due to poor image quality on the corners."
+"2015-01-18_YB-AGq7",2015-01-18,2015-01-18,"YB","AG","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-01-18_YB-AGq9",2015-01-18,2015-01-18,"YB","AG","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-01-18_YB-AGq2",2015-01-18,2015-01-18,"YB","AG","2","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","5%","Counts may be low due to poor image quality on the corners."
+"2015-01-18_YB-AGq7",2015-01-18,2015-01-18,"YB","AG","7","Cth","Chthamalus_dalli","Type 3",19,0.0875,217.142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-01-18_YB-AGq9",2015-01-18,2015-01-18,"YB","AG","9","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-01-18_YB-AGq2",2015-01-18,2015-01-18,"YB","AG","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","5%","Counts may be low due to poor image quality on the corners."
+"2015-01-18_YB-AGq7",2015-01-18,2015-01-18,"YB","AG","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-01-18_YB-AGq9",2015-01-18,2015-01-18,"YB","AG","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-01-18_YB-AGq2",2015-01-18,2015-01-18,"YB","AG","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","5%","Counts may be low due to poor image quality on the corners."
+"2015-01-18_YB-AGq7",2015-01-18,2015-01-18,"YB","AG","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-01-18_YB-AGq9",2015-01-18,2015-01-18,"YB","AG","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-01-18_YB-AGq2",2015-01-18,2015-01-18,"YB","AG","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","5%","Counts may be low due to poor image quality on the corners."
+"2015-01-18_YB-AGq7",2015-01-18,2015-01-18,"YB","AG","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-01-18_YB-AGq9",2015-01-18,2015-01-18,"YB","AG","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-01-18_YB-AGq2",2015-01-18,2015-01-18,"YB","AG","2","Lim","Limpets","Type 12",242,0.0875,2765.71428571429,NA,"Rebecca Friedrich","Finished","Full","Full","5%","Counts may be low due to poor image quality on the corners."
+"2015-01-18_YB-AGq7",2015-01-18,2015-01-18,"YB","AG","7","Lim","Limpets","Type 12",33,0.0875,377.142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-01-18_YB-AGq9",2015-01-18,2015-01-18,"YB","AG","9","Lim","Limpets","Type 12",60,0.0875,685.714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-01-18_YB-AGq2",2015-01-18,2015-01-18,"YB","AG","2","Ls","Littorina_sitkana","Type 13",112,0.0875,1280,NA,"Rebecca Friedrich","Finished","Full","Full","5%","Counts may be low due to poor image quality on the corners."
+"2015-01-18_YB-AGq7",2015-01-18,2015-01-18,"YB","AG","7","Ls","Littorina_sitkana","Type 13",122,0.0875,1394.28571428571,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-01-18_YB-AGq9",2015-01-18,2015-01-18,"YB","AG","9","Ls","Littorina_sitkana","Type 13",136,0.0875,1554.28571428571,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-01-18_YB-AGq2",2015-01-18,2015-01-18,"YB","AG","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","5%","Counts may be low due to poor image quality on the corners."
+"2015-01-18_YB-AGq7",2015-01-18,2015-01-18,"YB","AG","7","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-01-18_YB-AGq9",2015-01-18,2015-01-18,"YB","AG","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-01-18_YB-AGq2",2015-01-18,2015-01-18,"YB","AG","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","5%","Counts may be low due to poor image quality on the corners."
+"2015-01-18_YB-AGq7",2015-01-18,2015-01-18,"YB","AG","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-01-18_YB-AGq9",2015-01-18,2015-01-18,"YB","AG","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-01-18_YB-AGq2",2015-01-18,2015-01-18,"YB","AG","2","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","5%","Counts may be low due to poor image quality on the corners."
+"2015-01-18_YB-AGq7",2015-01-18,2015-01-18,"YB","AG","7","Myt","Mytilus_spp","Type 7",613,0.0875,7005.71428571429,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-01-18_YB-AGq9",2015-01-18,2015-01-18,"YB","AG","9","Myt","Mytilus_spp","Type 7",628,0.0875,7177.14285714286,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-01-18_YB-AGq2",2015-01-18,2015-01-18,"YB","AG","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","5%","Counts may be low due to poor image quality on the corners."
+"2015-01-18_YB-AGq7",2015-01-18,2015-01-18,"YB","AG","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-01-18_YB-AGq9",2015-01-18,2015-01-18,"YB","AG","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-01-18_YB-AGq2",2015-01-18,2015-01-18,"YB","AG","2","Mt","Mytilus_trossulus","Type 15",305,0.0875,3485.71428571429,NA,"Rebecca Friedrich","Finished","Full","Full","5%","Counts may be low due to poor image quality on the corners."
+"2015-01-18_YB-AGq7",2015-01-18,2015-01-18,"YB","AG","7","Mt","Mytilus_trossulus","Type 15",219,0.0875,2502.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-01-18_YB-AGq9",2015-01-18,2015-01-18,"YB","AG","9","Mt","Mytilus_trossulus","Type 15",219,0.0875,2502.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-01-18_YB-AGq2",2015-01-18,2015-01-18,"YB","AG","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","5%","Counts may be low due to poor image quality on the corners."
+"2015-01-18_YB-AGq7",2015-01-18,2015-01-18,"YB","AG","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-01-18_YB-AGq9",2015-01-18,2015-01-18,"YB","AG","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-01-18_YB-AGq2",2015-01-18,2015-01-18,"YB","AG","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","5%","Counts may be low due to poor image quality on the corners."
+"2015-01-18_YB-AGq7",2015-01-18,2015-01-18,"YB","AG","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-01-18_YB-AGq9",2015-01-18,2015-01-18,"YB","AG","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-01-18_YB-AGq2",2015-01-18,2015-01-18,"YB","AG","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","5%","Counts may be low due to poor image quality on the corners."
+"2015-01-18_YB-AGq7",2015-01-18,2015-01-18,"YB","AG","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-01-18_YB-AGq9",2015-01-18,2015-01-18,"YB","AG","9","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-01-18_YB-AGq2",2015-01-18,2015-01-18,"YB","AG","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","5%","Counts may be low due to poor image quality on the corners."
+"2015-01-18_YB-AGq7",2015-01-18,2015-01-18,"YB","AG","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-01-18_YB-AGq9",2015-01-18,2015-01-18,"YB","AG","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-01-18_YB-AGq2",2015-01-18,2015-01-18,"YB","AG","2","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Rebecca Friedrich","Finished","Full","Full","5%","Counts may be low due to poor image quality on the corners."
+"2015-01-18_YB-AGq7",2015-01-18,2015-01-18,"YB","AG","7","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-01-18_YB-AGq9",2015-01-18,2015-01-18,"YB","AG","9","No","Nucella_ostrina","Type 9",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-01-18_YB-AGq2",2015-01-18,2015-01-18,"YB","AG","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","5%","Counts may be low due to poor image quality on the corners."
+"2015-01-18_YB-AGq7",2015-01-18,2015-01-18,"YB","AG","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-01-18_YB-AGq9",2015-01-18,2015-01-18,"YB","AG","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-01-18_YB-AGq2",2015-01-18,2015-01-18,"YB","AG","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","5%","Counts may be low due to poor image quality on the corners."
+"2015-01-18_YB-AGq7",2015-01-18,2015-01-18,"YB","AG","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-01-18_YB-AGq9",2015-01-18,2015-01-18,"YB","AG","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-01-18_YB-AGq2",2015-01-18,2015-01-18,"YB","AG","2","Pp","Pollicipes_polymerus","Type 11",4,0.0875,45.7142857142857,NA,"Rebecca Friedrich","Finished","Full","Full","5%","Counts may be low due to poor image quality on the corners."
+"2015-01-18_YB-AGq7",2015-01-18,2015-01-18,"YB","AG","7","Pp","Pollicipes_polymerus","Type 11",4,0.0875,45.7142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-01-18_YB-AGq9",2015-01-18,2015-01-18,"YB","AG","9","Pp","Pollicipes_polymerus","Type 11",81,0.0875,925.714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-01-18_YB-AGq2",2015-01-18,2015-01-18,"YB","AG","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","5%","Counts may be low due to poor image quality on the corners."
+"2015-01-18_YB-AGq7",2015-01-18,2015-01-18,"YB","AG","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-01-18_YB-AGq9",2015-01-18,2015-01-18,"YB","AG","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-01-18_YB-AGq2",2015-01-18,2015-01-18,"YB","AG","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","5%","Counts may be low due to poor image quality on the corners."
+"2015-01-18_YB-AGq7",2015-01-18,2015-01-18,"YB","AG","7","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-01-18_YB-AGq9",2015-01-18,2015-01-18,"YB","AG","9","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-01-18_YB-AGq2",2015-01-18,2015-01-18,"YB","AG","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","5%","Counts may be low due to poor image quality on the corners."
+"2015-01-18_YB-AGq7",2015-01-18,2015-01-18,"YB","AG","7","ScD","Semibalanus_cariosus_(dead)","Type 6",4,0.0875,45.7142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-01-18_YB-AGq9",2015-01-18,2015-01-18,"YB","AG","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-01-18_YB-Bq1",2015-01-18,2015-01-18,"YB","B","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-01-18_YB-Bq5",2015-01-18,2015-01-18,"YB","B","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","~10% under water"
+"2015-01-18_YB-Bq6",2015-01-18,2015-01-18,"YB","B","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-01-18_YB-Bq1",2015-01-18,2015-01-18,"YB","B","1","Ae","Anemones","Type 14",27,0.0875,308.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-01-18_YB-Bq5",2015-01-18,2015-01-18,"YB","B","5","Ae","Anemones","Type 14",42,0.0875,480,NA,"Beatriz Vaca","Finished","Full","Full","10%","~10% under water"
+"2015-01-18_YB-Bq6",2015-01-18,2015-01-18,"YB","B","6","Ae","Anemones","Type 14",53,0.0875,605.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-01-18_YB-Bq1",2015-01-18,2015-01-18,"YB","B","1","Bg","Balanus_glandula","Type 1",271,0.0875,3097.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-01-18_YB-Bq5",2015-01-18,2015-01-18,"YB","B","5","Bg","Balanus_glandula","Type 1",190,0.0875,2171.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","10%","~10% under water"
+"2015-01-18_YB-Bq6",2015-01-18,2015-01-18,"YB","B","6","Bg","Balanus_glandula","Type 1",157,0.0875,1794.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-01-18_YB-Bq1",2015-01-18,2015-01-18,"YB","B","1","BgD","Balanus_glandula_(dead)","Type 2",108,0.0875,1234.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-01-18_YB-Bq5",2015-01-18,2015-01-18,"YB","B","5","BgD","Balanus_glandula_(dead)","Type 2",12,0.0875,137.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","10%","~10% under water"
+"2015-01-18_YB-Bq6",2015-01-18,2015-01-18,"YB","B","6","BgD","Balanus_glandula_(dead)","Type 2",97,0.0875,1108.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-01-18_YB-Bq1",2015-01-18,2015-01-18,"YB","B","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-01-18_YB-Bq5",2015-01-18,2015-01-18,"YB","B","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","~10% under water"
+"2015-01-18_YB-Bq6",2015-01-18,2015-01-18,"YB","B","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-01-18_YB-Bq1",2015-01-18,2015-01-18,"YB","B","1","Cth","Chthamalus_dalli","Type 3",19,0.0875,217.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-01-18_YB-Bq5",2015-01-18,2015-01-18,"YB","B","5","Cth","Chthamalus_dalli","Type 3",16,0.0875,182.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","10%","~10% under water"
+"2015-01-18_YB-Bq6",2015-01-18,2015-01-18,"YB","B","6","Cth","Chthamalus_dalli","Type 3",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-01-18_YB-Bq1",2015-01-18,2015-01-18,"YB","B","1","CthD","Chthamalus_dalli (dead)","Type 4",13,0.0875,148.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-01-18_YB-Bq5",2015-01-18,2015-01-18,"YB","B","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","~10% under water"
+"2015-01-18_YB-Bq6",2015-01-18,2015-01-18,"YB","B","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-01-18_YB-Bq1",2015-01-18,2015-01-18,"YB","B","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-01-18_YB-Bq5",2015-01-18,2015-01-18,"YB","B","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","~10% under water"
+"2015-01-18_YB-Bq6",2015-01-18,2015-01-18,"YB","B","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-01-18_YB-Bq1",2015-01-18,2015-01-18,"YB","B","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-01-18_YB-Bq5",2015-01-18,2015-01-18,"YB","B","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","~10% under water"
+"2015-01-18_YB-Bq6",2015-01-18,2015-01-18,"YB","B","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-01-18_YB-Bq1",2015-01-18,2015-01-18,"YB","B","1","Lim","Limpets","Type 12",115,0.0875,1314.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-01-18_YB-Bq5",2015-01-18,2015-01-18,"YB","B","5","Lim","Limpets","Type 12",101,0.0875,1154.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","10%","~10% under water"
+"2015-01-18_YB-Bq6",2015-01-18,2015-01-18,"YB","B","6","Lim","Limpets","Type 12",109,0.0875,1245.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-01-18_YB-Bq1",2015-01-18,2015-01-18,"YB","B","1","Ls","Littorina_sitkana","Type 13",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-01-18_YB-Bq5",2015-01-18,2015-01-18,"YB","B","5","Ls","Littorina_sitkana","Type 13",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","~10% under water"
+"2015-01-18_YB-Bq6",2015-01-18,2015-01-18,"YB","B","6","Ls","Littorina_sitkana","Type 13",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-01-18_YB-Bq1",2015-01-18,2015-01-18,"YB","B","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-01-18_YB-Bq5",2015-01-18,2015-01-18,"YB","B","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","~10% under water"
+"2015-01-18_YB-Bq6",2015-01-18,2015-01-18,"YB","B","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-01-18_YB-Bq1",2015-01-18,2015-01-18,"YB","B","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-01-18_YB-Bq5",2015-01-18,2015-01-18,"YB","B","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","~10% under water"
+"2015-01-18_YB-Bq6",2015-01-18,2015-01-18,"YB","B","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-01-18_YB-Bq1",2015-01-18,2015-01-18,"YB","B","1","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-01-18_YB-Bq5",2015-01-18,2015-01-18,"YB","B","5","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","~10% under water"
+"2015-01-18_YB-Bq6",2015-01-18,2015-01-18,"YB","B","6","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-01-18_YB-Bq1",2015-01-18,2015-01-18,"YB","B","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-01-18_YB-Bq5",2015-01-18,2015-01-18,"YB","B","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","~10% under water"
+"2015-01-18_YB-Bq6",2015-01-18,2015-01-18,"YB","B","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-01-18_YB-Bq1",2015-01-18,2015-01-18,"YB","B","1","Mt","Mytilus_trossulus","Type 15",407,0.0875,4651.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-01-18_YB-Bq5",2015-01-18,2015-01-18,"YB","B","5","Mt","Mytilus_trossulus","Type 15",204,0.0875,2331.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","10%","~10% under water"
+"2015-01-18_YB-Bq6",2015-01-18,2015-01-18,"YB","B","6","Mt","Mytilus_trossulus","Type 15",368,0.0875,4205.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-01-18_YB-Bq1",2015-01-18,2015-01-18,"YB","B","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-01-18_YB-Bq5",2015-01-18,2015-01-18,"YB","B","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","~10% under water"
+"2015-01-18_YB-Bq6",2015-01-18,2015-01-18,"YB","B","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-01-18_YB-Bq1",2015-01-18,2015-01-18,"YB","B","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-01-18_YB-Bq5",2015-01-18,2015-01-18,"YB","B","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","~10% under water"
+"2015-01-18_YB-Bq6",2015-01-18,2015-01-18,"YB","B","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-01-18_YB-Bq1",2015-01-18,2015-01-18,"YB","B","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-01-18_YB-Bq5",2015-01-18,2015-01-18,"YB","B","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","~10% under water"
+"2015-01-18_YB-Bq6",2015-01-18,2015-01-18,"YB","B","6","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-01-18_YB-Bq1",2015-01-18,2015-01-18,"YB","B","1","Negg","Nucella_eggs","Type 26",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-01-18_YB-Bq5",2015-01-18,2015-01-18,"YB","B","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","~10% under water"
+"2015-01-18_YB-Bq6",2015-01-18,2015-01-18,"YB","B","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-01-18_YB-Bq1",2015-01-18,2015-01-18,"YB","B","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-01-18_YB-Bq5",2015-01-18,2015-01-18,"YB","B","5","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","~10% under water"
+"2015-01-18_YB-Bq6",2015-01-18,2015-01-18,"YB","B","6","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-01-18_YB-Bq1",2015-01-18,2015-01-18,"YB","B","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-01-18_YB-Bq5",2015-01-18,2015-01-18,"YB","B","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","~10% under water"
+"2015-01-18_YB-Bq6",2015-01-18,2015-01-18,"YB","B","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-01-18_YB-Bq1",2015-01-18,2015-01-18,"YB","B","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-01-18_YB-Bq5",2015-01-18,2015-01-18,"YB","B","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","~10% under water"
+"2015-01-18_YB-Bq6",2015-01-18,2015-01-18,"YB","B","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-01-18_YB-Bq1",2015-01-18,2015-01-18,"YB","B","1","Pp","Pollicipes_polymerus","Type 11",197,0.0875,2251.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-01-18_YB-Bq5",2015-01-18,2015-01-18,"YB","B","5","Pp","Pollicipes_polymerus","Type 11",53,0.0875,605.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","10%","~10% under water"
+"2015-01-18_YB-Bq6",2015-01-18,2015-01-18,"YB","B","6","Pp","Pollicipes_polymerus","Type 11",89,0.0875,1017.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-01-18_YB-Bq1",2015-01-18,2015-01-18,"YB","B","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-01-18_YB-Bq5",2015-01-18,2015-01-18,"YB","B","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","~10% under water"
+"2015-01-18_YB-Bq6",2015-01-18,2015-01-18,"YB","B","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-01-18_YB-Bq1",2015-01-18,2015-01-18,"YB","B","1","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-01-18_YB-Bq5",2015-01-18,2015-01-18,"YB","B","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","~10% under water"
+"2015-01-18_YB-Bq6",2015-01-18,2015-01-18,"YB","B","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-01-18_YB-Bq1",2015-01-18,2015-01-18,"YB","B","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-01-18_YB-Bq5",2015-01-18,2015-01-18,"YB","B","5","ScD","Semibalanus_cariosus_(dead)","Type 6",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","10%","~10% under water"
+"2015-01-18_YB-Bq6",2015-01-18,2015-01-18,"YB","B","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-01-18_YB-BBq1",2015-01-18,2015-01-18,"YB","BB","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-01-18_YB-BBq2",2015-01-18,2015-01-18,"YB","BB","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to glare"
+"2015-01-18_YB-BBq9",2015-01-18,2015-01-18,"YB","BB","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2015-01-18_YB-BBq1",2015-01-18,2015-01-18,"YB","BB","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-01-18_YB-BBq2",2015-01-18,2015-01-18,"YB","BB","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to glare"
+"2015-01-18_YB-BBq9",2015-01-18,2015-01-18,"YB","BB","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2015-01-18_YB-BBq1",2015-01-18,2015-01-18,"YB","BB","1","Bg","Balanus_glandula","Type 1",370,0.0875,4228.57142857143,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-01-18_YB-BBq2",2015-01-18,2015-01-18,"YB","BB","2","Bg","Balanus_glandula","Type 1",378,0.0875,4320,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to glare"
+"2015-01-18_YB-BBq9",2015-01-18,2015-01-18,"YB","BB","9","Bg","Balanus_glandula","Type 1",281,0.015625,17984,"c","Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2015-01-18_YB-BBq1",2015-01-18,2015-01-18,"YB","BB","1","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-01-18_YB-BBq2",2015-01-18,2015-01-18,"YB","BB","2","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to glare"
+"2015-01-18_YB-BBq9",2015-01-18,2015-01-18,"YB","BB","9","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2015-01-18_YB-BBq1",2015-01-18,2015-01-18,"YB","BB","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-01-18_YB-BBq2",2015-01-18,2015-01-18,"YB","BB","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to glare"
+"2015-01-18_YB-BBq9",2015-01-18,2015-01-18,"YB","BB","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2015-01-18_YB-BBq1",2015-01-18,2015-01-18,"YB","BB","1","Cth","Chthamalus_dalli","Type 3",38,0.0875,434.285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-01-18_YB-BBq2",2015-01-18,2015-01-18,"YB","BB","2","Cth","Chthamalus_dalli","Type 3",13,0.0875,148.571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to glare"
+"2015-01-18_YB-BBq9",2015-01-18,2015-01-18,"YB","BB","9","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2015-01-18_YB-BBq1",2015-01-18,2015-01-18,"YB","BB","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-01-18_YB-BBq2",2015-01-18,2015-01-18,"YB","BB","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to glare"
+"2015-01-18_YB-BBq9",2015-01-18,2015-01-18,"YB","BB","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2015-01-18_YB-BBq1",2015-01-18,2015-01-18,"YB","BB","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-01-18_YB-BBq2",2015-01-18,2015-01-18,"YB","BB","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to glare"
+"2015-01-18_YB-BBq9",2015-01-18,2015-01-18,"YB","BB","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2015-01-18_YB-BBq1",2015-01-18,2015-01-18,"YB","BB","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-01-18_YB-BBq2",2015-01-18,2015-01-18,"YB","BB","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to glare"
+"2015-01-18_YB-BBq9",2015-01-18,2015-01-18,"YB","BB","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2015-01-18_YB-BBq1",2015-01-18,2015-01-18,"YB","BB","1","Lim","Limpets","Type 12",26,0.0875,297.142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-01-18_YB-BBq2",2015-01-18,2015-01-18,"YB","BB","2","Lim","Limpets","Type 12",48,0.0875,548.571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to glare"
+"2015-01-18_YB-BBq9",2015-01-18,2015-01-18,"YB","BB","9","Lim","Limpets","Type 12",12,0.0875,137.142857142857,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2015-01-18_YB-BBq1",2015-01-18,2015-01-18,"YB","BB","1","Ls","Littorina_sitkana","Type 13",63,0.0875,720,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-01-18_YB-BBq2",2015-01-18,2015-01-18,"YB","BB","2","Ls","Littorina_sitkana","Type 13",98,0.0875,1120,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to glare"
+"2015-01-18_YB-BBq9",2015-01-18,2015-01-18,"YB","BB","9","Ls","Littorina_sitkana","Type 13",195,0.0875,2228.57142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2015-01-18_YB-BBq1",2015-01-18,2015-01-18,"YB","BB","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-01-18_YB-BBq2",2015-01-18,2015-01-18,"YB","BB","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to glare"
+"2015-01-18_YB-BBq9",2015-01-18,2015-01-18,"YB","BB","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2015-01-18_YB-BBq1",2015-01-18,2015-01-18,"YB","BB","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-01-18_YB-BBq2",2015-01-18,2015-01-18,"YB","BB","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to glare"
+"2015-01-18_YB-BBq9",2015-01-18,2015-01-18,"YB","BB","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2015-01-18_YB-BBq1",2015-01-18,2015-01-18,"YB","BB","1","Myt","Mytilus_spp","Type 7",248,0.0875,2834.28571428571,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-01-18_YB-BBq2",2015-01-18,2015-01-18,"YB","BB","2","Myt","Mytilus_spp","Type 7",315,0.0875,3600,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to glare"
+"2015-01-18_YB-BBq9",2015-01-18,2015-01-18,"YB","BB","9","Myt","Mytilus_spp","Type 7",441,0.0875,5040,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2015-01-18_YB-BBq1",2015-01-18,2015-01-18,"YB","BB","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-01-18_YB-BBq2",2015-01-18,2015-01-18,"YB","BB","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to glare"
+"2015-01-18_YB-BBq9",2015-01-18,2015-01-18,"YB","BB","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2015-01-18_YB-BBq1",2015-01-18,2015-01-18,"YB","BB","1","Mt","Mytilus_trossulus","Type 15",273,0.0875,3120,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-01-18_YB-BBq2",2015-01-18,2015-01-18,"YB","BB","2","Mt","Mytilus_trossulus","Type 15",133,0.0875,1520,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to glare"
+"2015-01-18_YB-BBq9",2015-01-18,2015-01-18,"YB","BB","9","Mt","Mytilus_trossulus","Type 15",226,0.0875,2582.85714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2015-01-18_YB-BBq1",2015-01-18,2015-01-18,"YB","BB","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-01-18_YB-BBq2",2015-01-18,2015-01-18,"YB","BB","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to glare"
+"2015-01-18_YB-BBq9",2015-01-18,2015-01-18,"YB","BB","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2015-01-18_YB-BBq1",2015-01-18,2015-01-18,"YB","BB","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-01-18_YB-BBq2",2015-01-18,2015-01-18,"YB","BB","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to glare"
+"2015-01-18_YB-BBq9",2015-01-18,2015-01-18,"YB","BB","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2015-01-18_YB-BBq1",2015-01-18,2015-01-18,"YB","BB","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-01-18_YB-BBq2",2015-01-18,2015-01-18,"YB","BB","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to glare"
+"2015-01-18_YB-BBq9",2015-01-18,2015-01-18,"YB","BB","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2015-01-18_YB-BBq1",2015-01-18,2015-01-18,"YB","BB","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-01-18_YB-BBq2",2015-01-18,2015-01-18,"YB","BB","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to glare"
+"2015-01-18_YB-BBq9",2015-01-18,2015-01-18,"YB","BB","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2015-01-18_YB-BBq1",2015-01-18,2015-01-18,"YB","BB","1","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-01-18_YB-BBq2",2015-01-18,2015-01-18,"YB","BB","2","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to glare"
+"2015-01-18_YB-BBq9",2015-01-18,2015-01-18,"YB","BB","9","No","Nucella_ostrina","Type 9",5,0.0875,57.1428571428571,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2015-01-18_YB-BBq1",2015-01-18,2015-01-18,"YB","BB","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-01-18_YB-BBq2",2015-01-18,2015-01-18,"YB","BB","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to glare"
+"2015-01-18_YB-BBq9",2015-01-18,2015-01-18,"YB","BB","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2015-01-18_YB-BBq1",2015-01-18,2015-01-18,"YB","BB","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-01-18_YB-BBq2",2015-01-18,2015-01-18,"YB","BB","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to glare"
+"2015-01-18_YB-BBq9",2015-01-18,2015-01-18,"YB","BB","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2015-01-18_YB-BBq1",2015-01-18,2015-01-18,"YB","BB","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-01-18_YB-BBq2",2015-01-18,2015-01-18,"YB","BB","2","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to glare"
+"2015-01-18_YB-BBq9",2015-01-18,2015-01-18,"YB","BB","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2015-01-18_YB-BBq1",2015-01-18,2015-01-18,"YB","BB","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-01-18_YB-BBq2",2015-01-18,2015-01-18,"YB","BB","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to glare"
+"2015-01-18_YB-BBq9",2015-01-18,2015-01-18,"YB","BB","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2015-01-18_YB-BBq1",2015-01-18,2015-01-18,"YB","BB","1","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-01-18_YB-BBq2",2015-01-18,2015-01-18,"YB","BB","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to glare"
+"2015-01-18_YB-BBq9",2015-01-18,2015-01-18,"YB","BB","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2015-01-18_YB-BBq1",2015-01-18,2015-01-18,"YB","BB","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-01-18_YB-BBq2",2015-01-18,2015-01-18,"YB","BB","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to glare"
+"2015-01-18_YB-BBq9",2015-01-18,2015-01-18,"YB","BB","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%",""
+"2015-01-18_YB-BCq3",2015-01-18,2015-01-18,"YB","BC","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts may be low due to sediment"
+"2015-01-18_YB-BCq5",2015-01-18,2015-01-18,"YB","BC","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2015-01-18_YB-BCq9",2015-01-18,2015-01-18,"YB","BC","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to glare and sediment"
+"2015-01-18_YB-BCq3",2015-01-18,2015-01-18,"YB","BC","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts may be low due to sediment"
+"2015-01-18_YB-BCq5",2015-01-18,2015-01-18,"YB","BC","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2015-01-18_YB-BCq9",2015-01-18,2015-01-18,"YB","BC","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to glare and sediment"
+"2015-01-18_YB-BCq3",2015-01-18,2015-01-18,"YB","BC","3","Bg","Balanus_glandula","Type 1",902,0.0875,10308.5714285714,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts may be low due to sediment"
+"2015-01-18_YB-BCq5",2015-01-18,2015-01-18,"YB","BC","5","Bg","Balanus_glandula","Type 1",203,0.015625,12992,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2015-01-18_YB-BCq9",2015-01-18,2015-01-18,"YB","BC","9","Bg","Balanus_glandula","Type 1",663,0.0875,7577.14285714286,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to glare and sediment"
+"2015-01-18_YB-BCq3",2015-01-18,2015-01-18,"YB","BC","3","BgD","Balanus_glandula_(dead)","Type 2",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts may be low due to sediment"
+"2015-01-18_YB-BCq5",2015-01-18,2015-01-18,"YB","BC","5","BgD","Balanus_glandula_(dead)","Type 2",1,0.015625,64,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2015-01-18_YB-BCq9",2015-01-18,2015-01-18,"YB","BC","9","BgD","Balanus_glandula_(dead)","Type 2",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to glare and sediment"
+"2015-01-18_YB-BCq3",2015-01-18,2015-01-18,"YB","BC","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts may be low due to sediment"
+"2015-01-18_YB-BCq5",2015-01-18,2015-01-18,"YB","BC","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2015-01-18_YB-BCq9",2015-01-18,2015-01-18,"YB","BC","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to glare and sediment"
+"2015-01-18_YB-BCq3",2015-01-18,2015-01-18,"YB","BC","3","Cth","Chthamalus_dalli","Type 3",50,0.0875,571.428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts may be low due to sediment"
+"2015-01-18_YB-BCq5",2015-01-18,2015-01-18,"YB","BC","5","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2015-01-18_YB-BCq9",2015-01-18,2015-01-18,"YB","BC","9","Cth","Chthamalus_dalli","Type 3",8,0.0875,91.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to glare and sediment"
+"2015-01-18_YB-BCq3",2015-01-18,2015-01-18,"YB","BC","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts may be low due to sediment"
+"2015-01-18_YB-BCq5",2015-01-18,2015-01-18,"YB","BC","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2015-01-18_YB-BCq9",2015-01-18,2015-01-18,"YB","BC","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to glare and sediment"
+"2015-01-18_YB-BCq3",2015-01-18,2015-01-18,"YB","BC","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts may be low due to sediment"
+"2015-01-18_YB-BCq5",2015-01-18,2015-01-18,"YB","BC","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2015-01-18_YB-BCq9",2015-01-18,2015-01-18,"YB","BC","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to glare and sediment"
+"2015-01-18_YB-BCq3",2015-01-18,2015-01-18,"YB","BC","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts may be low due to sediment"
+"2015-01-18_YB-BCq5",2015-01-18,2015-01-18,"YB","BC","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2015-01-18_YB-BCq9",2015-01-18,2015-01-18,"YB","BC","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to glare and sediment"
+"2015-01-18_YB-BCq3",2015-01-18,2015-01-18,"YB","BC","3","Lim","Limpets","Type 12",58,0.0875,662.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts may be low due to sediment"
+"2015-01-18_YB-BCq5",2015-01-18,2015-01-18,"YB","BC","5","Lim","Limpets","Type 12",32,0.0875,365.714285714286,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2015-01-18_YB-BCq9",2015-01-18,2015-01-18,"YB","BC","9","Lim","Limpets","Type 12",69,0.0875,788.571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to glare and sediment"
+"2015-01-18_YB-BCq3",2015-01-18,2015-01-18,"YB","BC","3","Ls","Littorina_sitkana","Type 13",179,0.0875,2045.71428571429,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts may be low due to sediment"
+"2015-01-18_YB-BCq5",2015-01-18,2015-01-18,"YB","BC","5","Ls","Littorina_sitkana","Type 13",196,0.0875,2240,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2015-01-18_YB-BCq9",2015-01-18,2015-01-18,"YB","BC","9","Ls","Littorina_sitkana","Type 13",155,0.0875,1771.42857142857,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to glare and sediment"
+"2015-01-18_YB-BCq3",2015-01-18,2015-01-18,"YB","BC","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts may be low due to sediment"
+"2015-01-18_YB-BCq5",2015-01-18,2015-01-18,"YB","BC","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2015-01-18_YB-BCq9",2015-01-18,2015-01-18,"YB","BC","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to glare and sediment"
+"2015-01-18_YB-BCq3",2015-01-18,2015-01-18,"YB","BC","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts may be low due to sediment"
+"2015-01-18_YB-BCq5",2015-01-18,2015-01-18,"YB","BC","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2015-01-18_YB-BCq9",2015-01-18,2015-01-18,"YB","BC","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to glare and sediment"
+"2015-01-18_YB-BCq3",2015-01-18,2015-01-18,"YB","BC","3","Myt","Mytilus_spp","Type 7",366,0.0875,4182.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts may be low due to sediment"
+"2015-01-18_YB-BCq5",2015-01-18,2015-01-18,"YB","BC","5","Myt","Mytilus_spp","Type 7",296,0.0875,3382.85714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2015-01-18_YB-BCq9",2015-01-18,2015-01-18,"YB","BC","9","Myt","Mytilus_spp","Type 7",398,0.0875,4548.57142857143,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to glare and sediment"
+"2015-01-18_YB-BCq3",2015-01-18,2015-01-18,"YB","BC","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts may be low due to sediment"
+"2015-01-18_YB-BCq5",2015-01-18,2015-01-18,"YB","BC","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2015-01-18_YB-BCq9",2015-01-18,2015-01-18,"YB","BC","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to glare and sediment"
+"2015-01-18_YB-BCq3",2015-01-18,2015-01-18,"YB","BC","3","Mt","Mytilus_trossulus","Type 15",113,0.0875,1291.42857142857,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts may be low due to sediment"
+"2015-01-18_YB-BCq5",2015-01-18,2015-01-18,"YB","BC","5","Mt","Mytilus_trossulus","Type 15",263,0.0875,3005.71428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2015-01-18_YB-BCq9",2015-01-18,2015-01-18,"YB","BC","9","Mt","Mytilus_trossulus","Type 15",165,0.0875,1885.71428571429,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to glare and sediment"
+"2015-01-18_YB-BCq3",2015-01-18,2015-01-18,"YB","BC","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts may be low due to sediment"
+"2015-01-18_YB-BCq5",2015-01-18,2015-01-18,"YB","BC","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2015-01-18_YB-BCq9",2015-01-18,2015-01-18,"YB","BC","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to glare and sediment"
+"2015-01-18_YB-BCq3",2015-01-18,2015-01-18,"YB","BC","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts may be low due to sediment"
+"2015-01-18_YB-BCq5",2015-01-18,2015-01-18,"YB","BC","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2015-01-18_YB-BCq9",2015-01-18,2015-01-18,"YB","BC","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to glare and sediment"
+"2015-01-18_YB-BCq3",2015-01-18,2015-01-18,"YB","BC","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts may be low due to sediment"
+"2015-01-18_YB-BCq5",2015-01-18,2015-01-18,"YB","BC","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2015-01-18_YB-BCq9",2015-01-18,2015-01-18,"YB","BC","9","Nc","Nucella_canaliculata","Type 10",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to glare and sediment"
+"2015-01-18_YB-BCq3",2015-01-18,2015-01-18,"YB","BC","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts may be low due to sediment"
+"2015-01-18_YB-BCq5",2015-01-18,2015-01-18,"YB","BC","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2015-01-18_YB-BCq9",2015-01-18,2015-01-18,"YB","BC","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to glare and sediment"
+"2015-01-18_YB-BCq3",2015-01-18,2015-01-18,"YB","BC","3","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts may be low due to sediment"
+"2015-01-18_YB-BCq5",2015-01-18,2015-01-18,"YB","BC","5","No","Nucella_ostrina","Type 9",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2015-01-18_YB-BCq9",2015-01-18,2015-01-18,"YB","BC","9","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to glare and sediment"
+"2015-01-18_YB-BCq3",2015-01-18,2015-01-18,"YB","BC","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts may be low due to sediment"
+"2015-01-18_YB-BCq5",2015-01-18,2015-01-18,"YB","BC","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2015-01-18_YB-BCq9",2015-01-18,2015-01-18,"YB","BC","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to glare and sediment"
+"2015-01-18_YB-BCq3",2015-01-18,2015-01-18,"YB","BC","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts may be low due to sediment"
+"2015-01-18_YB-BCq5",2015-01-18,2015-01-18,"YB","BC","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2015-01-18_YB-BCq9",2015-01-18,2015-01-18,"YB","BC","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to glare and sediment"
+"2015-01-18_YB-BCq3",2015-01-18,2015-01-18,"YB","BC","3","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts may be low due to sediment"
+"2015-01-18_YB-BCq5",2015-01-18,2015-01-18,"YB","BC","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2015-01-18_YB-BCq9",2015-01-18,2015-01-18,"YB","BC","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to glare and sediment"
+"2015-01-18_YB-BCq3",2015-01-18,2015-01-18,"YB","BC","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts may be low due to sediment"
+"2015-01-18_YB-BCq5",2015-01-18,2015-01-18,"YB","BC","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2015-01-18_YB-BCq9",2015-01-18,2015-01-18,"YB","BC","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to glare and sediment"
+"2015-01-18_YB-BCq3",2015-01-18,2015-01-18,"YB","BC","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts may be low due to sediment"
+"2015-01-18_YB-BCq5",2015-01-18,2015-01-18,"YB","BC","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2015-01-18_YB-BCq9",2015-01-18,2015-01-18,"YB","BC","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to glare and sediment"
+"2015-01-18_YB-BCq3",2015-01-18,2015-01-18,"YB","BC","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts may be low due to sediment"
+"2015-01-18_YB-BCq5",2015-01-18,2015-01-18,"YB","BC","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts may be low due to glare."
+"2015-01-18_YB-BCq9",2015-01-18,2015-01-18,"YB","BC","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to glare and sediment"
+"2015-01-18_YB-BDq1",2015-01-18,2015-01-18,"YB","BD","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","6%","Counts may be low due to blur"
+"2015-01-18_YB-BDq5",2015-01-18,2015-01-18,"YB","BD","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","8%",""
+"2015-01-18_YB-BDq7",2015-01-18,2015-01-18,"YB","BD","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%","counts may be low due to glare. algae is mostly diatoms on top of barnacles"
+"2015-01-18_YB-BDq1",2015-01-18,2015-01-18,"YB","BD","1","Ae","Anemones","Type 14",3,0.0875,34.2857142857143,NA,"Julia Bingham","Finished","Cropped","Full","6%","Counts may be low due to blur"
+"2015-01-18_YB-BDq5",2015-01-18,2015-01-18,"YB","BD","5","Ae","Anemones","Type 14",10,0.0875,114.285714285714,NA,"Julia Bingham","Finished","Cropped","Full","8%",""
+"2015-01-18_YB-BDq7",2015-01-18,2015-01-18,"YB","BD","7","Ae","Anemones","Type 14",16,0.0875,182.857142857143,NA,"Julia Bingham","Finished","Full","Full","12%","counts may be low due to glare. algae is mostly diatoms on top of barnacles"
+"2015-01-18_YB-BDq1",2015-01-18,2015-01-18,"YB","BD","1","Bg","Balanus_glandula","Type 1",1023,0.0875,11691.4285714286,NA,"Julia Bingham","Finished","Cropped","Full","6%","Counts may be low due to blur"
+"2015-01-18_YB-BDq5",2015-01-18,2015-01-18,"YB","BD","5","Bg","Balanus_glandula","Type 1",654,0.0875,7474.28571428571,NA,"Julia Bingham","Finished","Cropped","Full","8%",""
+"2015-01-18_YB-BDq7",2015-01-18,2015-01-18,"YB","BD","7","Bg","Balanus_glandula","Type 1",1635,0.0875,18685.7142857143,NA,"Julia Bingham","Finished","Full","Full","12%","counts may be low due to glare. algae is mostly diatoms on top of barnacles"
+"2015-01-18_YB-BDq1",2015-01-18,2015-01-18,"YB","BD","1","BgD","Balanus_glandula_(dead)","Type 2",59,0.0875,674.285714285714,NA,"Julia Bingham","Finished","Cropped","Full","6%","Counts may be low due to blur"
+"2015-01-18_YB-BDq5",2015-01-18,2015-01-18,"YB","BD","5","BgD","Balanus_glandula_(dead)","Type 2",59,0.0875,674.285714285714,NA,"Julia Bingham","Finished","Cropped","Full","8%",""
+"2015-01-18_YB-BDq7",2015-01-18,2015-01-18,"YB","BD","7","BgD","Balanus_glandula_(dead)","Type 2",67,0.0875,765.714285714286,NA,"Julia Bingham","Finished","Full","Full","12%","counts may be low due to glare. algae is mostly diatoms on top of barnacles"
+"2015-01-18_YB-BDq1",2015-01-18,2015-01-18,"YB","BD","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","6%","Counts may be low due to blur"
+"2015-01-18_YB-BDq5",2015-01-18,2015-01-18,"YB","BD","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","8%",""
+"2015-01-18_YB-BDq7",2015-01-18,2015-01-18,"YB","BD","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%","counts may be low due to glare. algae is mostly diatoms on top of barnacles"
+"2015-01-18_YB-BDq1",2015-01-18,2015-01-18,"YB","BD","1","Cth","Chthamalus_dalli","Type 3",17,0.0875,194.285714285714,NA,"Julia Bingham","Finished","Cropped","Full","6%","Counts may be low due to blur"
+"2015-01-18_YB-BDq5",2015-01-18,2015-01-18,"YB","BD","5","Cth","Chthamalus_dalli","Type 3",21,0.0875,240,NA,"Julia Bingham","Finished","Cropped","Full","8%",""
+"2015-01-18_YB-BDq7",2015-01-18,2015-01-18,"YB","BD","7","Cth","Chthamalus_dalli","Type 3",33,0.0875,377.142857142857,NA,"Julia Bingham","Finished","Full","Full","12%","counts may be low due to glare. algae is mostly diatoms on top of barnacles"
+"2015-01-18_YB-BDq1",2015-01-18,2015-01-18,"YB","BD","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","6%","Counts may be low due to blur"
+"2015-01-18_YB-BDq5",2015-01-18,2015-01-18,"YB","BD","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","8%",""
+"2015-01-18_YB-BDq7",2015-01-18,2015-01-18,"YB","BD","7","CthD","Chthamalus_dalli (dead)","Type 4",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Full","12%","counts may be low due to glare. algae is mostly diatoms on top of barnacles"
+"2015-01-18_YB-BDq1",2015-01-18,2015-01-18,"YB","BD","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","6%","Counts may be low due to blur"
+"2015-01-18_YB-BDq5",2015-01-18,2015-01-18,"YB","BD","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","8%",""
+"2015-01-18_YB-BDq7",2015-01-18,2015-01-18,"YB","BD","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%","counts may be low due to glare. algae is mostly diatoms on top of barnacles"
+"2015-01-18_YB-BDq1",2015-01-18,2015-01-18,"YB","BD","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","6%","Counts may be low due to blur"
+"2015-01-18_YB-BDq5",2015-01-18,2015-01-18,"YB","BD","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","8%",""
+"2015-01-18_YB-BDq7",2015-01-18,2015-01-18,"YB","BD","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%","counts may be low due to glare. algae is mostly diatoms on top of barnacles"
+"2015-01-18_YB-BDq1",2015-01-18,2015-01-18,"YB","BD","1","Lim","Limpets","Type 12",168,0.0875,1920,NA,"Julia Bingham","Finished","Cropped","Full","6%","Counts may be low due to blur"
+"2015-01-18_YB-BDq5",2015-01-18,2015-01-18,"YB","BD","5","Lim","Limpets","Type 12",139,0.0875,1588.57142857143,NA,"Julia Bingham","Finished","Cropped","Full","8%",""
+"2015-01-18_YB-BDq7",2015-01-18,2015-01-18,"YB","BD","7","Lim","Limpets","Type 12",205,0.0875,2342.85714285714,NA,"Julia Bingham","Finished","Full","Full","12%","counts may be low due to glare. algae is mostly diatoms on top of barnacles"
+"2015-01-18_YB-BDq1",2015-01-18,2015-01-18,"YB","BD","1","Ls","Littorina_sitkana","Type 13",90,0.0875,1028.57142857143,NA,"Julia Bingham","Finished","Cropped","Full","6%","Counts may be low due to blur"
+"2015-01-18_YB-BDq5",2015-01-18,2015-01-18,"YB","BD","5","Ls","Littorina_sitkana","Type 13",31,0.0875,354.285714285714,NA,"Julia Bingham","Finished","Cropped","Full","8%",""
+"2015-01-18_YB-BDq7",2015-01-18,2015-01-18,"YB","BD","7","Ls","Littorina_sitkana","Type 13",136,0.0875,1554.28571428571,NA,"Julia Bingham","Finished","Full","Full","12%","counts may be low due to glare. algae is mostly diatoms on top of barnacles"
+"2015-01-18_YB-BDq1",2015-01-18,2015-01-18,"YB","BD","1","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Julia Bingham","Finished","Cropped","Full","6%","Counts may be low due to blur"
+"2015-01-18_YB-BDq5",2015-01-18,2015-01-18,"YB","BD","5","Mc","Mytilus_californianus","Type 17",5,0.015625,320,"c","Julia Bingham","Finished","Cropped","Full","8%",""
+"2015-01-18_YB-BDq7",2015-01-18,2015-01-18,"YB","BD","7","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%","counts may be low due to glare. algae is mostly diatoms on top of barnacles"
+"2015-01-18_YB-BDq1",2015-01-18,2015-01-18,"YB","BD","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Julia Bingham","Finished","Cropped","Full","6%","Counts may be low due to blur"
+"2015-01-18_YB-BDq5",2015-01-18,2015-01-18,"YB","BD","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Julia Bingham","Finished","Cropped","Full","8%",""
+"2015-01-18_YB-BDq7",2015-01-18,2015-01-18,"YB","BD","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%","counts may be low due to glare. algae is mostly diatoms on top of barnacles"
+"2015-01-18_YB-BDq1",2015-01-18,2015-01-18,"YB","BD","1","Myt","Mytilus_spp","Type 7",209,0.015625,13376,"c","Julia Bingham","Finished","Cropped","Full","6%","Counts may be low due to blur"
+"2015-01-18_YB-BDq5",2015-01-18,2015-01-18,"YB","BD","5","Myt","Mytilus_spp","Type 7",347,0.015625,22208,"c","Julia Bingham","Finished","Cropped","Full","8%",""
+"2015-01-18_YB-BDq7",2015-01-18,2015-01-18,"YB","BD","7","Myt","Mytilus_spp","Type 7",1347,0.0875,15394.2857142857,NA,"Julia Bingham","Finished","Full","Full","12%","counts may be low due to glare. algae is mostly diatoms on top of barnacles"
+"2015-01-18_YB-BDq1",2015-01-18,2015-01-18,"YB","BD","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Julia Bingham","Finished","Cropped","Full","6%","Counts may be low due to blur"
+"2015-01-18_YB-BDq5",2015-01-18,2015-01-18,"YB","BD","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Julia Bingham","Finished","Cropped","Full","8%",""
+"2015-01-18_YB-BDq7",2015-01-18,2015-01-18,"YB","BD","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%","counts may be low due to glare. algae is mostly diatoms on top of barnacles"
+"2015-01-18_YB-BDq1",2015-01-18,2015-01-18,"YB","BD","1","Mt","Mytilus_trossulus","Type 15",0,0.015625,0,"c","Julia Bingham","Finished","Cropped","Full","6%","Counts may be low due to blur"
+"2015-01-18_YB-BDq5",2015-01-18,2015-01-18,"YB","BD","5","Mt","Mytilus_trossulus","Type 15",192,0.015625,12288,"c","Julia Bingham","Finished","Cropped","Full","8%",""
+"2015-01-18_YB-BDq7",2015-01-18,2015-01-18,"YB","BD","7","Mt","Mytilus_trossulus","Type 15",647,0.0875,7394.28571428571,NA,"Julia Bingham","Finished","Full","Full","12%","counts may be low due to glare. algae is mostly diatoms on top of barnacles"
+"2015-01-18_YB-BDq1",2015-01-18,2015-01-18,"YB","BD","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Julia Bingham","Finished","Cropped","Full","6%","Counts may be low due to blur"
+"2015-01-18_YB-BDq5",2015-01-18,2015-01-18,"YB","BD","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Julia Bingham","Finished","Cropped","Full","8%",""
+"2015-01-18_YB-BDq7",2015-01-18,2015-01-18,"YB","BD","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%","counts may be low due to glare. algae is mostly diatoms on top of barnacles"
+"2015-01-18_YB-BDq1",2015-01-18,2015-01-18,"YB","BD","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","6%","Counts may be low due to blur"
+"2015-01-18_YB-BDq5",2015-01-18,2015-01-18,"YB","BD","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","8%",""
+"2015-01-18_YB-BDq7",2015-01-18,2015-01-18,"YB","BD","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%","counts may be low due to glare. algae is mostly diatoms on top of barnacles"
+"2015-01-18_YB-BDq1",2015-01-18,2015-01-18,"YB","BD","1","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Cropped","Full","6%","Counts may be low due to blur"
+"2015-01-18_YB-BDq5",2015-01-18,2015-01-18,"YB","BD","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","8%",""
+"2015-01-18_YB-BDq7",2015-01-18,2015-01-18,"YB","BD","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%","counts may be low due to glare. algae is mostly diatoms on top of barnacles"
+"2015-01-18_YB-BDq1",2015-01-18,2015-01-18,"YB","BD","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","6%","Counts may be low due to blur"
+"2015-01-18_YB-BDq5",2015-01-18,2015-01-18,"YB","BD","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","8%",""
+"2015-01-18_YB-BDq7",2015-01-18,2015-01-18,"YB","BD","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%","counts may be low due to glare. algae is mostly diatoms on top of barnacles"
+"2015-01-18_YB-BDq1",2015-01-18,2015-01-18,"YB","BD","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","6%","Counts may be low due to blur"
+"2015-01-18_YB-BDq5",2015-01-18,2015-01-18,"YB","BD","5","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Cropped","Full","8%",""
+"2015-01-18_YB-BDq7",2015-01-18,2015-01-18,"YB","BD","7","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Full","12%","counts may be low due to glare. algae is mostly diatoms on top of barnacles"
+"2015-01-18_YB-BDq1",2015-01-18,2015-01-18,"YB","BD","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","6%","Counts may be low due to blur"
+"2015-01-18_YB-BDq5",2015-01-18,2015-01-18,"YB","BD","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","8%",""
+"2015-01-18_YB-BDq7",2015-01-18,2015-01-18,"YB","BD","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%","counts may be low due to glare. algae is mostly diatoms on top of barnacles"
+"2015-01-18_YB-BDq1",2015-01-18,2015-01-18,"YB","BD","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","6%","Counts may be low due to blur"
+"2015-01-18_YB-BDq5",2015-01-18,2015-01-18,"YB","BD","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","8%",""
+"2015-01-18_YB-BDq7",2015-01-18,2015-01-18,"YB","BD","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%","counts may be low due to glare. algae is mostly diatoms on top of barnacles"
+"2015-01-18_YB-BDq1",2015-01-18,2015-01-18,"YB","BD","1","Pp","Pollicipes_polymerus","Type 11",1483,0.0875,16948.5714285714,NA,"Julia Bingham","Finished","Cropped","Full","6%","Counts may be low due to blur"
+"2015-01-18_YB-BDq5",2015-01-18,2015-01-18,"YB","BD","5","Pp","Pollicipes_polymerus","Type 11",1103,0.0875,12605.7142857143,NA,"Julia Bingham","Finished","Cropped","Full","8%",""
+"2015-01-18_YB-BDq7",2015-01-18,2015-01-18,"YB","BD","7","Pp","Pollicipes_polymerus","Type 11",650,0.0875,7428.57142857143,NA,"Julia Bingham","Finished","Full","Full","12%","counts may be low due to glare. algae is mostly diatoms on top of barnacles"
+"2015-01-18_YB-BDq1",2015-01-18,2015-01-18,"YB","BD","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","6%","Counts may be low due to blur"
+"2015-01-18_YB-BDq5",2015-01-18,2015-01-18,"YB","BD","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","8%",""
+"2015-01-18_YB-BDq7",2015-01-18,2015-01-18,"YB","BD","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%","counts may be low due to glare. algae is mostly diatoms on top of barnacles"
+"2015-01-18_YB-BDq1",2015-01-18,2015-01-18,"YB","BD","1","Sc","Semibalanus_cariosus","Type 5",6,0.0875,68.5714285714286,NA,"Julia Bingham","Finished","Cropped","Full","6%","Counts may be low due to blur"
+"2015-01-18_YB-BDq5",2015-01-18,2015-01-18,"YB","BD","5","Sc","Semibalanus_cariosus","Type 5",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Cropped","Full","8%",""
+"2015-01-18_YB-BDq7",2015-01-18,2015-01-18,"YB","BD","7","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","12%","counts may be low due to glare. algae is mostly diatoms on top of barnacles"
+"2015-01-18_YB-BDq1",2015-01-18,2015-01-18,"YB","BD","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","6%","Counts may be low due to blur"
+"2015-01-18_YB-BDq5",2015-01-18,2015-01-18,"YB","BD","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","8%",""
+"2015-01-18_YB-BDq7",2015-01-18,2015-01-18,"YB","BD","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%","counts may be low due to glare. algae is mostly diatoms on top of barnacles"
+"2015-01-18_YB-BEq2",2015-01-18,2015-01-18,"YB","BE","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to glare."
+"2015-01-18_YB-BEq3",2015-01-18,2015-01-18,"YB","BE","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to algae and glare."
+"2015-01-18_YB-BEq6",2015-01-18,2015-01-18,"YB","BE","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to algae and glare."
+"2015-01-18_YB-BEq2",2015-01-18,2015-01-18,"YB","BE","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to glare."
+"2015-01-18_YB-BEq3",2015-01-18,2015-01-18,"YB","BE","3","Ae","Anemones","Type 14",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to algae and glare."
+"2015-01-18_YB-BEq6",2015-01-18,2015-01-18,"YB","BE","6","Ae","Anemones","Type 14",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to algae and glare."
+"2015-01-18_YB-BEq2",2015-01-18,2015-01-18,"YB","BE","2","Bg","Balanus_glandula","Type 1",837,0.0875,9565.71428571429,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to glare."
+"2015-01-18_YB-BEq3",2015-01-18,2015-01-18,"YB","BE","3","Bg","Balanus_glandula","Type 1",1157,0.0875,13222.8571428571,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to algae and glare."
+"2015-01-18_YB-BEq6",2015-01-18,2015-01-18,"YB","BE","6","Bg","Balanus_glandula","Type 1",2031,0.0875,23211.4285714286,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to algae and glare."
+"2015-01-18_YB-BEq2",2015-01-18,2015-01-18,"YB","BE","2","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to glare."
+"2015-01-18_YB-BEq3",2015-01-18,2015-01-18,"YB","BE","3","BgD","Balanus_glandula_(dead)","Type 2",16,0.0875,182.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to algae and glare."
+"2015-01-18_YB-BEq6",2015-01-18,2015-01-18,"YB","BE","6","BgD","Balanus_glandula_(dead)","Type 2",56,0.0875,640,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to algae and glare."
+"2015-01-18_YB-BEq2",2015-01-18,2015-01-18,"YB","BE","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to glare."
+"2015-01-18_YB-BEq3",2015-01-18,2015-01-18,"YB","BE","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to algae and glare."
+"2015-01-18_YB-BEq6",2015-01-18,2015-01-18,"YB","BE","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to algae and glare."
+"2015-01-18_YB-BEq2",2015-01-18,2015-01-18,"YB","BE","2","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to glare."
+"2015-01-18_YB-BEq3",2015-01-18,2015-01-18,"YB","BE","3","Cth","Chthamalus_dalli","Type 3",58,0.0875,662.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to algae and glare."
+"2015-01-18_YB-BEq6",2015-01-18,2015-01-18,"YB","BE","6","Cth","Chthamalus_dalli","Type 3",150,0.0875,1714.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to algae and glare."
+"2015-01-18_YB-BEq2",2015-01-18,2015-01-18,"YB","BE","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to glare."
+"2015-01-18_YB-BEq3",2015-01-18,2015-01-18,"YB","BE","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to algae and glare."
+"2015-01-18_YB-BEq6",2015-01-18,2015-01-18,"YB","BE","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to algae and glare."
+"2015-01-18_YB-BEq2",2015-01-18,2015-01-18,"YB","BE","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to glare."
+"2015-01-18_YB-BEq3",2015-01-18,2015-01-18,"YB","BE","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to algae and glare."
+"2015-01-18_YB-BEq6",2015-01-18,2015-01-18,"YB","BE","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to algae and glare."
+"2015-01-18_YB-BEq2",2015-01-18,2015-01-18,"YB","BE","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to glare."
+"2015-01-18_YB-BEq3",2015-01-18,2015-01-18,"YB","BE","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to algae and glare."
+"2015-01-18_YB-BEq6",2015-01-18,2015-01-18,"YB","BE","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to algae and glare."
+"2015-01-18_YB-BEq2",2015-01-18,2015-01-18,"YB","BE","2","Lim","Limpets","Type 12",52,0.0875,594.285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to glare."
+"2015-01-18_YB-BEq3",2015-01-18,2015-01-18,"YB","BE","3","Lim","Limpets","Type 12",169,0.0875,1931.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to algae and glare."
+"2015-01-18_YB-BEq6",2015-01-18,2015-01-18,"YB","BE","6","Lim","Limpets","Type 12",226,0.0875,2582.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to algae and glare."
+"2015-01-18_YB-BEq2",2015-01-18,2015-01-18,"YB","BE","2","Ls","Littorina_sitkana","Type 13",506,0.0875,5782.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to glare."
+"2015-01-18_YB-BEq3",2015-01-18,2015-01-18,"YB","BE","3","Ls","Littorina_sitkana","Type 13",198,0.0875,2262.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to algae and glare."
+"2015-01-18_YB-BEq6",2015-01-18,2015-01-18,"YB","BE","6","Ls","Littorina_sitkana","Type 13",364,0.0875,4160,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to algae and glare."
+"2015-01-18_YB-BEq2",2015-01-18,2015-01-18,"YB","BE","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to glare."
+"2015-01-18_YB-BEq3",2015-01-18,2015-01-18,"YB","BE","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to algae and glare."
+"2015-01-18_YB-BEq6",2015-01-18,2015-01-18,"YB","BE","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to algae and glare."
+"2015-01-18_YB-BEq2",2015-01-18,2015-01-18,"YB","BE","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to glare."
+"2015-01-18_YB-BEq3",2015-01-18,2015-01-18,"YB","BE","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to algae and glare."
+"2015-01-18_YB-BEq6",2015-01-18,2015-01-18,"YB","BE","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to algae and glare."
+"2015-01-18_YB-BEq2",2015-01-18,2015-01-18,"YB","BE","2","Myt","Mytilus_spp","Type 7",184,0.0875,2102.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to glare."
+"2015-01-18_YB-BEq3",2015-01-18,2015-01-18,"YB","BE","3","Myt","Mytilus_spp","Type 7",131,0.0875,1497.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to algae and glare."
+"2015-01-18_YB-BEq6",2015-01-18,2015-01-18,"YB","BE","6","Myt","Mytilus_spp","Type 7",175,0.0875,2000,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to algae and glare."
+"2015-01-18_YB-BEq2",2015-01-18,2015-01-18,"YB","BE","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to glare."
+"2015-01-18_YB-BEq3",2015-01-18,2015-01-18,"YB","BE","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to algae and glare."
+"2015-01-18_YB-BEq6",2015-01-18,2015-01-18,"YB","BE","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to algae and glare."
+"2015-01-18_YB-BEq2",2015-01-18,2015-01-18,"YB","BE","2","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to glare."
+"2015-01-18_YB-BEq3",2015-01-18,2015-01-18,"YB","BE","3","Mt","Mytilus_trossulus","Type 15",40,0.0875,457.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to algae and glare."
+"2015-01-18_YB-BEq6",2015-01-18,2015-01-18,"YB","BE","6","Mt","Mytilus_trossulus","Type 15",10,0.0875,114.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to algae and glare."
+"2015-01-18_YB-BEq2",2015-01-18,2015-01-18,"YB","BE","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to glare."
+"2015-01-18_YB-BEq3",2015-01-18,2015-01-18,"YB","BE","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to algae and glare."
+"2015-01-18_YB-BEq6",2015-01-18,2015-01-18,"YB","BE","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to algae and glare."
+"2015-01-18_YB-BEq2",2015-01-18,2015-01-18,"YB","BE","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to glare."
+"2015-01-18_YB-BEq3",2015-01-18,2015-01-18,"YB","BE","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to algae and glare."
+"2015-01-18_YB-BEq6",2015-01-18,2015-01-18,"YB","BE","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to algae and glare."
+"2015-01-18_YB-BEq2",2015-01-18,2015-01-18,"YB","BE","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to glare."
+"2015-01-18_YB-BEq3",2015-01-18,2015-01-18,"YB","BE","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to algae and glare."
+"2015-01-18_YB-BEq6",2015-01-18,2015-01-18,"YB","BE","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to algae and glare."
+"2015-01-18_YB-BEq2",2015-01-18,2015-01-18,"YB","BE","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to glare."
+"2015-01-18_YB-BEq3",2015-01-18,2015-01-18,"YB","BE","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to algae and glare."
+"2015-01-18_YB-BEq6",2015-01-18,2015-01-18,"YB","BE","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to algae and glare."
+"2015-01-18_YB-BEq2",2015-01-18,2015-01-18,"YB","BE","2","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to glare."
+"2015-01-18_YB-BEq3",2015-01-18,2015-01-18,"YB","BE","3","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to algae and glare."
+"2015-01-18_YB-BEq6",2015-01-18,2015-01-18,"YB","BE","6","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to algae and glare."
+"2015-01-18_YB-BEq2",2015-01-18,2015-01-18,"YB","BE","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to glare."
+"2015-01-18_YB-BEq3",2015-01-18,2015-01-18,"YB","BE","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to algae and glare."
+"2015-01-18_YB-BEq6",2015-01-18,2015-01-18,"YB","BE","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to algae and glare."
+"2015-01-18_YB-BEq2",2015-01-18,2015-01-18,"YB","BE","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to glare."
+"2015-01-18_YB-BEq3",2015-01-18,2015-01-18,"YB","BE","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to algae and glare."
+"2015-01-18_YB-BEq6",2015-01-18,2015-01-18,"YB","BE","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to algae and glare."
+"2015-01-18_YB-BEq2",2015-01-18,2015-01-18,"YB","BE","2","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to glare."
+"2015-01-18_YB-BEq3",2015-01-18,2015-01-18,"YB","BE","3","Pp","Pollicipes_polymerus","Type 11",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to algae and glare."
+"2015-01-18_YB-BEq6",2015-01-18,2015-01-18,"YB","BE","6","Pp","Pollicipes_polymerus","Type 11",11,0.0875,125.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to algae and glare."
+"2015-01-18_YB-BEq2",2015-01-18,2015-01-18,"YB","BE","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to glare."
+"2015-01-18_YB-BEq3",2015-01-18,2015-01-18,"YB","BE","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to algae and glare."
+"2015-01-18_YB-BEq6",2015-01-18,2015-01-18,"YB","BE","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to algae and glare."
+"2015-01-18_YB-BEq2",2015-01-18,2015-01-18,"YB","BE","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to glare."
+"2015-01-18_YB-BEq3",2015-01-18,2015-01-18,"YB","BE","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to algae and glare."
+"2015-01-18_YB-BEq6",2015-01-18,2015-01-18,"YB","BE","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to algae and glare."
+"2015-01-18_YB-BEq2",2015-01-18,2015-01-18,"YB","BE","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts may be low due to glare."
+"2015-01-18_YB-BEq3",2015-01-18,2015-01-18,"YB","BE","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to algae and glare."
+"2015-01-18_YB-BEq6",2015-01-18,2015-01-18,"YB","BE","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to algae and glare."
+"2015-01-18_YB-BFq1",2015-01-18,2015-01-18,"YB","BF","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-01-18_YB-BFq4",2015-01-18,2015-01-18,"YB","BF","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%","blur along edges of patch - individual barnacles difficult to distinguish"
+"2015-01-18_YB-BFq9",2015-01-18,2015-01-18,"YB","BF","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","8%","Counts may be low due to glare"
+"2015-01-18_YB-BFq1",2015-01-18,2015-01-18,"YB","BF","1","Ae","Anemones","Type 14",10,0.0875,114.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-01-18_YB-BFq4",2015-01-18,2015-01-18,"YB","BF","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%","blur along edges of patch - individual barnacles difficult to distinguish"
+"2015-01-18_YB-BFq9",2015-01-18,2015-01-18,"YB","BF","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","8%","Counts may be low due to glare"
+"2015-01-18_YB-BFq1",2015-01-18,2015-01-18,"YB","BF","1","Bg","Balanus_glandula","Type 1",888,0.0875,10148.5714285714,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-01-18_YB-BFq4",2015-01-18,2015-01-18,"YB","BF","4","Bg","Balanus_glandula","Type 1",2718,0.0875,31062.8571428571,NA,"Julia Bingham","Finished","Full","Full","12%","blur along edges of patch - individual barnacles difficult to distinguish"
+"2015-01-18_YB-BFq9",2015-01-18,2015-01-18,"YB","BF","9","Bg","Balanus_glandula","Type 1",765,0.0875,8742.85714285714,NA,"Julia Bingham","Finished","Cropped","Full","8%","Counts may be low due to glare"
+"2015-01-18_YB-BFq1",2015-01-18,2015-01-18,"YB","BF","1","BgD","Balanus_glandula_(dead)","Type 2",18,0.0875,205.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-01-18_YB-BFq4",2015-01-18,2015-01-18,"YB","BF","4","BgD","Balanus_glandula_(dead)","Type 2",280,0.0875,3200,NA,"Julia Bingham","Finished","Full","Full","12%","blur along edges of patch - individual barnacles difficult to distinguish"
+"2015-01-18_YB-BFq9",2015-01-18,2015-01-18,"YB","BF","9","BgD","Balanus_glandula_(dead)","Type 2",108,0.0875,1234.28571428571,NA,"Julia Bingham","Finished","Cropped","Full","8%","Counts may be low due to glare"
+"2015-01-18_YB-BFq1",2015-01-18,2015-01-18,"YB","BF","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-01-18_YB-BFq4",2015-01-18,2015-01-18,"YB","BF","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%","blur along edges of patch - individual barnacles difficult to distinguish"
+"2015-01-18_YB-BFq9",2015-01-18,2015-01-18,"YB","BF","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","8%","Counts may be low due to glare"
+"2015-01-18_YB-BFq1",2015-01-18,2015-01-18,"YB","BF","1","Cth","Chthamalus_dalli","Type 3",150,0.0875,1714.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-01-18_YB-BFq4",2015-01-18,2015-01-18,"YB","BF","4","Cth","Chthamalus_dalli","Type 3",33,0.0875,377.142857142857,NA,"Julia Bingham","Finished","Full","Full","12%","blur along edges of patch - individual barnacles difficult to distinguish"
+"2015-01-18_YB-BFq9",2015-01-18,2015-01-18,"YB","BF","9","Cth","Chthamalus_dalli","Type 3",5,0.0875,57.1428571428571,NA,"Julia Bingham","Finished","Cropped","Full","8%","Counts may be low due to glare"
+"2015-01-18_YB-BFq1",2015-01-18,2015-01-18,"YB","BF","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-01-18_YB-BFq4",2015-01-18,2015-01-18,"YB","BF","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%","blur along edges of patch - individual barnacles difficult to distinguish"
+"2015-01-18_YB-BFq9",2015-01-18,2015-01-18,"YB","BF","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","8%","Counts may be low due to glare"
+"2015-01-18_YB-BFq1",2015-01-18,2015-01-18,"YB","BF","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-01-18_YB-BFq4",2015-01-18,2015-01-18,"YB","BF","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%","blur along edges of patch - individual barnacles difficult to distinguish"
+"2015-01-18_YB-BFq9",2015-01-18,2015-01-18,"YB","BF","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","8%","Counts may be low due to glare"
+"2015-01-18_YB-BFq1",2015-01-18,2015-01-18,"YB","BF","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-01-18_YB-BFq4",2015-01-18,2015-01-18,"YB","BF","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%","blur along edges of patch - individual barnacles difficult to distinguish"
+"2015-01-18_YB-BFq9",2015-01-18,2015-01-18,"YB","BF","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","8%","Counts may be low due to glare"
+"2015-01-18_YB-BFq1",2015-01-18,2015-01-18,"YB","BF","1","Lim","Limpets","Type 12",234,0.0875,2674.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-01-18_YB-BFq4",2015-01-18,2015-01-18,"YB","BF","4","Lim","Limpets","Type 12",81,0.0875,925.714285714286,NA,"Julia Bingham","Finished","Full","Full","12%","blur along edges of patch - individual barnacles difficult to distinguish"
+"2015-01-18_YB-BFq9",2015-01-18,2015-01-18,"YB","BF","9","Lim","Limpets","Type 12",78,0.0875,891.428571428571,NA,"Julia Bingham","Finished","Cropped","Full","8%","Counts may be low due to glare"
+"2015-01-18_YB-BFq1",2015-01-18,2015-01-18,"YB","BF","1","Ls","Littorina_sitkana","Type 13",223,0.0875,2548.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-01-18_YB-BFq4",2015-01-18,2015-01-18,"YB","BF","4","Ls","Littorina_sitkana","Type 13",242,0.0875,2765.71428571429,NA,"Julia Bingham","Finished","Full","Full","12%","blur along edges of patch - individual barnacles difficult to distinguish"
+"2015-01-18_YB-BFq9",2015-01-18,2015-01-18,"YB","BF","9","Ls","Littorina_sitkana","Type 13",78,0.0875,891.428571428571,NA,"Julia Bingham","Finished","Cropped","Full","8%","Counts may be low due to glare"
+"2015-01-18_YB-BFq1",2015-01-18,2015-01-18,"YB","BF","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-01-18_YB-BFq4",2015-01-18,2015-01-18,"YB","BF","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%","blur along edges of patch - individual barnacles difficult to distinguish"
+"2015-01-18_YB-BFq9",2015-01-18,2015-01-18,"YB","BF","9","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Julia Bingham","Finished","Cropped","Full","8%","Counts may be low due to glare"
+"2015-01-18_YB-BFq1",2015-01-18,2015-01-18,"YB","BF","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-01-18_YB-BFq4",2015-01-18,2015-01-18,"YB","BF","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%","blur along edges of patch - individual barnacles difficult to distinguish"
+"2015-01-18_YB-BFq9",2015-01-18,2015-01-18,"YB","BF","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Julia Bingham","Finished","Cropped","Full","8%","Counts may be low due to glare"
+"2015-01-18_YB-BFq1",2015-01-18,2015-01-18,"YB","BF","1","Myt","Mytilus_spp","Type 7",128,0.0875,1462.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-01-18_YB-BFq4",2015-01-18,2015-01-18,"YB","BF","4","Myt","Mytilus_spp","Type 7",587,0.0875,6708.57142857143,NA,"Julia Bingham","Finished","Full","Full","12%","blur along edges of patch - individual barnacles difficult to distinguish"
+"2015-01-18_YB-BFq9",2015-01-18,2015-01-18,"YB","BF","9","Myt","Mytilus_spp","Type 7",351,0.015625,22464,"c","Julia Bingham","Finished","Cropped","Full","8%","Counts may be low due to glare"
+"2015-01-18_YB-BFq1",2015-01-18,2015-01-18,"YB","BF","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-01-18_YB-BFq4",2015-01-18,2015-01-18,"YB","BF","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%","blur along edges of patch - individual barnacles difficult to distinguish"
+"2015-01-18_YB-BFq9",2015-01-18,2015-01-18,"YB","BF","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Julia Bingham","Finished","Cropped","Full","8%","Counts may be low due to glare"
+"2015-01-18_YB-BFq1",2015-01-18,2015-01-18,"YB","BF","1","Mt","Mytilus_trossulus","Type 15",211,0.0875,2411.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-01-18_YB-BFq4",2015-01-18,2015-01-18,"YB","BF","4","Mt","Mytilus_trossulus","Type 15",67,0.0875,765.714285714286,NA,"Julia Bingham","Finished","Full","Full","12%","blur along edges of patch - individual barnacles difficult to distinguish"
+"2015-01-18_YB-BFq9",2015-01-18,2015-01-18,"YB","BF","9","Mt","Mytilus_trossulus","Type 15",20,0.015625,1280,"c","Julia Bingham","Finished","Cropped","Full","8%","Counts may be low due to glare"
+"2015-01-18_YB-BFq1",2015-01-18,2015-01-18,"YB","BF","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-01-18_YB-BFq4",2015-01-18,2015-01-18,"YB","BF","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%","blur along edges of patch - individual barnacles difficult to distinguish"
+"2015-01-18_YB-BFq9",2015-01-18,2015-01-18,"YB","BF","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Julia Bingham","Finished","Cropped","Full","8%","Counts may be low due to glare"
+"2015-01-18_YB-BFq1",2015-01-18,2015-01-18,"YB","BF","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-01-18_YB-BFq4",2015-01-18,2015-01-18,"YB","BF","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%","blur along edges of patch - individual barnacles difficult to distinguish"
+"2015-01-18_YB-BFq9",2015-01-18,2015-01-18,"YB","BF","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","8%","Counts may be low due to glare"
+"2015-01-18_YB-BFq1",2015-01-18,2015-01-18,"YB","BF","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-01-18_YB-BFq4",2015-01-18,2015-01-18,"YB","BF","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%","blur along edges of patch - individual barnacles difficult to distinguish"
+"2015-01-18_YB-BFq9",2015-01-18,2015-01-18,"YB","BF","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","8%","Counts may be low due to glare"
+"2015-01-18_YB-BFq1",2015-01-18,2015-01-18,"YB","BF","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-01-18_YB-BFq4",2015-01-18,2015-01-18,"YB","BF","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%","blur along edges of patch - individual barnacles difficult to distinguish"
+"2015-01-18_YB-BFq9",2015-01-18,2015-01-18,"YB","BF","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","8%","Counts may be low due to glare"
+"2015-01-18_YB-BFq1",2015-01-18,2015-01-18,"YB","BF","1","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-01-18_YB-BFq4",2015-01-18,2015-01-18,"YB","BF","4","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","12%","blur along edges of patch - individual barnacles difficult to distinguish"
+"2015-01-18_YB-BFq9",2015-01-18,2015-01-18,"YB","BF","9","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","8%","Counts may be low due to glare"
+"2015-01-18_YB-BFq1",2015-01-18,2015-01-18,"YB","BF","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-01-18_YB-BFq4",2015-01-18,2015-01-18,"YB","BF","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%","blur along edges of patch - individual barnacles difficult to distinguish"
+"2015-01-18_YB-BFq9",2015-01-18,2015-01-18,"YB","BF","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","8%","Counts may be low due to glare"
+"2015-01-18_YB-BFq1",2015-01-18,2015-01-18,"YB","BF","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-01-18_YB-BFq4",2015-01-18,2015-01-18,"YB","BF","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%","blur along edges of patch - individual barnacles difficult to distinguish"
+"2015-01-18_YB-BFq9",2015-01-18,2015-01-18,"YB","BF","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","8%","Counts may be low due to glare"
+"2015-01-18_YB-BFq1",2015-01-18,2015-01-18,"YB","BF","1","Pp","Pollicipes_polymerus","Type 11",26,0.0875,297.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-01-18_YB-BFq4",2015-01-18,2015-01-18,"YB","BF","4","Pp","Pollicipes_polymerus","Type 11",5,0.0875,57.1428571428571,NA,"Julia Bingham","Finished","Full","Full","12%","blur along edges of patch - individual barnacles difficult to distinguish"
+"2015-01-18_YB-BFq9",2015-01-18,2015-01-18,"YB","BF","9","Pp","Pollicipes_polymerus","Type 11",97,0.0875,1108.57142857143,NA,"Julia Bingham","Finished","Cropped","Full","8%","Counts may be low due to glare"
+"2015-01-18_YB-BFq1",2015-01-18,2015-01-18,"YB","BF","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-01-18_YB-BFq4",2015-01-18,2015-01-18,"YB","BF","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%","blur along edges of patch - individual barnacles difficult to distinguish"
+"2015-01-18_YB-BFq9",2015-01-18,2015-01-18,"YB","BF","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","8%","Counts may be low due to glare"
+"2015-01-18_YB-BFq1",2015-01-18,2015-01-18,"YB","BF","1","Sc","Semibalanus_cariosus","Type 5",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-01-18_YB-BFq4",2015-01-18,2015-01-18,"YB","BF","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%","blur along edges of patch - individual barnacles difficult to distinguish"
+"2015-01-18_YB-BFq9",2015-01-18,2015-01-18,"YB","BF","9","Sc","Semibalanus_cariosus","Type 5",5,0.0875,57.1428571428571,NA,"Julia Bingham","Finished","Cropped","Full","8%","Counts may be low due to glare"
+"2015-01-18_YB-BFq1",2015-01-18,2015-01-18,"YB","BF","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-01-18_YB-BFq4",2015-01-18,2015-01-18,"YB","BF","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%","blur along edges of patch - individual barnacles difficult to distinguish"
+"2015-01-18_YB-BFq9",2015-01-18,2015-01-18,"YB","BF","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","8%","Counts may be low due to glare"
+"2015-01-18_YB-Cq2",2015-01-18,2015-01-18,"YB","C","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-01-18_YB-Cq4",2015-01-18,2015-01-18,"YB","C","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-01-18_YB-Cq6",2015-01-18,2015-01-18,"YB","C","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-01-18_YB-Cq2",2015-01-18,2015-01-18,"YB","C","2","Ae","Anemones","Type 14",27,0.0875,308.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-01-18_YB-Cq4",2015-01-18,2015-01-18,"YB","C","4","Ae","Anemones","Type 14",18,0.0875,205.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-01-18_YB-Cq6",2015-01-18,2015-01-18,"YB","C","6","Ae","Anemones","Type 14",13,0.0875,148.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-01-18_YB-Cq2",2015-01-18,2015-01-18,"YB","C","2","Bg","Balanus_glandula","Type 1",403,0.0875,4605.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-01-18_YB-Cq4",2015-01-18,2015-01-18,"YB","C","4","Bg","Balanus_glandula","Type 1",440,0.0875,5028.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-01-18_YB-Cq6",2015-01-18,2015-01-18,"YB","C","6","Bg","Balanus_glandula","Type 1",236,0.0875,2697.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-01-18_YB-Cq2",2015-01-18,2015-01-18,"YB","C","2","BgD","Balanus_glandula_(dead)","Type 2",40,0.0875,457.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-01-18_YB-Cq4",2015-01-18,2015-01-18,"YB","C","4","BgD","Balanus_glandula_(dead)","Type 2",120,0.0875,1371.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-01-18_YB-Cq6",2015-01-18,2015-01-18,"YB","C","6","BgD","Balanus_glandula_(dead)","Type 2",43,0.0875,491.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-01-18_YB-Cq2",2015-01-18,2015-01-18,"YB","C","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-01-18_YB-Cq4",2015-01-18,2015-01-18,"YB","C","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-01-18_YB-Cq6",2015-01-18,2015-01-18,"YB","C","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-01-18_YB-Cq2",2015-01-18,2015-01-18,"YB","C","2","Cth","Chthamalus_dalli","Type 3",11,0.0875,125.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-01-18_YB-Cq4",2015-01-18,2015-01-18,"YB","C","4","Cth","Chthamalus_dalli","Type 3",134,0.0875,1531.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-01-18_YB-Cq6",2015-01-18,2015-01-18,"YB","C","6","Cth","Chthamalus_dalli","Type 3",79,0.0875,902.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-01-18_YB-Cq2",2015-01-18,2015-01-18,"YB","C","2","CthD","Chthamalus_dalli (dead)","Type 4",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-01-18_YB-Cq4",2015-01-18,2015-01-18,"YB","C","4","CthD","Chthamalus_dalli (dead)","Type 4",10,0.0875,114.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-01-18_YB-Cq6",2015-01-18,2015-01-18,"YB","C","6","CthD","Chthamalus_dalli (dead)","Type 4",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-01-18_YB-Cq2",2015-01-18,2015-01-18,"YB","C","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-01-18_YB-Cq4",2015-01-18,2015-01-18,"YB","C","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-01-18_YB-Cq6",2015-01-18,2015-01-18,"YB","C","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-01-18_YB-Cq2",2015-01-18,2015-01-18,"YB","C","2","Lep","Leptasterias","Type 20",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-01-18_YB-Cq4",2015-01-18,2015-01-18,"YB","C","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-01-18_YB-Cq6",2015-01-18,2015-01-18,"YB","C","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-01-18_YB-Cq2",2015-01-18,2015-01-18,"YB","C","2","Lim","Limpets","Type 12",106,0.0875,1211.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-01-18_YB-Cq4",2015-01-18,2015-01-18,"YB","C","4","Lim","Limpets","Type 12",53,0.0875,605.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-01-18_YB-Cq6",2015-01-18,2015-01-18,"YB","C","6","Lim","Limpets","Type 12",103,0.0875,1177.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-01-18_YB-Cq2",2015-01-18,2015-01-18,"YB","C","2","Ls","Littorina_sitkana","Type 13",20,0.0875,228.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-01-18_YB-Cq4",2015-01-18,2015-01-18,"YB","C","4","Ls","Littorina_sitkana","Type 13",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-01-18_YB-Cq6",2015-01-18,2015-01-18,"YB","C","6","Ls","Littorina_sitkana","Type 13",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-01-18_YB-Cq2",2015-01-18,2015-01-18,"YB","C","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-01-18_YB-Cq4",2015-01-18,2015-01-18,"YB","C","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-01-18_YB-Cq6",2015-01-18,2015-01-18,"YB","C","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-01-18_YB-Cq2",2015-01-18,2015-01-18,"YB","C","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-01-18_YB-Cq4",2015-01-18,2015-01-18,"YB","C","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-01-18_YB-Cq6",2015-01-18,2015-01-18,"YB","C","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-01-18_YB-Cq2",2015-01-18,2015-01-18,"YB","C","2","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-01-18_YB-Cq4",2015-01-18,2015-01-18,"YB","C","4","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-01-18_YB-Cq6",2015-01-18,2015-01-18,"YB","C","6","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-01-18_YB-Cq2",2015-01-18,2015-01-18,"YB","C","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-01-18_YB-Cq4",2015-01-18,2015-01-18,"YB","C","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-01-18_YB-Cq6",2015-01-18,2015-01-18,"YB","C","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-01-18_YB-Cq2",2015-01-18,2015-01-18,"YB","C","2","Mt","Mytilus_trossulus","Type 15",174,0.0875,1988.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-01-18_YB-Cq4",2015-01-18,2015-01-18,"YB","C","4","Mt","Mytilus_trossulus","Type 15",134,0.0875,1531.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-01-18_YB-Cq6",2015-01-18,2015-01-18,"YB","C","6","Mt","Mytilus_trossulus","Type 15",123,0.0875,1405.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-01-18_YB-Cq2",2015-01-18,2015-01-18,"YB","C","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-01-18_YB-Cq4",2015-01-18,2015-01-18,"YB","C","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-01-18_YB-Cq6",2015-01-18,2015-01-18,"YB","C","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-01-18_YB-Cq2",2015-01-18,2015-01-18,"YB","C","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-01-18_YB-Cq4",2015-01-18,2015-01-18,"YB","C","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-01-18_YB-Cq6",2015-01-18,2015-01-18,"YB","C","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-01-18_YB-Cq2",2015-01-18,2015-01-18,"YB","C","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-01-18_YB-Cq4",2015-01-18,2015-01-18,"YB","C","4","Nc","Nucella_canaliculata","Type 10",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-01-18_YB-Cq6",2015-01-18,2015-01-18,"YB","C","6","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-01-18_YB-Cq2",2015-01-18,2015-01-18,"YB","C","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-01-18_YB-Cq4",2015-01-18,2015-01-18,"YB","C","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-01-18_YB-Cq6",2015-01-18,2015-01-18,"YB","C","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-01-18_YB-Cq2",2015-01-18,2015-01-18,"YB","C","2","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-01-18_YB-Cq4",2015-01-18,2015-01-18,"YB","C","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-01-18_YB-Cq6",2015-01-18,2015-01-18,"YB","C","6","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-01-18_YB-Cq2",2015-01-18,2015-01-18,"YB","C","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-01-18_YB-Cq4",2015-01-18,2015-01-18,"YB","C","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-01-18_YB-Cq6",2015-01-18,2015-01-18,"YB","C","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-01-18_YB-Cq2",2015-01-18,2015-01-18,"YB","C","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-01-18_YB-Cq4",2015-01-18,2015-01-18,"YB","C","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-01-18_YB-Cq6",2015-01-18,2015-01-18,"YB","C","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-01-18_YB-Cq2",2015-01-18,2015-01-18,"YB","C","2","Pp","Pollicipes_polymerus","Type 11",220,0.0875,2514.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-01-18_YB-Cq4",2015-01-18,2015-01-18,"YB","C","4","Pp","Pollicipes_polymerus","Type 11",143,0.0875,1634.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-01-18_YB-Cq6",2015-01-18,2015-01-18,"YB","C","6","Pp","Pollicipes_polymerus","Type 11",57,0.0875,651.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-01-18_YB-Cq2",2015-01-18,2015-01-18,"YB","C","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-01-18_YB-Cq4",2015-01-18,2015-01-18,"YB","C","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-01-18_YB-Cq6",2015-01-18,2015-01-18,"YB","C","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-01-18_YB-Cq2",2015-01-18,2015-01-18,"YB","C","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-01-18_YB-Cq4",2015-01-18,2015-01-18,"YB","C","4","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-01-18_YB-Cq6",2015-01-18,2015-01-18,"YB","C","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-01-18_YB-Cq2",2015-01-18,2015-01-18,"YB","C","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-01-18_YB-Cq4",2015-01-18,2015-01-18,"YB","C","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-01-18_YB-Cq6",2015-01-18,2015-01-18,"YB","C","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-01-18_YB-Dq3",2015-01-18,2015-01-18,"YB","D","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2015-01-18_YB-Dq4",2015-01-18,2015-01-18,"YB","D","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-01-18_YB-Dq5",2015-01-18,2015-01-18,"YB","D","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2015-01-18_YB-Dq3",2015-01-18,2015-01-18,"YB","D","3","Ae","Anemones","Type 14",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2015-01-18_YB-Dq4",2015-01-18,2015-01-18,"YB","D","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-01-18_YB-Dq5",2015-01-18,2015-01-18,"YB","D","5","Ae","Anemones","Type 14",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2015-01-18_YB-Dq3",2015-01-18,2015-01-18,"YB","D","3","Bg","Balanus_glandula","Type 1",129,0.015625,8256,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2015-01-18_YB-Dq4",2015-01-18,2015-01-18,"YB","D","4","Bg","Balanus_glandula","Type 1",1428,0.0875,16320,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-01-18_YB-Dq5",2015-01-18,2015-01-18,"YB","D","5","Bg","Balanus_glandula","Type 1",210,0.015625,13440,"c","Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2015-01-18_YB-Dq3",2015-01-18,2015-01-18,"YB","D","3","BgD","Balanus_glandula_(dead)","Type 2",12,0.015625,768,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2015-01-18_YB-Dq4",2015-01-18,2015-01-18,"YB","D","4","BgD","Balanus_glandula_(dead)","Type 2",19,0.0875,217.142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-01-18_YB-Dq5",2015-01-18,2015-01-18,"YB","D","5","BgD","Balanus_glandula_(dead)","Type 2",34,0.015625,2176,"c","Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2015-01-18_YB-Dq3",2015-01-18,2015-01-18,"YB","D","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2015-01-18_YB-Dq4",2015-01-18,2015-01-18,"YB","D","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-01-18_YB-Dq5",2015-01-18,2015-01-18,"YB","D","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2015-01-18_YB-Dq3",2015-01-18,2015-01-18,"YB","D","3","Cth","Chthamalus_dalli","Type 3",7,0.015625,448,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2015-01-18_YB-Dq4",2015-01-18,2015-01-18,"YB","D","4","Cth","Chthamalus_dalli","Type 3",16,0.0875,182.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-01-18_YB-Dq5",2015-01-18,2015-01-18,"YB","D","5","Cth","Chthamalus_dalli","Type 3",14,0.015625,896,"c","Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2015-01-18_YB-Dq3",2015-01-18,2015-01-18,"YB","D","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2015-01-18_YB-Dq4",2015-01-18,2015-01-18,"YB","D","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-01-18_YB-Dq5",2015-01-18,2015-01-18,"YB","D","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2015-01-18_YB-Dq3",2015-01-18,2015-01-18,"YB","D","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2015-01-18_YB-Dq4",2015-01-18,2015-01-18,"YB","D","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-01-18_YB-Dq5",2015-01-18,2015-01-18,"YB","D","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2015-01-18_YB-Dq3",2015-01-18,2015-01-18,"YB","D","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2015-01-18_YB-Dq4",2015-01-18,2015-01-18,"YB","D","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-01-18_YB-Dq5",2015-01-18,2015-01-18,"YB","D","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2015-01-18_YB-Dq3",2015-01-18,2015-01-18,"YB","D","3","Lim","Limpets","Type 12",30,0.0875,342.857142857143,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2015-01-18_YB-Dq4",2015-01-18,2015-01-18,"YB","D","4","Lim","Limpets","Type 12",16,0.0875,182.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-01-18_YB-Dq5",2015-01-18,2015-01-18,"YB","D","5","Lim","Limpets","Type 12",247,0.0875,2822.85714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2015-01-18_YB-Dq3",2015-01-18,2015-01-18,"YB","D","3","Ls","Littorina_sitkana","Type 13",63,0.0875,720,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2015-01-18_YB-Dq4",2015-01-18,2015-01-18,"YB","D","4","Ls","Littorina_sitkana","Type 13",127,0.0875,1451.42857142857,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-01-18_YB-Dq5",2015-01-18,2015-01-18,"YB","D","5","Ls","Littorina_sitkana","Type 13",198,0.0875,2262.85714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2015-01-18_YB-Dq3",2015-01-18,2015-01-18,"YB","D","3","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2015-01-18_YB-Dq4",2015-01-18,2015-01-18,"YB","D","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-01-18_YB-Dq5",2015-01-18,2015-01-18,"YB","D","5","Mc","Mytilus_californianus","Type 17",149,0.0875,1702.85714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2015-01-18_YB-Dq3",2015-01-18,2015-01-18,"YB","D","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2015-01-18_YB-Dq4",2015-01-18,2015-01-18,"YB","D","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-01-18_YB-Dq5",2015-01-18,2015-01-18,"YB","D","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2015-01-18_YB-Dq3",2015-01-18,2015-01-18,"YB","D","3","Myt","Mytilus_spp","Type 7",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2015-01-18_YB-Dq4",2015-01-18,2015-01-18,"YB","D","4","Myt","Mytilus_spp","Type 7",332,0.0875,3794.28571428571,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-01-18_YB-Dq5",2015-01-18,2015-01-18,"YB","D","5","Myt","Mytilus_spp","Type 7",184,0.0875,2102.85714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2015-01-18_YB-Dq3",2015-01-18,2015-01-18,"YB","D","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2015-01-18_YB-Dq4",2015-01-18,2015-01-18,"YB","D","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-01-18_YB-Dq5",2015-01-18,2015-01-18,"YB","D","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2015-01-18_YB-Dq3",2015-01-18,2015-01-18,"YB","D","3","Mt","Mytilus_trossulus","Type 15",99,0.015625,6336,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2015-01-18_YB-Dq4",2015-01-18,2015-01-18,"YB","D","4","Mt","Mytilus_trossulus","Type 15",140,0.0875,1600,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-01-18_YB-Dq5",2015-01-18,2015-01-18,"YB","D","5","Mt","Mytilus_trossulus","Type 15",143,0.0875,1634.28571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2015-01-18_YB-Dq3",2015-01-18,2015-01-18,"YB","D","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2015-01-18_YB-Dq4",2015-01-18,2015-01-18,"YB","D","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-01-18_YB-Dq5",2015-01-18,2015-01-18,"YB","D","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2015-01-18_YB-Dq3",2015-01-18,2015-01-18,"YB","D","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2015-01-18_YB-Dq4",2015-01-18,2015-01-18,"YB","D","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-01-18_YB-Dq5",2015-01-18,2015-01-18,"YB","D","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2015-01-18_YB-Dq3",2015-01-18,2015-01-18,"YB","D","3","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2015-01-18_YB-Dq4",2015-01-18,2015-01-18,"YB","D","4","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-01-18_YB-Dq5",2015-01-18,2015-01-18,"YB","D","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2015-01-18_YB-Dq3",2015-01-18,2015-01-18,"YB","D","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2015-01-18_YB-Dq4",2015-01-18,2015-01-18,"YB","D","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-01-18_YB-Dq5",2015-01-18,2015-01-18,"YB","D","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2015-01-18_YB-Dq3",2015-01-18,2015-01-18,"YB","D","3","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2015-01-18_YB-Dq4",2015-01-18,2015-01-18,"YB","D","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-01-18_YB-Dq5",2015-01-18,2015-01-18,"YB","D","5","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2015-01-18_YB-Dq3",2015-01-18,2015-01-18,"YB","D","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2015-01-18_YB-Dq4",2015-01-18,2015-01-18,"YB","D","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-01-18_YB-Dq5",2015-01-18,2015-01-18,"YB","D","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2015-01-18_YB-Dq3",2015-01-18,2015-01-18,"YB","D","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2015-01-18_YB-Dq4",2015-01-18,2015-01-18,"YB","D","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-01-18_YB-Dq5",2015-01-18,2015-01-18,"YB","D","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2015-01-18_YB-Dq3",2015-01-18,2015-01-18,"YB","D","3","Pp","Pollicipes_polymerus","Type 11",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2015-01-18_YB-Dq4",2015-01-18,2015-01-18,"YB","D","4","Pp","Pollicipes_polymerus","Type 11",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-01-18_YB-Dq5",2015-01-18,2015-01-18,"YB","D","5","Pp","Pollicipes_polymerus","Type 11",9,0.0875,102.857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2015-01-18_YB-Dq3",2015-01-18,2015-01-18,"YB","D","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2015-01-18_YB-Dq4",2015-01-18,2015-01-18,"YB","D","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-01-18_YB-Dq5",2015-01-18,2015-01-18,"YB","D","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2015-01-18_YB-Dq3",2015-01-18,2015-01-18,"YB","D","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2015-01-18_YB-Dq4",2015-01-18,2015-01-18,"YB","D","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-01-18_YB-Dq5",2015-01-18,2015-01-18,"YB","D","5","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2015-01-18_YB-Dq3",2015-01-18,2015-01-18,"YB","D","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2015-01-18_YB-Dq4",2015-01-18,2015-01-18,"YB","D","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-01-18_YB-Dq5",2015-01-18,2015-01-18,"YB","D","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2015-01-18_YB-Eq3",2015-01-18,2015-01-18,"YB","E","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","All counts may be low due to water patches"
+"2015-01-18_YB-Eq4",2015-01-18,2015-01-18,"YB","E","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%","counts may be low due to high algae coverage"
+"2015-01-18_YB-Eq8",2015-01-18,2015-01-18,"YB","E","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to high algae coverage"
+"2015-01-18_YB-Eq3",2015-01-18,2015-01-18,"YB","E","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","All counts may be low due to water patches"
+"2015-01-18_YB-Eq4",2015-01-18,2015-01-18,"YB","E","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%","counts may be low due to high algae coverage"
+"2015-01-18_YB-Eq8",2015-01-18,2015-01-18,"YB","E","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to high algae coverage"
+"2015-01-18_YB-Eq3",2015-01-18,2015-01-18,"YB","E","3","Bg","Balanus_glandula","Type 1",429,0.0875,4902.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","30%","All counts may be low due to water patches"
+"2015-01-18_YB-Eq4",2015-01-18,2015-01-18,"YB","E","4","Bg","Balanus_glandula","Type 1",431,0.0875,4925.71428571429,NA,"Stephanie Merhoff","Finished","Full","Full","70%","counts may be low due to high algae coverage"
+"2015-01-18_YB-Eq8",2015-01-18,2015-01-18,"YB","E","8","Bg","Balanus_glandula","Type 1",18,0.0875,205.714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to high algae coverage"
+"2015-01-18_YB-Eq3",2015-01-18,2015-01-18,"YB","E","3","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","All counts may be low due to water patches"
+"2015-01-18_YB-Eq4",2015-01-18,2015-01-18,"YB","E","4","BgD","Balanus_glandula_(dead)","Type 2",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","70%","counts may be low due to high algae coverage"
+"2015-01-18_YB-Eq8",2015-01-18,2015-01-18,"YB","E","8","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to high algae coverage"
+"2015-01-18_YB-Eq3",2015-01-18,2015-01-18,"YB","E","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","All counts may be low due to water patches"
+"2015-01-18_YB-Eq4",2015-01-18,2015-01-18,"YB","E","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%","counts may be low due to high algae coverage"
+"2015-01-18_YB-Eq8",2015-01-18,2015-01-18,"YB","E","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to high algae coverage"
+"2015-01-18_YB-Eq3",2015-01-18,2015-01-18,"YB","E","3","Cth","Chthamalus_dalli","Type 3",190,0.0875,2171.42857142857,NA,"Stephanie Merhoff","Finished","Full","Full","30%","All counts may be low due to water patches"
+"2015-01-18_YB-Eq4",2015-01-18,2015-01-18,"YB","E","4","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%","counts may be low due to high algae coverage"
+"2015-01-18_YB-Eq8",2015-01-18,2015-01-18,"YB","E","8","Cth","Chthamalus_dalli","Type 3",368,0.0875,4205.71428571429,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to high algae coverage"
+"2015-01-18_YB-Eq3",2015-01-18,2015-01-18,"YB","E","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","All counts may be low due to water patches"
+"2015-01-18_YB-Eq4",2015-01-18,2015-01-18,"YB","E","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%","counts may be low due to high algae coverage"
+"2015-01-18_YB-Eq8",2015-01-18,2015-01-18,"YB","E","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to high algae coverage"
+"2015-01-18_YB-Eq3",2015-01-18,2015-01-18,"YB","E","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","All counts may be low due to water patches"
+"2015-01-18_YB-Eq4",2015-01-18,2015-01-18,"YB","E","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%","counts may be low due to high algae coverage"
+"2015-01-18_YB-Eq8",2015-01-18,2015-01-18,"YB","E","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to high algae coverage"
+"2015-01-18_YB-Eq3",2015-01-18,2015-01-18,"YB","E","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","All counts may be low due to water patches"
+"2015-01-18_YB-Eq4",2015-01-18,2015-01-18,"YB","E","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%","counts may be low due to high algae coverage"
+"2015-01-18_YB-Eq8",2015-01-18,2015-01-18,"YB","E","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to high algae coverage"
+"2015-01-18_YB-Eq3",2015-01-18,2015-01-18,"YB","E","3","Lim","Limpets","Type 12",19,0.0875,217.142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","30%","All counts may be low due to water patches"
+"2015-01-18_YB-Eq4",2015-01-18,2015-01-18,"YB","E","4","Lim","Limpets","Type 12",27,0.0875,308.571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","70%","counts may be low due to high algae coverage"
+"2015-01-18_YB-Eq8",2015-01-18,2015-01-18,"YB","E","8","Lim","Limpets","Type 12",55,0.0875,628.571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to high algae coverage"
+"2015-01-18_YB-Eq3",2015-01-18,2015-01-18,"YB","E","3","Ls","Littorina_sitkana","Type 13",24,0.0875,274.285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","30%","All counts may be low due to water patches"
+"2015-01-18_YB-Eq4",2015-01-18,2015-01-18,"YB","E","4","Ls","Littorina_sitkana","Type 13",35,0.0875,400,NA,"Stephanie Merhoff","Finished","Full","Full","70%","counts may be low due to high algae coverage"
+"2015-01-18_YB-Eq8",2015-01-18,2015-01-18,"YB","E","8","Ls","Littorina_sitkana","Type 13",45,0.0875,514.285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to high algae coverage"
+"2015-01-18_YB-Eq3",2015-01-18,2015-01-18,"YB","E","3","Mc","Mytilus_californianus","Type 17",5,0.0875,57.1428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","30%","All counts may be low due to water patches"
+"2015-01-18_YB-Eq4",2015-01-18,2015-01-18,"YB","E","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%","counts may be low due to high algae coverage"
+"2015-01-18_YB-Eq8",2015-01-18,2015-01-18,"YB","E","8","Mc","Mytilus_californianus","Type 17",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to high algae coverage"
+"2015-01-18_YB-Eq3",2015-01-18,2015-01-18,"YB","E","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","All counts may be low due to water patches"
+"2015-01-18_YB-Eq4",2015-01-18,2015-01-18,"YB","E","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%","counts may be low due to high algae coverage"
+"2015-01-18_YB-Eq8",2015-01-18,2015-01-18,"YB","E","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to high algae coverage"
+"2015-01-18_YB-Eq3",2015-01-18,2015-01-18,"YB","E","3","Myt","Mytilus_spp","Type 7",327,0.0875,3737.14285714286,NA,"Stephanie Merhoff","Finished","Full","Full","30%","All counts may be low due to water patches"
+"2015-01-18_YB-Eq4",2015-01-18,2015-01-18,"YB","E","4","Myt","Mytilus_spp","Type 7",158,0.0875,1805.71428571429,NA,"Stephanie Merhoff","Finished","Full","Full","70%","counts may be low due to high algae coverage"
+"2015-01-18_YB-Eq8",2015-01-18,2015-01-18,"YB","E","8","Myt","Mytilus_spp","Type 7",675,0.0875,7714.28571428571,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to high algae coverage"
+"2015-01-18_YB-Eq3",2015-01-18,2015-01-18,"YB","E","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","All counts may be low due to water patches"
+"2015-01-18_YB-Eq4",2015-01-18,2015-01-18,"YB","E","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%","counts may be low due to high algae coverage"
+"2015-01-18_YB-Eq8",2015-01-18,2015-01-18,"YB","E","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to high algae coverage"
+"2015-01-18_YB-Eq3",2015-01-18,2015-01-18,"YB","E","3","Mt","Mytilus_trossulus","Type 15",49,0.0875,560,NA,"Stephanie Merhoff","Finished","Full","Full","30%","All counts may be low due to water patches"
+"2015-01-18_YB-Eq4",2015-01-18,2015-01-18,"YB","E","4","Mt","Mytilus_trossulus","Type 15",9,0.0875,102.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","70%","counts may be low due to high algae coverage"
+"2015-01-18_YB-Eq8",2015-01-18,2015-01-18,"YB","E","8","Mt","Mytilus_trossulus","Type 15",38,0.0875,434.285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to high algae coverage"
+"2015-01-18_YB-Eq3",2015-01-18,2015-01-18,"YB","E","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","All counts may be low due to water patches"
+"2015-01-18_YB-Eq4",2015-01-18,2015-01-18,"YB","E","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%","counts may be low due to high algae coverage"
+"2015-01-18_YB-Eq8",2015-01-18,2015-01-18,"YB","E","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to high algae coverage"
+"2015-01-18_YB-Eq3",2015-01-18,2015-01-18,"YB","E","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","All counts may be low due to water patches"
+"2015-01-18_YB-Eq4",2015-01-18,2015-01-18,"YB","E","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%","counts may be low due to high algae coverage"
+"2015-01-18_YB-Eq8",2015-01-18,2015-01-18,"YB","E","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to high algae coverage"
+"2015-01-18_YB-Eq3",2015-01-18,2015-01-18,"YB","E","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","All counts may be low due to water patches"
+"2015-01-18_YB-Eq4",2015-01-18,2015-01-18,"YB","E","4","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","70%","counts may be low due to high algae coverage"
+"2015-01-18_YB-Eq8",2015-01-18,2015-01-18,"YB","E","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to high algae coverage"
+"2015-01-18_YB-Eq3",2015-01-18,2015-01-18,"YB","E","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","All counts may be low due to water patches"
+"2015-01-18_YB-Eq4",2015-01-18,2015-01-18,"YB","E","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%","counts may be low due to high algae coverage"
+"2015-01-18_YB-Eq8",2015-01-18,2015-01-18,"YB","E","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to high algae coverage"
+"2015-01-18_YB-Eq3",2015-01-18,2015-01-18,"YB","E","3","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","All counts may be low due to water patches"
+"2015-01-18_YB-Eq4",2015-01-18,2015-01-18,"YB","E","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%","counts may be low due to high algae coverage"
+"2015-01-18_YB-Eq8",2015-01-18,2015-01-18,"YB","E","8","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to high algae coverage"
+"2015-01-18_YB-Eq3",2015-01-18,2015-01-18,"YB","E","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","All counts may be low due to water patches"
+"2015-01-18_YB-Eq4",2015-01-18,2015-01-18,"YB","E","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%","counts may be low due to high algae coverage"
+"2015-01-18_YB-Eq8",2015-01-18,2015-01-18,"YB","E","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to high algae coverage"
+"2015-01-18_YB-Eq3",2015-01-18,2015-01-18,"YB","E","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","All counts may be low due to water patches"
+"2015-01-18_YB-Eq4",2015-01-18,2015-01-18,"YB","E","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%","counts may be low due to high algae coverage"
+"2015-01-18_YB-Eq8",2015-01-18,2015-01-18,"YB","E","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to high algae coverage"
+"2015-01-18_YB-Eq3",2015-01-18,2015-01-18,"YB","E","3","Pp","Pollicipes_polymerus","Type 11",52,0.0875,594.285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","30%","All counts may be low due to water patches"
+"2015-01-18_YB-Eq4",2015-01-18,2015-01-18,"YB","E","4","Pp","Pollicipes_polymerus","Type 11",23,0.0875,262.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","70%","counts may be low due to high algae coverage"
+"2015-01-18_YB-Eq8",2015-01-18,2015-01-18,"YB","E","8","Pp","Pollicipes_polymerus","Type 11",257,0.0875,2937.14285714286,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to high algae coverage"
+"2015-01-18_YB-Eq3",2015-01-18,2015-01-18,"YB","E","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","All counts may be low due to water patches"
+"2015-01-18_YB-Eq4",2015-01-18,2015-01-18,"YB","E","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%","counts may be low due to high algae coverage"
+"2015-01-18_YB-Eq8",2015-01-18,2015-01-18,"YB","E","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to high algae coverage"
+"2015-01-18_YB-Eq3",2015-01-18,2015-01-18,"YB","E","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","All counts may be low due to water patches"
+"2015-01-18_YB-Eq4",2015-01-18,2015-01-18,"YB","E","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%","counts may be low due to high algae coverage"
+"2015-01-18_YB-Eq8",2015-01-18,2015-01-18,"YB","E","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to high algae coverage"
+"2015-01-18_YB-Eq3",2015-01-18,2015-01-18,"YB","E","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","All counts may be low due to water patches"
+"2015-01-18_YB-Eq4",2015-01-18,2015-01-18,"YB","E","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%","counts may be low due to high algae coverage"
+"2015-01-18_YB-Eq8",2015-01-18,2015-01-18,"YB","E","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to high algae coverage"
+"2015-01-18_YB-Fq4",2015-01-18,2015-01-18,"YB","F","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-01-18_YB-Fq5",2015-01-18,2015-01-18,"YB","F","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-01-18_YB-Fq6",2015-01-18,2015-01-18,"YB","F","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-01-18_YB-Fq4",2015-01-18,2015-01-18,"YB","F","4","Ae","Anemones","Type 14",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-01-18_YB-Fq5",2015-01-18,2015-01-18,"YB","F","5","Ae","Anemones","Type 14",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-01-18_YB-Fq6",2015-01-18,2015-01-18,"YB","F","6","Ae","Anemones","Type 14",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-01-18_YB-Fq4",2015-01-18,2015-01-18,"YB","F","4","Bg","Balanus_glandula","Type 1",645,0.0875,7371.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-01-18_YB-Fq5",2015-01-18,2015-01-18,"YB","F","5","Bg","Balanus_glandula","Type 1",602,0.0875,6880,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-01-18_YB-Fq6",2015-01-18,2015-01-18,"YB","F","6","Bg","Balanus_glandula","Type 1",863,0.0875,9862.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-01-18_YB-Fq4",2015-01-18,2015-01-18,"YB","F","4","BgD","Balanus_glandula_(dead)","Type 2",49,0.0875,560,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-01-18_YB-Fq5",2015-01-18,2015-01-18,"YB","F","5","BgD","Balanus_glandula_(dead)","Type 2",76,0.0875,868.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-01-18_YB-Fq6",2015-01-18,2015-01-18,"YB","F","6","BgD","Balanus_glandula_(dead)","Type 2",55,0.0875,628.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-01-18_YB-Fq4",2015-01-18,2015-01-18,"YB","F","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-01-18_YB-Fq5",2015-01-18,2015-01-18,"YB","F","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-01-18_YB-Fq6",2015-01-18,2015-01-18,"YB","F","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-01-18_YB-Fq4",2015-01-18,2015-01-18,"YB","F","4","Cth","Chthamalus_dalli","Type 3",10,0.0875,114.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-01-18_YB-Fq5",2015-01-18,2015-01-18,"YB","F","5","Cth","Chthamalus_dalli","Type 3",57,0.0875,651.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-01-18_YB-Fq6",2015-01-18,2015-01-18,"YB","F","6","Cth","Chthamalus_dalli","Type 3",9,0.0875,102.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-01-18_YB-Fq4",2015-01-18,2015-01-18,"YB","F","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-01-18_YB-Fq5",2015-01-18,2015-01-18,"YB","F","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-01-18_YB-Fq6",2015-01-18,2015-01-18,"YB","F","6","CthD","Chthamalus_dalli (dead)","Type 4",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-01-18_YB-Fq4",2015-01-18,2015-01-18,"YB","F","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-01-18_YB-Fq5",2015-01-18,2015-01-18,"YB","F","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-01-18_YB-Fq6",2015-01-18,2015-01-18,"YB","F","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-01-18_YB-Fq4",2015-01-18,2015-01-18,"YB","F","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-01-18_YB-Fq5",2015-01-18,2015-01-18,"YB","F","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-01-18_YB-Fq6",2015-01-18,2015-01-18,"YB","F","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-01-18_YB-Fq4",2015-01-18,2015-01-18,"YB","F","4","Lim","Limpets","Type 12",382,0.0875,4365.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-01-18_YB-Fq5",2015-01-18,2015-01-18,"YB","F","5","Lim","Limpets","Type 12",222,0.0875,2537.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-01-18_YB-Fq6",2015-01-18,2015-01-18,"YB","F","6","Lim","Limpets","Type 12",288,0.0875,3291.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-01-18_YB-Fq4",2015-01-18,2015-01-18,"YB","F","4","Ls","Littorina_sitkana","Type 13",135,0.0875,1542.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-01-18_YB-Fq5",2015-01-18,2015-01-18,"YB","F","5","Ls","Littorina_sitkana","Type 13",172,0.0875,1965.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-01-18_YB-Fq6",2015-01-18,2015-01-18,"YB","F","6","Ls","Littorina_sitkana","Type 13",213,0.0875,2434.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-01-18_YB-Fq4",2015-01-18,2015-01-18,"YB","F","4","Mc","Mytilus_californianus","Type 17",17,0.0875,194.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-01-18_YB-Fq5",2015-01-18,2015-01-18,"YB","F","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-01-18_YB-Fq6",2015-01-18,2015-01-18,"YB","F","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-01-18_YB-Fq4",2015-01-18,2015-01-18,"YB","F","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-01-18_YB-Fq5",2015-01-18,2015-01-18,"YB","F","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-01-18_YB-Fq6",2015-01-18,2015-01-18,"YB","F","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-01-18_YB-Fq4",2015-01-18,2015-01-18,"YB","F","4","Myt","Mytilus_spp","Type 7",63,0.0875,720,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-01-18_YB-Fq5",2015-01-18,2015-01-18,"YB","F","5","Myt","Mytilus_spp","Type 7",159,0.0875,1817.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-01-18_YB-Fq6",2015-01-18,2015-01-18,"YB","F","6","Myt","Mytilus_spp","Type 7",193,0.0875,2205.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-01-18_YB-Fq4",2015-01-18,2015-01-18,"YB","F","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-01-18_YB-Fq5",2015-01-18,2015-01-18,"YB","F","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-01-18_YB-Fq6",2015-01-18,2015-01-18,"YB","F","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-01-18_YB-Fq4",2015-01-18,2015-01-18,"YB","F","4","Mt","Mytilus_trossulus","Type 15",361,0.0875,4125.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-01-18_YB-Fq5",2015-01-18,2015-01-18,"YB","F","5","Mt","Mytilus_trossulus","Type 15",476,0.0875,5440,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-01-18_YB-Fq6",2015-01-18,2015-01-18,"YB","F","6","Mt","Mytilus_trossulus","Type 15",385,0.0875,4400,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-01-18_YB-Fq4",2015-01-18,2015-01-18,"YB","F","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-01-18_YB-Fq5",2015-01-18,2015-01-18,"YB","F","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-01-18_YB-Fq6",2015-01-18,2015-01-18,"YB","F","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-01-18_YB-Fq4",2015-01-18,2015-01-18,"YB","F","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-01-18_YB-Fq5",2015-01-18,2015-01-18,"YB","F","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-01-18_YB-Fq6",2015-01-18,2015-01-18,"YB","F","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-01-18_YB-Fq4",2015-01-18,2015-01-18,"YB","F","4","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-01-18_YB-Fq5",2015-01-18,2015-01-18,"YB","F","5","Nc","Nucella_canaliculata","Type 10",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-01-18_YB-Fq6",2015-01-18,2015-01-18,"YB","F","6","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-01-18_YB-Fq4",2015-01-18,2015-01-18,"YB","F","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-01-18_YB-Fq5",2015-01-18,2015-01-18,"YB","F","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-01-18_YB-Fq6",2015-01-18,2015-01-18,"YB","F","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-01-18_YB-Fq4",2015-01-18,2015-01-18,"YB","F","4","No","Nucella_ostrina","Type 9",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-01-18_YB-Fq5",2015-01-18,2015-01-18,"YB","F","5","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-01-18_YB-Fq6",2015-01-18,2015-01-18,"YB","F","6","No","Nucella_ostrina","Type 9",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-01-18_YB-Fq4",2015-01-18,2015-01-18,"YB","F","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-01-18_YB-Fq5",2015-01-18,2015-01-18,"YB","F","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-01-18_YB-Fq6",2015-01-18,2015-01-18,"YB","F","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-01-18_YB-Fq4",2015-01-18,2015-01-18,"YB","F","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-01-18_YB-Fq5",2015-01-18,2015-01-18,"YB","F","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-01-18_YB-Fq6",2015-01-18,2015-01-18,"YB","F","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-01-18_YB-Fq4",2015-01-18,2015-01-18,"YB","F","4","Pp","Pollicipes_polymerus","Type 11",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-01-18_YB-Fq5",2015-01-18,2015-01-18,"YB","F","5","Pp","Pollicipes_polymerus","Type 11",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-01-18_YB-Fq6",2015-01-18,2015-01-18,"YB","F","6","Pp","Pollicipes_polymerus","Type 11",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-01-18_YB-Fq4",2015-01-18,2015-01-18,"YB","F","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-01-18_YB-Fq5",2015-01-18,2015-01-18,"YB","F","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-01-18_YB-Fq6",2015-01-18,2015-01-18,"YB","F","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-01-18_YB-Fq4",2015-01-18,2015-01-18,"YB","F","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-01-18_YB-Fq5",2015-01-18,2015-01-18,"YB","F","5","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-01-18_YB-Fq6",2015-01-18,2015-01-18,"YB","F","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-01-18_YB-Fq4",2015-01-18,2015-01-18,"YB","F","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-01-18_YB-Fq5",2015-01-18,2015-01-18,"YB","F","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-01-18_YB-Fq6",2015-01-18,2015-01-18,"YB","F","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-01-18_YB-Gq3",2015-01-18,2015-01-18,"YB","G","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","20%",""
+"2015-01-18_YB-Gq5",2015-01-18,2015-01-18,"YB","G","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%","some pooled water created patches of glare. lots of pollicipes recruits/juveniles in the G quadrats!"
+"2015-01-18_YB-Gq8",2015-01-18,2015-01-18,"YB","G","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","25%","pollicipes appears to be displacing balanus"
+"2015-01-18_YB-Gq3",2015-01-18,2015-01-18,"YB","G","3","Ae","Anemones","Type 14",105,0.0875,1200,NA,"Julia Bingham","Finished","Full","Full","20%",""
+"2015-01-18_YB-Gq5",2015-01-18,2015-01-18,"YB","G","5","Ae","Anemones","Type 14",72,0.0875,822.857142857143,NA,"Julia Bingham","Finished","Full","Full","15%","some pooled water created patches of glare. lots of pollicipes recruits/juveniles in the G quadrats!"
+"2015-01-18_YB-Gq8",2015-01-18,2015-01-18,"YB","G","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","25%","pollicipes appears to be displacing balanus"
+"2015-01-18_YB-Gq3",2015-01-18,2015-01-18,"YB","G","3","Bg","Balanus_glandula","Type 1",977,0.0875,11165.7142857143,NA,"Julia Bingham","Finished","Full","Full","20%",""
+"2015-01-18_YB-Gq5",2015-01-18,2015-01-18,"YB","G","5","Bg","Balanus_glandula","Type 1",1214,0.0875,13874.2857142857,NA,"Julia Bingham","Finished","Full","Full","15%","some pooled water created patches of glare. lots of pollicipes recruits/juveniles in the G quadrats!"
+"2015-01-18_YB-Gq8",2015-01-18,2015-01-18,"YB","G","8","Bg","Balanus_glandula","Type 1",1451,0.015625,92864,"c","Julia Bingham","Finished","Full","Cropped","25%","pollicipes appears to be displacing balanus"
+"2015-01-18_YB-Gq3",2015-01-18,2015-01-18,"YB","G","3","BgD","Balanus_glandula_(dead)","Type 2",241,0.0875,2754.28571428571,NA,"Julia Bingham","Finished","Full","Full","20%",""
+"2015-01-18_YB-Gq5",2015-01-18,2015-01-18,"YB","G","5","BgD","Balanus_glandula_(dead)","Type 2",233,0.0875,2662.85714285714,NA,"Julia Bingham","Finished","Full","Full","15%","some pooled water created patches of glare. lots of pollicipes recruits/juveniles in the G quadrats!"
+"2015-01-18_YB-Gq8",2015-01-18,2015-01-18,"YB","G","8","BgD","Balanus_glandula_(dead)","Type 2",161,0.015625,10304,"c","Julia Bingham","Finished","Full","Cropped","25%","pollicipes appears to be displacing balanus"
+"2015-01-18_YB-Gq3",2015-01-18,2015-01-18,"YB","G","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","20%",""
+"2015-01-18_YB-Gq5",2015-01-18,2015-01-18,"YB","G","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%","some pooled water created patches of glare. lots of pollicipes recruits/juveniles in the G quadrats!"
+"2015-01-18_YB-Gq8",2015-01-18,2015-01-18,"YB","G","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","25%","pollicipes appears to be displacing balanus"
+"2015-01-18_YB-Gq3",2015-01-18,2015-01-18,"YB","G","3","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","20%",""
+"2015-01-18_YB-Gq5",2015-01-18,2015-01-18,"YB","G","5","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%","some pooled water created patches of glare. lots of pollicipes recruits/juveniles in the G quadrats!"
+"2015-01-18_YB-Gq8",2015-01-18,2015-01-18,"YB","G","8","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Julia Bingham","Finished","Full","Cropped","25%","pollicipes appears to be displacing balanus"
+"2015-01-18_YB-Gq3",2015-01-18,2015-01-18,"YB","G","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","20%",""
+"2015-01-18_YB-Gq5",2015-01-18,2015-01-18,"YB","G","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%","some pooled water created patches of glare. lots of pollicipes recruits/juveniles in the G quadrats!"
+"2015-01-18_YB-Gq8",2015-01-18,2015-01-18,"YB","G","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Julia Bingham","Finished","Full","Cropped","25%","pollicipes appears to be displacing balanus"
+"2015-01-18_YB-Gq3",2015-01-18,2015-01-18,"YB","G","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","20%",""
+"2015-01-18_YB-Gq5",2015-01-18,2015-01-18,"YB","G","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%","some pooled water created patches of glare. lots of pollicipes recruits/juveniles in the G quadrats!"
+"2015-01-18_YB-Gq8",2015-01-18,2015-01-18,"YB","G","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","25%","pollicipes appears to be displacing balanus"
+"2015-01-18_YB-Gq3",2015-01-18,2015-01-18,"YB","G","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","20%",""
+"2015-01-18_YB-Gq5",2015-01-18,2015-01-18,"YB","G","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%","some pooled water created patches of glare. lots of pollicipes recruits/juveniles in the G quadrats!"
+"2015-01-18_YB-Gq8",2015-01-18,2015-01-18,"YB","G","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","25%","pollicipes appears to be displacing balanus"
+"2015-01-18_YB-Gq3",2015-01-18,2015-01-18,"YB","G","3","Lim","Limpets","Type 12",18,0.0875,205.714285714286,NA,"Julia Bingham","Finished","Full","Full","20%",""
+"2015-01-18_YB-Gq5",2015-01-18,2015-01-18,"YB","G","5","Lim","Limpets","Type 12",64,0.0875,731.428571428571,NA,"Julia Bingham","Finished","Full","Full","15%","some pooled water created patches of glare. lots of pollicipes recruits/juveniles in the G quadrats!"
+"2015-01-18_YB-Gq8",2015-01-18,2015-01-18,"YB","G","8","Lim","Limpets","Type 12",49,0.0875,560,NA,"Julia Bingham","Finished","Full","Cropped","25%","pollicipes appears to be displacing balanus"
+"2015-01-18_YB-Gq3",2015-01-18,2015-01-18,"YB","G","3","Ls","Littorina_sitkana","Type 13",355,0.0875,4057.14285714286,NA,"Julia Bingham","Finished","Full","Full","20%",""
+"2015-01-18_YB-Gq5",2015-01-18,2015-01-18,"YB","G","5","Ls","Littorina_sitkana","Type 13",267,0.0875,3051.42857142857,NA,"Julia Bingham","Finished","Full","Full","15%","some pooled water created patches of glare. lots of pollicipes recruits/juveniles in the G quadrats!"
+"2015-01-18_YB-Gq8",2015-01-18,2015-01-18,"YB","G","8","Ls","Littorina_sitkana","Type 13",298,0.0875,3405.71428571429,NA,"Julia Bingham","Finished","Full","Cropped","25%","pollicipes appears to be displacing balanus"
+"2015-01-18_YB-Gq3",2015-01-18,2015-01-18,"YB","G","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","20%",""
+"2015-01-18_YB-Gq5",2015-01-18,2015-01-18,"YB","G","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%","some pooled water created patches of glare. lots of pollicipes recruits/juveniles in the G quadrats!"
+"2015-01-18_YB-Gq8",2015-01-18,2015-01-18,"YB","G","8","Mc","Mytilus_californianus","Type 17",38,0.0875,434.285714285714,NA,"Julia Bingham","Finished","Full","Cropped","25%","pollicipes appears to be displacing balanus"
+"2015-01-18_YB-Gq3",2015-01-18,2015-01-18,"YB","G","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","20%",""
+"2015-01-18_YB-Gq5",2015-01-18,2015-01-18,"YB","G","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%","some pooled water created patches of glare. lots of pollicipes recruits/juveniles in the G quadrats!"
+"2015-01-18_YB-Gq8",2015-01-18,2015-01-18,"YB","G","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","25%","pollicipes appears to be displacing balanus"
+"2015-01-18_YB-Gq3",2015-01-18,2015-01-18,"YB","G","3","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","20%",""
+"2015-01-18_YB-Gq5",2015-01-18,2015-01-18,"YB","G","5","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%","some pooled water created patches of glare. lots of pollicipes recruits/juveniles in the G quadrats!"
+"2015-01-18_YB-Gq8",2015-01-18,2015-01-18,"YB","G","8","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","25%","pollicipes appears to be displacing balanus"
+"2015-01-18_YB-Gq3",2015-01-18,2015-01-18,"YB","G","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","20%",""
+"2015-01-18_YB-Gq5",2015-01-18,2015-01-18,"YB","G","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%","some pooled water created patches of glare. lots of pollicipes recruits/juveniles in the G quadrats!"
+"2015-01-18_YB-Gq8",2015-01-18,2015-01-18,"YB","G","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","25%","pollicipes appears to be displacing balanus"
+"2015-01-18_YB-Gq3",2015-01-18,2015-01-18,"YB","G","3","Mt","Mytilus_trossulus","Type 15",1671,0.0875,19097.1428571429,NA,"Julia Bingham","Finished","Full","Full","20%",""
+"2015-01-18_YB-Gq5",2015-01-18,2015-01-18,"YB","G","5","Mt","Mytilus_trossulus","Type 15",2750,0.0875,31428.5714285714,NA,"Julia Bingham","Finished","Full","Full","15%","some pooled water created patches of glare. lots of pollicipes recruits/juveniles in the G quadrats!"
+"2015-01-18_YB-Gq8",2015-01-18,2015-01-18,"YB","G","8","Mt","Mytilus_trossulus","Type 15",1416,0.0875,16182.8571428571,NA,"Julia Bingham","Finished","Full","Cropped","25%","pollicipes appears to be displacing balanus"
+"2015-01-18_YB-Gq3",2015-01-18,2015-01-18,"YB","G","3","MtD","Mytilus_trossulus_(dead)","Type 16",12,0.0875,137.142857142857,NA,"Julia Bingham","Finished","Full","Full","20%",""
+"2015-01-18_YB-Gq5",2015-01-18,2015-01-18,"YB","G","5","MtD","Mytilus_trossulus_(dead)","Type 16",3,0.0875,34.2857142857143,NA,"Julia Bingham","Finished","Full","Full","15%","some pooled water created patches of glare. lots of pollicipes recruits/juveniles in the G quadrats!"
+"2015-01-18_YB-Gq8",2015-01-18,2015-01-18,"YB","G","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","25%","pollicipes appears to be displacing balanus"
+"2015-01-18_YB-Gq3",2015-01-18,2015-01-18,"YB","G","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","20%",""
+"2015-01-18_YB-Gq5",2015-01-18,2015-01-18,"YB","G","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%","some pooled water created patches of glare. lots of pollicipes recruits/juveniles in the G quadrats!"
+"2015-01-18_YB-Gq8",2015-01-18,2015-01-18,"YB","G","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","25%","pollicipes appears to be displacing balanus"
+"2015-01-18_YB-Gq3",2015-01-18,2015-01-18,"YB","G","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","20%",""
+"2015-01-18_YB-Gq5",2015-01-18,2015-01-18,"YB","G","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%","some pooled water created patches of glare. lots of pollicipes recruits/juveniles in the G quadrats!"
+"2015-01-18_YB-Gq8",2015-01-18,2015-01-18,"YB","G","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","25%","pollicipes appears to be displacing balanus"
+"2015-01-18_YB-Gq3",2015-01-18,2015-01-18,"YB","G","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","20%",""
+"2015-01-18_YB-Gq5",2015-01-18,2015-01-18,"YB","G","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%","some pooled water created patches of glare. lots of pollicipes recruits/juveniles in the G quadrats!"
+"2015-01-18_YB-Gq8",2015-01-18,2015-01-18,"YB","G","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","25%","pollicipes appears to be displacing balanus"
+"2015-01-18_YB-Gq3",2015-01-18,2015-01-18,"YB","G","3","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","20%",""
+"2015-01-18_YB-Gq5",2015-01-18,2015-01-18,"YB","G","5","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%","some pooled water created patches of glare. lots of pollicipes recruits/juveniles in the G quadrats!"
+"2015-01-18_YB-Gq8",2015-01-18,2015-01-18,"YB","G","8","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","25%","pollicipes appears to be displacing balanus"
+"2015-01-18_YB-Gq3",2015-01-18,2015-01-18,"YB","G","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","20%",""
+"2015-01-18_YB-Gq5",2015-01-18,2015-01-18,"YB","G","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%","some pooled water created patches of glare. lots of pollicipes recruits/juveniles in the G quadrats!"
+"2015-01-18_YB-Gq8",2015-01-18,2015-01-18,"YB","G","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","25%","pollicipes appears to be displacing balanus"
+"2015-01-18_YB-Gq3",2015-01-18,2015-01-18,"YB","G","3","Pis","Pisaster","Type 21",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","20%",""
+"2015-01-18_YB-Gq5",2015-01-18,2015-01-18,"YB","G","5","Pis","Pisaster","Type 21",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Full","15%","some pooled water created patches of glare. lots of pollicipes recruits/juveniles in the G quadrats!"
+"2015-01-18_YB-Gq8",2015-01-18,2015-01-18,"YB","G","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","25%","pollicipes appears to be displacing balanus"
+"2015-01-18_YB-Gq3",2015-01-18,2015-01-18,"YB","G","3","Pp","Pollicipes_polymerus","Type 11",67,0.0875,765.714285714286,NA,"Julia Bingham","Finished","Full","Full","20%",""
+"2015-01-18_YB-Gq5",2015-01-18,2015-01-18,"YB","G","5","Pp","Pollicipes_polymerus","Type 11",408,0.0875,4662.85714285714,NA,"Julia Bingham","Finished","Full","Full","15%","some pooled water created patches of glare. lots of pollicipes recruits/juveniles in the G quadrats!"
+"2015-01-18_YB-Gq8",2015-01-18,2015-01-18,"YB","G","8","Pp","Pollicipes_polymerus","Type 11",996,0.0875,11382.8571428571,NA,"Julia Bingham","Finished","Full","Cropped","25%","pollicipes appears to be displacing balanus"
+"2015-01-18_YB-Gq3",2015-01-18,2015-01-18,"YB","G","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","20%",""
+"2015-01-18_YB-Gq5",2015-01-18,2015-01-18,"YB","G","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%","some pooled water created patches of glare. lots of pollicipes recruits/juveniles in the G quadrats!"
+"2015-01-18_YB-Gq8",2015-01-18,2015-01-18,"YB","G","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","25%","pollicipes appears to be displacing balanus"
+"2015-01-18_YB-Gq3",2015-01-18,2015-01-18,"YB","G","3","Sc","Semibalanus_cariosus","Type 5",5,0.0875,57.1428571428571,NA,"Julia Bingham","Finished","Full","Full","20%",""
+"2015-01-18_YB-Gq5",2015-01-18,2015-01-18,"YB","G","5","Sc","Semibalanus_cariosus","Type 5",10,0.0875,114.285714285714,NA,"Julia Bingham","Finished","Full","Full","15%","some pooled water created patches of glare. lots of pollicipes recruits/juveniles in the G quadrats!"
+"2015-01-18_YB-Gq8",2015-01-18,2015-01-18,"YB","G","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","25%","pollicipes appears to be displacing balanus"
+"2015-01-18_YB-Gq3",2015-01-18,2015-01-18,"YB","G","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","20%",""
+"2015-01-18_YB-Gq5",2015-01-18,2015-01-18,"YB","G","5","ScD","Semibalanus_cariosus_(dead)","Type 6",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","15%","some pooled water created patches of glare. lots of pollicipes recruits/juveniles in the G quadrats!"
+"2015-01-18_YB-Gq8",2015-01-18,2015-01-18,"YB","G","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","25%","pollicipes appears to be displacing balanus"
+"2015-02-17_YB-Aq6",2015-02-17,2015-02-17,"YB","A","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","10%",""
+"2015-02-17_YB-Aq7",2015-02-17,2015-02-17,"YB","A","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","4%",""
+"2015-02-17_YB-Aq9",2015-02-17,2015-02-17,"YB","A","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~1% byssal threads"
+"2015-02-17_YB-Aq6",2015-02-17,2015-02-17,"YB","A","6","Ae","Anemones","Type 14",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","10%",""
+"2015-02-17_YB-Aq7",2015-02-17,2015-02-17,"YB","A","7","Ae","Anemones","Type 14",49,0.0875,560,NA,"Beatriz Vaca","Finished","Full","Full","4%",""
+"2015-02-17_YB-Aq9",2015-02-17,2015-02-17,"YB","A","9","Ae","Anemones","Type 14",30,0.0875,342.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","1%","~1% byssal threads"
+"2015-02-17_YB-Aq6",2015-02-17,2015-02-17,"YB","A","6","Bg","Balanus_glandula","Type 1",296,0.0875,3382.85714285714,NA,"Celeste Moen","Finished","Full","Full","10%",""
+"2015-02-17_YB-Aq7",2015-02-17,2015-02-17,"YB","A","7","Bg","Balanus_glandula","Type 1",494,0.0875,5645.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","4%",""
+"2015-02-17_YB-Aq9",2015-02-17,2015-02-17,"YB","A","9","Bg","Balanus_glandula","Type 1",493,0.0875,5634.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","1%","~1% byssal threads"
+"2015-02-17_YB-Aq6",2015-02-17,2015-02-17,"YB","A","6","BgD","Balanus_glandula_(dead)","Type 2",81,0.0875,925.714285714286,NA,"Celeste Moen","Finished","Full","Full","10%",""
+"2015-02-17_YB-Aq7",2015-02-17,2015-02-17,"YB","A","7","BgD","Balanus_glandula_(dead)","Type 2",47,0.0875,537.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","4%",""
+"2015-02-17_YB-Aq9",2015-02-17,2015-02-17,"YB","A","9","BgD","Balanus_glandula_(dead)","Type 2",42,0.0875,480,NA,"Beatriz Vaca","Finished","Full","Full","1%","~1% byssal threads"
+"2015-02-17_YB-Aq6",2015-02-17,2015-02-17,"YB","A","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","10%",""
+"2015-02-17_YB-Aq7",2015-02-17,2015-02-17,"YB","A","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","4%",""
+"2015-02-17_YB-Aq9",2015-02-17,2015-02-17,"YB","A","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~1% byssal threads"
+"2015-02-17_YB-Aq6",2015-02-17,2015-02-17,"YB","A","6","Cth","Chthamalus_dalli","Type 3",73,0.0875,834.285714285714,NA,"Celeste Moen","Finished","Full","Full","10%",""
+"2015-02-17_YB-Aq7",2015-02-17,2015-02-17,"YB","A","7","Cth","Chthamalus_dalli","Type 3",113,0.0875,1291.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","4%",""
+"2015-02-17_YB-Aq9",2015-02-17,2015-02-17,"YB","A","9","Cth","Chthamalus_dalli","Type 3",134,0.0875,1531.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","1%","~1% byssal threads"
+"2015-02-17_YB-Aq6",2015-02-17,2015-02-17,"YB","A","6","CthD","Chthamalus_dalli (dead)","Type 4",5,0.0875,57.1428571428571,NA,"Celeste Moen","Finished","Full","Full","10%",""
+"2015-02-17_YB-Aq7",2015-02-17,2015-02-17,"YB","A","7","CthD","Chthamalus_dalli (dead)","Type 4",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","4%",""
+"2015-02-17_YB-Aq9",2015-02-17,2015-02-17,"YB","A","9","CthD","Chthamalus_dalli (dead)","Type 4",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","1%","~1% byssal threads"
+"2015-02-17_YB-Aq6",2015-02-17,2015-02-17,"YB","A","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","10%",""
+"2015-02-17_YB-Aq7",2015-02-17,2015-02-17,"YB","A","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","4%",""
+"2015-02-17_YB-Aq9",2015-02-17,2015-02-17,"YB","A","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~1% byssal threads"
+"2015-02-17_YB-Aq6",2015-02-17,2015-02-17,"YB","A","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","10%",""
+"2015-02-17_YB-Aq7",2015-02-17,2015-02-17,"YB","A","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","4%",""
+"2015-02-17_YB-Aq9",2015-02-17,2015-02-17,"YB","A","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~1% byssal threads"
+"2015-02-17_YB-Aq6",2015-02-17,2015-02-17,"YB","A","6","Lim","Limpets","Type 12",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","10%",""
+"2015-02-17_YB-Aq7",2015-02-17,2015-02-17,"YB","A","7","Lim","Limpets","Type 12",52,0.0875,594.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","4%",""
+"2015-02-17_YB-Aq9",2015-02-17,2015-02-17,"YB","A","9","Lim","Limpets","Type 12",93,0.0875,1062.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","1%","~1% byssal threads"
+"2015-02-17_YB-Aq6",2015-02-17,2015-02-17,"YB","A","6","Ls","Littorina_sitkana","Type 13",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","10%",""
+"2015-02-17_YB-Aq7",2015-02-17,2015-02-17,"YB","A","7","Ls","Littorina_sitkana","Type 13",12,0.0875,137.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","4%",""
+"2015-02-17_YB-Aq9",2015-02-17,2015-02-17,"YB","A","9","Ls","Littorina_sitkana","Type 13",34,0.0875,388.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","1%","~1% byssal threads"
+"2015-02-17_YB-Aq6",2015-02-17,2015-02-17,"YB","A","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","10%",""
+"2015-02-17_YB-Aq7",2015-02-17,2015-02-17,"YB","A","7","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","4%",""
+"2015-02-17_YB-Aq9",2015-02-17,2015-02-17,"YB","A","9","Mc","Mytilus_californianus","Type 17",106,0.0875,1211.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","1%","~1% byssal threads"
+"2015-02-17_YB-Aq6",2015-02-17,2015-02-17,"YB","A","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","10%",""
+"2015-02-17_YB-Aq7",2015-02-17,2015-02-17,"YB","A","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","4%",""
+"2015-02-17_YB-Aq9",2015-02-17,2015-02-17,"YB","A","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~1% byssal threads"
+"2015-02-17_YB-Aq6",2015-02-17,2015-02-17,"YB","A","6","Myt","Mytilus_spp","Type 7",21,0.0875,240,NA,"Celeste Moen","Finished","Full","Full","10%",""
+"2015-02-17_YB-Aq7",2015-02-17,2015-02-17,"YB","A","7","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","4%",""
+"2015-02-17_YB-Aq9",2015-02-17,2015-02-17,"YB","A","9","Myt","Mytilus_spp","Type 7",23,0.0875,262.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","1%","~1% byssal threads"
+"2015-02-17_YB-Aq6",2015-02-17,2015-02-17,"YB","A","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","10%",""
+"2015-02-17_YB-Aq7",2015-02-17,2015-02-17,"YB","A","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","4%",""
+"2015-02-17_YB-Aq9",2015-02-17,2015-02-17,"YB","A","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~1% byssal threads"
+"2015-02-17_YB-Aq6",2015-02-17,2015-02-17,"YB","A","6","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","10%",""
+"2015-02-17_YB-Aq7",2015-02-17,2015-02-17,"YB","A","7","Mt","Mytilus_trossulus","Type 15",203,0.0875,2320,NA,"Beatriz Vaca","Finished","Full","Full","4%",""
+"2015-02-17_YB-Aq9",2015-02-17,2015-02-17,"YB","A","9","Mt","Mytilus_trossulus","Type 15",105,0.0875,1200,NA,"Beatriz Vaca","Finished","Full","Full","1%","~1% byssal threads"
+"2015-02-17_YB-Aq6",2015-02-17,2015-02-17,"YB","A","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","10%",""
+"2015-02-17_YB-Aq7",2015-02-17,2015-02-17,"YB","A","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","4%",""
+"2015-02-17_YB-Aq9",2015-02-17,2015-02-17,"YB","A","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~1% byssal threads"
+"2015-02-17_YB-Aq6",2015-02-17,2015-02-17,"YB","A","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","10%",""
+"2015-02-17_YB-Aq7",2015-02-17,2015-02-17,"YB","A","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","4%",""
+"2015-02-17_YB-Aq9",2015-02-17,2015-02-17,"YB","A","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~1% byssal threads"
+"2015-02-17_YB-Aq6",2015-02-17,2015-02-17,"YB","A","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","10%",""
+"2015-02-17_YB-Aq7",2015-02-17,2015-02-17,"YB","A","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","4%",""
+"2015-02-17_YB-Aq9",2015-02-17,2015-02-17,"YB","A","9","Nc","Nucella_canaliculata","Type 10",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","1%","~1% byssal threads"
+"2015-02-17_YB-Aq6",2015-02-17,2015-02-17,"YB","A","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","10%",""
+"2015-02-17_YB-Aq7",2015-02-17,2015-02-17,"YB","A","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","4%",""
+"2015-02-17_YB-Aq9",2015-02-17,2015-02-17,"YB","A","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~1% byssal threads"
+"2015-02-17_YB-Aq6",2015-02-17,2015-02-17,"YB","A","6","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","10%",""
+"2015-02-17_YB-Aq7",2015-02-17,2015-02-17,"YB","A","7","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","4%",""
+"2015-02-17_YB-Aq9",2015-02-17,2015-02-17,"YB","A","9","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","1%","~1% byssal threads"
+"2015-02-17_YB-Aq6",2015-02-17,2015-02-17,"YB","A","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","10%",""
+"2015-02-17_YB-Aq7",2015-02-17,2015-02-17,"YB","A","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","4%",""
+"2015-02-17_YB-Aq9",2015-02-17,2015-02-17,"YB","A","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~1% byssal threads"
+"2015-02-17_YB-Aq6",2015-02-17,2015-02-17,"YB","A","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","10%",""
+"2015-02-17_YB-Aq7",2015-02-17,2015-02-17,"YB","A","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","4%",""
+"2015-02-17_YB-Aq9",2015-02-17,2015-02-17,"YB","A","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~1% byssal threads"
+"2015-02-17_YB-Aq6",2015-02-17,2015-02-17,"YB","A","6","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","10%",""
+"2015-02-17_YB-Aq7",2015-02-17,2015-02-17,"YB","A","7","Pp","Pollicipes_polymerus","Type 11",154,0.0875,1760,NA,"Beatriz Vaca","Finished","Full","Full","4%",""
+"2015-02-17_YB-Aq9",2015-02-17,2015-02-17,"YB","A","9","Pp","Pollicipes_polymerus","Type 11",159,0.0875,1817.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","1%","~1% byssal threads"
+"2015-02-17_YB-Aq6",2015-02-17,2015-02-17,"YB","A","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","10%",""
+"2015-02-17_YB-Aq7",2015-02-17,2015-02-17,"YB","A","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","4%",""
+"2015-02-17_YB-Aq9",2015-02-17,2015-02-17,"YB","A","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~1% byssal threads"
+"2015-02-17_YB-Aq6",2015-02-17,2015-02-17,"YB","A","6","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Celeste Moen","Finished","Full","Full","10%",""
+"2015-02-17_YB-Aq7",2015-02-17,2015-02-17,"YB","A","7","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","4%",""
+"2015-02-17_YB-Aq9",2015-02-17,2015-02-17,"YB","A","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~1% byssal threads"
+"2015-02-17_YB-Aq6",2015-02-17,2015-02-17,"YB","A","6","ScD","Semibalanus_cariosus_(dead)","Type 6",1,0.0875,11.4285714285714,NA,"Celeste Moen","Finished","Full","Full","10%",""
+"2015-02-17_YB-Aq7",2015-02-17,2015-02-17,"YB","A","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","4%",""
+"2015-02-17_YB-Aq9",2015-02-17,2015-02-17,"YB","A","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","~1% byssal threads"
+"2015-02-17_YB-ABq1",2015-02-17,2015-02-17,"YB","AB","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2015-02-17_YB-ABq2",2015-02-17,2015-02-17,"YB","AB","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2015-02-17_YB-ABq4",2015-02-17,2015-02-17,"YB","AB","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-02-17_YB-ABq1",2015-02-17,2015-02-17,"YB","AB","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2015-02-17_YB-ABq2",2015-02-17,2015-02-17,"YB","AB","2","Ae","Anemones","Type 14",15,0.0875,171.428571428571,NA,"Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2015-02-17_YB-ABq4",2015-02-17,2015-02-17,"YB","AB","4","Ae","Anemones","Type 14",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-02-17_YB-ABq1",2015-02-17,2015-02-17,"YB","AB","1","Bg","Balanus_glandula","Type 1",442,0.0875,5051.42857142857,NA,"Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2015-02-17_YB-ABq2",2015-02-17,2015-02-17,"YB","AB","2","Bg","Balanus_glandula","Type 1",224,0.0875,2560,NA,"Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2015-02-17_YB-ABq4",2015-02-17,2015-02-17,"YB","AB","4","Bg","Balanus_glandula","Type 1",676,0.0875,7725.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-02-17_YB-ABq1",2015-02-17,2015-02-17,"YB","AB","1","BgD","Balanus_glandula_(dead)","Type 2",107,0.0875,1222.85714285714,NA,"Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2015-02-17_YB-ABq2",2015-02-17,2015-02-17,"YB","AB","2","BgD","Balanus_glandula_(dead)","Type 2",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2015-02-17_YB-ABq4",2015-02-17,2015-02-17,"YB","AB","4","BgD","Balanus_glandula_(dead)","Type 2",77,0.0875,880,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-02-17_YB-ABq1",2015-02-17,2015-02-17,"YB","AB","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2015-02-17_YB-ABq2",2015-02-17,2015-02-17,"YB","AB","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2015-02-17_YB-ABq4",2015-02-17,2015-02-17,"YB","AB","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-02-17_YB-ABq1",2015-02-17,2015-02-17,"YB","AB","1","Cth","Chthamalus_dalli","Type 3",92,0.0875,1051.42857142857,NA,"Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2015-02-17_YB-ABq2",2015-02-17,2015-02-17,"YB","AB","2","Cth","Chthamalus_dalli","Type 3",35,0.0875,400,NA,"Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2015-02-17_YB-ABq4",2015-02-17,2015-02-17,"YB","AB","4","Cth","Chthamalus_dalli","Type 3",250,0.0875,2857.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-02-17_YB-ABq1",2015-02-17,2015-02-17,"YB","AB","1","CthD","Chthamalus_dalli (dead)","Type 4",22,0.0875,251.428571428571,NA,"Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2015-02-17_YB-ABq2",2015-02-17,2015-02-17,"YB","AB","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2015-02-17_YB-ABq4",2015-02-17,2015-02-17,"YB","AB","4","CthD","Chthamalus_dalli (dead)","Type 4",15,0.0875,171.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-02-17_YB-ABq1",2015-02-17,2015-02-17,"YB","AB","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2015-02-17_YB-ABq2",2015-02-17,2015-02-17,"YB","AB","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2015-02-17_YB-ABq4",2015-02-17,2015-02-17,"YB","AB","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-02-17_YB-ABq1",2015-02-17,2015-02-17,"YB","AB","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2015-02-17_YB-ABq2",2015-02-17,2015-02-17,"YB","AB","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2015-02-17_YB-ABq4",2015-02-17,2015-02-17,"YB","AB","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-02-17_YB-ABq1",2015-02-17,2015-02-17,"YB","AB","1","Lim","Limpets","Type 12",44,0.0875,502.857142857143,NA,"Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2015-02-17_YB-ABq2",2015-02-17,2015-02-17,"YB","AB","2","Lim","Limpets","Type 12",66,0.0875,754.285714285714,NA,"Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2015-02-17_YB-ABq4",2015-02-17,2015-02-17,"YB","AB","4","Lim","Limpets","Type 12",61,0.0875,697.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-02-17_YB-ABq1",2015-02-17,2015-02-17,"YB","AB","1","Ls","Littorina_sitkana","Type 13",14,0.0875,160,NA,"Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2015-02-17_YB-ABq2",2015-02-17,2015-02-17,"YB","AB","2","Ls","Littorina_sitkana","Type 13",67,0.0875,765.714285714286,NA,"Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2015-02-17_YB-ABq4",2015-02-17,2015-02-17,"YB","AB","4","Ls","Littorina_sitkana","Type 13",130,0.0875,1485.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-02-17_YB-ABq1",2015-02-17,2015-02-17,"YB","AB","1","Mc","Mytilus_californianus","Type 17",1,0.015625,64,"c","Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2015-02-17_YB-ABq2",2015-02-17,2015-02-17,"YB","AB","2","Mc","Mytilus_californianus","Type 17",4,0.015625,256,"c","Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2015-02-17_YB-ABq4",2015-02-17,2015-02-17,"YB","AB","4","Mc","Mytilus_californianus","Type 17",38,0.0875,434.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-02-17_YB-ABq1",2015-02-17,2015-02-17,"YB","AB","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2015-02-17_YB-ABq2",2015-02-17,2015-02-17,"YB","AB","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2015-02-17_YB-ABq4",2015-02-17,2015-02-17,"YB","AB","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-02-17_YB-ABq1",2015-02-17,2015-02-17,"YB","AB","1","Myt","Mytilus_spp","Type 7",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2015-02-17_YB-ABq2",2015-02-17,2015-02-17,"YB","AB","2","Myt","Mytilus_spp","Type 7",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2015-02-17_YB-ABq4",2015-02-17,2015-02-17,"YB","AB","4","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-02-17_YB-ABq1",2015-02-17,2015-02-17,"YB","AB","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2015-02-17_YB-ABq2",2015-02-17,2015-02-17,"YB","AB","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2015-02-17_YB-ABq4",2015-02-17,2015-02-17,"YB","AB","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-02-17_YB-ABq1",2015-02-17,2015-02-17,"YB","AB","1","Mt","Mytilus_trossulus","Type 15",201,0.015625,12864,"c","Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2015-02-17_YB-ABq2",2015-02-17,2015-02-17,"YB","AB","2","Mt","Mytilus_trossulus","Type 15",289,0.015625,18496,"c","Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2015-02-17_YB-ABq4",2015-02-17,2015-02-17,"YB","AB","4","Mt","Mytilus_trossulus","Type 15",724,0.0875,8274.28571428572,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-02-17_YB-ABq1",2015-02-17,2015-02-17,"YB","AB","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2015-02-17_YB-ABq2",2015-02-17,2015-02-17,"YB","AB","2","MtD","Mytilus_trossulus_(dead)","Type 16",1,0.015625,64,"c","Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2015-02-17_YB-ABq4",2015-02-17,2015-02-17,"YB","AB","4","MtD","Mytilus_trossulus_(dead)","Type 16",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-02-17_YB-ABq1",2015-02-17,2015-02-17,"YB","AB","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2015-02-17_YB-ABq2",2015-02-17,2015-02-17,"YB","AB","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2015-02-17_YB-ABq4",2015-02-17,2015-02-17,"YB","AB","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-02-17_YB-ABq1",2015-02-17,2015-02-17,"YB","AB","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2015-02-17_YB-ABq2",2015-02-17,2015-02-17,"YB","AB","2","Nc","Nucella_canaliculata","Type 10",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2015-02-17_YB-ABq4",2015-02-17,2015-02-17,"YB","AB","4","Nc","Nucella_canaliculata","Type 10",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-02-17_YB-ABq1",2015-02-17,2015-02-17,"YB","AB","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2015-02-17_YB-ABq2",2015-02-17,2015-02-17,"YB","AB","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2015-02-17_YB-ABq4",2015-02-17,2015-02-17,"YB","AB","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-02-17_YB-ABq1",2015-02-17,2015-02-17,"YB","AB","1","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2015-02-17_YB-ABq2",2015-02-17,2015-02-17,"YB","AB","2","No","Nucella_ostrina","Type 9",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2015-02-17_YB-ABq4",2015-02-17,2015-02-17,"YB","AB","4","No","Nucella_ostrina","Type 9",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-02-17_YB-ABq1",2015-02-17,2015-02-17,"YB","AB","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2015-02-17_YB-ABq2",2015-02-17,2015-02-17,"YB","AB","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2015-02-17_YB-ABq4",2015-02-17,2015-02-17,"YB","AB","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-02-17_YB-ABq1",2015-02-17,2015-02-17,"YB","AB","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2015-02-17_YB-ABq2",2015-02-17,2015-02-17,"YB","AB","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2015-02-17_YB-ABq4",2015-02-17,2015-02-17,"YB","AB","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-02-17_YB-ABq1",2015-02-17,2015-02-17,"YB","AB","1","Pp","Pollicipes_polymerus","Type 11",436,0.0875,4982.85714285714,NA,"Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2015-02-17_YB-ABq2",2015-02-17,2015-02-17,"YB","AB","2","Pp","Pollicipes_polymerus","Type 11",374,0.0875,4274.28571428571,NA,"Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2015-02-17_YB-ABq4",2015-02-17,2015-02-17,"YB","AB","4","Pp","Pollicipes_polymerus","Type 11",354,0.0875,4045.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-02-17_YB-ABq1",2015-02-17,2015-02-17,"YB","AB","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2015-02-17_YB-ABq2",2015-02-17,2015-02-17,"YB","AB","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2015-02-17_YB-ABq4",2015-02-17,2015-02-17,"YB","AB","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-02-17_YB-ABq1",2015-02-17,2015-02-17,"YB","AB","1","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2015-02-17_YB-ABq2",2015-02-17,2015-02-17,"YB","AB","2","Sc","Semibalanus_cariosus","Type 5",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2015-02-17_YB-ABq4",2015-02-17,2015-02-17,"YB","AB","4","Sc","Semibalanus_cariosus","Type 5",10,0.0875,114.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-02-17_YB-ABq1",2015-02-17,2015-02-17,"YB","AB","1","ScD","Semibalanus_cariosus_(dead)","Type 6",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2015-02-17_YB-ABq2",2015-02-17,2015-02-17,"YB","AB","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2015-02-17_YB-ABq4",2015-02-17,2015-02-17,"YB","AB","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-02-17_YB-ACq4",2015-02-17,2015-02-17,"YB","AC","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-02-17_YB-ACq7",2015-02-17,2015-02-17,"YB","AC","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to shadow and algae cover."
+"2015-02-17_YB-ACq8",2015-02-17,2015-02-17,"YB","AC","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2015-02-17_YB-ACq4",2015-02-17,2015-02-17,"YB","AC","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-02-17_YB-ACq7",2015-02-17,2015-02-17,"YB","AC","7","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to shadow and algae cover."
+"2015-02-17_YB-ACq8",2015-02-17,2015-02-17,"YB","AC","8","Ae","Anemones","Type 14",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2015-02-17_YB-ACq4",2015-02-17,2015-02-17,"YB","AC","4","Bg","Balanus_glandula","Type 1",408,0.015625,26112,"c","Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-02-17_YB-ACq7",2015-02-17,2015-02-17,"YB","AC","7","Bg","Balanus_glandula","Type 1",1132,0.0875,12937.1428571429,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to shadow and algae cover."
+"2015-02-17_YB-ACq8",2015-02-17,2015-02-17,"YB","AC","8","Bg","Balanus_glandula","Type 1",292,0.015625,18688,"c","Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2015-02-17_YB-ACq4",2015-02-17,2015-02-17,"YB","AC","4","BgD","Balanus_glandula_(dead)","Type 2",139,0.015625,8896,"c","Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-02-17_YB-ACq7",2015-02-17,2015-02-17,"YB","AC","7","BgD","Balanus_glandula_(dead)","Type 2",361,0.0875,4125.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to shadow and algae cover."
+"2015-02-17_YB-ACq8",2015-02-17,2015-02-17,"YB","AC","8","BgD","Balanus_glandula_(dead)","Type 2",101,0.015625,6464,"c","Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2015-02-17_YB-ACq4",2015-02-17,2015-02-17,"YB","AC","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-02-17_YB-ACq7",2015-02-17,2015-02-17,"YB","AC","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to shadow and algae cover."
+"2015-02-17_YB-ACq8",2015-02-17,2015-02-17,"YB","AC","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2015-02-17_YB-ACq4",2015-02-17,2015-02-17,"YB","AC","4","Cth","Chthamalus_dalli","Type 3",59,0.015625,3776,"c","Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-02-17_YB-ACq7",2015-02-17,2015-02-17,"YB","AC","7","Cth","Chthamalus_dalli","Type 3",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to shadow and algae cover."
+"2015-02-17_YB-ACq8",2015-02-17,2015-02-17,"YB","AC","8","Cth","Chthamalus_dalli","Type 3",1,0.015625,64,"c","Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2015-02-17_YB-ACq4",2015-02-17,2015-02-17,"YB","AC","4","CthD","Chthamalus_dalli (dead)","Type 4",18,0.015625,1152,"c","Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-02-17_YB-ACq7",2015-02-17,2015-02-17,"YB","AC","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to shadow and algae cover."
+"2015-02-17_YB-ACq8",2015-02-17,2015-02-17,"YB","AC","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2015-02-17_YB-ACq4",2015-02-17,2015-02-17,"YB","AC","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-02-17_YB-ACq7",2015-02-17,2015-02-17,"YB","AC","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to shadow and algae cover."
+"2015-02-17_YB-ACq8",2015-02-17,2015-02-17,"YB","AC","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2015-02-17_YB-ACq4",2015-02-17,2015-02-17,"YB","AC","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-02-17_YB-ACq7",2015-02-17,2015-02-17,"YB","AC","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to shadow and algae cover."
+"2015-02-17_YB-ACq8",2015-02-17,2015-02-17,"YB","AC","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2015-02-17_YB-ACq4",2015-02-17,2015-02-17,"YB","AC","4","Lim","Limpets","Type 12",13,0.0875,148.571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-02-17_YB-ACq7",2015-02-17,2015-02-17,"YB","AC","7","Lim","Limpets","Type 12",11,0.0875,125.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to shadow and algae cover."
+"2015-02-17_YB-ACq8",2015-02-17,2015-02-17,"YB","AC","8","Lim","Limpets","Type 12",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2015-02-17_YB-ACq4",2015-02-17,2015-02-17,"YB","AC","4","Ls","Littorina_sitkana","Type 13",521,0.0875,5954.28571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-02-17_YB-ACq7",2015-02-17,2015-02-17,"YB","AC","7","Ls","Littorina_sitkana","Type 13",490,0.0875,5600,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to shadow and algae cover."
+"2015-02-17_YB-ACq8",2015-02-17,2015-02-17,"YB","AC","8","Ls","Littorina_sitkana","Type 13",349,0.0875,3988.57142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2015-02-17_YB-ACq4",2015-02-17,2015-02-17,"YB","AC","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-02-17_YB-ACq7",2015-02-17,2015-02-17,"YB","AC","7","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to shadow and algae cover."
+"2015-02-17_YB-ACq8",2015-02-17,2015-02-17,"YB","AC","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2015-02-17_YB-ACq4",2015-02-17,2015-02-17,"YB","AC","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-02-17_YB-ACq7",2015-02-17,2015-02-17,"YB","AC","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to shadow and algae cover."
+"2015-02-17_YB-ACq8",2015-02-17,2015-02-17,"YB","AC","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2015-02-17_YB-ACq4",2015-02-17,2015-02-17,"YB","AC","4","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-02-17_YB-ACq7",2015-02-17,2015-02-17,"YB","AC","7","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to shadow and algae cover."
+"2015-02-17_YB-ACq8",2015-02-17,2015-02-17,"YB","AC","8","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2015-02-17_YB-ACq4",2015-02-17,2015-02-17,"YB","AC","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-02-17_YB-ACq7",2015-02-17,2015-02-17,"YB","AC","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to shadow and algae cover."
+"2015-02-17_YB-ACq8",2015-02-17,2015-02-17,"YB","AC","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2015-02-17_YB-ACq4",2015-02-17,2015-02-17,"YB","AC","4","Mt","Mytilus_trossulus","Type 15",327,0.0875,3737.14285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-02-17_YB-ACq7",2015-02-17,2015-02-17,"YB","AC","7","Mt","Mytilus_trossulus","Type 15",314,0.0875,3588.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to shadow and algae cover."
+"2015-02-17_YB-ACq8",2015-02-17,2015-02-17,"YB","AC","8","Mt","Mytilus_trossulus","Type 15",460,0.0875,5257.14285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2015-02-17_YB-ACq4",2015-02-17,2015-02-17,"YB","AC","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-02-17_YB-ACq7",2015-02-17,2015-02-17,"YB","AC","7","MtD","Mytilus_trossulus_(dead)","Type 16",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to shadow and algae cover."
+"2015-02-17_YB-ACq8",2015-02-17,2015-02-17,"YB","AC","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2015-02-17_YB-ACq4",2015-02-17,2015-02-17,"YB","AC","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-02-17_YB-ACq7",2015-02-17,2015-02-17,"YB","AC","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to shadow and algae cover."
+"2015-02-17_YB-ACq8",2015-02-17,2015-02-17,"YB","AC","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2015-02-17_YB-ACq4",2015-02-17,2015-02-17,"YB","AC","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-02-17_YB-ACq7",2015-02-17,2015-02-17,"YB","AC","7","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to shadow and algae cover."
+"2015-02-17_YB-ACq8",2015-02-17,2015-02-17,"YB","AC","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2015-02-17_YB-ACq4",2015-02-17,2015-02-17,"YB","AC","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-02-17_YB-ACq7",2015-02-17,2015-02-17,"YB","AC","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to shadow and algae cover."
+"2015-02-17_YB-ACq8",2015-02-17,2015-02-17,"YB","AC","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2015-02-17_YB-ACq4",2015-02-17,2015-02-17,"YB","AC","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-02-17_YB-ACq7",2015-02-17,2015-02-17,"YB","AC","7","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to shadow and algae cover."
+"2015-02-17_YB-ACq8",2015-02-17,2015-02-17,"YB","AC","8","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2015-02-17_YB-ACq4",2015-02-17,2015-02-17,"YB","AC","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-02-17_YB-ACq7",2015-02-17,2015-02-17,"YB","AC","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to shadow and algae cover."
+"2015-02-17_YB-ACq8",2015-02-17,2015-02-17,"YB","AC","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2015-02-17_YB-ACq4",2015-02-17,2015-02-17,"YB","AC","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-02-17_YB-ACq7",2015-02-17,2015-02-17,"YB","AC","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to shadow and algae cover."
+"2015-02-17_YB-ACq8",2015-02-17,2015-02-17,"YB","AC","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2015-02-17_YB-ACq4",2015-02-17,2015-02-17,"YB","AC","4","Pp","Pollicipes_polymerus","Type 11",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-02-17_YB-ACq7",2015-02-17,2015-02-17,"YB","AC","7","Pp","Pollicipes_polymerus","Type 11",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to shadow and algae cover."
+"2015-02-17_YB-ACq8",2015-02-17,2015-02-17,"YB","AC","8","Pp","Pollicipes_polymerus","Type 11",78,0.0875,891.428571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2015-02-17_YB-ACq4",2015-02-17,2015-02-17,"YB","AC","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-02-17_YB-ACq7",2015-02-17,2015-02-17,"YB","AC","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to shadow and algae cover."
+"2015-02-17_YB-ACq8",2015-02-17,2015-02-17,"YB","AC","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2015-02-17_YB-ACq4",2015-02-17,2015-02-17,"YB","AC","4","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-02-17_YB-ACq7",2015-02-17,2015-02-17,"YB","AC","7","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to shadow and algae cover."
+"2015-02-17_YB-ACq8",2015-02-17,2015-02-17,"YB","AC","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2015-02-17_YB-ACq4",2015-02-17,2015-02-17,"YB","AC","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-02-17_YB-ACq7",2015-02-17,2015-02-17,"YB","AC","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to shadow and algae cover."
+"2015-02-17_YB-ACq8",2015-02-17,2015-02-17,"YB","AC","8","ScD","Semibalanus_cariosus_(dead)","Type 6",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","0%",""
+"2015-02-17_YB-ADq1",2015-02-17,2015-02-17,"YB","AD","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-02-17_YB-ADq5",2015-02-17,2015-02-17,"YB","AD","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-02-17_YB-ADq8",2015-02-17,2015-02-17,"YB","AD","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-02-17_YB-ADq1",2015-02-17,2015-02-17,"YB","AD","1","Ae","Anemones","Type 14",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-02-17_YB-ADq5",2015-02-17,2015-02-17,"YB","AD","5","Ae","Anemones","Type 14",12,0.0875,137.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-02-17_YB-ADq8",2015-02-17,2015-02-17,"YB","AD","8","Ae","Anemones","Type 14",40,0.0875,457.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-02-17_YB-ADq1",2015-02-17,2015-02-17,"YB","AD","1","Bg","Balanus_glandula","Type 1",186,0.0875,2125.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-02-17_YB-ADq5",2015-02-17,2015-02-17,"YB","AD","5","Bg","Balanus_glandula","Type 1",183,0.0875,2091.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-02-17_YB-ADq8",2015-02-17,2015-02-17,"YB","AD","8","Bg","Balanus_glandula","Type 1",263,0.0875,3005.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-02-17_YB-ADq1",2015-02-17,2015-02-17,"YB","AD","1","BgD","Balanus_glandula_(dead)","Type 2",48,0.0875,548.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-02-17_YB-ADq5",2015-02-17,2015-02-17,"YB","AD","5","BgD","Balanus_glandula_(dead)","Type 2",50,0.0875,571.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-02-17_YB-ADq8",2015-02-17,2015-02-17,"YB","AD","8","BgD","Balanus_glandula_(dead)","Type 2",116,0.0875,1325.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-02-17_YB-ADq1",2015-02-17,2015-02-17,"YB","AD","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-02-17_YB-ADq5",2015-02-17,2015-02-17,"YB","AD","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-02-17_YB-ADq8",2015-02-17,2015-02-17,"YB","AD","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-02-17_YB-ADq1",2015-02-17,2015-02-17,"YB","AD","1","Cth","Chthamalus_dalli","Type 3",41,0.0875,468.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-02-17_YB-ADq5",2015-02-17,2015-02-17,"YB","AD","5","Cth","Chthamalus_dalli","Type 3",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-02-17_YB-ADq8",2015-02-17,2015-02-17,"YB","AD","8","Cth","Chthamalus_dalli","Type 3",151,0.0875,1725.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-02-17_YB-ADq1",2015-02-17,2015-02-17,"YB","AD","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-02-17_YB-ADq5",2015-02-17,2015-02-17,"YB","AD","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-02-17_YB-ADq8",2015-02-17,2015-02-17,"YB","AD","8","CthD","Chthamalus_dalli (dead)","Type 4",24,0.0875,274.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-02-17_YB-ADq1",2015-02-17,2015-02-17,"YB","AD","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-02-17_YB-ADq5",2015-02-17,2015-02-17,"YB","AD","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-02-17_YB-ADq8",2015-02-17,2015-02-17,"YB","AD","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-02-17_YB-ADq1",2015-02-17,2015-02-17,"YB","AD","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-02-17_YB-ADq5",2015-02-17,2015-02-17,"YB","AD","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-02-17_YB-ADq8",2015-02-17,2015-02-17,"YB","AD","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-02-17_YB-ADq1",2015-02-17,2015-02-17,"YB","AD","1","Lim","Limpets","Type 12",25,0.0875,285.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-02-17_YB-ADq5",2015-02-17,2015-02-17,"YB","AD","5","Lim","Limpets","Type 12",27,0.0875,308.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-02-17_YB-ADq8",2015-02-17,2015-02-17,"YB","AD","8","Lim","Limpets","Type 12",106,0.0875,1211.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-02-17_YB-ADq1",2015-02-17,2015-02-17,"YB","AD","1","Ls","Littorina_sitkana","Type 13",144,0.0875,1645.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-02-17_YB-ADq5",2015-02-17,2015-02-17,"YB","AD","5","Ls","Littorina_sitkana","Type 13",36,0.0875,411.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-02-17_YB-ADq8",2015-02-17,2015-02-17,"YB","AD","8","Ls","Littorina_sitkana","Type 13",35,0.0875,400,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-02-17_YB-ADq1",2015-02-17,2015-02-17,"YB","AD","1","Mc","Mytilus_californianus","Type 17",32,0.0875,365.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-02-17_YB-ADq5",2015-02-17,2015-02-17,"YB","AD","5","Mc","Mytilus_californianus","Type 17",20,0.0875,228.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-02-17_YB-ADq8",2015-02-17,2015-02-17,"YB","AD","8","Mc","Mytilus_californianus","Type 17",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-02-17_YB-ADq1",2015-02-17,2015-02-17,"YB","AD","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-02-17_YB-ADq5",2015-02-17,2015-02-17,"YB","AD","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-02-17_YB-ADq8",2015-02-17,2015-02-17,"YB","AD","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-02-17_YB-ADq1",2015-02-17,2015-02-17,"YB","AD","1","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-02-17_YB-ADq5",2015-02-17,2015-02-17,"YB","AD","5","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-02-17_YB-ADq8",2015-02-17,2015-02-17,"YB","AD","8","Myt","Mytilus_spp","Type 7",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-02-17_YB-ADq1",2015-02-17,2015-02-17,"YB","AD","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-02-17_YB-ADq5",2015-02-17,2015-02-17,"YB","AD","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-02-17_YB-ADq8",2015-02-17,2015-02-17,"YB","AD","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-02-17_YB-ADq1",2015-02-17,2015-02-17,"YB","AD","1","Mt","Mytilus_trossulus","Type 15",368,0.0875,4205.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-02-17_YB-ADq5",2015-02-17,2015-02-17,"YB","AD","5","Mt","Mytilus_trossulus","Type 15",510,0.0875,5828.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-02-17_YB-ADq8",2015-02-17,2015-02-17,"YB","AD","8","Mt","Mytilus_trossulus","Type 15",423,0.0875,4834.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-02-17_YB-ADq1",2015-02-17,2015-02-17,"YB","AD","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-02-17_YB-ADq5",2015-02-17,2015-02-17,"YB","AD","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-02-17_YB-ADq8",2015-02-17,2015-02-17,"YB","AD","8","MtD","Mytilus_trossulus_(dead)","Type 16",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-02-17_YB-ADq1",2015-02-17,2015-02-17,"YB","AD","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-02-17_YB-ADq5",2015-02-17,2015-02-17,"YB","AD","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-02-17_YB-ADq8",2015-02-17,2015-02-17,"YB","AD","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-02-17_YB-ADq1",2015-02-17,2015-02-17,"YB","AD","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-02-17_YB-ADq5",2015-02-17,2015-02-17,"YB","AD","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-02-17_YB-ADq8",2015-02-17,2015-02-17,"YB","AD","8","Nc","Nucella_canaliculata","Type 10",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-02-17_YB-ADq1",2015-02-17,2015-02-17,"YB","AD","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-02-17_YB-ADq5",2015-02-17,2015-02-17,"YB","AD","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-02-17_YB-ADq8",2015-02-17,2015-02-17,"YB","AD","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-02-17_YB-ADq1",2015-02-17,2015-02-17,"YB","AD","1","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-02-17_YB-ADq5",2015-02-17,2015-02-17,"YB","AD","5","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-02-17_YB-ADq8",2015-02-17,2015-02-17,"YB","AD","8","No","Nucella_ostrina","Type 9",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-02-17_YB-ADq1",2015-02-17,2015-02-17,"YB","AD","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-02-17_YB-ADq5",2015-02-17,2015-02-17,"YB","AD","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-02-17_YB-ADq8",2015-02-17,2015-02-17,"YB","AD","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-02-17_YB-ADq1",2015-02-17,2015-02-17,"YB","AD","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-02-17_YB-ADq5",2015-02-17,2015-02-17,"YB","AD","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-02-17_YB-ADq8",2015-02-17,2015-02-17,"YB","AD","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-02-17_YB-ADq1",2015-02-17,2015-02-17,"YB","AD","1","Pp","Pollicipes_polymerus","Type 11",71,0.0875,811.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-02-17_YB-ADq5",2015-02-17,2015-02-17,"YB","AD","5","Pp","Pollicipes_polymerus","Type 11",214,0.0875,2445.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-02-17_YB-ADq8",2015-02-17,2015-02-17,"YB","AD","8","Pp","Pollicipes_polymerus","Type 11",26,0.0875,297.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-02-17_YB-ADq1",2015-02-17,2015-02-17,"YB","AD","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-02-17_YB-ADq5",2015-02-17,2015-02-17,"YB","AD","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-02-17_YB-ADq8",2015-02-17,2015-02-17,"YB","AD","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-02-17_YB-ADq1",2015-02-17,2015-02-17,"YB","AD","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-02-17_YB-ADq5",2015-02-17,2015-02-17,"YB","AD","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-02-17_YB-ADq8",2015-02-17,2015-02-17,"YB","AD","8","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-02-17_YB-ADq1",2015-02-17,2015-02-17,"YB","AD","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-02-17_YB-ADq5",2015-02-17,2015-02-17,"YB","AD","5","ScD","Semibalanus_cariosus_(dead)","Type 6",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-02-17_YB-ADq8",2015-02-17,2015-02-17,"YB","AD","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-02-17_YB-AEq1",2015-02-17,2015-02-17,"YB","AE","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2015-02-17_YB-AEq4",2015-02-17,2015-02-17,"YB","AE","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","8%",""
+"2015-02-17_YB-AEq8",2015-02-17,2015-02-17,"YB","AE","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-02-17_YB-AEq1",2015-02-17,2015-02-17,"YB","AE","1","Ae","Anemones","Type 14",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2015-02-17_YB-AEq4",2015-02-17,2015-02-17,"YB","AE","4","Ae","Anemones","Type 14",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","8%",""
+"2015-02-17_YB-AEq8",2015-02-17,2015-02-17,"YB","AE","8","Ae","Anemones","Type 14",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-02-17_YB-AEq1",2015-02-17,2015-02-17,"YB","AE","1","Bg","Balanus_glandula","Type 1",390,0.0875,4457.14285714286,NA,"Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2015-02-17_YB-AEq4",2015-02-17,2015-02-17,"YB","AE","4","Bg","Balanus_glandula","Type 1",201,0.015625,12864,"c","Beatriz Vaca","Finished","Full","Cropped","8%",""
+"2015-02-17_YB-AEq8",2015-02-17,2015-02-17,"YB","AE","8","Bg","Balanus_glandula","Type 1",788,0.0875,9005.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-02-17_YB-AEq1",2015-02-17,2015-02-17,"YB","AE","1","BgD","Balanus_glandula_(dead)","Type 2",114,0.0875,1302.85714285714,NA,"Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2015-02-17_YB-AEq4",2015-02-17,2015-02-17,"YB","AE","4","BgD","Balanus_glandula_(dead)","Type 2",55,0.015625,3520,"c","Beatriz Vaca","Finished","Full","Cropped","8%",""
+"2015-02-17_YB-AEq8",2015-02-17,2015-02-17,"YB","AE","8","BgD","Balanus_glandula_(dead)","Type 2",150,0.0875,1714.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-02-17_YB-AEq1",2015-02-17,2015-02-17,"YB","AE","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2015-02-17_YB-AEq4",2015-02-17,2015-02-17,"YB","AE","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","8%",""
+"2015-02-17_YB-AEq8",2015-02-17,2015-02-17,"YB","AE","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-02-17_YB-AEq1",2015-02-17,2015-02-17,"YB","AE","1","Cth","Chthamalus_dalli","Type 3",164,0.0875,1874.28571428571,NA,"Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2015-02-17_YB-AEq4",2015-02-17,2015-02-17,"YB","AE","4","Cth","Chthamalus_dalli","Type 3",28,0.015625,1792,"c","Beatriz Vaca","Finished","Full","Cropped","8%",""
+"2015-02-17_YB-AEq8",2015-02-17,2015-02-17,"YB","AE","8","Cth","Chthamalus_dalli","Type 3",79,0.0875,902.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-02-17_YB-AEq1",2015-02-17,2015-02-17,"YB","AE","1","CthD","Chthamalus_dalli (dead)","Type 4",22,0.0875,251.428571428571,NA,"Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2015-02-17_YB-AEq4",2015-02-17,2015-02-17,"YB","AE","4","CthD","Chthamalus_dalli (dead)","Type 4",1,0.015625,64,"c","Beatriz Vaca","Finished","Full","Cropped","8%",""
+"2015-02-17_YB-AEq8",2015-02-17,2015-02-17,"YB","AE","8","CthD","Chthamalus_dalli (dead)","Type 4",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-02-17_YB-AEq1",2015-02-17,2015-02-17,"YB","AE","1","Emp","Emplectonema worm","Type 23",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2015-02-17_YB-AEq4",2015-02-17,2015-02-17,"YB","AE","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","8%",""
+"2015-02-17_YB-AEq8",2015-02-17,2015-02-17,"YB","AE","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-02-17_YB-AEq1",2015-02-17,2015-02-17,"YB","AE","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2015-02-17_YB-AEq4",2015-02-17,2015-02-17,"YB","AE","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","8%",""
+"2015-02-17_YB-AEq8",2015-02-17,2015-02-17,"YB","AE","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-02-17_YB-AEq1",2015-02-17,2015-02-17,"YB","AE","1","Lim","Limpets","Type 12",35,0.0875,400,NA,"Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2015-02-17_YB-AEq4",2015-02-17,2015-02-17,"YB","AE","4","Lim","Limpets","Type 12",131,0.0875,1497.14285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","8%",""
+"2015-02-17_YB-AEq8",2015-02-17,2015-02-17,"YB","AE","8","Lim","Limpets","Type 12",121,0.0875,1382.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-02-17_YB-AEq1",2015-02-17,2015-02-17,"YB","AE","1","Ls","Littorina_sitkana","Type 13",20,0.0875,228.571428571429,NA,"Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2015-02-17_YB-AEq4",2015-02-17,2015-02-17,"YB","AE","4","Ls","Littorina_sitkana","Type 13",127,0.0875,1451.42857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","8%",""
+"2015-02-17_YB-AEq8",2015-02-17,2015-02-17,"YB","AE","8","Ls","Littorina_sitkana","Type 13",54,0.0875,617.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-02-17_YB-AEq1",2015-02-17,2015-02-17,"YB","AE","1","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2015-02-17_YB-AEq4",2015-02-17,2015-02-17,"YB","AE","4","Mc","Mytilus_californianus","Type 17",27,0.0875,308.571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","8%",""
+"2015-02-17_YB-AEq8",2015-02-17,2015-02-17,"YB","AE","8","Mc","Mytilus_californianus","Type 17",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-02-17_YB-AEq1",2015-02-17,2015-02-17,"YB","AE","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2015-02-17_YB-AEq4",2015-02-17,2015-02-17,"YB","AE","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","8%",""
+"2015-02-17_YB-AEq8",2015-02-17,2015-02-17,"YB","AE","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-02-17_YB-AEq1",2015-02-17,2015-02-17,"YB","AE","1","Myt","Mytilus_spp","Type 7",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2015-02-17_YB-AEq4",2015-02-17,2015-02-17,"YB","AE","4","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","8%",""
+"2015-02-17_YB-AEq8",2015-02-17,2015-02-17,"YB","AE","8","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-02-17_YB-AEq1",2015-02-17,2015-02-17,"YB","AE","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2015-02-17_YB-AEq4",2015-02-17,2015-02-17,"YB","AE","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","8%",""
+"2015-02-17_YB-AEq8",2015-02-17,2015-02-17,"YB","AE","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-02-17_YB-AEq1",2015-02-17,2015-02-17,"YB","AE","1","Mt","Mytilus_trossulus","Type 15",161,0.015625,10304,"c","Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2015-02-17_YB-AEq4",2015-02-17,2015-02-17,"YB","AE","4","Mt","Mytilus_trossulus","Type 15",282,0.0875,3222.85714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","8%",""
+"2015-02-17_YB-AEq8",2015-02-17,2015-02-17,"YB","AE","8","Mt","Mytilus_trossulus","Type 15",1008,0.0875,11520,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-02-17_YB-AEq1",2015-02-17,2015-02-17,"YB","AE","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2015-02-17_YB-AEq4",2015-02-17,2015-02-17,"YB","AE","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","8%",""
+"2015-02-17_YB-AEq8",2015-02-17,2015-02-17,"YB","AE","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-02-17_YB-AEq1",2015-02-17,2015-02-17,"YB","AE","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2015-02-17_YB-AEq4",2015-02-17,2015-02-17,"YB","AE","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","8%",""
+"2015-02-17_YB-AEq8",2015-02-17,2015-02-17,"YB","AE","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-02-17_YB-AEq1",2015-02-17,2015-02-17,"YB","AE","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2015-02-17_YB-AEq4",2015-02-17,2015-02-17,"YB","AE","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","8%",""
+"2015-02-17_YB-AEq8",2015-02-17,2015-02-17,"YB","AE","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-02-17_YB-AEq1",2015-02-17,2015-02-17,"YB","AE","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2015-02-17_YB-AEq4",2015-02-17,2015-02-17,"YB","AE","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","8%",""
+"2015-02-17_YB-AEq8",2015-02-17,2015-02-17,"YB","AE","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-02-17_YB-AEq1",2015-02-17,2015-02-17,"YB","AE","1","No","Nucella_ostrina","Type 9",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2015-02-17_YB-AEq4",2015-02-17,2015-02-17,"YB","AE","4","No","Nucella_ostrina","Type 9",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","8%",""
+"2015-02-17_YB-AEq8",2015-02-17,2015-02-17,"YB","AE","8","No","Nucella_ostrina","Type 9",13,0.0875,148.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-02-17_YB-AEq1",2015-02-17,2015-02-17,"YB","AE","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2015-02-17_YB-AEq4",2015-02-17,2015-02-17,"YB","AE","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","8%",""
+"2015-02-17_YB-AEq8",2015-02-17,2015-02-17,"YB","AE","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-02-17_YB-AEq1",2015-02-17,2015-02-17,"YB","AE","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2015-02-17_YB-AEq4",2015-02-17,2015-02-17,"YB","AE","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","8%",""
+"2015-02-17_YB-AEq8",2015-02-17,2015-02-17,"YB","AE","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-02-17_YB-AEq1",2015-02-17,2015-02-17,"YB","AE","1","Pp","Pollicipes_polymerus","Type 11",79,0.0875,902.857142857143,NA,"Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2015-02-17_YB-AEq4",2015-02-17,2015-02-17,"YB","AE","4","Pp","Pollicipes_polymerus","Type 11",32,0.0875,365.714285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","8%",""
+"2015-02-17_YB-AEq8",2015-02-17,2015-02-17,"YB","AE","8","Pp","Pollicipes_polymerus","Type 11",34,0.0875,388.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-02-17_YB-AEq1",2015-02-17,2015-02-17,"YB","AE","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2015-02-17_YB-AEq4",2015-02-17,2015-02-17,"YB","AE","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","8%",""
+"2015-02-17_YB-AEq8",2015-02-17,2015-02-17,"YB","AE","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-02-17_YB-AEq1",2015-02-17,2015-02-17,"YB","AE","1","Sc","Semibalanus_cariosus","Type 5",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2015-02-17_YB-AEq4",2015-02-17,2015-02-17,"YB","AE","4","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","8%",""
+"2015-02-17_YB-AEq8",2015-02-17,2015-02-17,"YB","AE","8","Sc","Semibalanus_cariosus","Type 5",13,0.0875,148.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-02-17_YB-AEq1",2015-02-17,2015-02-17,"YB","AE","1","ScD","Semibalanus_cariosus_(dead)","Type 6",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Cropped","Full","10%",""
+"2015-02-17_YB-AEq4",2015-02-17,2015-02-17,"YB","AE","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","8%",""
+"2015-02-17_YB-AEq8",2015-02-17,2015-02-17,"YB","AE","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-02-17_YB-AFq5",2015-02-17,2015-02-17,"YB","AF","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2015-02-17_YB-AFq8",2015-02-17,2015-02-17,"YB","AF","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%","~3% underwater"
+"2015-02-17_YB-AFq9",2015-02-17,2015-02-17,"YB","AF","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","1%","Counts likely low due to water patches"
+"2015-02-17_YB-AFq5",2015-02-17,2015-02-17,"YB","AF","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2015-02-17_YB-AFq8",2015-02-17,2015-02-17,"YB","AF","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%","~3% underwater"
+"2015-02-17_YB-AFq9",2015-02-17,2015-02-17,"YB","AF","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","1%","Counts likely low due to water patches"
+"2015-02-17_YB-AFq5",2015-02-17,2015-02-17,"YB","AF","5","Bg","Balanus_glandula","Type 1",182,0.015625,11648,"c","Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2015-02-17_YB-AFq8",2015-02-17,2015-02-17,"YB","AF","8","Bg","Balanus_glandula","Type 1",1391,0.0875,15897.1428571429,NA,"Celeste Moen","Finished","Full","Full","0%","~3% underwater"
+"2015-02-17_YB-AFq9",2015-02-17,2015-02-17,"YB","AF","9","Bg","Balanus_glandula","Type 1",1315,0.0875,15028.5714285714,NA,"Stephanie Merhoff","Finished","Full","Full","1%","Counts likely low due to water patches"
+"2015-02-17_YB-AFq5",2015-02-17,2015-02-17,"YB","AF","5","BgD","Balanus_glandula_(dead)","Type 2",37,0.015625,2368,"c","Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2015-02-17_YB-AFq8",2015-02-17,2015-02-17,"YB","AF","8","BgD","Balanus_glandula_(dead)","Type 2",599,0.0875,6845.71428571429,NA,"Celeste Moen","Finished","Full","Full","0%","~3% underwater"
+"2015-02-17_YB-AFq9",2015-02-17,2015-02-17,"YB","AF","9","BgD","Balanus_glandula_(dead)","Type 2",28,0.0875,320,NA,"Stephanie Merhoff","Finished","Full","Full","1%","Counts likely low due to water patches"
+"2015-02-17_YB-AFq5",2015-02-17,2015-02-17,"YB","AF","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2015-02-17_YB-AFq8",2015-02-17,2015-02-17,"YB","AF","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%","~3% underwater"
+"2015-02-17_YB-AFq9",2015-02-17,2015-02-17,"YB","AF","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","1%","Counts likely low due to water patches"
+"2015-02-17_YB-AFq5",2015-02-17,2015-02-17,"YB","AF","5","Cth","Chthamalus_dalli","Type 3",22,0.015625,1408,"c","Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2015-02-17_YB-AFq8",2015-02-17,2015-02-17,"YB","AF","8","Cth","Chthamalus_dalli","Type 3",45,0.0875,514.285714285714,NA,"Celeste Moen","Finished","Full","Full","0%","~3% underwater"
+"2015-02-17_YB-AFq9",2015-02-17,2015-02-17,"YB","AF","9","Cth","Chthamalus_dalli","Type 3",8,0.0875,91.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","1%","Counts likely low due to water patches"
+"2015-02-17_YB-AFq5",2015-02-17,2015-02-17,"YB","AF","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2015-02-17_YB-AFq8",2015-02-17,2015-02-17,"YB","AF","8","CthD","Chthamalus_dalli (dead)","Type 4",3,0.0875,34.2857142857143,NA,"Celeste Moen","Finished","Full","Full","0%","~3% underwater"
+"2015-02-17_YB-AFq9",2015-02-17,2015-02-17,"YB","AF","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","1%","Counts likely low due to water patches"
+"2015-02-17_YB-AFq5",2015-02-17,2015-02-17,"YB","AF","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2015-02-17_YB-AFq8",2015-02-17,2015-02-17,"YB","AF","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%","~3% underwater"
+"2015-02-17_YB-AFq9",2015-02-17,2015-02-17,"YB","AF","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","1%","Counts likely low due to water patches"
+"2015-02-17_YB-AFq5",2015-02-17,2015-02-17,"YB","AF","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2015-02-17_YB-AFq8",2015-02-17,2015-02-17,"YB","AF","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%","~3% underwater"
+"2015-02-17_YB-AFq9",2015-02-17,2015-02-17,"YB","AF","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","1%","Counts likely low due to water patches"
+"2015-02-17_YB-AFq5",2015-02-17,2015-02-17,"YB","AF","5","Lim","Limpets","Type 12",53,0.0875,605.714285714286,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2015-02-17_YB-AFq8",2015-02-17,2015-02-17,"YB","AF","8","Lim","Limpets","Type 12",4,0.0875,45.7142857142857,NA,"Celeste Moen","Finished","Full","Full","0%","~3% underwater"
+"2015-02-17_YB-AFq9",2015-02-17,2015-02-17,"YB","AF","9","Lim","Limpets","Type 12",23,0.0875,262.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","1%","Counts likely low due to water patches"
+"2015-02-17_YB-AFq5",2015-02-17,2015-02-17,"YB","AF","5","Ls","Littorina_sitkana","Type 13",99,0.0875,1131.42857142857,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2015-02-17_YB-AFq8",2015-02-17,2015-02-17,"YB","AF","8","Ls","Littorina_sitkana","Type 13",54,0.0875,617.142857142857,NA,"Celeste Moen","Finished","Full","Full","0%","~3% underwater"
+"2015-02-17_YB-AFq9",2015-02-17,2015-02-17,"YB","AF","9","Ls","Littorina_sitkana","Type 13",157,0.0875,1794.28571428571,NA,"Stephanie Merhoff","Finished","Full","Full","1%","Counts likely low due to water patches"
+"2015-02-17_YB-AFq5",2015-02-17,2015-02-17,"YB","AF","5","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2015-02-17_YB-AFq8",2015-02-17,2015-02-17,"YB","AF","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%","~3% underwater"
+"2015-02-17_YB-AFq9",2015-02-17,2015-02-17,"YB","AF","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","1%","Counts likely low due to water patches"
+"2015-02-17_YB-AFq5",2015-02-17,2015-02-17,"YB","AF","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2015-02-17_YB-AFq8",2015-02-17,2015-02-17,"YB","AF","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%","~3% underwater"
+"2015-02-17_YB-AFq9",2015-02-17,2015-02-17,"YB","AF","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","1%","Counts likely low due to water patches"
+"2015-02-17_YB-AFq5",2015-02-17,2015-02-17,"YB","AF","5","Myt","Mytilus_spp","Type 7",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2015-02-17_YB-AFq8",2015-02-17,2015-02-17,"YB","AF","8","Myt","Mytilus_spp","Type 7",272,0.0875,3108.57142857143,NA,"Celeste Moen","Finished","Full","Full","0%","~3% underwater"
+"2015-02-17_YB-AFq9",2015-02-17,2015-02-17,"YB","AF","9","Myt","Mytilus_spp","Type 7",828,0.0875,9462.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","1%","Counts likely low due to water patches"
+"2015-02-17_YB-AFq5",2015-02-17,2015-02-17,"YB","AF","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2015-02-17_YB-AFq8",2015-02-17,2015-02-17,"YB","AF","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%","~3% underwater"
+"2015-02-17_YB-AFq9",2015-02-17,2015-02-17,"YB","AF","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","1%","Counts likely low due to water patches"
+"2015-02-17_YB-AFq5",2015-02-17,2015-02-17,"YB","AF","5","Mt","Mytilus_trossulus","Type 15",141,0.015625,9024,"c","Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2015-02-17_YB-AFq8",2015-02-17,2015-02-17,"YB","AF","8","Mt","Mytilus_trossulus","Type 15",107,0.0875,1222.85714285714,NA,"Celeste Moen","Finished","Full","Full","0%","~3% underwater"
+"2015-02-17_YB-AFq9",2015-02-17,2015-02-17,"YB","AF","9","Mt","Mytilus_trossulus","Type 15",18,0.0875,205.714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","1%","Counts likely low due to water patches"
+"2015-02-17_YB-AFq5",2015-02-17,2015-02-17,"YB","AF","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2015-02-17_YB-AFq8",2015-02-17,2015-02-17,"YB","AF","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%","~3% underwater"
+"2015-02-17_YB-AFq9",2015-02-17,2015-02-17,"YB","AF","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","1%","Counts likely low due to water patches"
+"2015-02-17_YB-AFq5",2015-02-17,2015-02-17,"YB","AF","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2015-02-17_YB-AFq8",2015-02-17,2015-02-17,"YB","AF","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%","~3% underwater"
+"2015-02-17_YB-AFq9",2015-02-17,2015-02-17,"YB","AF","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","1%","Counts likely low due to water patches"
+"2015-02-17_YB-AFq5",2015-02-17,2015-02-17,"YB","AF","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2015-02-17_YB-AFq8",2015-02-17,2015-02-17,"YB","AF","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%","~3% underwater"
+"2015-02-17_YB-AFq9",2015-02-17,2015-02-17,"YB","AF","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","1%","Counts likely low due to water patches"
+"2015-02-17_YB-AFq5",2015-02-17,2015-02-17,"YB","AF","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2015-02-17_YB-AFq8",2015-02-17,2015-02-17,"YB","AF","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%","~3% underwater"
+"2015-02-17_YB-AFq9",2015-02-17,2015-02-17,"YB","AF","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","1%","Counts likely low due to water patches"
+"2015-02-17_YB-AFq5",2015-02-17,2015-02-17,"YB","AF","5","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2015-02-17_YB-AFq8",2015-02-17,2015-02-17,"YB","AF","8","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%","~3% underwater"
+"2015-02-17_YB-AFq9",2015-02-17,2015-02-17,"YB","AF","9","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","1%","Counts likely low due to water patches"
+"2015-02-17_YB-AFq5",2015-02-17,2015-02-17,"YB","AF","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2015-02-17_YB-AFq8",2015-02-17,2015-02-17,"YB","AF","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%","~3% underwater"
+"2015-02-17_YB-AFq9",2015-02-17,2015-02-17,"YB","AF","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","1%","Counts likely low due to water patches"
+"2015-02-17_YB-AFq5",2015-02-17,2015-02-17,"YB","AF","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2015-02-17_YB-AFq8",2015-02-17,2015-02-17,"YB","AF","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%","~3% underwater"
+"2015-02-17_YB-AFq9",2015-02-17,2015-02-17,"YB","AF","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","1%","Counts likely low due to water patches"
+"2015-02-17_YB-AFq5",2015-02-17,2015-02-17,"YB","AF","5","Pp","Pollicipes_polymerus","Type 11",9,0.0875,102.857142857143,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2015-02-17_YB-AFq8",2015-02-17,2015-02-17,"YB","AF","8","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%","~3% underwater"
+"2015-02-17_YB-AFq9",2015-02-17,2015-02-17,"YB","AF","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","1%","Counts likely low due to water patches"
+"2015-02-17_YB-AFq5",2015-02-17,2015-02-17,"YB","AF","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2015-02-17_YB-AFq8",2015-02-17,2015-02-17,"YB","AF","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%","~3% underwater"
+"2015-02-17_YB-AFq9",2015-02-17,2015-02-17,"YB","AF","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","1%","Counts likely low due to water patches"
+"2015-02-17_YB-AFq5",2015-02-17,2015-02-17,"YB","AF","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2015-02-17_YB-AFq8",2015-02-17,2015-02-17,"YB","AF","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%","~3% underwater"
+"2015-02-17_YB-AFq9",2015-02-17,2015-02-17,"YB","AF","9","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","1%","Counts likely low due to water patches"
+"2015-02-17_YB-AFq5",2015-02-17,2015-02-17,"YB","AF","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","5%",""
+"2015-02-17_YB-AFq8",2015-02-17,2015-02-17,"YB","AF","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%","~3% underwater"
+"2015-02-17_YB-AFq9",2015-02-17,2015-02-17,"YB","AF","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","1%","Counts likely low due to water patches"
+"2015-02-17_YB-AGq2",2015-02-17,2015-02-17,"YB","AG","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","10%","Counts may be low due to blur on the edges"
+"2015-02-17_YB-AGq7",2015-02-17,2015-02-17,"YB","AG","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts likely low due to water patches"
+"2015-02-17_YB-AGq9",2015-02-17,2015-02-17,"YB","AG","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches"
+"2015-02-17_YB-AGq2",2015-02-17,2015-02-17,"YB","AG","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","10%","Counts may be low due to blur on the edges"
+"2015-02-17_YB-AGq7",2015-02-17,2015-02-17,"YB","AG","7","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts likely low due to water patches"
+"2015-02-17_YB-AGq9",2015-02-17,2015-02-17,"YB","AG","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches"
+"2015-02-17_YB-AGq2",2015-02-17,2015-02-17,"YB","AG","2","Bg","Balanus_glandula","Type 1",1110,0.0875,12685.7142857143,NA,"Rebecca Friedrich","Finished","Full","Full","10%","Counts may be low due to blur on the edges"
+"2015-02-17_YB-AGq7",2015-02-17,2015-02-17,"YB","AG","7","Bg","Balanus_glandula","Type 1",956,0.0875,10925.7142857143,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts likely low due to water patches"
+"2015-02-17_YB-AGq9",2015-02-17,2015-02-17,"YB","AG","9","Bg","Balanus_glandula","Type 1",446,0.0875,5097.14285714286,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches"
+"2015-02-17_YB-AGq2",2015-02-17,2015-02-17,"YB","AG","2","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","10%","Counts may be low due to blur on the edges"
+"2015-02-17_YB-AGq7",2015-02-17,2015-02-17,"YB","AG","7","BgD","Balanus_glandula_(dead)","Type 2",53,0.0875,605.714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts likely low due to water patches"
+"2015-02-17_YB-AGq9",2015-02-17,2015-02-17,"YB","AG","9","BgD","Balanus_glandula_(dead)","Type 2",42,0.0875,480,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches"
+"2015-02-17_YB-AGq2",2015-02-17,2015-02-17,"YB","AG","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","10%","Counts may be low due to blur on the edges"
+"2015-02-17_YB-AGq7",2015-02-17,2015-02-17,"YB","AG","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts likely low due to water patches"
+"2015-02-17_YB-AGq9",2015-02-17,2015-02-17,"YB","AG","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches"
+"2015-02-17_YB-AGq2",2015-02-17,2015-02-17,"YB","AG","2","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","10%","Counts may be low due to blur on the edges"
+"2015-02-17_YB-AGq7",2015-02-17,2015-02-17,"YB","AG","7","Cth","Chthamalus_dalli","Type 3",27,0.0875,308.571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts likely low due to water patches"
+"2015-02-17_YB-AGq9",2015-02-17,2015-02-17,"YB","AG","9","Cth","Chthamalus_dalli","Type 3",26,0.0875,297.142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches"
+"2015-02-17_YB-AGq2",2015-02-17,2015-02-17,"YB","AG","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","10%","Counts may be low due to blur on the edges"
+"2015-02-17_YB-AGq7",2015-02-17,2015-02-17,"YB","AG","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts likely low due to water patches"
+"2015-02-17_YB-AGq9",2015-02-17,2015-02-17,"YB","AG","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches"
+"2015-02-17_YB-AGq2",2015-02-17,2015-02-17,"YB","AG","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","10%","Counts may be low due to blur on the edges"
+"2015-02-17_YB-AGq7",2015-02-17,2015-02-17,"YB","AG","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts likely low due to water patches"
+"2015-02-17_YB-AGq9",2015-02-17,2015-02-17,"YB","AG","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches"
+"2015-02-17_YB-AGq2",2015-02-17,2015-02-17,"YB","AG","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","10%","Counts may be low due to blur on the edges"
+"2015-02-17_YB-AGq7",2015-02-17,2015-02-17,"YB","AG","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts likely low due to water patches"
+"2015-02-17_YB-AGq9",2015-02-17,2015-02-17,"YB","AG","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches"
+"2015-02-17_YB-AGq2",2015-02-17,2015-02-17,"YB","AG","2","Lim","Limpets","Type 12",51,0.0875,582.857142857143,NA,"Rebecca Friedrich","Finished","Full","Full","10%","Counts may be low due to blur on the edges"
+"2015-02-17_YB-AGq7",2015-02-17,2015-02-17,"YB","AG","7","Lim","Limpets","Type 12",19,0.0875,217.142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts likely low due to water patches"
+"2015-02-17_YB-AGq9",2015-02-17,2015-02-17,"YB","AG","9","Lim","Limpets","Type 12",26,0.0875,297.142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches"
+"2015-02-17_YB-AGq2",2015-02-17,2015-02-17,"YB","AG","2","Ls","Littorina_sitkana","Type 13",16,0.0875,182.857142857143,NA,"Rebecca Friedrich","Finished","Full","Full","10%","Counts may be low due to blur on the edges"
+"2015-02-17_YB-AGq7",2015-02-17,2015-02-17,"YB","AG","7","Ls","Littorina_sitkana","Type 13",123,0.0875,1405.71428571429,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts likely low due to water patches"
+"2015-02-17_YB-AGq9",2015-02-17,2015-02-17,"YB","AG","9","Ls","Littorina_sitkana","Type 13",117,0.0875,1337.14285714286,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches"
+"2015-02-17_YB-AGq2",2015-02-17,2015-02-17,"YB","AG","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","10%","Counts may be low due to blur on the edges"
+"2015-02-17_YB-AGq7",2015-02-17,2015-02-17,"YB","AG","7","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts likely low due to water patches"
+"2015-02-17_YB-AGq9",2015-02-17,2015-02-17,"YB","AG","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches"
+"2015-02-17_YB-AGq2",2015-02-17,2015-02-17,"YB","AG","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","10%","Counts may be low due to blur on the edges"
+"2015-02-17_YB-AGq7",2015-02-17,2015-02-17,"YB","AG","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts likely low due to water patches"
+"2015-02-17_YB-AGq9",2015-02-17,2015-02-17,"YB","AG","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches"
+"2015-02-17_YB-AGq2",2015-02-17,2015-02-17,"YB","AG","2","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","10%","Counts may be low due to blur on the edges"
+"2015-02-17_YB-AGq7",2015-02-17,2015-02-17,"YB","AG","7","Myt","Mytilus_spp","Type 7",407,0.0875,4651.42857142857,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts likely low due to water patches"
+"2015-02-17_YB-AGq9",2015-02-17,2015-02-17,"YB","AG","9","Myt","Mytilus_spp","Type 7",443,0.0875,5062.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches"
+"2015-02-17_YB-AGq2",2015-02-17,2015-02-17,"YB","AG","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","10%","Counts may be low due to blur on the edges"
+"2015-02-17_YB-AGq7",2015-02-17,2015-02-17,"YB","AG","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts likely low due to water patches"
+"2015-02-17_YB-AGq9",2015-02-17,2015-02-17,"YB","AG","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches"
+"2015-02-17_YB-AGq2",2015-02-17,2015-02-17,"YB","AG","2","Mt","Mytilus_trossulus","Type 15",295,0.0875,3371.42857142857,NA,"Rebecca Friedrich","Finished","Full","Full","10%","Counts may be low due to blur on the edges"
+"2015-02-17_YB-AGq7",2015-02-17,2015-02-17,"YB","AG","7","Mt","Mytilus_trossulus","Type 15",294,0.0875,3360,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts likely low due to water patches"
+"2015-02-17_YB-AGq9",2015-02-17,2015-02-17,"YB","AG","9","Mt","Mytilus_trossulus","Type 15",236,0.0875,2697.14285714286,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches"
+"2015-02-17_YB-AGq2",2015-02-17,2015-02-17,"YB","AG","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","10%","Counts may be low due to blur on the edges"
+"2015-02-17_YB-AGq7",2015-02-17,2015-02-17,"YB","AG","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts likely low due to water patches"
+"2015-02-17_YB-AGq9",2015-02-17,2015-02-17,"YB","AG","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches"
+"2015-02-17_YB-AGq2",2015-02-17,2015-02-17,"YB","AG","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","10%","Counts may be low due to blur on the edges"
+"2015-02-17_YB-AGq7",2015-02-17,2015-02-17,"YB","AG","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts likely low due to water patches"
+"2015-02-17_YB-AGq9",2015-02-17,2015-02-17,"YB","AG","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches"
+"2015-02-17_YB-AGq2",2015-02-17,2015-02-17,"YB","AG","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","10%","Counts may be low due to blur on the edges"
+"2015-02-17_YB-AGq7",2015-02-17,2015-02-17,"YB","AG","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts likely low due to water patches"
+"2015-02-17_YB-AGq9",2015-02-17,2015-02-17,"YB","AG","9","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches"
+"2015-02-17_YB-AGq2",2015-02-17,2015-02-17,"YB","AG","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","10%","Counts may be low due to blur on the edges"
+"2015-02-17_YB-AGq7",2015-02-17,2015-02-17,"YB","AG","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts likely low due to water patches"
+"2015-02-17_YB-AGq9",2015-02-17,2015-02-17,"YB","AG","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches"
+"2015-02-17_YB-AGq2",2015-02-17,2015-02-17,"YB","AG","2","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","10%","Counts may be low due to blur on the edges"
+"2015-02-17_YB-AGq7",2015-02-17,2015-02-17,"YB","AG","7","No","Nucella_ostrina","Type 9",6,0.0875,68.5714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts likely low due to water patches"
+"2015-02-17_YB-AGq9",2015-02-17,2015-02-17,"YB","AG","9","No","Nucella_ostrina","Type 9",6,0.0875,68.5714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches"
+"2015-02-17_YB-AGq2",2015-02-17,2015-02-17,"YB","AG","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","10%","Counts may be low due to blur on the edges"
+"2015-02-17_YB-AGq7",2015-02-17,2015-02-17,"YB","AG","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts likely low due to water patches"
+"2015-02-17_YB-AGq9",2015-02-17,2015-02-17,"YB","AG","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches"
+"2015-02-17_YB-AGq2",2015-02-17,2015-02-17,"YB","AG","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","10%","Counts may be low due to blur on the edges"
+"2015-02-17_YB-AGq7",2015-02-17,2015-02-17,"YB","AG","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts likely low due to water patches"
+"2015-02-17_YB-AGq9",2015-02-17,2015-02-17,"YB","AG","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches"
+"2015-02-17_YB-AGq2",2015-02-17,2015-02-17,"YB","AG","2","Pp","Pollicipes_polymerus","Type 11",17,0.0875,194.285714285714,NA,"Rebecca Friedrich","Finished","Full","Full","10%","Counts may be low due to blur on the edges"
+"2015-02-17_YB-AGq7",2015-02-17,2015-02-17,"YB","AG","7","Pp","Pollicipes_polymerus","Type 11",28,0.0875,320,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts likely low due to water patches"
+"2015-02-17_YB-AGq9",2015-02-17,2015-02-17,"YB","AG","9","Pp","Pollicipes_polymerus","Type 11",188,0.0875,2148.57142857143,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches"
+"2015-02-17_YB-AGq2",2015-02-17,2015-02-17,"YB","AG","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","10%","Counts may be low due to blur on the edges"
+"2015-02-17_YB-AGq7",2015-02-17,2015-02-17,"YB","AG","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts likely low due to water patches"
+"2015-02-17_YB-AGq9",2015-02-17,2015-02-17,"YB","AG","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches"
+"2015-02-17_YB-AGq2",2015-02-17,2015-02-17,"YB","AG","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","10%","Counts may be low due to blur on the edges"
+"2015-02-17_YB-AGq7",2015-02-17,2015-02-17,"YB","AG","7","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts likely low due to water patches"
+"2015-02-17_YB-AGq9",2015-02-17,2015-02-17,"YB","AG","9","Sc","Semibalanus_cariosus","Type 5",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches"
+"2015-02-17_YB-AGq2",2015-02-17,2015-02-17,"YB","AG","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","10%","Counts may be low due to blur on the edges"
+"2015-02-17_YB-AGq7",2015-02-17,2015-02-17,"YB","AG","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts likely low due to water patches"
+"2015-02-17_YB-AGq9",2015-02-17,2015-02-17,"YB","AG","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches"
+"2015-02-17_YB-Bq1",2015-02-17,2015-02-17,"YB","B","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-Bq5",2015-02-17,2015-02-17,"YB","B","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%",""
+"2015-02-17_YB-Bq6",2015-02-17,2015-02-17,"YB","B","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","17%",""
+"2015-02-17_YB-Bq1",2015-02-17,2015-02-17,"YB","B","1","Ae","Anemones","Type 14",27,0.0875,308.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-Bq5",2015-02-17,2015-02-17,"YB","B","5","Ae","Anemones","Type 14",45,0.0875,514.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","12%",""
+"2015-02-17_YB-Bq6",2015-02-17,2015-02-17,"YB","B","6","Ae","Anemones","Type 14",65,0.0875,742.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","17%",""
+"2015-02-17_YB-Bq1",2015-02-17,2015-02-17,"YB","B","1","Bg","Balanus_glandula","Type 1",186,0.0875,2125.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-Bq5",2015-02-17,2015-02-17,"YB","B","5","Bg","Balanus_glandula","Type 1",184,0.0875,2102.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","12%",""
+"2015-02-17_YB-Bq6",2015-02-17,2015-02-17,"YB","B","6","Bg","Balanus_glandula","Type 1",265,0.0875,3028.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","17%",""
+"2015-02-17_YB-Bq1",2015-02-17,2015-02-17,"YB","B","1","BgD","Balanus_glandula_(dead)","Type 2",124,0.0875,1417.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-Bq5",2015-02-17,2015-02-17,"YB","B","5","BgD","Balanus_glandula_(dead)","Type 2",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","12%",""
+"2015-02-17_YB-Bq6",2015-02-17,2015-02-17,"YB","B","6","BgD","Balanus_glandula_(dead)","Type 2",58,0.0875,662.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","17%",""
+"2015-02-17_YB-Bq1",2015-02-17,2015-02-17,"YB","B","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-Bq5",2015-02-17,2015-02-17,"YB","B","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%",""
+"2015-02-17_YB-Bq6",2015-02-17,2015-02-17,"YB","B","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","17%",""
+"2015-02-17_YB-Bq1",2015-02-17,2015-02-17,"YB","B","1","Cth","Chthamalus_dalli","Type 3",72,0.0875,822.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-Bq5",2015-02-17,2015-02-17,"YB","B","5","Cth","Chthamalus_dalli","Type 3",30,0.0875,342.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","12%",""
+"2015-02-17_YB-Bq6",2015-02-17,2015-02-17,"YB","B","6","Cth","Chthamalus_dalli","Type 3",24,0.0875,274.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","17%",""
+"2015-02-17_YB-Bq1",2015-02-17,2015-02-17,"YB","B","1","CthD","Chthamalus_dalli (dead)","Type 4",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-Bq5",2015-02-17,2015-02-17,"YB","B","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%",""
+"2015-02-17_YB-Bq6",2015-02-17,2015-02-17,"YB","B","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","17%",""
+"2015-02-17_YB-Bq1",2015-02-17,2015-02-17,"YB","B","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-Bq5",2015-02-17,2015-02-17,"YB","B","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%",""
+"2015-02-17_YB-Bq6",2015-02-17,2015-02-17,"YB","B","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","17%",""
+"2015-02-17_YB-Bq1",2015-02-17,2015-02-17,"YB","B","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-Bq5",2015-02-17,2015-02-17,"YB","B","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%",""
+"2015-02-17_YB-Bq6",2015-02-17,2015-02-17,"YB","B","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","17%",""
+"2015-02-17_YB-Bq1",2015-02-17,2015-02-17,"YB","B","1","Lim","Limpets","Type 12",54,0.0875,617.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-Bq5",2015-02-17,2015-02-17,"YB","B","5","Lim","Limpets","Type 12",21,0.0875,240,NA,"Beatriz Vaca","Finished","Full","Full","12%",""
+"2015-02-17_YB-Bq6",2015-02-17,2015-02-17,"YB","B","6","Lim","Limpets","Type 12",43,0.0875,491.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","17%",""
+"2015-02-17_YB-Bq1",2015-02-17,2015-02-17,"YB","B","1","Ls","Littorina_sitkana","Type 13",32,0.0875,365.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-Bq5",2015-02-17,2015-02-17,"YB","B","5","Ls","Littorina_sitkana","Type 13",21,0.0875,240,NA,"Beatriz Vaca","Finished","Full","Full","12%",""
+"2015-02-17_YB-Bq6",2015-02-17,2015-02-17,"YB","B","6","Ls","Littorina_sitkana","Type 13",34,0.0875,388.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","17%",""
+"2015-02-17_YB-Bq1",2015-02-17,2015-02-17,"YB","B","1","Mc","Mytilus_californianus","Type 17",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-Bq5",2015-02-17,2015-02-17,"YB","B","5","Mc","Mytilus_californianus","Type 17",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","12%",""
+"2015-02-17_YB-Bq6",2015-02-17,2015-02-17,"YB","B","6","Mc","Mytilus_californianus","Type 17",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","17%",""
+"2015-02-17_YB-Bq1",2015-02-17,2015-02-17,"YB","B","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-Bq5",2015-02-17,2015-02-17,"YB","B","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%",""
+"2015-02-17_YB-Bq6",2015-02-17,2015-02-17,"YB","B","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","17%",""
+"2015-02-17_YB-Bq1",2015-02-17,2015-02-17,"YB","B","1","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-Bq5",2015-02-17,2015-02-17,"YB","B","5","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%",""
+"2015-02-17_YB-Bq6",2015-02-17,2015-02-17,"YB","B","6","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","17%",""
+"2015-02-17_YB-Bq1",2015-02-17,2015-02-17,"YB","B","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-Bq5",2015-02-17,2015-02-17,"YB","B","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%",""
+"2015-02-17_YB-Bq6",2015-02-17,2015-02-17,"YB","B","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","17%",""
+"2015-02-17_YB-Bq1",2015-02-17,2015-02-17,"YB","B","1","Mt","Mytilus_trossulus","Type 15",400,0.0875,4571.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-Bq5",2015-02-17,2015-02-17,"YB","B","5","Mt","Mytilus_trossulus","Type 15",189,0.0875,2160,NA,"Beatriz Vaca","Finished","Full","Full","12%",""
+"2015-02-17_YB-Bq6",2015-02-17,2015-02-17,"YB","B","6","Mt","Mytilus_trossulus","Type 15",343,0.0875,3920,NA,"Beatriz Vaca","Finished","Full","Full","17%",""
+"2015-02-17_YB-Bq1",2015-02-17,2015-02-17,"YB","B","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-Bq5",2015-02-17,2015-02-17,"YB","B","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%",""
+"2015-02-17_YB-Bq6",2015-02-17,2015-02-17,"YB","B","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","17%",""
+"2015-02-17_YB-Bq1",2015-02-17,2015-02-17,"YB","B","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-Bq5",2015-02-17,2015-02-17,"YB","B","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%",""
+"2015-02-17_YB-Bq6",2015-02-17,2015-02-17,"YB","B","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","17%",""
+"2015-02-17_YB-Bq1",2015-02-17,2015-02-17,"YB","B","1","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-Bq5",2015-02-17,2015-02-17,"YB","B","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%",""
+"2015-02-17_YB-Bq6",2015-02-17,2015-02-17,"YB","B","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","17%",""
+"2015-02-17_YB-Bq1",2015-02-17,2015-02-17,"YB","B","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-Bq5",2015-02-17,2015-02-17,"YB","B","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%",""
+"2015-02-17_YB-Bq6",2015-02-17,2015-02-17,"YB","B","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","17%",""
+"2015-02-17_YB-Bq1",2015-02-17,2015-02-17,"YB","B","1","No","Nucella_ostrina","Type 9",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-Bq5",2015-02-17,2015-02-17,"YB","B","5","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","12%",""
+"2015-02-17_YB-Bq6",2015-02-17,2015-02-17,"YB","B","6","No","Nucella_ostrina","Type 9",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","17%",""
+"2015-02-17_YB-Bq1",2015-02-17,2015-02-17,"YB","B","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-Bq5",2015-02-17,2015-02-17,"YB","B","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%",""
+"2015-02-17_YB-Bq6",2015-02-17,2015-02-17,"YB","B","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","17%",""
+"2015-02-17_YB-Bq1",2015-02-17,2015-02-17,"YB","B","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-Bq5",2015-02-17,2015-02-17,"YB","B","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%",""
+"2015-02-17_YB-Bq6",2015-02-17,2015-02-17,"YB","B","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","17%",""
+"2015-02-17_YB-Bq1",2015-02-17,2015-02-17,"YB","B","1","Pp","Pollicipes_polymerus","Type 11",672,0.0875,7680,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-Bq5",2015-02-17,2015-02-17,"YB","B","5","Pp","Pollicipes_polymerus","Type 11",189,0.0875,2160,NA,"Beatriz Vaca","Finished","Full","Full","12%",""
+"2015-02-17_YB-Bq6",2015-02-17,2015-02-17,"YB","B","6","Pp","Pollicipes_polymerus","Type 11",193,0.0875,2205.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","17%",""
+"2015-02-17_YB-Bq1",2015-02-17,2015-02-17,"YB","B","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-Bq5",2015-02-17,2015-02-17,"YB","B","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%",""
+"2015-02-17_YB-Bq6",2015-02-17,2015-02-17,"YB","B","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","17%",""
+"2015-02-17_YB-Bq1",2015-02-17,2015-02-17,"YB","B","1","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-Bq5",2015-02-17,2015-02-17,"YB","B","5","Sc","Semibalanus_cariosus","Type 5",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","12%",""
+"2015-02-17_YB-Bq6",2015-02-17,2015-02-17,"YB","B","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","17%",""
+"2015-02-17_YB-Bq1",2015-02-17,2015-02-17,"YB","B","1","ScD","Semibalanus_cariosus_(dead)","Type 6",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-Bq5",2015-02-17,2015-02-17,"YB","B","5","ScD","Semibalanus_cariosus_(dead)","Type 6",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","12%",""
+"2015-02-17_YB-Bq6",2015-02-17,2015-02-17,"YB","B","6","ScD","Semibalanus_cariosus_(dead)","Type 6",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","17%",""
+"2015-02-17_YB-BBq1",2015-02-17,2015-02-17,"YB","BB","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-02-17_YB-BBq2",2015-02-17,2015-02-17,"YB","BB","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-02-17_YB-BBq9",2015-02-17,2015-02-17,"YB","BB","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","0%",""
+"2015-02-17_YB-BBq1",2015-02-17,2015-02-17,"YB","BB","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-02-17_YB-BBq2",2015-02-17,2015-02-17,"YB","BB","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-02-17_YB-BBq9",2015-02-17,2015-02-17,"YB","BB","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","0%",""
+"2015-02-17_YB-BBq1",2015-02-17,2015-02-17,"YB","BB","1","Bg","Balanus_glandula","Type 1",309,0.0875,3531.42857142857,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-02-17_YB-BBq2",2015-02-17,2015-02-17,"YB","BB","2","Bg","Balanus_glandula","Type 1",389,0.0875,4445.71428571429,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-02-17_YB-BBq9",2015-02-17,2015-02-17,"YB","BB","9","Bg","Balanus_glandula","Type 1",890,0.0875,10171.4285714286,NA,"Stephanie Merhoff","Finished","Full","Full","0%",""
+"2015-02-17_YB-BBq1",2015-02-17,2015-02-17,"YB","BB","1","BgD","Balanus_glandula_(dead)","Type 2",19,0.0875,217.142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-02-17_YB-BBq2",2015-02-17,2015-02-17,"YB","BB","2","BgD","Balanus_glandula_(dead)","Type 2",18,0.0875,205.714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-02-17_YB-BBq9",2015-02-17,2015-02-17,"YB","BB","9","BgD","Balanus_glandula_(dead)","Type 2",23,0.0875,262.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","0%",""
+"2015-02-17_YB-BBq1",2015-02-17,2015-02-17,"YB","BB","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-02-17_YB-BBq2",2015-02-17,2015-02-17,"YB","BB","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-02-17_YB-BBq9",2015-02-17,2015-02-17,"YB","BB","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","0%",""
+"2015-02-17_YB-BBq1",2015-02-17,2015-02-17,"YB","BB","1","Cth","Chthamalus_dalli","Type 3",131,0.0875,1497.14285714286,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-02-17_YB-BBq2",2015-02-17,2015-02-17,"YB","BB","2","Cth","Chthamalus_dalli","Type 3",62,0.0875,708.571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-02-17_YB-BBq9",2015-02-17,2015-02-17,"YB","BB","9","Cth","Chthamalus_dalli","Type 3",57,0.0875,651.428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","0%",""
+"2015-02-17_YB-BBq1",2015-02-17,2015-02-17,"YB","BB","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-02-17_YB-BBq2",2015-02-17,2015-02-17,"YB","BB","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-02-17_YB-BBq9",2015-02-17,2015-02-17,"YB","BB","9","CthD","Chthamalus_dalli (dead)","Type 4",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","0%",""
+"2015-02-17_YB-BBq1",2015-02-17,2015-02-17,"YB","BB","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-02-17_YB-BBq2",2015-02-17,2015-02-17,"YB","BB","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-02-17_YB-BBq9",2015-02-17,2015-02-17,"YB","BB","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","0%",""
+"2015-02-17_YB-BBq1",2015-02-17,2015-02-17,"YB","BB","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-02-17_YB-BBq2",2015-02-17,2015-02-17,"YB","BB","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-02-17_YB-BBq9",2015-02-17,2015-02-17,"YB","BB","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","0%",""
+"2015-02-17_YB-BBq1",2015-02-17,2015-02-17,"YB","BB","1","Lim","Limpets","Type 12",14,0.0875,160,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-02-17_YB-BBq2",2015-02-17,2015-02-17,"YB","BB","2","Lim","Limpets","Type 12",36,0.0875,411.428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-02-17_YB-BBq9",2015-02-17,2015-02-17,"YB","BB","9","Lim","Limpets","Type 12",15,0.0875,171.428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","0%",""
+"2015-02-17_YB-BBq1",2015-02-17,2015-02-17,"YB","BB","1","Ls","Littorina_sitkana","Type 13",80,0.0875,914.285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-02-17_YB-BBq2",2015-02-17,2015-02-17,"YB","BB","2","Ls","Littorina_sitkana","Type 13",116,0.0875,1325.71428571429,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-02-17_YB-BBq9",2015-02-17,2015-02-17,"YB","BB","9","Ls","Littorina_sitkana","Type 13",100,0.0875,1142.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","0%",""
+"2015-02-17_YB-BBq1",2015-02-17,2015-02-17,"YB","BB","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-02-17_YB-BBq2",2015-02-17,2015-02-17,"YB","BB","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-02-17_YB-BBq9",2015-02-17,2015-02-17,"YB","BB","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","0%",""
+"2015-02-17_YB-BBq1",2015-02-17,2015-02-17,"YB","BB","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-02-17_YB-BBq2",2015-02-17,2015-02-17,"YB","BB","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-02-17_YB-BBq9",2015-02-17,2015-02-17,"YB","BB","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","0%",""
+"2015-02-17_YB-BBq1",2015-02-17,2015-02-17,"YB","BB","1","Myt","Mytilus_spp","Type 7",202,0.0875,2308.57142857143,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-02-17_YB-BBq2",2015-02-17,2015-02-17,"YB","BB","2","Myt","Mytilus_spp","Type 7",241,0.0875,2754.28571428571,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-02-17_YB-BBq9",2015-02-17,2015-02-17,"YB","BB","9","Myt","Mytilus_spp","Type 7",364,0.0875,4160,NA,"Stephanie Merhoff","Finished","Full","Full","0%",""
+"2015-02-17_YB-BBq1",2015-02-17,2015-02-17,"YB","BB","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-02-17_YB-BBq2",2015-02-17,2015-02-17,"YB","BB","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-02-17_YB-BBq9",2015-02-17,2015-02-17,"YB","BB","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","0%",""
+"2015-02-17_YB-BBq1",2015-02-17,2015-02-17,"YB","BB","1","Mt","Mytilus_trossulus","Type 15",247,0.0875,2822.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-02-17_YB-BBq2",2015-02-17,2015-02-17,"YB","BB","2","Mt","Mytilus_trossulus","Type 15",147,0.0875,1680,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-02-17_YB-BBq9",2015-02-17,2015-02-17,"YB","BB","9","Mt","Mytilus_trossulus","Type 15",242,0.0875,2765.71428571429,NA,"Stephanie Merhoff","Finished","Full","Full","0%",""
+"2015-02-17_YB-BBq1",2015-02-17,2015-02-17,"YB","BB","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-02-17_YB-BBq2",2015-02-17,2015-02-17,"YB","BB","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-02-17_YB-BBq9",2015-02-17,2015-02-17,"YB","BB","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","0%",""
+"2015-02-17_YB-BBq1",2015-02-17,2015-02-17,"YB","BB","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-02-17_YB-BBq2",2015-02-17,2015-02-17,"YB","BB","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-02-17_YB-BBq9",2015-02-17,2015-02-17,"YB","BB","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","0%",""
+"2015-02-17_YB-BBq1",2015-02-17,2015-02-17,"YB","BB","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-02-17_YB-BBq2",2015-02-17,2015-02-17,"YB","BB","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-02-17_YB-BBq9",2015-02-17,2015-02-17,"YB","BB","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","0%",""
+"2015-02-17_YB-BBq1",2015-02-17,2015-02-17,"YB","BB","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-02-17_YB-BBq2",2015-02-17,2015-02-17,"YB","BB","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-02-17_YB-BBq9",2015-02-17,2015-02-17,"YB","BB","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","0%",""
+"2015-02-17_YB-BBq1",2015-02-17,2015-02-17,"YB","BB","1","No","Nucella_ostrina","Type 9",5,0.0875,57.1428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-02-17_YB-BBq2",2015-02-17,2015-02-17,"YB","BB","2","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-02-17_YB-BBq9",2015-02-17,2015-02-17,"YB","BB","9","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","0%",""
+"2015-02-17_YB-BBq1",2015-02-17,2015-02-17,"YB","BB","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-02-17_YB-BBq2",2015-02-17,2015-02-17,"YB","BB","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-02-17_YB-BBq9",2015-02-17,2015-02-17,"YB","BB","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","0%",""
+"2015-02-17_YB-BBq1",2015-02-17,2015-02-17,"YB","BB","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-02-17_YB-BBq2",2015-02-17,2015-02-17,"YB","BB","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-02-17_YB-BBq9",2015-02-17,2015-02-17,"YB","BB","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","0%",""
+"2015-02-17_YB-BBq1",2015-02-17,2015-02-17,"YB","BB","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-02-17_YB-BBq2",2015-02-17,2015-02-17,"YB","BB","2","Pp","Pollicipes_polymerus","Type 11",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-02-17_YB-BBq9",2015-02-17,2015-02-17,"YB","BB","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","0%",""
+"2015-02-17_YB-BBq1",2015-02-17,2015-02-17,"YB","BB","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-02-17_YB-BBq2",2015-02-17,2015-02-17,"YB","BB","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-02-17_YB-BBq9",2015-02-17,2015-02-17,"YB","BB","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","0%",""
+"2015-02-17_YB-BBq1",2015-02-17,2015-02-17,"YB","BB","1","Sc","Semibalanus_cariosus","Type 5",6,0.0875,68.5714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-02-17_YB-BBq2",2015-02-17,2015-02-17,"YB","BB","2","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-02-17_YB-BBq9",2015-02-17,2015-02-17,"YB","BB","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","0%",""
+"2015-02-17_YB-BBq1",2015-02-17,2015-02-17,"YB","BB","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-02-17_YB-BBq2",2015-02-17,2015-02-17,"YB","BB","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-02-17_YB-BBq9",2015-02-17,2015-02-17,"YB","BB","9","ScD","Semibalanus_cariosus_(dead)","Type 6",4,0.0875,45.7142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","0%",""
+"2015-02-17_YB-BCq3",2015-02-17,2015-02-17,"YB","BC","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2015-02-17_YB-BCq5",2015-02-17,2015-02-17,"YB","BC","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to algae"
+"2015-02-17_YB-BCq9",2015-02-17,2015-02-17,"YB","BC","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-02-17_YB-BCq3",2015-02-17,2015-02-17,"YB","BC","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2015-02-17_YB-BCq5",2015-02-17,2015-02-17,"YB","BC","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to algae"
+"2015-02-17_YB-BCq9",2015-02-17,2015-02-17,"YB","BC","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-02-17_YB-BCq3",2015-02-17,2015-02-17,"YB","BC","3","Bg","Balanus_glandula","Type 1",930,0.0875,10628.5714285714,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2015-02-17_YB-BCq5",2015-02-17,2015-02-17,"YB","BC","5","Bg","Balanus_glandula","Type 1",477,0.0875,5451.42857142857,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to algae"
+"2015-02-17_YB-BCq9",2015-02-17,2015-02-17,"YB","BC","9","Bg","Balanus_glandula","Type 1",474,0.0875,5417.14285714286,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-02-17_YB-BCq3",2015-02-17,2015-02-17,"YB","BC","3","BgD","Balanus_glandula_(dead)","Type 2",25,0.0875,285.714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2015-02-17_YB-BCq5",2015-02-17,2015-02-17,"YB","BC","5","BgD","Balanus_glandula_(dead)","Type 2",103,0.0875,1177.14285714286,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to algae"
+"2015-02-17_YB-BCq9",2015-02-17,2015-02-17,"YB","BC","9","BgD","Balanus_glandula_(dead)","Type 2",37,0.0875,422.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-02-17_YB-BCq3",2015-02-17,2015-02-17,"YB","BC","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2015-02-17_YB-BCq5",2015-02-17,2015-02-17,"YB","BC","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to algae"
+"2015-02-17_YB-BCq9",2015-02-17,2015-02-17,"YB","BC","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-02-17_YB-BCq3",2015-02-17,2015-02-17,"YB","BC","3","Cth","Chthamalus_dalli","Type 3",180,0.0875,2057.14285714286,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2015-02-17_YB-BCq5",2015-02-17,2015-02-17,"YB","BC","5","Cth","Chthamalus_dalli","Type 3",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to algae"
+"2015-02-17_YB-BCq9",2015-02-17,2015-02-17,"YB","BC","9","Cth","Chthamalus_dalli","Type 3",19,0.0875,217.142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-02-17_YB-BCq3",2015-02-17,2015-02-17,"YB","BC","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2015-02-17_YB-BCq5",2015-02-17,2015-02-17,"YB","BC","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to algae"
+"2015-02-17_YB-BCq9",2015-02-17,2015-02-17,"YB","BC","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-02-17_YB-BCq3",2015-02-17,2015-02-17,"YB","BC","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2015-02-17_YB-BCq5",2015-02-17,2015-02-17,"YB","BC","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to algae"
+"2015-02-17_YB-BCq9",2015-02-17,2015-02-17,"YB","BC","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-02-17_YB-BCq3",2015-02-17,2015-02-17,"YB","BC","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2015-02-17_YB-BCq5",2015-02-17,2015-02-17,"YB","BC","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to algae"
+"2015-02-17_YB-BCq9",2015-02-17,2015-02-17,"YB","BC","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-02-17_YB-BCq3",2015-02-17,2015-02-17,"YB","BC","3","Lim","Limpets","Type 12",107,0.0875,1222.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2015-02-17_YB-BCq5",2015-02-17,2015-02-17,"YB","BC","5","Lim","Limpets","Type 12",88,0.0875,1005.71428571429,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to algae"
+"2015-02-17_YB-BCq9",2015-02-17,2015-02-17,"YB","BC","9","Lim","Limpets","Type 12",88,0.0875,1005.71428571429,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-02-17_YB-BCq3",2015-02-17,2015-02-17,"YB","BC","3","Ls","Littorina_sitkana","Type 13",76,0.0875,868.571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2015-02-17_YB-BCq5",2015-02-17,2015-02-17,"YB","BC","5","Ls","Littorina_sitkana","Type 13",185,0.0875,2114.28571428571,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to algae"
+"2015-02-17_YB-BCq9",2015-02-17,2015-02-17,"YB","BC","9","Ls","Littorina_sitkana","Type 13",120,0.0875,1371.42857142857,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-02-17_YB-BCq3",2015-02-17,2015-02-17,"YB","BC","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2015-02-17_YB-BCq5",2015-02-17,2015-02-17,"YB","BC","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to algae"
+"2015-02-17_YB-BCq9",2015-02-17,2015-02-17,"YB","BC","9","Mc","Mytilus_californianus","Type 17",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-02-17_YB-BCq3",2015-02-17,2015-02-17,"YB","BC","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2015-02-17_YB-BCq5",2015-02-17,2015-02-17,"YB","BC","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to algae"
+"2015-02-17_YB-BCq9",2015-02-17,2015-02-17,"YB","BC","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-02-17_YB-BCq3",2015-02-17,2015-02-17,"YB","BC","3","Myt","Mytilus_spp","Type 7",237,0.0875,2708.57142857143,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2015-02-17_YB-BCq5",2015-02-17,2015-02-17,"YB","BC","5","Myt","Mytilus_spp","Type 7",214,0.0875,2445.71428571429,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to algae"
+"2015-02-17_YB-BCq9",2015-02-17,2015-02-17,"YB","BC","9","Myt","Mytilus_spp","Type 7",211,0.0875,2411.42857142857,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-02-17_YB-BCq3",2015-02-17,2015-02-17,"YB","BC","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2015-02-17_YB-BCq5",2015-02-17,2015-02-17,"YB","BC","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to algae"
+"2015-02-17_YB-BCq9",2015-02-17,2015-02-17,"YB","BC","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-02-17_YB-BCq3",2015-02-17,2015-02-17,"YB","BC","3","Mt","Mytilus_trossulus","Type 15",135,0.0875,1542.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2015-02-17_YB-BCq5",2015-02-17,2015-02-17,"YB","BC","5","Mt","Mytilus_trossulus","Type 15",226,0.0875,2582.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to algae"
+"2015-02-17_YB-BCq9",2015-02-17,2015-02-17,"YB","BC","9","Mt","Mytilus_trossulus","Type 15",156,0.0875,1782.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-02-17_YB-BCq3",2015-02-17,2015-02-17,"YB","BC","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2015-02-17_YB-BCq5",2015-02-17,2015-02-17,"YB","BC","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to algae"
+"2015-02-17_YB-BCq9",2015-02-17,2015-02-17,"YB","BC","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-02-17_YB-BCq3",2015-02-17,2015-02-17,"YB","BC","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2015-02-17_YB-BCq5",2015-02-17,2015-02-17,"YB","BC","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to algae"
+"2015-02-17_YB-BCq9",2015-02-17,2015-02-17,"YB","BC","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-02-17_YB-BCq3",2015-02-17,2015-02-17,"YB","BC","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2015-02-17_YB-BCq5",2015-02-17,2015-02-17,"YB","BC","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to algae"
+"2015-02-17_YB-BCq9",2015-02-17,2015-02-17,"YB","BC","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-02-17_YB-BCq3",2015-02-17,2015-02-17,"YB","BC","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2015-02-17_YB-BCq5",2015-02-17,2015-02-17,"YB","BC","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to algae"
+"2015-02-17_YB-BCq9",2015-02-17,2015-02-17,"YB","BC","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-02-17_YB-BCq3",2015-02-17,2015-02-17,"YB","BC","3","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2015-02-17_YB-BCq5",2015-02-17,2015-02-17,"YB","BC","5","No","Nucella_ostrina","Type 9",10,0.0875,114.285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to algae"
+"2015-02-17_YB-BCq9",2015-02-17,2015-02-17,"YB","BC","9","No","Nucella_ostrina","Type 9",5,0.0875,57.1428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-02-17_YB-BCq3",2015-02-17,2015-02-17,"YB","BC","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2015-02-17_YB-BCq5",2015-02-17,2015-02-17,"YB","BC","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to algae"
+"2015-02-17_YB-BCq9",2015-02-17,2015-02-17,"YB","BC","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-02-17_YB-BCq3",2015-02-17,2015-02-17,"YB","BC","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2015-02-17_YB-BCq5",2015-02-17,2015-02-17,"YB","BC","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to algae"
+"2015-02-17_YB-BCq9",2015-02-17,2015-02-17,"YB","BC","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-02-17_YB-BCq3",2015-02-17,2015-02-17,"YB","BC","3","Pp","Pollicipes_polymerus","Type 11",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2015-02-17_YB-BCq5",2015-02-17,2015-02-17,"YB","BC","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to algae"
+"2015-02-17_YB-BCq9",2015-02-17,2015-02-17,"YB","BC","9","Pp","Pollicipes_polymerus","Type 11",5,0.0875,57.1428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-02-17_YB-BCq3",2015-02-17,2015-02-17,"YB","BC","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2015-02-17_YB-BCq5",2015-02-17,2015-02-17,"YB","BC","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to algae"
+"2015-02-17_YB-BCq9",2015-02-17,2015-02-17,"YB","BC","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-02-17_YB-BCq3",2015-02-17,2015-02-17,"YB","BC","3","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2015-02-17_YB-BCq5",2015-02-17,2015-02-17,"YB","BC","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to algae"
+"2015-02-17_YB-BCq9",2015-02-17,2015-02-17,"YB","BC","9","Sc","Semibalanus_cariosus","Type 5",4,0.0875,45.7142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-02-17_YB-BCq3",2015-02-17,2015-02-17,"YB","BC","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2015-02-17_YB-BCq5",2015-02-17,2015-02-17,"YB","BC","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to algae"
+"2015-02-17_YB-BCq9",2015-02-17,2015-02-17,"YB","BC","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-02-17_YB-BDq1",2015-02-17,2015-02-17,"YB","BD","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","8%",""
+"2015-02-17_YB-BDq5",2015-02-17,2015-02-17,"YB","BD","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","14%",""
+"2015-02-17_YB-BDq7",2015-02-17,2015-02-17,"YB","BD","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2015-02-17_YB-BDq1",2015-02-17,2015-02-17,"YB","BD","1","Ae","Anemones","Type 14",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Cropped","Full","8%",""
+"2015-02-17_YB-BDq5",2015-02-17,2015-02-17,"YB","BD","5","Ae","Anemones","Type 14",3,0.0875,34.2857142857143,NA,"Julia Bingham","Finished","Cropped","Full","14%",""
+"2015-02-17_YB-BDq7",2015-02-17,2015-02-17,"YB","BD","7","Ae","Anemones","Type 14",6,0.0875,68.5714285714286,NA,"Julia Bingham","Finished","Full","Full","",""
+"2015-02-17_YB-BDq1",2015-02-17,2015-02-17,"YB","BD","1","Bg","Balanus_glandula","Type 1",553,0.0875,6320,NA,"Julia Bingham","Finished","Cropped","Full","8%",""
+"2015-02-17_YB-BDq5",2015-02-17,2015-02-17,"YB","BD","5","Bg","Balanus_glandula","Type 1",329,0.0875,3760,NA,"Julia Bingham","Finished","Cropped","Full","14%",""
+"2015-02-17_YB-BDq7",2015-02-17,2015-02-17,"YB","BD","7","Bg","Balanus_glandula","Type 1",874,0.0875,9988.57142857143,NA,"Julia Bingham","Finished","Full","Full","",""
+"2015-02-17_YB-BDq1",2015-02-17,2015-02-17,"YB","BD","1","BgD","Balanus_glandula_(dead)","Type 2",122,0.0875,1394.28571428571,NA,"Julia Bingham","Finished","Cropped","Full","8%",""
+"2015-02-17_YB-BDq5",2015-02-17,2015-02-17,"YB","BD","5","BgD","Balanus_glandula_(dead)","Type 2",109,0.0875,1245.71428571429,NA,"Julia Bingham","Finished","Cropped","Full","14%",""
+"2015-02-17_YB-BDq7",2015-02-17,2015-02-17,"YB","BD","7","BgD","Balanus_glandula_(dead)","Type 2",175,0.0875,2000,NA,"Julia Bingham","Finished","Full","Full","",""
+"2015-02-17_YB-BDq1",2015-02-17,2015-02-17,"YB","BD","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","8%",""
+"2015-02-17_YB-BDq5",2015-02-17,2015-02-17,"YB","BD","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","14%",""
+"2015-02-17_YB-BDq7",2015-02-17,2015-02-17,"YB","BD","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2015-02-17_YB-BDq1",2015-02-17,2015-02-17,"YB","BD","1","Cth","Chthamalus_dalli","Type 3",71,0.0875,811.428571428571,NA,"Julia Bingham","Finished","Cropped","Full","8%",""
+"2015-02-17_YB-BDq5",2015-02-17,2015-02-17,"YB","BD","5","Cth","Chthamalus_dalli","Type 3",14,0.0875,160,NA,"Julia Bingham","Finished","Cropped","Full","14%",""
+"2015-02-17_YB-BDq7",2015-02-17,2015-02-17,"YB","BD","7","Cth","Chthamalus_dalli","Type 3",139,0.0875,1588.57142857143,NA,"Julia Bingham","Finished","Full","Full","",""
+"2015-02-17_YB-BDq1",2015-02-17,2015-02-17,"YB","BD","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","8%",""
+"2015-02-17_YB-BDq5",2015-02-17,2015-02-17,"YB","BD","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","14%",""
+"2015-02-17_YB-BDq7",2015-02-17,2015-02-17,"YB","BD","7","CthD","Chthamalus_dalli (dead)","Type 4",13,0.0875,148.571428571429,NA,"Julia Bingham","Finished","Full","Full","",""
+"2015-02-17_YB-BDq1",2015-02-17,2015-02-17,"YB","BD","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","8%",""
+"2015-02-17_YB-BDq5",2015-02-17,2015-02-17,"YB","BD","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","14%",""
+"2015-02-17_YB-BDq7",2015-02-17,2015-02-17,"YB","BD","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2015-02-17_YB-BDq1",2015-02-17,2015-02-17,"YB","BD","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","8%",""
+"2015-02-17_YB-BDq5",2015-02-17,2015-02-17,"YB","BD","5","Lep","Leptasterias","Type 20",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Cropped","Full","14%",""
+"2015-02-17_YB-BDq7",2015-02-17,2015-02-17,"YB","BD","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2015-02-17_YB-BDq1",2015-02-17,2015-02-17,"YB","BD","1","Lim","Limpets","Type 12",203,0.0875,2320,NA,"Julia Bingham","Finished","Cropped","Full","8%",""
+"2015-02-17_YB-BDq5",2015-02-17,2015-02-17,"YB","BD","5","Lim","Limpets","Type 12",109,0.0875,1245.71428571429,NA,"Julia Bingham","Finished","Cropped","Full","14%",""
+"2015-02-17_YB-BDq7",2015-02-17,2015-02-17,"YB","BD","7","Lim","Limpets","Type 12",328,0.0875,3748.57142857143,NA,"Julia Bingham","Finished","Full","Full","",""
+"2015-02-17_YB-BDq1",2015-02-17,2015-02-17,"YB","BD","1","Ls","Littorina_sitkana","Type 13",232,0.0875,2651.42857142857,NA,"Julia Bingham","Finished","Cropped","Full","8%",""
+"2015-02-17_YB-BDq5",2015-02-17,2015-02-17,"YB","BD","5","Ls","Littorina_sitkana","Type 13",159,0.0875,1817.14285714286,NA,"Julia Bingham","Finished","Cropped","Full","14%",""
+"2015-02-17_YB-BDq7",2015-02-17,2015-02-17,"YB","BD","7","Ls","Littorina_sitkana","Type 13",255,0.0875,2914.28571428571,NA,"Julia Bingham","Finished","Full","Full","",""
+"2015-02-17_YB-BDq1",2015-02-17,2015-02-17,"YB","BD","1","Mc","Mytilus_californianus","Type 17",6,0.015625,384,"c","Julia Bingham","Finished","Cropped","Full","8%",""
+"2015-02-17_YB-BDq5",2015-02-17,2015-02-17,"YB","BD","5","Mc","Mytilus_californianus","Type 17",3,0.015625,192,"c","Julia Bingham","Finished","Cropped","Full","14%",""
+"2015-02-17_YB-BDq7",2015-02-17,2015-02-17,"YB","BD","7","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2015-02-17_YB-BDq1",2015-02-17,2015-02-17,"YB","BD","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Julia Bingham","Finished","Cropped","Full","8%",""
+"2015-02-17_YB-BDq5",2015-02-17,2015-02-17,"YB","BD","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Julia Bingham","Finished","Cropped","Full","14%",""
+"2015-02-17_YB-BDq7",2015-02-17,2015-02-17,"YB","BD","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2015-02-17_YB-BDq1",2015-02-17,2015-02-17,"YB","BD","1","Myt","Mytilus_spp","Type 7",306,0.015625,19584,"c","Julia Bingham","Finished","Cropped","Full","8%",""
+"2015-02-17_YB-BDq5",2015-02-17,2015-02-17,"YB","BD","5","Myt","Mytilus_spp","Type 7",207,0.015625,13248,"c","Julia Bingham","Finished","Cropped","Full","14%",""
+"2015-02-17_YB-BDq7",2015-02-17,2015-02-17,"YB","BD","7","Myt","Mytilus_spp","Type 7",750,0.0875,8571.42857142857,NA,"Julia Bingham","Finished","Full","Full","",""
+"2015-02-17_YB-BDq1",2015-02-17,2015-02-17,"YB","BD","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Julia Bingham","Finished","Cropped","Full","8%",""
+"2015-02-17_YB-BDq5",2015-02-17,2015-02-17,"YB","BD","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Julia Bingham","Finished","Cropped","Full","14%",""
+"2015-02-17_YB-BDq7",2015-02-17,2015-02-17,"YB","BD","7","MytD","Mytilus_spp_(dead)","Type 8",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Full","",""
+"2015-02-17_YB-BDq1",2015-02-17,2015-02-17,"YB","BD","1","Mt","Mytilus_trossulus","Type 15",195,0.015625,12480,"c","Julia Bingham","Finished","Cropped","Full","8%",""
+"2015-02-17_YB-BDq5",2015-02-17,2015-02-17,"YB","BD","5","Mt","Mytilus_trossulus","Type 15",286,0.015625,18304,"c","Julia Bingham","Finished","Cropped","Full","14%",""
+"2015-02-17_YB-BDq7",2015-02-17,2015-02-17,"YB","BD","7","Mt","Mytilus_trossulus","Type 15",355,0.0875,4057.14285714286,NA,"Julia Bingham","Finished","Full","Full","",""
+"2015-02-17_YB-BDq1",2015-02-17,2015-02-17,"YB","BD","1","MtD","Mytilus_trossulus_(dead)","Type 16",4,0.015625,256,"c","Julia Bingham","Finished","Cropped","Full","8%",""
+"2015-02-17_YB-BDq5",2015-02-17,2015-02-17,"YB","BD","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Julia Bingham","Finished","Cropped","Full","14%",""
+"2015-02-17_YB-BDq7",2015-02-17,2015-02-17,"YB","BD","7","MtD","Mytilus_trossulus_(dead)","Type 16",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","",""
+"2015-02-17_YB-BDq1",2015-02-17,2015-02-17,"YB","BD","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","8%",""
+"2015-02-17_YB-BDq5",2015-02-17,2015-02-17,"YB","BD","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","14%",""
+"2015-02-17_YB-BDq7",2015-02-17,2015-02-17,"YB","BD","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2015-02-17_YB-BDq1",2015-02-17,2015-02-17,"YB","BD","1","Nc","Nucella_canaliculata","Type 10",4,0.0875,45.7142857142857,NA,"Julia Bingham","Finished","Cropped","Full","8%",""
+"2015-02-17_YB-BDq5",2015-02-17,2015-02-17,"YB","BD","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","14%",""
+"2015-02-17_YB-BDq7",2015-02-17,2015-02-17,"YB","BD","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2015-02-17_YB-BDq1",2015-02-17,2015-02-17,"YB","BD","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","8%",""
+"2015-02-17_YB-BDq5",2015-02-17,2015-02-17,"YB","BD","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","14%",""
+"2015-02-17_YB-BDq7",2015-02-17,2015-02-17,"YB","BD","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2015-02-17_YB-BDq1",2015-02-17,2015-02-17,"YB","BD","1","No","Nucella_ostrina","Type 9",4,0.0875,45.7142857142857,NA,"Julia Bingham","Finished","Cropped","Full","8%",""
+"2015-02-17_YB-BDq5",2015-02-17,2015-02-17,"YB","BD","5","No","Nucella_ostrina","Type 9",4,0.0875,45.7142857142857,NA,"Julia Bingham","Finished","Cropped","Full","14%",""
+"2015-02-17_YB-BDq7",2015-02-17,2015-02-17,"YB","BD","7","No","Nucella_ostrina","Type 9",3,0.0875,34.2857142857143,NA,"Julia Bingham","Finished","Full","Full","",""
+"2015-02-17_YB-BDq1",2015-02-17,2015-02-17,"YB","BD","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","8%",""
+"2015-02-17_YB-BDq5",2015-02-17,2015-02-17,"YB","BD","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","14%",""
+"2015-02-17_YB-BDq7",2015-02-17,2015-02-17,"YB","BD","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2015-02-17_YB-BDq1",2015-02-17,2015-02-17,"YB","BD","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","8%",""
+"2015-02-17_YB-BDq5",2015-02-17,2015-02-17,"YB","BD","5","Pis","Pisaster","Type 21",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Cropped","Full","14%",""
+"2015-02-17_YB-BDq7",2015-02-17,2015-02-17,"YB","BD","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2015-02-17_YB-BDq1",2015-02-17,2015-02-17,"YB","BD","1","Pp","Pollicipes_polymerus","Type 11",2041,0.0875,23325.7142857143,NA,"Julia Bingham","Finished","Cropped","Full","8%",""
+"2015-02-17_YB-BDq5",2015-02-17,2015-02-17,"YB","BD","5","Pp","Pollicipes_polymerus","Type 11",995,0.0875,11371.4285714286,NA,"Julia Bingham","Finished","Cropped","Full","14%",""
+"2015-02-17_YB-BDq7",2015-02-17,2015-02-17,"YB","BD","7","Pp","Pollicipes_polymerus","Type 11",1117,0.0875,12765.7142857143,NA,"Julia Bingham","Finished","Full","Full","",""
+"2015-02-17_YB-BDq1",2015-02-17,2015-02-17,"YB","BD","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","8%",""
+"2015-02-17_YB-BDq5",2015-02-17,2015-02-17,"YB","BD","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","14%",""
+"2015-02-17_YB-BDq7",2015-02-17,2015-02-17,"YB","BD","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","",""
+"2015-02-17_YB-BDq1",2015-02-17,2015-02-17,"YB","BD","1","Sc","Semibalanus_cariosus","Type 5",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Cropped","Full","8%",""
+"2015-02-17_YB-BDq5",2015-02-17,2015-02-17,"YB","BD","5","Sc","Semibalanus_cariosus","Type 5",3,0.0875,34.2857142857143,NA,"Julia Bingham","Finished","Cropped","Full","14%",""
+"2015-02-17_YB-BDq7",2015-02-17,2015-02-17,"YB","BD","7","Sc","Semibalanus_cariosus","Type 5",4,0.0875,45.7142857142857,NA,"Julia Bingham","Finished","Full","Full","",""
+"2015-02-17_YB-BDq1",2015-02-17,2015-02-17,"YB","BD","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Cropped","Full","8%",""
+"2015-02-17_YB-BDq5",2015-02-17,2015-02-17,"YB","BD","5","ScD","Semibalanus_cariosus_(dead)","Type 6",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Cropped","Full","14%",""
+"2015-02-17_YB-BDq7",2015-02-17,2015-02-17,"YB","BD","7","ScD","Semibalanus_cariosus_(dead)","Type 6",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","",""
+"2015-02-17_YB-BEq2",2015-02-17,2015-02-17,"YB","BE","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to glare."
+"2015-02-17_YB-BEq3",2015-02-17,2015-02-17,"YB","BE","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-02-17_YB-BEq6",2015-02-17,2015-02-17,"YB","BE","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%",""
+"2015-02-17_YB-BEq2",2015-02-17,2015-02-17,"YB","BE","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to glare."
+"2015-02-17_YB-BEq3",2015-02-17,2015-02-17,"YB","BE","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-02-17_YB-BEq6",2015-02-17,2015-02-17,"YB","BE","6","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%",""
+"2015-02-17_YB-BEq2",2015-02-17,2015-02-17,"YB","BE","2","Bg","Balanus_glandula","Type 1",668,0.0875,7634.28571428571,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to glare."
+"2015-02-17_YB-BEq3",2015-02-17,2015-02-17,"YB","BE","3","Bg","Balanus_glandula","Type 1",635,0.0875,7257.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-02-17_YB-BEq6",2015-02-17,2015-02-17,"YB","BE","6","Bg","Balanus_glandula","Type 1",1408,0.0875,16091.4285714286,NA,"Beatriz Vaca","Finished","Full","Full","30%",""
+"2015-02-17_YB-BEq2",2015-02-17,2015-02-17,"YB","BE","2","BgD","Balanus_glandula_(dead)","Type 2",19,0.0875,217.142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to glare."
+"2015-02-17_YB-BEq3",2015-02-17,2015-02-17,"YB","BE","3","BgD","Balanus_glandula_(dead)","Type 2",123,0.0875,1405.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-02-17_YB-BEq6",2015-02-17,2015-02-17,"YB","BE","6","BgD","Balanus_glandula_(dead)","Type 2",255,0.0875,2914.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","30%",""
+"2015-02-17_YB-BEq2",2015-02-17,2015-02-17,"YB","BE","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to glare."
+"2015-02-17_YB-BEq3",2015-02-17,2015-02-17,"YB","BE","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-02-17_YB-BEq6",2015-02-17,2015-02-17,"YB","BE","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%",""
+"2015-02-17_YB-BEq2",2015-02-17,2015-02-17,"YB","BE","2","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to glare."
+"2015-02-17_YB-BEq3",2015-02-17,2015-02-17,"YB","BE","3","Cth","Chthamalus_dalli","Type 3",109,0.0875,1245.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-02-17_YB-BEq6",2015-02-17,2015-02-17,"YB","BE","6","Cth","Chthamalus_dalli","Type 3",282,0.0875,3222.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","30%",""
+"2015-02-17_YB-BEq2",2015-02-17,2015-02-17,"YB","BE","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to glare."
+"2015-02-17_YB-BEq3",2015-02-17,2015-02-17,"YB","BE","3","CthD","Chthamalus_dalli (dead)","Type 4",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-02-17_YB-BEq6",2015-02-17,2015-02-17,"YB","BE","6","CthD","Chthamalus_dalli (dead)","Type 4",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","30%",""
+"2015-02-17_YB-BEq2",2015-02-17,2015-02-17,"YB","BE","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to glare."
+"2015-02-17_YB-BEq3",2015-02-17,2015-02-17,"YB","BE","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-02-17_YB-BEq6",2015-02-17,2015-02-17,"YB","BE","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%",""
+"2015-02-17_YB-BEq2",2015-02-17,2015-02-17,"YB","BE","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to glare."
+"2015-02-17_YB-BEq3",2015-02-17,2015-02-17,"YB","BE","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-02-17_YB-BEq6",2015-02-17,2015-02-17,"YB","BE","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%",""
+"2015-02-17_YB-BEq2",2015-02-17,2015-02-17,"YB","BE","2","Lim","Limpets","Type 12",47,0.0875,537.142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to glare."
+"2015-02-17_YB-BEq3",2015-02-17,2015-02-17,"YB","BE","3","Lim","Limpets","Type 12",74,0.0875,845.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-02-17_YB-BEq6",2015-02-17,2015-02-17,"YB","BE","6","Lim","Limpets","Type 12",122,0.0875,1394.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","30%",""
+"2015-02-17_YB-BEq2",2015-02-17,2015-02-17,"YB","BE","2","Ls","Littorina_sitkana","Type 13",367,0.0875,4194.28571428571,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to glare."
+"2015-02-17_YB-BEq3",2015-02-17,2015-02-17,"YB","BE","3","Ls","Littorina_sitkana","Type 13",209,0.0875,2388.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-02-17_YB-BEq6",2015-02-17,2015-02-17,"YB","BE","6","Ls","Littorina_sitkana","Type 13",286,0.0875,3268.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","30%",""
+"2015-02-17_YB-BEq2",2015-02-17,2015-02-17,"YB","BE","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to glare."
+"2015-02-17_YB-BEq3",2015-02-17,2015-02-17,"YB","BE","3","Mc","Mytilus_californianus","Type 17",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-02-17_YB-BEq6",2015-02-17,2015-02-17,"YB","BE","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%",""
+"2015-02-17_YB-BEq2",2015-02-17,2015-02-17,"YB","BE","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to glare."
+"2015-02-17_YB-BEq3",2015-02-17,2015-02-17,"YB","BE","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-02-17_YB-BEq6",2015-02-17,2015-02-17,"YB","BE","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%",""
+"2015-02-17_YB-BEq2",2015-02-17,2015-02-17,"YB","BE","2","Myt","Mytilus_spp","Type 7",38,0.0875,434.285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to glare."
+"2015-02-17_YB-BEq3",2015-02-17,2015-02-17,"YB","BE","3","Myt","Mytilus_spp","Type 7",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-02-17_YB-BEq6",2015-02-17,2015-02-17,"YB","BE","6","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%",""
+"2015-02-17_YB-BEq2",2015-02-17,2015-02-17,"YB","BE","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to glare."
+"2015-02-17_YB-BEq3",2015-02-17,2015-02-17,"YB","BE","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-02-17_YB-BEq6",2015-02-17,2015-02-17,"YB","BE","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%",""
+"2015-02-17_YB-BEq2",2015-02-17,2015-02-17,"YB","BE","2","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to glare."
+"2015-02-17_YB-BEq3",2015-02-17,2015-02-17,"YB","BE","3","Mt","Mytilus_trossulus","Type 15",153,0.0875,1748.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-02-17_YB-BEq6",2015-02-17,2015-02-17,"YB","BE","6","Mt","Mytilus_trossulus","Type 15",152,0.0875,1737.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","30%",""
+"2015-02-17_YB-BEq2",2015-02-17,2015-02-17,"YB","BE","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to glare."
+"2015-02-17_YB-BEq3",2015-02-17,2015-02-17,"YB","BE","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-02-17_YB-BEq6",2015-02-17,2015-02-17,"YB","BE","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%",""
+"2015-02-17_YB-BEq2",2015-02-17,2015-02-17,"YB","BE","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to glare."
+"2015-02-17_YB-BEq3",2015-02-17,2015-02-17,"YB","BE","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-02-17_YB-BEq6",2015-02-17,2015-02-17,"YB","BE","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%",""
+"2015-02-17_YB-BEq2",2015-02-17,2015-02-17,"YB","BE","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to glare."
+"2015-02-17_YB-BEq3",2015-02-17,2015-02-17,"YB","BE","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-02-17_YB-BEq6",2015-02-17,2015-02-17,"YB","BE","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%",""
+"2015-02-17_YB-BEq2",2015-02-17,2015-02-17,"YB","BE","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to glare."
+"2015-02-17_YB-BEq3",2015-02-17,2015-02-17,"YB","BE","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-02-17_YB-BEq6",2015-02-17,2015-02-17,"YB","BE","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%",""
+"2015-02-17_YB-BEq2",2015-02-17,2015-02-17,"YB","BE","2","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to glare."
+"2015-02-17_YB-BEq3",2015-02-17,2015-02-17,"YB","BE","3","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-02-17_YB-BEq6",2015-02-17,2015-02-17,"YB","BE","6","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","30%",""
+"2015-02-17_YB-BEq2",2015-02-17,2015-02-17,"YB","BE","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to glare."
+"2015-02-17_YB-BEq3",2015-02-17,2015-02-17,"YB","BE","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-02-17_YB-BEq6",2015-02-17,2015-02-17,"YB","BE","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%",""
+"2015-02-17_YB-BEq2",2015-02-17,2015-02-17,"YB","BE","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to glare."
+"2015-02-17_YB-BEq3",2015-02-17,2015-02-17,"YB","BE","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-02-17_YB-BEq6",2015-02-17,2015-02-17,"YB","BE","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%",""
+"2015-02-17_YB-BEq2",2015-02-17,2015-02-17,"YB","BE","2","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to glare."
+"2015-02-17_YB-BEq3",2015-02-17,2015-02-17,"YB","BE","3","Pp","Pollicipes_polymerus","Type 11",13,0.0875,148.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-02-17_YB-BEq6",2015-02-17,2015-02-17,"YB","BE","6","Pp","Pollicipes_polymerus","Type 11",11,0.0875,125.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","30%",""
+"2015-02-17_YB-BEq2",2015-02-17,2015-02-17,"YB","BE","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to glare."
+"2015-02-17_YB-BEq3",2015-02-17,2015-02-17,"YB","BE","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-02-17_YB-BEq6",2015-02-17,2015-02-17,"YB","BE","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%",""
+"2015-02-17_YB-BEq2",2015-02-17,2015-02-17,"YB","BE","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to glare."
+"2015-02-17_YB-BEq3",2015-02-17,2015-02-17,"YB","BE","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-02-17_YB-BEq6",2015-02-17,2015-02-17,"YB","BE","6","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","30%",""
+"2015-02-17_YB-BEq2",2015-02-17,2015-02-17,"YB","BE","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to glare."
+"2015-02-17_YB-BEq3",2015-02-17,2015-02-17,"YB","BE","3","ScD","Semibalanus_cariosus_(dead)","Type 6",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-02-17_YB-BEq6",2015-02-17,2015-02-17,"YB","BE","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%",""
+"2015-02-17_YB-BFq1",2015-02-17,2015-02-17,"YB","BF","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-BFq4",2015-02-17,2015-02-17,"YB","BF","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-02-17_YB-BFq9",2015-02-17,2015-02-17,"YB","BF","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","35%",""
+"2015-02-17_YB-BFq1",2015-02-17,2015-02-17,"YB","BF","1","Ae","Anemones","Type 14",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-BFq4",2015-02-17,2015-02-17,"YB","BF","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-02-17_YB-BFq9",2015-02-17,2015-02-17,"YB","BF","9","Ae","Anemones","Type 14",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","35%",""
+"2015-02-17_YB-BFq1",2015-02-17,2015-02-17,"YB","BF","1","Bg","Balanus_glandula","Type 1",809,0.0875,9245.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-BFq4",2015-02-17,2015-02-17,"YB","BF","4","Bg","Balanus_glandula","Type 1",1094,0.0875,12502.8571428571,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-02-17_YB-BFq9",2015-02-17,2015-02-17,"YB","BF","9","Bg","Balanus_glandula","Type 1",577,0.0875,6594.28571428571,NA,"Julia Bingham","Finished","Full","Full","35%",""
+"2015-02-17_YB-BFq1",2015-02-17,2015-02-17,"YB","BF","1","BgD","Balanus_glandula_(dead)","Type 2",113,0.0875,1291.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-BFq4",2015-02-17,2015-02-17,"YB","BF","4","BgD","Balanus_glandula_(dead)","Type 2",170,0.0875,1942.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-02-17_YB-BFq9",2015-02-17,2015-02-17,"YB","BF","9","BgD","Balanus_glandula_(dead)","Type 2",271,0.0875,3097.14285714286,NA,"Julia Bingham","Finished","Full","Full","35%",""
+"2015-02-17_YB-BFq1",2015-02-17,2015-02-17,"YB","BF","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-BFq4",2015-02-17,2015-02-17,"YB","BF","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-02-17_YB-BFq9",2015-02-17,2015-02-17,"YB","BF","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","35%",""
+"2015-02-17_YB-BFq1",2015-02-17,2015-02-17,"YB","BF","1","Cth","Chthamalus_dalli","Type 3",176,0.0875,2011.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-BFq4",2015-02-17,2015-02-17,"YB","BF","4","Cth","Chthamalus_dalli","Type 3",105,0.0875,1200,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-02-17_YB-BFq9",2015-02-17,2015-02-17,"YB","BF","9","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","35%",""
+"2015-02-17_YB-BFq1",2015-02-17,2015-02-17,"YB","BF","1","CthD","Chthamalus_dalli (dead)","Type 4",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-BFq4",2015-02-17,2015-02-17,"YB","BF","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-02-17_YB-BFq9",2015-02-17,2015-02-17,"YB","BF","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","35%",""
+"2015-02-17_YB-BFq1",2015-02-17,2015-02-17,"YB","BF","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-BFq4",2015-02-17,2015-02-17,"YB","BF","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-02-17_YB-BFq9",2015-02-17,2015-02-17,"YB","BF","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","35%",""
+"2015-02-17_YB-BFq1",2015-02-17,2015-02-17,"YB","BF","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-BFq4",2015-02-17,2015-02-17,"YB","BF","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-02-17_YB-BFq9",2015-02-17,2015-02-17,"YB","BF","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","35%",""
+"2015-02-17_YB-BFq1",2015-02-17,2015-02-17,"YB","BF","1","Lim","Limpets","Type 12",134,0.0875,1531.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-BFq4",2015-02-17,2015-02-17,"YB","BF","4","Lim","Limpets","Type 12",126,0.0875,1440,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-02-17_YB-BFq9",2015-02-17,2015-02-17,"YB","BF","9","Lim","Limpets","Type 12",82,0.0875,937.142857142857,NA,"Julia Bingham","Finished","Full","Full","35%",""
+"2015-02-17_YB-BFq1",2015-02-17,2015-02-17,"YB","BF","1","Ls","Littorina_sitkana","Type 13",234,0.0875,2674.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-BFq4",2015-02-17,2015-02-17,"YB","BF","4","Ls","Littorina_sitkana","Type 13",343,0.0875,3920,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-02-17_YB-BFq9",2015-02-17,2015-02-17,"YB","BF","9","Ls","Littorina_sitkana","Type 13",487,0.0875,5565.71428571429,NA,"Julia Bingham","Finished","Full","Full","35%",""
+"2015-02-17_YB-BFq1",2015-02-17,2015-02-17,"YB","BF","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-BFq4",2015-02-17,2015-02-17,"YB","BF","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-02-17_YB-BFq9",2015-02-17,2015-02-17,"YB","BF","9","Mc","Mytilus_californianus","Type 17",12,0.0875,137.142857142857,NA,"Julia Bingham","Finished","Full","Full","35%",""
+"2015-02-17_YB-BFq1",2015-02-17,2015-02-17,"YB","BF","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-BFq4",2015-02-17,2015-02-17,"YB","BF","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-02-17_YB-BFq9",2015-02-17,2015-02-17,"YB","BF","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","35%",""
+"2015-02-17_YB-BFq1",2015-02-17,2015-02-17,"YB","BF","1","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-BFq4",2015-02-17,2015-02-17,"YB","BF","4","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-02-17_YB-BFq9",2015-02-17,2015-02-17,"YB","BF","9","Myt","Mytilus_spp","Type 7",1189,0.0875,13588.5714285714,NA,"Julia Bingham","Finished","Full","Full","35%",""
+"2015-02-17_YB-BFq1",2015-02-17,2015-02-17,"YB","BF","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-BFq4",2015-02-17,2015-02-17,"YB","BF","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-02-17_YB-BFq9",2015-02-17,2015-02-17,"YB","BF","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","35%",""
+"2015-02-17_YB-BFq1",2015-02-17,2015-02-17,"YB","BF","1","Mt","Mytilus_trossulus","Type 15",324,0.0875,3702.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-BFq4",2015-02-17,2015-02-17,"YB","BF","4","Mt","Mytilus_trossulus","Type 15",152,0.0875,1737.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-02-17_YB-BFq9",2015-02-17,2015-02-17,"YB","BF","9","Mt","Mytilus_trossulus","Type 15",1007,0.0875,11508.5714285714,NA,"Julia Bingham","Finished","Full","Full","35%",""
+"2015-02-17_YB-BFq1",2015-02-17,2015-02-17,"YB","BF","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-BFq4",2015-02-17,2015-02-17,"YB","BF","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-02-17_YB-BFq9",2015-02-17,2015-02-17,"YB","BF","9","MtD","Mytilus_trossulus_(dead)","Type 16",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Full","35%",""
+"2015-02-17_YB-BFq1",2015-02-17,2015-02-17,"YB","BF","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-BFq4",2015-02-17,2015-02-17,"YB","BF","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-02-17_YB-BFq9",2015-02-17,2015-02-17,"YB","BF","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","35%",""
+"2015-02-17_YB-BFq1",2015-02-17,2015-02-17,"YB","BF","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-BFq4",2015-02-17,2015-02-17,"YB","BF","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-02-17_YB-BFq9",2015-02-17,2015-02-17,"YB","BF","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","35%",""
+"2015-02-17_YB-BFq1",2015-02-17,2015-02-17,"YB","BF","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-BFq4",2015-02-17,2015-02-17,"YB","BF","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-02-17_YB-BFq9",2015-02-17,2015-02-17,"YB","BF","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","35%",""
+"2015-02-17_YB-BFq1",2015-02-17,2015-02-17,"YB","BF","1","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-BFq4",2015-02-17,2015-02-17,"YB","BF","4","No","Nucella_ostrina","Type 9",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-02-17_YB-BFq9",2015-02-17,2015-02-17,"YB","BF","9","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","35%",""
+"2015-02-17_YB-BFq1",2015-02-17,2015-02-17,"YB","BF","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-BFq4",2015-02-17,2015-02-17,"YB","BF","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-02-17_YB-BFq9",2015-02-17,2015-02-17,"YB","BF","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","35%",""
+"2015-02-17_YB-BFq1",2015-02-17,2015-02-17,"YB","BF","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-BFq4",2015-02-17,2015-02-17,"YB","BF","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-02-17_YB-BFq9",2015-02-17,2015-02-17,"YB","BF","9","Pis","Pisaster","Type 21",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","35%",""
+"2015-02-17_YB-BFq1",2015-02-17,2015-02-17,"YB","BF","1","Pp","Pollicipes_polymerus","Type 11",75,0.0875,857.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-BFq4",2015-02-17,2015-02-17,"YB","BF","4","Pp","Pollicipes_polymerus","Type 11",17,0.0875,194.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-02-17_YB-BFq9",2015-02-17,2015-02-17,"YB","BF","9","Pp","Pollicipes_polymerus","Type 11",355,0.0875,4057.14285714286,NA,"Julia Bingham","Finished","Full","Full","35%",""
+"2015-02-17_YB-BFq1",2015-02-17,2015-02-17,"YB","BF","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-BFq4",2015-02-17,2015-02-17,"YB","BF","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-02-17_YB-BFq9",2015-02-17,2015-02-17,"YB","BF","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","35%",""
+"2015-02-17_YB-BFq1",2015-02-17,2015-02-17,"YB","BF","1","Sc","Semibalanus_cariosus","Type 5",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-BFq4",2015-02-17,2015-02-17,"YB","BF","4","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-02-17_YB-BFq9",2015-02-17,2015-02-17,"YB","BF","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","35%",""
+"2015-02-17_YB-BFq1",2015-02-17,2015-02-17,"YB","BF","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-BFq4",2015-02-17,2015-02-17,"YB","BF","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-02-17_YB-BFq9",2015-02-17,2015-02-17,"YB","BF","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","35%",""
+"2015-02-17_YB-Cq2",2015-02-17,2015-02-17,"YB","C","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-02-17_YB-Cq4",2015-02-17,2015-02-17,"YB","C","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-Cq6",2015-02-17,2015-02-17,"YB","C","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-Cq2",2015-02-17,2015-02-17,"YB","C","2","Ae","Anemones","Type 14",18,0.0875,205.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-02-17_YB-Cq4",2015-02-17,2015-02-17,"YB","C","4","Ae","Anemones","Type 14",24,0.0875,274.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-Cq6",2015-02-17,2015-02-17,"YB","C","6","Ae","Anemones","Type 14",31,0.0875,354.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-Cq2",2015-02-17,2015-02-17,"YB","C","2","Bg","Balanus_glandula","Type 1",534,0.0875,6102.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-02-17_YB-Cq4",2015-02-17,2015-02-17,"YB","C","4","Bg","Balanus_glandula","Type 1",662,0.0875,7565.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-Cq6",2015-02-17,2015-02-17,"YB","C","6","Bg","Balanus_glandula","Type 1",338,0.0875,3862.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-Cq2",2015-02-17,2015-02-17,"YB","C","2","BgD","Balanus_glandula_(dead)","Type 2",109,0.0875,1245.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-02-17_YB-Cq4",2015-02-17,2015-02-17,"YB","C","4","BgD","Balanus_glandula_(dead)","Type 2",169,0.0875,1931.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-Cq6",2015-02-17,2015-02-17,"YB","C","6","BgD","Balanus_glandula_(dead)","Type 2",58,0.0875,662.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-Cq2",2015-02-17,2015-02-17,"YB","C","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-02-17_YB-Cq4",2015-02-17,2015-02-17,"YB","C","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-Cq6",2015-02-17,2015-02-17,"YB","C","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-Cq2",2015-02-17,2015-02-17,"YB","C","2","Cth","Chthamalus_dalli","Type 3",41,0.0875,468.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-02-17_YB-Cq4",2015-02-17,2015-02-17,"YB","C","4","Cth","Chthamalus_dalli","Type 3",74,0.0875,845.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-Cq6",2015-02-17,2015-02-17,"YB","C","6","Cth","Chthamalus_dalli","Type 3",11,0.0875,125.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-Cq2",2015-02-17,2015-02-17,"YB","C","2","CthD","Chthamalus_dalli (dead)","Type 4",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-02-17_YB-Cq4",2015-02-17,2015-02-17,"YB","C","4","CthD","Chthamalus_dalli (dead)","Type 4",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-Cq6",2015-02-17,2015-02-17,"YB","C","6","CthD","Chthamalus_dalli (dead)","Type 4",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-Cq2",2015-02-17,2015-02-17,"YB","C","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-02-17_YB-Cq4",2015-02-17,2015-02-17,"YB","C","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-Cq6",2015-02-17,2015-02-17,"YB","C","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-Cq2",2015-02-17,2015-02-17,"YB","C","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-02-17_YB-Cq4",2015-02-17,2015-02-17,"YB","C","4","Lep","Leptasterias","Type 20",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-Cq6",2015-02-17,2015-02-17,"YB","C","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-Cq2",2015-02-17,2015-02-17,"YB","C","2","Lim","Limpets","Type 12",61,0.0875,697.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-02-17_YB-Cq4",2015-02-17,2015-02-17,"YB","C","4","Lim","Limpets","Type 12",43,0.0875,491.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-Cq6",2015-02-17,2015-02-17,"YB","C","6","Lim","Limpets","Type 12",26,0.0875,297.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-Cq2",2015-02-17,2015-02-17,"YB","C","2","Ls","Littorina_sitkana","Type 13",35,0.0875,400,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-02-17_YB-Cq4",2015-02-17,2015-02-17,"YB","C","4","Ls","Littorina_sitkana","Type 13",34,0.0875,388.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-Cq6",2015-02-17,2015-02-17,"YB","C","6","Ls","Littorina_sitkana","Type 13",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-Cq2",2015-02-17,2015-02-17,"YB","C","2","Mc","Mytilus_californianus","Type 17",18,0.0875,205.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-02-17_YB-Cq4",2015-02-17,2015-02-17,"YB","C","4","Mc","Mytilus_californianus","Type 17",13,0.0875,148.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-Cq6",2015-02-17,2015-02-17,"YB","C","6","Mc","Mytilus_californianus","Type 17",19,0.0875,217.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-Cq2",2015-02-17,2015-02-17,"YB","C","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-02-17_YB-Cq4",2015-02-17,2015-02-17,"YB","C","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-Cq6",2015-02-17,2015-02-17,"YB","C","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-Cq2",2015-02-17,2015-02-17,"YB","C","2","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-02-17_YB-Cq4",2015-02-17,2015-02-17,"YB","C","4","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-Cq6",2015-02-17,2015-02-17,"YB","C","6","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-Cq2",2015-02-17,2015-02-17,"YB","C","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-02-17_YB-Cq4",2015-02-17,2015-02-17,"YB","C","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-Cq6",2015-02-17,2015-02-17,"YB","C","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-Cq2",2015-02-17,2015-02-17,"YB","C","2","Mt","Mytilus_trossulus","Type 15",195,0.0875,2228.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-02-17_YB-Cq4",2015-02-17,2015-02-17,"YB","C","4","Mt","Mytilus_trossulus","Type 15",172,0.0875,1965.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-Cq6",2015-02-17,2015-02-17,"YB","C","6","Mt","Mytilus_trossulus","Type 15",124,0.0875,1417.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-Cq2",2015-02-17,2015-02-17,"YB","C","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-02-17_YB-Cq4",2015-02-17,2015-02-17,"YB","C","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-Cq6",2015-02-17,2015-02-17,"YB","C","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-Cq2",2015-02-17,2015-02-17,"YB","C","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-02-17_YB-Cq4",2015-02-17,2015-02-17,"YB","C","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-Cq6",2015-02-17,2015-02-17,"YB","C","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-Cq2",2015-02-17,2015-02-17,"YB","C","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-02-17_YB-Cq4",2015-02-17,2015-02-17,"YB","C","4","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-Cq6",2015-02-17,2015-02-17,"YB","C","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-Cq2",2015-02-17,2015-02-17,"YB","C","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-02-17_YB-Cq4",2015-02-17,2015-02-17,"YB","C","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-Cq6",2015-02-17,2015-02-17,"YB","C","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-Cq2",2015-02-17,2015-02-17,"YB","C","2","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-02-17_YB-Cq4",2015-02-17,2015-02-17,"YB","C","4","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-Cq6",2015-02-17,2015-02-17,"YB","C","6","No","Nucella_ostrina","Type 9",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-Cq2",2015-02-17,2015-02-17,"YB","C","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-02-17_YB-Cq4",2015-02-17,2015-02-17,"YB","C","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-Cq6",2015-02-17,2015-02-17,"YB","C","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-Cq2",2015-02-17,2015-02-17,"YB","C","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-02-17_YB-Cq4",2015-02-17,2015-02-17,"YB","C","4","Pis","Pisaster","Type 21",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-Cq6",2015-02-17,2015-02-17,"YB","C","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-Cq2",2015-02-17,2015-02-17,"YB","C","2","Pp","Pollicipes_polymerus","Type 11",545,0.0875,6228.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-02-17_YB-Cq4",2015-02-17,2015-02-17,"YB","C","4","Pp","Pollicipes_polymerus","Type 11",524,0.0875,5988.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-Cq6",2015-02-17,2015-02-17,"YB","C","6","Pp","Pollicipes_polymerus","Type 11",231,0.0875,2640,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-Cq2",2015-02-17,2015-02-17,"YB","C","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-02-17_YB-Cq4",2015-02-17,2015-02-17,"YB","C","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-Cq6",2015-02-17,2015-02-17,"YB","C","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-Cq2",2015-02-17,2015-02-17,"YB","C","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-02-17_YB-Cq4",2015-02-17,2015-02-17,"YB","C","4","Sc","Semibalanus_cariosus","Type 5",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-Cq6",2015-02-17,2015-02-17,"YB","C","6","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-Cq2",2015-02-17,2015-02-17,"YB","C","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-02-17_YB-Cq4",2015-02-17,2015-02-17,"YB","C","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-Cq6",2015-02-17,2015-02-17,"YB","C","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-02-17_YB-Dq3",2015-02-17,2015-02-17,"YB","D","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2015-02-17_YB-Dq4",2015-02-17,2015-02-17,"YB","D","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2015-02-17_YB-Dq5",2015-02-17,2015-02-17,"YB","D","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2015-02-17_YB-Dq3",2015-02-17,2015-02-17,"YB","D","3","Ae","Anemones","Type 14",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2015-02-17_YB-Dq4",2015-02-17,2015-02-17,"YB","D","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2015-02-17_YB-Dq5",2015-02-17,2015-02-17,"YB","D","5","Ae","Anemones","Type 14",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2015-02-17_YB-Dq3",2015-02-17,2015-02-17,"YB","D","3","Bg","Balanus_glandula","Type 1",110,0.015625,7040,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2015-02-17_YB-Dq4",2015-02-17,2015-02-17,"YB","D","4","Bg","Balanus_glandula","Type 1",1566,0.0875,17897.1428571429,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2015-02-17_YB-Dq5",2015-02-17,2015-02-17,"YB","D","5","Bg","Balanus_glandula","Type 1",177,0.015625,11328,"c","Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2015-02-17_YB-Dq3",2015-02-17,2015-02-17,"YB","D","3","BgD","Balanus_glandula_(dead)","Type 2",13,0.015625,832,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2015-02-17_YB-Dq4",2015-02-17,2015-02-17,"YB","D","4","BgD","Balanus_glandula_(dead)","Type 2",60,0.0875,685.714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2015-02-17_YB-Dq5",2015-02-17,2015-02-17,"YB","D","5","BgD","Balanus_glandula_(dead)","Type 2",32,0.015625,2048,"c","Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2015-02-17_YB-Dq3",2015-02-17,2015-02-17,"YB","D","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2015-02-17_YB-Dq4",2015-02-17,2015-02-17,"YB","D","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2015-02-17_YB-Dq5",2015-02-17,2015-02-17,"YB","D","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2015-02-17_YB-Dq3",2015-02-17,2015-02-17,"YB","D","3","Cth","Chthamalus_dalli","Type 3",4,0.015625,256,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2015-02-17_YB-Dq4",2015-02-17,2015-02-17,"YB","D","4","Cth","Chthamalus_dalli","Type 3",23,0.0875,262.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2015-02-17_YB-Dq5",2015-02-17,2015-02-17,"YB","D","5","Cth","Chthamalus_dalli","Type 3",15,0.015625,960,"c","Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2015-02-17_YB-Dq3",2015-02-17,2015-02-17,"YB","D","3","CthD","Chthamalus_dalli (dead)","Type 4",1,0.015625,64,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2015-02-17_YB-Dq4",2015-02-17,2015-02-17,"YB","D","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2015-02-17_YB-Dq5",2015-02-17,2015-02-17,"YB","D","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2015-02-17_YB-Dq3",2015-02-17,2015-02-17,"YB","D","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2015-02-17_YB-Dq4",2015-02-17,2015-02-17,"YB","D","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2015-02-17_YB-Dq5",2015-02-17,2015-02-17,"YB","D","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2015-02-17_YB-Dq3",2015-02-17,2015-02-17,"YB","D","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2015-02-17_YB-Dq4",2015-02-17,2015-02-17,"YB","D","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2015-02-17_YB-Dq5",2015-02-17,2015-02-17,"YB","D","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2015-02-17_YB-Dq3",2015-02-17,2015-02-17,"YB","D","3","Lim","Limpets","Type 12",21,0.0875,240,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2015-02-17_YB-Dq4",2015-02-17,2015-02-17,"YB","D","4","Lim","Limpets","Type 12",12,0.0875,137.142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2015-02-17_YB-Dq5",2015-02-17,2015-02-17,"YB","D","5","Lim","Limpets","Type 12",274,0.0875,3131.42857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2015-02-17_YB-Dq3",2015-02-17,2015-02-17,"YB","D","3","Ls","Littorina_sitkana","Type 13",57,0.0875,651.428571428571,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2015-02-17_YB-Dq4",2015-02-17,2015-02-17,"YB","D","4","Ls","Littorina_sitkana","Type 13",81,0.0875,925.714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2015-02-17_YB-Dq5",2015-02-17,2015-02-17,"YB","D","5","Ls","Littorina_sitkana","Type 13",175,0.0875,2000,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2015-02-17_YB-Dq3",2015-02-17,2015-02-17,"YB","D","3","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2015-02-17_YB-Dq4",2015-02-17,2015-02-17,"YB","D","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2015-02-17_YB-Dq5",2015-02-17,2015-02-17,"YB","D","5","Mc","Mytilus_californianus","Type 17",168,0.0875,1920,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2015-02-17_YB-Dq3",2015-02-17,2015-02-17,"YB","D","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2015-02-17_YB-Dq4",2015-02-17,2015-02-17,"YB","D","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2015-02-17_YB-Dq5",2015-02-17,2015-02-17,"YB","D","5","McD","Mytilus_californianus_(dead)","Type 18",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2015-02-17_YB-Dq3",2015-02-17,2015-02-17,"YB","D","3","Myt","Mytilus_spp","Type 7",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2015-02-17_YB-Dq4",2015-02-17,2015-02-17,"YB","D","4","Myt","Mytilus_spp","Type 7",421,0.0875,4811.42857142857,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2015-02-17_YB-Dq5",2015-02-17,2015-02-17,"YB","D","5","Myt","Mytilus_spp","Type 7",322,0.0875,3680,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2015-02-17_YB-Dq3",2015-02-17,2015-02-17,"YB","D","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2015-02-17_YB-Dq4",2015-02-17,2015-02-17,"YB","D","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2015-02-17_YB-Dq5",2015-02-17,2015-02-17,"YB","D","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2015-02-17_YB-Dq3",2015-02-17,2015-02-17,"YB","D","3","Mt","Mytilus_trossulus","Type 15",88,0.015625,5632,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2015-02-17_YB-Dq4",2015-02-17,2015-02-17,"YB","D","4","Mt","Mytilus_trossulus","Type 15",172,0.0875,1965.71428571429,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2015-02-17_YB-Dq5",2015-02-17,2015-02-17,"YB","D","5","Mt","Mytilus_trossulus","Type 15",14,0.0875,160,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2015-02-17_YB-Dq3",2015-02-17,2015-02-17,"YB","D","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2015-02-17_YB-Dq4",2015-02-17,2015-02-17,"YB","D","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2015-02-17_YB-Dq5",2015-02-17,2015-02-17,"YB","D","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2015-02-17_YB-Dq3",2015-02-17,2015-02-17,"YB","D","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2015-02-17_YB-Dq4",2015-02-17,2015-02-17,"YB","D","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2015-02-17_YB-Dq5",2015-02-17,2015-02-17,"YB","D","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2015-02-17_YB-Dq3",2015-02-17,2015-02-17,"YB","D","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2015-02-17_YB-Dq4",2015-02-17,2015-02-17,"YB","D","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2015-02-17_YB-Dq5",2015-02-17,2015-02-17,"YB","D","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2015-02-17_YB-Dq3",2015-02-17,2015-02-17,"YB","D","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2015-02-17_YB-Dq4",2015-02-17,2015-02-17,"YB","D","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2015-02-17_YB-Dq5",2015-02-17,2015-02-17,"YB","D","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2015-02-17_YB-Dq3",2015-02-17,2015-02-17,"YB","D","3","No","Nucella_ostrina","Type 9",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2015-02-17_YB-Dq4",2015-02-17,2015-02-17,"YB","D","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2015-02-17_YB-Dq5",2015-02-17,2015-02-17,"YB","D","5","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2015-02-17_YB-Dq3",2015-02-17,2015-02-17,"YB","D","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2015-02-17_YB-Dq4",2015-02-17,2015-02-17,"YB","D","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2015-02-17_YB-Dq5",2015-02-17,2015-02-17,"YB","D","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2015-02-17_YB-Dq3",2015-02-17,2015-02-17,"YB","D","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2015-02-17_YB-Dq4",2015-02-17,2015-02-17,"YB","D","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2015-02-17_YB-Dq5",2015-02-17,2015-02-17,"YB","D","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2015-02-17_YB-Dq3",2015-02-17,2015-02-17,"YB","D","3","Pp","Pollicipes_polymerus","Type 11",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2015-02-17_YB-Dq4",2015-02-17,2015-02-17,"YB","D","4","Pp","Pollicipes_polymerus","Type 11",16,0.0875,182.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2015-02-17_YB-Dq5",2015-02-17,2015-02-17,"YB","D","5","Pp","Pollicipes_polymerus","Type 11",13,0.0875,148.571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2015-02-17_YB-Dq3",2015-02-17,2015-02-17,"YB","D","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2015-02-17_YB-Dq4",2015-02-17,2015-02-17,"YB","D","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2015-02-17_YB-Dq5",2015-02-17,2015-02-17,"YB","D","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2015-02-17_YB-Dq3",2015-02-17,2015-02-17,"YB","D","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2015-02-17_YB-Dq4",2015-02-17,2015-02-17,"YB","D","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2015-02-17_YB-Dq5",2015-02-17,2015-02-17,"YB","D","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2015-02-17_YB-Dq3",2015-02-17,2015-02-17,"YB","D","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2015-02-17_YB-Dq4",2015-02-17,2015-02-17,"YB","D","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2015-02-17_YB-Dq5",2015-02-17,2015-02-17,"YB","D","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2015-02-17_YB-Eq3",2015-02-17,2015-02-17,"YB","E","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","All counts may be low due to high water patches"
+"2015-02-17_YB-Eq4",2015-02-17,2015-02-17,"YB","E","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%",""
+"2015-02-17_YB-Eq8",2015-02-17,2015-02-17,"YB","E","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","65%","Counts likely low due to blur and glare"
+"2015-02-17_YB-Eq3",2015-02-17,2015-02-17,"YB","E","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","All counts may be low due to high water patches"
+"2015-02-17_YB-Eq4",2015-02-17,2015-02-17,"YB","E","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%",""
+"2015-02-17_YB-Eq8",2015-02-17,2015-02-17,"YB","E","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","65%","Counts likely low due to blur and glare"
+"2015-02-17_YB-Eq3",2015-02-17,2015-02-17,"YB","E","3","Bg","Balanus_glandula","Type 1",281,0.0875,3211.42857142857,NA,"Stephanie Merhoff","Finished","Full","Full","20%","All counts may be low due to high water patches"
+"2015-02-17_YB-Eq4",2015-02-17,2015-02-17,"YB","E","4","Bg","Balanus_glandula","Type 1",418,0.0875,4777.14285714286,NA,"Stephanie Merhoff","Finished","Full","Full","70%",""
+"2015-02-17_YB-Eq8",2015-02-17,2015-02-17,"YB","E","8","Bg","Balanus_glandula","Type 1",22,0.0875,251.428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","65%","Counts likely low due to blur and glare"
+"2015-02-17_YB-Eq3",2015-02-17,2015-02-17,"YB","E","3","BgD","Balanus_glandula_(dead)","Type 2",6,0.0875,68.5714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","20%","All counts may be low due to high water patches"
+"2015-02-17_YB-Eq4",2015-02-17,2015-02-17,"YB","E","4","BgD","Balanus_glandula_(dead)","Type 2",53,0.0875,605.714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","70%",""
+"2015-02-17_YB-Eq8",2015-02-17,2015-02-17,"YB","E","8","BgD","Balanus_glandula_(dead)","Type 2",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","65%","Counts likely low due to blur and glare"
+"2015-02-17_YB-Eq3",2015-02-17,2015-02-17,"YB","E","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","All counts may be low due to high water patches"
+"2015-02-17_YB-Eq4",2015-02-17,2015-02-17,"YB","E","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%",""
+"2015-02-17_YB-Eq8",2015-02-17,2015-02-17,"YB","E","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","65%","Counts likely low due to blur and glare"
+"2015-02-17_YB-Eq3",2015-02-17,2015-02-17,"YB","E","3","Cth","Chthamalus_dalli","Type 3",310,0.0875,3542.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","20%","All counts may be low due to high water patches"
+"2015-02-17_YB-Eq4",2015-02-17,2015-02-17,"YB","E","4","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%",""
+"2015-02-17_YB-Eq8",2015-02-17,2015-02-17,"YB","E","8","Cth","Chthamalus_dalli","Type 3",324,0.0875,3702.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","65%","Counts likely low due to blur and glare"
+"2015-02-17_YB-Eq3",2015-02-17,2015-02-17,"YB","E","3","CthD","Chthamalus_dalli (dead)","Type 4",8,0.0875,91.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","20%","All counts may be low due to high water patches"
+"2015-02-17_YB-Eq4",2015-02-17,2015-02-17,"YB","E","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%",""
+"2015-02-17_YB-Eq8",2015-02-17,2015-02-17,"YB","E","8","CthD","Chthamalus_dalli (dead)","Type 4",6,0.0875,68.5714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","65%","Counts likely low due to blur and glare"
+"2015-02-17_YB-Eq3",2015-02-17,2015-02-17,"YB","E","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","All counts may be low due to high water patches"
+"2015-02-17_YB-Eq4",2015-02-17,2015-02-17,"YB","E","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%",""
+"2015-02-17_YB-Eq8",2015-02-17,2015-02-17,"YB","E","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","65%","Counts likely low due to blur and glare"
+"2015-02-17_YB-Eq3",2015-02-17,2015-02-17,"YB","E","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","All counts may be low due to high water patches"
+"2015-02-17_YB-Eq4",2015-02-17,2015-02-17,"YB","E","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%",""
+"2015-02-17_YB-Eq8",2015-02-17,2015-02-17,"YB","E","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","65%","Counts likely low due to blur and glare"
+"2015-02-17_YB-Eq3",2015-02-17,2015-02-17,"YB","E","3","Lim","Limpets","Type 12",32,0.0875,365.714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","20%","All counts may be low due to high water patches"
+"2015-02-17_YB-Eq4",2015-02-17,2015-02-17,"YB","E","4","Lim","Limpets","Type 12",17,0.0875,194.285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","70%",""
+"2015-02-17_YB-Eq8",2015-02-17,2015-02-17,"YB","E","8","Lim","Limpets","Type 12",33,0.0875,377.142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","65%","Counts likely low due to blur and glare"
+"2015-02-17_YB-Eq3",2015-02-17,2015-02-17,"YB","E","3","Ls","Littorina_sitkana","Type 13",22,0.0875,251.428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","20%","All counts may be low due to high water patches"
+"2015-02-17_YB-Eq4",2015-02-17,2015-02-17,"YB","E","4","Ls","Littorina_sitkana","Type 13",36,0.0875,411.428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","70%",""
+"2015-02-17_YB-Eq8",2015-02-17,2015-02-17,"YB","E","8","Ls","Littorina_sitkana","Type 13",36,0.0875,411.428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","65%","Counts likely low due to blur and glare"
+"2015-02-17_YB-Eq3",2015-02-17,2015-02-17,"YB","E","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","All counts may be low due to high water patches"
+"2015-02-17_YB-Eq4",2015-02-17,2015-02-17,"YB","E","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%",""
+"2015-02-17_YB-Eq8",2015-02-17,2015-02-17,"YB","E","8","Mc","Mytilus_californianus","Type 17",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","65%","Counts likely low due to blur and glare"
+"2015-02-17_YB-Eq3",2015-02-17,2015-02-17,"YB","E","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","All counts may be low due to high water patches"
+"2015-02-17_YB-Eq4",2015-02-17,2015-02-17,"YB","E","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%",""
+"2015-02-17_YB-Eq8",2015-02-17,2015-02-17,"YB","E","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","65%","Counts likely low due to blur and glare"
+"2015-02-17_YB-Eq3",2015-02-17,2015-02-17,"YB","E","3","Myt","Mytilus_spp","Type 7",324,0.0875,3702.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","20%","All counts may be low due to high water patches"
+"2015-02-17_YB-Eq4",2015-02-17,2015-02-17,"YB","E","4","Myt","Mytilus_spp","Type 7",135,0.0875,1542.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","70%",""
+"2015-02-17_YB-Eq8",2015-02-17,2015-02-17,"YB","E","8","Myt","Mytilus_spp","Type 7",493,0.0875,5634.28571428571,NA,"Stephanie Merhoff","Finished","Full","Full","65%","Counts likely low due to blur and glare"
+"2015-02-17_YB-Eq3",2015-02-17,2015-02-17,"YB","E","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","All counts may be low due to high water patches"
+"2015-02-17_YB-Eq4",2015-02-17,2015-02-17,"YB","E","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%",""
+"2015-02-17_YB-Eq8",2015-02-17,2015-02-17,"YB","E","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","65%","Counts likely low due to blur and glare"
+"2015-02-17_YB-Eq3",2015-02-17,2015-02-17,"YB","E","3","Mt","Mytilus_trossulus","Type 15",64,0.0875,731.428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","20%","All counts may be low due to high water patches"
+"2015-02-17_YB-Eq4",2015-02-17,2015-02-17,"YB","E","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%",""
+"2015-02-17_YB-Eq8",2015-02-17,2015-02-17,"YB","E","8","Mt","Mytilus_trossulus","Type 15",34,0.0875,388.571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","65%","Counts likely low due to blur and glare"
+"2015-02-17_YB-Eq3",2015-02-17,2015-02-17,"YB","E","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","All counts may be low due to high water patches"
+"2015-02-17_YB-Eq4",2015-02-17,2015-02-17,"YB","E","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%",""
+"2015-02-17_YB-Eq8",2015-02-17,2015-02-17,"YB","E","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","65%","Counts likely low due to blur and glare"
+"2015-02-17_YB-Eq3",2015-02-17,2015-02-17,"YB","E","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","All counts may be low due to high water patches"
+"2015-02-17_YB-Eq4",2015-02-17,2015-02-17,"YB","E","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%",""
+"2015-02-17_YB-Eq8",2015-02-17,2015-02-17,"YB","E","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","65%","Counts likely low due to blur and glare"
+"2015-02-17_YB-Eq3",2015-02-17,2015-02-17,"YB","E","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","All counts may be low due to high water patches"
+"2015-02-17_YB-Eq4",2015-02-17,2015-02-17,"YB","E","4","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","70%",""
+"2015-02-17_YB-Eq8",2015-02-17,2015-02-17,"YB","E","8","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","65%","Counts likely low due to blur and glare"
+"2015-02-17_YB-Eq3",2015-02-17,2015-02-17,"YB","E","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","All counts may be low due to high water patches"
+"2015-02-17_YB-Eq4",2015-02-17,2015-02-17,"YB","E","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%",""
+"2015-02-17_YB-Eq8",2015-02-17,2015-02-17,"YB","E","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","65%","Counts likely low due to blur and glare"
+"2015-02-17_YB-Eq3",2015-02-17,2015-02-17,"YB","E","3","No","Nucella_ostrina","Type 9",4,0.0875,45.7142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","20%","All counts may be low due to high water patches"
+"2015-02-17_YB-Eq4",2015-02-17,2015-02-17,"YB","E","4","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","70%",""
+"2015-02-17_YB-Eq8",2015-02-17,2015-02-17,"YB","E","8","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","65%","Counts likely low due to blur and glare"
+"2015-02-17_YB-Eq3",2015-02-17,2015-02-17,"YB","E","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","All counts may be low due to high water patches"
+"2015-02-17_YB-Eq4",2015-02-17,2015-02-17,"YB","E","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%",""
+"2015-02-17_YB-Eq8",2015-02-17,2015-02-17,"YB","E","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","65%","Counts likely low due to blur and glare"
+"2015-02-17_YB-Eq3",2015-02-17,2015-02-17,"YB","E","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","All counts may be low due to high water patches"
+"2015-02-17_YB-Eq4",2015-02-17,2015-02-17,"YB","E","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%",""
+"2015-02-17_YB-Eq8",2015-02-17,2015-02-17,"YB","E","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","65%","Counts likely low due to blur and glare"
+"2015-02-17_YB-Eq3",2015-02-17,2015-02-17,"YB","E","3","Pp","Pollicipes_polymerus","Type 11",193,0.0875,2205.71428571429,NA,"Stephanie Merhoff","Finished","Full","Full","20%","All counts may be low due to high water patches"
+"2015-02-17_YB-Eq4",2015-02-17,2015-02-17,"YB","E","4","Pp","Pollicipes_polymerus","Type 11",189,0.0875,2160,NA,"Stephanie Merhoff","Finished","Full","Full","70%",""
+"2015-02-17_YB-Eq8",2015-02-17,2015-02-17,"YB","E","8","Pp","Pollicipes_polymerus","Type 11",508,0.0875,5805.71428571429,NA,"Stephanie Merhoff","Finished","Full","Full","65%","Counts likely low due to blur and glare"
+"2015-02-17_YB-Eq3",2015-02-17,2015-02-17,"YB","E","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","All counts may be low due to high water patches"
+"2015-02-17_YB-Eq4",2015-02-17,2015-02-17,"YB","E","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%",""
+"2015-02-17_YB-Eq8",2015-02-17,2015-02-17,"YB","E","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","65%","Counts likely low due to blur and glare"
+"2015-02-17_YB-Eq3",2015-02-17,2015-02-17,"YB","E","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","All counts may be low due to high water patches"
+"2015-02-17_YB-Eq4",2015-02-17,2015-02-17,"YB","E","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%",""
+"2015-02-17_YB-Eq8",2015-02-17,2015-02-17,"YB","E","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","65%","Counts likely low due to blur and glare"
+"2015-02-17_YB-Eq3",2015-02-17,2015-02-17,"YB","E","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","All counts may be low due to high water patches"
+"2015-02-17_YB-Eq4",2015-02-17,2015-02-17,"YB","E","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%",""
+"2015-02-17_YB-Eq8",2015-02-17,2015-02-17,"YB","E","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","65%","Counts likely low due to blur and glare"
+"2015-02-17_YB-Fq4",2015-02-17,2015-02-17,"YB","F","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-02-17_YB-Fq5",2015-02-17,2015-02-17,"YB","F","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-02-17_YB-Fq6",2015-02-17,2015-02-17,"YB","F","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-02-17_YB-Fq4",2015-02-17,2015-02-17,"YB","F","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-02-17_YB-Fq5",2015-02-17,2015-02-17,"YB","F","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-02-17_YB-Fq6",2015-02-17,2015-02-17,"YB","F","6","Ae","Anemones","Type 14",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-02-17_YB-Fq4",2015-02-17,2015-02-17,"YB","F","4","Bg","Balanus_glandula","Type 1",443,0.0875,5062.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-02-17_YB-Fq5",2015-02-17,2015-02-17,"YB","F","5","Bg","Balanus_glandula","Type 1",452,0.0875,5165.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-02-17_YB-Fq6",2015-02-17,2015-02-17,"YB","F","6","Bg","Balanus_glandula","Type 1",652,0.0875,7451.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-02-17_YB-Fq4",2015-02-17,2015-02-17,"YB","F","4","BgD","Balanus_glandula_(dead)","Type 2",92,0.0875,1051.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-02-17_YB-Fq5",2015-02-17,2015-02-17,"YB","F","5","BgD","Balanus_glandula_(dead)","Type 2",107,0.0875,1222.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-02-17_YB-Fq6",2015-02-17,2015-02-17,"YB","F","6","BgD","Balanus_glandula_(dead)","Type 2",146,0.0875,1668.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-02-17_YB-Fq4",2015-02-17,2015-02-17,"YB","F","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-02-17_YB-Fq5",2015-02-17,2015-02-17,"YB","F","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-02-17_YB-Fq6",2015-02-17,2015-02-17,"YB","F","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-02-17_YB-Fq4",2015-02-17,2015-02-17,"YB","F","4","Cth","Chthamalus_dalli","Type 3",32,0.0875,365.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-02-17_YB-Fq5",2015-02-17,2015-02-17,"YB","F","5","Cth","Chthamalus_dalli","Type 3",69,0.0875,788.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-02-17_YB-Fq6",2015-02-17,2015-02-17,"YB","F","6","Cth","Chthamalus_dalli","Type 3",14,0.0875,160,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-02-17_YB-Fq4",2015-02-17,2015-02-17,"YB","F","4","CthD","Chthamalus_dalli (dead)","Type 4",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-02-17_YB-Fq5",2015-02-17,2015-02-17,"YB","F","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-02-17_YB-Fq6",2015-02-17,2015-02-17,"YB","F","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-02-17_YB-Fq4",2015-02-17,2015-02-17,"YB","F","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-02-17_YB-Fq5",2015-02-17,2015-02-17,"YB","F","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-02-17_YB-Fq6",2015-02-17,2015-02-17,"YB","F","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-02-17_YB-Fq4",2015-02-17,2015-02-17,"YB","F","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-02-17_YB-Fq5",2015-02-17,2015-02-17,"YB","F","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-02-17_YB-Fq6",2015-02-17,2015-02-17,"YB","F","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-02-17_YB-Fq4",2015-02-17,2015-02-17,"YB","F","4","Lim","Limpets","Type 12",170,0.0875,1942.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-02-17_YB-Fq5",2015-02-17,2015-02-17,"YB","F","5","Lim","Limpets","Type 12",114,0.0875,1302.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-02-17_YB-Fq6",2015-02-17,2015-02-17,"YB","F","6","Lim","Limpets","Type 12",172,0.0875,1965.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-02-17_YB-Fq4",2015-02-17,2015-02-17,"YB","F","4","Ls","Littorina_sitkana","Type 13",74,0.0875,845.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-02-17_YB-Fq5",2015-02-17,2015-02-17,"YB","F","5","Ls","Littorina_sitkana","Type 13",89,0.0875,1017.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-02-17_YB-Fq6",2015-02-17,2015-02-17,"YB","F","6","Ls","Littorina_sitkana","Type 13",109,0.0875,1245.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-02-17_YB-Fq4",2015-02-17,2015-02-17,"YB","F","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-02-17_YB-Fq5",2015-02-17,2015-02-17,"YB","F","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-02-17_YB-Fq6",2015-02-17,2015-02-17,"YB","F","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-02-17_YB-Fq4",2015-02-17,2015-02-17,"YB","F","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-02-17_YB-Fq5",2015-02-17,2015-02-17,"YB","F","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-02-17_YB-Fq6",2015-02-17,2015-02-17,"YB","F","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-02-17_YB-Fq4",2015-02-17,2015-02-17,"YB","F","4","Myt","Mytilus_spp","Type 7",92,0.0875,1051.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-02-17_YB-Fq5",2015-02-17,2015-02-17,"YB","F","5","Myt","Mytilus_spp","Type 7",99,0.0875,1131.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-02-17_YB-Fq6",2015-02-17,2015-02-17,"YB","F","6","Myt","Mytilus_spp","Type 7",98,0.0875,1120,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-02-17_YB-Fq4",2015-02-17,2015-02-17,"YB","F","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-02-17_YB-Fq5",2015-02-17,2015-02-17,"YB","F","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-02-17_YB-Fq6",2015-02-17,2015-02-17,"YB","F","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-02-17_YB-Fq4",2015-02-17,2015-02-17,"YB","F","4","Mt","Mytilus_trossulus","Type 15",360,0.0875,4114.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-02-17_YB-Fq5",2015-02-17,2015-02-17,"YB","F","5","Mt","Mytilus_trossulus","Type 15",464,0.0875,5302.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-02-17_YB-Fq6",2015-02-17,2015-02-17,"YB","F","6","Mt","Mytilus_trossulus","Type 15",445,0.0875,5085.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-02-17_YB-Fq4",2015-02-17,2015-02-17,"YB","F","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-02-17_YB-Fq5",2015-02-17,2015-02-17,"YB","F","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-02-17_YB-Fq6",2015-02-17,2015-02-17,"YB","F","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-02-17_YB-Fq4",2015-02-17,2015-02-17,"YB","F","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-02-17_YB-Fq5",2015-02-17,2015-02-17,"YB","F","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-02-17_YB-Fq6",2015-02-17,2015-02-17,"YB","F","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-02-17_YB-Fq4",2015-02-17,2015-02-17,"YB","F","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-02-17_YB-Fq5",2015-02-17,2015-02-17,"YB","F","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-02-17_YB-Fq6",2015-02-17,2015-02-17,"YB","F","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-02-17_YB-Fq4",2015-02-17,2015-02-17,"YB","F","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-02-17_YB-Fq5",2015-02-17,2015-02-17,"YB","F","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-02-17_YB-Fq6",2015-02-17,2015-02-17,"YB","F","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-02-17_YB-Fq4",2015-02-17,2015-02-17,"YB","F","4","No","Nucella_ostrina","Type 9",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-02-17_YB-Fq5",2015-02-17,2015-02-17,"YB","F","5","No","Nucella_ostrina","Type 9",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-02-17_YB-Fq6",2015-02-17,2015-02-17,"YB","F","6","No","Nucella_ostrina","Type 9",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-02-17_YB-Fq4",2015-02-17,2015-02-17,"YB","F","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-02-17_YB-Fq5",2015-02-17,2015-02-17,"YB","F","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-02-17_YB-Fq6",2015-02-17,2015-02-17,"YB","F","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-02-17_YB-Fq4",2015-02-17,2015-02-17,"YB","F","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-02-17_YB-Fq5",2015-02-17,2015-02-17,"YB","F","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-02-17_YB-Fq6",2015-02-17,2015-02-17,"YB","F","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-02-17_YB-Fq4",2015-02-17,2015-02-17,"YB","F","4","Pp","Pollicipes_polymerus","Type 11",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-02-17_YB-Fq5",2015-02-17,2015-02-17,"YB","F","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-02-17_YB-Fq6",2015-02-17,2015-02-17,"YB","F","6","Pp","Pollicipes_polymerus","Type 11",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-02-17_YB-Fq4",2015-02-17,2015-02-17,"YB","F","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-02-17_YB-Fq5",2015-02-17,2015-02-17,"YB","F","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-02-17_YB-Fq6",2015-02-17,2015-02-17,"YB","F","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-02-17_YB-Fq4",2015-02-17,2015-02-17,"YB","F","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-02-17_YB-Fq5",2015-02-17,2015-02-17,"YB","F","5","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-02-17_YB-Fq6",2015-02-17,2015-02-17,"YB","F","6","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-02-17_YB-Fq4",2015-02-17,2015-02-17,"YB","F","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-02-17_YB-Fq5",2015-02-17,2015-02-17,"YB","F","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-02-17_YB-Fq6",2015-02-17,2015-02-17,"YB","F","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-02-17_YB-Gq3",2015-02-17,2015-02-17,"YB","G","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%",""
+"2015-02-17_YB-Gq5",2015-02-17,2015-02-17,"YB","G","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to water cover. ~40% underwater."
+"2015-02-17_YB-Gq8",2015-02-17,2015-02-17,"YB","G","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2015-02-17_YB-Gq3",2015-02-17,2015-02-17,"YB","G","3","Ae","Anemones","Type 14",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","50%",""
+"2015-02-17_YB-Gq5",2015-02-17,2015-02-17,"YB","G","5","Ae","Anemones","Type 14",53,0.0875,605.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to water cover. ~40% underwater."
+"2015-02-17_YB-Gq8",2015-02-17,2015-02-17,"YB","G","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2015-02-17_YB-Gq3",2015-02-17,2015-02-17,"YB","G","3","Bg","Balanus_glandula","Type 1",347,0.0875,3965.71428571429,NA,"Stephanie Merhoff","Finished","Full","Full","50%",""
+"2015-02-17_YB-Gq5",2015-02-17,2015-02-17,"YB","G","5","Bg","Balanus_glandula","Type 1",342,0.0875,3908.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to water cover. ~40% underwater."
+"2015-02-17_YB-Gq8",2015-02-17,2015-02-17,"YB","G","8","Bg","Balanus_glandula","Type 1",452,0.015625,28928,"c","Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2015-02-17_YB-Gq3",2015-02-17,2015-02-17,"YB","G","3","BgD","Balanus_glandula_(dead)","Type 2",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","50%",""
+"2015-02-17_YB-Gq5",2015-02-17,2015-02-17,"YB","G","5","BgD","Balanus_glandula_(dead)","Type 2",49,0.0875,560,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to water cover. ~40% underwater."
+"2015-02-17_YB-Gq8",2015-02-17,2015-02-17,"YB","G","8","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2015-02-17_YB-Gq3",2015-02-17,2015-02-17,"YB","G","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%",""
+"2015-02-17_YB-Gq5",2015-02-17,2015-02-17,"YB","G","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to water cover. ~40% underwater."
+"2015-02-17_YB-Gq8",2015-02-17,2015-02-17,"YB","G","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2015-02-17_YB-Gq3",2015-02-17,2015-02-17,"YB","G","3","Cth","Chthamalus_dalli","Type 3",117,0.0875,1337.14285714286,NA,"Stephanie Merhoff","Finished","Full","Full","50%",""
+"2015-02-17_YB-Gq5",2015-02-17,2015-02-17,"YB","G","5","Cth","Chthamalus_dalli","Type 3",82,0.0875,937.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to water cover. ~40% underwater."
+"2015-02-17_YB-Gq8",2015-02-17,2015-02-17,"YB","G","8","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2015-02-17_YB-Gq3",2015-02-17,2015-02-17,"YB","G","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%",""
+"2015-02-17_YB-Gq5",2015-02-17,2015-02-17,"YB","G","5","CthD","Chthamalus_dalli (dead)","Type 4",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to water cover. ~40% underwater."
+"2015-02-17_YB-Gq8",2015-02-17,2015-02-17,"YB","G","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2015-02-17_YB-Gq3",2015-02-17,2015-02-17,"YB","G","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%",""
+"2015-02-17_YB-Gq5",2015-02-17,2015-02-17,"YB","G","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to water cover. ~40% underwater."
+"2015-02-17_YB-Gq8",2015-02-17,2015-02-17,"YB","G","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2015-02-17_YB-Gq3",2015-02-17,2015-02-17,"YB","G","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%",""
+"2015-02-17_YB-Gq5",2015-02-17,2015-02-17,"YB","G","5","Lep","Leptasterias","Type 20",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to water cover. ~40% underwater."
+"2015-02-17_YB-Gq8",2015-02-17,2015-02-17,"YB","G","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2015-02-17_YB-Gq3",2015-02-17,2015-02-17,"YB","G","3","Lim","Limpets","Type 12",25,0.0875,285.714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","50%",""
+"2015-02-17_YB-Gq5",2015-02-17,2015-02-17,"YB","G","5","Lim","Limpets","Type 12",105,0.0875,1200,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to water cover. ~40% underwater."
+"2015-02-17_YB-Gq8",2015-02-17,2015-02-17,"YB","G","8","Lim","Limpets","Type 12",21,0.0875,240,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2015-02-17_YB-Gq3",2015-02-17,2015-02-17,"YB","G","3","Ls","Littorina_sitkana","Type 13",33,0.0875,377.142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","50%",""
+"2015-02-17_YB-Gq5",2015-02-17,2015-02-17,"YB","G","5","Ls","Littorina_sitkana","Type 13",20,0.0875,228.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to water cover. ~40% underwater."
+"2015-02-17_YB-Gq8",2015-02-17,2015-02-17,"YB","G","8","Ls","Littorina_sitkana","Type 13",74,0.0875,845.714285714286,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2015-02-17_YB-Gq3",2015-02-17,2015-02-17,"YB","G","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%",""
+"2015-02-17_YB-Gq5",2015-02-17,2015-02-17,"YB","G","5","Mc","Mytilus_californianus","Type 17",141,0.0875,1611.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to water cover. ~40% underwater."
+"2015-02-17_YB-Gq8",2015-02-17,2015-02-17,"YB","G","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2015-02-17_YB-Gq3",2015-02-17,2015-02-17,"YB","G","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%",""
+"2015-02-17_YB-Gq5",2015-02-17,2015-02-17,"YB","G","5","McD","Mytilus_californianus_(dead)","Type 18",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to water cover. ~40% underwater."
+"2015-02-17_YB-Gq8",2015-02-17,2015-02-17,"YB","G","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2015-02-17_YB-Gq3",2015-02-17,2015-02-17,"YB","G","3","Myt","Mytilus_spp","Type 7",346,0.0875,3954.28571428571,NA,"Stephanie Merhoff","Finished","Full","Full","50%",""
+"2015-02-17_YB-Gq5",2015-02-17,2015-02-17,"YB","G","5","Myt","Mytilus_spp","Type 7",395,0.0875,4514.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to water cover. ~40% underwater."
+"2015-02-17_YB-Gq8",2015-02-17,2015-02-17,"YB","G","8","Myt","Mytilus_spp","Type 7",548,0.0875,6262.85714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2015-02-17_YB-Gq3",2015-02-17,2015-02-17,"YB","G","3","MytD","Mytilus_spp_(dead)","Type 8",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","50%",""
+"2015-02-17_YB-Gq5",2015-02-17,2015-02-17,"YB","G","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to water cover. ~40% underwater."
+"2015-02-17_YB-Gq8",2015-02-17,2015-02-17,"YB","G","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2015-02-17_YB-Gq3",2015-02-17,2015-02-17,"YB","G","3","Mt","Mytilus_trossulus","Type 15",180,0.0875,2057.14285714286,NA,"Stephanie Merhoff","Finished","Full","Full","50%",""
+"2015-02-17_YB-Gq5",2015-02-17,2015-02-17,"YB","G","5","Mt","Mytilus_trossulus","Type 15",96,0.0875,1097.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to water cover. ~40% underwater."
+"2015-02-17_YB-Gq8",2015-02-17,2015-02-17,"YB","G","8","Mt","Mytilus_trossulus","Type 15",130,0.0875,1485.71428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2015-02-17_YB-Gq3",2015-02-17,2015-02-17,"YB","G","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%",""
+"2015-02-17_YB-Gq5",2015-02-17,2015-02-17,"YB","G","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to water cover. ~40% underwater."
+"2015-02-17_YB-Gq8",2015-02-17,2015-02-17,"YB","G","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2015-02-17_YB-Gq3",2015-02-17,2015-02-17,"YB","G","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%",""
+"2015-02-17_YB-Gq5",2015-02-17,2015-02-17,"YB","G","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to water cover. ~40% underwater."
+"2015-02-17_YB-Gq8",2015-02-17,2015-02-17,"YB","G","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2015-02-17_YB-Gq3",2015-02-17,2015-02-17,"YB","G","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%",""
+"2015-02-17_YB-Gq5",2015-02-17,2015-02-17,"YB","G","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to water cover. ~40% underwater."
+"2015-02-17_YB-Gq8",2015-02-17,2015-02-17,"YB","G","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2015-02-17_YB-Gq3",2015-02-17,2015-02-17,"YB","G","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%",""
+"2015-02-17_YB-Gq5",2015-02-17,2015-02-17,"YB","G","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to water cover. ~40% underwater."
+"2015-02-17_YB-Gq8",2015-02-17,2015-02-17,"YB","G","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2015-02-17_YB-Gq3",2015-02-17,2015-02-17,"YB","G","3","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%",""
+"2015-02-17_YB-Gq5",2015-02-17,2015-02-17,"YB","G","5","No","Nucella_ostrina","Type 9",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to water cover. ~40% underwater."
+"2015-02-17_YB-Gq8",2015-02-17,2015-02-17,"YB","G","8","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2015-02-17_YB-Gq3",2015-02-17,2015-02-17,"YB","G","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%",""
+"2015-02-17_YB-Gq5",2015-02-17,2015-02-17,"YB","G","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to water cover. ~40% underwater."
+"2015-02-17_YB-Gq8",2015-02-17,2015-02-17,"YB","G","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2015-02-17_YB-Gq3",2015-02-17,2015-02-17,"YB","G","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%",""
+"2015-02-17_YB-Gq5",2015-02-17,2015-02-17,"YB","G","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to water cover. ~40% underwater."
+"2015-02-17_YB-Gq8",2015-02-17,2015-02-17,"YB","G","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2015-02-17_YB-Gq3",2015-02-17,2015-02-17,"YB","G","3","Pp","Pollicipes_polymerus","Type 11",38,0.0875,434.285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","50%",""
+"2015-02-17_YB-Gq5",2015-02-17,2015-02-17,"YB","G","5","Pp","Pollicipes_polymerus","Type 11",404,0.0875,4617.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to water cover. ~40% underwater."
+"2015-02-17_YB-Gq8",2015-02-17,2015-02-17,"YB","G","8","Pp","Pollicipes_polymerus","Type 11",427,0.0875,4880,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2015-02-17_YB-Gq3",2015-02-17,2015-02-17,"YB","G","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%",""
+"2015-02-17_YB-Gq5",2015-02-17,2015-02-17,"YB","G","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to water cover. ~40% underwater."
+"2015-02-17_YB-Gq8",2015-02-17,2015-02-17,"YB","G","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2015-02-17_YB-Gq3",2015-02-17,2015-02-17,"YB","G","3","Sc","Semibalanus_cariosus","Type 5",11,0.0875,125.714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","50%",""
+"2015-02-17_YB-Gq5",2015-02-17,2015-02-17,"YB","G","5","Sc","Semibalanus_cariosus","Type 5",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to water cover. ~40% underwater."
+"2015-02-17_YB-Gq8",2015-02-17,2015-02-17,"YB","G","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2015-02-17_YB-Gq3",2015-02-17,2015-02-17,"YB","G","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%",""
+"2015-02-17_YB-Gq5",2015-02-17,2015-02-17,"YB","G","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to water cover. ~40% underwater."
+"2015-02-17_YB-Gq8",2015-02-17,2015-02-17,"YB","G","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","15%","Counts likely low due to glare"
+"2015-03-17_YB-Aq6",2015-03-17,2015-03-17,"YB","A","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","12%","~12% underwater"
+"2015-03-17_YB-Aq7",2015-03-17,2015-03-17,"YB","A","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2015-03-17_YB-Aq9",2015-03-17,2015-03-17,"YB","A","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-03-17_YB-Aq6",2015-03-17,2015-03-17,"YB","A","6","Ae","Anemones","Type 14",27,0.0875,308.571428571429,NA,"Celeste Moen","Finished","Full","Full","12%","~12% underwater"
+"2015-03-17_YB-Aq7",2015-03-17,2015-03-17,"YB","A","7","Ae","Anemones","Type 14",36,0.0875,411.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2015-03-17_YB-Aq9",2015-03-17,2015-03-17,"YB","A","9","Ae","Anemones","Type 14",23,0.0875,262.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-03-17_YB-Aq6",2015-03-17,2015-03-17,"YB","A","6","Bg","Balanus_glandula","Type 1",270,0.0875,3085.71428571429,NA,"Celeste Moen","Finished","Full","Full","12%","~12% underwater"
+"2015-03-17_YB-Aq7",2015-03-17,2015-03-17,"YB","A","7","Bg","Balanus_glandula","Type 1",328,0.0875,3748.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2015-03-17_YB-Aq9",2015-03-17,2015-03-17,"YB","A","9","Bg","Balanus_glandula","Type 1",378,0.0875,4320,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-03-17_YB-Aq6",2015-03-17,2015-03-17,"YB","A","6","BgD","Balanus_glandula_(dead)","Type 2",25,0.0875,285.714285714286,NA,"Celeste Moen","Finished","Full","Full","12%","~12% underwater"
+"2015-03-17_YB-Aq7",2015-03-17,2015-03-17,"YB","A","7","BgD","Balanus_glandula_(dead)","Type 2",26,0.0875,297.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2015-03-17_YB-Aq9",2015-03-17,2015-03-17,"YB","A","9","BgD","Balanus_glandula_(dead)","Type 2",39,0.0875,445.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-03-17_YB-Aq6",2015-03-17,2015-03-17,"YB","A","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","12%","~12% underwater"
+"2015-03-17_YB-Aq7",2015-03-17,2015-03-17,"YB","A","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2015-03-17_YB-Aq9",2015-03-17,2015-03-17,"YB","A","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-03-17_YB-Aq6",2015-03-17,2015-03-17,"YB","A","6","Cth","Chthamalus_dalli","Type 3",115,0.0875,1314.28571428571,NA,"Celeste Moen","Finished","Full","Full","12%","~12% underwater"
+"2015-03-17_YB-Aq7",2015-03-17,2015-03-17,"YB","A","7","Cth","Chthamalus_dalli","Type 3",217,0.0875,2480,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2015-03-17_YB-Aq9",2015-03-17,2015-03-17,"YB","A","9","Cth","Chthamalus_dalli","Type 3",192,0.0875,2194.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-03-17_YB-Aq6",2015-03-17,2015-03-17,"YB","A","6","CthD","Chthamalus_dalli (dead)","Type 4",13,0.0875,148.571428571429,NA,"Celeste Moen","Finished","Full","Full","12%","~12% underwater"
+"2015-03-17_YB-Aq7",2015-03-17,2015-03-17,"YB","A","7","CthD","Chthamalus_dalli (dead)","Type 4",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2015-03-17_YB-Aq9",2015-03-17,2015-03-17,"YB","A","9","CthD","Chthamalus_dalli (dead)","Type 4",10,0.0875,114.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-03-17_YB-Aq6",2015-03-17,2015-03-17,"YB","A","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","12%","~12% underwater"
+"2015-03-17_YB-Aq7",2015-03-17,2015-03-17,"YB","A","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2015-03-17_YB-Aq9",2015-03-17,2015-03-17,"YB","A","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-03-17_YB-Aq6",2015-03-17,2015-03-17,"YB","A","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","12%","~12% underwater"
+"2015-03-17_YB-Aq7",2015-03-17,2015-03-17,"YB","A","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2015-03-17_YB-Aq9",2015-03-17,2015-03-17,"YB","A","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-03-17_YB-Aq6",2015-03-17,2015-03-17,"YB","A","6","Lim","Limpets","Type 12",16,0.0875,182.857142857143,NA,"Celeste Moen","Finished","Full","Full","12%","~12% underwater"
+"2015-03-17_YB-Aq7",2015-03-17,2015-03-17,"YB","A","7","Lim","Limpets","Type 12",19,0.0875,217.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2015-03-17_YB-Aq9",2015-03-17,2015-03-17,"YB","A","9","Lim","Limpets","Type 12",36,0.0875,411.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-03-17_YB-Aq6",2015-03-17,2015-03-17,"YB","A","6","Ls","Littorina_sitkana","Type 13",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","12%","~12% underwater"
+"2015-03-17_YB-Aq7",2015-03-17,2015-03-17,"YB","A","7","Ls","Littorina_sitkana","Type 13",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2015-03-17_YB-Aq9",2015-03-17,2015-03-17,"YB","A","9","Ls","Littorina_sitkana","Type 13",33,0.0875,377.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-03-17_YB-Aq6",2015-03-17,2015-03-17,"YB","A","6","Mc","Mytilus_californianus","Type 17",54,0.0875,617.142857142857,NA,"Celeste Moen","Finished","Full","Full","12%","~12% underwater"
+"2015-03-17_YB-Aq7",2015-03-17,2015-03-17,"YB","A","7","Mc","Mytilus_californianus","Type 17",19,0.0875,217.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2015-03-17_YB-Aq9",2015-03-17,2015-03-17,"YB","A","9","Mc","Mytilus_californianus","Type 17",45,0.0875,514.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-03-17_YB-Aq6",2015-03-17,2015-03-17,"YB","A","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","12%","~12% underwater"
+"2015-03-17_YB-Aq7",2015-03-17,2015-03-17,"YB","A","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2015-03-17_YB-Aq9",2015-03-17,2015-03-17,"YB","A","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-03-17_YB-Aq6",2015-03-17,2015-03-17,"YB","A","6","Myt","Mytilus_spp","Type 7",41,0.0875,468.571428571429,NA,"Celeste Moen","Finished","Full","Full","12%","~12% underwater"
+"2015-03-17_YB-Aq7",2015-03-17,2015-03-17,"YB","A","7","Myt","Mytilus_spp","Type 7",42,0.0875,480,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2015-03-17_YB-Aq9",2015-03-17,2015-03-17,"YB","A","9","Myt","Mytilus_spp","Type 7",34,0.0875,388.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-03-17_YB-Aq6",2015-03-17,2015-03-17,"YB","A","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","12%","~12% underwater"
+"2015-03-17_YB-Aq7",2015-03-17,2015-03-17,"YB","A","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2015-03-17_YB-Aq9",2015-03-17,2015-03-17,"YB","A","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-03-17_YB-Aq6",2015-03-17,2015-03-17,"YB","A","6","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","12%","~12% underwater"
+"2015-03-17_YB-Aq7",2015-03-17,2015-03-17,"YB","A","7","Mt","Mytilus_trossulus","Type 15",125,0.0875,1428.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2015-03-17_YB-Aq9",2015-03-17,2015-03-17,"YB","A","9","Mt","Mytilus_trossulus","Type 15",48,0.0875,548.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-03-17_YB-Aq6",2015-03-17,2015-03-17,"YB","A","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","12%","~12% underwater"
+"2015-03-17_YB-Aq7",2015-03-17,2015-03-17,"YB","A","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2015-03-17_YB-Aq9",2015-03-17,2015-03-17,"YB","A","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-03-17_YB-Aq6",2015-03-17,2015-03-17,"YB","A","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","12%","~12% underwater"
+"2015-03-17_YB-Aq7",2015-03-17,2015-03-17,"YB","A","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2015-03-17_YB-Aq9",2015-03-17,2015-03-17,"YB","A","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-03-17_YB-Aq6",2015-03-17,2015-03-17,"YB","A","6","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Celeste Moen","Finished","Full","Full","12%","~12% underwater"
+"2015-03-17_YB-Aq7",2015-03-17,2015-03-17,"YB","A","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2015-03-17_YB-Aq9",2015-03-17,2015-03-17,"YB","A","9","Nc","Nucella_canaliculata","Type 10",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-03-17_YB-Aq6",2015-03-17,2015-03-17,"YB","A","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","12%","~12% underwater"
+"2015-03-17_YB-Aq7",2015-03-17,2015-03-17,"YB","A","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2015-03-17_YB-Aq9",2015-03-17,2015-03-17,"YB","A","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-03-17_YB-Aq6",2015-03-17,2015-03-17,"YB","A","6","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Celeste Moen","Finished","Full","Full","12%","~12% underwater"
+"2015-03-17_YB-Aq7",2015-03-17,2015-03-17,"YB","A","7","No","Nucella_ostrina","Type 9",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2015-03-17_YB-Aq9",2015-03-17,2015-03-17,"YB","A","9","No","Nucella_ostrina","Type 9",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-03-17_YB-Aq6",2015-03-17,2015-03-17,"YB","A","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","12%","~12% underwater"
+"2015-03-17_YB-Aq7",2015-03-17,2015-03-17,"YB","A","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2015-03-17_YB-Aq9",2015-03-17,2015-03-17,"YB","A","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-03-17_YB-Aq6",2015-03-17,2015-03-17,"YB","A","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","12%","~12% underwater"
+"2015-03-17_YB-Aq7",2015-03-17,2015-03-17,"YB","A","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2015-03-17_YB-Aq9",2015-03-17,2015-03-17,"YB","A","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-03-17_YB-Aq6",2015-03-17,2015-03-17,"YB","A","6","Pp","Pollicipes_polymerus","Type 11",68,0.0875,777.142857142857,NA,"Celeste Moen","Finished","Full","Full","12%","~12% underwater"
+"2015-03-17_YB-Aq7",2015-03-17,2015-03-17,"YB","A","7","Pp","Pollicipes_polymerus","Type 11",207,0.0875,2365.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2015-03-17_YB-Aq9",2015-03-17,2015-03-17,"YB","A","9","Pp","Pollicipes_polymerus","Type 11",182,0.0875,2080,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-03-17_YB-Aq6",2015-03-17,2015-03-17,"YB","A","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","12%","~12% underwater"
+"2015-03-17_YB-Aq7",2015-03-17,2015-03-17,"YB","A","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2015-03-17_YB-Aq9",2015-03-17,2015-03-17,"YB","A","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-03-17_YB-Aq6",2015-03-17,2015-03-17,"YB","A","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","12%","~12% underwater"
+"2015-03-17_YB-Aq7",2015-03-17,2015-03-17,"YB","A","7","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2015-03-17_YB-Aq9",2015-03-17,2015-03-17,"YB","A","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-03-17_YB-Aq6",2015-03-17,2015-03-17,"YB","A","6","ScD","Semibalanus_cariosus_(dead)","Type 6",2,0.0875,22.8571428571429,NA,"Celeste Moen","Finished","Full","Full","12%","~12% underwater"
+"2015-03-17_YB-Aq7",2015-03-17,2015-03-17,"YB","A","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2015-03-17_YB-Aq9",2015-03-17,2015-03-17,"YB","A","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-03-17_YB-ABq1",2015-03-17,2015-03-17,"YB","AB","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-03-17_YB-ABq2",2015-03-17,2015-03-17,"YB","AB","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","20%","Counts may be low due to glare from water cover"
+"2015-03-17_YB-ABq4",2015-03-17,2015-03-17,"YB","AB","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-03-17_YB-ABq1",2015-03-17,2015-03-17,"YB","AB","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-03-17_YB-ABq2",2015-03-17,2015-03-17,"YB","AB","2","Ae","Anemones","Type 14",20,0.0875,228.571428571429,NA,"Beatriz Vaca","Finished","Cropped","Full","20%","Counts may be low due to glare from water cover"
+"2015-03-17_YB-ABq4",2015-03-17,2015-03-17,"YB","AB","4","Ae","Anemones","Type 14",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-03-17_YB-ABq1",2015-03-17,2015-03-17,"YB","AB","1","Bg","Balanus_glandula","Type 1",293,0.0875,3348.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-03-17_YB-ABq2",2015-03-17,2015-03-17,"YB","AB","2","Bg","Balanus_glandula","Type 1",102,0.0875,1165.71428571429,NA,"Beatriz Vaca","Finished","Cropped","Full","20%","Counts may be low due to glare from water cover"
+"2015-03-17_YB-ABq4",2015-03-17,2015-03-17,"YB","AB","4","Bg","Balanus_glandula","Type 1",296,0.0875,3382.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-03-17_YB-ABq1",2015-03-17,2015-03-17,"YB","AB","1","BgD","Balanus_glandula_(dead)","Type 2",174,0.0875,1988.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-03-17_YB-ABq2",2015-03-17,2015-03-17,"YB","AB","2","BgD","Balanus_glandula_(dead)","Type 2",26,0.0875,297.142857142857,NA,"Beatriz Vaca","Finished","Cropped","Full","20%","Counts may be low due to glare from water cover"
+"2015-03-17_YB-ABq4",2015-03-17,2015-03-17,"YB","AB","4","BgD","Balanus_glandula_(dead)","Type 2",109,0.0875,1245.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-03-17_YB-ABq1",2015-03-17,2015-03-17,"YB","AB","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-03-17_YB-ABq2",2015-03-17,2015-03-17,"YB","AB","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","20%","Counts may be low due to glare from water cover"
+"2015-03-17_YB-ABq4",2015-03-17,2015-03-17,"YB","AB","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-03-17_YB-ABq1",2015-03-17,2015-03-17,"YB","AB","1","Cth","Chthamalus_dalli","Type 3",65,0.0875,742.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-03-17_YB-ABq2",2015-03-17,2015-03-17,"YB","AB","2","Cth","Chthamalus_dalli","Type 3",36,0.0875,411.428571428571,NA,"Beatriz Vaca","Finished","Cropped","Full","20%","Counts may be low due to glare from water cover"
+"2015-03-17_YB-ABq4",2015-03-17,2015-03-17,"YB","AB","4","Cth","Chthamalus_dalli","Type 3",225,0.0875,2571.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-03-17_YB-ABq1",2015-03-17,2015-03-17,"YB","AB","1","CthD","Chthamalus_dalli (dead)","Type 4",13,0.0875,148.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-03-17_YB-ABq2",2015-03-17,2015-03-17,"YB","AB","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","20%","Counts may be low due to glare from water cover"
+"2015-03-17_YB-ABq4",2015-03-17,2015-03-17,"YB","AB","4","CthD","Chthamalus_dalli (dead)","Type 4",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-03-17_YB-ABq1",2015-03-17,2015-03-17,"YB","AB","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-03-17_YB-ABq2",2015-03-17,2015-03-17,"YB","AB","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","20%","Counts may be low due to glare from water cover"
+"2015-03-17_YB-ABq4",2015-03-17,2015-03-17,"YB","AB","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-03-17_YB-ABq1",2015-03-17,2015-03-17,"YB","AB","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-03-17_YB-ABq2",2015-03-17,2015-03-17,"YB","AB","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","20%","Counts may be low due to glare from water cover"
+"2015-03-17_YB-ABq4",2015-03-17,2015-03-17,"YB","AB","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-03-17_YB-ABq1",2015-03-17,2015-03-17,"YB","AB","1","Lim","Limpets","Type 12",9,0.0875,102.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-03-17_YB-ABq2",2015-03-17,2015-03-17,"YB","AB","2","Lim","Limpets","Type 12",28,0.0875,320,NA,"Beatriz Vaca","Finished","Cropped","Full","20%","Counts may be low due to glare from water cover"
+"2015-03-17_YB-ABq4",2015-03-17,2015-03-17,"YB","AB","4","Lim","Limpets","Type 12",35,0.0875,400,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-03-17_YB-ABq1",2015-03-17,2015-03-17,"YB","AB","1","Ls","Littorina_sitkana","Type 13",22,0.0875,251.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-03-17_YB-ABq2",2015-03-17,2015-03-17,"YB","AB","2","Ls","Littorina_sitkana","Type 13",35,0.0875,400,NA,"Beatriz Vaca","Finished","Cropped","Full","20%","Counts may be low due to glare from water cover"
+"2015-03-17_YB-ABq4",2015-03-17,2015-03-17,"YB","AB","4","Ls","Littorina_sitkana","Type 13",78,0.0875,891.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-03-17_YB-ABq1",2015-03-17,2015-03-17,"YB","AB","1","Mc","Mytilus_californianus","Type 17",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-03-17_YB-ABq2",2015-03-17,2015-03-17,"YB","AB","2","Mc","Mytilus_californianus","Type 17",8,0.015625,512,"c","Beatriz Vaca","Finished","Cropped","Full","20%","Counts may be low due to glare from water cover"
+"2015-03-17_YB-ABq4",2015-03-17,2015-03-17,"YB","AB","4","Mc","Mytilus_californianus","Type 17",51,0.0875,582.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-03-17_YB-ABq1",2015-03-17,2015-03-17,"YB","AB","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-03-17_YB-ABq2",2015-03-17,2015-03-17,"YB","AB","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","20%","Counts may be low due to glare from water cover"
+"2015-03-17_YB-ABq4",2015-03-17,2015-03-17,"YB","AB","4","McD","Mytilus_californianus_(dead)","Type 18",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-03-17_YB-ABq1",2015-03-17,2015-03-17,"YB","AB","1","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-03-17_YB-ABq2",2015-03-17,2015-03-17,"YB","AB","2","Myt","Mytilus_spp","Type 7",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","20%","Counts may be low due to glare from water cover"
+"2015-03-17_YB-ABq4",2015-03-17,2015-03-17,"YB","AB","4","Myt","Mytilus_spp","Type 7",62,0.0875,708.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-03-17_YB-ABq1",2015-03-17,2015-03-17,"YB","AB","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-03-17_YB-ABq2",2015-03-17,2015-03-17,"YB","AB","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","20%","Counts may be low due to glare from water cover"
+"2015-03-17_YB-ABq4",2015-03-17,2015-03-17,"YB","AB","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-03-17_YB-ABq1",2015-03-17,2015-03-17,"YB","AB","1","Mt","Mytilus_trossulus","Type 15",592,0.0875,6765.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-03-17_YB-ABq2",2015-03-17,2015-03-17,"YB","AB","2","Mt","Mytilus_trossulus","Type 15",177,0.015625,11328,"c","Beatriz Vaca","Finished","Cropped","Full","20%","Counts may be low due to glare from water cover"
+"2015-03-17_YB-ABq4",2015-03-17,2015-03-17,"YB","AB","4","Mt","Mytilus_trossulus","Type 15",500,0.0875,5714.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-03-17_YB-ABq1",2015-03-17,2015-03-17,"YB","AB","1","MtD","Mytilus_trossulus_(dead)","Type 16",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-03-17_YB-ABq2",2015-03-17,2015-03-17,"YB","AB","2","MtD","Mytilus_trossulus_(dead)","Type 16",5,0.015625,320,"c","Beatriz Vaca","Finished","Cropped","Full","20%","Counts may be low due to glare from water cover"
+"2015-03-17_YB-ABq4",2015-03-17,2015-03-17,"YB","AB","4","MtD","Mytilus_trossulus_(dead)","Type 16",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-03-17_YB-ABq1",2015-03-17,2015-03-17,"YB","AB","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-03-17_YB-ABq2",2015-03-17,2015-03-17,"YB","AB","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","20%","Counts may be low due to glare from water cover"
+"2015-03-17_YB-ABq4",2015-03-17,2015-03-17,"YB","AB","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-03-17_YB-ABq1",2015-03-17,2015-03-17,"YB","AB","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-03-17_YB-ABq2",2015-03-17,2015-03-17,"YB","AB","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","20%","Counts may be low due to glare from water cover"
+"2015-03-17_YB-ABq4",2015-03-17,2015-03-17,"YB","AB","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-03-17_YB-ABq1",2015-03-17,2015-03-17,"YB","AB","1","Negg","Nucella_eggs","Type 26",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-03-17_YB-ABq2",2015-03-17,2015-03-17,"YB","AB","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","20%","Counts may be low due to glare from water cover"
+"2015-03-17_YB-ABq4",2015-03-17,2015-03-17,"YB","AB","4","Negg","Nucella_eggs","Type 26",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-03-17_YB-ABq1",2015-03-17,2015-03-17,"YB","AB","1","No","Nucella_ostrina","Type 9",17,0.0875,194.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-03-17_YB-ABq2",2015-03-17,2015-03-17,"YB","AB","2","No","Nucella_ostrina","Type 9",11,0.0875,125.714285714286,NA,"Beatriz Vaca","Finished","Cropped","Full","20%","Counts may be low due to glare from water cover"
+"2015-03-17_YB-ABq4",2015-03-17,2015-03-17,"YB","AB","4","No","Nucella_ostrina","Type 9",9,0.0875,102.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-03-17_YB-ABq1",2015-03-17,2015-03-17,"YB","AB","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-03-17_YB-ABq2",2015-03-17,2015-03-17,"YB","AB","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","20%","Counts may be low due to glare from water cover"
+"2015-03-17_YB-ABq4",2015-03-17,2015-03-17,"YB","AB","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-03-17_YB-ABq1",2015-03-17,2015-03-17,"YB","AB","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-03-17_YB-ABq2",2015-03-17,2015-03-17,"YB","AB","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","20%","Counts may be low due to glare from water cover"
+"2015-03-17_YB-ABq4",2015-03-17,2015-03-17,"YB","AB","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-03-17_YB-ABq1",2015-03-17,2015-03-17,"YB","AB","1","Pp","Pollicipes_polymerus","Type 11",669,0.0875,7645.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-03-17_YB-ABq2",2015-03-17,2015-03-17,"YB","AB","2","Pp","Pollicipes_polymerus","Type 11",513,0.0875,5862.85714285714,NA,"Beatriz Vaca","Finished","Cropped","Full","20%","Counts may be low due to glare from water cover"
+"2015-03-17_YB-ABq4",2015-03-17,2015-03-17,"YB","AB","4","Pp","Pollicipes_polymerus","Type 11",349,0.0875,3988.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-03-17_YB-ABq1",2015-03-17,2015-03-17,"YB","AB","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-03-17_YB-ABq2",2015-03-17,2015-03-17,"YB","AB","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","20%","Counts may be low due to glare from water cover"
+"2015-03-17_YB-ABq4",2015-03-17,2015-03-17,"YB","AB","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-03-17_YB-ABq1",2015-03-17,2015-03-17,"YB","AB","1","Sc","Semibalanus_cariosus","Type 5",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-03-17_YB-ABq2",2015-03-17,2015-03-17,"YB","AB","2","Sc","Semibalanus_cariosus","Type 5",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Cropped","Full","20%","Counts may be low due to glare from water cover"
+"2015-03-17_YB-ABq4",2015-03-17,2015-03-17,"YB","AB","4","Sc","Semibalanus_cariosus","Type 5",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-03-17_YB-ABq1",2015-03-17,2015-03-17,"YB","AB","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-03-17_YB-ABq2",2015-03-17,2015-03-17,"YB","AB","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","20%","Counts may be low due to glare from water cover"
+"2015-03-17_YB-ABq4",2015-03-17,2015-03-17,"YB","AB","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-03-17_YB-ACq4",2015-03-17,2015-03-17,"YB","AC","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-03-17_YB-ACq7",2015-03-17,2015-03-17,"YB","AC","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2015-03-17_YB-ACq8",2015-03-17,2015-03-17,"YB","AC","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","12%",""
+"2015-03-17_YB-ACq4",2015-03-17,2015-03-17,"YB","AC","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-03-17_YB-ACq7",2015-03-17,2015-03-17,"YB","AC","7","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2015-03-17_YB-ACq8",2015-03-17,2015-03-17,"YB","AC","8","Ae","Anemones","Type 14",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","12%",""
+"2015-03-17_YB-ACq4",2015-03-17,2015-03-17,"YB","AC","4","Bg","Balanus_glandula","Type 1",376,0.015625,24064,"c","Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-03-17_YB-ACq7",2015-03-17,2015-03-17,"YB","AC","7","Bg","Balanus_glandula","Type 1",222,0.015625,14208,"c","Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2015-03-17_YB-ACq8",2015-03-17,2015-03-17,"YB","AC","8","Bg","Balanus_glandula","Type 1",196,0.015625,12544,"c","Beatriz Vaca","Finished","Full","Cropped","12%",""
+"2015-03-17_YB-ACq4",2015-03-17,2015-03-17,"YB","AC","4","BgD","Balanus_glandula_(dead)","Type 2",77,0.015625,4928,"c","Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-03-17_YB-ACq7",2015-03-17,2015-03-17,"YB","AC","7","BgD","Balanus_glandula_(dead)","Type 2",57,0.015625,3648,"c","Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2015-03-17_YB-ACq8",2015-03-17,2015-03-17,"YB","AC","8","BgD","Balanus_glandula_(dead)","Type 2",86,0.015625,5504,"c","Beatriz Vaca","Finished","Full","Cropped","12%",""
+"2015-03-17_YB-ACq4",2015-03-17,2015-03-17,"YB","AC","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-03-17_YB-ACq7",2015-03-17,2015-03-17,"YB","AC","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2015-03-17_YB-ACq8",2015-03-17,2015-03-17,"YB","AC","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","12%",""
+"2015-03-17_YB-ACq4",2015-03-17,2015-03-17,"YB","AC","4","Cth","Chthamalus_dalli","Type 3",50,0.015625,3200,"c","Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-03-17_YB-ACq7",2015-03-17,2015-03-17,"YB","AC","7","Cth","Chthamalus_dalli","Type 3",13,0.015625,832,"c","Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2015-03-17_YB-ACq8",2015-03-17,2015-03-17,"YB","AC","8","Cth","Chthamalus_dalli","Type 3",6,0.015625,384,"c","Beatriz Vaca","Finished","Full","Cropped","12%",""
+"2015-03-17_YB-ACq4",2015-03-17,2015-03-17,"YB","AC","4","CthD","Chthamalus_dalli (dead)","Type 4",10,0.015625,640,"c","Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-03-17_YB-ACq7",2015-03-17,2015-03-17,"YB","AC","7","CthD","Chthamalus_dalli (dead)","Type 4",1,0.015625,64,"c","Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2015-03-17_YB-ACq8",2015-03-17,2015-03-17,"YB","AC","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","12%",""
+"2015-03-17_YB-ACq4",2015-03-17,2015-03-17,"YB","AC","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-03-17_YB-ACq7",2015-03-17,2015-03-17,"YB","AC","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2015-03-17_YB-ACq8",2015-03-17,2015-03-17,"YB","AC","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","12%",""
+"2015-03-17_YB-ACq4",2015-03-17,2015-03-17,"YB","AC","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-03-17_YB-ACq7",2015-03-17,2015-03-17,"YB","AC","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2015-03-17_YB-ACq8",2015-03-17,2015-03-17,"YB","AC","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","12%",""
+"2015-03-17_YB-ACq4",2015-03-17,2015-03-17,"YB","AC","4","Lim","Limpets","Type 12",22,0.0875,251.428571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-03-17_YB-ACq7",2015-03-17,2015-03-17,"YB","AC","7","Lim","Limpets","Type 12",33,0.0875,377.142857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2015-03-17_YB-ACq8",2015-03-17,2015-03-17,"YB","AC","8","Lim","Limpets","Type 12",23,0.0875,262.857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","12%",""
+"2015-03-17_YB-ACq4",2015-03-17,2015-03-17,"YB","AC","4","Ls","Littorina_sitkana","Type 13",220,0.0875,2514.28571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-03-17_YB-ACq7",2015-03-17,2015-03-17,"YB","AC","7","Ls","Littorina_sitkana","Type 13",227,0.0875,2594.28571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2015-03-17_YB-ACq8",2015-03-17,2015-03-17,"YB","AC","8","Ls","Littorina_sitkana","Type 13",138,0.0875,1577.14285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","12%",""
+"2015-03-17_YB-ACq4",2015-03-17,2015-03-17,"YB","AC","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-03-17_YB-ACq7",2015-03-17,2015-03-17,"YB","AC","7","Mc","Mytilus_californianus","Type 17",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2015-03-17_YB-ACq8",2015-03-17,2015-03-17,"YB","AC","8","Mc","Mytilus_californianus","Type 17",14,0.0875,160,NA,"Beatriz Vaca","Finished","Full","Cropped","12%",""
+"2015-03-17_YB-ACq4",2015-03-17,2015-03-17,"YB","AC","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-03-17_YB-ACq7",2015-03-17,2015-03-17,"YB","AC","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2015-03-17_YB-ACq8",2015-03-17,2015-03-17,"YB","AC","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","12%",""
+"2015-03-17_YB-ACq4",2015-03-17,2015-03-17,"YB","AC","4","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-03-17_YB-ACq7",2015-03-17,2015-03-17,"YB","AC","7","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2015-03-17_YB-ACq8",2015-03-17,2015-03-17,"YB","AC","8","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","12%",""
+"2015-03-17_YB-ACq4",2015-03-17,2015-03-17,"YB","AC","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-03-17_YB-ACq7",2015-03-17,2015-03-17,"YB","AC","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2015-03-17_YB-ACq8",2015-03-17,2015-03-17,"YB","AC","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","12%",""
+"2015-03-17_YB-ACq4",2015-03-17,2015-03-17,"YB","AC","4","Mt","Mytilus_trossulus","Type 15",284,0.0875,3245.71428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-03-17_YB-ACq7",2015-03-17,2015-03-17,"YB","AC","7","Mt","Mytilus_trossulus","Type 15",239,0.0875,2731.42857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2015-03-17_YB-ACq8",2015-03-17,2015-03-17,"YB","AC","8","Mt","Mytilus_trossulus","Type 15",370,0.0875,4228.57142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","12%",""
+"2015-03-17_YB-ACq4",2015-03-17,2015-03-17,"YB","AC","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-03-17_YB-ACq7",2015-03-17,2015-03-17,"YB","AC","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2015-03-17_YB-ACq8",2015-03-17,2015-03-17,"YB","AC","8","MtD","Mytilus_trossulus_(dead)","Type 16",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","12%",""
+"2015-03-17_YB-ACq4",2015-03-17,2015-03-17,"YB","AC","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-03-17_YB-ACq7",2015-03-17,2015-03-17,"YB","AC","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2015-03-17_YB-ACq8",2015-03-17,2015-03-17,"YB","AC","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","12%",""
+"2015-03-17_YB-ACq4",2015-03-17,2015-03-17,"YB","AC","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-03-17_YB-ACq7",2015-03-17,2015-03-17,"YB","AC","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2015-03-17_YB-ACq8",2015-03-17,2015-03-17,"YB","AC","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","12%",""
+"2015-03-17_YB-ACq4",2015-03-17,2015-03-17,"YB","AC","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-03-17_YB-ACq7",2015-03-17,2015-03-17,"YB","AC","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2015-03-17_YB-ACq8",2015-03-17,2015-03-17,"YB","AC","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","12%",""
+"2015-03-17_YB-ACq4",2015-03-17,2015-03-17,"YB","AC","4","No","Nucella_ostrina","Type 9",11,0.0875,125.714285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-03-17_YB-ACq7",2015-03-17,2015-03-17,"YB","AC","7","No","Nucella_ostrina","Type 9",15,0.0875,171.428571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2015-03-17_YB-ACq8",2015-03-17,2015-03-17,"YB","AC","8","No","Nucella_ostrina","Type 9",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","12%",""
+"2015-03-17_YB-ACq4",2015-03-17,2015-03-17,"YB","AC","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-03-17_YB-ACq7",2015-03-17,2015-03-17,"YB","AC","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2015-03-17_YB-ACq8",2015-03-17,2015-03-17,"YB","AC","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","12%",""
+"2015-03-17_YB-ACq4",2015-03-17,2015-03-17,"YB","AC","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-03-17_YB-ACq7",2015-03-17,2015-03-17,"YB","AC","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2015-03-17_YB-ACq8",2015-03-17,2015-03-17,"YB","AC","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","12%",""
+"2015-03-17_YB-ACq4",2015-03-17,2015-03-17,"YB","AC","4","Pp","Pollicipes_polymerus","Type 11",13,0.0875,148.571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-03-17_YB-ACq7",2015-03-17,2015-03-17,"YB","AC","7","Pp","Pollicipes_polymerus","Type 11",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2015-03-17_YB-ACq8",2015-03-17,2015-03-17,"YB","AC","8","Pp","Pollicipes_polymerus","Type 11",93,0.0875,1062.85714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","12%",""
+"2015-03-17_YB-ACq4",2015-03-17,2015-03-17,"YB","AC","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-03-17_YB-ACq7",2015-03-17,2015-03-17,"YB","AC","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2015-03-17_YB-ACq8",2015-03-17,2015-03-17,"YB","AC","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","12%",""
+"2015-03-17_YB-ACq4",2015-03-17,2015-03-17,"YB","AC","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-03-17_YB-ACq7",2015-03-17,2015-03-17,"YB","AC","7","Sc","Semibalanus_cariosus","Type 5",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2015-03-17_YB-ACq8",2015-03-17,2015-03-17,"YB","AC","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","12%",""
+"2015-03-17_YB-ACq4",2015-03-17,2015-03-17,"YB","AC","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-03-17_YB-ACq7",2015-03-17,2015-03-17,"YB","AC","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2015-03-17_YB-ACq8",2015-03-17,2015-03-17,"YB","AC","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","12%",""
+"2015-03-17_YB-ADq1",2015-03-17,2015-03-17,"YB","AD","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-03-17_YB-ADq5",2015-03-17,2015-03-17,"YB","AD","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-03-17_YB-ADq8",2015-03-17,2015-03-17,"YB","AD","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%",""
+"2015-03-17_YB-ADq1",2015-03-17,2015-03-17,"YB","AD","1","Ae","Anemones","Type 14",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-03-17_YB-ADq5",2015-03-17,2015-03-17,"YB","AD","5","Ae","Anemones","Type 14",22,0.0875,251.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-03-17_YB-ADq8",2015-03-17,2015-03-17,"YB","AD","8","Ae","Anemones","Type 14",40,0.0875,457.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","55%",""
+"2015-03-17_YB-ADq1",2015-03-17,2015-03-17,"YB","AD","1","Bg","Balanus_glandula","Type 1",115,0.0875,1314.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-03-17_YB-ADq5",2015-03-17,2015-03-17,"YB","AD","5","Bg","Balanus_glandula","Type 1",150,0.0875,1714.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-03-17_YB-ADq8",2015-03-17,2015-03-17,"YB","AD","8","Bg","Balanus_glandula","Type 1",171,0.0875,1954.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","55%",""
+"2015-03-17_YB-ADq1",2015-03-17,2015-03-17,"YB","AD","1","BgD","Balanus_glandula_(dead)","Type 2",43,0.0875,491.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-03-17_YB-ADq5",2015-03-17,2015-03-17,"YB","AD","5","BgD","Balanus_glandula_(dead)","Type 2",31,0.0875,354.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-03-17_YB-ADq8",2015-03-17,2015-03-17,"YB","AD","8","BgD","Balanus_glandula_(dead)","Type 2",84,0.0875,960,NA,"Beatriz Vaca","Finished","Full","Full","55%",""
+"2015-03-17_YB-ADq1",2015-03-17,2015-03-17,"YB","AD","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-03-17_YB-ADq5",2015-03-17,2015-03-17,"YB","AD","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-03-17_YB-ADq8",2015-03-17,2015-03-17,"YB","AD","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%",""
+"2015-03-17_YB-ADq1",2015-03-17,2015-03-17,"YB","AD","1","Cth","Chthamalus_dalli","Type 3",113,0.0875,1291.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-03-17_YB-ADq5",2015-03-17,2015-03-17,"YB","AD","5","Cth","Chthamalus_dalli","Type 3",30,0.0875,342.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-03-17_YB-ADq8",2015-03-17,2015-03-17,"YB","AD","8","Cth","Chthamalus_dalli","Type 3",95,0.0875,1085.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","55%",""
+"2015-03-17_YB-ADq1",2015-03-17,2015-03-17,"YB","AD","1","CthD","Chthamalus_dalli (dead)","Type 4",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-03-17_YB-ADq5",2015-03-17,2015-03-17,"YB","AD","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-03-17_YB-ADq8",2015-03-17,2015-03-17,"YB","AD","8","CthD","Chthamalus_dalli (dead)","Type 4",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","55%",""
+"2015-03-17_YB-ADq1",2015-03-17,2015-03-17,"YB","AD","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-03-17_YB-ADq5",2015-03-17,2015-03-17,"YB","AD","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-03-17_YB-ADq8",2015-03-17,2015-03-17,"YB","AD","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%",""
+"2015-03-17_YB-ADq1",2015-03-17,2015-03-17,"YB","AD","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-03-17_YB-ADq5",2015-03-17,2015-03-17,"YB","AD","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-03-17_YB-ADq8",2015-03-17,2015-03-17,"YB","AD","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%",""
+"2015-03-17_YB-ADq1",2015-03-17,2015-03-17,"YB","AD","1","Lim","Limpets","Type 12",32,0.0875,365.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-03-17_YB-ADq5",2015-03-17,2015-03-17,"YB","AD","5","Lim","Limpets","Type 12",15,0.0875,171.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-03-17_YB-ADq8",2015-03-17,2015-03-17,"YB","AD","8","Lim","Limpets","Type 12",38,0.0875,434.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","55%",""
+"2015-03-17_YB-ADq1",2015-03-17,2015-03-17,"YB","AD","1","Ls","Littorina_sitkana","Type 13",24,0.0875,274.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-03-17_YB-ADq5",2015-03-17,2015-03-17,"YB","AD","5","Ls","Littorina_sitkana","Type 13",39,0.0875,445.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-03-17_YB-ADq8",2015-03-17,2015-03-17,"YB","AD","8","Ls","Littorina_sitkana","Type 13",28,0.0875,320,NA,"Beatriz Vaca","Finished","Full","Full","55%",""
+"2015-03-17_YB-ADq1",2015-03-17,2015-03-17,"YB","AD","1","Mc","Mytilus_californianus","Type 17",19,0.0875,217.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-03-17_YB-ADq5",2015-03-17,2015-03-17,"YB","AD","5","Mc","Mytilus_californianus","Type 17",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-03-17_YB-ADq8",2015-03-17,2015-03-17,"YB","AD","8","Mc","Mytilus_californianus","Type 17",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","55%",""
+"2015-03-17_YB-ADq1",2015-03-17,2015-03-17,"YB","AD","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-03-17_YB-ADq5",2015-03-17,2015-03-17,"YB","AD","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-03-17_YB-ADq8",2015-03-17,2015-03-17,"YB","AD","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%",""
+"2015-03-17_YB-ADq1",2015-03-17,2015-03-17,"YB","AD","1","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-03-17_YB-ADq5",2015-03-17,2015-03-17,"YB","AD","5","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-03-17_YB-ADq8",2015-03-17,2015-03-17,"YB","AD","8","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%",""
+"2015-03-17_YB-ADq1",2015-03-17,2015-03-17,"YB","AD","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-03-17_YB-ADq5",2015-03-17,2015-03-17,"YB","AD","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-03-17_YB-ADq8",2015-03-17,2015-03-17,"YB","AD","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%",""
+"2015-03-17_YB-ADq1",2015-03-17,2015-03-17,"YB","AD","1","Mt","Mytilus_trossulus","Type 15",352,0.0875,4022.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-03-17_YB-ADq5",2015-03-17,2015-03-17,"YB","AD","5","Mt","Mytilus_trossulus","Type 15",447,0.0875,5108.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-03-17_YB-ADq8",2015-03-17,2015-03-17,"YB","AD","8","Mt","Mytilus_trossulus","Type 15",324,0.0875,3702.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","55%",""
+"2015-03-17_YB-ADq1",2015-03-17,2015-03-17,"YB","AD","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-03-17_YB-ADq5",2015-03-17,2015-03-17,"YB","AD","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-03-17_YB-ADq8",2015-03-17,2015-03-17,"YB","AD","8","MtD","Mytilus_trossulus_(dead)","Type 16",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","55%",""
+"2015-03-17_YB-ADq1",2015-03-17,2015-03-17,"YB","AD","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-03-17_YB-ADq5",2015-03-17,2015-03-17,"YB","AD","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-03-17_YB-ADq8",2015-03-17,2015-03-17,"YB","AD","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%",""
+"2015-03-17_YB-ADq1",2015-03-17,2015-03-17,"YB","AD","1","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-03-17_YB-ADq5",2015-03-17,2015-03-17,"YB","AD","5","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-03-17_YB-ADq8",2015-03-17,2015-03-17,"YB","AD","8","Nc","Nucella_canaliculata","Type 10",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","55%",""
+"2015-03-17_YB-ADq1",2015-03-17,2015-03-17,"YB","AD","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-03-17_YB-ADq5",2015-03-17,2015-03-17,"YB","AD","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-03-17_YB-ADq8",2015-03-17,2015-03-17,"YB","AD","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%",""
+"2015-03-17_YB-ADq1",2015-03-17,2015-03-17,"YB","AD","1","No","Nucella_ostrina","Type 9",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-03-17_YB-ADq5",2015-03-17,2015-03-17,"YB","AD","5","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-03-17_YB-ADq8",2015-03-17,2015-03-17,"YB","AD","8","No","Nucella_ostrina","Type 9",12,0.0875,137.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","55%",""
+"2015-03-17_YB-ADq1",2015-03-17,2015-03-17,"YB","AD","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-03-17_YB-ADq5",2015-03-17,2015-03-17,"YB","AD","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-03-17_YB-ADq8",2015-03-17,2015-03-17,"YB","AD","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%",""
+"2015-03-17_YB-ADq1",2015-03-17,2015-03-17,"YB","AD","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-03-17_YB-ADq5",2015-03-17,2015-03-17,"YB","AD","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-03-17_YB-ADq8",2015-03-17,2015-03-17,"YB","AD","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%",""
+"2015-03-17_YB-ADq1",2015-03-17,2015-03-17,"YB","AD","1","Pp","Pollicipes_polymerus","Type 11",166,0.0875,1897.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-03-17_YB-ADq5",2015-03-17,2015-03-17,"YB","AD","5","Pp","Pollicipes_polymerus","Type 11",379,0.0875,4331.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-03-17_YB-ADq8",2015-03-17,2015-03-17,"YB","AD","8","Pp","Pollicipes_polymerus","Type 11",54,0.0875,617.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","55%",""
+"2015-03-17_YB-ADq1",2015-03-17,2015-03-17,"YB","AD","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-03-17_YB-ADq5",2015-03-17,2015-03-17,"YB","AD","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-03-17_YB-ADq8",2015-03-17,2015-03-17,"YB","AD","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%",""
+"2015-03-17_YB-ADq1",2015-03-17,2015-03-17,"YB","AD","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-03-17_YB-ADq5",2015-03-17,2015-03-17,"YB","AD","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-03-17_YB-ADq8",2015-03-17,2015-03-17,"YB","AD","8","Sc","Semibalanus_cariosus","Type 5",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","55%",""
+"2015-03-17_YB-ADq1",2015-03-17,2015-03-17,"YB","AD","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-03-17_YB-ADq5",2015-03-17,2015-03-17,"YB","AD","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-03-17_YB-ADq8",2015-03-17,2015-03-17,"YB","AD","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%",""
+"2015-03-17_YB-AEq1",2015-03-17,2015-03-17,"YB","AE","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","25%",""
+"2015-03-17_YB-AEq4",2015-03-17,2015-03-17,"YB","AE","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-03-17_YB-AEq8",2015-03-17,2015-03-17,"YB","AE","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","15%",""
+"2015-03-17_YB-AEq1",2015-03-17,2015-03-17,"YB","AE","1","Ae","Anemones","Type 14",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Cropped","Full","25%",""
+"2015-03-17_YB-AEq4",2015-03-17,2015-03-17,"YB","AE","4","Ae","Anemones","Type 14",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-03-17_YB-AEq8",2015-03-17,2015-03-17,"YB","AE","8","Ae","Anemones","Type 14",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Cropped","Full","15%",""
+"2015-03-17_YB-AEq1",2015-03-17,2015-03-17,"YB","AE","1","Bg","Balanus_glandula","Type 1",285,0.0875,3257.14285714286,NA,"Beatriz Vaca","Finished","Cropped","Full","25%",""
+"2015-03-17_YB-AEq4",2015-03-17,2015-03-17,"YB","AE","4","Bg","Balanus_glandula","Type 1",150,0.015625,9600,"c","Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-03-17_YB-AEq8",2015-03-17,2015-03-17,"YB","AE","8","Bg","Balanus_glandula","Type 1",529,0.0875,6045.71428571429,NA,"Beatriz Vaca","Finished","Cropped","Full","15%",""
+"2015-03-17_YB-AEq1",2015-03-17,2015-03-17,"YB","AE","1","BgD","Balanus_glandula_(dead)","Type 2",82,0.0875,937.142857142857,NA,"Beatriz Vaca","Finished","Cropped","Full","25%",""
+"2015-03-17_YB-AEq4",2015-03-17,2015-03-17,"YB","AE","4","BgD","Balanus_glandula_(dead)","Type 2",58,0.015625,3712,"c","Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-03-17_YB-AEq8",2015-03-17,2015-03-17,"YB","AE","8","BgD","Balanus_glandula_(dead)","Type 2",105,0.0875,1200,NA,"Beatriz Vaca","Finished","Cropped","Full","15%",""
+"2015-03-17_YB-AEq1",2015-03-17,2015-03-17,"YB","AE","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","25%",""
+"2015-03-17_YB-AEq4",2015-03-17,2015-03-17,"YB","AE","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-03-17_YB-AEq8",2015-03-17,2015-03-17,"YB","AE","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","15%",""
+"2015-03-17_YB-AEq1",2015-03-17,2015-03-17,"YB","AE","1","Cth","Chthamalus_dalli","Type 3",204,0.0875,2331.42857142857,NA,"Beatriz Vaca","Finished","Cropped","Full","25%",""
+"2015-03-17_YB-AEq4",2015-03-17,2015-03-17,"YB","AE","4","Cth","Chthamalus_dalli","Type 3",56,0.015625,3584,"c","Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-03-17_YB-AEq8",2015-03-17,2015-03-17,"YB","AE","8","Cth","Chthamalus_dalli","Type 3",85,0.0875,971.428571428571,NA,"Beatriz Vaca","Finished","Cropped","Full","15%",""
+"2015-03-17_YB-AEq1",2015-03-17,2015-03-17,"YB","AE","1","CthD","Chthamalus_dalli (dead)","Type 4",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Cropped","Full","25%",""
+"2015-03-17_YB-AEq4",2015-03-17,2015-03-17,"YB","AE","4","CthD","Chthamalus_dalli (dead)","Type 4",4,0.015625,256,"c","Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-03-17_YB-AEq8",2015-03-17,2015-03-17,"YB","AE","8","CthD","Chthamalus_dalli (dead)","Type 4",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Cropped","Full","15%",""
+"2015-03-17_YB-AEq1",2015-03-17,2015-03-17,"YB","AE","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","25%",""
+"2015-03-17_YB-AEq4",2015-03-17,2015-03-17,"YB","AE","4","Emp","Emplectonema worm","Type 23",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-03-17_YB-AEq8",2015-03-17,2015-03-17,"YB","AE","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","15%",""
+"2015-03-17_YB-AEq1",2015-03-17,2015-03-17,"YB","AE","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","25%",""
+"2015-03-17_YB-AEq4",2015-03-17,2015-03-17,"YB","AE","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-03-17_YB-AEq8",2015-03-17,2015-03-17,"YB","AE","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","15%",""
+"2015-03-17_YB-AEq1",2015-03-17,2015-03-17,"YB","AE","1","Lim","Limpets","Type 12",21,0.0875,240,NA,"Beatriz Vaca","Finished","Cropped","Full","25%",""
+"2015-03-17_YB-AEq4",2015-03-17,2015-03-17,"YB","AE","4","Lim","Limpets","Type 12",94,0.0875,1074.28571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-03-17_YB-AEq8",2015-03-17,2015-03-17,"YB","AE","8","Lim","Limpets","Type 12",42,0.0875,480,NA,"Beatriz Vaca","Finished","Cropped","Full","15%",""
+"2015-03-17_YB-AEq1",2015-03-17,2015-03-17,"YB","AE","1","Ls","Littorina_sitkana","Type 13",53,0.0875,605.714285714286,NA,"Beatriz Vaca","Finished","Cropped","Full","25%",""
+"2015-03-17_YB-AEq4",2015-03-17,2015-03-17,"YB","AE","4","Ls","Littorina_sitkana","Type 13",106,0.0875,1211.42857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-03-17_YB-AEq8",2015-03-17,2015-03-17,"YB","AE","8","Ls","Littorina_sitkana","Type 13",50,0.0875,571.428571428571,NA,"Beatriz Vaca","Finished","Cropped","Full","15%",""
+"2015-03-17_YB-AEq1",2015-03-17,2015-03-17,"YB","AE","1","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","25%",""
+"2015-03-17_YB-AEq4",2015-03-17,2015-03-17,"YB","AE","4","Mc","Mytilus_californianus","Type 17",27,0.0875,308.571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-03-17_YB-AEq8",2015-03-17,2015-03-17,"YB","AE","8","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","15%",""
+"2015-03-17_YB-AEq1",2015-03-17,2015-03-17,"YB","AE","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","25%",""
+"2015-03-17_YB-AEq4",2015-03-17,2015-03-17,"YB","AE","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-03-17_YB-AEq8",2015-03-17,2015-03-17,"YB","AE","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","15%",""
+"2015-03-17_YB-AEq1",2015-03-17,2015-03-17,"YB","AE","1","Myt","Mytilus_spp","Type 7",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","25%",""
+"2015-03-17_YB-AEq4",2015-03-17,2015-03-17,"YB","AE","4","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-03-17_YB-AEq8",2015-03-17,2015-03-17,"YB","AE","8","Myt","Mytilus_spp","Type 7",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","15%",""
+"2015-03-17_YB-AEq1",2015-03-17,2015-03-17,"YB","AE","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","25%",""
+"2015-03-17_YB-AEq4",2015-03-17,2015-03-17,"YB","AE","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-03-17_YB-AEq8",2015-03-17,2015-03-17,"YB","AE","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","15%",""
+"2015-03-17_YB-AEq1",2015-03-17,2015-03-17,"YB","AE","1","Mt","Mytilus_trossulus","Type 15",192,0.015625,12288,"c","Beatriz Vaca","Finished","Cropped","Full","25%",""
+"2015-03-17_YB-AEq4",2015-03-17,2015-03-17,"YB","AE","4","Mt","Mytilus_trossulus","Type 15",337,0.0875,3851.42857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-03-17_YB-AEq8",2015-03-17,2015-03-17,"YB","AE","8","Mt","Mytilus_trossulus","Type 15",151,0.015625,9664,"c","Beatriz Vaca","Finished","Cropped","Full","15%",""
+"2015-03-17_YB-AEq1",2015-03-17,2015-03-17,"YB","AE","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","25%",""
+"2015-03-17_YB-AEq4",2015-03-17,2015-03-17,"YB","AE","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-03-17_YB-AEq8",2015-03-17,2015-03-17,"YB","AE","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Full","15%",""
+"2015-03-17_YB-AEq1",2015-03-17,2015-03-17,"YB","AE","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","25%",""
+"2015-03-17_YB-AEq4",2015-03-17,2015-03-17,"YB","AE","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-03-17_YB-AEq8",2015-03-17,2015-03-17,"YB","AE","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","15%",""
+"2015-03-17_YB-AEq1",2015-03-17,2015-03-17,"YB","AE","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","25%",""
+"2015-03-17_YB-AEq4",2015-03-17,2015-03-17,"YB","AE","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-03-17_YB-AEq8",2015-03-17,2015-03-17,"YB","AE","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","15%",""
+"2015-03-17_YB-AEq1",2015-03-17,2015-03-17,"YB","AE","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","25%",""
+"2015-03-17_YB-AEq4",2015-03-17,2015-03-17,"YB","AE","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-03-17_YB-AEq8",2015-03-17,2015-03-17,"YB","AE","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","15%",""
+"2015-03-17_YB-AEq1",2015-03-17,2015-03-17,"YB","AE","1","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Cropped","Full","25%",""
+"2015-03-17_YB-AEq4",2015-03-17,2015-03-17,"YB","AE","4","No","Nucella_ostrina","Type 9",10,0.0875,114.285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-03-17_YB-AEq8",2015-03-17,2015-03-17,"YB","AE","8","No","Nucella_ostrina","Type 9",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Cropped","Full","15%",""
+"2015-03-17_YB-AEq1",2015-03-17,2015-03-17,"YB","AE","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","25%",""
+"2015-03-17_YB-AEq4",2015-03-17,2015-03-17,"YB","AE","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-03-17_YB-AEq8",2015-03-17,2015-03-17,"YB","AE","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","15%",""
+"2015-03-17_YB-AEq1",2015-03-17,2015-03-17,"YB","AE","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","25%",""
+"2015-03-17_YB-AEq4",2015-03-17,2015-03-17,"YB","AE","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-03-17_YB-AEq8",2015-03-17,2015-03-17,"YB","AE","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","15%",""
+"2015-03-17_YB-AEq1",2015-03-17,2015-03-17,"YB","AE","1","Pp","Pollicipes_polymerus","Type 11",93,0.0875,1062.85714285714,NA,"Beatriz Vaca","Finished","Cropped","Full","25%",""
+"2015-03-17_YB-AEq4",2015-03-17,2015-03-17,"YB","AE","4","Pp","Pollicipes_polymerus","Type 11",41,0.0875,468.571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-03-17_YB-AEq8",2015-03-17,2015-03-17,"YB","AE","8","Pp","Pollicipes_polymerus","Type 11",34,0.0875,388.571428571429,NA,"Beatriz Vaca","Finished","Cropped","Full","15%",""
+"2015-03-17_YB-AEq1",2015-03-17,2015-03-17,"YB","AE","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","25%",""
+"2015-03-17_YB-AEq4",2015-03-17,2015-03-17,"YB","AE","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-03-17_YB-AEq8",2015-03-17,2015-03-17,"YB","AE","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","15%",""
+"2015-03-17_YB-AEq1",2015-03-17,2015-03-17,"YB","AE","1","Sc","Semibalanus_cariosus","Type 5",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Cropped","Full","25%",""
+"2015-03-17_YB-AEq4",2015-03-17,2015-03-17,"YB","AE","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-03-17_YB-AEq8",2015-03-17,2015-03-17,"YB","AE","8","Sc","Semibalanus_cariosus","Type 5",11,0.0875,125.714285714286,NA,"Beatriz Vaca","Finished","Cropped","Full","15%",""
+"2015-03-17_YB-AEq1",2015-03-17,2015-03-17,"YB","AE","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","25%",""
+"2015-03-17_YB-AEq4",2015-03-17,2015-03-17,"YB","AE","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-03-17_YB-AEq8",2015-03-17,2015-03-17,"YB","AE","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Full","15%",""
+"2015-03-17_YB-AFq5",2015-03-17,2015-03-17,"YB","AF","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","4%",""
+"2015-03-17_YB-AFq8",2015-03-17,2015-03-17,"YB","AF","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2015-03-17_YB-AFq9",2015-03-17,2015-03-17,"YB","AF","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","1%","Counts likely low due to water patches"
+"2015-03-17_YB-AFq5",2015-03-17,2015-03-17,"YB","AF","5","Ae","Anemones","Type 14",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Cropped","Cropped","4%",""
+"2015-03-17_YB-AFq8",2015-03-17,2015-03-17,"YB","AF","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2015-03-17_YB-AFq9",2015-03-17,2015-03-17,"YB","AF","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","1%","Counts likely low due to water patches"
+"2015-03-17_YB-AFq5",2015-03-17,2015-03-17,"YB","AF","5","Bg","Balanus_glandula","Type 1",148,0.015625,9472,"c","Beatriz Vaca","Finished","Cropped","Cropped","4%",""
+"2015-03-17_YB-AFq8",2015-03-17,2015-03-17,"YB","AF","8","Bg","Balanus_glandula","Type 1",746,0.0875,8525.71428571429,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2015-03-17_YB-AFq9",2015-03-17,2015-03-17,"YB","AF","9","Bg","Balanus_glandula","Type 1",1013,0.0875,11577.1428571429,NA,"Stephanie Merhoff","Finished","Full","Full","1%","Counts likely low due to water patches"
+"2015-03-17_YB-AFq5",2015-03-17,2015-03-17,"YB","AF","5","BgD","Balanus_glandula_(dead)","Type 2",36,0.015625,2304,"c","Beatriz Vaca","Finished","Cropped","Cropped","4%",""
+"2015-03-17_YB-AFq8",2015-03-17,2015-03-17,"YB","AF","8","BgD","Balanus_glandula_(dead)","Type 2",223,0.0875,2548.57142857143,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2015-03-17_YB-AFq9",2015-03-17,2015-03-17,"YB","AF","9","BgD","Balanus_glandula_(dead)","Type 2",20,0.0875,228.571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","1%","Counts likely low due to water patches"
+"2015-03-17_YB-AFq5",2015-03-17,2015-03-17,"YB","AF","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","4%",""
+"2015-03-17_YB-AFq8",2015-03-17,2015-03-17,"YB","AF","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2015-03-17_YB-AFq9",2015-03-17,2015-03-17,"YB","AF","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","1%","Counts likely low due to water patches"
+"2015-03-17_YB-AFq5",2015-03-17,2015-03-17,"YB","AF","5","Cth","Chthamalus_dalli","Type 3",26,0.015625,1664,"c","Beatriz Vaca","Finished","Cropped","Cropped","4%",""
+"2015-03-17_YB-AFq8",2015-03-17,2015-03-17,"YB","AF","8","Cth","Chthamalus_dalli","Type 3",193,0.0875,2205.71428571429,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2015-03-17_YB-AFq9",2015-03-17,2015-03-17,"YB","AF","9","Cth","Chthamalus_dalli","Type 3",77,0.0875,880,NA,"Stephanie Merhoff","Finished","Full","Full","1%","Counts likely low due to water patches"
+"2015-03-17_YB-AFq5",2015-03-17,2015-03-17,"YB","AF","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","4%",""
+"2015-03-17_YB-AFq8",2015-03-17,2015-03-17,"YB","AF","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2015-03-17_YB-AFq9",2015-03-17,2015-03-17,"YB","AF","9","CthD","Chthamalus_dalli (dead)","Type 4",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","1%","Counts likely low due to water patches"
+"2015-03-17_YB-AFq5",2015-03-17,2015-03-17,"YB","AF","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","4%",""
+"2015-03-17_YB-AFq8",2015-03-17,2015-03-17,"YB","AF","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2015-03-17_YB-AFq9",2015-03-17,2015-03-17,"YB","AF","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","1%","Counts likely low due to water patches"
+"2015-03-17_YB-AFq5",2015-03-17,2015-03-17,"YB","AF","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","4%",""
+"2015-03-17_YB-AFq8",2015-03-17,2015-03-17,"YB","AF","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2015-03-17_YB-AFq9",2015-03-17,2015-03-17,"YB","AF","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","1%","Counts likely low due to water patches"
+"2015-03-17_YB-AFq5",2015-03-17,2015-03-17,"YB","AF","5","Lim","Limpets","Type 12",43,0.0875,491.428571428571,NA,"Beatriz Vaca","Finished","Cropped","Cropped","4%",""
+"2015-03-17_YB-AFq8",2015-03-17,2015-03-17,"YB","AF","8","Lim","Limpets","Type 12",18,0.0875,205.714285714286,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2015-03-17_YB-AFq9",2015-03-17,2015-03-17,"YB","AF","9","Lim","Limpets","Type 12",15,0.0875,171.428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","1%","Counts likely low due to water patches"
+"2015-03-17_YB-AFq5",2015-03-17,2015-03-17,"YB","AF","5","Ls","Littorina_sitkana","Type 13",110,0.0875,1257.14285714286,NA,"Beatriz Vaca","Finished","Cropped","Cropped","4%",""
+"2015-03-17_YB-AFq8",2015-03-17,2015-03-17,"YB","AF","8","Ls","Littorina_sitkana","Type 13",6,0.0875,68.5714285714286,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2015-03-17_YB-AFq9",2015-03-17,2015-03-17,"YB","AF","9","Ls","Littorina_sitkana","Type 13",77,0.0875,880,NA,"Stephanie Merhoff","Finished","Full","Full","1%","Counts likely low due to water patches"
+"2015-03-17_YB-AFq5",2015-03-17,2015-03-17,"YB","AF","5","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","4%",""
+"2015-03-17_YB-AFq8",2015-03-17,2015-03-17,"YB","AF","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2015-03-17_YB-AFq9",2015-03-17,2015-03-17,"YB","AF","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","1%","Counts likely low due to water patches"
+"2015-03-17_YB-AFq5",2015-03-17,2015-03-17,"YB","AF","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","4%",""
+"2015-03-17_YB-AFq8",2015-03-17,2015-03-17,"YB","AF","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2015-03-17_YB-AFq9",2015-03-17,2015-03-17,"YB","AF","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","1%","Counts likely low due to water patches"
+"2015-03-17_YB-AFq5",2015-03-17,2015-03-17,"YB","AF","5","Myt","Mytilus_spp","Type 7",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","4%",""
+"2015-03-17_YB-AFq8",2015-03-17,2015-03-17,"YB","AF","8","Myt","Mytilus_spp","Type 7",140,0.0875,1600,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2015-03-17_YB-AFq9",2015-03-17,2015-03-17,"YB","AF","9","Myt","Mytilus_spp","Type 7",155,0.0875,1771.42857142857,NA,"Stephanie Merhoff","Finished","Full","Full","1%","Counts likely low due to water patches"
+"2015-03-17_YB-AFq5",2015-03-17,2015-03-17,"YB","AF","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","4%",""
+"2015-03-17_YB-AFq8",2015-03-17,2015-03-17,"YB","AF","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2015-03-17_YB-AFq9",2015-03-17,2015-03-17,"YB","AF","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","1%","Counts likely low due to water patches"
+"2015-03-17_YB-AFq5",2015-03-17,2015-03-17,"YB","AF","5","Mt","Mytilus_trossulus","Type 15",128,0.015625,8192,"c","Beatriz Vaca","Finished","Cropped","Cropped","4%",""
+"2015-03-17_YB-AFq8",2015-03-17,2015-03-17,"YB","AF","8","Mt","Mytilus_trossulus","Type 15",212,0.0875,2422.85714285714,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2015-03-17_YB-AFq9",2015-03-17,2015-03-17,"YB","AF","9","Mt","Mytilus_trossulus","Type 15",142,0.0875,1622.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","1%","Counts likely low due to water patches"
+"2015-03-17_YB-AFq5",2015-03-17,2015-03-17,"YB","AF","5","MtD","Mytilus_trossulus_(dead)","Type 16",1,0.015625,64,"c","Beatriz Vaca","Finished","Cropped","Cropped","4%",""
+"2015-03-17_YB-AFq8",2015-03-17,2015-03-17,"YB","AF","8","MtD","Mytilus_trossulus_(dead)","Type 16",1,0.0875,11.4285714285714,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2015-03-17_YB-AFq9",2015-03-17,2015-03-17,"YB","AF","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","1%","Counts likely low due to water patches"
+"2015-03-17_YB-AFq5",2015-03-17,2015-03-17,"YB","AF","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","4%",""
+"2015-03-17_YB-AFq8",2015-03-17,2015-03-17,"YB","AF","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2015-03-17_YB-AFq9",2015-03-17,2015-03-17,"YB","AF","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","1%","Counts likely low due to water patches"
+"2015-03-17_YB-AFq5",2015-03-17,2015-03-17,"YB","AF","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","4%",""
+"2015-03-17_YB-AFq8",2015-03-17,2015-03-17,"YB","AF","8","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2015-03-17_YB-AFq9",2015-03-17,2015-03-17,"YB","AF","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","1%","Counts likely low due to water patches"
+"2015-03-17_YB-AFq5",2015-03-17,2015-03-17,"YB","AF","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","4%",""
+"2015-03-17_YB-AFq8",2015-03-17,2015-03-17,"YB","AF","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2015-03-17_YB-AFq9",2015-03-17,2015-03-17,"YB","AF","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","1%","Counts likely low due to water patches"
+"2015-03-17_YB-AFq5",2015-03-17,2015-03-17,"YB","AF","5","No","Nucella_ostrina","Type 9",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Cropped","Cropped","4%",""
+"2015-03-17_YB-AFq8",2015-03-17,2015-03-17,"YB","AF","8","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2015-03-17_YB-AFq9",2015-03-17,2015-03-17,"YB","AF","9","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","1%","Counts likely low due to water patches"
+"2015-03-17_YB-AFq5",2015-03-17,2015-03-17,"YB","AF","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","4%",""
+"2015-03-17_YB-AFq8",2015-03-17,2015-03-17,"YB","AF","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2015-03-17_YB-AFq9",2015-03-17,2015-03-17,"YB","AF","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","1%","Counts likely low due to water patches"
+"2015-03-17_YB-AFq5",2015-03-17,2015-03-17,"YB","AF","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","4%",""
+"2015-03-17_YB-AFq8",2015-03-17,2015-03-17,"YB","AF","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2015-03-17_YB-AFq9",2015-03-17,2015-03-17,"YB","AF","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","1%","Counts likely low due to water patches"
+"2015-03-17_YB-AFq5",2015-03-17,2015-03-17,"YB","AF","5","Pp","Pollicipes_polymerus","Type 11",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","4%",""
+"2015-03-17_YB-AFq8",2015-03-17,2015-03-17,"YB","AF","8","Pp","Pollicipes_polymerus","Type 11",4,0.0875,45.7142857142857,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2015-03-17_YB-AFq9",2015-03-17,2015-03-17,"YB","AF","9","Pp","Pollicipes_polymerus","Type 11",5,0.0875,57.1428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","1%","Counts likely low due to water patches"
+"2015-03-17_YB-AFq5",2015-03-17,2015-03-17,"YB","AF","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","4%",""
+"2015-03-17_YB-AFq8",2015-03-17,2015-03-17,"YB","AF","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2015-03-17_YB-AFq9",2015-03-17,2015-03-17,"YB","AF","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","1%","Counts likely low due to water patches"
+"2015-03-17_YB-AFq5",2015-03-17,2015-03-17,"YB","AF","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","4%",""
+"2015-03-17_YB-AFq8",2015-03-17,2015-03-17,"YB","AF","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2015-03-17_YB-AFq9",2015-03-17,2015-03-17,"YB","AF","9","Sc","Semibalanus_cariosus","Type 5",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","1%","Counts likely low due to water patches"
+"2015-03-17_YB-AFq5",2015-03-17,2015-03-17,"YB","AF","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","4%",""
+"2015-03-17_YB-AFq8",2015-03-17,2015-03-17,"YB","AF","8","ScD","Semibalanus_cariosus_(dead)","Type 6",1,0.0875,11.4285714285714,NA,"Celeste Moen","Finished","Full","Full","0%",""
+"2015-03-17_YB-AFq9",2015-03-17,2015-03-17,"YB","AF","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","1%","Counts likely low due to water patches"
+"2015-03-17_YB-AGq2",2015-03-17,2015-03-17,"YB","AG","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","25%","Counts may be low due to blur and algea."
+"2015-03-17_YB-AGq7",2015-03-17,2015-03-17,"YB","AG","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-03-17_YB-AGq9",2015-03-17,2015-03-17,"YB","AG","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-03-17_YB-AGq2",2015-03-17,2015-03-17,"YB","AG","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","25%","Counts may be low due to blur and algea."
+"2015-03-17_YB-AGq7",2015-03-17,2015-03-17,"YB","AG","7","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-03-17_YB-AGq9",2015-03-17,2015-03-17,"YB","AG","9","Ae","Anemones","Type 14",9,0.0875,102.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-03-17_YB-AGq2",2015-03-17,2015-03-17,"YB","AG","2","Bg","Balanus_glandula","Type 1",1111,0.0875,12697.1428571429,NA,"Rebecca Friedrich","Finished","Full","Full","25%","Counts may be low due to blur and algea."
+"2015-03-17_YB-AGq7",2015-03-17,2015-03-17,"YB","AG","7","Bg","Balanus_glandula","Type 1",791,0.0875,9040,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-03-17_YB-AGq9",2015-03-17,2015-03-17,"YB","AG","9","Bg","Balanus_glandula","Type 1",278,0.0875,3177.14285714286,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-03-17_YB-AGq2",2015-03-17,2015-03-17,"YB","AG","2","BgD","Balanus_glandula_(dead)","Type 2",4,0.0875,45.7142857142857,NA,"Rebecca Friedrich","Finished","Full","Full","25%","Counts may be low due to blur and algea."
+"2015-03-17_YB-AGq7",2015-03-17,2015-03-17,"YB","AG","7","BgD","Balanus_glandula_(dead)","Type 2",69,0.0875,788.571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-03-17_YB-AGq9",2015-03-17,2015-03-17,"YB","AG","9","BgD","Balanus_glandula_(dead)","Type 2",46,0.0875,525.714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-03-17_YB-AGq2",2015-03-17,2015-03-17,"YB","AG","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","25%","Counts may be low due to blur and algea."
+"2015-03-17_YB-AGq7",2015-03-17,2015-03-17,"YB","AG","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-03-17_YB-AGq9",2015-03-17,2015-03-17,"YB","AG","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-03-17_YB-AGq2",2015-03-17,2015-03-17,"YB","AG","2","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","25%","Counts may be low due to blur and algea."
+"2015-03-17_YB-AGq7",2015-03-17,2015-03-17,"YB","AG","7","Cth","Chthamalus_dalli","Type 3",65,0.0875,742.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-03-17_YB-AGq9",2015-03-17,2015-03-17,"YB","AG","9","Cth","Chthamalus_dalli","Type 3",122,0.0875,1394.28571428571,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-03-17_YB-AGq2",2015-03-17,2015-03-17,"YB","AG","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","25%","Counts may be low due to blur and algea."
+"2015-03-17_YB-AGq7",2015-03-17,2015-03-17,"YB","AG","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-03-17_YB-AGq9",2015-03-17,2015-03-17,"YB","AG","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-03-17_YB-AGq2",2015-03-17,2015-03-17,"YB","AG","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","25%","Counts may be low due to blur and algea."
+"2015-03-17_YB-AGq7",2015-03-17,2015-03-17,"YB","AG","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-03-17_YB-AGq9",2015-03-17,2015-03-17,"YB","AG","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-03-17_YB-AGq2",2015-03-17,2015-03-17,"YB","AG","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","25%","Counts may be low due to blur and algea."
+"2015-03-17_YB-AGq7",2015-03-17,2015-03-17,"YB","AG","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-03-17_YB-AGq9",2015-03-17,2015-03-17,"YB","AG","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-03-17_YB-AGq2",2015-03-17,2015-03-17,"YB","AG","2","Lim","Limpets","Type 12",60,0.0875,685.714285714286,NA,"Rebecca Friedrich","Finished","Full","Full","25%","Counts may be low due to blur and algea."
+"2015-03-17_YB-AGq7",2015-03-17,2015-03-17,"YB","AG","7","Lim","Limpets","Type 12",15,0.0875,171.428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-03-17_YB-AGq9",2015-03-17,2015-03-17,"YB","AG","9","Lim","Limpets","Type 12",14,0.0875,160,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-03-17_YB-AGq2",2015-03-17,2015-03-17,"YB","AG","2","Ls","Littorina_sitkana","Type 13",144,0.0875,1645.71428571429,NA,"Rebecca Friedrich","Finished","Full","Full","25%","Counts may be low due to blur and algea."
+"2015-03-17_YB-AGq7",2015-03-17,2015-03-17,"YB","AG","7","Ls","Littorina_sitkana","Type 13",101,0.0875,1154.28571428571,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-03-17_YB-AGq9",2015-03-17,2015-03-17,"YB","AG","9","Ls","Littorina_sitkana","Type 13",117,0.0875,1337.14285714286,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-03-17_YB-AGq2",2015-03-17,2015-03-17,"YB","AG","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","25%","Counts may be low due to blur and algea."
+"2015-03-17_YB-AGq7",2015-03-17,2015-03-17,"YB","AG","7","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-03-17_YB-AGq9",2015-03-17,2015-03-17,"YB","AG","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-03-17_YB-AGq2",2015-03-17,2015-03-17,"YB","AG","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","25%","Counts may be low due to blur and algea."
+"2015-03-17_YB-AGq7",2015-03-17,2015-03-17,"YB","AG","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-03-17_YB-AGq9",2015-03-17,2015-03-17,"YB","AG","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-03-17_YB-AGq2",2015-03-17,2015-03-17,"YB","AG","2","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","25%","Counts may be low due to blur and algea."
+"2015-03-17_YB-AGq7",2015-03-17,2015-03-17,"YB","AG","7","Myt","Mytilus_spp","Type 7",304,0.0875,3474.28571428571,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-03-17_YB-AGq9",2015-03-17,2015-03-17,"YB","AG","9","Myt","Mytilus_spp","Type 7",207,0.0875,2365.71428571429,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-03-17_YB-AGq2",2015-03-17,2015-03-17,"YB","AG","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","25%","Counts may be low due to blur and algea."
+"2015-03-17_YB-AGq7",2015-03-17,2015-03-17,"YB","AG","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-03-17_YB-AGq9",2015-03-17,2015-03-17,"YB","AG","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-03-17_YB-AGq2",2015-03-17,2015-03-17,"YB","AG","2","Mt","Mytilus_trossulus","Type 15",368,0.0875,4205.71428571429,NA,"Rebecca Friedrich","Finished","Full","Full","25%","Counts may be low due to blur and algea."
+"2015-03-17_YB-AGq7",2015-03-17,2015-03-17,"YB","AG","7","Mt","Mytilus_trossulus","Type 15",248,0.0875,2834.28571428571,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-03-17_YB-AGq9",2015-03-17,2015-03-17,"YB","AG","9","Mt","Mytilus_trossulus","Type 15",276,0.0875,3154.28571428571,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-03-17_YB-AGq2",2015-03-17,2015-03-17,"YB","AG","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","25%","Counts may be low due to blur and algea."
+"2015-03-17_YB-AGq7",2015-03-17,2015-03-17,"YB","AG","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-03-17_YB-AGq9",2015-03-17,2015-03-17,"YB","AG","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-03-17_YB-AGq2",2015-03-17,2015-03-17,"YB","AG","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","25%","Counts may be low due to blur and algea."
+"2015-03-17_YB-AGq7",2015-03-17,2015-03-17,"YB","AG","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-03-17_YB-AGq9",2015-03-17,2015-03-17,"YB","AG","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-03-17_YB-AGq2",2015-03-17,2015-03-17,"YB","AG","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","25%","Counts may be low due to blur and algea."
+"2015-03-17_YB-AGq7",2015-03-17,2015-03-17,"YB","AG","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-03-17_YB-AGq9",2015-03-17,2015-03-17,"YB","AG","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-03-17_YB-AGq2",2015-03-17,2015-03-17,"YB","AG","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","25%","Counts may be low due to blur and algea."
+"2015-03-17_YB-AGq7",2015-03-17,2015-03-17,"YB","AG","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-03-17_YB-AGq9",2015-03-17,2015-03-17,"YB","AG","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-03-17_YB-AGq2",2015-03-17,2015-03-17,"YB","AG","2","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Rebecca Friedrich","Finished","Full","Full","25%","Counts may be low due to blur and algea."
+"2015-03-17_YB-AGq7",2015-03-17,2015-03-17,"YB","AG","7","No","Nucella_ostrina","Type 9",7,0.0875,80,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-03-17_YB-AGq9",2015-03-17,2015-03-17,"YB","AG","9","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-03-17_YB-AGq2",2015-03-17,2015-03-17,"YB","AG","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","25%","Counts may be low due to blur and algea."
+"2015-03-17_YB-AGq7",2015-03-17,2015-03-17,"YB","AG","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-03-17_YB-AGq9",2015-03-17,2015-03-17,"YB","AG","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-03-17_YB-AGq2",2015-03-17,2015-03-17,"YB","AG","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","25%","Counts may be low due to blur and algea."
+"2015-03-17_YB-AGq7",2015-03-17,2015-03-17,"YB","AG","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-03-17_YB-AGq9",2015-03-17,2015-03-17,"YB","AG","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-03-17_YB-AGq2",2015-03-17,2015-03-17,"YB","AG","2","Pp","Pollicipes_polymerus","Type 11",3,0.0875,34.2857142857143,NA,"Rebecca Friedrich","Finished","Full","Full","25%","Counts may be low due to blur and algea."
+"2015-03-17_YB-AGq7",2015-03-17,2015-03-17,"YB","AG","7","Pp","Pollicipes_polymerus","Type 11",41,0.0875,468.571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-03-17_YB-AGq9",2015-03-17,2015-03-17,"YB","AG","9","Pp","Pollicipes_polymerus","Type 11",293,0.0875,3348.57142857143,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-03-17_YB-AGq2",2015-03-17,2015-03-17,"YB","AG","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","25%","Counts may be low due to blur and algea."
+"2015-03-17_YB-AGq7",2015-03-17,2015-03-17,"YB","AG","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-03-17_YB-AGq9",2015-03-17,2015-03-17,"YB","AG","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-03-17_YB-AGq2",2015-03-17,2015-03-17,"YB","AG","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","25%","Counts may be low due to blur and algea."
+"2015-03-17_YB-AGq7",2015-03-17,2015-03-17,"YB","AG","7","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-03-17_YB-AGq9",2015-03-17,2015-03-17,"YB","AG","9","Sc","Semibalanus_cariosus","Type 5",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-03-17_YB-AGq2",2015-03-17,2015-03-17,"YB","AG","2","ScD","Semibalanus_cariosus_(dead)","Type 6",1,0.0875,11.4285714285714,NA,"Rebecca Friedrich","Finished","Full","Full","25%","Counts may be low due to blur and algea."
+"2015-03-17_YB-AGq7",2015-03-17,2015-03-17,"YB","AG","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-03-17_YB-AGq9",2015-03-17,2015-03-17,"YB","AG","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-03-17_YB-Bq1",2015-03-17,2015-03-17,"YB","B","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-03-17_YB-Bq5",2015-03-17,2015-03-17,"YB","B","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-03-17_YB-Bq6",2015-03-17,2015-03-17,"YB","B","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-03-17_YB-Bq1",2015-03-17,2015-03-17,"YB","B","1","Ae","Anemones","Type 14",28,0.0875,320,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-03-17_YB-Bq5",2015-03-17,2015-03-17,"YB","B","5","Ae","Anemones","Type 14",37,0.0875,422.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-03-17_YB-Bq6",2015-03-17,2015-03-17,"YB","B","6","Ae","Anemones","Type 14",56,0.0875,640,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-03-17_YB-Bq1",2015-03-17,2015-03-17,"YB","B","1","Bg","Balanus_glandula","Type 1",125,0.0875,1428.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-03-17_YB-Bq5",2015-03-17,2015-03-17,"YB","B","5","Bg","Balanus_glandula","Type 1",227,0.0875,2594.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-03-17_YB-Bq6",2015-03-17,2015-03-17,"YB","B","6","Bg","Balanus_glandula","Type 1",158,0.0875,1805.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-03-17_YB-Bq1",2015-03-17,2015-03-17,"YB","B","1","BgD","Balanus_glandula_(dead)","Type 2",87,0.0875,994.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-03-17_YB-Bq5",2015-03-17,2015-03-17,"YB","B","5","BgD","Balanus_glandula_(dead)","Type 2",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-03-17_YB-Bq6",2015-03-17,2015-03-17,"YB","B","6","BgD","Balanus_glandula_(dead)","Type 2",35,0.0875,400,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-03-17_YB-Bq1",2015-03-17,2015-03-17,"YB","B","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-03-17_YB-Bq5",2015-03-17,2015-03-17,"YB","B","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-03-17_YB-Bq6",2015-03-17,2015-03-17,"YB","B","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-03-17_YB-Bq1",2015-03-17,2015-03-17,"YB","B","1","Cth","Chthamalus_dalli","Type 3",28,0.0875,320,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-03-17_YB-Bq5",2015-03-17,2015-03-17,"YB","B","5","Cth","Chthamalus_dalli","Type 3",15,0.0875,171.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-03-17_YB-Bq6",2015-03-17,2015-03-17,"YB","B","6","Cth","Chthamalus_dalli","Type 3",31,0.0875,354.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-03-17_YB-Bq1",2015-03-17,2015-03-17,"YB","B","1","CthD","Chthamalus_dalli (dead)","Type 4",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-03-17_YB-Bq5",2015-03-17,2015-03-17,"YB","B","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-03-17_YB-Bq6",2015-03-17,2015-03-17,"YB","B","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-03-17_YB-Bq1",2015-03-17,2015-03-17,"YB","B","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-03-17_YB-Bq5",2015-03-17,2015-03-17,"YB","B","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-03-17_YB-Bq6",2015-03-17,2015-03-17,"YB","B","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-03-17_YB-Bq1",2015-03-17,2015-03-17,"YB","B","1","Lep","Leptasterias","Type 20",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-03-17_YB-Bq5",2015-03-17,2015-03-17,"YB","B","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-03-17_YB-Bq6",2015-03-17,2015-03-17,"YB","B","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-03-17_YB-Bq1",2015-03-17,2015-03-17,"YB","B","1","Lim","Limpets","Type 12",54,0.0875,617.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-03-17_YB-Bq5",2015-03-17,2015-03-17,"YB","B","5","Lim","Limpets","Type 12",27,0.0875,308.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-03-17_YB-Bq6",2015-03-17,2015-03-17,"YB","B","6","Lim","Limpets","Type 12",23,0.0875,262.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-03-17_YB-Bq1",2015-03-17,2015-03-17,"YB","B","1","Ls","Littorina_sitkana","Type 13",20,0.0875,228.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-03-17_YB-Bq5",2015-03-17,2015-03-17,"YB","B","5","Ls","Littorina_sitkana","Type 13",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-03-17_YB-Bq6",2015-03-17,2015-03-17,"YB","B","6","Ls","Littorina_sitkana","Type 13",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-03-17_YB-Bq1",2015-03-17,2015-03-17,"YB","B","1","Mc","Mytilus_californianus","Type 17",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-03-17_YB-Bq5",2015-03-17,2015-03-17,"YB","B","5","Mc","Mytilus_californianus","Type 17",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-03-17_YB-Bq6",2015-03-17,2015-03-17,"YB","B","6","Mc","Mytilus_californianus","Type 17",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-03-17_YB-Bq1",2015-03-17,2015-03-17,"YB","B","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-03-17_YB-Bq5",2015-03-17,2015-03-17,"YB","B","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-03-17_YB-Bq6",2015-03-17,2015-03-17,"YB","B","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-03-17_YB-Bq1",2015-03-17,2015-03-17,"YB","B","1","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-03-17_YB-Bq5",2015-03-17,2015-03-17,"YB","B","5","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-03-17_YB-Bq6",2015-03-17,2015-03-17,"YB","B","6","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-03-17_YB-Bq1",2015-03-17,2015-03-17,"YB","B","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-03-17_YB-Bq5",2015-03-17,2015-03-17,"YB","B","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-03-17_YB-Bq6",2015-03-17,2015-03-17,"YB","B","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-03-17_YB-Bq1",2015-03-17,2015-03-17,"YB","B","1","Mt","Mytilus_trossulus","Type 15",262,0.0875,2994.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-03-17_YB-Bq5",2015-03-17,2015-03-17,"YB","B","5","Mt","Mytilus_trossulus","Type 15",191,0.0875,2182.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-03-17_YB-Bq6",2015-03-17,2015-03-17,"YB","B","6","Mt","Mytilus_trossulus","Type 15",213,0.0875,2434.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-03-17_YB-Bq1",2015-03-17,2015-03-17,"YB","B","1","MtD","Mytilus_trossulus_(dead)","Type 16",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-03-17_YB-Bq5",2015-03-17,2015-03-17,"YB","B","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-03-17_YB-Bq6",2015-03-17,2015-03-17,"YB","B","6","MtD","Mytilus_trossulus_(dead)","Type 16",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-03-17_YB-Bq1",2015-03-17,2015-03-17,"YB","B","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-03-17_YB-Bq5",2015-03-17,2015-03-17,"YB","B","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-03-17_YB-Bq6",2015-03-17,2015-03-17,"YB","B","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-03-17_YB-Bq1",2015-03-17,2015-03-17,"YB","B","1","Nc","Nucella_canaliculata","Type 10",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-03-17_YB-Bq5",2015-03-17,2015-03-17,"YB","B","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-03-17_YB-Bq6",2015-03-17,2015-03-17,"YB","B","6","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-03-17_YB-Bq1",2015-03-17,2015-03-17,"YB","B","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-03-17_YB-Bq5",2015-03-17,2015-03-17,"YB","B","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-03-17_YB-Bq6",2015-03-17,2015-03-17,"YB","B","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-03-17_YB-Bq1",2015-03-17,2015-03-17,"YB","B","1","No","Nucella_ostrina","Type 9",20,0.0875,228.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-03-17_YB-Bq5",2015-03-17,2015-03-17,"YB","B","5","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-03-17_YB-Bq6",2015-03-17,2015-03-17,"YB","B","6","No","Nucella_ostrina","Type 9",10,0.0875,114.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-03-17_YB-Bq1",2015-03-17,2015-03-17,"YB","B","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-03-17_YB-Bq5",2015-03-17,2015-03-17,"YB","B","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-03-17_YB-Bq6",2015-03-17,2015-03-17,"YB","B","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-03-17_YB-Bq1",2015-03-17,2015-03-17,"YB","B","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-03-17_YB-Bq5",2015-03-17,2015-03-17,"YB","B","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-03-17_YB-Bq6",2015-03-17,2015-03-17,"YB","B","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-03-17_YB-Bq1",2015-03-17,2015-03-17,"YB","B","1","Pp","Pollicipes_polymerus","Type 11",908,0.0875,10377.1428571429,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-03-17_YB-Bq5",2015-03-17,2015-03-17,"YB","B","5","Pp","Pollicipes_polymerus","Type 11",324,0.0875,3702.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-03-17_YB-Bq6",2015-03-17,2015-03-17,"YB","B","6","Pp","Pollicipes_polymerus","Type 11",231,0.0875,2640,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-03-17_YB-Bq1",2015-03-17,2015-03-17,"YB","B","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-03-17_YB-Bq5",2015-03-17,2015-03-17,"YB","B","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-03-17_YB-Bq6",2015-03-17,2015-03-17,"YB","B","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-03-17_YB-Bq1",2015-03-17,2015-03-17,"YB","B","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-03-17_YB-Bq5",2015-03-17,2015-03-17,"YB","B","5","Sc","Semibalanus_cariosus","Type 5",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-03-17_YB-Bq6",2015-03-17,2015-03-17,"YB","B","6","Sc","Semibalanus_cariosus","Type 5",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-03-17_YB-Bq1",2015-03-17,2015-03-17,"YB","B","1","ScD","Semibalanus_cariosus_(dead)","Type 6",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-03-17_YB-Bq5",2015-03-17,2015-03-17,"YB","B","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-03-17_YB-Bq6",2015-03-17,2015-03-17,"YB","B","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-03-17_YB-BBq1",2015-03-17,2015-03-17,"YB","BB","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2015-03-17_YB-BBq2",2015-03-17,2015-03-17,"YB","BB","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2015-03-17_YB-BBq9",2015-03-17,2015-03-17,"YB","BB","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","0%",""
+"2015-03-17_YB-BBq1",2015-03-17,2015-03-17,"YB","BB","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2015-03-17_YB-BBq2",2015-03-17,2015-03-17,"YB","BB","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2015-03-17_YB-BBq9",2015-03-17,2015-03-17,"YB","BB","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","0%",""
+"2015-03-17_YB-BBq1",2015-03-17,2015-03-17,"YB","BB","1","Bg","Balanus_glandula","Type 1",247,0.0875,2822.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2015-03-17_YB-BBq2",2015-03-17,2015-03-17,"YB","BB","2","Bg","Balanus_glandula","Type 1",365,0.0875,4171.42857142857,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2015-03-17_YB-BBq9",2015-03-17,2015-03-17,"YB","BB","9","Bg","Balanus_glandula","Type 1",761,0.0875,8697.14285714286,NA,"Stephanie Merhoff","Finished","Full","Full","0%",""
+"2015-03-17_YB-BBq1",2015-03-17,2015-03-17,"YB","BB","1","BgD","Balanus_glandula_(dead)","Type 2",42,0.0875,480,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2015-03-17_YB-BBq2",2015-03-17,2015-03-17,"YB","BB","2","BgD","Balanus_glandula_(dead)","Type 2",35,0.0875,400,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2015-03-17_YB-BBq9",2015-03-17,2015-03-17,"YB","BB","9","BgD","Balanus_glandula_(dead)","Type 2",95,0.0875,1085.71428571429,NA,"Stephanie Merhoff","Finished","Full","Full","0%",""
+"2015-03-17_YB-BBq1",2015-03-17,2015-03-17,"YB","BB","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2015-03-17_YB-BBq2",2015-03-17,2015-03-17,"YB","BB","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2015-03-17_YB-BBq9",2015-03-17,2015-03-17,"YB","BB","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","0%",""
+"2015-03-17_YB-BBq1",2015-03-17,2015-03-17,"YB","BB","1","Cth","Chthamalus_dalli","Type 3",107,0.0875,1222.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2015-03-17_YB-BBq2",2015-03-17,2015-03-17,"YB","BB","2","Cth","Chthamalus_dalli","Type 3",93,0.0875,1062.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2015-03-17_YB-BBq9",2015-03-17,2015-03-17,"YB","BB","9","Cth","Chthamalus_dalli","Type 3",162,0.0875,1851.42857142857,NA,"Stephanie Merhoff","Finished","Full","Full","0%",""
+"2015-03-17_YB-BBq1",2015-03-17,2015-03-17,"YB","BB","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2015-03-17_YB-BBq2",2015-03-17,2015-03-17,"YB","BB","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2015-03-17_YB-BBq9",2015-03-17,2015-03-17,"YB","BB","9","CthD","Chthamalus_dalli (dead)","Type 4",7,0.0875,80,NA,"Stephanie Merhoff","Finished","Full","Full","0%",""
+"2015-03-17_YB-BBq1",2015-03-17,2015-03-17,"YB","BB","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2015-03-17_YB-BBq2",2015-03-17,2015-03-17,"YB","BB","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2015-03-17_YB-BBq9",2015-03-17,2015-03-17,"YB","BB","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","0%",""
+"2015-03-17_YB-BBq1",2015-03-17,2015-03-17,"YB","BB","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2015-03-17_YB-BBq2",2015-03-17,2015-03-17,"YB","BB","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2015-03-17_YB-BBq9",2015-03-17,2015-03-17,"YB","BB","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","0%",""
+"2015-03-17_YB-BBq1",2015-03-17,2015-03-17,"YB","BB","1","Lim","Limpets","Type 12",22,0.0875,251.428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2015-03-17_YB-BBq2",2015-03-17,2015-03-17,"YB","BB","2","Lim","Limpets","Type 12",27,0.0875,308.571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2015-03-17_YB-BBq9",2015-03-17,2015-03-17,"YB","BB","9","Lim","Limpets","Type 12",25,0.0875,285.714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","0%",""
+"2015-03-17_YB-BBq1",2015-03-17,2015-03-17,"YB","BB","1","Ls","Littorina_sitkana","Type 13",130,0.0875,1485.71428571429,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2015-03-17_YB-BBq2",2015-03-17,2015-03-17,"YB","BB","2","Ls","Littorina_sitkana","Type 13",174,0.0875,1988.57142857143,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2015-03-17_YB-BBq9",2015-03-17,2015-03-17,"YB","BB","9","Ls","Littorina_sitkana","Type 13",151,0.0875,1725.71428571429,NA,"Stephanie Merhoff","Finished","Full","Full","0%",""
+"2015-03-17_YB-BBq1",2015-03-17,2015-03-17,"YB","BB","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2015-03-17_YB-BBq2",2015-03-17,2015-03-17,"YB","BB","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2015-03-17_YB-BBq9",2015-03-17,2015-03-17,"YB","BB","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","0%",""
+"2015-03-17_YB-BBq1",2015-03-17,2015-03-17,"YB","BB","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2015-03-17_YB-BBq2",2015-03-17,2015-03-17,"YB","BB","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2015-03-17_YB-BBq9",2015-03-17,2015-03-17,"YB","BB","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","0%",""
+"2015-03-17_YB-BBq1",2015-03-17,2015-03-17,"YB","BB","1","Myt","Mytilus_spp","Type 7",138,0.0875,1577.14285714286,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2015-03-17_YB-BBq2",2015-03-17,2015-03-17,"YB","BB","2","Myt","Mytilus_spp","Type 7",247,0.0875,2822.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2015-03-17_YB-BBq9",2015-03-17,2015-03-17,"YB","BB","9","Myt","Mytilus_spp","Type 7",283,0.0875,3234.28571428571,NA,"Stephanie Merhoff","Finished","Full","Full","0%",""
+"2015-03-17_YB-BBq1",2015-03-17,2015-03-17,"YB","BB","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2015-03-17_YB-BBq2",2015-03-17,2015-03-17,"YB","BB","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2015-03-17_YB-BBq9",2015-03-17,2015-03-17,"YB","BB","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","0%",""
+"2015-03-17_YB-BBq1",2015-03-17,2015-03-17,"YB","BB","1","Mt","Mytilus_trossulus","Type 15",245,0.0875,2800,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2015-03-17_YB-BBq2",2015-03-17,2015-03-17,"YB","BB","2","Mt","Mytilus_trossulus","Type 15",189,0.0875,2160,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2015-03-17_YB-BBq9",2015-03-17,2015-03-17,"YB","BB","9","Mt","Mytilus_trossulus","Type 15",231,0.0875,2640,NA,"Stephanie Merhoff","Finished","Full","Full","0%",""
+"2015-03-17_YB-BBq1",2015-03-17,2015-03-17,"YB","BB","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2015-03-17_YB-BBq2",2015-03-17,2015-03-17,"YB","BB","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2015-03-17_YB-BBq9",2015-03-17,2015-03-17,"YB","BB","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","0%",""
+"2015-03-17_YB-BBq1",2015-03-17,2015-03-17,"YB","BB","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2015-03-17_YB-BBq2",2015-03-17,2015-03-17,"YB","BB","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2015-03-17_YB-BBq9",2015-03-17,2015-03-17,"YB","BB","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","0%",""
+"2015-03-17_YB-BBq1",2015-03-17,2015-03-17,"YB","BB","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2015-03-17_YB-BBq2",2015-03-17,2015-03-17,"YB","BB","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2015-03-17_YB-BBq9",2015-03-17,2015-03-17,"YB","BB","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","0%",""
+"2015-03-17_YB-BBq1",2015-03-17,2015-03-17,"YB","BB","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2015-03-17_YB-BBq2",2015-03-17,2015-03-17,"YB","BB","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2015-03-17_YB-BBq9",2015-03-17,2015-03-17,"YB","BB","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","0%",""
+"2015-03-17_YB-BBq1",2015-03-17,2015-03-17,"YB","BB","1","No","Nucella_ostrina","Type 9",5,0.0875,57.1428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2015-03-17_YB-BBq2",2015-03-17,2015-03-17,"YB","BB","2","No","Nucella_ostrina","Type 9",5,0.0875,57.1428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2015-03-17_YB-BBq9",2015-03-17,2015-03-17,"YB","BB","9","No","Nucella_ostrina","Type 9",16,0.0875,182.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","0%",""
+"2015-03-17_YB-BBq1",2015-03-17,2015-03-17,"YB","BB","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2015-03-17_YB-BBq2",2015-03-17,2015-03-17,"YB","BB","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2015-03-17_YB-BBq9",2015-03-17,2015-03-17,"YB","BB","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","0%",""
+"2015-03-17_YB-BBq1",2015-03-17,2015-03-17,"YB","BB","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2015-03-17_YB-BBq2",2015-03-17,2015-03-17,"YB","BB","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2015-03-17_YB-BBq9",2015-03-17,2015-03-17,"YB","BB","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","0%",""
+"2015-03-17_YB-BBq1",2015-03-17,2015-03-17,"YB","BB","1","Pp","Pollicipes_polymerus","Type 11",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2015-03-17_YB-BBq2",2015-03-17,2015-03-17,"YB","BB","2","Pp","Pollicipes_polymerus","Type 11",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2015-03-17_YB-BBq9",2015-03-17,2015-03-17,"YB","BB","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","0%",""
+"2015-03-17_YB-BBq1",2015-03-17,2015-03-17,"YB","BB","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2015-03-17_YB-BBq2",2015-03-17,2015-03-17,"YB","BB","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2015-03-17_YB-BBq9",2015-03-17,2015-03-17,"YB","BB","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","0%",""
+"2015-03-17_YB-BBq1",2015-03-17,2015-03-17,"YB","BB","1","Sc","Semibalanus_cariosus","Type 5",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2015-03-17_YB-BBq2",2015-03-17,2015-03-17,"YB","BB","2","Sc","Semibalanus_cariosus","Type 5",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2015-03-17_YB-BBq9",2015-03-17,2015-03-17,"YB","BB","9","Sc","Semibalanus_cariosus","Type 5",12,0.0875,137.142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","0%",""
+"2015-03-17_YB-BBq1",2015-03-17,2015-03-17,"YB","BB","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%",""
+"2015-03-17_YB-BBq2",2015-03-17,2015-03-17,"YB","BB","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2015-03-17_YB-BBq9",2015-03-17,2015-03-17,"YB","BB","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","0%",""
+"2015-03-17_YB-BCq3",2015-03-17,2015-03-17,"YB","BC","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-03-17_YB-BCq5",2015-03-17,2015-03-17,"YB","BC","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-03-17_YB-BCq9",2015-03-17,2015-03-17,"YB","BC","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2015-03-17_YB-BCq3",2015-03-17,2015-03-17,"YB","BC","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-03-17_YB-BCq5",2015-03-17,2015-03-17,"YB","BC","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-03-17_YB-BCq9",2015-03-17,2015-03-17,"YB","BC","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2015-03-17_YB-BCq3",2015-03-17,2015-03-17,"YB","BC","3","Bg","Balanus_glandula","Type 1",722,0.0875,8251.42857142857,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-03-17_YB-BCq5",2015-03-17,2015-03-17,"YB","BC","5","Bg","Balanus_glandula","Type 1",254,0.0875,2902.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-03-17_YB-BCq9",2015-03-17,2015-03-17,"YB","BC","9","Bg","Balanus_glandula","Type 1",340,0.0875,3885.71428571429,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2015-03-17_YB-BCq3",2015-03-17,2015-03-17,"YB","BC","3","BgD","Balanus_glandula_(dead)","Type 2",29,0.0875,331.428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-03-17_YB-BCq5",2015-03-17,2015-03-17,"YB","BC","5","BgD","Balanus_glandula_(dead)","Type 2",209,0.0875,2388.57142857143,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-03-17_YB-BCq9",2015-03-17,2015-03-17,"YB","BC","9","BgD","Balanus_glandula_(dead)","Type 2",63,0.0875,720,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2015-03-17_YB-BCq3",2015-03-17,2015-03-17,"YB","BC","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-03-17_YB-BCq5",2015-03-17,2015-03-17,"YB","BC","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-03-17_YB-BCq9",2015-03-17,2015-03-17,"YB","BC","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2015-03-17_YB-BCq3",2015-03-17,2015-03-17,"YB","BC","3","Cth","Chthamalus_dalli","Type 3",287,0.0875,3280,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-03-17_YB-BCq5",2015-03-17,2015-03-17,"YB","BC","5","Cth","Chthamalus_dalli","Type 3",32,0.0875,365.714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-03-17_YB-BCq9",2015-03-17,2015-03-17,"YB","BC","9","Cth","Chthamalus_dalli","Type 3",122,0.0875,1394.28571428571,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2015-03-17_YB-BCq3",2015-03-17,2015-03-17,"YB","BC","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-03-17_YB-BCq5",2015-03-17,2015-03-17,"YB","BC","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-03-17_YB-BCq9",2015-03-17,2015-03-17,"YB","BC","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2015-03-17_YB-BCq3",2015-03-17,2015-03-17,"YB","BC","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-03-17_YB-BCq5",2015-03-17,2015-03-17,"YB","BC","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-03-17_YB-BCq9",2015-03-17,2015-03-17,"YB","BC","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2015-03-17_YB-BCq3",2015-03-17,2015-03-17,"YB","BC","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-03-17_YB-BCq5",2015-03-17,2015-03-17,"YB","BC","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-03-17_YB-BCq9",2015-03-17,2015-03-17,"YB","BC","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2015-03-17_YB-BCq3",2015-03-17,2015-03-17,"YB","BC","3","Lim","Limpets","Type 12",73,0.0875,834.285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-03-17_YB-BCq5",2015-03-17,2015-03-17,"YB","BC","5","Lim","Limpets","Type 12",46,0.0875,525.714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-03-17_YB-BCq9",2015-03-17,2015-03-17,"YB","BC","9","Lim","Limpets","Type 12",58,0.0875,662.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2015-03-17_YB-BCq3",2015-03-17,2015-03-17,"YB","BC","3","Ls","Littorina_sitkana","Type 13",94,0.0875,1074.28571428571,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-03-17_YB-BCq5",2015-03-17,2015-03-17,"YB","BC","5","Ls","Littorina_sitkana","Type 13",150,0.0875,1714.28571428571,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-03-17_YB-BCq9",2015-03-17,2015-03-17,"YB","BC","9","Ls","Littorina_sitkana","Type 13",113,0.0875,1291.42857142857,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2015-03-17_YB-BCq3",2015-03-17,2015-03-17,"YB","BC","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-03-17_YB-BCq5",2015-03-17,2015-03-17,"YB","BC","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-03-17_YB-BCq9",2015-03-17,2015-03-17,"YB","BC","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2015-03-17_YB-BCq3",2015-03-17,2015-03-17,"YB","BC","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-03-17_YB-BCq5",2015-03-17,2015-03-17,"YB","BC","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-03-17_YB-BCq9",2015-03-17,2015-03-17,"YB","BC","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2015-03-17_YB-BCq3",2015-03-17,2015-03-17,"YB","BC","3","Myt","Mytilus_spp","Type 7",234,0.0875,2674.28571428571,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-03-17_YB-BCq5",2015-03-17,2015-03-17,"YB","BC","5","Myt","Mytilus_spp","Type 7",97,0.0875,1108.57142857143,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-03-17_YB-BCq9",2015-03-17,2015-03-17,"YB","BC","9","Myt","Mytilus_spp","Type 7",234,0.0875,2674.28571428571,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2015-03-17_YB-BCq3",2015-03-17,2015-03-17,"YB","BC","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-03-17_YB-BCq5",2015-03-17,2015-03-17,"YB","BC","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-03-17_YB-BCq9",2015-03-17,2015-03-17,"YB","BC","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2015-03-17_YB-BCq3",2015-03-17,2015-03-17,"YB","BC","3","Mt","Mytilus_trossulus","Type 15",175,0.0875,2000,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-03-17_YB-BCq5",2015-03-17,2015-03-17,"YB","BC","5","Mt","Mytilus_trossulus","Type 15",186,0.0875,2125.71428571429,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-03-17_YB-BCq9",2015-03-17,2015-03-17,"YB","BC","9","Mt","Mytilus_trossulus","Type 15",165,0.0875,1885.71428571429,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2015-03-17_YB-BCq3",2015-03-17,2015-03-17,"YB","BC","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-03-17_YB-BCq5",2015-03-17,2015-03-17,"YB","BC","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-03-17_YB-BCq9",2015-03-17,2015-03-17,"YB","BC","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2015-03-17_YB-BCq3",2015-03-17,2015-03-17,"YB","BC","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-03-17_YB-BCq5",2015-03-17,2015-03-17,"YB","BC","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-03-17_YB-BCq9",2015-03-17,2015-03-17,"YB","BC","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2015-03-17_YB-BCq3",2015-03-17,2015-03-17,"YB","BC","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-03-17_YB-BCq5",2015-03-17,2015-03-17,"YB","BC","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-03-17_YB-BCq9",2015-03-17,2015-03-17,"YB","BC","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2015-03-17_YB-BCq3",2015-03-17,2015-03-17,"YB","BC","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-03-17_YB-BCq5",2015-03-17,2015-03-17,"YB","BC","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-03-17_YB-BCq9",2015-03-17,2015-03-17,"YB","BC","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2015-03-17_YB-BCq3",2015-03-17,2015-03-17,"YB","BC","3","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-03-17_YB-BCq5",2015-03-17,2015-03-17,"YB","BC","5","No","Nucella_ostrina","Type 9",8,0.0875,91.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-03-17_YB-BCq9",2015-03-17,2015-03-17,"YB","BC","9","No","Nucella_ostrina","Type 9",5,0.0875,57.1428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2015-03-17_YB-BCq3",2015-03-17,2015-03-17,"YB","BC","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-03-17_YB-BCq5",2015-03-17,2015-03-17,"YB","BC","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-03-17_YB-BCq9",2015-03-17,2015-03-17,"YB","BC","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2015-03-17_YB-BCq3",2015-03-17,2015-03-17,"YB","BC","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-03-17_YB-BCq5",2015-03-17,2015-03-17,"YB","BC","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-03-17_YB-BCq9",2015-03-17,2015-03-17,"YB","BC","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2015-03-17_YB-BCq3",2015-03-17,2015-03-17,"YB","BC","3","Pp","Pollicipes_polymerus","Type 11",5,0.0875,57.1428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-03-17_YB-BCq5",2015-03-17,2015-03-17,"YB","BC","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-03-17_YB-BCq9",2015-03-17,2015-03-17,"YB","BC","9","Pp","Pollicipes_polymerus","Type 11",20,0.0875,228.571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2015-03-17_YB-BCq3",2015-03-17,2015-03-17,"YB","BC","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-03-17_YB-BCq5",2015-03-17,2015-03-17,"YB","BC","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-03-17_YB-BCq9",2015-03-17,2015-03-17,"YB","BC","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2015-03-17_YB-BCq3",2015-03-17,2015-03-17,"YB","BC","3","Sc","Semibalanus_cariosus","Type 5",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-03-17_YB-BCq5",2015-03-17,2015-03-17,"YB","BC","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-03-17_YB-BCq9",2015-03-17,2015-03-17,"YB","BC","9","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2015-03-17_YB-BCq3",2015-03-17,2015-03-17,"YB","BC","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-03-17_YB-BCq5",2015-03-17,2015-03-17,"YB","BC","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-03-17_YB-BCq9",2015-03-17,2015-03-17,"YB","BC","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%",""
+"2015-03-17_YB-BDq1",2015-03-17,2015-03-17,"YB","BD","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","6%",""
+"2015-03-17_YB-BDq5",2015-03-17,2015-03-17,"YB","BD","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%","counts may be low due to water glare"
+"2015-03-17_YB-BDq7",2015-03-17,2015-03-17,"YB","BD","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2015-03-17_YB-BDq1",2015-03-17,2015-03-17,"YB","BD","1","Ae","Anemones","Type 14",3,0.0875,34.2857142857143,NA,"Julia Bingham","Finished","Full","Full","6%",""
+"2015-03-17_YB-BDq5",2015-03-17,2015-03-17,"YB","BD","5","Ae","Anemones","Type 14",10,0.0875,114.285714285714,NA,"Julia Bingham","Finished","Full","Full","15%","counts may be low due to water glare"
+"2015-03-17_YB-BDq7",2015-03-17,2015-03-17,"YB","BD","7","Ae","Anemones","Type 14",25,0.0875,285.714285714286,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2015-03-17_YB-BDq1",2015-03-17,2015-03-17,"YB","BD","1","Bg","Balanus_glandula","Type 1",224,0.0875,2560,NA,"Julia Bingham","Finished","Full","Full","6%",""
+"2015-03-17_YB-BDq5",2015-03-17,2015-03-17,"YB","BD","5","Bg","Balanus_glandula","Type 1",328,0.0875,3748.57142857143,NA,"Julia Bingham","Finished","Full","Full","15%","counts may be low due to water glare"
+"2015-03-17_YB-BDq7",2015-03-17,2015-03-17,"YB","BD","7","Bg","Balanus_glandula","Type 1",649,0.0875,7417.14285714286,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2015-03-17_YB-BDq1",2015-03-17,2015-03-17,"YB","BD","1","BgD","Balanus_glandula_(dead)","Type 2",62,0.0875,708.571428571429,NA,"Julia Bingham","Finished","Full","Full","6%",""
+"2015-03-17_YB-BDq5",2015-03-17,2015-03-17,"YB","BD","5","BgD","Balanus_glandula_(dead)","Type 2",91,0.0875,1040,NA,"Julia Bingham","Finished","Full","Full","15%","counts may be low due to water glare"
+"2015-03-17_YB-BDq7",2015-03-17,2015-03-17,"YB","BD","7","BgD","Balanus_glandula_(dead)","Type 2",179,0.0875,2045.71428571429,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2015-03-17_YB-BDq1",2015-03-17,2015-03-17,"YB","BD","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","6%",""
+"2015-03-17_YB-BDq5",2015-03-17,2015-03-17,"YB","BD","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%","counts may be low due to water glare"
+"2015-03-17_YB-BDq7",2015-03-17,2015-03-17,"YB","BD","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2015-03-17_YB-BDq1",2015-03-17,2015-03-17,"YB","BD","1","Cth","Chthamalus_dalli","Type 3",51,0.0875,582.857142857143,NA,"Julia Bingham","Finished","Full","Full","6%",""
+"2015-03-17_YB-BDq5",2015-03-17,2015-03-17,"YB","BD","5","Cth","Chthamalus_dalli","Type 3",37,0.0875,422.857142857143,NA,"Julia Bingham","Finished","Full","Full","15%","counts may be low due to water glare"
+"2015-03-17_YB-BDq7",2015-03-17,2015-03-17,"YB","BD","7","Cth","Chthamalus_dalli","Type 3",142,0.0875,1622.85714285714,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2015-03-17_YB-BDq1",2015-03-17,2015-03-17,"YB","BD","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","6%",""
+"2015-03-17_YB-BDq5",2015-03-17,2015-03-17,"YB","BD","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%","counts may be low due to water glare"
+"2015-03-17_YB-BDq7",2015-03-17,2015-03-17,"YB","BD","7","CthD","Chthamalus_dalli (dead)","Type 4",12,0.0875,137.142857142857,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2015-03-17_YB-BDq1",2015-03-17,2015-03-17,"YB","BD","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","6%",""
+"2015-03-17_YB-BDq5",2015-03-17,2015-03-17,"YB","BD","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%","counts may be low due to water glare"
+"2015-03-17_YB-BDq7",2015-03-17,2015-03-17,"YB","BD","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2015-03-17_YB-BDq1",2015-03-17,2015-03-17,"YB","BD","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","6%",""
+"2015-03-17_YB-BDq5",2015-03-17,2015-03-17,"YB","BD","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%","counts may be low due to water glare"
+"2015-03-17_YB-BDq7",2015-03-17,2015-03-17,"YB","BD","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2015-03-17_YB-BDq1",2015-03-17,2015-03-17,"YB","BD","1","Lim","Limpets","Type 12",393,0.0875,4491.42857142857,NA,"Julia Bingham","Finished","Full","Full","6%",""
+"2015-03-17_YB-BDq5",2015-03-17,2015-03-17,"YB","BD","5","Lim","Limpets","Type 12",195,0.0875,2228.57142857143,NA,"Julia Bingham","Finished","Full","Full","15%","counts may be low due to water glare"
+"2015-03-17_YB-BDq7",2015-03-17,2015-03-17,"YB","BD","7","Lim","Limpets","Type 12",491,0.0875,5611.42857142857,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2015-03-17_YB-BDq1",2015-03-17,2015-03-17,"YB","BD","1","Ls","Littorina_sitkana","Type 13",188,0.0875,2148.57142857143,NA,"Julia Bingham","Finished","Full","Full","6%",""
+"2015-03-17_YB-BDq5",2015-03-17,2015-03-17,"YB","BD","5","Ls","Littorina_sitkana","Type 13",180,0.0875,2057.14285714286,NA,"Julia Bingham","Finished","Full","Full","15%","counts may be low due to water glare"
+"2015-03-17_YB-BDq7",2015-03-17,2015-03-17,"YB","BD","7","Ls","Littorina_sitkana","Type 13",274,0.0875,3131.42857142857,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2015-03-17_YB-BDq1",2015-03-17,2015-03-17,"YB","BD","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","6%",""
+"2015-03-17_YB-BDq5",2015-03-17,2015-03-17,"YB","BD","5","Mc","Mytilus_californianus","Type 17",9,0.0875,102.857142857143,NA,"Julia Bingham","Finished","Full","Full","15%","counts may be low due to water glare"
+"2015-03-17_YB-BDq7",2015-03-17,2015-03-17,"YB","BD","7","Mc","Mytilus_californianus","Type 17",12,0.0875,137.142857142857,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2015-03-17_YB-BDq1",2015-03-17,2015-03-17,"YB","BD","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","6%",""
+"2015-03-17_YB-BDq5",2015-03-17,2015-03-17,"YB","BD","5","McD","Mytilus_californianus_(dead)","Type 18",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","15%","counts may be low due to water glare"
+"2015-03-17_YB-BDq7",2015-03-17,2015-03-17,"YB","BD","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2015-03-17_YB-BDq1",2015-03-17,2015-03-17,"YB","BD","1","Myt","Mytilus_spp","Type 7",816,0.0875,9325.71428571429,NA,"Julia Bingham","Finished","Full","Full","6%",""
+"2015-03-17_YB-BDq5",2015-03-17,2015-03-17,"YB","BD","5","Myt","Mytilus_spp","Type 7",876,0.0875,10011.4285714286,NA,"Julia Bingham","Finished","Full","Full","15%","counts may be low due to water glare"
+"2015-03-17_YB-BDq7",2015-03-17,2015-03-17,"YB","BD","7","Myt","Mytilus_spp","Type 7",1165,0.0875,13314.2857142857,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2015-03-17_YB-BDq1",2015-03-17,2015-03-17,"YB","BD","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","6%",""
+"2015-03-17_YB-BDq5",2015-03-17,2015-03-17,"YB","BD","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%","counts may be low due to water glare"
+"2015-03-17_YB-BDq7",2015-03-17,2015-03-17,"YB","BD","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2015-03-17_YB-BDq1",2015-03-17,2015-03-17,"YB","BD","1","Mt","Mytilus_trossulus","Type 15",491,0.0875,5611.42857142857,NA,"Julia Bingham","Finished","Full","Full","6%",""
+"2015-03-17_YB-BDq5",2015-03-17,2015-03-17,"YB","BD","5","Mt","Mytilus_trossulus","Type 15",1096,0.0875,12525.7142857143,NA,"Julia Bingham","Finished","Full","Full","15%","counts may be low due to water glare"
+"2015-03-17_YB-BDq7",2015-03-17,2015-03-17,"YB","BD","7","Mt","Mytilus_trossulus","Type 15",235,0.0875,2685.71428571429,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2015-03-17_YB-BDq1",2015-03-17,2015-03-17,"YB","BD","1","MtD","Mytilus_trossulus_(dead)","Type 16",3,0.0875,34.2857142857143,NA,"Julia Bingham","Finished","Full","Full","6%",""
+"2015-03-17_YB-BDq5",2015-03-17,2015-03-17,"YB","BD","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%","counts may be low due to water glare"
+"2015-03-17_YB-BDq7",2015-03-17,2015-03-17,"YB","BD","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2015-03-17_YB-BDq1",2015-03-17,2015-03-17,"YB","BD","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","6%",""
+"2015-03-17_YB-BDq5",2015-03-17,2015-03-17,"YB","BD","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%","counts may be low due to water glare"
+"2015-03-17_YB-BDq7",2015-03-17,2015-03-17,"YB","BD","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2015-03-17_YB-BDq1",2015-03-17,2015-03-17,"YB","BD","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","6%",""
+"2015-03-17_YB-BDq5",2015-03-17,2015-03-17,"YB","BD","5","Nc","Nucella_canaliculata","Type 10",5,0.0875,57.1428571428571,NA,"Julia Bingham","Finished","Full","Full","15%","counts may be low due to water glare"
+"2015-03-17_YB-BDq7",2015-03-17,2015-03-17,"YB","BD","7","Nc","Nucella_canaliculata","Type 10",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2015-03-17_YB-BDq1",2015-03-17,2015-03-17,"YB","BD","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","6%",""
+"2015-03-17_YB-BDq5",2015-03-17,2015-03-17,"YB","BD","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%","counts may be low due to water glare"
+"2015-03-17_YB-BDq7",2015-03-17,2015-03-17,"YB","BD","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2015-03-17_YB-BDq1",2015-03-17,2015-03-17,"YB","BD","1","No","Nucella_ostrina","Type 9",5,0.0875,57.1428571428571,NA,"Julia Bingham","Finished","Full","Full","6%",""
+"2015-03-17_YB-BDq5",2015-03-17,2015-03-17,"YB","BD","5","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Full","15%","counts may be low due to water glare"
+"2015-03-17_YB-BDq7",2015-03-17,2015-03-17,"YB","BD","7","No","Nucella_ostrina","Type 9",6,0.0875,68.5714285714286,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2015-03-17_YB-BDq1",2015-03-17,2015-03-17,"YB","BD","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","6%",""
+"2015-03-17_YB-BDq5",2015-03-17,2015-03-17,"YB","BD","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%","counts may be low due to water glare"
+"2015-03-17_YB-BDq7",2015-03-17,2015-03-17,"YB","BD","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2015-03-17_YB-BDq1",2015-03-17,2015-03-17,"YB","BD","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","6%",""
+"2015-03-17_YB-BDq5",2015-03-17,2015-03-17,"YB","BD","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%","counts may be low due to water glare"
+"2015-03-17_YB-BDq7",2015-03-17,2015-03-17,"YB","BD","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2015-03-17_YB-BDq1",2015-03-17,2015-03-17,"YB","BD","1","Pp","Pollicipes_polymerus","Type 11",2187,0.0875,24994.2857142857,NA,"Julia Bingham","Finished","Full","Full","6%",""
+"2015-03-17_YB-BDq5",2015-03-17,2015-03-17,"YB","BD","5","Pp","Pollicipes_polymerus","Type 11",1248,0.0875,14262.8571428571,NA,"Julia Bingham","Finished","Full","Full","15%","counts may be low due to water glare"
+"2015-03-17_YB-BDq7",2015-03-17,2015-03-17,"YB","BD","7","Pp","Pollicipes_polymerus","Type 11",1382,0.0875,15794.2857142857,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2015-03-17_YB-BDq1",2015-03-17,2015-03-17,"YB","BD","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","6%",""
+"2015-03-17_YB-BDq5",2015-03-17,2015-03-17,"YB","BD","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%","counts may be low due to water glare"
+"2015-03-17_YB-BDq7",2015-03-17,2015-03-17,"YB","BD","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2015-03-17_YB-BDq1",2015-03-17,2015-03-17,"YB","BD","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","6%",""
+"2015-03-17_YB-BDq5",2015-03-17,2015-03-17,"YB","BD","5","Sc","Semibalanus_cariosus","Type 5",7,0.0875,80,NA,"Julia Bingham","Finished","Full","Full","15%","counts may be low due to water glare"
+"2015-03-17_YB-BDq7",2015-03-17,2015-03-17,"YB","BD","7","Sc","Semibalanus_cariosus","Type 5",3,0.0875,34.2857142857143,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2015-03-17_YB-BDq1",2015-03-17,2015-03-17,"YB","BD","1","ScD","Semibalanus_cariosus_(dead)","Type 6",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Full","6%",""
+"2015-03-17_YB-BDq5",2015-03-17,2015-03-17,"YB","BD","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%","counts may be low due to water glare"
+"2015-03-17_YB-BDq7",2015-03-17,2015-03-17,"YB","BD","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2015-03-17_YB-BEq2",2015-03-17,2015-03-17,"YB","BE","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to glare."
+"2015-03-17_YB-BEq3",2015-03-17,2015-03-17,"YB","BE","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to algae."
+"2015-03-17_YB-BEq6",2015-03-17,2015-03-17,"YB","BE","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-03-17_YB-BEq2",2015-03-17,2015-03-17,"YB","BE","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to glare."
+"2015-03-17_YB-BEq3",2015-03-17,2015-03-17,"YB","BE","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to algae."
+"2015-03-17_YB-BEq6",2015-03-17,2015-03-17,"YB","BE","6","Ae","Anemones","Type 14",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-03-17_YB-BEq2",2015-03-17,2015-03-17,"YB","BE","2","Bg","Balanus_glandula","Type 1",611,0.0875,6982.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to glare."
+"2015-03-17_YB-BEq3",2015-03-17,2015-03-17,"YB","BE","3","Bg","Balanus_glandula","Type 1",818,0.0875,9348.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to algae."
+"2015-03-17_YB-BEq6",2015-03-17,2015-03-17,"YB","BE","6","Bg","Balanus_glandula","Type 1",1095,0.0875,12514.2857142857,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-03-17_YB-BEq2",2015-03-17,2015-03-17,"YB","BE","2","BgD","Balanus_glandula_(dead)","Type 2",19,0.0875,217.142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to glare."
+"2015-03-17_YB-BEq3",2015-03-17,2015-03-17,"YB","BE","3","BgD","Balanus_glandula_(dead)","Type 2",103,0.0875,1177.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to algae."
+"2015-03-17_YB-BEq6",2015-03-17,2015-03-17,"YB","BE","6","BgD","Balanus_glandula_(dead)","Type 2",95,0.0875,1085.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-03-17_YB-BEq2",2015-03-17,2015-03-17,"YB","BE","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to glare."
+"2015-03-17_YB-BEq3",2015-03-17,2015-03-17,"YB","BE","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to algae."
+"2015-03-17_YB-BEq6",2015-03-17,2015-03-17,"YB","BE","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-03-17_YB-BEq2",2015-03-17,2015-03-17,"YB","BE","2","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to glare."
+"2015-03-17_YB-BEq3",2015-03-17,2015-03-17,"YB","BE","3","Cth","Chthamalus_dalli","Type 3",54,0.0875,617.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to algae."
+"2015-03-17_YB-BEq6",2015-03-17,2015-03-17,"YB","BE","6","Cth","Chthamalus_dalli","Type 3",185,0.0875,2114.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-03-17_YB-BEq2",2015-03-17,2015-03-17,"YB","BE","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to glare."
+"2015-03-17_YB-BEq3",2015-03-17,2015-03-17,"YB","BE","3","CthD","Chthamalus_dalli (dead)","Type 4",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to algae."
+"2015-03-17_YB-BEq6",2015-03-17,2015-03-17,"YB","BE","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-03-17_YB-BEq2",2015-03-17,2015-03-17,"YB","BE","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to glare."
+"2015-03-17_YB-BEq3",2015-03-17,2015-03-17,"YB","BE","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to algae."
+"2015-03-17_YB-BEq6",2015-03-17,2015-03-17,"YB","BE","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-03-17_YB-BEq2",2015-03-17,2015-03-17,"YB","BE","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to glare."
+"2015-03-17_YB-BEq3",2015-03-17,2015-03-17,"YB","BE","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to algae."
+"2015-03-17_YB-BEq6",2015-03-17,2015-03-17,"YB","BE","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-03-17_YB-BEq2",2015-03-17,2015-03-17,"YB","BE","2","Lim","Limpets","Type 12",45,0.0875,514.285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to glare."
+"2015-03-17_YB-BEq3",2015-03-17,2015-03-17,"YB","BE","3","Lim","Limpets","Type 12",111,0.0875,1268.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to algae."
+"2015-03-17_YB-BEq6",2015-03-17,2015-03-17,"YB","BE","6","Lim","Limpets","Type 12",189,0.0875,2160,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-03-17_YB-BEq2",2015-03-17,2015-03-17,"YB","BE","2","Ls","Littorina_sitkana","Type 13",245,0.0875,2800,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to glare."
+"2015-03-17_YB-BEq3",2015-03-17,2015-03-17,"YB","BE","3","Ls","Littorina_sitkana","Type 13",164,0.0875,1874.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to algae."
+"2015-03-17_YB-BEq6",2015-03-17,2015-03-17,"YB","BE","6","Ls","Littorina_sitkana","Type 13",220,0.0875,2514.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-03-17_YB-BEq2",2015-03-17,2015-03-17,"YB","BE","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to glare."
+"2015-03-17_YB-BEq3",2015-03-17,2015-03-17,"YB","BE","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to algae."
+"2015-03-17_YB-BEq6",2015-03-17,2015-03-17,"YB","BE","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-03-17_YB-BEq2",2015-03-17,2015-03-17,"YB","BE","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to glare."
+"2015-03-17_YB-BEq3",2015-03-17,2015-03-17,"YB","BE","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to algae."
+"2015-03-17_YB-BEq6",2015-03-17,2015-03-17,"YB","BE","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-03-17_YB-BEq2",2015-03-17,2015-03-17,"YB","BE","2","Myt","Mytilus_spp","Type 7",58,0.0875,662.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to glare."
+"2015-03-17_YB-BEq3",2015-03-17,2015-03-17,"YB","BE","3","Myt","Mytilus_spp","Type 7",87,0.0875,994.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to algae."
+"2015-03-17_YB-BEq6",2015-03-17,2015-03-17,"YB","BE","6","Myt","Mytilus_spp","Type 7",65,0.0875,742.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-03-17_YB-BEq2",2015-03-17,2015-03-17,"YB","BE","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to glare."
+"2015-03-17_YB-BEq3",2015-03-17,2015-03-17,"YB","BE","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to algae."
+"2015-03-17_YB-BEq6",2015-03-17,2015-03-17,"YB","BE","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-03-17_YB-BEq2",2015-03-17,2015-03-17,"YB","BE","2","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to glare."
+"2015-03-17_YB-BEq3",2015-03-17,2015-03-17,"YB","BE","3","Mt","Mytilus_trossulus","Type 15",116,0.0875,1325.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to algae."
+"2015-03-17_YB-BEq6",2015-03-17,2015-03-17,"YB","BE","6","Mt","Mytilus_trossulus","Type 15",143,0.0875,1634.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-03-17_YB-BEq2",2015-03-17,2015-03-17,"YB","BE","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to glare."
+"2015-03-17_YB-BEq3",2015-03-17,2015-03-17,"YB","BE","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to algae."
+"2015-03-17_YB-BEq6",2015-03-17,2015-03-17,"YB","BE","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-03-17_YB-BEq2",2015-03-17,2015-03-17,"YB","BE","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to glare."
+"2015-03-17_YB-BEq3",2015-03-17,2015-03-17,"YB","BE","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to algae."
+"2015-03-17_YB-BEq6",2015-03-17,2015-03-17,"YB","BE","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-03-17_YB-BEq2",2015-03-17,2015-03-17,"YB","BE","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to glare."
+"2015-03-17_YB-BEq3",2015-03-17,2015-03-17,"YB","BE","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to algae."
+"2015-03-17_YB-BEq6",2015-03-17,2015-03-17,"YB","BE","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-03-17_YB-BEq2",2015-03-17,2015-03-17,"YB","BE","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to glare."
+"2015-03-17_YB-BEq3",2015-03-17,2015-03-17,"YB","BE","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to algae."
+"2015-03-17_YB-BEq6",2015-03-17,2015-03-17,"YB","BE","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-03-17_YB-BEq2",2015-03-17,2015-03-17,"YB","BE","2","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to glare."
+"2015-03-17_YB-BEq3",2015-03-17,2015-03-17,"YB","BE","3","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to algae."
+"2015-03-17_YB-BEq6",2015-03-17,2015-03-17,"YB","BE","6","No","Nucella_ostrina","Type 9",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-03-17_YB-BEq2",2015-03-17,2015-03-17,"YB","BE","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to glare."
+"2015-03-17_YB-BEq3",2015-03-17,2015-03-17,"YB","BE","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to algae."
+"2015-03-17_YB-BEq6",2015-03-17,2015-03-17,"YB","BE","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-03-17_YB-BEq2",2015-03-17,2015-03-17,"YB","BE","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to glare."
+"2015-03-17_YB-BEq3",2015-03-17,2015-03-17,"YB","BE","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to algae."
+"2015-03-17_YB-BEq6",2015-03-17,2015-03-17,"YB","BE","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-03-17_YB-BEq2",2015-03-17,2015-03-17,"YB","BE","2","Pp","Pollicipes_polymerus","Type 11",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to glare."
+"2015-03-17_YB-BEq3",2015-03-17,2015-03-17,"YB","BE","3","Pp","Pollicipes_polymerus","Type 11",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to algae."
+"2015-03-17_YB-BEq6",2015-03-17,2015-03-17,"YB","BE","6","Pp","Pollicipes_polymerus","Type 11",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-03-17_YB-BEq2",2015-03-17,2015-03-17,"YB","BE","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to glare."
+"2015-03-17_YB-BEq3",2015-03-17,2015-03-17,"YB","BE","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to algae."
+"2015-03-17_YB-BEq6",2015-03-17,2015-03-17,"YB","BE","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-03-17_YB-BEq2",2015-03-17,2015-03-17,"YB","BE","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to glare."
+"2015-03-17_YB-BEq3",2015-03-17,2015-03-17,"YB","BE","3","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to algae."
+"2015-03-17_YB-BEq6",2015-03-17,2015-03-17,"YB","BE","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-03-17_YB-BEq2",2015-03-17,2015-03-17,"YB","BE","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to glare."
+"2015-03-17_YB-BEq3",2015-03-17,2015-03-17,"YB","BE","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to algae."
+"2015-03-17_YB-BEq6",2015-03-17,2015-03-17,"YB","BE","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-03-17_YB-BFq1",2015-03-17,2015-03-17,"YB","BF","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-BFq4",2015-03-17,2015-03-17,"YB","BF","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-03-17_YB-BFq9",2015-03-17,2015-03-17,"YB","BF","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to algae and glare."
+"2015-03-17_YB-BFq1",2015-03-17,2015-03-17,"YB","BF","1","Ae","Anemones","Type 14",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-BFq4",2015-03-17,2015-03-17,"YB","BF","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-03-17_YB-BFq9",2015-03-17,2015-03-17,"YB","BF","9","Ae","Anemones","Type 14",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to algae and glare."
+"2015-03-17_YB-BFq1",2015-03-17,2015-03-17,"YB","BF","1","Bg","Balanus_glandula","Type 1",717,0.0875,8194.28571428572,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-BFq4",2015-03-17,2015-03-17,"YB","BF","4","Bg","Balanus_glandula","Type 1",890,0.0875,10171.4285714286,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-03-17_YB-BFq9",2015-03-17,2015-03-17,"YB","BF","9","Bg","Balanus_glandula","Type 1",167,0.0875,1908.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to algae and glare."
+"2015-03-17_YB-BFq1",2015-03-17,2015-03-17,"YB","BF","1","BgD","Balanus_glandula_(dead)","Type 2",165,0.0875,1885.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-BFq4",2015-03-17,2015-03-17,"YB","BF","4","BgD","Balanus_glandula_(dead)","Type 2",189,0.0875,2160,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-03-17_YB-BFq9",2015-03-17,2015-03-17,"YB","BF","9","BgD","Balanus_glandula_(dead)","Type 2",62,0.0875,708.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to algae and glare."
+"2015-03-17_YB-BFq1",2015-03-17,2015-03-17,"YB","BF","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-BFq4",2015-03-17,2015-03-17,"YB","BF","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-03-17_YB-BFq9",2015-03-17,2015-03-17,"YB","BF","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to algae and glare."
+"2015-03-17_YB-BFq1",2015-03-17,2015-03-17,"YB","BF","1","Cth","Chthamalus_dalli","Type 3",202,0.0875,2308.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-BFq4",2015-03-17,2015-03-17,"YB","BF","4","Cth","Chthamalus_dalli","Type 3",114,0.0875,1302.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-03-17_YB-BFq9",2015-03-17,2015-03-17,"YB","BF","9","Cth","Chthamalus_dalli","Type 3",30,0.0875,342.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to algae and glare."
+"2015-03-17_YB-BFq1",2015-03-17,2015-03-17,"YB","BF","1","CthD","Chthamalus_dalli (dead)","Type 4",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-BFq4",2015-03-17,2015-03-17,"YB","BF","4","CthD","Chthamalus_dalli (dead)","Type 4",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-03-17_YB-BFq9",2015-03-17,2015-03-17,"YB","BF","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to algae and glare."
+"2015-03-17_YB-BFq1",2015-03-17,2015-03-17,"YB","BF","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-BFq4",2015-03-17,2015-03-17,"YB","BF","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-03-17_YB-BFq9",2015-03-17,2015-03-17,"YB","BF","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to algae and glare."
+"2015-03-17_YB-BFq1",2015-03-17,2015-03-17,"YB","BF","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-BFq4",2015-03-17,2015-03-17,"YB","BF","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-03-17_YB-BFq9",2015-03-17,2015-03-17,"YB","BF","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to algae and glare."
+"2015-03-17_YB-BFq1",2015-03-17,2015-03-17,"YB","BF","1","Lim","Limpets","Type 12",150,0.0875,1714.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-BFq4",2015-03-17,2015-03-17,"YB","BF","4","Lim","Limpets","Type 12",159,0.0875,1817.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-03-17_YB-BFq9",2015-03-17,2015-03-17,"YB","BF","9","Lim","Limpets","Type 12",42,0.0875,480,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to algae and glare."
+"2015-03-17_YB-BFq1",2015-03-17,2015-03-17,"YB","BF","1","Ls","Littorina_sitkana","Type 13",133,0.0875,1520,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-BFq4",2015-03-17,2015-03-17,"YB","BF","4","Ls","Littorina_sitkana","Type 13",170,0.0875,1942.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-03-17_YB-BFq9",2015-03-17,2015-03-17,"YB","BF","9","Ls","Littorina_sitkana","Type 13",126,0.0875,1440,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to algae and glare."
+"2015-03-17_YB-BFq1",2015-03-17,2015-03-17,"YB","BF","1","Mc","Mytilus_californianus","Type 17",65,0.0875,742.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-BFq4",2015-03-17,2015-03-17,"YB","BF","4","Mc","Mytilus_californianus","Type 17",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-03-17_YB-BFq9",2015-03-17,2015-03-17,"YB","BF","9","Mc","Mytilus_californianus","Type 17",24,0.0875,274.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to algae and glare."
+"2015-03-17_YB-BFq1",2015-03-17,2015-03-17,"YB","BF","1","McD","Mytilus_californianus_(dead)","Type 18",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-BFq4",2015-03-17,2015-03-17,"YB","BF","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-03-17_YB-BFq9",2015-03-17,2015-03-17,"YB","BF","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to algae and glare."
+"2015-03-17_YB-BFq1",2015-03-17,2015-03-17,"YB","BF","1","Myt","Mytilus_spp","Type 7",50,0.0875,571.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-BFq4",2015-03-17,2015-03-17,"YB","BF","4","Myt","Mytilus_spp","Type 7",33,0.0875,377.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-03-17_YB-BFq9",2015-03-17,2015-03-17,"YB","BF","9","Myt","Mytilus_spp","Type 7",12,0.0875,137.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to algae and glare."
+"2015-03-17_YB-BFq1",2015-03-17,2015-03-17,"YB","BF","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-BFq4",2015-03-17,2015-03-17,"YB","BF","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-03-17_YB-BFq9",2015-03-17,2015-03-17,"YB","BF","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to algae and glare."
+"2015-03-17_YB-BFq1",2015-03-17,2015-03-17,"YB","BF","1","Mt","Mytilus_trossulus","Type 15",253,0.0875,2891.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-BFq4",2015-03-17,2015-03-17,"YB","BF","4","Mt","Mytilus_trossulus","Type 15",179,0.0875,2045.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-03-17_YB-BFq9",2015-03-17,2015-03-17,"YB","BF","9","Mt","Mytilus_trossulus","Type 15",358,0.0875,4091.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to algae and glare."
+"2015-03-17_YB-BFq1",2015-03-17,2015-03-17,"YB","BF","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-BFq4",2015-03-17,2015-03-17,"YB","BF","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-03-17_YB-BFq9",2015-03-17,2015-03-17,"YB","BF","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to algae and glare."
+"2015-03-17_YB-BFq1",2015-03-17,2015-03-17,"YB","BF","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-BFq4",2015-03-17,2015-03-17,"YB","BF","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-03-17_YB-BFq9",2015-03-17,2015-03-17,"YB","BF","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to algae and glare."
+"2015-03-17_YB-BFq1",2015-03-17,2015-03-17,"YB","BF","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-BFq4",2015-03-17,2015-03-17,"YB","BF","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-03-17_YB-BFq9",2015-03-17,2015-03-17,"YB","BF","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to algae and glare."
+"2015-03-17_YB-BFq1",2015-03-17,2015-03-17,"YB","BF","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-BFq4",2015-03-17,2015-03-17,"YB","BF","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-03-17_YB-BFq9",2015-03-17,2015-03-17,"YB","BF","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to algae and glare."
+"2015-03-17_YB-BFq1",2015-03-17,2015-03-17,"YB","BF","1","No","Nucella_ostrina","Type 9",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-BFq4",2015-03-17,2015-03-17,"YB","BF","4","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-03-17_YB-BFq9",2015-03-17,2015-03-17,"YB","BF","9","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to algae and glare."
+"2015-03-17_YB-BFq1",2015-03-17,2015-03-17,"YB","BF","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-BFq4",2015-03-17,2015-03-17,"YB","BF","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-03-17_YB-BFq9",2015-03-17,2015-03-17,"YB","BF","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to algae and glare."
+"2015-03-17_YB-BFq1",2015-03-17,2015-03-17,"YB","BF","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-BFq4",2015-03-17,2015-03-17,"YB","BF","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-03-17_YB-BFq9",2015-03-17,2015-03-17,"YB","BF","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to algae and glare."
+"2015-03-17_YB-BFq1",2015-03-17,2015-03-17,"YB","BF","1","Pp","Pollicipes_polymerus","Type 11",116,0.0875,1325.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-BFq4",2015-03-17,2015-03-17,"YB","BF","4","Pp","Pollicipes_polymerus","Type 11",11,0.0875,125.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-03-17_YB-BFq9",2015-03-17,2015-03-17,"YB","BF","9","Pp","Pollicipes_polymerus","Type 11",313,0.0875,3577.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to algae and glare."
+"2015-03-17_YB-BFq1",2015-03-17,2015-03-17,"YB","BF","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-BFq4",2015-03-17,2015-03-17,"YB","BF","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-03-17_YB-BFq9",2015-03-17,2015-03-17,"YB","BF","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to algae and glare."
+"2015-03-17_YB-BFq1",2015-03-17,2015-03-17,"YB","BF","1","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-BFq4",2015-03-17,2015-03-17,"YB","BF","4","Sc","Semibalanus_cariosus","Type 5",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-03-17_YB-BFq9",2015-03-17,2015-03-17,"YB","BF","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to algae and glare."
+"2015-03-17_YB-BFq1",2015-03-17,2015-03-17,"YB","BF","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-BFq4",2015-03-17,2015-03-17,"YB","BF","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-03-17_YB-BFq9",2015-03-17,2015-03-17,"YB","BF","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to algae and glare."
+"2015-03-17_YB-Cq2",2015-03-17,2015-03-17,"YB","C","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-03-17_YB-Cq4",2015-03-17,2015-03-17,"YB","C","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-Cq6",2015-03-17,2015-03-17,"YB","C","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-Cq2",2015-03-17,2015-03-17,"YB","C","2","Ae","Anemones","Type 14",21,0.0875,240,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-03-17_YB-Cq4",2015-03-17,2015-03-17,"YB","C","4","Ae","Anemones","Type 14",34,0.0875,388.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-Cq6",2015-03-17,2015-03-17,"YB","C","6","Ae","Anemones","Type 14",31,0.0875,354.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-Cq2",2015-03-17,2015-03-17,"YB","C","2","Bg","Balanus_glandula","Type 1",301,0.0875,3440,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-03-17_YB-Cq4",2015-03-17,2015-03-17,"YB","C","4","Bg","Balanus_glandula","Type 1",313,0.0875,3577.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-Cq6",2015-03-17,2015-03-17,"YB","C","6","Bg","Balanus_glandula","Type 1",173,0.0875,1977.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-Cq2",2015-03-17,2015-03-17,"YB","C","2","BgD","Balanus_glandula_(dead)","Type 2",82,0.0875,937.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-03-17_YB-Cq4",2015-03-17,2015-03-17,"YB","C","4","BgD","Balanus_glandula_(dead)","Type 2",122,0.0875,1394.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-Cq6",2015-03-17,2015-03-17,"YB","C","6","BgD","Balanus_glandula_(dead)","Type 2",79,0.0875,902.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-Cq2",2015-03-17,2015-03-17,"YB","C","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-03-17_YB-Cq4",2015-03-17,2015-03-17,"YB","C","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-Cq6",2015-03-17,2015-03-17,"YB","C","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-Cq2",2015-03-17,2015-03-17,"YB","C","2","Cth","Chthamalus_dalli","Type 3",176,0.0875,2011.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-03-17_YB-Cq4",2015-03-17,2015-03-17,"YB","C","4","Cth","Chthamalus_dalli","Type 3",243,0.0875,2777.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-Cq6",2015-03-17,2015-03-17,"YB","C","6","Cth","Chthamalus_dalli","Type 3",204,0.0875,2331.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-Cq2",2015-03-17,2015-03-17,"YB","C","2","CthD","Chthamalus_dalli (dead)","Type 4",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-03-17_YB-Cq4",2015-03-17,2015-03-17,"YB","C","4","CthD","Chthamalus_dalli (dead)","Type 4",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-Cq6",2015-03-17,2015-03-17,"YB","C","6","CthD","Chthamalus_dalli (dead)","Type 4",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-Cq2",2015-03-17,2015-03-17,"YB","C","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-03-17_YB-Cq4",2015-03-17,2015-03-17,"YB","C","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-Cq6",2015-03-17,2015-03-17,"YB","C","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-Cq2",2015-03-17,2015-03-17,"YB","C","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-03-17_YB-Cq4",2015-03-17,2015-03-17,"YB","C","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-Cq6",2015-03-17,2015-03-17,"YB","C","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-Cq2",2015-03-17,2015-03-17,"YB","C","2","Lim","Limpets","Type 12",68,0.0875,777.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-03-17_YB-Cq4",2015-03-17,2015-03-17,"YB","C","4","Lim","Limpets","Type 12",31,0.0875,354.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-Cq6",2015-03-17,2015-03-17,"YB","C","6","Lim","Limpets","Type 12",21,0.0875,240,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-Cq2",2015-03-17,2015-03-17,"YB","C","2","Ls","Littorina_sitkana","Type 13",24,0.0875,274.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-03-17_YB-Cq4",2015-03-17,2015-03-17,"YB","C","4","Ls","Littorina_sitkana","Type 13",13,0.0875,148.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-Cq6",2015-03-17,2015-03-17,"YB","C","6","Ls","Littorina_sitkana","Type 13",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-Cq2",2015-03-17,2015-03-17,"YB","C","2","Mc","Mytilus_californianus","Type 17",29,0.0875,331.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-03-17_YB-Cq4",2015-03-17,2015-03-17,"YB","C","4","Mc","Mytilus_californianus","Type 17",17,0.0875,194.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-Cq6",2015-03-17,2015-03-17,"YB","C","6","Mc","Mytilus_californianus","Type 17",21,0.0875,240,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-Cq2",2015-03-17,2015-03-17,"YB","C","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-03-17_YB-Cq4",2015-03-17,2015-03-17,"YB","C","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-Cq6",2015-03-17,2015-03-17,"YB","C","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-Cq2",2015-03-17,2015-03-17,"YB","C","2","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-03-17_YB-Cq4",2015-03-17,2015-03-17,"YB","C","4","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-Cq6",2015-03-17,2015-03-17,"YB","C","6","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-Cq2",2015-03-17,2015-03-17,"YB","C","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-03-17_YB-Cq4",2015-03-17,2015-03-17,"YB","C","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-Cq6",2015-03-17,2015-03-17,"YB","C","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-Cq2",2015-03-17,2015-03-17,"YB","C","2","Mt","Mytilus_trossulus","Type 15",100,0.0875,1142.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-03-17_YB-Cq4",2015-03-17,2015-03-17,"YB","C","4","Mt","Mytilus_trossulus","Type 15",68,0.0875,777.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-Cq6",2015-03-17,2015-03-17,"YB","C","6","Mt","Mytilus_trossulus","Type 15",87,0.0875,994.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-Cq2",2015-03-17,2015-03-17,"YB","C","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-03-17_YB-Cq4",2015-03-17,2015-03-17,"YB","C","4","MtD","Mytilus_trossulus_(dead)","Type 16",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-Cq6",2015-03-17,2015-03-17,"YB","C","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-Cq2",2015-03-17,2015-03-17,"YB","C","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-03-17_YB-Cq4",2015-03-17,2015-03-17,"YB","C","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-Cq6",2015-03-17,2015-03-17,"YB","C","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-Cq2",2015-03-17,2015-03-17,"YB","C","2","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-03-17_YB-Cq4",2015-03-17,2015-03-17,"YB","C","4","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-Cq6",2015-03-17,2015-03-17,"YB","C","6","Nc","Nucella_canaliculata","Type 10",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-Cq2",2015-03-17,2015-03-17,"YB","C","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-03-17_YB-Cq4",2015-03-17,2015-03-17,"YB","C","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-Cq6",2015-03-17,2015-03-17,"YB","C","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-Cq2",2015-03-17,2015-03-17,"YB","C","2","No","Nucella_ostrina","Type 9",14,0.0875,160,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-03-17_YB-Cq4",2015-03-17,2015-03-17,"YB","C","4","No","Nucella_ostrina","Type 9",10,0.0875,114.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-Cq6",2015-03-17,2015-03-17,"YB","C","6","No","Nucella_ostrina","Type 9",12,0.0875,137.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-Cq2",2015-03-17,2015-03-17,"YB","C","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-03-17_YB-Cq4",2015-03-17,2015-03-17,"YB","C","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-Cq6",2015-03-17,2015-03-17,"YB","C","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-Cq2",2015-03-17,2015-03-17,"YB","C","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-03-17_YB-Cq4",2015-03-17,2015-03-17,"YB","C","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-Cq6",2015-03-17,2015-03-17,"YB","C","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-Cq2",2015-03-17,2015-03-17,"YB","C","2","Pp","Pollicipes_polymerus","Type 11",805,0.0875,9200,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-03-17_YB-Cq4",2015-03-17,2015-03-17,"YB","C","4","Pp","Pollicipes_polymerus","Type 11",710,0.0875,8114.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-Cq6",2015-03-17,2015-03-17,"YB","C","6","Pp","Pollicipes_polymerus","Type 11",528,0.0875,6034.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-Cq2",2015-03-17,2015-03-17,"YB","C","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-03-17_YB-Cq4",2015-03-17,2015-03-17,"YB","C","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-Cq6",2015-03-17,2015-03-17,"YB","C","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-Cq2",2015-03-17,2015-03-17,"YB","C","2","Sc","Semibalanus_cariosus","Type 5",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-03-17_YB-Cq4",2015-03-17,2015-03-17,"YB","C","4","Sc","Semibalanus_cariosus","Type 5",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-Cq6",2015-03-17,2015-03-17,"YB","C","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-Cq2",2015-03-17,2015-03-17,"YB","C","2","ScD","Semibalanus_cariosus_(dead)","Type 6",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-03-17_YB-Cq4",2015-03-17,2015-03-17,"YB","C","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-Cq6",2015-03-17,2015-03-17,"YB","C","6","ScD","Semibalanus_cariosus_(dead)","Type 6",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-Dq3",2015-03-17,2015-03-17,"YB","D","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2015-03-17_YB-Dq4",2015-03-17,2015-03-17,"YB","D","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%",""
+"2015-03-17_YB-Dq5",2015-03-17,2015-03-17,"YB","D","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2015-03-17_YB-Dq3",2015-03-17,2015-03-17,"YB","D","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2015-03-17_YB-Dq4",2015-03-17,2015-03-17,"YB","D","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%",""
+"2015-03-17_YB-Dq5",2015-03-17,2015-03-17,"YB","D","5","Ae","Anemones","Type 14",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2015-03-17_YB-Dq3",2015-03-17,2015-03-17,"YB","D","3","Bg","Balanus_glandula","Type 1",105,0.015625,6720,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2015-03-17_YB-Dq4",2015-03-17,2015-03-17,"YB","D","4","Bg","Balanus_glandula","Type 1",1358,0.0875,15520,NA,"Stephanie Merhoff","Finished","Full","Full","2%",""
+"2015-03-17_YB-Dq5",2015-03-17,2015-03-17,"YB","D","5","Bg","Balanus_glandula","Type 1",132,0.015625,8448,"c","Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2015-03-17_YB-Dq3",2015-03-17,2015-03-17,"YB","D","3","BgD","Balanus_glandula_(dead)","Type 2",20,0.015625,1280,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2015-03-17_YB-Dq4",2015-03-17,2015-03-17,"YB","D","4","BgD","Balanus_glandula_(dead)","Type 2",86,0.0875,982.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","2%",""
+"2015-03-17_YB-Dq5",2015-03-17,2015-03-17,"YB","D","5","BgD","Balanus_glandula_(dead)","Type 2",39,0.015625,2496,"c","Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2015-03-17_YB-Dq3",2015-03-17,2015-03-17,"YB","D","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2015-03-17_YB-Dq4",2015-03-17,2015-03-17,"YB","D","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%",""
+"2015-03-17_YB-Dq5",2015-03-17,2015-03-17,"YB","D","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2015-03-17_YB-Dq3",2015-03-17,2015-03-17,"YB","D","3","Cth","Chthamalus_dalli","Type 3",8,0.015625,512,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2015-03-17_YB-Dq4",2015-03-17,2015-03-17,"YB","D","4","Cth","Chthamalus_dalli","Type 3",62,0.0875,708.571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","2%",""
+"2015-03-17_YB-Dq5",2015-03-17,2015-03-17,"YB","D","5","Cth","Chthamalus_dalli","Type 3",29,0.015625,1856,"c","Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2015-03-17_YB-Dq3",2015-03-17,2015-03-17,"YB","D","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2015-03-17_YB-Dq4",2015-03-17,2015-03-17,"YB","D","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%",""
+"2015-03-17_YB-Dq5",2015-03-17,2015-03-17,"YB","D","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2015-03-17_YB-Dq3",2015-03-17,2015-03-17,"YB","D","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2015-03-17_YB-Dq4",2015-03-17,2015-03-17,"YB","D","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%",""
+"2015-03-17_YB-Dq5",2015-03-17,2015-03-17,"YB","D","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2015-03-17_YB-Dq3",2015-03-17,2015-03-17,"YB","D","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2015-03-17_YB-Dq4",2015-03-17,2015-03-17,"YB","D","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%",""
+"2015-03-17_YB-Dq5",2015-03-17,2015-03-17,"YB","D","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2015-03-17_YB-Dq3",2015-03-17,2015-03-17,"YB","D","3","Lim","Limpets","Type 12",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2015-03-17_YB-Dq4",2015-03-17,2015-03-17,"YB","D","4","Lim","Limpets","Type 12",38,0.0875,434.285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","2%",""
+"2015-03-17_YB-Dq5",2015-03-17,2015-03-17,"YB","D","5","Lim","Limpets","Type 12",163,0.0875,1862.85714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2015-03-17_YB-Dq3",2015-03-17,2015-03-17,"YB","D","3","Ls","Littorina_sitkana","Type 13",18,0.0875,205.714285714286,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2015-03-17_YB-Dq4",2015-03-17,2015-03-17,"YB","D","4","Ls","Littorina_sitkana","Type 13",57,0.0875,651.428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","2%",""
+"2015-03-17_YB-Dq5",2015-03-17,2015-03-17,"YB","D","5","Ls","Littorina_sitkana","Type 13",52,0.0875,594.285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2015-03-17_YB-Dq3",2015-03-17,2015-03-17,"YB","D","3","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2015-03-17_YB-Dq4",2015-03-17,2015-03-17,"YB","D","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%",""
+"2015-03-17_YB-Dq5",2015-03-17,2015-03-17,"YB","D","5","Mc","Mytilus_californianus","Type 17",164,0.0875,1874.28571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2015-03-17_YB-Dq3",2015-03-17,2015-03-17,"YB","D","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2015-03-17_YB-Dq4",2015-03-17,2015-03-17,"YB","D","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%",""
+"2015-03-17_YB-Dq5",2015-03-17,2015-03-17,"YB","D","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2015-03-17_YB-Dq3",2015-03-17,2015-03-17,"YB","D","3","Myt","Mytilus_spp","Type 7",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2015-03-17_YB-Dq4",2015-03-17,2015-03-17,"YB","D","4","Myt","Mytilus_spp","Type 7",422,0.0875,4822.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","2%",""
+"2015-03-17_YB-Dq5",2015-03-17,2015-03-17,"YB","D","5","Myt","Mytilus_spp","Type 7",405,0.0875,4628.57142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2015-03-17_YB-Dq3",2015-03-17,2015-03-17,"YB","D","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2015-03-17_YB-Dq4",2015-03-17,2015-03-17,"YB","D","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%",""
+"2015-03-17_YB-Dq5",2015-03-17,2015-03-17,"YB","D","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2015-03-17_YB-Dq3",2015-03-17,2015-03-17,"YB","D","3","Mt","Mytilus_trossulus","Type 15",84,0.015625,5376,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2015-03-17_YB-Dq4",2015-03-17,2015-03-17,"YB","D","4","Mt","Mytilus_trossulus","Type 15",213,0.0875,2434.28571428571,NA,"Stephanie Merhoff","Finished","Full","Full","2%",""
+"2015-03-17_YB-Dq5",2015-03-17,2015-03-17,"YB","D","5","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2015-03-17_YB-Dq3",2015-03-17,2015-03-17,"YB","D","3","MtD","Mytilus_trossulus_(dead)","Type 16",2,0.015625,128,"c","Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2015-03-17_YB-Dq4",2015-03-17,2015-03-17,"YB","D","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%",""
+"2015-03-17_YB-Dq5",2015-03-17,2015-03-17,"YB","D","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2015-03-17_YB-Dq3",2015-03-17,2015-03-17,"YB","D","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2015-03-17_YB-Dq4",2015-03-17,2015-03-17,"YB","D","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%",""
+"2015-03-17_YB-Dq5",2015-03-17,2015-03-17,"YB","D","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2015-03-17_YB-Dq3",2015-03-17,2015-03-17,"YB","D","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2015-03-17_YB-Dq4",2015-03-17,2015-03-17,"YB","D","4","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","2%",""
+"2015-03-17_YB-Dq5",2015-03-17,2015-03-17,"YB","D","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2015-03-17_YB-Dq3",2015-03-17,2015-03-17,"YB","D","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2015-03-17_YB-Dq4",2015-03-17,2015-03-17,"YB","D","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%",""
+"2015-03-17_YB-Dq5",2015-03-17,2015-03-17,"YB","D","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2015-03-17_YB-Dq3",2015-03-17,2015-03-17,"YB","D","3","No","Nucella_ostrina","Type 9",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2015-03-17_YB-Dq4",2015-03-17,2015-03-17,"YB","D","4","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","2%",""
+"2015-03-17_YB-Dq5",2015-03-17,2015-03-17,"YB","D","5","No","Nucella_ostrina","Type 9",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2015-03-17_YB-Dq3",2015-03-17,2015-03-17,"YB","D","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2015-03-17_YB-Dq4",2015-03-17,2015-03-17,"YB","D","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%",""
+"2015-03-17_YB-Dq5",2015-03-17,2015-03-17,"YB","D","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2015-03-17_YB-Dq3",2015-03-17,2015-03-17,"YB","D","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2015-03-17_YB-Dq4",2015-03-17,2015-03-17,"YB","D","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%",""
+"2015-03-17_YB-Dq5",2015-03-17,2015-03-17,"YB","D","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2015-03-17_YB-Dq3",2015-03-17,2015-03-17,"YB","D","3","Pp","Pollicipes_polymerus","Type 11",15,0.0875,171.428571428571,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2015-03-17_YB-Dq4",2015-03-17,2015-03-17,"YB","D","4","Pp","Pollicipes_polymerus","Type 11",15,0.0875,171.428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","2%",""
+"2015-03-17_YB-Dq5",2015-03-17,2015-03-17,"YB","D","5","Pp","Pollicipes_polymerus","Type 11",17,0.0875,194.285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2015-03-17_YB-Dq3",2015-03-17,2015-03-17,"YB","D","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2015-03-17_YB-Dq4",2015-03-17,2015-03-17,"YB","D","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%",""
+"2015-03-17_YB-Dq5",2015-03-17,2015-03-17,"YB","D","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2015-03-17_YB-Dq3",2015-03-17,2015-03-17,"YB","D","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2015-03-17_YB-Dq4",2015-03-17,2015-03-17,"YB","D","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%",""
+"2015-03-17_YB-Dq5",2015-03-17,2015-03-17,"YB","D","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2015-03-17_YB-Dq3",2015-03-17,2015-03-17,"YB","D","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","0%",""
+"2015-03-17_YB-Dq4",2015-03-17,2015-03-17,"YB","D","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%",""
+"2015-03-17_YB-Dq5",2015-03-17,2015-03-17,"YB","D","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%",""
+"2015-03-17_YB-Eq3",2015-03-17,2015-03-17,"YB","E","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to high water patches"
+"2015-03-17_YB-Eq4",2015-03-17,2015-03-17,"YB","E","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-03-17_YB-Eq8",2015-03-17,2015-03-17,"YB","E","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","12%",""
+"2015-03-17_YB-Eq3",2015-03-17,2015-03-17,"YB","E","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to high water patches"
+"2015-03-17_YB-Eq4",2015-03-17,2015-03-17,"YB","E","4","Ae","Anemones","Type 14",9,0.0875,102.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-03-17_YB-Eq8",2015-03-17,2015-03-17,"YB","E","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","12%",""
+"2015-03-17_YB-Eq3",2015-03-17,2015-03-17,"YB","E","3","Bg","Balanus_glandula","Type 1",161,0.0875,1840,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to high water patches"
+"2015-03-17_YB-Eq4",2015-03-17,2015-03-17,"YB","E","4","Bg","Balanus_glandula","Type 1",248,0.0875,2834.28571428571,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-03-17_YB-Eq8",2015-03-17,2015-03-17,"YB","E","8","Bg","Balanus_glandula","Type 1",166,0.0875,1897.14285714286,NA,"Stephanie Merhoff","Finished","Full","Full","12%",""
+"2015-03-17_YB-Eq3",2015-03-17,2015-03-17,"YB","E","3","BgD","Balanus_glandula_(dead)","Type 2",11,0.0875,125.714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to high water patches"
+"2015-03-17_YB-Eq4",2015-03-17,2015-03-17,"YB","E","4","BgD","Balanus_glandula_(dead)","Type 2",37,0.0875,422.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-03-17_YB-Eq8",2015-03-17,2015-03-17,"YB","E","8","BgD","Balanus_glandula_(dead)","Type 2",10,0.0875,114.285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","12%",""
+"2015-03-17_YB-Eq3",2015-03-17,2015-03-17,"YB","E","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to high water patches"
+"2015-03-17_YB-Eq4",2015-03-17,2015-03-17,"YB","E","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-03-17_YB-Eq8",2015-03-17,2015-03-17,"YB","E","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","12%",""
+"2015-03-17_YB-Eq3",2015-03-17,2015-03-17,"YB","E","3","Cth","Chthamalus_dalli","Type 3",384,0.0875,4388.57142857143,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to high water patches"
+"2015-03-17_YB-Eq4",2015-03-17,2015-03-17,"YB","E","4","Cth","Chthamalus_dalli","Type 3",45,0.0875,514.285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-03-17_YB-Eq8",2015-03-17,2015-03-17,"YB","E","8","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","12%",""
+"2015-03-17_YB-Eq3",2015-03-17,2015-03-17,"YB","E","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to high water patches"
+"2015-03-17_YB-Eq4",2015-03-17,2015-03-17,"YB","E","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-03-17_YB-Eq8",2015-03-17,2015-03-17,"YB","E","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","12%",""
+"2015-03-17_YB-Eq3",2015-03-17,2015-03-17,"YB","E","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to high water patches"
+"2015-03-17_YB-Eq4",2015-03-17,2015-03-17,"YB","E","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-03-17_YB-Eq8",2015-03-17,2015-03-17,"YB","E","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","12%",""
+"2015-03-17_YB-Eq3",2015-03-17,2015-03-17,"YB","E","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to high water patches"
+"2015-03-17_YB-Eq4",2015-03-17,2015-03-17,"YB","E","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-03-17_YB-Eq8",2015-03-17,2015-03-17,"YB","E","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","12%",""
+"2015-03-17_YB-Eq3",2015-03-17,2015-03-17,"YB","E","3","Lim","Limpets","Type 12",26,0.0875,297.142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to high water patches"
+"2015-03-17_YB-Eq4",2015-03-17,2015-03-17,"YB","E","4","Lim","Limpets","Type 12",38,0.0875,434.285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-03-17_YB-Eq8",2015-03-17,2015-03-17,"YB","E","8","Lim","Limpets","Type 12",24,0.0875,274.285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","12%",""
+"2015-03-17_YB-Eq3",2015-03-17,2015-03-17,"YB","E","3","Ls","Littorina_sitkana","Type 13",16,0.0875,182.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to high water patches"
+"2015-03-17_YB-Eq4",2015-03-17,2015-03-17,"YB","E","4","Ls","Littorina_sitkana","Type 13",56,0.0875,640,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-03-17_YB-Eq8",2015-03-17,2015-03-17,"YB","E","8","Ls","Littorina_sitkana","Type 13",65,0.0875,742.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","12%",""
+"2015-03-17_YB-Eq3",2015-03-17,2015-03-17,"YB","E","3","Mc","Mytilus_californianus","Type 17",11,0.0875,125.714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to high water patches"
+"2015-03-17_YB-Eq4",2015-03-17,2015-03-17,"YB","E","4","Mc","Mytilus_californianus","Type 17",4,0.0875,45.7142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-03-17_YB-Eq8",2015-03-17,2015-03-17,"YB","E","8","Mc","Mytilus_californianus","Type 17",4,0.0875,45.7142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","12%",""
+"2015-03-17_YB-Eq3",2015-03-17,2015-03-17,"YB","E","3","McD","Mytilus_californianus_(dead)","Type 18",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to high water patches"
+"2015-03-17_YB-Eq4",2015-03-17,2015-03-17,"YB","E","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-03-17_YB-Eq8",2015-03-17,2015-03-17,"YB","E","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","12%",""
+"2015-03-17_YB-Eq3",2015-03-17,2015-03-17,"YB","E","3","Myt","Mytilus_spp","Type 7",186,0.0875,2125.71428571429,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to high water patches"
+"2015-03-17_YB-Eq4",2015-03-17,2015-03-17,"YB","E","4","Myt","Mytilus_spp","Type 7",42,0.0875,480,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-03-17_YB-Eq8",2015-03-17,2015-03-17,"YB","E","8","Myt","Mytilus_spp","Type 7",274,0.0875,3131.42857142857,NA,"Stephanie Merhoff","Finished","Full","Full","12%",""
+"2015-03-17_YB-Eq3",2015-03-17,2015-03-17,"YB","E","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to high water patches"
+"2015-03-17_YB-Eq4",2015-03-17,2015-03-17,"YB","E","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-03-17_YB-Eq8",2015-03-17,2015-03-17,"YB","E","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","12%",""
+"2015-03-17_YB-Eq3",2015-03-17,2015-03-17,"YB","E","3","Mt","Mytilus_trossulus","Type 15",56,0.0875,640,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to high water patches"
+"2015-03-17_YB-Eq4",2015-03-17,2015-03-17,"YB","E","4","Mt","Mytilus_trossulus","Type 15",57,0.0875,651.428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-03-17_YB-Eq8",2015-03-17,2015-03-17,"YB","E","8","Mt","Mytilus_trossulus","Type 15",96,0.0875,1097.14285714286,NA,"Stephanie Merhoff","Finished","Full","Full","12%",""
+"2015-03-17_YB-Eq3",2015-03-17,2015-03-17,"YB","E","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to high water patches"
+"2015-03-17_YB-Eq4",2015-03-17,2015-03-17,"YB","E","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-03-17_YB-Eq8",2015-03-17,2015-03-17,"YB","E","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","12%",""
+"2015-03-17_YB-Eq3",2015-03-17,2015-03-17,"YB","E","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to high water patches"
+"2015-03-17_YB-Eq4",2015-03-17,2015-03-17,"YB","E","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-03-17_YB-Eq8",2015-03-17,2015-03-17,"YB","E","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","12%",""
+"2015-03-17_YB-Eq3",2015-03-17,2015-03-17,"YB","E","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to high water patches"
+"2015-03-17_YB-Eq4",2015-03-17,2015-03-17,"YB","E","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-03-17_YB-Eq8",2015-03-17,2015-03-17,"YB","E","8","Nc","Nucella_canaliculata","Type 10",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","12%",""
+"2015-03-17_YB-Eq3",2015-03-17,2015-03-17,"YB","E","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to high water patches"
+"2015-03-17_YB-Eq4",2015-03-17,2015-03-17,"YB","E","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-03-17_YB-Eq8",2015-03-17,2015-03-17,"YB","E","8","Negg","Nucella_eggs","Type 26",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","12%",""
+"2015-03-17_YB-Eq3",2015-03-17,2015-03-17,"YB","E","3","No","Nucella_ostrina","Type 9",5,0.0875,57.1428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to high water patches"
+"2015-03-17_YB-Eq4",2015-03-17,2015-03-17,"YB","E","4","No","Nucella_ostrina","Type 9",7,0.0875,80,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-03-17_YB-Eq8",2015-03-17,2015-03-17,"YB","E","8","No","Nucella_ostrina","Type 9",22,0.0875,251.428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","12%",""
+"2015-03-17_YB-Eq3",2015-03-17,2015-03-17,"YB","E","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to high water patches"
+"2015-03-17_YB-Eq4",2015-03-17,2015-03-17,"YB","E","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-03-17_YB-Eq8",2015-03-17,2015-03-17,"YB","E","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","12%",""
+"2015-03-17_YB-Eq3",2015-03-17,2015-03-17,"YB","E","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to high water patches"
+"2015-03-17_YB-Eq4",2015-03-17,2015-03-17,"YB","E","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-03-17_YB-Eq8",2015-03-17,2015-03-17,"YB","E","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","12%",""
+"2015-03-17_YB-Eq3",2015-03-17,2015-03-17,"YB","E","3","Pp","Pollicipes_polymerus","Type 11",322,0.0875,3680,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to high water patches"
+"2015-03-17_YB-Eq4",2015-03-17,2015-03-17,"YB","E","4","Pp","Pollicipes_polymerus","Type 11",312,0.0875,3565.71428571429,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-03-17_YB-Eq8",2015-03-17,2015-03-17,"YB","E","8","Pp","Pollicipes_polymerus","Type 11",783,0.0875,8948.57142857143,NA,"Stephanie Merhoff","Finished","Full","Full","12%",""
+"2015-03-17_YB-Eq3",2015-03-17,2015-03-17,"YB","E","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to high water patches"
+"2015-03-17_YB-Eq4",2015-03-17,2015-03-17,"YB","E","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-03-17_YB-Eq8",2015-03-17,2015-03-17,"YB","E","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","12%",""
+"2015-03-17_YB-Eq3",2015-03-17,2015-03-17,"YB","E","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to high water patches"
+"2015-03-17_YB-Eq4",2015-03-17,2015-03-17,"YB","E","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-03-17_YB-Eq8",2015-03-17,2015-03-17,"YB","E","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","12%",""
+"2015-03-17_YB-Eq3",2015-03-17,2015-03-17,"YB","E","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to high water patches"
+"2015-03-17_YB-Eq4",2015-03-17,2015-03-17,"YB","E","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-03-17_YB-Eq8",2015-03-17,2015-03-17,"YB","E","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","12%",""
+"2015-03-17_YB-Fq4",2015-03-17,2015-03-17,"YB","F","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-03-17_YB-Fq5",2015-03-17,2015-03-17,"YB","F","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-Fq6",2015-03-17,2015-03-17,"YB","F","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-03-17_YB-Fq4",2015-03-17,2015-03-17,"YB","F","4","Ae","Anemones","Type 14",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-03-17_YB-Fq5",2015-03-17,2015-03-17,"YB","F","5","Ae","Anemones","Type 14",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-Fq6",2015-03-17,2015-03-17,"YB","F","6","Ae","Anemones","Type 14",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-03-17_YB-Fq4",2015-03-17,2015-03-17,"YB","F","4","Bg","Balanus_glandula","Type 1",369,0.0875,4217.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-03-17_YB-Fq5",2015-03-17,2015-03-17,"YB","F","5","Bg","Balanus_glandula","Type 1",322,0.0875,3680,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-Fq6",2015-03-17,2015-03-17,"YB","F","6","Bg","Balanus_glandula","Type 1",453,0.0875,5177.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-03-17_YB-Fq4",2015-03-17,2015-03-17,"YB","F","4","BgD","Balanus_glandula_(dead)","Type 2",140,0.0875,1600,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-03-17_YB-Fq5",2015-03-17,2015-03-17,"YB","F","5","BgD","Balanus_glandula_(dead)","Type 2",142,0.0875,1622.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-Fq6",2015-03-17,2015-03-17,"YB","F","6","BgD","Balanus_glandula_(dead)","Type 2",132,0.0875,1508.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-03-17_YB-Fq4",2015-03-17,2015-03-17,"YB","F","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-03-17_YB-Fq5",2015-03-17,2015-03-17,"YB","F","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-Fq6",2015-03-17,2015-03-17,"YB","F","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-03-17_YB-Fq4",2015-03-17,2015-03-17,"YB","F","4","Cth","Chthamalus_dalli","Type 3",114,0.0875,1302.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-03-17_YB-Fq5",2015-03-17,2015-03-17,"YB","F","5","Cth","Chthamalus_dalli","Type 3",67,0.0875,765.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-Fq6",2015-03-17,2015-03-17,"YB","F","6","Cth","Chthamalus_dalli","Type 3",52,0.0875,594.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-03-17_YB-Fq4",2015-03-17,2015-03-17,"YB","F","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-03-17_YB-Fq5",2015-03-17,2015-03-17,"YB","F","5","CthD","Chthamalus_dalli (dead)","Type 4",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-Fq6",2015-03-17,2015-03-17,"YB","F","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-03-17_YB-Fq4",2015-03-17,2015-03-17,"YB","F","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-03-17_YB-Fq5",2015-03-17,2015-03-17,"YB","F","5","Emp","Emplectonema worm","Type 23",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-Fq6",2015-03-17,2015-03-17,"YB","F","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-03-17_YB-Fq4",2015-03-17,2015-03-17,"YB","F","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-03-17_YB-Fq5",2015-03-17,2015-03-17,"YB","F","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-Fq6",2015-03-17,2015-03-17,"YB","F","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-03-17_YB-Fq4",2015-03-17,2015-03-17,"YB","F","4","Lim","Limpets","Type 12",147,0.0875,1680,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-03-17_YB-Fq5",2015-03-17,2015-03-17,"YB","F","5","Lim","Limpets","Type 12",117,0.0875,1337.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-Fq6",2015-03-17,2015-03-17,"YB","F","6","Lim","Limpets","Type 12",136,0.0875,1554.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-03-17_YB-Fq4",2015-03-17,2015-03-17,"YB","F","4","Ls","Littorina_sitkana","Type 13",51,0.0875,582.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-03-17_YB-Fq5",2015-03-17,2015-03-17,"YB","F","5","Ls","Littorina_sitkana","Type 13",87,0.0875,994.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-Fq6",2015-03-17,2015-03-17,"YB","F","6","Ls","Littorina_sitkana","Type 13",91,0.0875,1040,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-03-17_YB-Fq4",2015-03-17,2015-03-17,"YB","F","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-03-17_YB-Fq5",2015-03-17,2015-03-17,"YB","F","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-Fq6",2015-03-17,2015-03-17,"YB","F","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-03-17_YB-Fq4",2015-03-17,2015-03-17,"YB","F","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-03-17_YB-Fq5",2015-03-17,2015-03-17,"YB","F","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-Fq6",2015-03-17,2015-03-17,"YB","F","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-03-17_YB-Fq4",2015-03-17,2015-03-17,"YB","F","4","Myt","Mytilus_spp","Type 7",81,0.0875,925.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-03-17_YB-Fq5",2015-03-17,2015-03-17,"YB","F","5","Myt","Mytilus_spp","Type 7",79,0.0875,902.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-Fq6",2015-03-17,2015-03-17,"YB","F","6","Myt","Mytilus_spp","Type 7",214,0.0875,2445.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-03-17_YB-Fq4",2015-03-17,2015-03-17,"YB","F","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-03-17_YB-Fq5",2015-03-17,2015-03-17,"YB","F","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-Fq6",2015-03-17,2015-03-17,"YB","F","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-03-17_YB-Fq4",2015-03-17,2015-03-17,"YB","F","4","Mt","Mytilus_trossulus","Type 15",334,0.0875,3817.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-03-17_YB-Fq5",2015-03-17,2015-03-17,"YB","F","5","Mt","Mytilus_trossulus","Type 15",361,0.0875,4125.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-Fq6",2015-03-17,2015-03-17,"YB","F","6","Mt","Mytilus_trossulus","Type 15",360,0.0875,4114.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-03-17_YB-Fq4",2015-03-17,2015-03-17,"YB","F","4","MtD","Mytilus_trossulus_(dead)","Type 16",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-03-17_YB-Fq5",2015-03-17,2015-03-17,"YB","F","5","MtD","Mytilus_trossulus_(dead)","Type 16",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-Fq6",2015-03-17,2015-03-17,"YB","F","6","MtD","Mytilus_trossulus_(dead)","Type 16",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-03-17_YB-Fq4",2015-03-17,2015-03-17,"YB","F","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-03-17_YB-Fq5",2015-03-17,2015-03-17,"YB","F","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-Fq6",2015-03-17,2015-03-17,"YB","F","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-03-17_YB-Fq4",2015-03-17,2015-03-17,"YB","F","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-03-17_YB-Fq5",2015-03-17,2015-03-17,"YB","F","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-Fq6",2015-03-17,2015-03-17,"YB","F","6","Nc","Nucella_canaliculata","Type 10",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-03-17_YB-Fq4",2015-03-17,2015-03-17,"YB","F","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-03-17_YB-Fq5",2015-03-17,2015-03-17,"YB","F","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-Fq6",2015-03-17,2015-03-17,"YB","F","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-03-17_YB-Fq4",2015-03-17,2015-03-17,"YB","F","4","No","Nucella_ostrina","Type 9",9,0.0875,102.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-03-17_YB-Fq5",2015-03-17,2015-03-17,"YB","F","5","No","Nucella_ostrina","Type 9",10,0.0875,114.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-Fq6",2015-03-17,2015-03-17,"YB","F","6","No","Nucella_ostrina","Type 9",10,0.0875,114.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-03-17_YB-Fq4",2015-03-17,2015-03-17,"YB","F","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-03-17_YB-Fq5",2015-03-17,2015-03-17,"YB","F","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-Fq6",2015-03-17,2015-03-17,"YB","F","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-03-17_YB-Fq4",2015-03-17,2015-03-17,"YB","F","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-03-17_YB-Fq5",2015-03-17,2015-03-17,"YB","F","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-Fq6",2015-03-17,2015-03-17,"YB","F","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-03-17_YB-Fq4",2015-03-17,2015-03-17,"YB","F","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-03-17_YB-Fq5",2015-03-17,2015-03-17,"YB","F","5","Pp","Pollicipes_polymerus","Type 11",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-Fq6",2015-03-17,2015-03-17,"YB","F","6","Pp","Pollicipes_polymerus","Type 11",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-03-17_YB-Fq4",2015-03-17,2015-03-17,"YB","F","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-03-17_YB-Fq5",2015-03-17,2015-03-17,"YB","F","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-Fq6",2015-03-17,2015-03-17,"YB","F","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-03-17_YB-Fq4",2015-03-17,2015-03-17,"YB","F","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-03-17_YB-Fq5",2015-03-17,2015-03-17,"YB","F","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-Fq6",2015-03-17,2015-03-17,"YB","F","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-03-17_YB-Fq4",2015-03-17,2015-03-17,"YB","F","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-03-17_YB-Fq5",2015-03-17,2015-03-17,"YB","F","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-03-17_YB-Fq6",2015-03-17,2015-03-17,"YB","F","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-03-17_YB-Gq3",2015-03-17,2015-03-17,"YB","G","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","15%",""
+"2015-03-17_YB-Gq5",2015-03-17,2015-03-17,"YB","G","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts low due to water cover. ~50% underwater."
+"2015-03-17_YB-Gq8",2015-03-17,2015-03-17,"YB","G","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","12%",""
+"2015-03-17_YB-Gq3",2015-03-17,2015-03-17,"YB","G","3","Ae","Anemones","Type 14",24,0.0875,274.285714285714,NA,"Celeste Moen","Finished","Full","Full","15%",""
+"2015-03-17_YB-Gq5",2015-03-17,2015-03-17,"YB","G","5","Ae","Anemones","Type 14",48,0.0875,548.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts low due to water cover. ~50% underwater."
+"2015-03-17_YB-Gq8",2015-03-17,2015-03-17,"YB","G","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","12%",""
+"2015-03-17_YB-Gq3",2015-03-17,2015-03-17,"YB","G","3","Bg","Balanus_glandula","Type 1",140,0.0875,1600,NA,"Celeste Moen","Finished","Full","Full","15%",""
+"2015-03-17_YB-Gq5",2015-03-17,2015-03-17,"YB","G","5","Bg","Balanus_glandula","Type 1",206,0.0875,2354.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts low due to water cover. ~50% underwater."
+"2015-03-17_YB-Gq8",2015-03-17,2015-03-17,"YB","G","8","Bg","Balanus_glandula","Type 1",840,0.0875,9600,NA,"Stephanie Merhoff","Finished","Full","Full","12%",""
+"2015-03-17_YB-Gq3",2015-03-17,2015-03-17,"YB","G","3","BgD","Balanus_glandula_(dead)","Type 2",68,0.0875,777.142857142857,NA,"Celeste Moen","Finished","Full","Full","15%",""
+"2015-03-17_YB-Gq5",2015-03-17,2015-03-17,"YB","G","5","BgD","Balanus_glandula_(dead)","Type 2",68,0.0875,777.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts low due to water cover. ~50% underwater."
+"2015-03-17_YB-Gq8",2015-03-17,2015-03-17,"YB","G","8","BgD","Balanus_glandula_(dead)","Type 2",40,0.0875,457.142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","12%",""
+"2015-03-17_YB-Gq3",2015-03-17,2015-03-17,"YB","G","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","15%",""
+"2015-03-17_YB-Gq5",2015-03-17,2015-03-17,"YB","G","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts low due to water cover. ~50% underwater."
+"2015-03-17_YB-Gq8",2015-03-17,2015-03-17,"YB","G","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","12%",""
+"2015-03-17_YB-Gq3",2015-03-17,2015-03-17,"YB","G","3","Cth","Chthamalus_dalli","Type 3",68,0.0875,777.142857142857,NA,"Celeste Moen","Finished","Full","Full","15%",""
+"2015-03-17_YB-Gq5",2015-03-17,2015-03-17,"YB","G","5","Cth","Chthamalus_dalli","Type 3",90,0.0875,1028.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts low due to water cover. ~50% underwater."
+"2015-03-17_YB-Gq8",2015-03-17,2015-03-17,"YB","G","8","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","12%",""
+"2015-03-17_YB-Gq3",2015-03-17,2015-03-17,"YB","G","3","CthD","Chthamalus_dalli (dead)","Type 4",1,0.0875,11.4285714285714,NA,"Celeste Moen","Finished","Full","Full","15%",""
+"2015-03-17_YB-Gq5",2015-03-17,2015-03-17,"YB","G","5","CthD","Chthamalus_dalli (dead)","Type 4",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts low due to water cover. ~50% underwater."
+"2015-03-17_YB-Gq8",2015-03-17,2015-03-17,"YB","G","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","12%",""
+"2015-03-17_YB-Gq3",2015-03-17,2015-03-17,"YB","G","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","15%",""
+"2015-03-17_YB-Gq5",2015-03-17,2015-03-17,"YB","G","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts low due to water cover. ~50% underwater."
+"2015-03-17_YB-Gq8",2015-03-17,2015-03-17,"YB","G","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","12%",""
+"2015-03-17_YB-Gq3",2015-03-17,2015-03-17,"YB","G","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","15%",""
+"2015-03-17_YB-Gq5",2015-03-17,2015-03-17,"YB","G","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts low due to water cover. ~50% underwater."
+"2015-03-17_YB-Gq8",2015-03-17,2015-03-17,"YB","G","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","12%",""
+"2015-03-17_YB-Gq3",2015-03-17,2015-03-17,"YB","G","3","Lim","Limpets","Type 12",3,0.0875,34.2857142857143,NA,"Celeste Moen","Finished","Full","Full","15%",""
+"2015-03-17_YB-Gq5",2015-03-17,2015-03-17,"YB","G","5","Lim","Limpets","Type 12",38,0.0875,434.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts low due to water cover. ~50% underwater."
+"2015-03-17_YB-Gq8",2015-03-17,2015-03-17,"YB","G","8","Lim","Limpets","Type 12",6,0.0875,68.5714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","12%",""
+"2015-03-17_YB-Gq3",2015-03-17,2015-03-17,"YB","G","3","Ls","Littorina_sitkana","Type 13",9,0.0875,102.857142857143,NA,"Celeste Moen","Finished","Full","Full","15%",""
+"2015-03-17_YB-Gq5",2015-03-17,2015-03-17,"YB","G","5","Ls","Littorina_sitkana","Type 13",10,0.0875,114.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts low due to water cover. ~50% underwater."
+"2015-03-17_YB-Gq8",2015-03-17,2015-03-17,"YB","G","8","Ls","Littorina_sitkana","Type 13",68,0.0875,777.142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","12%",""
+"2015-03-17_YB-Gq3",2015-03-17,2015-03-17,"YB","G","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","15%",""
+"2015-03-17_YB-Gq5",2015-03-17,2015-03-17,"YB","G","5","Mc","Mytilus_californianus","Type 17",203,0.0875,2320,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts low due to water cover. ~50% underwater."
+"2015-03-17_YB-Gq8",2015-03-17,2015-03-17,"YB","G","8","Mc","Mytilus_californianus","Type 17",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","12%",""
+"2015-03-17_YB-Gq3",2015-03-17,2015-03-17,"YB","G","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","15%",""
+"2015-03-17_YB-Gq5",2015-03-17,2015-03-17,"YB","G","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts low due to water cover. ~50% underwater."
+"2015-03-17_YB-Gq8",2015-03-17,2015-03-17,"YB","G","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","12%",""
+"2015-03-17_YB-Gq3",2015-03-17,2015-03-17,"YB","G","3","Myt","Mytilus_spp","Type 7",241,0.0875,2754.28571428571,NA,"Celeste Moen","Finished","Full","Full","15%",""
+"2015-03-17_YB-Gq5",2015-03-17,2015-03-17,"YB","G","5","Myt","Mytilus_spp","Type 7",277,0.0875,3165.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts low due to water cover. ~50% underwater."
+"2015-03-17_YB-Gq8",2015-03-17,2015-03-17,"YB","G","8","Myt","Mytilus_spp","Type 7",510,0.0875,5828.57142857143,NA,"Stephanie Merhoff","Finished","Full","Full","12%",""
+"2015-03-17_YB-Gq3",2015-03-17,2015-03-17,"YB","G","3","MytD","Mytilus_spp_(dead)","Type 8",1,0.0875,11.4285714285714,NA,"Celeste Moen","Finished","Full","Full","15%",""
+"2015-03-17_YB-Gq5",2015-03-17,2015-03-17,"YB","G","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts low due to water cover. ~50% underwater."
+"2015-03-17_YB-Gq8",2015-03-17,2015-03-17,"YB","G","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","12%",""
+"2015-03-17_YB-Gq3",2015-03-17,2015-03-17,"YB","G","3","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","15%",""
+"2015-03-17_YB-Gq5",2015-03-17,2015-03-17,"YB","G","5","Mt","Mytilus_trossulus","Type 15",11,0.0875,125.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts low due to water cover. ~50% underwater."
+"2015-03-17_YB-Gq8",2015-03-17,2015-03-17,"YB","G","8","Mt","Mytilus_trossulus","Type 15",172,0.0875,1965.71428571429,NA,"Stephanie Merhoff","Finished","Full","Full","12%",""
+"2015-03-17_YB-Gq3",2015-03-17,2015-03-17,"YB","G","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","15%",""
+"2015-03-17_YB-Gq5",2015-03-17,2015-03-17,"YB","G","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts low due to water cover. ~50% underwater."
+"2015-03-17_YB-Gq8",2015-03-17,2015-03-17,"YB","G","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","12%",""
+"2015-03-17_YB-Gq3",2015-03-17,2015-03-17,"YB","G","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","15%",""
+"2015-03-17_YB-Gq5",2015-03-17,2015-03-17,"YB","G","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts low due to water cover. ~50% underwater."
+"2015-03-17_YB-Gq8",2015-03-17,2015-03-17,"YB","G","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","12%",""
+"2015-03-17_YB-Gq3",2015-03-17,2015-03-17,"YB","G","3","Nc","Nucella_canaliculata","Type 10",2,0.0875,22.8571428571429,NA,"Celeste Moen","Finished","Full","Full","15%",""
+"2015-03-17_YB-Gq5",2015-03-17,2015-03-17,"YB","G","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts low due to water cover. ~50% underwater."
+"2015-03-17_YB-Gq8",2015-03-17,2015-03-17,"YB","G","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","12%",""
+"2015-03-17_YB-Gq3",2015-03-17,2015-03-17,"YB","G","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","15%",""
+"2015-03-17_YB-Gq5",2015-03-17,2015-03-17,"YB","G","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts low due to water cover. ~50% underwater."
+"2015-03-17_YB-Gq8",2015-03-17,2015-03-17,"YB","G","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","12%",""
+"2015-03-17_YB-Gq3",2015-03-17,2015-03-17,"YB","G","3","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Celeste Moen","Finished","Full","Full","15%",""
+"2015-03-17_YB-Gq5",2015-03-17,2015-03-17,"YB","G","5","No","Nucella_ostrina","Type 9",10,0.0875,114.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts low due to water cover. ~50% underwater."
+"2015-03-17_YB-Gq8",2015-03-17,2015-03-17,"YB","G","8","No","Nucella_ostrina","Type 9",7,0.0875,80,NA,"Stephanie Merhoff","Finished","Full","Full","12%",""
+"2015-03-17_YB-Gq3",2015-03-17,2015-03-17,"YB","G","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","15%",""
+"2015-03-17_YB-Gq5",2015-03-17,2015-03-17,"YB","G","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts low due to water cover. ~50% underwater."
+"2015-03-17_YB-Gq8",2015-03-17,2015-03-17,"YB","G","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","12%",""
+"2015-03-17_YB-Gq3",2015-03-17,2015-03-17,"YB","G","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","15%",""
+"2015-03-17_YB-Gq5",2015-03-17,2015-03-17,"YB","G","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts low due to water cover. ~50% underwater."
+"2015-03-17_YB-Gq8",2015-03-17,2015-03-17,"YB","G","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","12%",""
+"2015-03-17_YB-Gq3",2015-03-17,2015-03-17,"YB","G","3","Pp","Pollicipes_polymerus","Type 11",74,0.0875,845.714285714286,NA,"Celeste Moen","Finished","Full","Full","15%",""
+"2015-03-17_YB-Gq5",2015-03-17,2015-03-17,"YB","G","5","Pp","Pollicipes_polymerus","Type 11",435,0.0875,4971.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts low due to water cover. ~50% underwater."
+"2015-03-17_YB-Gq8",2015-03-17,2015-03-17,"YB","G","8","Pp","Pollicipes_polymerus","Type 11",679,0.0875,7760,NA,"Stephanie Merhoff","Finished","Full","Full","12%",""
+"2015-03-17_YB-Gq3",2015-03-17,2015-03-17,"YB","G","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","15%",""
+"2015-03-17_YB-Gq5",2015-03-17,2015-03-17,"YB","G","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts low due to water cover. ~50% underwater."
+"2015-03-17_YB-Gq8",2015-03-17,2015-03-17,"YB","G","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","12%",""
+"2015-03-17_YB-Gq3",2015-03-17,2015-03-17,"YB","G","3","Sc","Semibalanus_cariosus","Type 5",4,0.0875,45.7142857142857,NA,"Celeste Moen","Finished","Full","Full","15%",""
+"2015-03-17_YB-Gq5",2015-03-17,2015-03-17,"YB","G","5","Sc","Semibalanus_cariosus","Type 5",11,0.0875,125.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts low due to water cover. ~50% underwater."
+"2015-03-17_YB-Gq8",2015-03-17,2015-03-17,"YB","G","8","Sc","Semibalanus_cariosus","Type 5",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","12%",""
+"2015-03-17_YB-Gq3",2015-03-17,2015-03-17,"YB","G","3","ScD","Semibalanus_cariosus_(dead)","Type 6",4,0.0875,45.7142857142857,NA,"Celeste Moen","Finished","Full","Full","15%",""
+"2015-03-17_YB-Gq5",2015-03-17,2015-03-17,"YB","G","5","ScD","Semibalanus_cariosus_(dead)","Type 6",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts low due to water cover. ~50% underwater."
+"2015-03-17_YB-Gq8",2015-03-17,2015-03-17,"YB","G","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","12%",""
+"2015-04-19_YB-Aq6",2015-04-19,2015-04-19,"YB","A","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","15%",""
+"2015-04-19_YB-Aq7",2015-04-19,2015-04-19,"YB","A","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","22%",""
+"2015-04-19_YB-Aq9",2015-04-19,2015-04-19,"YB","A","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-04-19_YB-Aq6",2015-04-19,2015-04-19,"YB","A","6","Ae","Anemones","Type 14",48,0.0875,548.571428571429,NA,"Celeste Moen","Finished","Full","Full","15%",""
+"2015-04-19_YB-Aq7",2015-04-19,2015-04-19,"YB","A","7","Ae","Anemones","Type 14",41,0.0875,468.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","22%",""
+"2015-04-19_YB-Aq9",2015-04-19,2015-04-19,"YB","A","9","Ae","Anemones","Type 14",54,0.0875,617.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-04-19_YB-Aq6",2015-04-19,2015-04-19,"YB","A","6","Bg","Balanus_glandula","Type 1",204,0.0875,2331.42857142857,NA,"Celeste Moen","Finished","Full","Full","15%",""
+"2015-04-19_YB-Aq7",2015-04-19,2015-04-19,"YB","A","7","Bg","Balanus_glandula","Type 1",199,0.0875,2274.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","22%",""
+"2015-04-19_YB-Aq9",2015-04-19,2015-04-19,"YB","A","9","Bg","Balanus_glandula","Type 1",334,0.0875,3817.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-04-19_YB-Aq6",2015-04-19,2015-04-19,"YB","A","6","BgD","Balanus_glandula_(dead)","Type 2",105,0.0875,1200,NA,"Celeste Moen","Finished","Full","Full","15%",""
+"2015-04-19_YB-Aq7",2015-04-19,2015-04-19,"YB","A","7","BgD","Balanus_glandula_(dead)","Type 2",115,0.0875,1314.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","22%",""
+"2015-04-19_YB-Aq9",2015-04-19,2015-04-19,"YB","A","9","BgD","Balanus_glandula_(dead)","Type 2",38,0.0875,434.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-04-19_YB-Aq6",2015-04-19,2015-04-19,"YB","A","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","15%",""
+"2015-04-19_YB-Aq7",2015-04-19,2015-04-19,"YB","A","7","Chi","Chiton_spp","Type 22",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","22%",""
+"2015-04-19_YB-Aq9",2015-04-19,2015-04-19,"YB","A","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-04-19_YB-Aq6",2015-04-19,2015-04-19,"YB","A","6","Cth","Chthamalus_dalli","Type 3",86,0.0875,982.857142857143,NA,"Celeste Moen","Finished","Full","Full","15%",""
+"2015-04-19_YB-Aq7",2015-04-19,2015-04-19,"YB","A","7","Cth","Chthamalus_dalli","Type 3",164,0.0875,1874.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","22%",""
+"2015-04-19_YB-Aq9",2015-04-19,2015-04-19,"YB","A","9","Cth","Chthamalus_dalli","Type 3",129,0.0875,1474.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-04-19_YB-Aq6",2015-04-19,2015-04-19,"YB","A","6","CthD","Chthamalus_dalli (dead)","Type 4",8,0.0875,91.4285714285714,NA,"Celeste Moen","Finished","Full","Full","15%",""
+"2015-04-19_YB-Aq7",2015-04-19,2015-04-19,"YB","A","7","CthD","Chthamalus_dalli (dead)","Type 4",29,0.0875,331.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","22%",""
+"2015-04-19_YB-Aq9",2015-04-19,2015-04-19,"YB","A","9","CthD","Chthamalus_dalli (dead)","Type 4",20,0.0875,228.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-04-19_YB-Aq6",2015-04-19,2015-04-19,"YB","A","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","15%",""
+"2015-04-19_YB-Aq7",2015-04-19,2015-04-19,"YB","A","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","22%",""
+"2015-04-19_YB-Aq9",2015-04-19,2015-04-19,"YB","A","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-04-19_YB-Aq6",2015-04-19,2015-04-19,"YB","A","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","15%",""
+"2015-04-19_YB-Aq7",2015-04-19,2015-04-19,"YB","A","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","22%",""
+"2015-04-19_YB-Aq9",2015-04-19,2015-04-19,"YB","A","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-04-19_YB-Aq6",2015-04-19,2015-04-19,"YB","A","6","Lim","Limpets","Type 12",37,0.0875,422.857142857143,NA,"Celeste Moen","Finished","Full","Full","15%",""
+"2015-04-19_YB-Aq7",2015-04-19,2015-04-19,"YB","A","7","Lim","Limpets","Type 12",177,0.0875,2022.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","22%",""
+"2015-04-19_YB-Aq9",2015-04-19,2015-04-19,"YB","A","9","Lim","Limpets","Type 12",169,0.0875,1931.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-04-19_YB-Aq6",2015-04-19,2015-04-19,"YB","A","6","Ls","Littorina_sitkana","Type 13",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","15%",""
+"2015-04-19_YB-Aq7",2015-04-19,2015-04-19,"YB","A","7","Ls","Littorina_sitkana","Type 13",25,0.0875,285.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","22%",""
+"2015-04-19_YB-Aq9",2015-04-19,2015-04-19,"YB","A","9","Ls","Littorina_sitkana","Type 13",29,0.0875,331.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-04-19_YB-Aq6",2015-04-19,2015-04-19,"YB","A","6","Mc","Mytilus_californianus","Type 17",7,0.0875,80,NA,"Celeste Moen","Finished","Full","Full","15%",""
+"2015-04-19_YB-Aq7",2015-04-19,2015-04-19,"YB","A","7","Mc","Mytilus_californianus","Type 17",11,0.0875,125.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","22%",""
+"2015-04-19_YB-Aq9",2015-04-19,2015-04-19,"YB","A","9","Mc","Mytilus_californianus","Type 17",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-04-19_YB-Aq6",2015-04-19,2015-04-19,"YB","A","6","McD","Mytilus_californianus_(dead)","Type 18",1,0.0875,11.4285714285714,NA,"Celeste Moen","Finished","Full","Full","15%",""
+"2015-04-19_YB-Aq7",2015-04-19,2015-04-19,"YB","A","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","22%",""
+"2015-04-19_YB-Aq9",2015-04-19,2015-04-19,"YB","A","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-04-19_YB-Aq6",2015-04-19,2015-04-19,"YB","A","6","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","15%",""
+"2015-04-19_YB-Aq7",2015-04-19,2015-04-19,"YB","A","7","Myt","Mytilus_spp","Type 7",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","22%",""
+"2015-04-19_YB-Aq9",2015-04-19,2015-04-19,"YB","A","9","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-04-19_YB-Aq6",2015-04-19,2015-04-19,"YB","A","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","15%",""
+"2015-04-19_YB-Aq7",2015-04-19,2015-04-19,"YB","A","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","22%",""
+"2015-04-19_YB-Aq9",2015-04-19,2015-04-19,"YB","A","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-04-19_YB-Aq6",2015-04-19,2015-04-19,"YB","A","6","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","15%",""
+"2015-04-19_YB-Aq7",2015-04-19,2015-04-19,"YB","A","7","Mt","Mytilus_trossulus","Type 15",30,0.0875,342.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","22%",""
+"2015-04-19_YB-Aq9",2015-04-19,2015-04-19,"YB","A","9","Mt","Mytilus_trossulus","Type 15",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-04-19_YB-Aq6",2015-04-19,2015-04-19,"YB","A","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","15%",""
+"2015-04-19_YB-Aq7",2015-04-19,2015-04-19,"YB","A","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","22%",""
+"2015-04-19_YB-Aq9",2015-04-19,2015-04-19,"YB","A","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-04-19_YB-Aq6",2015-04-19,2015-04-19,"YB","A","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","15%",""
+"2015-04-19_YB-Aq7",2015-04-19,2015-04-19,"YB","A","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","22%",""
+"2015-04-19_YB-Aq9",2015-04-19,2015-04-19,"YB","A","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-04-19_YB-Aq6",2015-04-19,2015-04-19,"YB","A","6","Nc","Nucella_canaliculata","Type 10",2,0.0875,22.8571428571429,NA,"Celeste Moen","Finished","Full","Full","15%",""
+"2015-04-19_YB-Aq7",2015-04-19,2015-04-19,"YB","A","7","Nc","Nucella_canaliculata","Type 10",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","22%",""
+"2015-04-19_YB-Aq9",2015-04-19,2015-04-19,"YB","A","9","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-04-19_YB-Aq6",2015-04-19,2015-04-19,"YB","A","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","15%",""
+"2015-04-19_YB-Aq7",2015-04-19,2015-04-19,"YB","A","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","22%",""
+"2015-04-19_YB-Aq9",2015-04-19,2015-04-19,"YB","A","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-04-19_YB-Aq6",2015-04-19,2015-04-19,"YB","A","6","No","Nucella_ostrina","Type 9",26,0.0875,297.142857142857,NA,"Celeste Moen","Finished","Full","Full","15%",""
+"2015-04-19_YB-Aq7",2015-04-19,2015-04-19,"YB","A","7","No","Nucella_ostrina","Type 9",26,0.0875,297.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","22%",""
+"2015-04-19_YB-Aq9",2015-04-19,2015-04-19,"YB","A","9","No","Nucella_ostrina","Type 9",36,0.0875,411.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-04-19_YB-Aq6",2015-04-19,2015-04-19,"YB","A","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","15%",""
+"2015-04-19_YB-Aq7",2015-04-19,2015-04-19,"YB","A","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","22%",""
+"2015-04-19_YB-Aq9",2015-04-19,2015-04-19,"YB","A","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-04-19_YB-Aq6",2015-04-19,2015-04-19,"YB","A","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","15%",""
+"2015-04-19_YB-Aq7",2015-04-19,2015-04-19,"YB","A","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","22%",""
+"2015-04-19_YB-Aq9",2015-04-19,2015-04-19,"YB","A","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-04-19_YB-Aq6",2015-04-19,2015-04-19,"YB","A","6","Pp","Pollicipes_polymerus","Type 11",157,0.0875,1794.28571428571,NA,"Celeste Moen","Finished","Full","Full","15%",""
+"2015-04-19_YB-Aq7",2015-04-19,2015-04-19,"YB","A","7","Pp","Pollicipes_polymerus","Type 11",299,0.0875,3417.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","22%",""
+"2015-04-19_YB-Aq9",2015-04-19,2015-04-19,"YB","A","9","Pp","Pollicipes_polymerus","Type 11",306,0.0875,3497.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-04-19_YB-Aq6",2015-04-19,2015-04-19,"YB","A","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","15%",""
+"2015-04-19_YB-Aq7",2015-04-19,2015-04-19,"YB","A","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","22%",""
+"2015-04-19_YB-Aq9",2015-04-19,2015-04-19,"YB","A","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-04-19_YB-Aq6",2015-04-19,2015-04-19,"YB","A","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","15%",""
+"2015-04-19_YB-Aq7",2015-04-19,2015-04-19,"YB","A","7","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","22%",""
+"2015-04-19_YB-Aq9",2015-04-19,2015-04-19,"YB","A","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-04-19_YB-Aq6",2015-04-19,2015-04-19,"YB","A","6","ScD","Semibalanus_cariosus_(dead)","Type 6",1,0.0875,11.4285714285714,NA,"Celeste Moen","Finished","Full","Full","15%",""
+"2015-04-19_YB-Aq7",2015-04-19,2015-04-19,"YB","A","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","22%",""
+"2015-04-19_YB-Aq9",2015-04-19,2015-04-19,"YB","A","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-04-19_YB-ABq1",2015-04-19,2015-04-19,"YB","AB","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","13%",""
+"2015-04-19_YB-ABq2",2015-04-19,2015-04-19,"YB","AB","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare."
+"2015-04-19_YB-ABq4",2015-04-19,2015-04-19,"YB","AB","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-04-19_YB-ABq1",2015-04-19,2015-04-19,"YB","AB","1","Ae","Anemones","Type 14",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","13%",""
+"2015-04-19_YB-ABq2",2015-04-19,2015-04-19,"YB","AB","2","Ae","Anemones","Type 14",20,0.0875,228.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare."
+"2015-04-19_YB-ABq4",2015-04-19,2015-04-19,"YB","AB","4","Ae","Anemones","Type 14",15,0.0875,171.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-04-19_YB-ABq1",2015-04-19,2015-04-19,"YB","AB","1","Bg","Balanus_glandula","Type 1",60,0.0875,685.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","13%",""
+"2015-04-19_YB-ABq2",2015-04-19,2015-04-19,"YB","AB","2","Bg","Balanus_glandula","Type 1",36,0.0875,411.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare."
+"2015-04-19_YB-ABq4",2015-04-19,2015-04-19,"YB","AB","4","Bg","Balanus_glandula","Type 1",147,0.0875,1680,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-04-19_YB-ABq1",2015-04-19,2015-04-19,"YB","AB","1","BgD","Balanus_glandula_(dead)","Type 2",54,0.0875,617.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","13%",""
+"2015-04-19_YB-ABq2",2015-04-19,2015-04-19,"YB","AB","2","BgD","Balanus_glandula_(dead)","Type 2",16,0.0875,182.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare."
+"2015-04-19_YB-ABq4",2015-04-19,2015-04-19,"YB","AB","4","BgD","Balanus_glandula_(dead)","Type 2",27,0.0875,308.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-04-19_YB-ABq1",2015-04-19,2015-04-19,"YB","AB","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","13%",""
+"2015-04-19_YB-ABq2",2015-04-19,2015-04-19,"YB","AB","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare."
+"2015-04-19_YB-ABq4",2015-04-19,2015-04-19,"YB","AB","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-04-19_YB-ABq1",2015-04-19,2015-04-19,"YB","AB","1","Cth","Chthamalus_dalli","Type 3",28,0.0875,320,NA,"Beatriz Vaca","Finished","Full","Full","13%",""
+"2015-04-19_YB-ABq2",2015-04-19,2015-04-19,"YB","AB","2","Cth","Chthamalus_dalli","Type 3",11,0.0875,125.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare."
+"2015-04-19_YB-ABq4",2015-04-19,2015-04-19,"YB","AB","4","Cth","Chthamalus_dalli","Type 3",69,0.0875,788.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-04-19_YB-ABq1",2015-04-19,2015-04-19,"YB","AB","1","CthD","Chthamalus_dalli (dead)","Type 4",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Full","13%",""
+"2015-04-19_YB-ABq2",2015-04-19,2015-04-19,"YB","AB","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare."
+"2015-04-19_YB-ABq4",2015-04-19,2015-04-19,"YB","AB","4","CthD","Chthamalus_dalli (dead)","Type 4",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-04-19_YB-ABq1",2015-04-19,2015-04-19,"YB","AB","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","13%",""
+"2015-04-19_YB-ABq2",2015-04-19,2015-04-19,"YB","AB","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare."
+"2015-04-19_YB-ABq4",2015-04-19,2015-04-19,"YB","AB","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-04-19_YB-ABq1",2015-04-19,2015-04-19,"YB","AB","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","13%",""
+"2015-04-19_YB-ABq2",2015-04-19,2015-04-19,"YB","AB","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare."
+"2015-04-19_YB-ABq4",2015-04-19,2015-04-19,"YB","AB","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-04-19_YB-ABq1",2015-04-19,2015-04-19,"YB","AB","1","Lim","Limpets","Type 12",82,0.0875,937.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","13%",""
+"2015-04-19_YB-ABq2",2015-04-19,2015-04-19,"YB","AB","2","Lim","Limpets","Type 12",41,0.0875,468.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare."
+"2015-04-19_YB-ABq4",2015-04-19,2015-04-19,"YB","AB","4","Lim","Limpets","Type 12",196,0.0875,2240,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-04-19_YB-ABq1",2015-04-19,2015-04-19,"YB","AB","1","Ls","Littorina_sitkana","Type 13",100,0.0875,1142.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","13%",""
+"2015-04-19_YB-ABq2",2015-04-19,2015-04-19,"YB","AB","2","Ls","Littorina_sitkana","Type 13",45,0.0875,514.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare."
+"2015-04-19_YB-ABq4",2015-04-19,2015-04-19,"YB","AB","4","Ls","Littorina_sitkana","Type 13",59,0.0875,674.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-04-19_YB-ABq1",2015-04-19,2015-04-19,"YB","AB","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","13%",""
+"2015-04-19_YB-ABq2",2015-04-19,2015-04-19,"YB","AB","2","Mc","Mytilus_californianus","Type 17",18,0.0875,205.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare."
+"2015-04-19_YB-ABq4",2015-04-19,2015-04-19,"YB","AB","4","Mc","Mytilus_californianus","Type 17",47,0.0875,537.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-04-19_YB-ABq1",2015-04-19,2015-04-19,"YB","AB","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","13%",""
+"2015-04-19_YB-ABq2",2015-04-19,2015-04-19,"YB","AB","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare."
+"2015-04-19_YB-ABq4",2015-04-19,2015-04-19,"YB","AB","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-04-19_YB-ABq1",2015-04-19,2015-04-19,"YB","AB","1","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","13%",""
+"2015-04-19_YB-ABq2",2015-04-19,2015-04-19,"YB","AB","2","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare."
+"2015-04-19_YB-ABq4",2015-04-19,2015-04-19,"YB","AB","4","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-04-19_YB-ABq1",2015-04-19,2015-04-19,"YB","AB","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","13%",""
+"2015-04-19_YB-ABq2",2015-04-19,2015-04-19,"YB","AB","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare."
+"2015-04-19_YB-ABq4",2015-04-19,2015-04-19,"YB","AB","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-04-19_YB-ABq1",2015-04-19,2015-04-19,"YB","AB","1","Mt","Mytilus_trossulus","Type 15",65,0.0875,742.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","13%",""
+"2015-04-19_YB-ABq2",2015-04-19,2015-04-19,"YB","AB","2","Mt","Mytilus_trossulus","Type 15",204,0.0875,2331.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare."
+"2015-04-19_YB-ABq4",2015-04-19,2015-04-19,"YB","AB","4","Mt","Mytilus_trossulus","Type 15",113,0.0875,1291.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-04-19_YB-ABq1",2015-04-19,2015-04-19,"YB","AB","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","13%",""
+"2015-04-19_YB-ABq2",2015-04-19,2015-04-19,"YB","AB","2","MtD","Mytilus_trossulus_(dead)","Type 16",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare."
+"2015-04-19_YB-ABq4",2015-04-19,2015-04-19,"YB","AB","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-04-19_YB-ABq1",2015-04-19,2015-04-19,"YB","AB","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","13%",""
+"2015-04-19_YB-ABq2",2015-04-19,2015-04-19,"YB","AB","2","Ner","Nereis_worm","Type 24",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare."
+"2015-04-19_YB-ABq4",2015-04-19,2015-04-19,"YB","AB","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-04-19_YB-ABq1",2015-04-19,2015-04-19,"YB","AB","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","13%",""
+"2015-04-19_YB-ABq2",2015-04-19,2015-04-19,"YB","AB","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare."
+"2015-04-19_YB-ABq4",2015-04-19,2015-04-19,"YB","AB","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-04-19_YB-ABq1",2015-04-19,2015-04-19,"YB","AB","1","Negg","Nucella_eggs","Type 26",89,0.0875,1017.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","13%",""
+"2015-04-19_YB-ABq2",2015-04-19,2015-04-19,"YB","AB","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare."
+"2015-04-19_YB-ABq4",2015-04-19,2015-04-19,"YB","AB","4","Negg","Nucella_eggs","Type 26",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-04-19_YB-ABq1",2015-04-19,2015-04-19,"YB","AB","1","No","Nucella_ostrina","Type 9",58,0.0875,662.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","13%",""
+"2015-04-19_YB-ABq2",2015-04-19,2015-04-19,"YB","AB","2","No","Nucella_ostrina","Type 9",42,0.0875,480,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare."
+"2015-04-19_YB-ABq4",2015-04-19,2015-04-19,"YB","AB","4","No","Nucella_ostrina","Type 9",62,0.0875,708.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-04-19_YB-ABq1",2015-04-19,2015-04-19,"YB","AB","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","13%",""
+"2015-04-19_YB-ABq2",2015-04-19,2015-04-19,"YB","AB","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare."
+"2015-04-19_YB-ABq4",2015-04-19,2015-04-19,"YB","AB","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-04-19_YB-ABq1",2015-04-19,2015-04-19,"YB","AB","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","13%",""
+"2015-04-19_YB-ABq2",2015-04-19,2015-04-19,"YB","AB","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare."
+"2015-04-19_YB-ABq4",2015-04-19,2015-04-19,"YB","AB","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-04-19_YB-ABq1",2015-04-19,2015-04-19,"YB","AB","1","Pp","Pollicipes_polymerus","Type 11",736,0.0875,8411.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","13%",""
+"2015-04-19_YB-ABq2",2015-04-19,2015-04-19,"YB","AB","2","Pp","Pollicipes_polymerus","Type 11",502,0.0875,5737.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare."
+"2015-04-19_YB-ABq4",2015-04-19,2015-04-19,"YB","AB","4","Pp","Pollicipes_polymerus","Type 11",377,0.0875,4308.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-04-19_YB-ABq1",2015-04-19,2015-04-19,"YB","AB","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","13%",""
+"2015-04-19_YB-ABq2",2015-04-19,2015-04-19,"YB","AB","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare."
+"2015-04-19_YB-ABq4",2015-04-19,2015-04-19,"YB","AB","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-04-19_YB-ABq1",2015-04-19,2015-04-19,"YB","AB","1","Sc","Semibalanus_cariosus","Type 5",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","13%",""
+"2015-04-19_YB-ABq2",2015-04-19,2015-04-19,"YB","AB","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare."
+"2015-04-19_YB-ABq4",2015-04-19,2015-04-19,"YB","AB","4","Sc","Semibalanus_cariosus","Type 5",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-04-19_YB-ABq1",2015-04-19,2015-04-19,"YB","AB","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","13%",""
+"2015-04-19_YB-ABq2",2015-04-19,2015-04-19,"YB","AB","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare."
+"2015-04-19_YB-ABq4",2015-04-19,2015-04-19,"YB","AB","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-04-19_YB-ACq4",2015-04-19,2015-04-19,"YB","AC","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","8%","Counts likely low due to glare."
+"2015-04-19_YB-ACq7",2015-04-19,2015-04-19,"YB","AC","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","8%","Counts may be low due to glare."
+"2015-04-19_YB-ACq8",2015-04-19,2015-04-19,"YB","AC","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-04-19_YB-ACq4",2015-04-19,2015-04-19,"YB","AC","4","Ae","Anemones","Type 14",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","8%","Counts likely low due to glare."
+"2015-04-19_YB-ACq7",2015-04-19,2015-04-19,"YB","AC","7","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","8%","Counts may be low due to glare."
+"2015-04-19_YB-ACq8",2015-04-19,2015-04-19,"YB","AC","8","Ae","Anemones","Type 14",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-04-19_YB-ACq4",2015-04-19,2015-04-19,"YB","AC","4","Bg","Balanus_glandula","Type 1",258,0.015625,16512,"c","Beatriz Vaca","Finished","Full","Cropped","8%","Counts likely low due to glare."
+"2015-04-19_YB-ACq7",2015-04-19,2015-04-19,"YB","AC","7","Bg","Balanus_glandula","Type 1",150,0.015625,9600,"c","Beatriz Vaca","Finished","Full","Cropped","8%","Counts may be low due to glare."
+"2015-04-19_YB-ACq8",2015-04-19,2015-04-19,"YB","AC","8","Bg","Balanus_glandula","Type 1",225,0.0875,2571.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-04-19_YB-ACq4",2015-04-19,2015-04-19,"YB","AC","4","BgD","Balanus_glandula_(dead)","Type 2",18,0.015625,1152,"c","Beatriz Vaca","Finished","Full","Cropped","8%","Counts likely low due to glare."
+"2015-04-19_YB-ACq7",2015-04-19,2015-04-19,"YB","AC","7","BgD","Balanus_glandula_(dead)","Type 2",3,0.015625,192,"c","Beatriz Vaca","Finished","Full","Cropped","8%","Counts may be low due to glare."
+"2015-04-19_YB-ACq8",2015-04-19,2015-04-19,"YB","AC","8","BgD","Balanus_glandula_(dead)","Type 2",136,0.0875,1554.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-04-19_YB-ACq4",2015-04-19,2015-04-19,"YB","AC","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","8%","Counts likely low due to glare."
+"2015-04-19_YB-ACq7",2015-04-19,2015-04-19,"YB","AC","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","8%","Counts may be low due to glare."
+"2015-04-19_YB-ACq8",2015-04-19,2015-04-19,"YB","AC","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-04-19_YB-ACq4",2015-04-19,2015-04-19,"YB","AC","4","Cth","Chthamalus_dalli","Type 3",28,0.015625,1792,"c","Beatriz Vaca","Finished","Full","Cropped","8%","Counts likely low due to glare."
+"2015-04-19_YB-ACq7",2015-04-19,2015-04-19,"YB","AC","7","Cth","Chthamalus_dalli","Type 3",22,0.015625,1408,"c","Beatriz Vaca","Finished","Full","Cropped","8%","Counts may be low due to glare."
+"2015-04-19_YB-ACq8",2015-04-19,2015-04-19,"YB","AC","8","Cth","Chthamalus_dalli","Type 3",17,0.0875,194.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-04-19_YB-ACq4",2015-04-19,2015-04-19,"YB","AC","4","CthD","Chthamalus_dalli (dead)","Type 4",2,0.015625,128,"c","Beatriz Vaca","Finished","Full","Cropped","8%","Counts likely low due to glare."
+"2015-04-19_YB-ACq7",2015-04-19,2015-04-19,"YB","AC","7","CthD","Chthamalus_dalli (dead)","Type 4",1,0.015625,64,"c","Beatriz Vaca","Finished","Full","Cropped","8%","Counts may be low due to glare."
+"2015-04-19_YB-ACq8",2015-04-19,2015-04-19,"YB","AC","8","CthD","Chthamalus_dalli (dead)","Type 4",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-04-19_YB-ACq4",2015-04-19,2015-04-19,"YB","AC","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","8%","Counts likely low due to glare."
+"2015-04-19_YB-ACq7",2015-04-19,2015-04-19,"YB","AC","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","8%","Counts may be low due to glare."
+"2015-04-19_YB-ACq8",2015-04-19,2015-04-19,"YB","AC","8","Emp","Emplectonema worm","Type 23",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-04-19_YB-ACq4",2015-04-19,2015-04-19,"YB","AC","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","8%","Counts likely low due to glare."
+"2015-04-19_YB-ACq7",2015-04-19,2015-04-19,"YB","AC","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","8%","Counts may be low due to glare."
+"2015-04-19_YB-ACq8",2015-04-19,2015-04-19,"YB","AC","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-04-19_YB-ACq4",2015-04-19,2015-04-19,"YB","AC","4","Lim","Limpets","Type 12",169,0.0875,1931.42857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","8%","Counts likely low due to glare."
+"2015-04-19_YB-ACq7",2015-04-19,2015-04-19,"YB","AC","7","Lim","Limpets","Type 12",84,0.0875,960,NA,"Beatriz Vaca","Finished","Full","Cropped","8%","Counts may be low due to glare."
+"2015-04-19_YB-ACq8",2015-04-19,2015-04-19,"YB","AC","8","Lim","Limpets","Type 12",126,0.0875,1440,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-04-19_YB-ACq4",2015-04-19,2015-04-19,"YB","AC","4","Ls","Littorina_sitkana","Type 13",1156,0.0875,13211.4285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","8%","Counts likely low due to glare."
+"2015-04-19_YB-ACq7",2015-04-19,2015-04-19,"YB","AC","7","Ls","Littorina_sitkana","Type 13",965,0.0875,11028.5714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","8%","Counts may be low due to glare."
+"2015-04-19_YB-ACq8",2015-04-19,2015-04-19,"YB","AC","8","Ls","Littorina_sitkana","Type 13",486,0.0875,5554.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-04-19_YB-ACq4",2015-04-19,2015-04-19,"YB","AC","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","8%","Counts likely low due to glare."
+"2015-04-19_YB-ACq7",2015-04-19,2015-04-19,"YB","AC","7","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","8%","Counts may be low due to glare."
+"2015-04-19_YB-ACq8",2015-04-19,2015-04-19,"YB","AC","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-04-19_YB-ACq4",2015-04-19,2015-04-19,"YB","AC","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","8%","Counts likely low due to glare."
+"2015-04-19_YB-ACq7",2015-04-19,2015-04-19,"YB","AC","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","8%","Counts may be low due to glare."
+"2015-04-19_YB-ACq8",2015-04-19,2015-04-19,"YB","AC","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-04-19_YB-ACq4",2015-04-19,2015-04-19,"YB","AC","4","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","8%","Counts likely low due to glare."
+"2015-04-19_YB-ACq7",2015-04-19,2015-04-19,"YB","AC","7","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","8%","Counts may be low due to glare."
+"2015-04-19_YB-ACq8",2015-04-19,2015-04-19,"YB","AC","8","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-04-19_YB-ACq4",2015-04-19,2015-04-19,"YB","AC","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","8%","Counts likely low due to glare."
+"2015-04-19_YB-ACq7",2015-04-19,2015-04-19,"YB","AC","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","8%","Counts may be low due to glare."
+"2015-04-19_YB-ACq8",2015-04-19,2015-04-19,"YB","AC","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-04-19_YB-ACq4",2015-04-19,2015-04-19,"YB","AC","4","Mt","Mytilus_trossulus","Type 15",399,0.0875,4560,NA,"Beatriz Vaca","Finished","Full","Cropped","8%","Counts likely low due to glare."
+"2015-04-19_YB-ACq7",2015-04-19,2015-04-19,"YB","AC","7","Mt","Mytilus_trossulus","Type 15",315,0.0875,3600,NA,"Beatriz Vaca","Finished","Full","Cropped","8%","Counts may be low due to glare."
+"2015-04-19_YB-ACq8",2015-04-19,2015-04-19,"YB","AC","8","Mt","Mytilus_trossulus","Type 15",149,0.0875,1702.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-04-19_YB-ACq4",2015-04-19,2015-04-19,"YB","AC","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","8%","Counts likely low due to glare."
+"2015-04-19_YB-ACq7",2015-04-19,2015-04-19,"YB","AC","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","8%","Counts may be low due to glare."
+"2015-04-19_YB-ACq8",2015-04-19,2015-04-19,"YB","AC","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-04-19_YB-ACq4",2015-04-19,2015-04-19,"YB","AC","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","8%","Counts likely low due to glare."
+"2015-04-19_YB-ACq7",2015-04-19,2015-04-19,"YB","AC","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","8%","Counts may be low due to glare."
+"2015-04-19_YB-ACq8",2015-04-19,2015-04-19,"YB","AC","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-04-19_YB-ACq4",2015-04-19,2015-04-19,"YB","AC","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","8%","Counts likely low due to glare."
+"2015-04-19_YB-ACq7",2015-04-19,2015-04-19,"YB","AC","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","8%","Counts may be low due to glare."
+"2015-04-19_YB-ACq8",2015-04-19,2015-04-19,"YB","AC","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-04-19_YB-ACq4",2015-04-19,2015-04-19,"YB","AC","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","8%","Counts likely low due to glare."
+"2015-04-19_YB-ACq7",2015-04-19,2015-04-19,"YB","AC","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","8%","Counts may be low due to glare."
+"2015-04-19_YB-ACq8",2015-04-19,2015-04-19,"YB","AC","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-04-19_YB-ACq4",2015-04-19,2015-04-19,"YB","AC","4","No","Nucella_ostrina","Type 9",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Cropped","8%","Counts likely low due to glare."
+"2015-04-19_YB-ACq7",2015-04-19,2015-04-19,"YB","AC","7","No","Nucella_ostrina","Type 9",11,0.0875,125.714285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","8%","Counts may be low due to glare."
+"2015-04-19_YB-ACq8",2015-04-19,2015-04-19,"YB","AC","8","No","Nucella_ostrina","Type 9",34,0.0875,388.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-04-19_YB-ACq4",2015-04-19,2015-04-19,"YB","AC","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","8%","Counts likely low due to glare."
+"2015-04-19_YB-ACq7",2015-04-19,2015-04-19,"YB","AC","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","8%","Counts may be low due to glare."
+"2015-04-19_YB-ACq8",2015-04-19,2015-04-19,"YB","AC","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-04-19_YB-ACq4",2015-04-19,2015-04-19,"YB","AC","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","8%","Counts likely low due to glare."
+"2015-04-19_YB-ACq7",2015-04-19,2015-04-19,"YB","AC","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","8%","Counts may be low due to glare."
+"2015-04-19_YB-ACq8",2015-04-19,2015-04-19,"YB","AC","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-04-19_YB-ACq4",2015-04-19,2015-04-19,"YB","AC","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","8%","Counts likely low due to glare."
+"2015-04-19_YB-ACq7",2015-04-19,2015-04-19,"YB","AC","7","Pp","Pollicipes_polymerus","Type 11",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","8%","Counts may be low due to glare."
+"2015-04-19_YB-ACq8",2015-04-19,2015-04-19,"YB","AC","8","Pp","Pollicipes_polymerus","Type 11",114,0.0875,1302.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-04-19_YB-ACq4",2015-04-19,2015-04-19,"YB","AC","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","8%","Counts likely low due to glare."
+"2015-04-19_YB-ACq7",2015-04-19,2015-04-19,"YB","AC","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","8%","Counts may be low due to glare."
+"2015-04-19_YB-ACq8",2015-04-19,2015-04-19,"YB","AC","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-04-19_YB-ACq4",2015-04-19,2015-04-19,"YB","AC","4","Sc","Semibalanus_cariosus","Type 5",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","8%","Counts likely low due to glare."
+"2015-04-19_YB-ACq7",2015-04-19,2015-04-19,"YB","AC","7","Sc","Semibalanus_cariosus","Type 5",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","8%","Counts may be low due to glare."
+"2015-04-19_YB-ACq8",2015-04-19,2015-04-19,"YB","AC","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-04-19_YB-ACq4",2015-04-19,2015-04-19,"YB","AC","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","8%","Counts likely low due to glare."
+"2015-04-19_YB-ACq7",2015-04-19,2015-04-19,"YB","AC","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","8%","Counts may be low due to glare."
+"2015-04-19_YB-ACq8",2015-04-19,2015-04-19,"YB","AC","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-04-19_YB-ADq1",2015-04-19,2015-04-19,"YB","AD","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-04-19_YB-ADq5",2015-04-19,2015-04-19,"YB","AD","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%",""
+"2015-04-19_YB-ADq8",2015-04-19,2015-04-19,"YB","AD","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts may be low due to glare."
+"2015-04-19_YB-ADq1",2015-04-19,2015-04-19,"YB","AD","1","Ae","Anemones","Type 14",9,0.0875,102.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-04-19_YB-ADq5",2015-04-19,2015-04-19,"YB","AD","5","Ae","Anemones","Type 14",14,0.0875,160,NA,"Beatriz Vaca","Finished","Full","Full","60%",""
+"2015-04-19_YB-ADq8",2015-04-19,2015-04-19,"YB","AD","8","Ae","Anemones","Type 14",44,0.0875,502.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts may be low due to glare."
+"2015-04-19_YB-ADq1",2015-04-19,2015-04-19,"YB","AD","1","Bg","Balanus_glandula","Type 1",141,0.0875,1611.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-04-19_YB-ADq5",2015-04-19,2015-04-19,"YB","AD","5","Bg","Balanus_glandula","Type 1",117,0.0875,1337.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","60%",""
+"2015-04-19_YB-ADq8",2015-04-19,2015-04-19,"YB","AD","8","Bg","Balanus_glandula","Type 1",154,0.0875,1760,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts may be low due to glare."
+"2015-04-19_YB-ADq1",2015-04-19,2015-04-19,"YB","AD","1","BgD","Balanus_glandula_(dead)","Type 2",15,0.0875,171.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-04-19_YB-ADq5",2015-04-19,2015-04-19,"YB","AD","5","BgD","Balanus_glandula_(dead)","Type 2",20,0.0875,228.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","60%",""
+"2015-04-19_YB-ADq8",2015-04-19,2015-04-19,"YB","AD","8","BgD","Balanus_glandula_(dead)","Type 2",59,0.0875,674.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts may be low due to glare."
+"2015-04-19_YB-ADq1",2015-04-19,2015-04-19,"YB","AD","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-04-19_YB-ADq5",2015-04-19,2015-04-19,"YB","AD","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%",""
+"2015-04-19_YB-ADq8",2015-04-19,2015-04-19,"YB","AD","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts may be low due to glare."
+"2015-04-19_YB-ADq1",2015-04-19,2015-04-19,"YB","AD","1","Cth","Chthamalus_dalli","Type 3",43,0.0875,491.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-04-19_YB-ADq5",2015-04-19,2015-04-19,"YB","AD","5","Cth","Chthamalus_dalli","Type 3",9,0.0875,102.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","60%",""
+"2015-04-19_YB-ADq8",2015-04-19,2015-04-19,"YB","AD","8","Cth","Chthamalus_dalli","Type 3",44,0.0875,502.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts may be low due to glare."
+"2015-04-19_YB-ADq1",2015-04-19,2015-04-19,"YB","AD","1","CthD","Chthamalus_dalli (dead)","Type 4",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-04-19_YB-ADq5",2015-04-19,2015-04-19,"YB","AD","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%",""
+"2015-04-19_YB-ADq8",2015-04-19,2015-04-19,"YB","AD","8","CthD","Chthamalus_dalli (dead)","Type 4",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts may be low due to glare."
+"2015-04-19_YB-ADq1",2015-04-19,2015-04-19,"YB","AD","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-04-19_YB-ADq5",2015-04-19,2015-04-19,"YB","AD","5","Emp","Emplectonema worm","Type 23",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","60%",""
+"2015-04-19_YB-ADq8",2015-04-19,2015-04-19,"YB","AD","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts may be low due to glare."
+"2015-04-19_YB-ADq1",2015-04-19,2015-04-19,"YB","AD","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-04-19_YB-ADq5",2015-04-19,2015-04-19,"YB","AD","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%",""
+"2015-04-19_YB-ADq8",2015-04-19,2015-04-19,"YB","AD","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts may be low due to glare."
+"2015-04-19_YB-ADq1",2015-04-19,2015-04-19,"YB","AD","1","Lim","Limpets","Type 12",121,0.0875,1382.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-04-19_YB-ADq5",2015-04-19,2015-04-19,"YB","AD","5","Lim","Limpets","Type 12",52,0.0875,594.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","60%",""
+"2015-04-19_YB-ADq8",2015-04-19,2015-04-19,"YB","AD","8","Lim","Limpets","Type 12",72,0.0875,822.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts may be low due to glare."
+"2015-04-19_YB-ADq1",2015-04-19,2015-04-19,"YB","AD","1","Ls","Littorina_sitkana","Type 13",101,0.0875,1154.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-04-19_YB-ADq5",2015-04-19,2015-04-19,"YB","AD","5","Ls","Littorina_sitkana","Type 13",26,0.0875,297.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","60%",""
+"2015-04-19_YB-ADq8",2015-04-19,2015-04-19,"YB","AD","8","Ls","Littorina_sitkana","Type 13",28,0.0875,320,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts may be low due to glare."
+"2015-04-19_YB-ADq1",2015-04-19,2015-04-19,"YB","AD","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-04-19_YB-ADq5",2015-04-19,2015-04-19,"YB","AD","5","Mc","Mytilus_californianus","Type 17",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","60%",""
+"2015-04-19_YB-ADq8",2015-04-19,2015-04-19,"YB","AD","8","Mc","Mytilus_californianus","Type 17",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts may be low due to glare."
+"2015-04-19_YB-ADq1",2015-04-19,2015-04-19,"YB","AD","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-04-19_YB-ADq5",2015-04-19,2015-04-19,"YB","AD","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%",""
+"2015-04-19_YB-ADq8",2015-04-19,2015-04-19,"YB","AD","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts may be low due to glare."
+"2015-04-19_YB-ADq1",2015-04-19,2015-04-19,"YB","AD","1","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-04-19_YB-ADq5",2015-04-19,2015-04-19,"YB","AD","5","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%",""
+"2015-04-19_YB-ADq8",2015-04-19,2015-04-19,"YB","AD","8","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts may be low due to glare."
+"2015-04-19_YB-ADq1",2015-04-19,2015-04-19,"YB","AD","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-04-19_YB-ADq5",2015-04-19,2015-04-19,"YB","AD","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%",""
+"2015-04-19_YB-ADq8",2015-04-19,2015-04-19,"YB","AD","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts may be low due to glare."
+"2015-04-19_YB-ADq1",2015-04-19,2015-04-19,"YB","AD","1","Mt","Mytilus_trossulus","Type 15",88,0.0875,1005.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-04-19_YB-ADq5",2015-04-19,2015-04-19,"YB","AD","5","Mt","Mytilus_trossulus","Type 15",188,0.0875,2148.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","60%",""
+"2015-04-19_YB-ADq8",2015-04-19,2015-04-19,"YB","AD","8","Mt","Mytilus_trossulus","Type 15",121,0.0875,1382.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts may be low due to glare."
+"2015-04-19_YB-ADq1",2015-04-19,2015-04-19,"YB","AD","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-04-19_YB-ADq5",2015-04-19,2015-04-19,"YB","AD","5","MtD","Mytilus_trossulus_(dead)","Type 16",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","60%",""
+"2015-04-19_YB-ADq8",2015-04-19,2015-04-19,"YB","AD","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts may be low due to glare."
+"2015-04-19_YB-ADq1",2015-04-19,2015-04-19,"YB","AD","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-04-19_YB-ADq5",2015-04-19,2015-04-19,"YB","AD","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%",""
+"2015-04-19_YB-ADq8",2015-04-19,2015-04-19,"YB","AD","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts may be low due to glare."
+"2015-04-19_YB-ADq1",2015-04-19,2015-04-19,"YB","AD","1","Nc","Nucella_canaliculata","Type 10",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-04-19_YB-ADq5",2015-04-19,2015-04-19,"YB","AD","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%",""
+"2015-04-19_YB-ADq8",2015-04-19,2015-04-19,"YB","AD","8","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts may be low due to glare."
+"2015-04-19_YB-ADq1",2015-04-19,2015-04-19,"YB","AD","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-04-19_YB-ADq5",2015-04-19,2015-04-19,"YB","AD","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%",""
+"2015-04-19_YB-ADq8",2015-04-19,2015-04-19,"YB","AD","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts may be low due to glare."
+"2015-04-19_YB-ADq1",2015-04-19,2015-04-19,"YB","AD","1","No","Nucella_ostrina","Type 9",26,0.0875,297.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-04-19_YB-ADq5",2015-04-19,2015-04-19,"YB","AD","5","No","Nucella_ostrina","Type 9",53,0.0875,605.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","60%",""
+"2015-04-19_YB-ADq8",2015-04-19,2015-04-19,"YB","AD","8","No","Nucella_ostrina","Type 9",14,0.0875,160,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts may be low due to glare."
+"2015-04-19_YB-ADq1",2015-04-19,2015-04-19,"YB","AD","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-04-19_YB-ADq5",2015-04-19,2015-04-19,"YB","AD","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%",""
+"2015-04-19_YB-ADq8",2015-04-19,2015-04-19,"YB","AD","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts may be low due to glare."
+"2015-04-19_YB-ADq1",2015-04-19,2015-04-19,"YB","AD","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-04-19_YB-ADq5",2015-04-19,2015-04-19,"YB","AD","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%",""
+"2015-04-19_YB-ADq8",2015-04-19,2015-04-19,"YB","AD","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts may be low due to glare."
+"2015-04-19_YB-ADq1",2015-04-19,2015-04-19,"YB","AD","1","Pp","Pollicipes_polymerus","Type 11",236,0.0875,2697.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-04-19_YB-ADq5",2015-04-19,2015-04-19,"YB","AD","5","Pp","Pollicipes_polymerus","Type 11",488,0.0875,5577.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","60%",""
+"2015-04-19_YB-ADq8",2015-04-19,2015-04-19,"YB","AD","8","Pp","Pollicipes_polymerus","Type 11",84,0.0875,960,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts may be low due to glare."
+"2015-04-19_YB-ADq1",2015-04-19,2015-04-19,"YB","AD","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-04-19_YB-ADq5",2015-04-19,2015-04-19,"YB","AD","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%",""
+"2015-04-19_YB-ADq8",2015-04-19,2015-04-19,"YB","AD","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts may be low due to glare."
+"2015-04-19_YB-ADq1",2015-04-19,2015-04-19,"YB","AD","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-04-19_YB-ADq5",2015-04-19,2015-04-19,"YB","AD","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%",""
+"2015-04-19_YB-ADq8",2015-04-19,2015-04-19,"YB","AD","8","Sc","Semibalanus_cariosus","Type 5",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts may be low due to glare."
+"2015-04-19_YB-ADq1",2015-04-19,2015-04-19,"YB","AD","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-04-19_YB-ADq5",2015-04-19,2015-04-19,"YB","AD","5","ScD","Semibalanus_cariosus_(dead)","Type 6",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","60%",""
+"2015-04-19_YB-ADq8",2015-04-19,2015-04-19,"YB","AD","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts may be low due to glare."
+"2015-04-19_YB-AEq1",2015-04-19,2015-04-19,"YB","AE","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-AEq4",2015-04-19,2015-04-19,"YB","AE","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-04-19_YB-AEq8",2015-04-19,2015-04-19,"YB","AE","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%",""
+"2015-04-19_YB-AEq1",2015-04-19,2015-04-19,"YB","AE","1","Ae","Anemones","Type 14",10,0.0875,114.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-AEq4",2015-04-19,2015-04-19,"YB","AE","4","Ae","Anemones","Type 14",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-04-19_YB-AEq8",2015-04-19,2015-04-19,"YB","AE","8","Ae","Anemones","Type 14",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Full","60%",""
+"2015-04-19_YB-AEq1",2015-04-19,2015-04-19,"YB","AE","1","Bg","Balanus_glandula","Type 1",103,0.0875,1177.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-AEq4",2015-04-19,2015-04-19,"YB","AE","4","Bg","Balanus_glandula","Type 1",507,0.0875,5794.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-04-19_YB-AEq8",2015-04-19,2015-04-19,"YB","AE","8","Bg","Balanus_glandula","Type 1",262,0.0875,2994.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","60%",""
+"2015-04-19_YB-AEq1",2015-04-19,2015-04-19,"YB","AE","1","BgD","Balanus_glandula_(dead)","Type 2",67,0.0875,765.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-AEq4",2015-04-19,2015-04-19,"YB","AE","4","BgD","Balanus_glandula_(dead)","Type 2",131,0.0875,1497.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-04-19_YB-AEq8",2015-04-19,2015-04-19,"YB","AE","8","BgD","Balanus_glandula_(dead)","Type 2",65,0.0875,742.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","60%",""
+"2015-04-19_YB-AEq1",2015-04-19,2015-04-19,"YB","AE","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-AEq4",2015-04-19,2015-04-19,"YB","AE","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-04-19_YB-AEq8",2015-04-19,2015-04-19,"YB","AE","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%",""
+"2015-04-19_YB-AEq1",2015-04-19,2015-04-19,"YB","AE","1","Cth","Chthamalus_dalli","Type 3",119,0.0875,1360,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-AEq4",2015-04-19,2015-04-19,"YB","AE","4","Cth","Chthamalus_dalli","Type 3",144,0.0875,1645.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-04-19_YB-AEq8",2015-04-19,2015-04-19,"YB","AE","8","Cth","Chthamalus_dalli","Type 3",64,0.0875,731.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","60%",""
+"2015-04-19_YB-AEq1",2015-04-19,2015-04-19,"YB","AE","1","CthD","Chthamalus_dalli (dead)","Type 4",11,0.0875,125.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-AEq4",2015-04-19,2015-04-19,"YB","AE","4","CthD","Chthamalus_dalli (dead)","Type 4",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-04-19_YB-AEq8",2015-04-19,2015-04-19,"YB","AE","8","CthD","Chthamalus_dalli (dead)","Type 4",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","60%",""
+"2015-04-19_YB-AEq1",2015-04-19,2015-04-19,"YB","AE","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-AEq4",2015-04-19,2015-04-19,"YB","AE","4","Emp","Emplectonema worm","Type 23",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-04-19_YB-AEq8",2015-04-19,2015-04-19,"YB","AE","8","Emp","Emplectonema worm","Type 23",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","60%",""
+"2015-04-19_YB-AEq1",2015-04-19,2015-04-19,"YB","AE","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-AEq4",2015-04-19,2015-04-19,"YB","AE","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-04-19_YB-AEq8",2015-04-19,2015-04-19,"YB","AE","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%",""
+"2015-04-19_YB-AEq1",2015-04-19,2015-04-19,"YB","AE","1","Lim","Limpets","Type 12",97,0.0875,1108.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-AEq4",2015-04-19,2015-04-19,"YB","AE","4","Lim","Limpets","Type 12",250,0.0875,2857.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-04-19_YB-AEq8",2015-04-19,2015-04-19,"YB","AE","8","Lim","Limpets","Type 12",181,0.0875,2068.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","60%",""
+"2015-04-19_YB-AEq1",2015-04-19,2015-04-19,"YB","AE","1","Ls","Littorina_sitkana","Type 13",32,0.0875,365.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-AEq4",2015-04-19,2015-04-19,"YB","AE","4","Ls","Littorina_sitkana","Type 13",160,0.0875,1828.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-04-19_YB-AEq8",2015-04-19,2015-04-19,"YB","AE","8","Ls","Littorina_sitkana","Type 13",99,0.0875,1131.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","60%",""
+"2015-04-19_YB-AEq1",2015-04-19,2015-04-19,"YB","AE","1","Mc","Mytilus_californianus","Type 17",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-AEq4",2015-04-19,2015-04-19,"YB","AE","4","Mc","Mytilus_californianus","Type 17",30,0.0875,342.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-04-19_YB-AEq8",2015-04-19,2015-04-19,"YB","AE","8","Mc","Mytilus_californianus","Type 17",13,0.0875,148.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","60%",""
+"2015-04-19_YB-AEq1",2015-04-19,2015-04-19,"YB","AE","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-AEq4",2015-04-19,2015-04-19,"YB","AE","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-04-19_YB-AEq8",2015-04-19,2015-04-19,"YB","AE","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%",""
+"2015-04-19_YB-AEq1",2015-04-19,2015-04-19,"YB","AE","1","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-AEq4",2015-04-19,2015-04-19,"YB","AE","4","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-04-19_YB-AEq8",2015-04-19,2015-04-19,"YB","AE","8","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%",""
+"2015-04-19_YB-AEq1",2015-04-19,2015-04-19,"YB","AE","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-AEq4",2015-04-19,2015-04-19,"YB","AE","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-04-19_YB-AEq8",2015-04-19,2015-04-19,"YB","AE","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%",""
+"2015-04-19_YB-AEq1",2015-04-19,2015-04-19,"YB","AE","1","Mt","Mytilus_trossulus","Type 15",155,0.0875,1771.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-AEq4",2015-04-19,2015-04-19,"YB","AE","4","Mt","Mytilus_trossulus","Type 15",176,0.0875,2011.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-04-19_YB-AEq8",2015-04-19,2015-04-19,"YB","AE","8","Mt","Mytilus_trossulus","Type 15",468,0.0875,5348.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","60%",""
+"2015-04-19_YB-AEq1",2015-04-19,2015-04-19,"YB","AE","1","MtD","Mytilus_trossulus_(dead)","Type 16",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-AEq4",2015-04-19,2015-04-19,"YB","AE","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-04-19_YB-AEq8",2015-04-19,2015-04-19,"YB","AE","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%",""
+"2015-04-19_YB-AEq1",2015-04-19,2015-04-19,"YB","AE","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-AEq4",2015-04-19,2015-04-19,"YB","AE","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-04-19_YB-AEq8",2015-04-19,2015-04-19,"YB","AE","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%",""
+"2015-04-19_YB-AEq1",2015-04-19,2015-04-19,"YB","AE","1","Nc","Nucella_canaliculata","Type 10",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-AEq4",2015-04-19,2015-04-19,"YB","AE","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-04-19_YB-AEq8",2015-04-19,2015-04-19,"YB","AE","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%",""
+"2015-04-19_YB-AEq1",2015-04-19,2015-04-19,"YB","AE","1","Negg","Nucella_eggs","Type 26",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-AEq4",2015-04-19,2015-04-19,"YB","AE","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-04-19_YB-AEq8",2015-04-19,2015-04-19,"YB","AE","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%",""
+"2015-04-19_YB-AEq1",2015-04-19,2015-04-19,"YB","AE","1","No","Nucella_ostrina","Type 9",33,0.0875,377.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-AEq4",2015-04-19,2015-04-19,"YB","AE","4","No","Nucella_ostrina","Type 9",19,0.0875,217.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-04-19_YB-AEq8",2015-04-19,2015-04-19,"YB","AE","8","No","Nucella_ostrina","Type 9",24,0.0875,274.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","60%",""
+"2015-04-19_YB-AEq1",2015-04-19,2015-04-19,"YB","AE","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-AEq4",2015-04-19,2015-04-19,"YB","AE","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-04-19_YB-AEq8",2015-04-19,2015-04-19,"YB","AE","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%",""
+"2015-04-19_YB-AEq1",2015-04-19,2015-04-19,"YB","AE","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-AEq4",2015-04-19,2015-04-19,"YB","AE","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-04-19_YB-AEq8",2015-04-19,2015-04-19,"YB","AE","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%",""
+"2015-04-19_YB-AEq1",2015-04-19,2015-04-19,"YB","AE","1","Pp","Pollicipes_polymerus","Type 11",104,0.0875,1188.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-AEq4",2015-04-19,2015-04-19,"YB","AE","4","Pp","Pollicipes_polymerus","Type 11",59,0.0875,674.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-04-19_YB-AEq8",2015-04-19,2015-04-19,"YB","AE","8","Pp","Pollicipes_polymerus","Type 11",25,0.0875,285.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","60%",""
+"2015-04-19_YB-AEq1",2015-04-19,2015-04-19,"YB","AE","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-AEq4",2015-04-19,2015-04-19,"YB","AE","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-04-19_YB-AEq8",2015-04-19,2015-04-19,"YB","AE","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%",""
+"2015-04-19_YB-AEq1",2015-04-19,2015-04-19,"YB","AE","1","Sc","Semibalanus_cariosus","Type 5",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-AEq4",2015-04-19,2015-04-19,"YB","AE","4","Sc","Semibalanus_cariosus","Type 5",9,0.0875,102.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-04-19_YB-AEq8",2015-04-19,2015-04-19,"YB","AE","8","Sc","Semibalanus_cariosus","Type 5",11,0.0875,125.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","60%",""
+"2015-04-19_YB-AEq1",2015-04-19,2015-04-19,"YB","AE","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-AEq4",2015-04-19,2015-04-19,"YB","AE","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-04-19_YB-AEq8",2015-04-19,2015-04-19,"YB","AE","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%",""
+"2015-04-19_YB-AFq5",2015-04-19,2015-04-19,"YB","AF","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","8%","Counts likely low due to glare."
+"2015-04-19_YB-AFq8",2015-04-19,2015-04-19,"YB","AF","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%","Counts low due to blur and glare"
+"2015-04-19_YB-AFq9",2015-04-19,2015-04-19,"YB","AF","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts may be low due to glare"
+"2015-04-19_YB-AFq5",2015-04-19,2015-04-19,"YB","AF","5","Ae","Anemones","Type 14",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Cropped","Cropped","8%","Counts likely low due to glare."
+"2015-04-19_YB-AFq8",2015-04-19,2015-04-19,"YB","AF","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%","Counts low due to blur and glare"
+"2015-04-19_YB-AFq9",2015-04-19,2015-04-19,"YB","AF","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts may be low due to glare"
+"2015-04-19_YB-AFq5",2015-04-19,2015-04-19,"YB","AF","5","Bg","Balanus_glandula","Type 1",99,0.015625,6336,"c","Beatriz Vaca","Finished","Cropped","Cropped","8%","Counts likely low due to glare."
+"2015-04-19_YB-AFq8",2015-04-19,2015-04-19,"YB","AF","8","Bg","Balanus_glandula","Type 1",412,0.0875,4708.57142857143,NA,"Celeste Moen","Finished","Full","Full","5%","Counts low due to blur and glare"
+"2015-04-19_YB-AFq9",2015-04-19,2015-04-19,"YB","AF","9","Bg","Balanus_glandula","Type 1",554,0.0875,6331.42857142857,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts may be low due to glare"
+"2015-04-19_YB-AFq5",2015-04-19,2015-04-19,"YB","AF","5","BgD","Balanus_glandula_(dead)","Type 2",12,0.015625,768,"c","Beatriz Vaca","Finished","Cropped","Cropped","8%","Counts likely low due to glare."
+"2015-04-19_YB-AFq8",2015-04-19,2015-04-19,"YB","AF","8","BgD","Balanus_glandula_(dead)","Type 2",102,0.0875,1165.71428571429,NA,"Celeste Moen","Finished","Full","Full","5%","Counts low due to blur and glare"
+"2015-04-19_YB-AFq9",2015-04-19,2015-04-19,"YB","AF","9","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts may be low due to glare"
+"2015-04-19_YB-AFq5",2015-04-19,2015-04-19,"YB","AF","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","8%","Counts likely low due to glare."
+"2015-04-19_YB-AFq8",2015-04-19,2015-04-19,"YB","AF","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%","Counts low due to blur and glare"
+"2015-04-19_YB-AFq9",2015-04-19,2015-04-19,"YB","AF","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts may be low due to glare"
+"2015-04-19_YB-AFq5",2015-04-19,2015-04-19,"YB","AF","5","Cth","Chthamalus_dalli","Type 3",49,0.015625,3136,"c","Beatriz Vaca","Finished","Cropped","Cropped","8%","Counts likely low due to glare."
+"2015-04-19_YB-AFq8",2015-04-19,2015-04-19,"YB","AF","8","Cth","Chthamalus_dalli","Type 3",130,0.0875,1485.71428571429,NA,"Celeste Moen","Finished","Full","Full","5%","Counts low due to blur and glare"
+"2015-04-19_YB-AFq9",2015-04-19,2015-04-19,"YB","AF","9","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts may be low due to glare"
+"2015-04-19_YB-AFq5",2015-04-19,2015-04-19,"YB","AF","5","CthD","Chthamalus_dalli (dead)","Type 4",2,0.015625,128,"c","Beatriz Vaca","Finished","Cropped","Cropped","8%","Counts likely low due to glare."
+"2015-04-19_YB-AFq8",2015-04-19,2015-04-19,"YB","AF","8","CthD","Chthamalus_dalli (dead)","Type 4",21,0.0875,240,NA,"Celeste Moen","Finished","Full","Full","5%","Counts low due to blur and glare"
+"2015-04-19_YB-AFq9",2015-04-19,2015-04-19,"YB","AF","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts may be low due to glare"
+"2015-04-19_YB-AFq5",2015-04-19,2015-04-19,"YB","AF","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","8%","Counts likely low due to glare."
+"2015-04-19_YB-AFq8",2015-04-19,2015-04-19,"YB","AF","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%","Counts low due to blur and glare"
+"2015-04-19_YB-AFq9",2015-04-19,2015-04-19,"YB","AF","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts may be low due to glare"
+"2015-04-19_YB-AFq5",2015-04-19,2015-04-19,"YB","AF","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","8%","Counts likely low due to glare."
+"2015-04-19_YB-AFq8",2015-04-19,2015-04-19,"YB","AF","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%","Counts low due to blur and glare"
+"2015-04-19_YB-AFq9",2015-04-19,2015-04-19,"YB","AF","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts may be low due to glare"
+"2015-04-19_YB-AFq5",2015-04-19,2015-04-19,"YB","AF","5","Lim","Limpets","Type 12",118,0.0875,1348.57142857143,NA,"Beatriz Vaca","Finished","Cropped","Cropped","8%","Counts likely low due to glare."
+"2015-04-19_YB-AFq8",2015-04-19,2015-04-19,"YB","AF","8","Lim","Limpets","Type 12",83,0.0875,948.571428571429,NA,"Celeste Moen","Finished","Full","Full","5%","Counts low due to blur and glare"
+"2015-04-19_YB-AFq9",2015-04-19,2015-04-19,"YB","AF","9","Lim","Limpets","Type 12",44,0.0875,502.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts may be low due to glare"
+"2015-04-19_YB-AFq5",2015-04-19,2015-04-19,"YB","AF","5","Ls","Littorina_sitkana","Type 13",287,0.0875,3280,NA,"Beatriz Vaca","Finished","Cropped","Cropped","8%","Counts likely low due to glare."
+"2015-04-19_YB-AFq8",2015-04-19,2015-04-19,"YB","AF","8","Ls","Littorina_sitkana","Type 13",295,0.0875,3371.42857142857,NA,"Celeste Moen","Finished","Full","Full","5%","Counts low due to blur and glare"
+"2015-04-19_YB-AFq9",2015-04-19,2015-04-19,"YB","AF","9","Ls","Littorina_sitkana","Type 13",231,0.0875,2640,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts may be low due to glare"
+"2015-04-19_YB-AFq5",2015-04-19,2015-04-19,"YB","AF","5","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","8%","Counts likely low due to glare."
+"2015-04-19_YB-AFq8",2015-04-19,2015-04-19,"YB","AF","8","Mc","Mytilus_californianus","Type 17",2,0.0875,22.8571428571429,NA,"Celeste Moen","Finished","Full","Full","5%","Counts low due to blur and glare"
+"2015-04-19_YB-AFq9",2015-04-19,2015-04-19,"YB","AF","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts may be low due to glare"
+"2015-04-19_YB-AFq5",2015-04-19,2015-04-19,"YB","AF","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","8%","Counts likely low due to glare."
+"2015-04-19_YB-AFq8",2015-04-19,2015-04-19,"YB","AF","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%","Counts low due to blur and glare"
+"2015-04-19_YB-AFq9",2015-04-19,2015-04-19,"YB","AF","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts may be low due to glare"
+"2015-04-19_YB-AFq5",2015-04-19,2015-04-19,"YB","AF","5","Myt","Mytilus_spp","Type 7",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","8%","Counts likely low due to glare."
+"2015-04-19_YB-AFq8",2015-04-19,2015-04-19,"YB","AF","8","Myt","Mytilus_spp","Type 7",39,0.0875,445.714285714286,NA,"Celeste Moen","Finished","Full","Full","5%","Counts low due to blur and glare"
+"2015-04-19_YB-AFq9",2015-04-19,2015-04-19,"YB","AF","9","Myt","Mytilus_spp","Type 7",20,0.0875,228.571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts may be low due to glare"
+"2015-04-19_YB-AFq5",2015-04-19,2015-04-19,"YB","AF","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","8%","Counts likely low due to glare."
+"2015-04-19_YB-AFq8",2015-04-19,2015-04-19,"YB","AF","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%","Counts low due to blur and glare"
+"2015-04-19_YB-AFq9",2015-04-19,2015-04-19,"YB","AF","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts may be low due to glare"
+"2015-04-19_YB-AFq5",2015-04-19,2015-04-19,"YB","AF","5","Mt","Mytilus_trossulus","Type 15",82,0.015625,5248,"c","Beatriz Vaca","Finished","Cropped","Cropped","8%","Counts likely low due to glare."
+"2015-04-19_YB-AFq8",2015-04-19,2015-04-19,"YB","AF","8","Mt","Mytilus_trossulus","Type 15",1,0.0875,11.4285714285714,NA,"Celeste Moen","Finished","Full","Full","5%","Counts low due to blur and glare"
+"2015-04-19_YB-AFq9",2015-04-19,2015-04-19,"YB","AF","9","Mt","Mytilus_trossulus","Type 15",4,0.0875,45.7142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts may be low due to glare"
+"2015-04-19_YB-AFq5",2015-04-19,2015-04-19,"YB","AF","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","8%","Counts likely low due to glare."
+"2015-04-19_YB-AFq8",2015-04-19,2015-04-19,"YB","AF","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%","Counts low due to blur and glare"
+"2015-04-19_YB-AFq9",2015-04-19,2015-04-19,"YB","AF","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts may be low due to glare"
+"2015-04-19_YB-AFq5",2015-04-19,2015-04-19,"YB","AF","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","8%","Counts likely low due to glare."
+"2015-04-19_YB-AFq8",2015-04-19,2015-04-19,"YB","AF","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%","Counts low due to blur and glare"
+"2015-04-19_YB-AFq9",2015-04-19,2015-04-19,"YB","AF","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts may be low due to glare"
+"2015-04-19_YB-AFq5",2015-04-19,2015-04-19,"YB","AF","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","8%","Counts likely low due to glare."
+"2015-04-19_YB-AFq8",2015-04-19,2015-04-19,"YB","AF","8","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Celeste Moen","Finished","Full","Full","5%","Counts low due to blur and glare"
+"2015-04-19_YB-AFq9",2015-04-19,2015-04-19,"YB","AF","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts may be low due to glare"
+"2015-04-19_YB-AFq5",2015-04-19,2015-04-19,"YB","AF","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","8%","Counts likely low due to glare."
+"2015-04-19_YB-AFq8",2015-04-19,2015-04-19,"YB","AF","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%","Counts low due to blur and glare"
+"2015-04-19_YB-AFq9",2015-04-19,2015-04-19,"YB","AF","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts may be low due to glare"
+"2015-04-19_YB-AFq5",2015-04-19,2015-04-19,"YB","AF","5","No","Nucella_ostrina","Type 9",17,0.0875,194.285714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","8%","Counts likely low due to glare."
+"2015-04-19_YB-AFq8",2015-04-19,2015-04-19,"YB","AF","8","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Celeste Moen","Finished","Full","Full","5%","Counts low due to blur and glare"
+"2015-04-19_YB-AFq9",2015-04-19,2015-04-19,"YB","AF","9","No","Nucella_ostrina","Type 9",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts may be low due to glare"
+"2015-04-19_YB-AFq5",2015-04-19,2015-04-19,"YB","AF","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","8%","Counts likely low due to glare."
+"2015-04-19_YB-AFq8",2015-04-19,2015-04-19,"YB","AF","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%","Counts low due to blur and glare"
+"2015-04-19_YB-AFq9",2015-04-19,2015-04-19,"YB","AF","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts may be low due to glare"
+"2015-04-19_YB-AFq5",2015-04-19,2015-04-19,"YB","AF","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","8%","Counts likely low due to glare."
+"2015-04-19_YB-AFq8",2015-04-19,2015-04-19,"YB","AF","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%","Counts low due to blur and glare"
+"2015-04-19_YB-AFq9",2015-04-19,2015-04-19,"YB","AF","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts may be low due to glare"
+"2015-04-19_YB-AFq5",2015-04-19,2015-04-19,"YB","AF","5","Pp","Pollicipes_polymerus","Type 11",10,0.0875,114.285714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","8%","Counts likely low due to glare."
+"2015-04-19_YB-AFq8",2015-04-19,2015-04-19,"YB","AF","8","Pp","Pollicipes_polymerus","Type 11",3,0.0875,34.2857142857143,NA,"Celeste Moen","Finished","Full","Full","5%","Counts low due to blur and glare"
+"2015-04-19_YB-AFq9",2015-04-19,2015-04-19,"YB","AF","9","Pp","Pollicipes_polymerus","Type 11",5,0.0875,57.1428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts may be low due to glare"
+"2015-04-19_YB-AFq5",2015-04-19,2015-04-19,"YB","AF","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","8%","Counts likely low due to glare."
+"2015-04-19_YB-AFq8",2015-04-19,2015-04-19,"YB","AF","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%","Counts low due to blur and glare"
+"2015-04-19_YB-AFq9",2015-04-19,2015-04-19,"YB","AF","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts may be low due to glare"
+"2015-04-19_YB-AFq5",2015-04-19,2015-04-19,"YB","AF","5","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","8%","Counts likely low due to glare."
+"2015-04-19_YB-AFq8",2015-04-19,2015-04-19,"YB","AF","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%","Counts low due to blur and glare"
+"2015-04-19_YB-AFq9",2015-04-19,2015-04-19,"YB","AF","9","Sc","Semibalanus_cariosus","Type 5",4,0.0875,45.7142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts may be low due to glare"
+"2015-04-19_YB-AFq5",2015-04-19,2015-04-19,"YB","AF","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","8%","Counts likely low due to glare."
+"2015-04-19_YB-AFq8",2015-04-19,2015-04-19,"YB","AF","8","ScD","Semibalanus_cariosus_(dead)","Type 6",2,0.0875,22.8571428571429,NA,"Celeste Moen","Finished","Full","Full","5%","Counts low due to blur and glare"
+"2015-04-19_YB-AFq9",2015-04-19,2015-04-19,"YB","AF","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts may be low due to glare"
+"2015-04-19_YB-AGq2",2015-04-19,2015-04-19,"YB","AG","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","10%","Counts may be low due to algae."
+"2015-04-19_YB-AGq7",2015-04-19,2015-04-19,"YB","AG","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2015-04-19_YB-AGq9",2015-04-19,2015-04-19,"YB","AG","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to water patches"
+"2015-04-19_YB-AGq2",2015-04-19,2015-04-19,"YB","AG","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","10%","Counts may be low due to algae."
+"2015-04-19_YB-AGq7",2015-04-19,2015-04-19,"YB","AG","7","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2015-04-19_YB-AGq9",2015-04-19,2015-04-19,"YB","AG","9","Ae","Anemones","Type 14",15,0.0875,171.428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to water patches"
+"2015-04-19_YB-AGq2",2015-04-19,2015-04-19,"YB","AG","2","Bg","Balanus_glandula","Type 1",753,0.0875,8605.71428571429,NA,"Rebecca Friedrich","Finished","Full","Full","10%","Counts may be low due to algae."
+"2015-04-19_YB-AGq7",2015-04-19,2015-04-19,"YB","AG","7","Bg","Balanus_glandula","Type 1",573,0.0875,6548.57142857143,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2015-04-19_YB-AGq9",2015-04-19,2015-04-19,"YB","AG","9","Bg","Balanus_glandula","Type 1",145,0.0875,1657.14285714286,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to water patches"
+"2015-04-19_YB-AGq2",2015-04-19,2015-04-19,"YB","AG","2","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","10%","Counts may be low due to algae."
+"2015-04-19_YB-AGq7",2015-04-19,2015-04-19,"YB","AG","7","BgD","Balanus_glandula_(dead)","Type 2",44,0.0875,502.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2015-04-19_YB-AGq9",2015-04-19,2015-04-19,"YB","AG","9","BgD","Balanus_glandula_(dead)","Type 2",28,0.0875,320,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to water patches"
+"2015-04-19_YB-AGq2",2015-04-19,2015-04-19,"YB","AG","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","10%","Counts may be low due to algae."
+"2015-04-19_YB-AGq7",2015-04-19,2015-04-19,"YB","AG","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2015-04-19_YB-AGq9",2015-04-19,2015-04-19,"YB","AG","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to water patches"
+"2015-04-19_YB-AGq2",2015-04-19,2015-04-19,"YB","AG","2","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","10%","Counts may be low due to algae."
+"2015-04-19_YB-AGq7",2015-04-19,2015-04-19,"YB","AG","7","Cth","Chthamalus_dalli","Type 3",79,0.0875,902.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2015-04-19_YB-AGq9",2015-04-19,2015-04-19,"YB","AG","9","Cth","Chthamalus_dalli","Type 3",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to water patches"
+"2015-04-19_YB-AGq2",2015-04-19,2015-04-19,"YB","AG","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","10%","Counts may be low due to algae."
+"2015-04-19_YB-AGq7",2015-04-19,2015-04-19,"YB","AG","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2015-04-19_YB-AGq9",2015-04-19,2015-04-19,"YB","AG","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to water patches"
+"2015-04-19_YB-AGq2",2015-04-19,2015-04-19,"YB","AG","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","10%","Counts may be low due to algae."
+"2015-04-19_YB-AGq7",2015-04-19,2015-04-19,"YB","AG","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2015-04-19_YB-AGq9",2015-04-19,2015-04-19,"YB","AG","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to water patches"
+"2015-04-19_YB-AGq2",2015-04-19,2015-04-19,"YB","AG","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","10%","Counts may be low due to algae."
+"2015-04-19_YB-AGq7",2015-04-19,2015-04-19,"YB","AG","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2015-04-19_YB-AGq9",2015-04-19,2015-04-19,"YB","AG","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to water patches"
+"2015-04-19_YB-AGq2",2015-04-19,2015-04-19,"YB","AG","2","Lim","Limpets","Type 12",98,0.0875,1120,NA,"Rebecca Friedrich","Finished","Full","Full","10%","Counts may be low due to algae."
+"2015-04-19_YB-AGq7",2015-04-19,2015-04-19,"YB","AG","7","Lim","Limpets","Type 12",34,0.0875,388.571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2015-04-19_YB-AGq9",2015-04-19,2015-04-19,"YB","AG","9","Lim","Limpets","Type 12",46,0.0875,525.714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to water patches"
+"2015-04-19_YB-AGq2",2015-04-19,2015-04-19,"YB","AG","2","Ls","Littorina_sitkana","Type 13",88,0.0875,1005.71428571429,NA,"Rebecca Friedrich","Finished","Full","Full","10%","Counts may be low due to algae."
+"2015-04-19_YB-AGq7",2015-04-19,2015-04-19,"YB","AG","7","Ls","Littorina_sitkana","Type 13",224,0.0875,2560,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2015-04-19_YB-AGq9",2015-04-19,2015-04-19,"YB","AG","9","Ls","Littorina_sitkana","Type 13",261,0.0875,2982.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to water patches"
+"2015-04-19_YB-AGq2",2015-04-19,2015-04-19,"YB","AG","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","10%","Counts may be low due to algae."
+"2015-04-19_YB-AGq7",2015-04-19,2015-04-19,"YB","AG","7","Mc","Mytilus_californianus","Type 17",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2015-04-19_YB-AGq9",2015-04-19,2015-04-19,"YB","AG","9","Mc","Mytilus_californianus","Type 17",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to water patches"
+"2015-04-19_YB-AGq2",2015-04-19,2015-04-19,"YB","AG","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","10%","Counts may be low due to algae."
+"2015-04-19_YB-AGq7",2015-04-19,2015-04-19,"YB","AG","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2015-04-19_YB-AGq9",2015-04-19,2015-04-19,"YB","AG","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to water patches"
+"2015-04-19_YB-AGq2",2015-04-19,2015-04-19,"YB","AG","2","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","10%","Counts may be low due to algae."
+"2015-04-19_YB-AGq7",2015-04-19,2015-04-19,"YB","AG","7","Myt","Mytilus_spp","Type 7",86,0.0875,982.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2015-04-19_YB-AGq9",2015-04-19,2015-04-19,"YB","AG","9","Myt","Mytilus_spp","Type 7",62,0.0875,708.571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to water patches"
+"2015-04-19_YB-AGq2",2015-04-19,2015-04-19,"YB","AG","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","10%","Counts may be low due to algae."
+"2015-04-19_YB-AGq7",2015-04-19,2015-04-19,"YB","AG","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2015-04-19_YB-AGq9",2015-04-19,2015-04-19,"YB","AG","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to water patches"
+"2015-04-19_YB-AGq2",2015-04-19,2015-04-19,"YB","AG","2","Mt","Mytilus_trossulus","Type 15",217,0.0875,2480,NA,"Rebecca Friedrich","Finished","Full","Full","10%","Counts may be low due to algae."
+"2015-04-19_YB-AGq7",2015-04-19,2015-04-19,"YB","AG","7","Mt","Mytilus_trossulus","Type 15",102,0.0875,1165.71428571429,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2015-04-19_YB-AGq9",2015-04-19,2015-04-19,"YB","AG","9","Mt","Mytilus_trossulus","Type 15",75,0.0875,857.142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to water patches"
+"2015-04-19_YB-AGq2",2015-04-19,2015-04-19,"YB","AG","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","10%","Counts may be low due to algae."
+"2015-04-19_YB-AGq7",2015-04-19,2015-04-19,"YB","AG","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2015-04-19_YB-AGq9",2015-04-19,2015-04-19,"YB","AG","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to water patches"
+"2015-04-19_YB-AGq2",2015-04-19,2015-04-19,"YB","AG","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","10%","Counts may be low due to algae."
+"2015-04-19_YB-AGq7",2015-04-19,2015-04-19,"YB","AG","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2015-04-19_YB-AGq9",2015-04-19,2015-04-19,"YB","AG","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to water patches"
+"2015-04-19_YB-AGq2",2015-04-19,2015-04-19,"YB","AG","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","10%","Counts may be low due to algae."
+"2015-04-19_YB-AGq7",2015-04-19,2015-04-19,"YB","AG","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2015-04-19_YB-AGq9",2015-04-19,2015-04-19,"YB","AG","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to water patches"
+"2015-04-19_YB-AGq2",2015-04-19,2015-04-19,"YB","AG","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","10%","Counts may be low due to algae."
+"2015-04-19_YB-AGq7",2015-04-19,2015-04-19,"YB","AG","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2015-04-19_YB-AGq9",2015-04-19,2015-04-19,"YB","AG","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to water patches"
+"2015-04-19_YB-AGq2",2015-04-19,2015-04-19,"YB","AG","2","No","Nucella_ostrina","Type 9",39,0.0875,445.714285714286,NA,"Rebecca Friedrich","Finished","Full","Full","10%","Counts may be low due to algae."
+"2015-04-19_YB-AGq7",2015-04-19,2015-04-19,"YB","AG","7","No","Nucella_ostrina","Type 9",25,0.0875,285.714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2015-04-19_YB-AGq9",2015-04-19,2015-04-19,"YB","AG","9","No","Nucella_ostrina","Type 9",9,0.0875,102.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to water patches"
+"2015-04-19_YB-AGq2",2015-04-19,2015-04-19,"YB","AG","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","10%","Counts may be low due to algae."
+"2015-04-19_YB-AGq7",2015-04-19,2015-04-19,"YB","AG","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2015-04-19_YB-AGq9",2015-04-19,2015-04-19,"YB","AG","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to water patches"
+"2015-04-19_YB-AGq2",2015-04-19,2015-04-19,"YB","AG","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","10%","Counts may be low due to algae."
+"2015-04-19_YB-AGq7",2015-04-19,2015-04-19,"YB","AG","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2015-04-19_YB-AGq9",2015-04-19,2015-04-19,"YB","AG","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to water patches"
+"2015-04-19_YB-AGq2",2015-04-19,2015-04-19,"YB","AG","2","Pp","Pollicipes_polymerus","Type 11",1,0.0875,11.4285714285714,NA,"Rebecca Friedrich","Finished","Full","Full","10%","Counts may be low due to algae."
+"2015-04-19_YB-AGq7",2015-04-19,2015-04-19,"YB","AG","7","Pp","Pollicipes_polymerus","Type 11",64,0.0875,731.428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2015-04-19_YB-AGq9",2015-04-19,2015-04-19,"YB","AG","9","Pp","Pollicipes_polymerus","Type 11",325,0.0875,3714.28571428571,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to water patches"
+"2015-04-19_YB-AGq2",2015-04-19,2015-04-19,"YB","AG","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","10%","Counts may be low due to algae."
+"2015-04-19_YB-AGq7",2015-04-19,2015-04-19,"YB","AG","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2015-04-19_YB-AGq9",2015-04-19,2015-04-19,"YB","AG","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to water patches"
+"2015-04-19_YB-AGq2",2015-04-19,2015-04-19,"YB","AG","2","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Rebecca Friedrich","Finished","Full","Full","10%","Counts may be low due to algae."
+"2015-04-19_YB-AGq7",2015-04-19,2015-04-19,"YB","AG","7","Sc","Semibalanus_cariosus","Type 5",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2015-04-19_YB-AGq9",2015-04-19,2015-04-19,"YB","AG","9","Sc","Semibalanus_cariosus","Type 5",5,0.0875,57.1428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to water patches"
+"2015-04-19_YB-AGq2",2015-04-19,2015-04-19,"YB","AG","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","10%","Counts may be low due to algae."
+"2015-04-19_YB-AGq7",2015-04-19,2015-04-19,"YB","AG","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2015-04-19_YB-AGq9",2015-04-19,2015-04-19,"YB","AG","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to water patches"
+"2015-04-19_YB-Bq1",2015-04-19,2015-04-19,"YB","B","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-04-19_YB-Bq5",2015-04-19,2015-04-19,"YB","B","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to glare."
+"2015-04-19_YB-Bq6",2015-04-19,2015-04-19,"YB","B","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare."
+"2015-04-19_YB-Bq1",2015-04-19,2015-04-19,"YB","B","1","Ae","Anemones","Type 14",17,0.0875,194.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-04-19_YB-Bq5",2015-04-19,2015-04-19,"YB","B","5","Ae","Anemones","Type 14",43,0.0875,491.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to glare."
+"2015-04-19_YB-Bq6",2015-04-19,2015-04-19,"YB","B","6","Ae","Anemones","Type 14",47,0.0875,537.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare."
+"2015-04-19_YB-Bq1",2015-04-19,2015-04-19,"YB","B","1","Bg","Balanus_glandula","Type 1",40,0.0875,457.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-04-19_YB-Bq5",2015-04-19,2015-04-19,"YB","B","5","Bg","Balanus_glandula","Type 1",150,0.0875,1714.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to glare."
+"2015-04-19_YB-Bq6",2015-04-19,2015-04-19,"YB","B","6","Bg","Balanus_glandula","Type 1",94,0.0875,1074.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare."
+"2015-04-19_YB-Bq1",2015-04-19,2015-04-19,"YB","B","1","BgD","Balanus_glandula_(dead)","Type 2",18,0.0875,205.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-04-19_YB-Bq5",2015-04-19,2015-04-19,"YB","B","5","BgD","Balanus_glandula_(dead)","Type 2",13,0.0875,148.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to glare."
+"2015-04-19_YB-Bq6",2015-04-19,2015-04-19,"YB","B","6","BgD","Balanus_glandula_(dead)","Type 2",24,0.0875,274.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare."
+"2015-04-19_YB-Bq1",2015-04-19,2015-04-19,"YB","B","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-04-19_YB-Bq5",2015-04-19,2015-04-19,"YB","B","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to glare."
+"2015-04-19_YB-Bq6",2015-04-19,2015-04-19,"YB","B","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare."
+"2015-04-19_YB-Bq1",2015-04-19,2015-04-19,"YB","B","1","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-04-19_YB-Bq5",2015-04-19,2015-04-19,"YB","B","5","Cth","Chthamalus_dalli","Type 3",9,0.0875,102.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to glare."
+"2015-04-19_YB-Bq6",2015-04-19,2015-04-19,"YB","B","6","Cth","Chthamalus_dalli","Type 3",19,0.0875,217.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare."
+"2015-04-19_YB-Bq1",2015-04-19,2015-04-19,"YB","B","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-04-19_YB-Bq5",2015-04-19,2015-04-19,"YB","B","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to glare."
+"2015-04-19_YB-Bq6",2015-04-19,2015-04-19,"YB","B","6","CthD","Chthamalus_dalli (dead)","Type 4",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare."
+"2015-04-19_YB-Bq1",2015-04-19,2015-04-19,"YB","B","1","Emp","Emplectonema worm","Type 23",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-04-19_YB-Bq5",2015-04-19,2015-04-19,"YB","B","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to glare."
+"2015-04-19_YB-Bq6",2015-04-19,2015-04-19,"YB","B","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare."
+"2015-04-19_YB-Bq1",2015-04-19,2015-04-19,"YB","B","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-04-19_YB-Bq5",2015-04-19,2015-04-19,"YB","B","5","Lep","Leptasterias","Type 20",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to glare."
+"2015-04-19_YB-Bq6",2015-04-19,2015-04-19,"YB","B","6","Lep","Leptasterias","Type 20",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare."
+"2015-04-19_YB-Bq1",2015-04-19,2015-04-19,"YB","B","1","Lim","Limpets","Type 12",127,0.0875,1451.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-04-19_YB-Bq5",2015-04-19,2015-04-19,"YB","B","5","Lim","Limpets","Type 12",100,0.0875,1142.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to glare."
+"2015-04-19_YB-Bq6",2015-04-19,2015-04-19,"YB","B","6","Lim","Limpets","Type 12",103,0.0875,1177.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare."
+"2015-04-19_YB-Bq1",2015-04-19,2015-04-19,"YB","B","1","Ls","Littorina_sitkana","Type 13",103,0.0875,1177.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-04-19_YB-Bq5",2015-04-19,2015-04-19,"YB","B","5","Ls","Littorina_sitkana","Type 13",39,0.0875,445.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to glare."
+"2015-04-19_YB-Bq6",2015-04-19,2015-04-19,"YB","B","6","Ls","Littorina_sitkana","Type 13",59,0.0875,674.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare."
+"2015-04-19_YB-Bq1",2015-04-19,2015-04-19,"YB","B","1","Mc","Mytilus_californianus","Type 17",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-04-19_YB-Bq5",2015-04-19,2015-04-19,"YB","B","5","Mc","Mytilus_californianus","Type 17",60,0.0875,685.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to glare."
+"2015-04-19_YB-Bq6",2015-04-19,2015-04-19,"YB","B","6","Mc","Mytilus_californianus","Type 17",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare."
+"2015-04-19_YB-Bq1",2015-04-19,2015-04-19,"YB","B","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-04-19_YB-Bq5",2015-04-19,2015-04-19,"YB","B","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to glare."
+"2015-04-19_YB-Bq6",2015-04-19,2015-04-19,"YB","B","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare."
+"2015-04-19_YB-Bq1",2015-04-19,2015-04-19,"YB","B","1","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-04-19_YB-Bq5",2015-04-19,2015-04-19,"YB","B","5","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to glare."
+"2015-04-19_YB-Bq6",2015-04-19,2015-04-19,"YB","B","6","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare."
+"2015-04-19_YB-Bq1",2015-04-19,2015-04-19,"YB","B","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-04-19_YB-Bq5",2015-04-19,2015-04-19,"YB","B","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to glare."
+"2015-04-19_YB-Bq6",2015-04-19,2015-04-19,"YB","B","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare."
+"2015-04-19_YB-Bq1",2015-04-19,2015-04-19,"YB","B","1","Mt","Mytilus_trossulus","Type 15",36,0.0875,411.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-04-19_YB-Bq5",2015-04-19,2015-04-19,"YB","B","5","Mt","Mytilus_trossulus","Type 15",17,0.0875,194.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to glare."
+"2015-04-19_YB-Bq6",2015-04-19,2015-04-19,"YB","B","6","Mt","Mytilus_trossulus","Type 15",120,0.0875,1371.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare."
+"2015-04-19_YB-Bq1",2015-04-19,2015-04-19,"YB","B","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-04-19_YB-Bq5",2015-04-19,2015-04-19,"YB","B","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to glare."
+"2015-04-19_YB-Bq6",2015-04-19,2015-04-19,"YB","B","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare."
+"2015-04-19_YB-Bq1",2015-04-19,2015-04-19,"YB","B","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-04-19_YB-Bq5",2015-04-19,2015-04-19,"YB","B","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to glare."
+"2015-04-19_YB-Bq6",2015-04-19,2015-04-19,"YB","B","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare."
+"2015-04-19_YB-Bq1",2015-04-19,2015-04-19,"YB","B","1","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-04-19_YB-Bq5",2015-04-19,2015-04-19,"YB","B","5","Nc","Nucella_canaliculata","Type 10",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to glare."
+"2015-04-19_YB-Bq6",2015-04-19,2015-04-19,"YB","B","6","Nc","Nucella_canaliculata","Type 10",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare."
+"2015-04-19_YB-Bq1",2015-04-19,2015-04-19,"YB","B","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-04-19_YB-Bq5",2015-04-19,2015-04-19,"YB","B","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to glare."
+"2015-04-19_YB-Bq6",2015-04-19,2015-04-19,"YB","B","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare."
+"2015-04-19_YB-Bq1",2015-04-19,2015-04-19,"YB","B","1","No","Nucella_ostrina","Type 9",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-04-19_YB-Bq5",2015-04-19,2015-04-19,"YB","B","5","No","Nucella_ostrina","Type 9",11,0.0875,125.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to glare."
+"2015-04-19_YB-Bq6",2015-04-19,2015-04-19,"YB","B","6","No","Nucella_ostrina","Type 9",22,0.0875,251.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare."
+"2015-04-19_YB-Bq1",2015-04-19,2015-04-19,"YB","B","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-04-19_YB-Bq5",2015-04-19,2015-04-19,"YB","B","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to glare."
+"2015-04-19_YB-Bq6",2015-04-19,2015-04-19,"YB","B","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare."
+"2015-04-19_YB-Bq1",2015-04-19,2015-04-19,"YB","B","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-04-19_YB-Bq5",2015-04-19,2015-04-19,"YB","B","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to glare."
+"2015-04-19_YB-Bq6",2015-04-19,2015-04-19,"YB","B","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare."
+"2015-04-19_YB-Bq1",2015-04-19,2015-04-19,"YB","B","1","Pp","Pollicipes_polymerus","Type 11",1064,0.0875,12160,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-04-19_YB-Bq5",2015-04-19,2015-04-19,"YB","B","5","Pp","Pollicipes_polymerus","Type 11",521,0.0875,5954.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to glare."
+"2015-04-19_YB-Bq6",2015-04-19,2015-04-19,"YB","B","6","Pp","Pollicipes_polymerus","Type 11",396,0.0875,4525.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare."
+"2015-04-19_YB-Bq1",2015-04-19,2015-04-19,"YB","B","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-04-19_YB-Bq5",2015-04-19,2015-04-19,"YB","B","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to glare."
+"2015-04-19_YB-Bq6",2015-04-19,2015-04-19,"YB","B","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare."
+"2015-04-19_YB-Bq1",2015-04-19,2015-04-19,"YB","B","1","Sc","Semibalanus_cariosus","Type 5",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-04-19_YB-Bq5",2015-04-19,2015-04-19,"YB","B","5","Sc","Semibalanus_cariosus","Type 5",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to glare."
+"2015-04-19_YB-Bq6",2015-04-19,2015-04-19,"YB","B","6","Sc","Semibalanus_cariosus","Type 5",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare."
+"2015-04-19_YB-Bq1",2015-04-19,2015-04-19,"YB","B","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-04-19_YB-Bq5",2015-04-19,2015-04-19,"YB","B","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to glare."
+"2015-04-19_YB-Bq6",2015-04-19,2015-04-19,"YB","B","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare."
+"2015-04-19_YB-BBq1",2015-04-19,2015-04-19,"YB","BB","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to glare"
+"2015-04-19_YB-BBq2",2015-04-19,2015-04-19,"YB","BB","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to algae cover, glare and blur"
+"2015-04-19_YB-BBq9",2015-04-19,2015-04-19,"YB","BB","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-04-19_YB-BBq1",2015-04-19,2015-04-19,"YB","BB","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to glare"
+"2015-04-19_YB-BBq2",2015-04-19,2015-04-19,"YB","BB","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to algae cover, glare and blur"
+"2015-04-19_YB-BBq9",2015-04-19,2015-04-19,"YB","BB","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-04-19_YB-BBq1",2015-04-19,2015-04-19,"YB","BB","1","Bg","Balanus_glandula","Type 1",184,0.0875,2102.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to glare"
+"2015-04-19_YB-BBq2",2015-04-19,2015-04-19,"YB","BB","2","Bg","Balanus_glandula","Type 1",241,0.0875,2754.28571428571,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to algae cover, glare and blur"
+"2015-04-19_YB-BBq9",2015-04-19,2015-04-19,"YB","BB","9","Bg","Balanus_glandula","Type 1",505,0.0875,5771.42857142857,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-04-19_YB-BBq1",2015-04-19,2015-04-19,"YB","BB","1","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to glare"
+"2015-04-19_YB-BBq2",2015-04-19,2015-04-19,"YB","BB","2","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to algae cover, glare and blur"
+"2015-04-19_YB-BBq9",2015-04-19,2015-04-19,"YB","BB","9","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-04-19_YB-BBq1",2015-04-19,2015-04-19,"YB","BB","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to glare"
+"2015-04-19_YB-BBq2",2015-04-19,2015-04-19,"YB","BB","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to algae cover, glare and blur"
+"2015-04-19_YB-BBq9",2015-04-19,2015-04-19,"YB","BB","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-04-19_YB-BBq1",2015-04-19,2015-04-19,"YB","BB","1","Cth","Chthamalus_dalli","Type 3",19,0.0875,217.142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to glare"
+"2015-04-19_YB-BBq2",2015-04-19,2015-04-19,"YB","BB","2","Cth","Chthamalus_dalli","Type 3",48,0.0875,548.571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to algae cover, glare and blur"
+"2015-04-19_YB-BBq9",2015-04-19,2015-04-19,"YB","BB","9","Cth","Chthamalus_dalli","Type 3",128,0.0875,1462.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-04-19_YB-BBq1",2015-04-19,2015-04-19,"YB","BB","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to glare"
+"2015-04-19_YB-BBq2",2015-04-19,2015-04-19,"YB","BB","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to algae cover, glare and blur"
+"2015-04-19_YB-BBq9",2015-04-19,2015-04-19,"YB","BB","9","CthD","Chthamalus_dalli (dead)","Type 4",8,0.0875,91.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-04-19_YB-BBq1",2015-04-19,2015-04-19,"YB","BB","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to glare"
+"2015-04-19_YB-BBq2",2015-04-19,2015-04-19,"YB","BB","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to algae cover, glare and blur"
+"2015-04-19_YB-BBq9",2015-04-19,2015-04-19,"YB","BB","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-04-19_YB-BBq1",2015-04-19,2015-04-19,"YB","BB","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to glare"
+"2015-04-19_YB-BBq2",2015-04-19,2015-04-19,"YB","BB","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to algae cover, glare and blur"
+"2015-04-19_YB-BBq9",2015-04-19,2015-04-19,"YB","BB","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-04-19_YB-BBq1",2015-04-19,2015-04-19,"YB","BB","1","Lim","Limpets","Type 12",43,0.0875,491.428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to glare"
+"2015-04-19_YB-BBq2",2015-04-19,2015-04-19,"YB","BB","2","Lim","Limpets","Type 12",65,0.0875,742.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to algae cover, glare and blur"
+"2015-04-19_YB-BBq9",2015-04-19,2015-04-19,"YB","BB","9","Lim","Limpets","Type 12",46,0.0875,525.714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-04-19_YB-BBq1",2015-04-19,2015-04-19,"YB","BB","1","Ls","Littorina_sitkana","Type 13",161,0.0875,1840,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to glare"
+"2015-04-19_YB-BBq2",2015-04-19,2015-04-19,"YB","BB","2","Ls","Littorina_sitkana","Type 13",104,0.0875,1188.57142857143,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to algae cover, glare and blur"
+"2015-04-19_YB-BBq9",2015-04-19,2015-04-19,"YB","BB","9","Ls","Littorina_sitkana","Type 13",258,0.0875,2948.57142857143,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-04-19_YB-BBq1",2015-04-19,2015-04-19,"YB","BB","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to glare"
+"2015-04-19_YB-BBq2",2015-04-19,2015-04-19,"YB","BB","2","Mc","Mytilus_californianus","Type 17",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to algae cover, glare and blur"
+"2015-04-19_YB-BBq9",2015-04-19,2015-04-19,"YB","BB","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-04-19_YB-BBq1",2015-04-19,2015-04-19,"YB","BB","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to glare"
+"2015-04-19_YB-BBq2",2015-04-19,2015-04-19,"YB","BB","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to algae cover, glare and blur"
+"2015-04-19_YB-BBq9",2015-04-19,2015-04-19,"YB","BB","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-04-19_YB-BBq1",2015-04-19,2015-04-19,"YB","BB","1","Myt","Mytilus_spp","Type 7",114,0.0875,1302.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to glare"
+"2015-04-19_YB-BBq2",2015-04-19,2015-04-19,"YB","BB","2","Myt","Mytilus_spp","Type 7",233,0.0875,2662.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to algae cover, glare and blur"
+"2015-04-19_YB-BBq9",2015-04-19,2015-04-19,"YB","BB","9","Myt","Mytilus_spp","Type 7",140,0.0875,1600,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-04-19_YB-BBq1",2015-04-19,2015-04-19,"YB","BB","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to glare"
+"2015-04-19_YB-BBq2",2015-04-19,2015-04-19,"YB","BB","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to algae cover, glare and blur"
+"2015-04-19_YB-BBq9",2015-04-19,2015-04-19,"YB","BB","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-04-19_YB-BBq1",2015-04-19,2015-04-19,"YB","BB","1","Mt","Mytilus_trossulus","Type 15",96,0.0875,1097.14285714286,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to glare"
+"2015-04-19_YB-BBq2",2015-04-19,2015-04-19,"YB","BB","2","Mt","Mytilus_trossulus","Type 15",48,0.0875,548.571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to algae cover, glare and blur"
+"2015-04-19_YB-BBq9",2015-04-19,2015-04-19,"YB","BB","9","Mt","Mytilus_trossulus","Type 15",49,0.0875,560,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-04-19_YB-BBq1",2015-04-19,2015-04-19,"YB","BB","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to glare"
+"2015-04-19_YB-BBq2",2015-04-19,2015-04-19,"YB","BB","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to algae cover, glare and blur"
+"2015-04-19_YB-BBq9",2015-04-19,2015-04-19,"YB","BB","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-04-19_YB-BBq1",2015-04-19,2015-04-19,"YB","BB","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to glare"
+"2015-04-19_YB-BBq2",2015-04-19,2015-04-19,"YB","BB","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to algae cover, glare and blur"
+"2015-04-19_YB-BBq9",2015-04-19,2015-04-19,"YB","BB","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-04-19_YB-BBq1",2015-04-19,2015-04-19,"YB","BB","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to glare"
+"2015-04-19_YB-BBq2",2015-04-19,2015-04-19,"YB","BB","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to algae cover, glare and blur"
+"2015-04-19_YB-BBq9",2015-04-19,2015-04-19,"YB","BB","9","Nc","Nucella_canaliculata","Type 10",4,0.0875,45.7142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-04-19_YB-BBq1",2015-04-19,2015-04-19,"YB","BB","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to glare"
+"2015-04-19_YB-BBq2",2015-04-19,2015-04-19,"YB","BB","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to algae cover, glare and blur"
+"2015-04-19_YB-BBq9",2015-04-19,2015-04-19,"YB","BB","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-04-19_YB-BBq1",2015-04-19,2015-04-19,"YB","BB","1","No","Nucella_ostrina","Type 9",24,0.0875,274.285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to glare"
+"2015-04-19_YB-BBq2",2015-04-19,2015-04-19,"YB","BB","2","No","Nucella_ostrina","Type 9",4,0.0875,45.7142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to algae cover, glare and blur"
+"2015-04-19_YB-BBq9",2015-04-19,2015-04-19,"YB","BB","9","No","Nucella_ostrina","Type 9",35,0.0875,400,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-04-19_YB-BBq1",2015-04-19,2015-04-19,"YB","BB","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to glare"
+"2015-04-19_YB-BBq2",2015-04-19,2015-04-19,"YB","BB","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to algae cover, glare and blur"
+"2015-04-19_YB-BBq9",2015-04-19,2015-04-19,"YB","BB","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-04-19_YB-BBq1",2015-04-19,2015-04-19,"YB","BB","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to glare"
+"2015-04-19_YB-BBq2",2015-04-19,2015-04-19,"YB","BB","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to algae cover, glare and blur"
+"2015-04-19_YB-BBq9",2015-04-19,2015-04-19,"YB","BB","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-04-19_YB-BBq1",2015-04-19,2015-04-19,"YB","BB","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to glare"
+"2015-04-19_YB-BBq2",2015-04-19,2015-04-19,"YB","BB","2","Pp","Pollicipes_polymerus","Type 11",20,0.0875,228.571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to algae cover, glare and blur"
+"2015-04-19_YB-BBq9",2015-04-19,2015-04-19,"YB","BB","9","Pp","Pollicipes_polymerus","Type 11",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-04-19_YB-BBq1",2015-04-19,2015-04-19,"YB","BB","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to glare"
+"2015-04-19_YB-BBq2",2015-04-19,2015-04-19,"YB","BB","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to algae cover, glare and blur"
+"2015-04-19_YB-BBq9",2015-04-19,2015-04-19,"YB","BB","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-04-19_YB-BBq1",2015-04-19,2015-04-19,"YB","BB","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to glare"
+"2015-04-19_YB-BBq2",2015-04-19,2015-04-19,"YB","BB","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to algae cover, glare and blur"
+"2015-04-19_YB-BBq9",2015-04-19,2015-04-19,"YB","BB","9","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-04-19_YB-BBq1",2015-04-19,2015-04-19,"YB","BB","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to glare"
+"2015-04-19_YB-BBq2",2015-04-19,2015-04-19,"YB","BB","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to algae cover, glare and blur"
+"2015-04-19_YB-BBq9",2015-04-19,2015-04-19,"YB","BB","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-04-19_YB-BCq3",2015-04-19,2015-04-19,"YB","BC","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-04-19_YB-BCq5",2015-04-19,2015-04-19,"YB","BC","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to water patches"
+"2015-04-19_YB-BCq9",2015-04-19,2015-04-19,"YB","BC","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-04-19_YB-BCq3",2015-04-19,2015-04-19,"YB","BC","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-04-19_YB-BCq5",2015-04-19,2015-04-19,"YB","BC","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to water patches"
+"2015-04-19_YB-BCq9",2015-04-19,2015-04-19,"YB","BC","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-04-19_YB-BCq3",2015-04-19,2015-04-19,"YB","BC","3","Bg","Balanus_glandula","Type 1",348,0.0875,3977.14285714286,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-04-19_YB-BCq5",2015-04-19,2015-04-19,"YB","BC","5","Bg","Balanus_glandula","Type 1",110,0.0875,1257.14285714286,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to water patches"
+"2015-04-19_YB-BCq9",2015-04-19,2015-04-19,"YB","BC","9","Bg","Balanus_glandula","Type 1",237,0.0875,2708.57142857143,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-04-19_YB-BCq3",2015-04-19,2015-04-19,"YB","BC","3","BgD","Balanus_glandula_(dead)","Type 2",55,0.0875,628.571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-04-19_YB-BCq5",2015-04-19,2015-04-19,"YB","BC","5","BgD","Balanus_glandula_(dead)","Type 2",124,0.0875,1417.14285714286,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to water patches"
+"2015-04-19_YB-BCq9",2015-04-19,2015-04-19,"YB","BC","9","BgD","Balanus_glandula_(dead)","Type 2",33,0.0875,377.142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-04-19_YB-BCq3",2015-04-19,2015-04-19,"YB","BC","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-04-19_YB-BCq5",2015-04-19,2015-04-19,"YB","BC","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to water patches"
+"2015-04-19_YB-BCq9",2015-04-19,2015-04-19,"YB","BC","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-04-19_YB-BCq3",2015-04-19,2015-04-19,"YB","BC","3","Cth","Chthamalus_dalli","Type 3",355,0.0875,4057.14285714286,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-04-19_YB-BCq5",2015-04-19,2015-04-19,"YB","BC","5","Cth","Chthamalus_dalli","Type 3",35,0.0875,400,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to water patches"
+"2015-04-19_YB-BCq9",2015-04-19,2015-04-19,"YB","BC","9","Cth","Chthamalus_dalli","Type 3",139,0.0875,1588.57142857143,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-04-19_YB-BCq3",2015-04-19,2015-04-19,"YB","BC","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-04-19_YB-BCq5",2015-04-19,2015-04-19,"YB","BC","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to water patches"
+"2015-04-19_YB-BCq9",2015-04-19,2015-04-19,"YB","BC","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-04-19_YB-BCq3",2015-04-19,2015-04-19,"YB","BC","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-04-19_YB-BCq5",2015-04-19,2015-04-19,"YB","BC","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to water patches"
+"2015-04-19_YB-BCq9",2015-04-19,2015-04-19,"YB","BC","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-04-19_YB-BCq3",2015-04-19,2015-04-19,"YB","BC","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-04-19_YB-BCq5",2015-04-19,2015-04-19,"YB","BC","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to water patches"
+"2015-04-19_YB-BCq9",2015-04-19,2015-04-19,"YB","BC","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-04-19_YB-BCq3",2015-04-19,2015-04-19,"YB","BC","3","Lim","Limpets","Type 12",93,0.0875,1062.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-04-19_YB-BCq5",2015-04-19,2015-04-19,"YB","BC","5","Lim","Limpets","Type 12",111,0.0875,1268.57142857143,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to water patches"
+"2015-04-19_YB-BCq9",2015-04-19,2015-04-19,"YB","BC","9","Lim","Limpets","Type 12",119,0.0875,1360,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-04-19_YB-BCq3",2015-04-19,2015-04-19,"YB","BC","3","Ls","Littorina_sitkana","Type 13",137,0.0875,1565.71428571429,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-04-19_YB-BCq5",2015-04-19,2015-04-19,"YB","BC","5","Ls","Littorina_sitkana","Type 13",206,0.0875,2354.28571428571,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to water patches"
+"2015-04-19_YB-BCq9",2015-04-19,2015-04-19,"YB","BC","9","Ls","Littorina_sitkana","Type 13",98,0.0875,1120,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-04-19_YB-BCq3",2015-04-19,2015-04-19,"YB","BC","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-04-19_YB-BCq5",2015-04-19,2015-04-19,"YB","BC","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to water patches"
+"2015-04-19_YB-BCq9",2015-04-19,2015-04-19,"YB","BC","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-04-19_YB-BCq3",2015-04-19,2015-04-19,"YB","BC","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-04-19_YB-BCq5",2015-04-19,2015-04-19,"YB","BC","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to water patches"
+"2015-04-19_YB-BCq9",2015-04-19,2015-04-19,"YB","BC","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-04-19_YB-BCq3",2015-04-19,2015-04-19,"YB","BC","3","Myt","Mytilus_spp","Type 7",121,0.0875,1382.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-04-19_YB-BCq5",2015-04-19,2015-04-19,"YB","BC","5","Myt","Mytilus_spp","Type 7",40,0.0875,457.142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to water patches"
+"2015-04-19_YB-BCq9",2015-04-19,2015-04-19,"YB","BC","9","Myt","Mytilus_spp","Type 7",63,0.0875,720,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-04-19_YB-BCq3",2015-04-19,2015-04-19,"YB","BC","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-04-19_YB-BCq5",2015-04-19,2015-04-19,"YB","BC","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to water patches"
+"2015-04-19_YB-BCq9",2015-04-19,2015-04-19,"YB","BC","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-04-19_YB-BCq3",2015-04-19,2015-04-19,"YB","BC","3","Mt","Mytilus_trossulus","Type 15",81,0.0875,925.714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-04-19_YB-BCq5",2015-04-19,2015-04-19,"YB","BC","5","Mt","Mytilus_trossulus","Type 15",62,0.0875,708.571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to water patches"
+"2015-04-19_YB-BCq9",2015-04-19,2015-04-19,"YB","BC","9","Mt","Mytilus_trossulus","Type 15",102,0.0875,1165.71428571429,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-04-19_YB-BCq3",2015-04-19,2015-04-19,"YB","BC","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-04-19_YB-BCq5",2015-04-19,2015-04-19,"YB","BC","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to water patches"
+"2015-04-19_YB-BCq9",2015-04-19,2015-04-19,"YB","BC","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-04-19_YB-BCq3",2015-04-19,2015-04-19,"YB","BC","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-04-19_YB-BCq5",2015-04-19,2015-04-19,"YB","BC","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to water patches"
+"2015-04-19_YB-BCq9",2015-04-19,2015-04-19,"YB","BC","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-04-19_YB-BCq3",2015-04-19,2015-04-19,"YB","BC","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-04-19_YB-BCq5",2015-04-19,2015-04-19,"YB","BC","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to water patches"
+"2015-04-19_YB-BCq9",2015-04-19,2015-04-19,"YB","BC","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-04-19_YB-BCq3",2015-04-19,2015-04-19,"YB","BC","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-04-19_YB-BCq5",2015-04-19,2015-04-19,"YB","BC","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to water patches"
+"2015-04-19_YB-BCq9",2015-04-19,2015-04-19,"YB","BC","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-04-19_YB-BCq3",2015-04-19,2015-04-19,"YB","BC","3","No","Nucella_ostrina","Type 9",16,0.0875,182.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-04-19_YB-BCq5",2015-04-19,2015-04-19,"YB","BC","5","No","Nucella_ostrina","Type 9",16,0.0875,182.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to water patches"
+"2015-04-19_YB-BCq9",2015-04-19,2015-04-19,"YB","BC","9","No","Nucella_ostrina","Type 9",11,0.0875,125.714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-04-19_YB-BCq3",2015-04-19,2015-04-19,"YB","BC","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-04-19_YB-BCq5",2015-04-19,2015-04-19,"YB","BC","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to water patches"
+"2015-04-19_YB-BCq9",2015-04-19,2015-04-19,"YB","BC","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-04-19_YB-BCq3",2015-04-19,2015-04-19,"YB","BC","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-04-19_YB-BCq5",2015-04-19,2015-04-19,"YB","BC","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to water patches"
+"2015-04-19_YB-BCq9",2015-04-19,2015-04-19,"YB","BC","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-04-19_YB-BCq3",2015-04-19,2015-04-19,"YB","BC","3","Pp","Pollicipes_polymerus","Type 11",6,0.0875,68.5714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-04-19_YB-BCq5",2015-04-19,2015-04-19,"YB","BC","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to water patches"
+"2015-04-19_YB-BCq9",2015-04-19,2015-04-19,"YB","BC","9","Pp","Pollicipes_polymerus","Type 11",42,0.0875,480,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-04-19_YB-BCq3",2015-04-19,2015-04-19,"YB","BC","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-04-19_YB-BCq5",2015-04-19,2015-04-19,"YB","BC","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to water patches"
+"2015-04-19_YB-BCq9",2015-04-19,2015-04-19,"YB","BC","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-04-19_YB-BCq3",2015-04-19,2015-04-19,"YB","BC","3","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-04-19_YB-BCq5",2015-04-19,2015-04-19,"YB","BC","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to water patches"
+"2015-04-19_YB-BCq9",2015-04-19,2015-04-19,"YB","BC","9","Sc","Semibalanus_cariosus","Type 5",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-04-19_YB-BCq3",2015-04-19,2015-04-19,"YB","BC","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-04-19_YB-BCq5",2015-04-19,2015-04-19,"YB","BC","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts may be low due to water patches"
+"2015-04-19_YB-BCq9",2015-04-19,2015-04-19,"YB","BC","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-04-19_YB-BDq1",2015-04-19,2015-04-19,"YB","BD","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","6%",""
+"2015-04-19_YB-BDq5",2015-04-19,2015-04-19,"YB","BD","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2015-04-19_YB-BDq7",2015-04-19,2015-04-19,"YB","BD","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","18%",""
+"2015-04-19_YB-BDq1",2015-04-19,2015-04-19,"YB","BD","1","Ae","Anemones","Type 14",27,0.0875,308.571428571429,NA,"Julia Bingham","Finished","Full","Full","6%",""
+"2015-04-19_YB-BDq5",2015-04-19,2015-04-19,"YB","BD","5","Ae","Anemones","Type 14",6,0.0875,68.5714285714286,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2015-04-19_YB-BDq7",2015-04-19,2015-04-19,"YB","BD","7","Ae","Anemones","Type 14",16,0.0875,182.857142857143,NA,"Julia Bingham","Finished","Full","Full","18%",""
+"2015-04-19_YB-BDq1",2015-04-19,2015-04-19,"YB","BD","1","Bg","Balanus_glandula","Type 1",413,0.0875,4720,NA,"Julia Bingham","Finished","Full","Full","6%",""
+"2015-04-19_YB-BDq5",2015-04-19,2015-04-19,"YB","BD","5","Bg","Balanus_glandula","Type 1",207,0.0875,2365.71428571429,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2015-04-19_YB-BDq7",2015-04-19,2015-04-19,"YB","BD","7","Bg","Balanus_glandula","Type 1",322,0.0875,3680,NA,"Julia Bingham","Finished","Full","Full","18%",""
+"2015-04-19_YB-BDq1",2015-04-19,2015-04-19,"YB","BD","1","BgD","Balanus_glandula_(dead)","Type 2",92,0.0875,1051.42857142857,NA,"Julia Bingham","Finished","Full","Full","6%",""
+"2015-04-19_YB-BDq5",2015-04-19,2015-04-19,"YB","BD","5","BgD","Balanus_glandula_(dead)","Type 2",36,0.0875,411.428571428571,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2015-04-19_YB-BDq7",2015-04-19,2015-04-19,"YB","BD","7","BgD","Balanus_glandula_(dead)","Type 2",125,0.0875,1428.57142857143,NA,"Julia Bingham","Finished","Full","Full","18%",""
+"2015-04-19_YB-BDq1",2015-04-19,2015-04-19,"YB","BD","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","6%",""
+"2015-04-19_YB-BDq5",2015-04-19,2015-04-19,"YB","BD","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2015-04-19_YB-BDq7",2015-04-19,2015-04-19,"YB","BD","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","18%",""
+"2015-04-19_YB-BDq1",2015-04-19,2015-04-19,"YB","BD","1","Cth","Chthamalus_dalli","Type 3",70,0.0875,800,NA,"Julia Bingham","Finished","Full","Full","6%",""
+"2015-04-19_YB-BDq5",2015-04-19,2015-04-19,"YB","BD","5","Cth","Chthamalus_dalli","Type 3",13,0.0875,148.571428571429,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2015-04-19_YB-BDq7",2015-04-19,2015-04-19,"YB","BD","7","Cth","Chthamalus_dalli","Type 3",78,0.0875,891.428571428571,NA,"Julia Bingham","Finished","Full","Full","18%",""
+"2015-04-19_YB-BDq1",2015-04-19,2015-04-19,"YB","BD","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","6%",""
+"2015-04-19_YB-BDq5",2015-04-19,2015-04-19,"YB","BD","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2015-04-19_YB-BDq7",2015-04-19,2015-04-19,"YB","BD","7","CthD","Chthamalus_dalli (dead)","Type 4",12,0.0875,137.142857142857,NA,"Julia Bingham","Finished","Full","Full","18%",""
+"2015-04-19_YB-BDq1",2015-04-19,2015-04-19,"YB","BD","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","6%",""
+"2015-04-19_YB-BDq5",2015-04-19,2015-04-19,"YB","BD","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2015-04-19_YB-BDq7",2015-04-19,2015-04-19,"YB","BD","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","18%",""
+"2015-04-19_YB-BDq1",2015-04-19,2015-04-19,"YB","BD","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","6%",""
+"2015-04-19_YB-BDq5",2015-04-19,2015-04-19,"YB","BD","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2015-04-19_YB-BDq7",2015-04-19,2015-04-19,"YB","BD","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","18%",""
+"2015-04-19_YB-BDq1",2015-04-19,2015-04-19,"YB","BD","1","Lim","Limpets","Type 12",340,0.0875,3885.71428571429,NA,"Julia Bingham","Finished","Full","Full","6%",""
+"2015-04-19_YB-BDq5",2015-04-19,2015-04-19,"YB","BD","5","Lim","Limpets","Type 12",265,0.0875,3028.57142857143,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2015-04-19_YB-BDq7",2015-04-19,2015-04-19,"YB","BD","7","Lim","Limpets","Type 12",522,0.0875,5965.71428571429,NA,"Julia Bingham","Finished","Full","Full","18%",""
+"2015-04-19_YB-BDq1",2015-04-19,2015-04-19,"YB","BD","1","Ls","Littorina_sitkana","Type 13",417,0.0875,4765.71428571429,NA,"Julia Bingham","Finished","Full","Full","6%",""
+"2015-04-19_YB-BDq5",2015-04-19,2015-04-19,"YB","BD","5","Ls","Littorina_sitkana","Type 13",216,0.0875,2468.57142857143,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2015-04-19_YB-BDq7",2015-04-19,2015-04-19,"YB","BD","7","Ls","Littorina_sitkana","Type 13",205,0.0875,2342.85714285714,NA,"Julia Bingham","Finished","Full","Full","18%",""
+"2015-04-19_YB-BDq1",2015-04-19,2015-04-19,"YB","BD","1","Mc","Mytilus_californianus","Type 17",19,0.0875,217.142857142857,NA,"Julia Bingham","Finished","Full","Full","6%",""
+"2015-04-19_YB-BDq5",2015-04-19,2015-04-19,"YB","BD","5","Mc","Mytilus_californianus","Type 17",34,0.0875,388.571428571429,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2015-04-19_YB-BDq7",2015-04-19,2015-04-19,"YB","BD","7","Mc","Mytilus_californianus","Type 17",22,0.0875,251.428571428571,NA,"Julia Bingham","Finished","Full","Full","18%",""
+"2015-04-19_YB-BDq1",2015-04-19,2015-04-19,"YB","BD","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","6%",""
+"2015-04-19_YB-BDq5",2015-04-19,2015-04-19,"YB","BD","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2015-04-19_YB-BDq7",2015-04-19,2015-04-19,"YB","BD","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","18%",""
+"2015-04-19_YB-BDq1",2015-04-19,2015-04-19,"YB","BD","1","Myt","Mytilus_spp","Type 7",724,0.0875,8274.28571428572,NA,"Julia Bingham","Finished","Full","Full","6%",""
+"2015-04-19_YB-BDq5",2015-04-19,2015-04-19,"YB","BD","5","Myt","Mytilus_spp","Type 7",366,0.0875,4182.85714285714,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2015-04-19_YB-BDq7",2015-04-19,2015-04-19,"YB","BD","7","Myt","Mytilus_spp","Type 7",421,0.0875,4811.42857142857,NA,"Julia Bingham","Finished","Full","Full","18%",""
+"2015-04-19_YB-BDq1",2015-04-19,2015-04-19,"YB","BD","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","6%",""
+"2015-04-19_YB-BDq5",2015-04-19,2015-04-19,"YB","BD","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2015-04-19_YB-BDq7",2015-04-19,2015-04-19,"YB","BD","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","18%",""
+"2015-04-19_YB-BDq1",2015-04-19,2015-04-19,"YB","BD","1","Mt","Mytilus_trossulus","Type 15",406,0.0875,4640,NA,"Julia Bingham","Finished","Full","Full","6%",""
+"2015-04-19_YB-BDq5",2015-04-19,2015-04-19,"YB","BD","5","Mt","Mytilus_trossulus","Type 15",599,0.0875,6845.71428571429,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2015-04-19_YB-BDq7",2015-04-19,2015-04-19,"YB","BD","7","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","18%",""
+"2015-04-19_YB-BDq1",2015-04-19,2015-04-19,"YB","BD","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","6%",""
+"2015-04-19_YB-BDq5",2015-04-19,2015-04-19,"YB","BD","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2015-04-19_YB-BDq7",2015-04-19,2015-04-19,"YB","BD","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","18%",""
+"2015-04-19_YB-BDq1",2015-04-19,2015-04-19,"YB","BD","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","6%",""
+"2015-04-19_YB-BDq5",2015-04-19,2015-04-19,"YB","BD","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2015-04-19_YB-BDq7",2015-04-19,2015-04-19,"YB","BD","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","18%",""
+"2015-04-19_YB-BDq1",2015-04-19,2015-04-19,"YB","BD","1","Nc","Nucella_canaliculata","Type 10",3,0.0875,34.2857142857143,NA,"Julia Bingham","Finished","Full","Full","6%",""
+"2015-04-19_YB-BDq5",2015-04-19,2015-04-19,"YB","BD","5","Nc","Nucella_canaliculata","Type 10",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2015-04-19_YB-BDq7",2015-04-19,2015-04-19,"YB","BD","7","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","18%",""
+"2015-04-19_YB-BDq1",2015-04-19,2015-04-19,"YB","BD","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","6%",""
+"2015-04-19_YB-BDq5",2015-04-19,2015-04-19,"YB","BD","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2015-04-19_YB-BDq7",2015-04-19,2015-04-19,"YB","BD","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","18%",""
+"2015-04-19_YB-BDq1",2015-04-19,2015-04-19,"YB","BD","1","No","Nucella_ostrina","Type 9",31,0.0875,354.285714285714,NA,"Julia Bingham","Finished","Full","Full","6%",""
+"2015-04-19_YB-BDq5",2015-04-19,2015-04-19,"YB","BD","5","No","Nucella_ostrina","Type 9",8,0.0875,91.4285714285714,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2015-04-19_YB-BDq7",2015-04-19,2015-04-19,"YB","BD","7","No","Nucella_ostrina","Type 9",21,0.0875,240,NA,"Julia Bingham","Finished","Full","Full","18%",""
+"2015-04-19_YB-BDq1",2015-04-19,2015-04-19,"YB","BD","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","6%",""
+"2015-04-19_YB-BDq5",2015-04-19,2015-04-19,"YB","BD","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2015-04-19_YB-BDq7",2015-04-19,2015-04-19,"YB","BD","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","18%",""
+"2015-04-19_YB-BDq1",2015-04-19,2015-04-19,"YB","BD","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","6%",""
+"2015-04-19_YB-BDq5",2015-04-19,2015-04-19,"YB","BD","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2015-04-19_YB-BDq7",2015-04-19,2015-04-19,"YB","BD","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","18%",""
+"2015-04-19_YB-BDq1",2015-04-19,2015-04-19,"YB","BD","1","Pp","Pollicipes_polymerus","Type 11",2967,0.0875,33908.5714285714,NA,"Julia Bingham","Finished","Full","Full","6%",""
+"2015-04-19_YB-BDq5",2015-04-19,2015-04-19,"YB","BD","5","Pp","Pollicipes_polymerus","Type 11",1280,0.0875,14628.5714285714,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2015-04-19_YB-BDq7",2015-04-19,2015-04-19,"YB","BD","7","Pp","Pollicipes_polymerus","Type 11",1357,0.0875,15508.5714285714,NA,"Julia Bingham","Finished","Full","Full","18%",""
+"2015-04-19_YB-BDq1",2015-04-19,2015-04-19,"YB","BD","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","6%",""
+"2015-04-19_YB-BDq5",2015-04-19,2015-04-19,"YB","BD","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2015-04-19_YB-BDq7",2015-04-19,2015-04-19,"YB","BD","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","18%",""
+"2015-04-19_YB-BDq1",2015-04-19,2015-04-19,"YB","BD","1","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","6%",""
+"2015-04-19_YB-BDq5",2015-04-19,2015-04-19,"YB","BD","5","Sc","Semibalanus_cariosus","Type 5",4,0.0875,45.7142857142857,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2015-04-19_YB-BDq7",2015-04-19,2015-04-19,"YB","BD","7","Sc","Semibalanus_cariosus","Type 5",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Full","18%",""
+"2015-04-19_YB-BDq1",2015-04-19,2015-04-19,"YB","BD","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","6%",""
+"2015-04-19_YB-BDq5",2015-04-19,2015-04-19,"YB","BD","5","ScD","Semibalanus_cariosus_(dead)","Type 6",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2015-04-19_YB-BDq7",2015-04-19,2015-04-19,"YB","BD","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","18%",""
+"2015-04-19_YB-BEq2",2015-04-19,2015-04-19,"YB","BE","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-04-19_YB-BEq3",2015-04-19,2015-04-19,"YB","BE","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-04-19_YB-BEq6",2015-04-19,2015-04-19,"YB","BE","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-BEq2",2015-04-19,2015-04-19,"YB","BE","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-04-19_YB-BEq3",2015-04-19,2015-04-19,"YB","BE","3","Ae","Anemones","Type 14",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-04-19_YB-BEq6",2015-04-19,2015-04-19,"YB","BE","6","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-BEq2",2015-04-19,2015-04-19,"YB","BE","2","Bg","Balanus_glandula","Type 1",382,0.0875,4365.71428571429,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-04-19_YB-BEq3",2015-04-19,2015-04-19,"YB","BE","3","Bg","Balanus_glandula","Type 1",400,0.0875,4571.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-04-19_YB-BEq6",2015-04-19,2015-04-19,"YB","BE","6","Bg","Balanus_glandula","Type 1",573,0.0875,6548.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-BEq2",2015-04-19,2015-04-19,"YB","BE","2","BgD","Balanus_glandula_(dead)","Type 2",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-04-19_YB-BEq3",2015-04-19,2015-04-19,"YB","BE","3","BgD","Balanus_glandula_(dead)","Type 2",26,0.0875,297.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-04-19_YB-BEq6",2015-04-19,2015-04-19,"YB","BE","6","BgD","Balanus_glandula_(dead)","Type 2",65,0.0875,742.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-BEq2",2015-04-19,2015-04-19,"YB","BE","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-04-19_YB-BEq3",2015-04-19,2015-04-19,"YB","BE","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-04-19_YB-BEq6",2015-04-19,2015-04-19,"YB","BE","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-BEq2",2015-04-19,2015-04-19,"YB","BE","2","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-04-19_YB-BEq3",2015-04-19,2015-04-19,"YB","BE","3","Cth","Chthamalus_dalli","Type 3",82,0.0875,937.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-04-19_YB-BEq6",2015-04-19,2015-04-19,"YB","BE","6","Cth","Chthamalus_dalli","Type 3",155,0.0875,1771.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-BEq2",2015-04-19,2015-04-19,"YB","BE","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-04-19_YB-BEq3",2015-04-19,2015-04-19,"YB","BE","3","CthD","Chthamalus_dalli (dead)","Type 4",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-04-19_YB-BEq6",2015-04-19,2015-04-19,"YB","BE","6","CthD","Chthamalus_dalli (dead)","Type 4",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-BEq2",2015-04-19,2015-04-19,"YB","BE","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-04-19_YB-BEq3",2015-04-19,2015-04-19,"YB","BE","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-04-19_YB-BEq6",2015-04-19,2015-04-19,"YB","BE","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-BEq2",2015-04-19,2015-04-19,"YB","BE","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-04-19_YB-BEq3",2015-04-19,2015-04-19,"YB","BE","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-04-19_YB-BEq6",2015-04-19,2015-04-19,"YB","BE","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-BEq2",2015-04-19,2015-04-19,"YB","BE","2","Lim","Limpets","Type 12",33,0.0875,377.142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-04-19_YB-BEq3",2015-04-19,2015-04-19,"YB","BE","3","Lim","Limpets","Type 12",190,0.0875,2171.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-04-19_YB-BEq6",2015-04-19,2015-04-19,"YB","BE","6","Lim","Limpets","Type 12",231,0.0875,2640,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-BEq2",2015-04-19,2015-04-19,"YB","BE","2","Ls","Littorina_sitkana","Type 13",299,0.0875,3417.14285714286,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-04-19_YB-BEq3",2015-04-19,2015-04-19,"YB","BE","3","Ls","Littorina_sitkana","Type 13",293,0.0875,3348.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-04-19_YB-BEq6",2015-04-19,2015-04-19,"YB","BE","6","Ls","Littorina_sitkana","Type 13",453,0.0875,5177.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-BEq2",2015-04-19,2015-04-19,"YB","BE","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-04-19_YB-BEq3",2015-04-19,2015-04-19,"YB","BE","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-04-19_YB-BEq6",2015-04-19,2015-04-19,"YB","BE","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-BEq2",2015-04-19,2015-04-19,"YB","BE","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-04-19_YB-BEq3",2015-04-19,2015-04-19,"YB","BE","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-04-19_YB-BEq6",2015-04-19,2015-04-19,"YB","BE","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-BEq2",2015-04-19,2015-04-19,"YB","BE","2","Myt","Mytilus_spp","Type 7",51,0.0875,582.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-04-19_YB-BEq3",2015-04-19,2015-04-19,"YB","BE","3","Myt","Mytilus_spp","Type 7",11,0.0875,125.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-04-19_YB-BEq6",2015-04-19,2015-04-19,"YB","BE","6","Myt","Mytilus_spp","Type 7",60,0.0875,685.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-BEq2",2015-04-19,2015-04-19,"YB","BE","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-04-19_YB-BEq3",2015-04-19,2015-04-19,"YB","BE","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-04-19_YB-BEq6",2015-04-19,2015-04-19,"YB","BE","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-BEq2",2015-04-19,2015-04-19,"YB","BE","2","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-04-19_YB-BEq3",2015-04-19,2015-04-19,"YB","BE","3","Mt","Mytilus_trossulus","Type 15",90,0.0875,1028.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-04-19_YB-BEq6",2015-04-19,2015-04-19,"YB","BE","6","Mt","Mytilus_trossulus","Type 15",67,0.0875,765.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-BEq2",2015-04-19,2015-04-19,"YB","BE","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-04-19_YB-BEq3",2015-04-19,2015-04-19,"YB","BE","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-04-19_YB-BEq6",2015-04-19,2015-04-19,"YB","BE","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-BEq2",2015-04-19,2015-04-19,"YB","BE","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-04-19_YB-BEq3",2015-04-19,2015-04-19,"YB","BE","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-04-19_YB-BEq6",2015-04-19,2015-04-19,"YB","BE","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-BEq2",2015-04-19,2015-04-19,"YB","BE","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-04-19_YB-BEq3",2015-04-19,2015-04-19,"YB","BE","3","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-04-19_YB-BEq6",2015-04-19,2015-04-19,"YB","BE","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-BEq2",2015-04-19,2015-04-19,"YB","BE","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-04-19_YB-BEq3",2015-04-19,2015-04-19,"YB","BE","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-04-19_YB-BEq6",2015-04-19,2015-04-19,"YB","BE","6","Negg","Nucella_eggs","Type 26",19,0.0875,217.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-BEq2",2015-04-19,2015-04-19,"YB","BE","2","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-04-19_YB-BEq3",2015-04-19,2015-04-19,"YB","BE","3","No","Nucella_ostrina","Type 9",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-04-19_YB-BEq6",2015-04-19,2015-04-19,"YB","BE","6","No","Nucella_ostrina","Type 9",17,0.0875,194.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-BEq2",2015-04-19,2015-04-19,"YB","BE","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-04-19_YB-BEq3",2015-04-19,2015-04-19,"YB","BE","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-04-19_YB-BEq6",2015-04-19,2015-04-19,"YB","BE","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-BEq2",2015-04-19,2015-04-19,"YB","BE","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-04-19_YB-BEq3",2015-04-19,2015-04-19,"YB","BE","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-04-19_YB-BEq6",2015-04-19,2015-04-19,"YB","BE","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-BEq2",2015-04-19,2015-04-19,"YB","BE","2","Pp","Pollicipes_polymerus","Type 11",8,0.0875,91.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-04-19_YB-BEq3",2015-04-19,2015-04-19,"YB","BE","3","Pp","Pollicipes_polymerus","Type 11",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-04-19_YB-BEq6",2015-04-19,2015-04-19,"YB","BE","6","Pp","Pollicipes_polymerus","Type 11",21,0.0875,240,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-BEq2",2015-04-19,2015-04-19,"YB","BE","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-04-19_YB-BEq3",2015-04-19,2015-04-19,"YB","BE","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-04-19_YB-BEq6",2015-04-19,2015-04-19,"YB","BE","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-BEq2",2015-04-19,2015-04-19,"YB","BE","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-04-19_YB-BEq3",2015-04-19,2015-04-19,"YB","BE","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-04-19_YB-BEq6",2015-04-19,2015-04-19,"YB","BE","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-BEq2",2015-04-19,2015-04-19,"YB","BE","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-04-19_YB-BEq3",2015-04-19,2015-04-19,"YB","BE","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-04-19_YB-BEq6",2015-04-19,2015-04-19,"YB","BE","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-BFq1",2015-04-19,2015-04-19,"YB","BF","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-BFq4",2015-04-19,2015-04-19,"YB","BF","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-04-19_YB-BFq9",2015-04-19,2015-04-19,"YB","BF","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","90%","Counts likely low due to algae."
+"2015-04-19_YB-BFq1",2015-04-19,2015-04-19,"YB","BF","1","Ae","Anemones","Type 14",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-BFq4",2015-04-19,2015-04-19,"YB","BF","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-04-19_YB-BFq9",2015-04-19,2015-04-19,"YB","BF","9","Ae","Anemones","Type 14",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","90%","Counts likely low due to algae."
+"2015-04-19_YB-BFq1",2015-04-19,2015-04-19,"YB","BF","1","Bg","Balanus_glandula","Type 1",463,0.0875,5291.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-BFq4",2015-04-19,2015-04-19,"YB","BF","4","Bg","Balanus_glandula","Type 1",586,0.0875,6697.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-04-19_YB-BFq9",2015-04-19,2015-04-19,"YB","BF","9","Bg","Balanus_glandula","Type 1",94,0.0875,1074.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","90%","Counts likely low due to algae."
+"2015-04-19_YB-BFq1",2015-04-19,2015-04-19,"YB","BF","1","BgD","Balanus_glandula_(dead)","Type 2",104,0.0875,1188.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-BFq4",2015-04-19,2015-04-19,"YB","BF","4","BgD","Balanus_glandula_(dead)","Type 2",43,0.0875,491.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-04-19_YB-BFq9",2015-04-19,2015-04-19,"YB","BF","9","BgD","Balanus_glandula_(dead)","Type 2",35,0.0875,400,NA,"Beatriz Vaca","Finished","Full","Full","90%","Counts likely low due to algae."
+"2015-04-19_YB-BFq1",2015-04-19,2015-04-19,"YB","BF","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-BFq4",2015-04-19,2015-04-19,"YB","BF","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-04-19_YB-BFq9",2015-04-19,2015-04-19,"YB","BF","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","90%","Counts likely low due to algae."
+"2015-04-19_YB-BFq1",2015-04-19,2015-04-19,"YB","BF","1","Cth","Chthamalus_dalli","Type 3",144,0.0875,1645.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-BFq4",2015-04-19,2015-04-19,"YB","BF","4","Cth","Chthamalus_dalli","Type 3",139,0.0875,1588.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-04-19_YB-BFq9",2015-04-19,2015-04-19,"YB","BF","9","Cth","Chthamalus_dalli","Type 3",10,0.0875,114.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","90%","Counts likely low due to algae."
+"2015-04-19_YB-BFq1",2015-04-19,2015-04-19,"YB","BF","1","CthD","Chthamalus_dalli (dead)","Type 4",19,0.0875,217.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-BFq4",2015-04-19,2015-04-19,"YB","BF","4","CthD","Chthamalus_dalli (dead)","Type 4",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-04-19_YB-BFq9",2015-04-19,2015-04-19,"YB","BF","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","90%","Counts likely low due to algae."
+"2015-04-19_YB-BFq1",2015-04-19,2015-04-19,"YB","BF","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-BFq4",2015-04-19,2015-04-19,"YB","BF","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-04-19_YB-BFq9",2015-04-19,2015-04-19,"YB","BF","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","90%","Counts likely low due to algae."
+"2015-04-19_YB-BFq1",2015-04-19,2015-04-19,"YB","BF","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-BFq4",2015-04-19,2015-04-19,"YB","BF","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-04-19_YB-BFq9",2015-04-19,2015-04-19,"YB","BF","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","90%","Counts likely low due to algae."
+"2015-04-19_YB-BFq1",2015-04-19,2015-04-19,"YB","BF","1","Lim","Limpets","Type 12",175,0.0875,2000,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-BFq4",2015-04-19,2015-04-19,"YB","BF","4","Lim","Limpets","Type 12",277,0.0875,3165.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-04-19_YB-BFq9",2015-04-19,2015-04-19,"YB","BF","9","Lim","Limpets","Type 12",56,0.0875,640,NA,"Beatriz Vaca","Finished","Full","Full","90%","Counts likely low due to algae."
+"2015-04-19_YB-BFq1",2015-04-19,2015-04-19,"YB","BF","1","Ls","Littorina_sitkana","Type 13",318,0.0875,3634.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-BFq4",2015-04-19,2015-04-19,"YB","BF","4","Ls","Littorina_sitkana","Type 13",617,0.0875,7051.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-04-19_YB-BFq9",2015-04-19,2015-04-19,"YB","BF","9","Ls","Littorina_sitkana","Type 13",205,0.0875,2342.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","90%","Counts likely low due to algae."
+"2015-04-19_YB-BFq1",2015-04-19,2015-04-19,"YB","BF","1","Mc","Mytilus_californianus","Type 17",23,0.0875,262.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-BFq4",2015-04-19,2015-04-19,"YB","BF","4","Mc","Mytilus_californianus","Type 17",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-04-19_YB-BFq9",2015-04-19,2015-04-19,"YB","BF","9","Mc","Mytilus_californianus","Type 17",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","90%","Counts likely low due to algae."
+"2015-04-19_YB-BFq1",2015-04-19,2015-04-19,"YB","BF","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-BFq4",2015-04-19,2015-04-19,"YB","BF","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-04-19_YB-BFq9",2015-04-19,2015-04-19,"YB","BF","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","90%","Counts likely low due to algae."
+"2015-04-19_YB-BFq1",2015-04-19,2015-04-19,"YB","BF","1","Myt","Mytilus_spp","Type 7",80,0.0875,914.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-BFq4",2015-04-19,2015-04-19,"YB","BF","4","Myt","Mytilus_spp","Type 7",42,0.0875,480,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-04-19_YB-BFq9",2015-04-19,2015-04-19,"YB","BF","9","Myt","Mytilus_spp","Type 7",55,0.0875,628.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","90%","Counts likely low due to algae."
+"2015-04-19_YB-BFq1",2015-04-19,2015-04-19,"YB","BF","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-BFq4",2015-04-19,2015-04-19,"YB","BF","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-04-19_YB-BFq9",2015-04-19,2015-04-19,"YB","BF","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","90%","Counts likely low due to algae."
+"2015-04-19_YB-BFq1",2015-04-19,2015-04-19,"YB","BF","1","Mt","Mytilus_trossulus","Type 15",136,0.0875,1554.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-BFq4",2015-04-19,2015-04-19,"YB","BF","4","Mt","Mytilus_trossulus","Type 15",137,0.0875,1565.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-04-19_YB-BFq9",2015-04-19,2015-04-19,"YB","BF","9","Mt","Mytilus_trossulus","Type 15",74,0.0875,845.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","90%","Counts likely low due to algae."
+"2015-04-19_YB-BFq1",2015-04-19,2015-04-19,"YB","BF","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-BFq4",2015-04-19,2015-04-19,"YB","BF","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-04-19_YB-BFq9",2015-04-19,2015-04-19,"YB","BF","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","90%","Counts likely low due to algae."
+"2015-04-19_YB-BFq1",2015-04-19,2015-04-19,"YB","BF","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-BFq4",2015-04-19,2015-04-19,"YB","BF","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-04-19_YB-BFq9",2015-04-19,2015-04-19,"YB","BF","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","90%","Counts likely low due to algae."
+"2015-04-19_YB-BFq1",2015-04-19,2015-04-19,"YB","BF","1","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-BFq4",2015-04-19,2015-04-19,"YB","BF","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-04-19_YB-BFq9",2015-04-19,2015-04-19,"YB","BF","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","90%","Counts likely low due to algae."
+"2015-04-19_YB-BFq1",2015-04-19,2015-04-19,"YB","BF","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-BFq4",2015-04-19,2015-04-19,"YB","BF","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-04-19_YB-BFq9",2015-04-19,2015-04-19,"YB","BF","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","90%","Counts likely low due to algae."
+"2015-04-19_YB-BFq1",2015-04-19,2015-04-19,"YB","BF","1","No","Nucella_ostrina","Type 9",17,0.0875,194.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-BFq4",2015-04-19,2015-04-19,"YB","BF","4","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-04-19_YB-BFq9",2015-04-19,2015-04-19,"YB","BF","9","No","Nucella_ostrina","Type 9",19,0.0875,217.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","90%","Counts likely low due to algae."
+"2015-04-19_YB-BFq1",2015-04-19,2015-04-19,"YB","BF","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-BFq4",2015-04-19,2015-04-19,"YB","BF","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-04-19_YB-BFq9",2015-04-19,2015-04-19,"YB","BF","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","90%","Counts likely low due to algae."
+"2015-04-19_YB-BFq1",2015-04-19,2015-04-19,"YB","BF","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-BFq4",2015-04-19,2015-04-19,"YB","BF","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-04-19_YB-BFq9",2015-04-19,2015-04-19,"YB","BF","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","90%","Counts likely low due to algae."
+"2015-04-19_YB-BFq1",2015-04-19,2015-04-19,"YB","BF","1","Pp","Pollicipes_polymerus","Type 11",103,0.0875,1177.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-BFq4",2015-04-19,2015-04-19,"YB","BF","4","Pp","Pollicipes_polymerus","Type 11",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-04-19_YB-BFq9",2015-04-19,2015-04-19,"YB","BF","9","Pp","Pollicipes_polymerus","Type 11",242,0.0875,2765.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","90%","Counts likely low due to algae."
+"2015-04-19_YB-BFq1",2015-04-19,2015-04-19,"YB","BF","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-BFq4",2015-04-19,2015-04-19,"YB","BF","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-04-19_YB-BFq9",2015-04-19,2015-04-19,"YB","BF","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","90%","Counts likely low due to algae."
+"2015-04-19_YB-BFq1",2015-04-19,2015-04-19,"YB","BF","1","Sc","Semibalanus_cariosus","Type 5",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-BFq4",2015-04-19,2015-04-19,"YB","BF","4","Sc","Semibalanus_cariosus","Type 5",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-04-19_YB-BFq9",2015-04-19,2015-04-19,"YB","BF","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","90%","Counts likely low due to algae."
+"2015-04-19_YB-BFq1",2015-04-19,2015-04-19,"YB","BF","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-BFq4",2015-04-19,2015-04-19,"YB","BF","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-04-19_YB-BFq9",2015-04-19,2015-04-19,"YB","BF","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","90%","Counts likely low due to algae."
+"2015-04-19_YB-Cq2",2015-04-19,2015-04-19,"YB","C","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare."
+"2015-04-19_YB-Cq4",2015-04-19,2015-04-19,"YB","C","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts likely low due to glare."
+"2015-04-19_YB-Cq6",2015-04-19,2015-04-19,"YB","C","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-04-19_YB-Cq2",2015-04-19,2015-04-19,"YB","C","2","Ae","Anemones","Type 14",21,0.0875,240,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare."
+"2015-04-19_YB-Cq4",2015-04-19,2015-04-19,"YB","C","4","Ae","Anemones","Type 14",37,0.0875,422.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts likely low due to glare."
+"2015-04-19_YB-Cq6",2015-04-19,2015-04-19,"YB","C","6","Ae","Anemones","Type 14",17,0.0875,194.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-04-19_YB-Cq2",2015-04-19,2015-04-19,"YB","C","2","Bg","Balanus_glandula","Type 1",139,0.0875,1588.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare."
+"2015-04-19_YB-Cq4",2015-04-19,2015-04-19,"YB","C","4","Bg","Balanus_glandula","Type 1",158,0.0875,1805.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts likely low due to glare."
+"2015-04-19_YB-Cq6",2015-04-19,2015-04-19,"YB","C","6","Bg","Balanus_glandula","Type 1",131,0.0875,1497.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-04-19_YB-Cq2",2015-04-19,2015-04-19,"YB","C","2","BgD","Balanus_glandula_(dead)","Type 2",81,0.0875,925.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare."
+"2015-04-19_YB-Cq4",2015-04-19,2015-04-19,"YB","C","4","BgD","Balanus_glandula_(dead)","Type 2",124,0.0875,1417.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts likely low due to glare."
+"2015-04-19_YB-Cq6",2015-04-19,2015-04-19,"YB","C","6","BgD","Balanus_glandula_(dead)","Type 2",29,0.0875,331.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-04-19_YB-Cq2",2015-04-19,2015-04-19,"YB","C","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare."
+"2015-04-19_YB-Cq4",2015-04-19,2015-04-19,"YB","C","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts likely low due to glare."
+"2015-04-19_YB-Cq6",2015-04-19,2015-04-19,"YB","C","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-04-19_YB-Cq2",2015-04-19,2015-04-19,"YB","C","2","Cth","Chthamalus_dalli","Type 3",33,0.0875,377.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare."
+"2015-04-19_YB-Cq4",2015-04-19,2015-04-19,"YB","C","4","Cth","Chthamalus_dalli","Type 3",26,0.0875,297.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts likely low due to glare."
+"2015-04-19_YB-Cq6",2015-04-19,2015-04-19,"YB","C","6","Cth","Chthamalus_dalli","Type 3",56,0.0875,640,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-04-19_YB-Cq2",2015-04-19,2015-04-19,"YB","C","2","CthD","Chthamalus_dalli (dead)","Type 4",10,0.0875,114.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare."
+"2015-04-19_YB-Cq4",2015-04-19,2015-04-19,"YB","C","4","CthD","Chthamalus_dalli (dead)","Type 4",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts likely low due to glare."
+"2015-04-19_YB-Cq6",2015-04-19,2015-04-19,"YB","C","6","CthD","Chthamalus_dalli (dead)","Type 4",12,0.0875,137.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-04-19_YB-Cq2",2015-04-19,2015-04-19,"YB","C","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare."
+"2015-04-19_YB-Cq4",2015-04-19,2015-04-19,"YB","C","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts likely low due to glare."
+"2015-04-19_YB-Cq6",2015-04-19,2015-04-19,"YB","C","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-04-19_YB-Cq2",2015-04-19,2015-04-19,"YB","C","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare."
+"2015-04-19_YB-Cq4",2015-04-19,2015-04-19,"YB","C","4","Lep","Leptasterias","Type 20",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts likely low due to glare."
+"2015-04-19_YB-Cq6",2015-04-19,2015-04-19,"YB","C","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-04-19_YB-Cq2",2015-04-19,2015-04-19,"YB","C","2","Lim","Limpets","Type 12",144,0.0875,1645.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare."
+"2015-04-19_YB-Cq4",2015-04-19,2015-04-19,"YB","C","4","Lim","Limpets","Type 12",157,0.0875,1794.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts likely low due to glare."
+"2015-04-19_YB-Cq6",2015-04-19,2015-04-19,"YB","C","6","Lim","Limpets","Type 12",125,0.0875,1428.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-04-19_YB-Cq2",2015-04-19,2015-04-19,"YB","C","2","Ls","Littorina_sitkana","Type 13",62,0.0875,708.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare."
+"2015-04-19_YB-Cq4",2015-04-19,2015-04-19,"YB","C","4","Ls","Littorina_sitkana","Type 13",43,0.0875,491.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts likely low due to glare."
+"2015-04-19_YB-Cq6",2015-04-19,2015-04-19,"YB","C","6","Ls","Littorina_sitkana","Type 13",24,0.0875,274.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-04-19_YB-Cq2",2015-04-19,2015-04-19,"YB","C","2","Mc","Mytilus_californianus","Type 17",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare."
+"2015-04-19_YB-Cq4",2015-04-19,2015-04-19,"YB","C","4","Mc","Mytilus_californianus","Type 17",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts likely low due to glare."
+"2015-04-19_YB-Cq6",2015-04-19,2015-04-19,"YB","C","6","Mc","Mytilus_californianus","Type 17",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-04-19_YB-Cq2",2015-04-19,2015-04-19,"YB","C","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare."
+"2015-04-19_YB-Cq4",2015-04-19,2015-04-19,"YB","C","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts likely low due to glare."
+"2015-04-19_YB-Cq6",2015-04-19,2015-04-19,"YB","C","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-04-19_YB-Cq2",2015-04-19,2015-04-19,"YB","C","2","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare."
+"2015-04-19_YB-Cq4",2015-04-19,2015-04-19,"YB","C","4","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts likely low due to glare."
+"2015-04-19_YB-Cq6",2015-04-19,2015-04-19,"YB","C","6","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-04-19_YB-Cq2",2015-04-19,2015-04-19,"YB","C","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare."
+"2015-04-19_YB-Cq4",2015-04-19,2015-04-19,"YB","C","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts likely low due to glare."
+"2015-04-19_YB-Cq6",2015-04-19,2015-04-19,"YB","C","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-04-19_YB-Cq2",2015-04-19,2015-04-19,"YB","C","2","Mt","Mytilus_trossulus","Type 15",41,0.0875,468.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare."
+"2015-04-19_YB-Cq4",2015-04-19,2015-04-19,"YB","C","4","Mt","Mytilus_trossulus","Type 15",22,0.0875,251.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts likely low due to glare."
+"2015-04-19_YB-Cq6",2015-04-19,2015-04-19,"YB","C","6","Mt","Mytilus_trossulus","Type 15",70,0.0875,800,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-04-19_YB-Cq2",2015-04-19,2015-04-19,"YB","C","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare."
+"2015-04-19_YB-Cq4",2015-04-19,2015-04-19,"YB","C","4","MtD","Mytilus_trossulus_(dead)","Type 16",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts likely low due to glare."
+"2015-04-19_YB-Cq6",2015-04-19,2015-04-19,"YB","C","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-04-19_YB-Cq2",2015-04-19,2015-04-19,"YB","C","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare."
+"2015-04-19_YB-Cq4",2015-04-19,2015-04-19,"YB","C","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts likely low due to glare."
+"2015-04-19_YB-Cq6",2015-04-19,2015-04-19,"YB","C","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-04-19_YB-Cq2",2015-04-19,2015-04-19,"YB","C","2","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare."
+"2015-04-19_YB-Cq4",2015-04-19,2015-04-19,"YB","C","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts likely low due to glare."
+"2015-04-19_YB-Cq6",2015-04-19,2015-04-19,"YB","C","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-04-19_YB-Cq2",2015-04-19,2015-04-19,"YB","C","2","Negg","Nucella_eggs","Type 26",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare."
+"2015-04-19_YB-Cq4",2015-04-19,2015-04-19,"YB","C","4","Negg","Nucella_eggs","Type 26",17,0.0875,194.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts likely low due to glare."
+"2015-04-19_YB-Cq6",2015-04-19,2015-04-19,"YB","C","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-04-19_YB-Cq2",2015-04-19,2015-04-19,"YB","C","2","No","Nucella_ostrina","Type 9",24,0.0875,274.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare."
+"2015-04-19_YB-Cq4",2015-04-19,2015-04-19,"YB","C","4","No","Nucella_ostrina","Type 9",19,0.0875,217.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts likely low due to glare."
+"2015-04-19_YB-Cq6",2015-04-19,2015-04-19,"YB","C","6","No","Nucella_ostrina","Type 9",16,0.0875,182.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-04-19_YB-Cq2",2015-04-19,2015-04-19,"YB","C","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare."
+"2015-04-19_YB-Cq4",2015-04-19,2015-04-19,"YB","C","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts likely low due to glare."
+"2015-04-19_YB-Cq6",2015-04-19,2015-04-19,"YB","C","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-04-19_YB-Cq2",2015-04-19,2015-04-19,"YB","C","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare."
+"2015-04-19_YB-Cq4",2015-04-19,2015-04-19,"YB","C","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts likely low due to glare."
+"2015-04-19_YB-Cq6",2015-04-19,2015-04-19,"YB","C","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-04-19_YB-Cq2",2015-04-19,2015-04-19,"YB","C","2","Pp","Pollicipes_polymerus","Type 11",774,0.0875,8845.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare."
+"2015-04-19_YB-Cq4",2015-04-19,2015-04-19,"YB","C","4","Pp","Pollicipes_polymerus","Type 11",774,0.0875,8845.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts likely low due to glare."
+"2015-04-19_YB-Cq6",2015-04-19,2015-04-19,"YB","C","6","Pp","Pollicipes_polymerus","Type 11",443,0.0875,5062.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-04-19_YB-Cq2",2015-04-19,2015-04-19,"YB","C","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare."
+"2015-04-19_YB-Cq4",2015-04-19,2015-04-19,"YB","C","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts likely low due to glare."
+"2015-04-19_YB-Cq6",2015-04-19,2015-04-19,"YB","C","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-04-19_YB-Cq2",2015-04-19,2015-04-19,"YB","C","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare."
+"2015-04-19_YB-Cq4",2015-04-19,2015-04-19,"YB","C","4","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts likely low due to glare."
+"2015-04-19_YB-Cq6",2015-04-19,2015-04-19,"YB","C","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-04-19_YB-Cq2",2015-04-19,2015-04-19,"YB","C","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare."
+"2015-04-19_YB-Cq4",2015-04-19,2015-04-19,"YB","C","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts likely low due to glare."
+"2015-04-19_YB-Cq6",2015-04-19,2015-04-19,"YB","C","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-04-19_YB-Dq3",2015-04-19,2015-04-19,"YB","D","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","7%","Counts likely low due to glare."
+"2015-04-19_YB-Dq4",2015-04-19,2015-04-19,"YB","D","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to blur and glare"
+"2015-04-19_YB-Dq5",2015-04-19,2015-04-19,"YB","D","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-Dq3",2015-04-19,2015-04-19,"YB","D","3","Ae","Anemones","Type 14",17,0.0875,194.285714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","7%","Counts likely low due to glare."
+"2015-04-19_YB-Dq4",2015-04-19,2015-04-19,"YB","D","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to blur and glare"
+"2015-04-19_YB-Dq5",2015-04-19,2015-04-19,"YB","D","5","Ae","Anemones","Type 14",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-Dq3",2015-04-19,2015-04-19,"YB","D","3","Bg","Balanus_glandula","Type 1",50,0.015625,3200,"c","Beatriz Vaca","Finished","Cropped","Cropped","7%","Counts likely low due to glare."
+"2015-04-19_YB-Dq4",2015-04-19,2015-04-19,"YB","D","4","Bg","Balanus_glandula","Type 1",991,0.0875,11325.7142857143,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to blur and glare"
+"2015-04-19_YB-Dq5",2015-04-19,2015-04-19,"YB","D","5","Bg","Balanus_glandula","Type 1",346,0.0875,3954.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-Dq3",2015-04-19,2015-04-19,"YB","D","3","BgD","Balanus_glandula_(dead)","Type 2",34,0.015625,2176,"c","Beatriz Vaca","Finished","Cropped","Cropped","7%","Counts likely low due to glare."
+"2015-04-19_YB-Dq4",2015-04-19,2015-04-19,"YB","D","4","BgD","Balanus_glandula_(dead)","Type 2",13,0.0875,148.571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to blur and glare"
+"2015-04-19_YB-Dq5",2015-04-19,2015-04-19,"YB","D","5","BgD","Balanus_glandula_(dead)","Type 2",161,0.0875,1840,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-Dq3",2015-04-19,2015-04-19,"YB","D","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","7%","Counts likely low due to glare."
+"2015-04-19_YB-Dq4",2015-04-19,2015-04-19,"YB","D","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to blur and glare"
+"2015-04-19_YB-Dq5",2015-04-19,2015-04-19,"YB","D","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-Dq3",2015-04-19,2015-04-19,"YB","D","3","Cth","Chthamalus_dalli","Type 3",10,0.015625,640,"c","Beatriz Vaca","Finished","Cropped","Cropped","7%","Counts likely low due to glare."
+"2015-04-19_YB-Dq4",2015-04-19,2015-04-19,"YB","D","4","Cth","Chthamalus_dalli","Type 3",13,0.0875,148.571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to blur and glare"
+"2015-04-19_YB-Dq5",2015-04-19,2015-04-19,"YB","D","5","Cth","Chthamalus_dalli","Type 3",31,0.0875,354.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-Dq3",2015-04-19,2015-04-19,"YB","D","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","7%","Counts likely low due to glare."
+"2015-04-19_YB-Dq4",2015-04-19,2015-04-19,"YB","D","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to blur and glare"
+"2015-04-19_YB-Dq5",2015-04-19,2015-04-19,"YB","D","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-Dq3",2015-04-19,2015-04-19,"YB","D","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","7%","Counts likely low due to glare."
+"2015-04-19_YB-Dq4",2015-04-19,2015-04-19,"YB","D","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to blur and glare"
+"2015-04-19_YB-Dq5",2015-04-19,2015-04-19,"YB","D","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-Dq3",2015-04-19,2015-04-19,"YB","D","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","7%","Counts likely low due to glare."
+"2015-04-19_YB-Dq4",2015-04-19,2015-04-19,"YB","D","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to blur and glare"
+"2015-04-19_YB-Dq5",2015-04-19,2015-04-19,"YB","D","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-Dq3",2015-04-19,2015-04-19,"YB","D","3","Lim","Limpets","Type 12",87,0.0875,994.285714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","7%","Counts likely low due to glare."
+"2015-04-19_YB-Dq4",2015-04-19,2015-04-19,"YB","D","4","Lim","Limpets","Type 12",30,0.0875,342.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to blur and glare"
+"2015-04-19_YB-Dq5",2015-04-19,2015-04-19,"YB","D","5","Lim","Limpets","Type 12",174,0.0875,1988.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-Dq3",2015-04-19,2015-04-19,"YB","D","3","Ls","Littorina_sitkana","Type 13",156,0.0875,1782.85714285714,NA,"Beatriz Vaca","Finished","Cropped","Cropped","7%","Counts likely low due to glare."
+"2015-04-19_YB-Dq4",2015-04-19,2015-04-19,"YB","D","4","Ls","Littorina_sitkana","Type 13",211,0.0875,2411.42857142857,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to blur and glare"
+"2015-04-19_YB-Dq5",2015-04-19,2015-04-19,"YB","D","5","Ls","Littorina_sitkana","Type 13",175,0.0875,2000,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-Dq3",2015-04-19,2015-04-19,"YB","D","3","Mc","Mytilus_californianus","Type 17",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","7%","Counts likely low due to glare."
+"2015-04-19_YB-Dq4",2015-04-19,2015-04-19,"YB","D","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to blur and glare"
+"2015-04-19_YB-Dq5",2015-04-19,2015-04-19,"YB","D","5","Mc","Mytilus_californianus","Type 17",22,0.0875,251.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-Dq3",2015-04-19,2015-04-19,"YB","D","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","7%","Counts likely low due to glare."
+"2015-04-19_YB-Dq4",2015-04-19,2015-04-19,"YB","D","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to blur and glare"
+"2015-04-19_YB-Dq5",2015-04-19,2015-04-19,"YB","D","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-Dq3",2015-04-19,2015-04-19,"YB","D","3","Myt","Mytilus_spp","Type 7",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","7%","Counts likely low due to glare."
+"2015-04-19_YB-Dq4",2015-04-19,2015-04-19,"YB","D","4","Myt","Mytilus_spp","Type 7",328,0.0875,3748.57142857143,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to blur and glare"
+"2015-04-19_YB-Dq5",2015-04-19,2015-04-19,"YB","D","5","Myt","Mytilus_spp","Type 7",187,0.0875,2137.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-Dq3",2015-04-19,2015-04-19,"YB","D","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","7%","Counts likely low due to glare."
+"2015-04-19_YB-Dq4",2015-04-19,2015-04-19,"YB","D","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to blur and glare"
+"2015-04-19_YB-Dq5",2015-04-19,2015-04-19,"YB","D","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-Dq3",2015-04-19,2015-04-19,"YB","D","3","Mt","Mytilus_trossulus","Type 15",41,0.015625,2624,"c","Beatriz Vaca","Finished","Cropped","Cropped","7%","Counts likely low due to glare."
+"2015-04-19_YB-Dq4",2015-04-19,2015-04-19,"YB","D","4","Mt","Mytilus_trossulus","Type 15",70,0.0875,800,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to blur and glare"
+"2015-04-19_YB-Dq5",2015-04-19,2015-04-19,"YB","D","5","Mt","Mytilus_trossulus","Type 15",88,0.0875,1005.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-Dq3",2015-04-19,2015-04-19,"YB","D","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.015625,0,"c","Beatriz Vaca","Finished","Cropped","Cropped","7%","Counts likely low due to glare."
+"2015-04-19_YB-Dq4",2015-04-19,2015-04-19,"YB","D","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to blur and glare"
+"2015-04-19_YB-Dq5",2015-04-19,2015-04-19,"YB","D","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-Dq3",2015-04-19,2015-04-19,"YB","D","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","7%","Counts likely low due to glare."
+"2015-04-19_YB-Dq4",2015-04-19,2015-04-19,"YB","D","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to blur and glare"
+"2015-04-19_YB-Dq5",2015-04-19,2015-04-19,"YB","D","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-Dq3",2015-04-19,2015-04-19,"YB","D","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","7%","Counts likely low due to glare."
+"2015-04-19_YB-Dq4",2015-04-19,2015-04-19,"YB","D","4","Nc","Nucella_canaliculata","Type 10",4,0.0875,45.7142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to blur and glare"
+"2015-04-19_YB-Dq5",2015-04-19,2015-04-19,"YB","D","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-Dq3",2015-04-19,2015-04-19,"YB","D","3","Negg","Nucella_eggs","Type 26",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Cropped","Cropped","7%","Counts likely low due to glare."
+"2015-04-19_YB-Dq4",2015-04-19,2015-04-19,"YB","D","4","Negg","Nucella_eggs","Type 26",7,0.0875,80,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to blur and glare"
+"2015-04-19_YB-Dq5",2015-04-19,2015-04-19,"YB","D","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-Dq3",2015-04-19,2015-04-19,"YB","D","3","No","Nucella_ostrina","Type 9",25,0.0875,285.714285714286,NA,"Beatriz Vaca","Finished","Cropped","Cropped","7%","Counts likely low due to glare."
+"2015-04-19_YB-Dq4",2015-04-19,2015-04-19,"YB","D","4","No","Nucella_ostrina","Type 9",8,0.0875,91.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to blur and glare"
+"2015-04-19_YB-Dq5",2015-04-19,2015-04-19,"YB","D","5","No","Nucella_ostrina","Type 9",29,0.0875,331.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-Dq3",2015-04-19,2015-04-19,"YB","D","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","7%","Counts likely low due to glare."
+"2015-04-19_YB-Dq4",2015-04-19,2015-04-19,"YB","D","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to blur and glare"
+"2015-04-19_YB-Dq5",2015-04-19,2015-04-19,"YB","D","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-Dq3",2015-04-19,2015-04-19,"YB","D","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","7%","Counts likely low due to glare."
+"2015-04-19_YB-Dq4",2015-04-19,2015-04-19,"YB","D","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to blur and glare"
+"2015-04-19_YB-Dq5",2015-04-19,2015-04-19,"YB","D","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-Dq3",2015-04-19,2015-04-19,"YB","D","3","Pp","Pollicipes_polymerus","Type 11",13,0.0875,148.571428571429,NA,"Beatriz Vaca","Finished","Cropped","Cropped","7%","Counts likely low due to glare."
+"2015-04-19_YB-Dq4",2015-04-19,2015-04-19,"YB","D","4","Pp","Pollicipes_polymerus","Type 11",12,0.0875,137.142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to blur and glare"
+"2015-04-19_YB-Dq5",2015-04-19,2015-04-19,"YB","D","5","Pp","Pollicipes_polymerus","Type 11",28,0.0875,320,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-Dq3",2015-04-19,2015-04-19,"YB","D","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","7%","Counts likely low due to glare."
+"2015-04-19_YB-Dq4",2015-04-19,2015-04-19,"YB","D","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to blur and glare"
+"2015-04-19_YB-Dq5",2015-04-19,2015-04-19,"YB","D","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-Dq3",2015-04-19,2015-04-19,"YB","D","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","7%","Counts likely low due to glare."
+"2015-04-19_YB-Dq4",2015-04-19,2015-04-19,"YB","D","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to blur and glare"
+"2015-04-19_YB-Dq5",2015-04-19,2015-04-19,"YB","D","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-Dq3",2015-04-19,2015-04-19,"YB","D","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Cropped","Cropped","7%","Counts likely low due to glare."
+"2015-04-19_YB-Dq4",2015-04-19,2015-04-19,"YB","D","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to blur and glare"
+"2015-04-19_YB-Dq5",2015-04-19,2015-04-19,"YB","D","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-04-19_YB-Eq3",2015-04-19,2015-04-19,"YB","E","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts low due to glare"
+"2015-04-19_YB-Eq4",2015-04-19,2015-04-19,"YB","E","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts low due to glare"
+"2015-04-19_YB-Eq8",2015-04-19,2015-04-19,"YB","E","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","8%","Counts low due to glare"
+"2015-04-19_YB-Eq3",2015-04-19,2015-04-19,"YB","E","3","Ae","Anemones","Type 14",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts low due to glare"
+"2015-04-19_YB-Eq4",2015-04-19,2015-04-19,"YB","E","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts low due to glare"
+"2015-04-19_YB-Eq8",2015-04-19,2015-04-19,"YB","E","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","8%","Counts low due to glare"
+"2015-04-19_YB-Eq3",2015-04-19,2015-04-19,"YB","E","3","Bg","Balanus_glandula","Type 1",213,0.0875,2434.28571428571,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts low due to glare"
+"2015-04-19_YB-Eq4",2015-04-19,2015-04-19,"YB","E","4","Bg","Balanus_glandula","Type 1",122,0.0875,1394.28571428571,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts low due to glare"
+"2015-04-19_YB-Eq8",2015-04-19,2015-04-19,"YB","E","8","Bg","Balanus_glandula","Type 1",113,0.0875,1291.42857142857,NA,"Stephanie Merhoff","Finished","Full","Full","8%","Counts low due to glare"
+"2015-04-19_YB-Eq3",2015-04-19,2015-04-19,"YB","E","3","BgD","Balanus_glandula_(dead)","Type 2",6,0.0875,68.5714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts low due to glare"
+"2015-04-19_YB-Eq4",2015-04-19,2015-04-19,"YB","E","4","BgD","Balanus_glandula_(dead)","Type 2",8,0.0875,91.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts low due to glare"
+"2015-04-19_YB-Eq8",2015-04-19,2015-04-19,"YB","E","8","BgD","Balanus_glandula_(dead)","Type 2",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","8%","Counts low due to glare"
+"2015-04-19_YB-Eq3",2015-04-19,2015-04-19,"YB","E","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts low due to glare"
+"2015-04-19_YB-Eq4",2015-04-19,2015-04-19,"YB","E","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts low due to glare"
+"2015-04-19_YB-Eq8",2015-04-19,2015-04-19,"YB","E","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","8%","Counts low due to glare"
+"2015-04-19_YB-Eq3",2015-04-19,2015-04-19,"YB","E","3","Cth","Chthamalus_dalli","Type 3",19,0.0875,217.142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts low due to glare"
+"2015-04-19_YB-Eq4",2015-04-19,2015-04-19,"YB","E","4","Cth","Chthamalus_dalli","Type 3",32,0.0875,365.714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts low due to glare"
+"2015-04-19_YB-Eq8",2015-04-19,2015-04-19,"YB","E","8","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","8%","Counts low due to glare"
+"2015-04-19_YB-Eq3",2015-04-19,2015-04-19,"YB","E","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts low due to glare"
+"2015-04-19_YB-Eq4",2015-04-19,2015-04-19,"YB","E","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts low due to glare"
+"2015-04-19_YB-Eq8",2015-04-19,2015-04-19,"YB","E","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","8%","Counts low due to glare"
+"2015-04-19_YB-Eq3",2015-04-19,2015-04-19,"YB","E","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts low due to glare"
+"2015-04-19_YB-Eq4",2015-04-19,2015-04-19,"YB","E","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts low due to glare"
+"2015-04-19_YB-Eq8",2015-04-19,2015-04-19,"YB","E","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","8%","Counts low due to glare"
+"2015-04-19_YB-Eq3",2015-04-19,2015-04-19,"YB","E","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts low due to glare"
+"2015-04-19_YB-Eq4",2015-04-19,2015-04-19,"YB","E","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts low due to glare"
+"2015-04-19_YB-Eq8",2015-04-19,2015-04-19,"YB","E","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","8%","Counts low due to glare"
+"2015-04-19_YB-Eq3",2015-04-19,2015-04-19,"YB","E","3","Lim","Limpets","Type 12",81,0.0875,925.714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts low due to glare"
+"2015-04-19_YB-Eq4",2015-04-19,2015-04-19,"YB","E","4","Lim","Limpets","Type 12",101,0.0875,1154.28571428571,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts low due to glare"
+"2015-04-19_YB-Eq8",2015-04-19,2015-04-19,"YB","E","8","Lim","Limpets","Type 12",37,0.0875,422.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","8%","Counts low due to glare"
+"2015-04-19_YB-Eq3",2015-04-19,2015-04-19,"YB","E","3","Ls","Littorina_sitkana","Type 13",128,0.0875,1462.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts low due to glare"
+"2015-04-19_YB-Eq4",2015-04-19,2015-04-19,"YB","E","4","Ls","Littorina_sitkana","Type 13",80,0.0875,914.285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts low due to glare"
+"2015-04-19_YB-Eq8",2015-04-19,2015-04-19,"YB","E","8","Ls","Littorina_sitkana","Type 13",51,0.0875,582.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","8%","Counts low due to glare"
+"2015-04-19_YB-Eq3",2015-04-19,2015-04-19,"YB","E","3","Mc","Mytilus_californianus","Type 17",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts low due to glare"
+"2015-04-19_YB-Eq4",2015-04-19,2015-04-19,"YB","E","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts low due to glare"
+"2015-04-19_YB-Eq8",2015-04-19,2015-04-19,"YB","E","8","Mc","Mytilus_californianus","Type 17",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","8%","Counts low due to glare"
+"2015-04-19_YB-Eq3",2015-04-19,2015-04-19,"YB","E","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts low due to glare"
+"2015-04-19_YB-Eq4",2015-04-19,2015-04-19,"YB","E","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts low due to glare"
+"2015-04-19_YB-Eq8",2015-04-19,2015-04-19,"YB","E","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","8%","Counts low due to glare"
+"2015-04-19_YB-Eq3",2015-04-19,2015-04-19,"YB","E","3","Myt","Mytilus_spp","Type 7",21,0.0875,240,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts low due to glare"
+"2015-04-19_YB-Eq4",2015-04-19,2015-04-19,"YB","E","4","Myt","Mytilus_spp","Type 7",17,0.0875,194.285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts low due to glare"
+"2015-04-19_YB-Eq8",2015-04-19,2015-04-19,"YB","E","8","Myt","Mytilus_spp","Type 7",67,0.0875,765.714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","8%","Counts low due to glare"
+"2015-04-19_YB-Eq3",2015-04-19,2015-04-19,"YB","E","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts low due to glare"
+"2015-04-19_YB-Eq4",2015-04-19,2015-04-19,"YB","E","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts low due to glare"
+"2015-04-19_YB-Eq8",2015-04-19,2015-04-19,"YB","E","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","8%","Counts low due to glare"
+"2015-04-19_YB-Eq3",2015-04-19,2015-04-19,"YB","E","3","Mt","Mytilus_trossulus","Type 15",14,0.0875,160,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts low due to glare"
+"2015-04-19_YB-Eq4",2015-04-19,2015-04-19,"YB","E","4","Mt","Mytilus_trossulus","Type 15",13,0.0875,148.571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts low due to glare"
+"2015-04-19_YB-Eq8",2015-04-19,2015-04-19,"YB","E","8","Mt","Mytilus_trossulus","Type 15",15,0.0875,171.428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","8%","Counts low due to glare"
+"2015-04-19_YB-Eq3",2015-04-19,2015-04-19,"YB","E","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts low due to glare"
+"2015-04-19_YB-Eq4",2015-04-19,2015-04-19,"YB","E","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts low due to glare"
+"2015-04-19_YB-Eq8",2015-04-19,2015-04-19,"YB","E","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","8%","Counts low due to glare"
+"2015-04-19_YB-Eq3",2015-04-19,2015-04-19,"YB","E","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts low due to glare"
+"2015-04-19_YB-Eq4",2015-04-19,2015-04-19,"YB","E","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts low due to glare"
+"2015-04-19_YB-Eq8",2015-04-19,2015-04-19,"YB","E","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","8%","Counts low due to glare"
+"2015-04-19_YB-Eq3",2015-04-19,2015-04-19,"YB","E","3","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts low due to glare"
+"2015-04-19_YB-Eq4",2015-04-19,2015-04-19,"YB","E","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts low due to glare"
+"2015-04-19_YB-Eq8",2015-04-19,2015-04-19,"YB","E","8","Nc","Nucella_canaliculata","Type 10",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","8%","Counts low due to glare"
+"2015-04-19_YB-Eq3",2015-04-19,2015-04-19,"YB","E","3","Negg","Nucella_eggs","Type 26",6,0.0875,68.5714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts low due to glare"
+"2015-04-19_YB-Eq4",2015-04-19,2015-04-19,"YB","E","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts low due to glare"
+"2015-04-19_YB-Eq8",2015-04-19,2015-04-19,"YB","E","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","8%","Counts low due to glare"
+"2015-04-19_YB-Eq3",2015-04-19,2015-04-19,"YB","E","3","No","Nucella_ostrina","Type 9",26,0.0875,297.142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts low due to glare"
+"2015-04-19_YB-Eq4",2015-04-19,2015-04-19,"YB","E","4","No","Nucella_ostrina","Type 9",21,0.0875,240,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts low due to glare"
+"2015-04-19_YB-Eq8",2015-04-19,2015-04-19,"YB","E","8","No","Nucella_ostrina","Type 9",22,0.0875,251.428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","8%","Counts low due to glare"
+"2015-04-19_YB-Eq3",2015-04-19,2015-04-19,"YB","E","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts low due to glare"
+"2015-04-19_YB-Eq4",2015-04-19,2015-04-19,"YB","E","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts low due to glare"
+"2015-04-19_YB-Eq8",2015-04-19,2015-04-19,"YB","E","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","8%","Counts low due to glare"
+"2015-04-19_YB-Eq3",2015-04-19,2015-04-19,"YB","E","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts low due to glare"
+"2015-04-19_YB-Eq4",2015-04-19,2015-04-19,"YB","E","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts low due to glare"
+"2015-04-19_YB-Eq8",2015-04-19,2015-04-19,"YB","E","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","8%","Counts low due to glare"
+"2015-04-19_YB-Eq3",2015-04-19,2015-04-19,"YB","E","3","Pp","Pollicipes_polymerus","Type 11",349,0.0875,3988.57142857143,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts low due to glare"
+"2015-04-19_YB-Eq4",2015-04-19,2015-04-19,"YB","E","4","Pp","Pollicipes_polymerus","Type 11",387,0.0875,4422.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts low due to glare"
+"2015-04-19_YB-Eq8",2015-04-19,2015-04-19,"YB","E","8","Pp","Pollicipes_polymerus","Type 11",779,0.0875,8902.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","8%","Counts low due to glare"
+"2015-04-19_YB-Eq3",2015-04-19,2015-04-19,"YB","E","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts low due to glare"
+"2015-04-19_YB-Eq4",2015-04-19,2015-04-19,"YB","E","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts low due to glare"
+"2015-04-19_YB-Eq8",2015-04-19,2015-04-19,"YB","E","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","8%","Counts low due to glare"
+"2015-04-19_YB-Eq3",2015-04-19,2015-04-19,"YB","E","3","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts low due to glare"
+"2015-04-19_YB-Eq4",2015-04-19,2015-04-19,"YB","E","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts low due to glare"
+"2015-04-19_YB-Eq8",2015-04-19,2015-04-19,"YB","E","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","8%","Counts low due to glare"
+"2015-04-19_YB-Eq3",2015-04-19,2015-04-19,"YB","E","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts low due to glare"
+"2015-04-19_YB-Eq4",2015-04-19,2015-04-19,"YB","E","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts low due to glare"
+"2015-04-19_YB-Eq8",2015-04-19,2015-04-19,"YB","E","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","8%","Counts low due to glare"
+"2015-04-19_YB-Fq4",2015-04-19,2015-04-19,"YB","F","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-04-19_YB-Fq5",2015-04-19,2015-04-19,"YB","F","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2015-04-19_YB-Fq6",2015-04-19,2015-04-19,"YB","F","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-04-19_YB-Fq4",2015-04-19,2015-04-19,"YB","F","4","Ae","Anemones","Type 14",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-04-19_YB-Fq5",2015-04-19,2015-04-19,"YB","F","5","Ae","Anemones","Type 14",10,0.0875,114.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2015-04-19_YB-Fq6",2015-04-19,2015-04-19,"YB","F","6","Ae","Anemones","Type 14",10,0.0875,114.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-04-19_YB-Fq4",2015-04-19,2015-04-19,"YB","F","4","Bg","Balanus_glandula","Type 1",233,0.0875,2662.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-04-19_YB-Fq5",2015-04-19,2015-04-19,"YB","F","5","Bg","Balanus_glandula","Type 1",206,0.0875,2354.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2015-04-19_YB-Fq6",2015-04-19,2015-04-19,"YB","F","6","Bg","Balanus_glandula","Type 1",304,0.0875,3474.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-04-19_YB-Fq4",2015-04-19,2015-04-19,"YB","F","4","BgD","Balanus_glandula_(dead)","Type 2",40,0.0875,457.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-04-19_YB-Fq5",2015-04-19,2015-04-19,"YB","F","5","BgD","Balanus_glandula_(dead)","Type 2",59,0.0875,674.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2015-04-19_YB-Fq6",2015-04-19,2015-04-19,"YB","F","6","BgD","Balanus_glandula_(dead)","Type 2",79,0.0875,902.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-04-19_YB-Fq4",2015-04-19,2015-04-19,"YB","F","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-04-19_YB-Fq5",2015-04-19,2015-04-19,"YB","F","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2015-04-19_YB-Fq6",2015-04-19,2015-04-19,"YB","F","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-04-19_YB-Fq4",2015-04-19,2015-04-19,"YB","F","4","Cth","Chthamalus_dalli","Type 3",147,0.0875,1680,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-04-19_YB-Fq5",2015-04-19,2015-04-19,"YB","F","5","Cth","Chthamalus_dalli","Type 3",66,0.0875,754.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2015-04-19_YB-Fq6",2015-04-19,2015-04-19,"YB","F","6","Cth","Chthamalus_dalli","Type 3",55,0.0875,628.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-04-19_YB-Fq4",2015-04-19,2015-04-19,"YB","F","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-04-19_YB-Fq5",2015-04-19,2015-04-19,"YB","F","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2015-04-19_YB-Fq6",2015-04-19,2015-04-19,"YB","F","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-04-19_YB-Fq4",2015-04-19,2015-04-19,"YB","F","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-04-19_YB-Fq5",2015-04-19,2015-04-19,"YB","F","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2015-04-19_YB-Fq6",2015-04-19,2015-04-19,"YB","F","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-04-19_YB-Fq4",2015-04-19,2015-04-19,"YB","F","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-04-19_YB-Fq5",2015-04-19,2015-04-19,"YB","F","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2015-04-19_YB-Fq6",2015-04-19,2015-04-19,"YB","F","6","Lep","Leptasterias","Type 20",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-04-19_YB-Fq4",2015-04-19,2015-04-19,"YB","F","4","Lim","Limpets","Type 12",277,0.0875,3165.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-04-19_YB-Fq5",2015-04-19,2015-04-19,"YB","F","5","Lim","Limpets","Type 12",318,0.0875,3634.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2015-04-19_YB-Fq6",2015-04-19,2015-04-19,"YB","F","6","Lim","Limpets","Type 12",229,0.0875,2617.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-04-19_YB-Fq4",2015-04-19,2015-04-19,"YB","F","4","Ls","Littorina_sitkana","Type 13",107,0.0875,1222.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-04-19_YB-Fq5",2015-04-19,2015-04-19,"YB","F","5","Ls","Littorina_sitkana","Type 13",105,0.0875,1200,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2015-04-19_YB-Fq6",2015-04-19,2015-04-19,"YB","F","6","Ls","Littorina_sitkana","Type 13",104,0.0875,1188.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-04-19_YB-Fq4",2015-04-19,2015-04-19,"YB","F","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-04-19_YB-Fq5",2015-04-19,2015-04-19,"YB","F","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2015-04-19_YB-Fq6",2015-04-19,2015-04-19,"YB","F","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-04-19_YB-Fq4",2015-04-19,2015-04-19,"YB","F","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-04-19_YB-Fq5",2015-04-19,2015-04-19,"YB","F","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2015-04-19_YB-Fq6",2015-04-19,2015-04-19,"YB","F","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-04-19_YB-Fq4",2015-04-19,2015-04-19,"YB","F","4","Myt","Mytilus_spp","Type 7",64,0.0875,731.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-04-19_YB-Fq5",2015-04-19,2015-04-19,"YB","F","5","Myt","Mytilus_spp","Type 7",34,0.0875,388.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2015-04-19_YB-Fq6",2015-04-19,2015-04-19,"YB","F","6","Myt","Mytilus_spp","Type 7",105,0.0875,1200,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-04-19_YB-Fq4",2015-04-19,2015-04-19,"YB","F","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-04-19_YB-Fq5",2015-04-19,2015-04-19,"YB","F","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2015-04-19_YB-Fq6",2015-04-19,2015-04-19,"YB","F","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-04-19_YB-Fq4",2015-04-19,2015-04-19,"YB","F","4","Mt","Mytilus_trossulus","Type 15",69,0.0875,788.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-04-19_YB-Fq5",2015-04-19,2015-04-19,"YB","F","5","Mt","Mytilus_trossulus","Type 15",156,0.0875,1782.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2015-04-19_YB-Fq6",2015-04-19,2015-04-19,"YB","F","6","Mt","Mytilus_trossulus","Type 15",102,0.0875,1165.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-04-19_YB-Fq4",2015-04-19,2015-04-19,"YB","F","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-04-19_YB-Fq5",2015-04-19,2015-04-19,"YB","F","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2015-04-19_YB-Fq6",2015-04-19,2015-04-19,"YB","F","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-04-19_YB-Fq4",2015-04-19,2015-04-19,"YB","F","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-04-19_YB-Fq5",2015-04-19,2015-04-19,"YB","F","5","Ner","Nereis_worm","Type 24",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2015-04-19_YB-Fq6",2015-04-19,2015-04-19,"YB","F","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-04-19_YB-Fq4",2015-04-19,2015-04-19,"YB","F","4","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-04-19_YB-Fq5",2015-04-19,2015-04-19,"YB","F","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2015-04-19_YB-Fq6",2015-04-19,2015-04-19,"YB","F","6","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-04-19_YB-Fq4",2015-04-19,2015-04-19,"YB","F","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-04-19_YB-Fq5",2015-04-19,2015-04-19,"YB","F","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2015-04-19_YB-Fq6",2015-04-19,2015-04-19,"YB","F","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-04-19_YB-Fq4",2015-04-19,2015-04-19,"YB","F","4","No","Nucella_ostrina","Type 9",14,0.0875,160,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-04-19_YB-Fq5",2015-04-19,2015-04-19,"YB","F","5","No","Nucella_ostrina","Type 9",20,0.0875,228.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2015-04-19_YB-Fq6",2015-04-19,2015-04-19,"YB","F","6","No","Nucella_ostrina","Type 9",35,0.0875,400,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-04-19_YB-Fq4",2015-04-19,2015-04-19,"YB","F","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-04-19_YB-Fq5",2015-04-19,2015-04-19,"YB","F","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2015-04-19_YB-Fq6",2015-04-19,2015-04-19,"YB","F","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-04-19_YB-Fq4",2015-04-19,2015-04-19,"YB","F","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-04-19_YB-Fq5",2015-04-19,2015-04-19,"YB","F","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2015-04-19_YB-Fq6",2015-04-19,2015-04-19,"YB","F","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-04-19_YB-Fq4",2015-04-19,2015-04-19,"YB","F","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-04-19_YB-Fq5",2015-04-19,2015-04-19,"YB","F","5","Pp","Pollicipes_polymerus","Type 11",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2015-04-19_YB-Fq6",2015-04-19,2015-04-19,"YB","F","6","Pp","Pollicipes_polymerus","Type 11",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-04-19_YB-Fq4",2015-04-19,2015-04-19,"YB","F","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-04-19_YB-Fq5",2015-04-19,2015-04-19,"YB","F","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2015-04-19_YB-Fq6",2015-04-19,2015-04-19,"YB","F","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-04-19_YB-Fq4",2015-04-19,2015-04-19,"YB","F","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-04-19_YB-Fq5",2015-04-19,2015-04-19,"YB","F","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2015-04-19_YB-Fq6",2015-04-19,2015-04-19,"YB","F","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-04-19_YB-Fq4",2015-04-19,2015-04-19,"YB","F","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-04-19_YB-Fq5",2015-04-19,2015-04-19,"YB","F","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2015-04-19_YB-Fq6",2015-04-19,2015-04-19,"YB","F","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-04-19_YB-Gq3",2015-04-19,2015-04-19,"YB","G","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","25%",""
+"2015-04-19_YB-Gq5",2015-04-19,2015-04-19,"YB","G","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Bright glare obscuring part of image."
+"2015-04-19_YB-Gq8",2015-04-19,2015-04-19,"YB","G","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-04-19_YB-Gq3",2015-04-19,2015-04-19,"YB","G","3","Ae","Anemones","Type 14",31,0.0875,354.285714285714,NA,"Celeste Moen","Finished","Full","Full","25%",""
+"2015-04-19_YB-Gq5",2015-04-19,2015-04-19,"YB","G","5","Ae","Anemones","Type 14",19,0.0875,217.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","25%","Bright glare obscuring part of image."
+"2015-04-19_YB-Gq8",2015-04-19,2015-04-19,"YB","G","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-04-19_YB-Gq3",2015-04-19,2015-04-19,"YB","G","3","Bg","Balanus_glandula","Type 1",299,0.0875,3417.14285714286,NA,"Celeste Moen","Finished","Full","Full","25%",""
+"2015-04-19_YB-Gq5",2015-04-19,2015-04-19,"YB","G","5","Bg","Balanus_glandula","Type 1",91,0.0875,1040,NA,"Beatriz Vaca","Finished","Full","Full","25%","Bright glare obscuring part of image."
+"2015-04-19_YB-Gq8",2015-04-19,2015-04-19,"YB","G","8","Bg","Balanus_glandula","Type 1",226,0.0875,2582.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-04-19_YB-Gq3",2015-04-19,2015-04-19,"YB","G","3","BgD","Balanus_glandula_(dead)","Type 2",10,0.0875,114.285714285714,NA,"Celeste Moen","Finished","Full","Full","25%",""
+"2015-04-19_YB-Gq5",2015-04-19,2015-04-19,"YB","G","5","BgD","Balanus_glandula_(dead)","Type 2",17,0.0875,194.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","25%","Bright glare obscuring part of image."
+"2015-04-19_YB-Gq8",2015-04-19,2015-04-19,"YB","G","8","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-04-19_YB-Gq3",2015-04-19,2015-04-19,"YB","G","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","25%",""
+"2015-04-19_YB-Gq5",2015-04-19,2015-04-19,"YB","G","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Bright glare obscuring part of image."
+"2015-04-19_YB-Gq8",2015-04-19,2015-04-19,"YB","G","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-04-19_YB-Gq3",2015-04-19,2015-04-19,"YB","G","3","Cth","Chthamalus_dalli","Type 3",40,0.0875,457.142857142857,NA,"Celeste Moen","Finished","Full","Full","25%",""
+"2015-04-19_YB-Gq5",2015-04-19,2015-04-19,"YB","G","5","Cth","Chthamalus_dalli","Type 3",23,0.0875,262.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","25%","Bright glare obscuring part of image."
+"2015-04-19_YB-Gq8",2015-04-19,2015-04-19,"YB","G","8","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-04-19_YB-Gq3",2015-04-19,2015-04-19,"YB","G","3","CthD","Chthamalus_dalli (dead)","Type 4",6,0.0875,68.5714285714286,NA,"Celeste Moen","Finished","Full","Full","25%",""
+"2015-04-19_YB-Gq5",2015-04-19,2015-04-19,"YB","G","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Bright glare obscuring part of image."
+"2015-04-19_YB-Gq8",2015-04-19,2015-04-19,"YB","G","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-04-19_YB-Gq3",2015-04-19,2015-04-19,"YB","G","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","25%",""
+"2015-04-19_YB-Gq5",2015-04-19,2015-04-19,"YB","G","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Bright glare obscuring part of image."
+"2015-04-19_YB-Gq8",2015-04-19,2015-04-19,"YB","G","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-04-19_YB-Gq3",2015-04-19,2015-04-19,"YB","G","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","25%",""
+"2015-04-19_YB-Gq5",2015-04-19,2015-04-19,"YB","G","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Bright glare obscuring part of image."
+"2015-04-19_YB-Gq8",2015-04-19,2015-04-19,"YB","G","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-04-19_YB-Gq3",2015-04-19,2015-04-19,"YB","G","3","Lim","Limpets","Type 12",48,0.0875,548.571428571429,NA,"Celeste Moen","Finished","Full","Full","25%",""
+"2015-04-19_YB-Gq5",2015-04-19,2015-04-19,"YB","G","5","Lim","Limpets","Type 12",67,0.0875,765.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","25%","Bright glare obscuring part of image."
+"2015-04-19_YB-Gq8",2015-04-19,2015-04-19,"YB","G","8","Lim","Limpets","Type 12",20,0.0875,228.571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-04-19_YB-Gq3",2015-04-19,2015-04-19,"YB","G","3","Ls","Littorina_sitkana","Type 13",19,0.0875,217.142857142857,NA,"Celeste Moen","Finished","Full","Full","25%",""
+"2015-04-19_YB-Gq5",2015-04-19,2015-04-19,"YB","G","5","Ls","Littorina_sitkana","Type 13",22,0.0875,251.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","25%","Bright glare obscuring part of image."
+"2015-04-19_YB-Gq8",2015-04-19,2015-04-19,"YB","G","8","Ls","Littorina_sitkana","Type 13",42,0.0875,480,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-04-19_YB-Gq3",2015-04-19,2015-04-19,"YB","G","3","Mc","Mytilus_californianus","Type 17",59,0.0875,674.285714285714,NA,"Celeste Moen","Finished","Full","Full","25%",""
+"2015-04-19_YB-Gq5",2015-04-19,2015-04-19,"YB","G","5","Mc","Mytilus_californianus","Type 17",34,0.0875,388.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","25%","Bright glare obscuring part of image."
+"2015-04-19_YB-Gq8",2015-04-19,2015-04-19,"YB","G","8","Mc","Mytilus_californianus","Type 17",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-04-19_YB-Gq3",2015-04-19,2015-04-19,"YB","G","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","25%",""
+"2015-04-19_YB-Gq5",2015-04-19,2015-04-19,"YB","G","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Bright glare obscuring part of image."
+"2015-04-19_YB-Gq8",2015-04-19,2015-04-19,"YB","G","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-04-19_YB-Gq3",2015-04-19,2015-04-19,"YB","G","3","Myt","Mytilus_spp","Type 7",111,0.0875,1268.57142857143,NA,"Celeste Moen","Finished","Full","Full","25%",""
+"2015-04-19_YB-Gq5",2015-04-19,2015-04-19,"YB","G","5","Myt","Mytilus_spp","Type 7",27,0.0875,308.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","25%","Bright glare obscuring part of image."
+"2015-04-19_YB-Gq8",2015-04-19,2015-04-19,"YB","G","8","Myt","Mytilus_spp","Type 7",250,0.0875,2857.14285714286,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-04-19_YB-Gq3",2015-04-19,2015-04-19,"YB","G","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","25%",""
+"2015-04-19_YB-Gq5",2015-04-19,2015-04-19,"YB","G","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Bright glare obscuring part of image."
+"2015-04-19_YB-Gq8",2015-04-19,2015-04-19,"YB","G","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-04-19_YB-Gq3",2015-04-19,2015-04-19,"YB","G","3","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","25%",""
+"2015-04-19_YB-Gq5",2015-04-19,2015-04-19,"YB","G","5","Mt","Mytilus_trossulus","Type 15",75,0.0875,857.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","25%","Bright glare obscuring part of image."
+"2015-04-19_YB-Gq8",2015-04-19,2015-04-19,"YB","G","8","Mt","Mytilus_trossulus","Type 15",79,0.0875,902.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-04-19_YB-Gq3",2015-04-19,2015-04-19,"YB","G","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","25%",""
+"2015-04-19_YB-Gq5",2015-04-19,2015-04-19,"YB","G","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Bright glare obscuring part of image."
+"2015-04-19_YB-Gq8",2015-04-19,2015-04-19,"YB","G","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-04-19_YB-Gq3",2015-04-19,2015-04-19,"YB","G","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","25%",""
+"2015-04-19_YB-Gq5",2015-04-19,2015-04-19,"YB","G","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Bright glare obscuring part of image."
+"2015-04-19_YB-Gq8",2015-04-19,2015-04-19,"YB","G","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-04-19_YB-Gq3",2015-04-19,2015-04-19,"YB","G","3","Nc","Nucella_canaliculata","Type 10",5,0.0875,57.1428571428571,NA,"Celeste Moen","Finished","Full","Full","25%",""
+"2015-04-19_YB-Gq5",2015-04-19,2015-04-19,"YB","G","5","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","25%","Bright glare obscuring part of image."
+"2015-04-19_YB-Gq8",2015-04-19,2015-04-19,"YB","G","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-04-19_YB-Gq3",2015-04-19,2015-04-19,"YB","G","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","25%",""
+"2015-04-19_YB-Gq5",2015-04-19,2015-04-19,"YB","G","5","Negg","Nucella_eggs","Type 26",14,0.0875,160,NA,"Beatriz Vaca","Finished","Full","Full","25%","Bright glare obscuring part of image."
+"2015-04-19_YB-Gq8",2015-04-19,2015-04-19,"YB","G","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-04-19_YB-Gq3",2015-04-19,2015-04-19,"YB","G","3","No","Nucella_ostrina","Type 9",27,0.0875,308.571428571429,NA,"Celeste Moen","Finished","Full","Full","25%",""
+"2015-04-19_YB-Gq5",2015-04-19,2015-04-19,"YB","G","5","No","Nucella_ostrina","Type 9",34,0.0875,388.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","25%","Bright glare obscuring part of image."
+"2015-04-19_YB-Gq8",2015-04-19,2015-04-19,"YB","G","8","No","Nucella_ostrina","Type 9",41,0.0875,468.571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-04-19_YB-Gq3",2015-04-19,2015-04-19,"YB","G","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","25%",""
+"2015-04-19_YB-Gq5",2015-04-19,2015-04-19,"YB","G","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Bright glare obscuring part of image."
+"2015-04-19_YB-Gq8",2015-04-19,2015-04-19,"YB","G","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-04-19_YB-Gq3",2015-04-19,2015-04-19,"YB","G","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","25%",""
+"2015-04-19_YB-Gq5",2015-04-19,2015-04-19,"YB","G","5","Pis","Pisaster","Type 21",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","25%","Bright glare obscuring part of image."
+"2015-04-19_YB-Gq8",2015-04-19,2015-04-19,"YB","G","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-04-19_YB-Gq3",2015-04-19,2015-04-19,"YB","G","3","Pp","Pollicipes_polymerus","Type 11",126,0.0875,1440,NA,"Celeste Moen","Finished","Full","Full","25%",""
+"2015-04-19_YB-Gq5",2015-04-19,2015-04-19,"YB","G","5","Pp","Pollicipes_polymerus","Type 11",467,0.0875,5337.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","25%","Bright glare obscuring part of image."
+"2015-04-19_YB-Gq8",2015-04-19,2015-04-19,"YB","G","8","Pp","Pollicipes_polymerus","Type 11",662,0.0875,7565.71428571429,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-04-19_YB-Gq3",2015-04-19,2015-04-19,"YB","G","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","25%",""
+"2015-04-19_YB-Gq5",2015-04-19,2015-04-19,"YB","G","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Bright glare obscuring part of image."
+"2015-04-19_YB-Gq8",2015-04-19,2015-04-19,"YB","G","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-04-19_YB-Gq3",2015-04-19,2015-04-19,"YB","G","3","Sc","Semibalanus_cariosus","Type 5",11,0.0875,125.714285714286,NA,"Celeste Moen","Finished","Full","Full","25%",""
+"2015-04-19_YB-Gq5",2015-04-19,2015-04-19,"YB","G","5","Sc","Semibalanus_cariosus","Type 5",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Full","25%","Bright glare obscuring part of image."
+"2015-04-19_YB-Gq8",2015-04-19,2015-04-19,"YB","G","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-04-19_YB-Gq3",2015-04-19,2015-04-19,"YB","G","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","25%",""
+"2015-04-19_YB-Gq5",2015-04-19,2015-04-19,"YB","G","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Bright glare obscuring part of image."
+"2015-04-19_YB-Gq8",2015-04-19,2015-04-19,"YB","G","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to glare."
+"2015-05-18_YB-Aq6",2015-05-18,2015-05-18,"YB","A","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","50%","Counts low due to algae cover"
+"2015-05-18_YB-Aq7",2015-05-18,2015-05-18,"YB","A","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare and algae."
+"2015-05-18_YB-Aq9",2015-05-18,2015-05-18,"YB","A","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to blur and glare."
+"2015-05-18_YB-Aq6",2015-05-18,2015-05-18,"YB","A","6","Ae","Anemones","Type 14",63,0.0875,720,NA,"Celeste Moen","Finished","Full","Full","50%","Counts low due to algae cover"
+"2015-05-18_YB-Aq7",2015-05-18,2015-05-18,"YB","A","7","Ae","Anemones","Type 14",25,0.0875,285.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare and algae."
+"2015-05-18_YB-Aq9",2015-05-18,2015-05-18,"YB","A","9","Ae","Anemones","Type 14",65,0.0875,742.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to blur and glare."
+"2015-05-18_YB-Aq6",2015-05-18,2015-05-18,"YB","A","6","Bg","Balanus_glandula","Type 1",184,0.0875,2102.85714285714,NA,"Celeste Moen","Finished","Full","Full","50%","Counts low due to algae cover"
+"2015-05-18_YB-Aq7",2015-05-18,2015-05-18,"YB","A","7","Bg","Balanus_glandula","Type 1",212,0.0875,2422.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare and algae."
+"2015-05-18_YB-Aq9",2015-05-18,2015-05-18,"YB","A","9","Bg","Balanus_glandula","Type 1",570,0.0875,6514.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to blur and glare."
+"2015-05-18_YB-Aq6",2015-05-18,2015-05-18,"YB","A","6","BgD","Balanus_glandula_(dead)","Type 2",36,0.0875,411.428571428571,NA,"Celeste Moen","Finished","Full","Full","50%","Counts low due to algae cover"
+"2015-05-18_YB-Aq7",2015-05-18,2015-05-18,"YB","A","7","BgD","Balanus_glandula_(dead)","Type 2",26,0.0875,297.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare and algae."
+"2015-05-18_YB-Aq9",2015-05-18,2015-05-18,"YB","A","9","BgD","Balanus_glandula_(dead)","Type 2",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to blur and glare."
+"2015-05-18_YB-Aq6",2015-05-18,2015-05-18,"YB","A","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","50%","Counts low due to algae cover"
+"2015-05-18_YB-Aq7",2015-05-18,2015-05-18,"YB","A","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare and algae."
+"2015-05-18_YB-Aq9",2015-05-18,2015-05-18,"YB","A","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to blur and glare."
+"2015-05-18_YB-Aq6",2015-05-18,2015-05-18,"YB","A","6","Cth","Chthamalus_dalli","Type 3",51,0.0875,582.857142857143,NA,"Celeste Moen","Finished","Full","Full","50%","Counts low due to algae cover"
+"2015-05-18_YB-Aq7",2015-05-18,2015-05-18,"YB","A","7","Cth","Chthamalus_dalli","Type 3",50,0.0875,571.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare and algae."
+"2015-05-18_YB-Aq9",2015-05-18,2015-05-18,"YB","A","9","Cth","Chthamalus_dalli","Type 3",69,0.0875,788.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to blur and glare."
+"2015-05-18_YB-Aq6",2015-05-18,2015-05-18,"YB","A","6","CthD","Chthamalus_dalli (dead)","Type 4",3,0.0875,34.2857142857143,NA,"Celeste Moen","Finished","Full","Full","50%","Counts low due to algae cover"
+"2015-05-18_YB-Aq7",2015-05-18,2015-05-18,"YB","A","7","CthD","Chthamalus_dalli (dead)","Type 4",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare and algae."
+"2015-05-18_YB-Aq9",2015-05-18,2015-05-18,"YB","A","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to blur and glare."
+"2015-05-18_YB-Aq6",2015-05-18,2015-05-18,"YB","A","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","50%","Counts low due to algae cover"
+"2015-05-18_YB-Aq7",2015-05-18,2015-05-18,"YB","A","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare and algae."
+"2015-05-18_YB-Aq9",2015-05-18,2015-05-18,"YB","A","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to blur and glare."
+"2015-05-18_YB-Aq6",2015-05-18,2015-05-18,"YB","A","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","50%","Counts low due to algae cover"
+"2015-05-18_YB-Aq7",2015-05-18,2015-05-18,"YB","A","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare and algae."
+"2015-05-18_YB-Aq9",2015-05-18,2015-05-18,"YB","A","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to blur and glare."
+"2015-05-18_YB-Aq6",2015-05-18,2015-05-18,"YB","A","6","Lim","Limpets","Type 12",152,0.0875,1737.14285714286,NA,"Celeste Moen","Finished","Full","Full","50%","Counts low due to algae cover"
+"2015-05-18_YB-Aq7",2015-05-18,2015-05-18,"YB","A","7","Lim","Limpets","Type 12",245,0.0875,2800,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare and algae."
+"2015-05-18_YB-Aq9",2015-05-18,2015-05-18,"YB","A","9","Lim","Limpets","Type 12",455,0.0875,5200,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to blur and glare."
+"2015-05-18_YB-Aq6",2015-05-18,2015-05-18,"YB","A","6","Ls","Littorina_sitkana","Type 13",6,0.0875,68.5714285714286,NA,"Celeste Moen","Finished","Full","Full","50%","Counts low due to algae cover"
+"2015-05-18_YB-Aq7",2015-05-18,2015-05-18,"YB","A","7","Ls","Littorina_sitkana","Type 13",110,0.0875,1257.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare and algae."
+"2015-05-18_YB-Aq9",2015-05-18,2015-05-18,"YB","A","9","Ls","Littorina_sitkana","Type 13",34,0.0875,388.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to blur and glare."
+"2015-05-18_YB-Aq6",2015-05-18,2015-05-18,"YB","A","6","Mc","Mytilus_californianus","Type 17",4,0.0875,45.7142857142857,NA,"Celeste Moen","Finished","Full","Full","50%","Counts low due to algae cover"
+"2015-05-18_YB-Aq7",2015-05-18,2015-05-18,"YB","A","7","Mc","Mytilus_californianus","Type 17",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare and algae."
+"2015-05-18_YB-Aq9",2015-05-18,2015-05-18,"YB","A","9","Mc","Mytilus_californianus","Type 17",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to blur and glare."
+"2015-05-18_YB-Aq6",2015-05-18,2015-05-18,"YB","A","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","50%","Counts low due to algae cover"
+"2015-05-18_YB-Aq7",2015-05-18,2015-05-18,"YB","A","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare and algae."
+"2015-05-18_YB-Aq9",2015-05-18,2015-05-18,"YB","A","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to blur and glare."
+"2015-05-18_YB-Aq6",2015-05-18,2015-05-18,"YB","A","6","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","50%","Counts low due to algae cover"
+"2015-05-18_YB-Aq7",2015-05-18,2015-05-18,"YB","A","7","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare and algae."
+"2015-05-18_YB-Aq9",2015-05-18,2015-05-18,"YB","A","9","Myt","Mytilus_spp","Type 7",22,0.0875,251.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to blur and glare."
+"2015-05-18_YB-Aq6",2015-05-18,2015-05-18,"YB","A","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","50%","Counts low due to algae cover"
+"2015-05-18_YB-Aq7",2015-05-18,2015-05-18,"YB","A","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare and algae."
+"2015-05-18_YB-Aq9",2015-05-18,2015-05-18,"YB","A","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to blur and glare."
+"2015-05-18_YB-Aq6",2015-05-18,2015-05-18,"YB","A","6","Mt","Mytilus_trossulus","Type 15",1,0.0875,11.4285714285714,NA,"Celeste Moen","Finished","Full","Full","50%","Counts low due to algae cover"
+"2015-05-18_YB-Aq7",2015-05-18,2015-05-18,"YB","A","7","Mt","Mytilus_trossulus","Type 15",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare and algae."
+"2015-05-18_YB-Aq9",2015-05-18,2015-05-18,"YB","A","9","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to blur and glare."
+"2015-05-18_YB-Aq6",2015-05-18,2015-05-18,"YB","A","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","50%","Counts low due to algae cover"
+"2015-05-18_YB-Aq7",2015-05-18,2015-05-18,"YB","A","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare and algae."
+"2015-05-18_YB-Aq9",2015-05-18,2015-05-18,"YB","A","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to blur and glare."
+"2015-05-18_YB-Aq6",2015-05-18,2015-05-18,"YB","A","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","50%","Counts low due to algae cover"
+"2015-05-18_YB-Aq7",2015-05-18,2015-05-18,"YB","A","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare and algae."
+"2015-05-18_YB-Aq9",2015-05-18,2015-05-18,"YB","A","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to blur and glare."
+"2015-05-18_YB-Aq6",2015-05-18,2015-05-18,"YB","A","6","Nc","Nucella_canaliculata","Type 10",3,0.0875,34.2857142857143,NA,"Celeste Moen","Finished","Full","Full","50%","Counts low due to algae cover"
+"2015-05-18_YB-Aq7",2015-05-18,2015-05-18,"YB","A","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare and algae."
+"2015-05-18_YB-Aq9",2015-05-18,2015-05-18,"YB","A","9","Nc","Nucella_canaliculata","Type 10",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to blur and glare."
+"2015-05-18_YB-Aq6",2015-05-18,2015-05-18,"YB","A","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","50%","Counts low due to algae cover"
+"2015-05-18_YB-Aq7",2015-05-18,2015-05-18,"YB","A","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare and algae."
+"2015-05-18_YB-Aq9",2015-05-18,2015-05-18,"YB","A","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to blur and glare."
+"2015-05-18_YB-Aq6",2015-05-18,2015-05-18,"YB","A","6","No","Nucella_ostrina","Type 9",4,0.0875,45.7142857142857,NA,"Celeste Moen","Finished","Full","Full","50%","Counts low due to algae cover"
+"2015-05-18_YB-Aq7",2015-05-18,2015-05-18,"YB","A","7","No","Nucella_ostrina","Type 9",18,0.0875,205.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare and algae."
+"2015-05-18_YB-Aq9",2015-05-18,2015-05-18,"YB","A","9","No","Nucella_ostrina","Type 9",19,0.0875,217.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to blur and glare."
+"2015-05-18_YB-Aq6",2015-05-18,2015-05-18,"YB","A","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","50%","Counts low due to algae cover"
+"2015-05-18_YB-Aq7",2015-05-18,2015-05-18,"YB","A","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare and algae."
+"2015-05-18_YB-Aq9",2015-05-18,2015-05-18,"YB","A","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to blur and glare."
+"2015-05-18_YB-Aq6",2015-05-18,2015-05-18,"YB","A","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","50%","Counts low due to algae cover"
+"2015-05-18_YB-Aq7",2015-05-18,2015-05-18,"YB","A","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare and algae."
+"2015-05-18_YB-Aq9",2015-05-18,2015-05-18,"YB","A","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to blur and glare."
+"2015-05-18_YB-Aq6",2015-05-18,2015-05-18,"YB","A","6","Pp","Pollicipes_polymerus","Type 11",147,0.0875,1680,NA,"Celeste Moen","Finished","Full","Full","50%","Counts low due to algae cover"
+"2015-05-18_YB-Aq7",2015-05-18,2015-05-18,"YB","A","7","Pp","Pollicipes_polymerus","Type 11",241,0.0875,2754.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare and algae."
+"2015-05-18_YB-Aq9",2015-05-18,2015-05-18,"YB","A","9","Pp","Pollicipes_polymerus","Type 11",368,0.0875,4205.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to blur and glare."
+"2015-05-18_YB-Aq6",2015-05-18,2015-05-18,"YB","A","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","50%","Counts low due to algae cover"
+"2015-05-18_YB-Aq7",2015-05-18,2015-05-18,"YB","A","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare and algae."
+"2015-05-18_YB-Aq9",2015-05-18,2015-05-18,"YB","A","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to blur and glare."
+"2015-05-18_YB-Aq6",2015-05-18,2015-05-18,"YB","A","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","50%","Counts low due to algae cover"
+"2015-05-18_YB-Aq7",2015-05-18,2015-05-18,"YB","A","7","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare and algae."
+"2015-05-18_YB-Aq9",2015-05-18,2015-05-18,"YB","A","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to blur and glare."
+"2015-05-18_YB-Aq6",2015-05-18,2015-05-18,"YB","A","6","ScD","Semibalanus_cariosus_(dead)","Type 6",1,0.0875,11.4285714285714,NA,"Celeste Moen","Finished","Full","Full","50%","Counts low due to algae cover"
+"2015-05-18_YB-Aq7",2015-05-18,2015-05-18,"YB","A","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts likely low due to glare and algae."
+"2015-05-18_YB-Aq9",2015-05-18,2015-05-18,"YB","A","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to blur and glare."
+"2015-05-18_YB-ABq1",2015-05-18,2015-05-18,"YB","AB","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ABq2",2015-05-18,2015-05-18,"YB","AB","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare."
+"2015-05-18_YB-ABq4",2015-05-18,2015-05-18,"YB","AB","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts may be low due to algae and glare."
+"2015-05-18_YB-ABq1",2015-05-18,2015-05-18,"YB","AB","1","Ae","Anemones","Type 14",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ABq2",2015-05-18,2015-05-18,"YB","AB","2","Ae","Anemones","Type 14",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare."
+"2015-05-18_YB-ABq4",2015-05-18,2015-05-18,"YB","AB","4","Ae","Anemones","Type 14",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts may be low due to algae and glare."
+"2015-05-18_YB-ABq1",2015-05-18,2015-05-18,"YB","AB","1","Bg","Balanus_glandula","Type 1",50,0.0875,571.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ABq2",2015-05-18,2015-05-18,"YB","AB","2","Bg","Balanus_glandula","Type 1",37,0.0875,422.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare."
+"2015-05-18_YB-ABq4",2015-05-18,2015-05-18,"YB","AB","4","Bg","Balanus_glandula","Type 1",67,0.0875,765.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts may be low due to algae and glare."
+"2015-05-18_YB-ABq1",2015-05-18,2015-05-18,"YB","AB","1","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ABq2",2015-05-18,2015-05-18,"YB","AB","2","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare."
+"2015-05-18_YB-ABq4",2015-05-18,2015-05-18,"YB","AB","4","BgD","Balanus_glandula_(dead)","Type 2",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts may be low due to algae and glare."
+"2015-05-18_YB-ABq1",2015-05-18,2015-05-18,"YB","AB","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ABq2",2015-05-18,2015-05-18,"YB","AB","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare."
+"2015-05-18_YB-ABq4",2015-05-18,2015-05-18,"YB","AB","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts may be low due to algae and glare."
+"2015-05-18_YB-ABq1",2015-05-18,2015-05-18,"YB","AB","1","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ABq2",2015-05-18,2015-05-18,"YB","AB","2","Cth","Chthamalus_dalli","Type 3",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare."
+"2015-05-18_YB-ABq4",2015-05-18,2015-05-18,"YB","AB","4","Cth","Chthamalus_dalli","Type 3",11,0.0875,125.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts may be low due to algae and glare."
+"2015-05-18_YB-ABq1",2015-05-18,2015-05-18,"YB","AB","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ABq2",2015-05-18,2015-05-18,"YB","AB","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare."
+"2015-05-18_YB-ABq4",2015-05-18,2015-05-18,"YB","AB","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts may be low due to algae and glare."
+"2015-05-18_YB-ABq1",2015-05-18,2015-05-18,"YB","AB","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ABq2",2015-05-18,2015-05-18,"YB","AB","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare."
+"2015-05-18_YB-ABq4",2015-05-18,2015-05-18,"YB","AB","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts may be low due to algae and glare."
+"2015-05-18_YB-ABq1",2015-05-18,2015-05-18,"YB","AB","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ABq2",2015-05-18,2015-05-18,"YB","AB","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare."
+"2015-05-18_YB-ABq4",2015-05-18,2015-05-18,"YB","AB","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts may be low due to algae and glare."
+"2015-05-18_YB-ABq1",2015-05-18,2015-05-18,"YB","AB","1","Lim","Limpets","Type 12",81,0.0875,925.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ABq2",2015-05-18,2015-05-18,"YB","AB","2","Lim","Limpets","Type 12",115,0.0875,1314.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare."
+"2015-05-18_YB-ABq4",2015-05-18,2015-05-18,"YB","AB","4","Lim","Limpets","Type 12",195,0.0875,2228.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts may be low due to algae and glare."
+"2015-05-18_YB-ABq1",2015-05-18,2015-05-18,"YB","AB","1","Ls","Littorina_sitkana","Type 13",133,0.0875,1520,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ABq2",2015-05-18,2015-05-18,"YB","AB","2","Ls","Littorina_sitkana","Type 13",126,0.0875,1440,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare."
+"2015-05-18_YB-ABq4",2015-05-18,2015-05-18,"YB","AB","4","Ls","Littorina_sitkana","Type 13",83,0.0875,948.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts may be low due to algae and glare."
+"2015-05-18_YB-ABq1",2015-05-18,2015-05-18,"YB","AB","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ABq2",2015-05-18,2015-05-18,"YB","AB","2","Mc","Mytilus_californianus","Type 17",16,0.0875,182.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare."
+"2015-05-18_YB-ABq4",2015-05-18,2015-05-18,"YB","AB","4","Mc","Mytilus_californianus","Type 17",16,0.0875,182.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts may be low due to algae and glare."
+"2015-05-18_YB-ABq1",2015-05-18,2015-05-18,"YB","AB","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ABq2",2015-05-18,2015-05-18,"YB","AB","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare."
+"2015-05-18_YB-ABq4",2015-05-18,2015-05-18,"YB","AB","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts may be low due to algae and glare."
+"2015-05-18_YB-ABq1",2015-05-18,2015-05-18,"YB","AB","1","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ABq2",2015-05-18,2015-05-18,"YB","AB","2","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare."
+"2015-05-18_YB-ABq4",2015-05-18,2015-05-18,"YB","AB","4","Myt","Mytilus_spp","Type 7",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts may be low due to algae and glare."
+"2015-05-18_YB-ABq1",2015-05-18,2015-05-18,"YB","AB","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ABq2",2015-05-18,2015-05-18,"YB","AB","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare."
+"2015-05-18_YB-ABq4",2015-05-18,2015-05-18,"YB","AB","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts may be low due to algae and glare."
+"2015-05-18_YB-ABq1",2015-05-18,2015-05-18,"YB","AB","1","Mt","Mytilus_trossulus","Type 15",61,0.0875,697.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ABq2",2015-05-18,2015-05-18,"YB","AB","2","Mt","Mytilus_trossulus","Type 15",108,0.0875,1234.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare."
+"2015-05-18_YB-ABq4",2015-05-18,2015-05-18,"YB","AB","4","Mt","Mytilus_trossulus","Type 15",11,0.0875,125.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts may be low due to algae and glare."
+"2015-05-18_YB-ABq1",2015-05-18,2015-05-18,"YB","AB","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ABq2",2015-05-18,2015-05-18,"YB","AB","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare."
+"2015-05-18_YB-ABq4",2015-05-18,2015-05-18,"YB","AB","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts may be low due to algae and glare."
+"2015-05-18_YB-ABq1",2015-05-18,2015-05-18,"YB","AB","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ABq2",2015-05-18,2015-05-18,"YB","AB","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare."
+"2015-05-18_YB-ABq4",2015-05-18,2015-05-18,"YB","AB","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts may be low due to algae and glare."
+"2015-05-18_YB-ABq1",2015-05-18,2015-05-18,"YB","AB","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ABq2",2015-05-18,2015-05-18,"YB","AB","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare."
+"2015-05-18_YB-ABq4",2015-05-18,2015-05-18,"YB","AB","4","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts may be low due to algae and glare."
+"2015-05-18_YB-ABq1",2015-05-18,2015-05-18,"YB","AB","1","Negg","Nucella_eggs","Type 26",13,0.0875,148.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ABq2",2015-05-18,2015-05-18,"YB","AB","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare."
+"2015-05-18_YB-ABq4",2015-05-18,2015-05-18,"YB","AB","4","Negg","Nucella_eggs","Type 26",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts may be low due to algae and glare."
+"2015-05-18_YB-ABq1",2015-05-18,2015-05-18,"YB","AB","1","No","Nucella_ostrina","Type 9",10,0.0875,114.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ABq2",2015-05-18,2015-05-18,"YB","AB","2","No","Nucella_ostrina","Type 9",17,0.0875,194.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare."
+"2015-05-18_YB-ABq4",2015-05-18,2015-05-18,"YB","AB","4","No","Nucella_ostrina","Type 9",28,0.0875,320,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts may be low due to algae and glare."
+"2015-05-18_YB-ABq1",2015-05-18,2015-05-18,"YB","AB","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ABq2",2015-05-18,2015-05-18,"YB","AB","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare."
+"2015-05-18_YB-ABq4",2015-05-18,2015-05-18,"YB","AB","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts may be low due to algae and glare."
+"2015-05-18_YB-ABq1",2015-05-18,2015-05-18,"YB","AB","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ABq2",2015-05-18,2015-05-18,"YB","AB","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare."
+"2015-05-18_YB-ABq4",2015-05-18,2015-05-18,"YB","AB","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts may be low due to algae and glare."
+"2015-05-18_YB-ABq1",2015-05-18,2015-05-18,"YB","AB","1","Pp","Pollicipes_polymerus","Type 11",712,0.0875,8137.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ABq2",2015-05-18,2015-05-18,"YB","AB","2","Pp","Pollicipes_polymerus","Type 11",527,0.0875,6022.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare."
+"2015-05-18_YB-ABq4",2015-05-18,2015-05-18,"YB","AB","4","Pp","Pollicipes_polymerus","Type 11",388,0.0875,4434.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts may be low due to algae and glare."
+"2015-05-18_YB-ABq1",2015-05-18,2015-05-18,"YB","AB","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ABq2",2015-05-18,2015-05-18,"YB","AB","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare."
+"2015-05-18_YB-ABq4",2015-05-18,2015-05-18,"YB","AB","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts may be low due to algae and glare."
+"2015-05-18_YB-ABq1",2015-05-18,2015-05-18,"YB","AB","1","Sc","Semibalanus_cariosus","Type 5",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ABq2",2015-05-18,2015-05-18,"YB","AB","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare."
+"2015-05-18_YB-ABq4",2015-05-18,2015-05-18,"YB","AB","4","Sc","Semibalanus_cariosus","Type 5",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts may be low due to algae and glare."
+"2015-05-18_YB-ABq1",2015-05-18,2015-05-18,"YB","AB","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ABq2",2015-05-18,2015-05-18,"YB","AB","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare."
+"2015-05-18_YB-ABq4",2015-05-18,2015-05-18,"YB","AB","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts may be low due to algae and glare."
+"2015-05-18_YB-ACq4",2015-05-18,2015-05-18,"YB","AC","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2015-05-18_YB-ACq7",2015-05-18,2015-05-18,"YB","AC","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ACq8",2015-05-18,2015-05-18,"YB","AC","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ACq4",2015-05-18,2015-05-18,"YB","AC","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2015-05-18_YB-ACq7",2015-05-18,2015-05-18,"YB","AC","7","Ae","Anemones","Type 14",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ACq8",2015-05-18,2015-05-18,"YB","AC","8","Ae","Anemones","Type 14",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ACq4",2015-05-18,2015-05-18,"YB","AC","4","Bg","Balanus_glandula","Type 1",161,0.015625,10304,"c","Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2015-05-18_YB-ACq7",2015-05-18,2015-05-18,"YB","AC","7","Bg","Balanus_glandula","Type 1",503,0.0875,5748.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ACq8",2015-05-18,2015-05-18,"YB","AC","8","Bg","Balanus_glandula","Type 1",57,0.0875,651.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ACq4",2015-05-18,2015-05-18,"YB","AC","4","BgD","Balanus_glandula_(dead)","Type 2",9,0.015625,576,"c","Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2015-05-18_YB-ACq7",2015-05-18,2015-05-18,"YB","AC","7","BgD","Balanus_glandula_(dead)","Type 2",42,0.0875,480,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ACq8",2015-05-18,2015-05-18,"YB","AC","8","BgD","Balanus_glandula_(dead)","Type 2",34,0.0875,388.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ACq4",2015-05-18,2015-05-18,"YB","AC","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2015-05-18_YB-ACq7",2015-05-18,2015-05-18,"YB","AC","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ACq8",2015-05-18,2015-05-18,"YB","AC","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ACq4",2015-05-18,2015-05-18,"YB","AC","4","Cth","Chthamalus_dalli","Type 3",23,0.015625,1472,"c","Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2015-05-18_YB-ACq7",2015-05-18,2015-05-18,"YB","AC","7","Cth","Chthamalus_dalli","Type 3",87,0.0875,994.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ACq8",2015-05-18,2015-05-18,"YB","AC","8","Cth","Chthamalus_dalli","Type 3",20,0.0875,228.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ACq4",2015-05-18,2015-05-18,"YB","AC","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2015-05-18_YB-ACq7",2015-05-18,2015-05-18,"YB","AC","7","CthD","Chthamalus_dalli (dead)","Type 4",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ACq8",2015-05-18,2015-05-18,"YB","AC","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ACq4",2015-05-18,2015-05-18,"YB","AC","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2015-05-18_YB-ACq7",2015-05-18,2015-05-18,"YB","AC","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ACq8",2015-05-18,2015-05-18,"YB","AC","8","Emp","Emplectonema worm","Type 23",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ACq4",2015-05-18,2015-05-18,"YB","AC","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2015-05-18_YB-ACq7",2015-05-18,2015-05-18,"YB","AC","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ACq8",2015-05-18,2015-05-18,"YB","AC","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ACq4",2015-05-18,2015-05-18,"YB","AC","4","Lim","Limpets","Type 12",204,0.0875,2331.42857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2015-05-18_YB-ACq7",2015-05-18,2015-05-18,"YB","AC","7","Lim","Limpets","Type 12",169,0.0875,1931.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ACq8",2015-05-18,2015-05-18,"YB","AC","8","Lim","Limpets","Type 12",127,0.0875,1451.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ACq4",2015-05-18,2015-05-18,"YB","AC","4","Ls","Littorina_sitkana","Type 13",1058,0.0875,12091.4285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2015-05-18_YB-ACq7",2015-05-18,2015-05-18,"YB","AC","7","Ls","Littorina_sitkana","Type 13",715,0.0875,8171.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ACq8",2015-05-18,2015-05-18,"YB","AC","8","Ls","Littorina_sitkana","Type 13",244,0.0875,2788.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ACq4",2015-05-18,2015-05-18,"YB","AC","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2015-05-18_YB-ACq7",2015-05-18,2015-05-18,"YB","AC","7","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ACq8",2015-05-18,2015-05-18,"YB","AC","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ACq4",2015-05-18,2015-05-18,"YB","AC","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2015-05-18_YB-ACq7",2015-05-18,2015-05-18,"YB","AC","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ACq8",2015-05-18,2015-05-18,"YB","AC","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ACq4",2015-05-18,2015-05-18,"YB","AC","4","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2015-05-18_YB-ACq7",2015-05-18,2015-05-18,"YB","AC","7","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ACq8",2015-05-18,2015-05-18,"YB","AC","8","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ACq4",2015-05-18,2015-05-18,"YB","AC","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2015-05-18_YB-ACq7",2015-05-18,2015-05-18,"YB","AC","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ACq8",2015-05-18,2015-05-18,"YB","AC","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ACq4",2015-05-18,2015-05-18,"YB","AC","4","Mt","Mytilus_trossulus","Type 15",180,0.0875,2057.14285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2015-05-18_YB-ACq7",2015-05-18,2015-05-18,"YB","AC","7","Mt","Mytilus_trossulus","Type 15",159,0.0875,1817.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ACq8",2015-05-18,2015-05-18,"YB","AC","8","Mt","Mytilus_trossulus","Type 15",68,0.0875,777.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ACq4",2015-05-18,2015-05-18,"YB","AC","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2015-05-18_YB-ACq7",2015-05-18,2015-05-18,"YB","AC","7","MtD","Mytilus_trossulus_(dead)","Type 16",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ACq8",2015-05-18,2015-05-18,"YB","AC","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ACq4",2015-05-18,2015-05-18,"YB","AC","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2015-05-18_YB-ACq7",2015-05-18,2015-05-18,"YB","AC","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ACq8",2015-05-18,2015-05-18,"YB","AC","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ACq4",2015-05-18,2015-05-18,"YB","AC","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2015-05-18_YB-ACq7",2015-05-18,2015-05-18,"YB","AC","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ACq8",2015-05-18,2015-05-18,"YB","AC","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ACq4",2015-05-18,2015-05-18,"YB","AC","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2015-05-18_YB-ACq7",2015-05-18,2015-05-18,"YB","AC","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ACq8",2015-05-18,2015-05-18,"YB","AC","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ACq4",2015-05-18,2015-05-18,"YB","AC","4","No","Nucella_ostrina","Type 9",10,0.0875,114.285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2015-05-18_YB-ACq7",2015-05-18,2015-05-18,"YB","AC","7","No","Nucella_ostrina","Type 9",17,0.0875,194.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ACq8",2015-05-18,2015-05-18,"YB","AC","8","No","Nucella_ostrina","Type 9",21,0.0875,240,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ACq4",2015-05-18,2015-05-18,"YB","AC","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2015-05-18_YB-ACq7",2015-05-18,2015-05-18,"YB","AC","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ACq8",2015-05-18,2015-05-18,"YB","AC","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ACq4",2015-05-18,2015-05-18,"YB","AC","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2015-05-18_YB-ACq7",2015-05-18,2015-05-18,"YB","AC","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ACq8",2015-05-18,2015-05-18,"YB","AC","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ACq4",2015-05-18,2015-05-18,"YB","AC","4","Pp","Pollicipes_polymerus","Type 11",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2015-05-18_YB-ACq7",2015-05-18,2015-05-18,"YB","AC","7","Pp","Pollicipes_polymerus","Type 11",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ACq8",2015-05-18,2015-05-18,"YB","AC","8","Pp","Pollicipes_polymerus","Type 11",63,0.0875,720,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ACq4",2015-05-18,2015-05-18,"YB","AC","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2015-05-18_YB-ACq7",2015-05-18,2015-05-18,"YB","AC","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ACq8",2015-05-18,2015-05-18,"YB","AC","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ACq4",2015-05-18,2015-05-18,"YB","AC","4","Sc","Semibalanus_cariosus","Type 5",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2015-05-18_YB-ACq7",2015-05-18,2015-05-18,"YB","AC","7","Sc","Semibalanus_cariosus","Type 5",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ACq8",2015-05-18,2015-05-18,"YB","AC","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ACq4",2015-05-18,2015-05-18,"YB","AC","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","20%",""
+"2015-05-18_YB-ACq7",2015-05-18,2015-05-18,"YB","AC","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ACq8",2015-05-18,2015-05-18,"YB","AC","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ADq1",2015-05-18,2015-05-18,"YB","AD","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","85%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ADq5",2015-05-18,2015-05-18,"YB","AD","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","95%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ADq8",2015-05-18,2015-05-18,"YB","AD","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-05-18_YB-ADq1",2015-05-18,2015-05-18,"YB","AD","1","Ae","Anemones","Type 14",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","85%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ADq5",2015-05-18,2015-05-18,"YB","AD","5","Ae","Anemones","Type 14",17,0.0875,194.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","95%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ADq8",2015-05-18,2015-05-18,"YB","AD","8","Ae","Anemones","Type 14",37,0.0875,422.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-05-18_YB-ADq1",2015-05-18,2015-05-18,"YB","AD","1","Bg","Balanus_glandula","Type 1",117,0.0875,1337.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","85%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ADq5",2015-05-18,2015-05-18,"YB","AD","5","Bg","Balanus_glandula","Type 1",286,0.0875,3268.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","95%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ADq8",2015-05-18,2015-05-18,"YB","AD","8","Bg","Balanus_glandula","Type 1",183,0.0875,2091.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-05-18_YB-ADq1",2015-05-18,2015-05-18,"YB","AD","1","BgD","Balanus_glandula_(dead)","Type 2",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","85%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ADq5",2015-05-18,2015-05-18,"YB","AD","5","BgD","Balanus_glandula_(dead)","Type 2",23,0.0875,262.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","95%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ADq8",2015-05-18,2015-05-18,"YB","AD","8","BgD","Balanus_glandula_(dead)","Type 2",14,0.0875,160,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-05-18_YB-ADq1",2015-05-18,2015-05-18,"YB","AD","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","85%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ADq5",2015-05-18,2015-05-18,"YB","AD","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","95%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ADq8",2015-05-18,2015-05-18,"YB","AD","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-05-18_YB-ADq1",2015-05-18,2015-05-18,"YB","AD","1","Cth","Chthamalus_dalli","Type 3",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","85%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ADq5",2015-05-18,2015-05-18,"YB","AD","5","Cth","Chthamalus_dalli","Type 3",14,0.0875,160,NA,"Beatriz Vaca","Finished","Full","Full","95%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ADq8",2015-05-18,2015-05-18,"YB","AD","8","Cth","Chthamalus_dalli","Type 3",17,0.0875,194.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-05-18_YB-ADq1",2015-05-18,2015-05-18,"YB","AD","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","85%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ADq5",2015-05-18,2015-05-18,"YB","AD","5","CthD","Chthamalus_dalli (dead)","Type 4",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","95%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ADq8",2015-05-18,2015-05-18,"YB","AD","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-05-18_YB-ADq1",2015-05-18,2015-05-18,"YB","AD","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","85%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ADq5",2015-05-18,2015-05-18,"YB","AD","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","95%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ADq8",2015-05-18,2015-05-18,"YB","AD","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-05-18_YB-ADq1",2015-05-18,2015-05-18,"YB","AD","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","85%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ADq5",2015-05-18,2015-05-18,"YB","AD","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","95%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ADq8",2015-05-18,2015-05-18,"YB","AD","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-05-18_YB-ADq1",2015-05-18,2015-05-18,"YB","AD","1","Lim","Limpets","Type 12",100,0.0875,1142.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","85%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ADq5",2015-05-18,2015-05-18,"YB","AD","5","Lim","Limpets","Type 12",84,0.0875,960,NA,"Beatriz Vaca","Finished","Full","Full","95%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ADq8",2015-05-18,2015-05-18,"YB","AD","8","Lim","Limpets","Type 12",166,0.0875,1897.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-05-18_YB-ADq1",2015-05-18,2015-05-18,"YB","AD","1","Ls","Littorina_sitkana","Type 13",24,0.0875,274.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","85%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ADq5",2015-05-18,2015-05-18,"YB","AD","5","Ls","Littorina_sitkana","Type 13",69,0.0875,788.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","95%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ADq8",2015-05-18,2015-05-18,"YB","AD","8","Ls","Littorina_sitkana","Type 13",107,0.0875,1222.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-05-18_YB-ADq1",2015-05-18,2015-05-18,"YB","AD","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","85%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ADq5",2015-05-18,2015-05-18,"YB","AD","5","Mc","Mytilus_californianus","Type 17",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","95%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ADq8",2015-05-18,2015-05-18,"YB","AD","8","Mc","Mytilus_californianus","Type 17",15,0.0875,171.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-05-18_YB-ADq1",2015-05-18,2015-05-18,"YB","AD","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","85%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ADq5",2015-05-18,2015-05-18,"YB","AD","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","95%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ADq8",2015-05-18,2015-05-18,"YB","AD","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-05-18_YB-ADq1",2015-05-18,2015-05-18,"YB","AD","1","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","85%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ADq5",2015-05-18,2015-05-18,"YB","AD","5","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","95%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ADq8",2015-05-18,2015-05-18,"YB","AD","8","Myt","Mytilus_spp","Type 7",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-05-18_YB-ADq1",2015-05-18,2015-05-18,"YB","AD","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","85%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ADq5",2015-05-18,2015-05-18,"YB","AD","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","95%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ADq8",2015-05-18,2015-05-18,"YB","AD","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-05-18_YB-ADq1",2015-05-18,2015-05-18,"YB","AD","1","Mt","Mytilus_trossulus","Type 15",55,0.0875,628.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","85%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ADq5",2015-05-18,2015-05-18,"YB","AD","5","Mt","Mytilus_trossulus","Type 15",259,0.0875,2960,NA,"Beatriz Vaca","Finished","Full","Full","95%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ADq8",2015-05-18,2015-05-18,"YB","AD","8","Mt","Mytilus_trossulus","Type 15",48,0.0875,548.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-05-18_YB-ADq1",2015-05-18,2015-05-18,"YB","AD","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","85%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ADq5",2015-05-18,2015-05-18,"YB","AD","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","95%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ADq8",2015-05-18,2015-05-18,"YB","AD","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-05-18_YB-ADq1",2015-05-18,2015-05-18,"YB","AD","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","85%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ADq5",2015-05-18,2015-05-18,"YB","AD","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","95%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ADq8",2015-05-18,2015-05-18,"YB","AD","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-05-18_YB-ADq1",2015-05-18,2015-05-18,"YB","AD","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","85%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ADq5",2015-05-18,2015-05-18,"YB","AD","5","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","95%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ADq8",2015-05-18,2015-05-18,"YB","AD","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-05-18_YB-ADq1",2015-05-18,2015-05-18,"YB","AD","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","85%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ADq5",2015-05-18,2015-05-18,"YB","AD","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","95%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ADq8",2015-05-18,2015-05-18,"YB","AD","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-05-18_YB-ADq1",2015-05-18,2015-05-18,"YB","AD","1","No","Nucella_ostrina","Type 9",14,0.0875,160,NA,"Beatriz Vaca","Finished","Full","Full","85%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ADq5",2015-05-18,2015-05-18,"YB","AD","5","No","Nucella_ostrina","Type 9",28,0.0875,320,NA,"Beatriz Vaca","Finished","Full","Full","95%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ADq8",2015-05-18,2015-05-18,"YB","AD","8","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-05-18_YB-ADq1",2015-05-18,2015-05-18,"YB","AD","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","85%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ADq5",2015-05-18,2015-05-18,"YB","AD","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","95%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ADq8",2015-05-18,2015-05-18,"YB","AD","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-05-18_YB-ADq1",2015-05-18,2015-05-18,"YB","AD","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","85%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ADq5",2015-05-18,2015-05-18,"YB","AD","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","95%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ADq8",2015-05-18,2015-05-18,"YB","AD","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-05-18_YB-ADq1",2015-05-18,2015-05-18,"YB","AD","1","Pp","Pollicipes_polymerus","Type 11",321,0.0875,3668.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","85%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ADq5",2015-05-18,2015-05-18,"YB","AD","5","Pp","Pollicipes_polymerus","Type 11",246,0.0875,2811.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","95%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ADq8",2015-05-18,2015-05-18,"YB","AD","8","Pp","Pollicipes_polymerus","Type 11",74,0.0875,845.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-05-18_YB-ADq1",2015-05-18,2015-05-18,"YB","AD","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","85%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ADq5",2015-05-18,2015-05-18,"YB","AD","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","95%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ADq8",2015-05-18,2015-05-18,"YB","AD","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-05-18_YB-ADq1",2015-05-18,2015-05-18,"YB","AD","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","85%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ADq5",2015-05-18,2015-05-18,"YB","AD","5","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","95%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ADq8",2015-05-18,2015-05-18,"YB","AD","8","Sc","Semibalanus_cariosus","Type 5",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-05-18_YB-ADq1",2015-05-18,2015-05-18,"YB","AD","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","85%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ADq5",2015-05-18,2015-05-18,"YB","AD","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","95%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-ADq8",2015-05-18,2015-05-18,"YB","AD","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-05-18_YB-AEq1",2015-05-18,2015-05-18,"YB","AE","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-AEq4",2015-05-18,2015-05-18,"YB","AE","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-05-18_YB-AEq8",2015-05-18,2015-05-18,"YB","AE","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae cover."
+"2015-05-18_YB-AEq1",2015-05-18,2015-05-18,"YB","AE","1","Ae","Anemones","Type 14",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-AEq4",2015-05-18,2015-05-18,"YB","AE","4","Ae","Anemones","Type 14",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-05-18_YB-AEq8",2015-05-18,2015-05-18,"YB","AE","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae cover."
+"2015-05-18_YB-AEq1",2015-05-18,2015-05-18,"YB","AE","1","Bg","Balanus_glandula","Type 1",116,0.0875,1325.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-AEq4",2015-05-18,2015-05-18,"YB","AE","4","Bg","Balanus_glandula","Type 1",198,0.0875,2262.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-05-18_YB-AEq8",2015-05-18,2015-05-18,"YB","AE","8","Bg","Balanus_glandula","Type 1",111,0.0875,1268.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae cover."
+"2015-05-18_YB-AEq1",2015-05-18,2015-05-18,"YB","AE","1","BgD","Balanus_glandula_(dead)","Type 2",11,0.0875,125.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-AEq4",2015-05-18,2015-05-18,"YB","AE","4","BgD","Balanus_glandula_(dead)","Type 2",30,0.0875,342.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-05-18_YB-AEq8",2015-05-18,2015-05-18,"YB","AE","8","BgD","Balanus_glandula_(dead)","Type 2",22,0.0875,251.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae cover."
+"2015-05-18_YB-AEq1",2015-05-18,2015-05-18,"YB","AE","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-AEq4",2015-05-18,2015-05-18,"YB","AE","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-05-18_YB-AEq8",2015-05-18,2015-05-18,"YB","AE","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae cover."
+"2015-05-18_YB-AEq1",2015-05-18,2015-05-18,"YB","AE","1","Cth","Chthamalus_dalli","Type 3",15,0.0875,171.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-AEq4",2015-05-18,2015-05-18,"YB","AE","4","Cth","Chthamalus_dalli","Type 3",43,0.0875,491.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-05-18_YB-AEq8",2015-05-18,2015-05-18,"YB","AE","8","Cth","Chthamalus_dalli","Type 3",22,0.0875,251.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae cover."
+"2015-05-18_YB-AEq1",2015-05-18,2015-05-18,"YB","AE","1","CthD","Chthamalus_dalli (dead)","Type 4",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-AEq4",2015-05-18,2015-05-18,"YB","AE","4","CthD","Chthamalus_dalli (dead)","Type 4",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-05-18_YB-AEq8",2015-05-18,2015-05-18,"YB","AE","8","CthD","Chthamalus_dalli (dead)","Type 4",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae cover."
+"2015-05-18_YB-AEq1",2015-05-18,2015-05-18,"YB","AE","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-AEq4",2015-05-18,2015-05-18,"YB","AE","4","Emp","Emplectonema worm","Type 23",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-05-18_YB-AEq8",2015-05-18,2015-05-18,"YB","AE","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae cover."
+"2015-05-18_YB-AEq1",2015-05-18,2015-05-18,"YB","AE","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-AEq4",2015-05-18,2015-05-18,"YB","AE","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-05-18_YB-AEq8",2015-05-18,2015-05-18,"YB","AE","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae cover."
+"2015-05-18_YB-AEq1",2015-05-18,2015-05-18,"YB","AE","1","Lim","Limpets","Type 12",168,0.0875,1920,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-AEq4",2015-05-18,2015-05-18,"YB","AE","4","Lim","Limpets","Type 12",222,0.0875,2537.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-05-18_YB-AEq8",2015-05-18,2015-05-18,"YB","AE","8","Lim","Limpets","Type 12",167,0.0875,1908.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae cover."
+"2015-05-18_YB-AEq1",2015-05-18,2015-05-18,"YB","AE","1","Ls","Littorina_sitkana","Type 13",97,0.0875,1108.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-AEq4",2015-05-18,2015-05-18,"YB","AE","4","Ls","Littorina_sitkana","Type 13",147,0.0875,1680,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-05-18_YB-AEq8",2015-05-18,2015-05-18,"YB","AE","8","Ls","Littorina_sitkana","Type 13",84,0.0875,960,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae cover."
+"2015-05-18_YB-AEq1",2015-05-18,2015-05-18,"YB","AE","1","Mc","Mytilus_californianus","Type 17",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-AEq4",2015-05-18,2015-05-18,"YB","AE","4","Mc","Mytilus_californianus","Type 17",27,0.0875,308.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-05-18_YB-AEq8",2015-05-18,2015-05-18,"YB","AE","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae cover."
+"2015-05-18_YB-AEq1",2015-05-18,2015-05-18,"YB","AE","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-AEq4",2015-05-18,2015-05-18,"YB","AE","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-05-18_YB-AEq8",2015-05-18,2015-05-18,"YB","AE","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae cover."
+"2015-05-18_YB-AEq1",2015-05-18,2015-05-18,"YB","AE","1","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-AEq4",2015-05-18,2015-05-18,"YB","AE","4","Myt","Mytilus_spp","Type 7",12,0.0875,137.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-05-18_YB-AEq8",2015-05-18,2015-05-18,"YB","AE","8","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae cover."
+"2015-05-18_YB-AEq1",2015-05-18,2015-05-18,"YB","AE","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-AEq4",2015-05-18,2015-05-18,"YB","AE","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-05-18_YB-AEq8",2015-05-18,2015-05-18,"YB","AE","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae cover."
+"2015-05-18_YB-AEq1",2015-05-18,2015-05-18,"YB","AE","1","Mt","Mytilus_trossulus","Type 15",89,0.0875,1017.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-AEq4",2015-05-18,2015-05-18,"YB","AE","4","Mt","Mytilus_trossulus","Type 15",32,0.0875,365.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-05-18_YB-AEq8",2015-05-18,2015-05-18,"YB","AE","8","Mt","Mytilus_trossulus","Type 15",209,0.0875,2388.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae cover."
+"2015-05-18_YB-AEq1",2015-05-18,2015-05-18,"YB","AE","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-AEq4",2015-05-18,2015-05-18,"YB","AE","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-05-18_YB-AEq8",2015-05-18,2015-05-18,"YB","AE","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae cover."
+"2015-05-18_YB-AEq1",2015-05-18,2015-05-18,"YB","AE","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-AEq4",2015-05-18,2015-05-18,"YB","AE","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-05-18_YB-AEq8",2015-05-18,2015-05-18,"YB","AE","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae cover."
+"2015-05-18_YB-AEq1",2015-05-18,2015-05-18,"YB","AE","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-AEq4",2015-05-18,2015-05-18,"YB","AE","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-05-18_YB-AEq8",2015-05-18,2015-05-18,"YB","AE","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae cover."
+"2015-05-18_YB-AEq1",2015-05-18,2015-05-18,"YB","AE","1","Negg","Nucella_eggs","Type 26",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-AEq4",2015-05-18,2015-05-18,"YB","AE","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-05-18_YB-AEq8",2015-05-18,2015-05-18,"YB","AE","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae cover."
+"2015-05-18_YB-AEq1",2015-05-18,2015-05-18,"YB","AE","1","No","Nucella_ostrina","Type 9",17,0.0875,194.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-AEq4",2015-05-18,2015-05-18,"YB","AE","4","No","Nucella_ostrina","Type 9",13,0.0875,148.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-05-18_YB-AEq8",2015-05-18,2015-05-18,"YB","AE","8","No","Nucella_ostrina","Type 9",16,0.0875,182.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae cover."
+"2015-05-18_YB-AEq1",2015-05-18,2015-05-18,"YB","AE","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-AEq4",2015-05-18,2015-05-18,"YB","AE","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-05-18_YB-AEq8",2015-05-18,2015-05-18,"YB","AE","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae cover."
+"2015-05-18_YB-AEq1",2015-05-18,2015-05-18,"YB","AE","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-AEq4",2015-05-18,2015-05-18,"YB","AE","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-05-18_YB-AEq8",2015-05-18,2015-05-18,"YB","AE","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae cover."
+"2015-05-18_YB-AEq1",2015-05-18,2015-05-18,"YB","AE","1","Pp","Pollicipes_polymerus","Type 11",69,0.0875,788.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-AEq4",2015-05-18,2015-05-18,"YB","AE","4","Pp","Pollicipes_polymerus","Type 11",48,0.0875,548.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-05-18_YB-AEq8",2015-05-18,2015-05-18,"YB","AE","8","Pp","Pollicipes_polymerus","Type 11",22,0.0875,251.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae cover."
+"2015-05-18_YB-AEq1",2015-05-18,2015-05-18,"YB","AE","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-AEq4",2015-05-18,2015-05-18,"YB","AE","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-05-18_YB-AEq8",2015-05-18,2015-05-18,"YB","AE","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae cover."
+"2015-05-18_YB-AEq1",2015-05-18,2015-05-18,"YB","AE","1","Sc","Semibalanus_cariosus","Type 5",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-AEq4",2015-05-18,2015-05-18,"YB","AE","4","Sc","Semibalanus_cariosus","Type 5",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-05-18_YB-AEq8",2015-05-18,2015-05-18,"YB","AE","8","Sc","Semibalanus_cariosus","Type 5",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae cover."
+"2015-05-18_YB-AEq1",2015-05-18,2015-05-18,"YB","AE","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae cover and glare."
+"2015-05-18_YB-AEq4",2015-05-18,2015-05-18,"YB","AE","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-05-18_YB-AEq8",2015-05-18,2015-05-18,"YB","AE","8","ScD","Semibalanus_cariosus_(dead)","Type 6",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae cover."
+"2015-05-18_YB-AFq5",2015-05-18,2015-05-18,"YB","AF","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare and algae."
+"2015-05-18_YB-AFq8",2015-05-18,2015-05-18,"YB","AF","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","20%",""
+"2015-05-18_YB-AFq9",2015-05-18,2015-05-18,"YB","AF","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches and blur"
+"2015-05-18_YB-AFq5",2015-05-18,2015-05-18,"YB","AF","5","Ae","Anemones","Type 14",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare and algae."
+"2015-05-18_YB-AFq8",2015-05-18,2015-05-18,"YB","AF","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","20%",""
+"2015-05-18_YB-AFq9",2015-05-18,2015-05-18,"YB","AF","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches and blur"
+"2015-05-18_YB-AFq5",2015-05-18,2015-05-18,"YB","AF","5","Bg","Balanus_glandula","Type 1",488,0.0875,5577.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare and algae."
+"2015-05-18_YB-AFq8",2015-05-18,2015-05-18,"YB","AF","8","Bg","Balanus_glandula","Type 1",552,0.0875,6308.57142857143,NA,"Celeste Moen","Finished","Full","Full","20%",""
+"2015-05-18_YB-AFq9",2015-05-18,2015-05-18,"YB","AF","9","Bg","Balanus_glandula","Type 1",692,0.0875,7908.57142857143,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches and blur"
+"2015-05-18_YB-AFq5",2015-05-18,2015-05-18,"YB","AF","5","BgD","Balanus_glandula_(dead)","Type 2",34,0.0875,388.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare and algae."
+"2015-05-18_YB-AFq8",2015-05-18,2015-05-18,"YB","AF","8","BgD","Balanus_glandula_(dead)","Type 2",71,0.0875,811.428571428571,NA,"Celeste Moen","Finished","Full","Full","20%",""
+"2015-05-18_YB-AFq9",2015-05-18,2015-05-18,"YB","AF","9","BgD","Balanus_glandula_(dead)","Type 2",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches and blur"
+"2015-05-18_YB-AFq5",2015-05-18,2015-05-18,"YB","AF","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare and algae."
+"2015-05-18_YB-AFq8",2015-05-18,2015-05-18,"YB","AF","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","20%",""
+"2015-05-18_YB-AFq9",2015-05-18,2015-05-18,"YB","AF","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches and blur"
+"2015-05-18_YB-AFq5",2015-05-18,2015-05-18,"YB","AF","5","Cth","Chthamalus_dalli","Type 3",118,0.0875,1348.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare and algae."
+"2015-05-18_YB-AFq8",2015-05-18,2015-05-18,"YB","AF","8","Cth","Chthamalus_dalli","Type 3",181,0.0875,2068.57142857143,NA,"Celeste Moen","Finished","Full","Full","20%",""
+"2015-05-18_YB-AFq9",2015-05-18,2015-05-18,"YB","AF","9","Cth","Chthamalus_dalli","Type 3",9,0.0875,102.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches and blur"
+"2015-05-18_YB-AFq5",2015-05-18,2015-05-18,"YB","AF","5","CthD","Chthamalus_dalli (dead)","Type 4",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare and algae."
+"2015-05-18_YB-AFq8",2015-05-18,2015-05-18,"YB","AF","8","CthD","Chthamalus_dalli (dead)","Type 4",9,0.0875,102.857142857143,NA,"Celeste Moen","Finished","Full","Full","20%",""
+"2015-05-18_YB-AFq9",2015-05-18,2015-05-18,"YB","AF","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches and blur"
+"2015-05-18_YB-AFq5",2015-05-18,2015-05-18,"YB","AF","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare and algae."
+"2015-05-18_YB-AFq8",2015-05-18,2015-05-18,"YB","AF","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","20%",""
+"2015-05-18_YB-AFq9",2015-05-18,2015-05-18,"YB","AF","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches and blur"
+"2015-05-18_YB-AFq5",2015-05-18,2015-05-18,"YB","AF","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare and algae."
+"2015-05-18_YB-AFq8",2015-05-18,2015-05-18,"YB","AF","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","20%",""
+"2015-05-18_YB-AFq9",2015-05-18,2015-05-18,"YB","AF","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches and blur"
+"2015-05-18_YB-AFq5",2015-05-18,2015-05-18,"YB","AF","5","Lim","Limpets","Type 12",275,0.0875,3142.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare and algae."
+"2015-05-18_YB-AFq8",2015-05-18,2015-05-18,"YB","AF","8","Lim","Limpets","Type 12",214,0.0875,2445.71428571429,NA,"Celeste Moen","Finished","Full","Full","20%",""
+"2015-05-18_YB-AFq9",2015-05-18,2015-05-18,"YB","AF","9","Lim","Limpets","Type 12",53,0.0875,605.714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches and blur"
+"2015-05-18_YB-AFq5",2015-05-18,2015-05-18,"YB","AF","5","Ls","Littorina_sitkana","Type 13",262,0.0875,2994.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare and algae."
+"2015-05-18_YB-AFq8",2015-05-18,2015-05-18,"YB","AF","8","Ls","Littorina_sitkana","Type 13",155,0.0875,1771.42857142857,NA,"Celeste Moen","Finished","Full","Full","20%",""
+"2015-05-18_YB-AFq9",2015-05-18,2015-05-18,"YB","AF","9","Ls","Littorina_sitkana","Type 13",255,0.0875,2914.28571428571,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches and blur"
+"2015-05-18_YB-AFq5",2015-05-18,2015-05-18,"YB","AF","5","Mc","Mytilus_californianus","Type 17",14,0.0875,160,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare and algae."
+"2015-05-18_YB-AFq8",2015-05-18,2015-05-18,"YB","AF","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","20%",""
+"2015-05-18_YB-AFq9",2015-05-18,2015-05-18,"YB","AF","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches and blur"
+"2015-05-18_YB-AFq5",2015-05-18,2015-05-18,"YB","AF","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare and algae."
+"2015-05-18_YB-AFq8",2015-05-18,2015-05-18,"YB","AF","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","20%",""
+"2015-05-18_YB-AFq9",2015-05-18,2015-05-18,"YB","AF","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches and blur"
+"2015-05-18_YB-AFq5",2015-05-18,2015-05-18,"YB","AF","5","Myt","Mytilus_spp","Type 7",12,0.0875,137.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare and algae."
+"2015-05-18_YB-AFq8",2015-05-18,2015-05-18,"YB","AF","8","Myt","Mytilus_spp","Type 7",7,0.0875,80,NA,"Celeste Moen","Finished","Full","Full","20%",""
+"2015-05-18_YB-AFq9",2015-05-18,2015-05-18,"YB","AF","9","Myt","Mytilus_spp","Type 7",8,0.0875,91.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches and blur"
+"2015-05-18_YB-AFq5",2015-05-18,2015-05-18,"YB","AF","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare and algae."
+"2015-05-18_YB-AFq8",2015-05-18,2015-05-18,"YB","AF","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","20%",""
+"2015-05-18_YB-AFq9",2015-05-18,2015-05-18,"YB","AF","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches and blur"
+"2015-05-18_YB-AFq5",2015-05-18,2015-05-18,"YB","AF","5","Mt","Mytilus_trossulus","Type 15",128,0.0875,1462.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare and algae."
+"2015-05-18_YB-AFq8",2015-05-18,2015-05-18,"YB","AF","8","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","20%",""
+"2015-05-18_YB-AFq9",2015-05-18,2015-05-18,"YB","AF","9","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches and blur"
+"2015-05-18_YB-AFq5",2015-05-18,2015-05-18,"YB","AF","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare and algae."
+"2015-05-18_YB-AFq8",2015-05-18,2015-05-18,"YB","AF","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","20%",""
+"2015-05-18_YB-AFq9",2015-05-18,2015-05-18,"YB","AF","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches and blur"
+"2015-05-18_YB-AFq5",2015-05-18,2015-05-18,"YB","AF","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare and algae."
+"2015-05-18_YB-AFq8",2015-05-18,2015-05-18,"YB","AF","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","20%",""
+"2015-05-18_YB-AFq9",2015-05-18,2015-05-18,"YB","AF","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches and blur"
+"2015-05-18_YB-AFq5",2015-05-18,2015-05-18,"YB","AF","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare and algae."
+"2015-05-18_YB-AFq8",2015-05-18,2015-05-18,"YB","AF","8","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Celeste Moen","Finished","Full","Full","20%",""
+"2015-05-18_YB-AFq9",2015-05-18,2015-05-18,"YB","AF","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches and blur"
+"2015-05-18_YB-AFq5",2015-05-18,2015-05-18,"YB","AF","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare and algae."
+"2015-05-18_YB-AFq8",2015-05-18,2015-05-18,"YB","AF","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","20%",""
+"2015-05-18_YB-AFq9",2015-05-18,2015-05-18,"YB","AF","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches and blur"
+"2015-05-18_YB-AFq5",2015-05-18,2015-05-18,"YB","AF","5","No","Nucella_ostrina","Type 9",10,0.0875,114.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare and algae."
+"2015-05-18_YB-AFq8",2015-05-18,2015-05-18,"YB","AF","8","No","Nucella_ostrina","Type 9",11,0.0875,125.714285714286,NA,"Celeste Moen","Finished","Full","Full","20%",""
+"2015-05-18_YB-AFq9",2015-05-18,2015-05-18,"YB","AF","9","No","Nucella_ostrina","Type 9",4,0.0875,45.7142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches and blur"
+"2015-05-18_YB-AFq5",2015-05-18,2015-05-18,"YB","AF","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare and algae."
+"2015-05-18_YB-AFq8",2015-05-18,2015-05-18,"YB","AF","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","20%",""
+"2015-05-18_YB-AFq9",2015-05-18,2015-05-18,"YB","AF","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches and blur"
+"2015-05-18_YB-AFq5",2015-05-18,2015-05-18,"YB","AF","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare and algae."
+"2015-05-18_YB-AFq8",2015-05-18,2015-05-18,"YB","AF","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","20%",""
+"2015-05-18_YB-AFq9",2015-05-18,2015-05-18,"YB","AF","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches and blur"
+"2015-05-18_YB-AFq5",2015-05-18,2015-05-18,"YB","AF","5","Pp","Pollicipes_polymerus","Type 11",9,0.0875,102.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare and algae."
+"2015-05-18_YB-AFq8",2015-05-18,2015-05-18,"YB","AF","8","Pp","Pollicipes_polymerus","Type 11",2,0.0875,22.8571428571429,NA,"Celeste Moen","Finished","Full","Full","20%",""
+"2015-05-18_YB-AFq9",2015-05-18,2015-05-18,"YB","AF","9","Pp","Pollicipes_polymerus","Type 11",10,0.0875,114.285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches and blur"
+"2015-05-18_YB-AFq5",2015-05-18,2015-05-18,"YB","AF","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare and algae."
+"2015-05-18_YB-AFq8",2015-05-18,2015-05-18,"YB","AF","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","20%",""
+"2015-05-18_YB-AFq9",2015-05-18,2015-05-18,"YB","AF","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches and blur"
+"2015-05-18_YB-AFq5",2015-05-18,2015-05-18,"YB","AF","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare and algae."
+"2015-05-18_YB-AFq8",2015-05-18,2015-05-18,"YB","AF","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","20%",""
+"2015-05-18_YB-AFq9",2015-05-18,2015-05-18,"YB","AF","9","Sc","Semibalanus_cariosus","Type 5",7,0.0875,80,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches and blur"
+"2015-05-18_YB-AFq5",2015-05-18,2015-05-18,"YB","AF","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare and algae."
+"2015-05-18_YB-AFq8",2015-05-18,2015-05-18,"YB","AF","8","ScD","Semibalanus_cariosus_(dead)","Type 6",1,0.0875,11.4285714285714,NA,"Celeste Moen","Finished","Full","Full","20%",""
+"2015-05-18_YB-AFq9",2015-05-18,2015-05-18,"YB","AF","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches and blur"
+"2015-05-18_YB-AGq2",2015-05-18,2015-05-18,"YB","AG","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","5%",""
+"2015-05-18_YB-AGq7",2015-05-18,2015-05-18,"YB","AG","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-05-18_YB-AGq9",2015-05-18,2015-05-18,"YB","AG","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","75%","Counts likely low due to glare and water patches"
+"2015-05-18_YB-AGq2",2015-05-18,2015-05-18,"YB","AG","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","5%",""
+"2015-05-18_YB-AGq7",2015-05-18,2015-05-18,"YB","AG","7","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-05-18_YB-AGq9",2015-05-18,2015-05-18,"YB","AG","9","Ae","Anemones","Type 14",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","75%","Counts likely low due to glare and water patches"
+"2015-05-18_YB-AGq2",2015-05-18,2015-05-18,"YB","AG","2","Bg","Balanus_glandula","Type 1",573,0.0875,6548.57142857143,NA,"Rebecca Friedrich","Finished","Full","Full","5%",""
+"2015-05-18_YB-AGq7",2015-05-18,2015-05-18,"YB","AG","7","Bg","Balanus_glandula","Type 1",437,0.0875,4994.28571428571,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-05-18_YB-AGq9",2015-05-18,2015-05-18,"YB","AG","9","Bg","Balanus_glandula","Type 1",122,0.0875,1394.28571428571,NA,"Stephanie Merhoff","Finished","Full","Full","75%","Counts likely low due to glare and water patches"
+"2015-05-18_YB-AGq2",2015-05-18,2015-05-18,"YB","AG","2","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","5%",""
+"2015-05-18_YB-AGq7",2015-05-18,2015-05-18,"YB","AG","7","BgD","Balanus_glandula_(dead)","Type 2",37,0.0875,422.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-05-18_YB-AGq9",2015-05-18,2015-05-18,"YB","AG","9","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","75%","Counts likely low due to glare and water patches"
+"2015-05-18_YB-AGq2",2015-05-18,2015-05-18,"YB","AG","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","5%",""
+"2015-05-18_YB-AGq7",2015-05-18,2015-05-18,"YB","AG","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-05-18_YB-AGq9",2015-05-18,2015-05-18,"YB","AG","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","75%","Counts likely low due to glare and water patches"
+"2015-05-18_YB-AGq2",2015-05-18,2015-05-18,"YB","AG","2","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","5%",""
+"2015-05-18_YB-AGq7",2015-05-18,2015-05-18,"YB","AG","7","Cth","Chthamalus_dalli","Type 3",27,0.0875,308.571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-05-18_YB-AGq9",2015-05-18,2015-05-18,"YB","AG","9","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","75%","Counts likely low due to glare and water patches"
+"2015-05-18_YB-AGq2",2015-05-18,2015-05-18,"YB","AG","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","5%",""
+"2015-05-18_YB-AGq7",2015-05-18,2015-05-18,"YB","AG","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-05-18_YB-AGq9",2015-05-18,2015-05-18,"YB","AG","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","75%","Counts likely low due to glare and water patches"
+"2015-05-18_YB-AGq2",2015-05-18,2015-05-18,"YB","AG","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","5%",""
+"2015-05-18_YB-AGq7",2015-05-18,2015-05-18,"YB","AG","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-05-18_YB-AGq9",2015-05-18,2015-05-18,"YB","AG","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","75%","Counts likely low due to glare and water patches"
+"2015-05-18_YB-AGq2",2015-05-18,2015-05-18,"YB","AG","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","5%",""
+"2015-05-18_YB-AGq7",2015-05-18,2015-05-18,"YB","AG","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-05-18_YB-AGq9",2015-05-18,2015-05-18,"YB","AG","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","75%","Counts likely low due to glare and water patches"
+"2015-05-18_YB-AGq2",2015-05-18,2015-05-18,"YB","AG","2","Lim","Limpets","Type 12",163,0.0875,1862.85714285714,NA,"Rebecca Friedrich","Finished","Full","Full","5%",""
+"2015-05-18_YB-AGq7",2015-05-18,2015-05-18,"YB","AG","7","Lim","Limpets","Type 12",112,0.0875,1280,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-05-18_YB-AGq9",2015-05-18,2015-05-18,"YB","AG","9","Lim","Limpets","Type 12",56,0.0875,640,NA,"Stephanie Merhoff","Finished","Full","Full","75%","Counts likely low due to glare and water patches"
+"2015-05-18_YB-AGq2",2015-05-18,2015-05-18,"YB","AG","2","Ls","Littorina_sitkana","Type 13",114,0.0875,1302.85714285714,NA,"Rebecca Friedrich","Finished","Full","Full","5%",""
+"2015-05-18_YB-AGq7",2015-05-18,2015-05-18,"YB","AG","7","Ls","Littorina_sitkana","Type 13",194,0.0875,2217.14285714286,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-05-18_YB-AGq9",2015-05-18,2015-05-18,"YB","AG","9","Ls","Littorina_sitkana","Type 13",461,0.0875,5268.57142857143,NA,"Stephanie Merhoff","Finished","Full","Full","75%","Counts likely low due to glare and water patches"
+"2015-05-18_YB-AGq2",2015-05-18,2015-05-18,"YB","AG","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","5%",""
+"2015-05-18_YB-AGq7",2015-05-18,2015-05-18,"YB","AG","7","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-05-18_YB-AGq9",2015-05-18,2015-05-18,"YB","AG","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","75%","Counts likely low due to glare and water patches"
+"2015-05-18_YB-AGq2",2015-05-18,2015-05-18,"YB","AG","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","5%",""
+"2015-05-18_YB-AGq7",2015-05-18,2015-05-18,"YB","AG","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-05-18_YB-AGq9",2015-05-18,2015-05-18,"YB","AG","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","75%","Counts likely low due to glare and water patches"
+"2015-05-18_YB-AGq2",2015-05-18,2015-05-18,"YB","AG","2","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","5%",""
+"2015-05-18_YB-AGq7",2015-05-18,2015-05-18,"YB","AG","7","Myt","Mytilus_spp","Type 7",65,0.0875,742.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-05-18_YB-AGq9",2015-05-18,2015-05-18,"YB","AG","9","Myt","Mytilus_spp","Type 7",39,0.0875,445.714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","75%","Counts likely low due to glare and water patches"
+"2015-05-18_YB-AGq2",2015-05-18,2015-05-18,"YB","AG","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","5%",""
+"2015-05-18_YB-AGq7",2015-05-18,2015-05-18,"YB","AG","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-05-18_YB-AGq9",2015-05-18,2015-05-18,"YB","AG","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","75%","Counts likely low due to glare and water patches"
+"2015-05-18_YB-AGq2",2015-05-18,2015-05-18,"YB","AG","2","Mt","Mytilus_trossulus","Type 15",166,0.0875,1897.14285714286,NA,"Rebecca Friedrich","Finished","Full","Full","5%",""
+"2015-05-18_YB-AGq7",2015-05-18,2015-05-18,"YB","AG","7","Mt","Mytilus_trossulus","Type 15",42,0.0875,480,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-05-18_YB-AGq9",2015-05-18,2015-05-18,"YB","AG","9","Mt","Mytilus_trossulus","Type 15",25,0.0875,285.714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","75%","Counts likely low due to glare and water patches"
+"2015-05-18_YB-AGq2",2015-05-18,2015-05-18,"YB","AG","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","5%",""
+"2015-05-18_YB-AGq7",2015-05-18,2015-05-18,"YB","AG","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-05-18_YB-AGq9",2015-05-18,2015-05-18,"YB","AG","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","75%","Counts likely low due to glare and water patches"
+"2015-05-18_YB-AGq2",2015-05-18,2015-05-18,"YB","AG","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","5%",""
+"2015-05-18_YB-AGq7",2015-05-18,2015-05-18,"YB","AG","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-05-18_YB-AGq9",2015-05-18,2015-05-18,"YB","AG","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","75%","Counts likely low due to glare and water patches"
+"2015-05-18_YB-AGq2",2015-05-18,2015-05-18,"YB","AG","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","5%",""
+"2015-05-18_YB-AGq7",2015-05-18,2015-05-18,"YB","AG","7","Nc","Nucella_canaliculata","Type 10",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-05-18_YB-AGq9",2015-05-18,2015-05-18,"YB","AG","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","75%","Counts likely low due to glare and water patches"
+"2015-05-18_YB-AGq2",2015-05-18,2015-05-18,"YB","AG","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","5%",""
+"2015-05-18_YB-AGq7",2015-05-18,2015-05-18,"YB","AG","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-05-18_YB-AGq9",2015-05-18,2015-05-18,"YB","AG","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","75%","Counts likely low due to glare and water patches"
+"2015-05-18_YB-AGq2",2015-05-18,2015-05-18,"YB","AG","2","No","Nucella_ostrina","Type 9",3,0.0875,34.2857142857143,NA,"Rebecca Friedrich","Finished","Full","Full","5%",""
+"2015-05-18_YB-AGq7",2015-05-18,2015-05-18,"YB","AG","7","No","Nucella_ostrina","Type 9",15,0.0875,171.428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-05-18_YB-AGq9",2015-05-18,2015-05-18,"YB","AG","9","No","Nucella_ostrina","Type 9",15,0.0875,171.428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","75%","Counts likely low due to glare and water patches"
+"2015-05-18_YB-AGq2",2015-05-18,2015-05-18,"YB","AG","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","5%",""
+"2015-05-18_YB-AGq7",2015-05-18,2015-05-18,"YB","AG","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-05-18_YB-AGq9",2015-05-18,2015-05-18,"YB","AG","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","75%","Counts likely low due to glare and water patches"
+"2015-05-18_YB-AGq2",2015-05-18,2015-05-18,"YB","AG","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","5%",""
+"2015-05-18_YB-AGq7",2015-05-18,2015-05-18,"YB","AG","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-05-18_YB-AGq9",2015-05-18,2015-05-18,"YB","AG","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","75%","Counts likely low due to glare and water patches"
+"2015-05-18_YB-AGq2",2015-05-18,2015-05-18,"YB","AG","2","Pp","Pollicipes_polymerus","Type 11",4,0.0875,45.7142857142857,NA,"Rebecca Friedrich","Finished","Full","Full","5%",""
+"2015-05-18_YB-AGq7",2015-05-18,2015-05-18,"YB","AG","7","Pp","Pollicipes_polymerus","Type 11",63,0.0875,720,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-05-18_YB-AGq9",2015-05-18,2015-05-18,"YB","AG","9","Pp","Pollicipes_polymerus","Type 11",280,0.0875,3200,NA,"Stephanie Merhoff","Finished","Full","Full","75%","Counts likely low due to glare and water patches"
+"2015-05-18_YB-AGq2",2015-05-18,2015-05-18,"YB","AG","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","5%",""
+"2015-05-18_YB-AGq7",2015-05-18,2015-05-18,"YB","AG","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-05-18_YB-AGq9",2015-05-18,2015-05-18,"YB","AG","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","75%","Counts likely low due to glare and water patches"
+"2015-05-18_YB-AGq2",2015-05-18,2015-05-18,"YB","AG","2","Sc","Semibalanus_cariosus","Type 5",2,0.0875,22.8571428571429,NA,"Rebecca Friedrich","Finished","Full","Full","5%",""
+"2015-05-18_YB-AGq7",2015-05-18,2015-05-18,"YB","AG","7","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-05-18_YB-AGq9",2015-05-18,2015-05-18,"YB","AG","9","Sc","Semibalanus_cariosus","Type 5",4,0.0875,45.7142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","75%","Counts likely low due to glare and water patches"
+"2015-05-18_YB-AGq2",2015-05-18,2015-05-18,"YB","AG","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","5%",""
+"2015-05-18_YB-AGq7",2015-05-18,2015-05-18,"YB","AG","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-05-18_YB-AGq9",2015-05-18,2015-05-18,"YB","AG","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","75%","Counts likely low due to glare and water patches"
+"2015-05-18_YB-Bq1",2015-05-18,2015-05-18,"YB","B","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare."
+"2015-05-18_YB-Bq5",2015-05-18,2015-05-18,"YB","B","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts likely low due to glare."
+"2015-05-18_YB-Bq6",2015-05-18,2015-05-18,"YB","B","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare."
+"2015-05-18_YB-Bq1",2015-05-18,2015-05-18,"YB","B","1","Ae","Anemones","Type 14",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare."
+"2015-05-18_YB-Bq5",2015-05-18,2015-05-18,"YB","B","5","Ae","Anemones","Type 14",13,0.0875,148.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts likely low due to glare."
+"2015-05-18_YB-Bq6",2015-05-18,2015-05-18,"YB","B","6","Ae","Anemones","Type 14",30,0.0875,342.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare."
+"2015-05-18_YB-Bq1",2015-05-18,2015-05-18,"YB","B","1","Bg","Balanus_glandula","Type 1",58,0.0875,662.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare."
+"2015-05-18_YB-Bq5",2015-05-18,2015-05-18,"YB","B","5","Bg","Balanus_glandula","Type 1",64,0.0875,731.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts likely low due to glare."
+"2015-05-18_YB-Bq6",2015-05-18,2015-05-18,"YB","B","6","Bg","Balanus_glandula","Type 1",45,0.0875,514.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare."
+"2015-05-18_YB-Bq1",2015-05-18,2015-05-18,"YB","B","1","BgD","Balanus_glandula_(dead)","Type 2",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare."
+"2015-05-18_YB-Bq5",2015-05-18,2015-05-18,"YB","B","5","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts likely low due to glare."
+"2015-05-18_YB-Bq6",2015-05-18,2015-05-18,"YB","B","6","BgD","Balanus_glandula_(dead)","Type 2",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare."
+"2015-05-18_YB-Bq1",2015-05-18,2015-05-18,"YB","B","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare."
+"2015-05-18_YB-Bq5",2015-05-18,2015-05-18,"YB","B","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts likely low due to glare."
+"2015-05-18_YB-Bq6",2015-05-18,2015-05-18,"YB","B","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare."
+"2015-05-18_YB-Bq1",2015-05-18,2015-05-18,"YB","B","1","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare."
+"2015-05-18_YB-Bq5",2015-05-18,2015-05-18,"YB","B","5","Cth","Chthamalus_dalli","Type 3",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts likely low due to glare."
+"2015-05-18_YB-Bq6",2015-05-18,2015-05-18,"YB","B","6","Cth","Chthamalus_dalli","Type 3",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare."
+"2015-05-18_YB-Bq1",2015-05-18,2015-05-18,"YB","B","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare."
+"2015-05-18_YB-Bq5",2015-05-18,2015-05-18,"YB","B","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts likely low due to glare."
+"2015-05-18_YB-Bq6",2015-05-18,2015-05-18,"YB","B","6","CthD","Chthamalus_dalli (dead)","Type 4",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare."
+"2015-05-18_YB-Bq1",2015-05-18,2015-05-18,"YB","B","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare."
+"2015-05-18_YB-Bq5",2015-05-18,2015-05-18,"YB","B","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts likely low due to glare."
+"2015-05-18_YB-Bq6",2015-05-18,2015-05-18,"YB","B","6","Emp","Emplectonema worm","Type 23",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare."
+"2015-05-18_YB-Bq1",2015-05-18,2015-05-18,"YB","B","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare."
+"2015-05-18_YB-Bq5",2015-05-18,2015-05-18,"YB","B","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts likely low due to glare."
+"2015-05-18_YB-Bq6",2015-05-18,2015-05-18,"YB","B","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare."
+"2015-05-18_YB-Bq1",2015-05-18,2015-05-18,"YB","B","1","Lim","Limpets","Type 12",132,0.0875,1508.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare."
+"2015-05-18_YB-Bq5",2015-05-18,2015-05-18,"YB","B","5","Lim","Limpets","Type 12",59,0.0875,674.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts likely low due to glare."
+"2015-05-18_YB-Bq6",2015-05-18,2015-05-18,"YB","B","6","Lim","Limpets","Type 12",106,0.0875,1211.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare."
+"2015-05-18_YB-Bq1",2015-05-18,2015-05-18,"YB","B","1","Ls","Littorina_sitkana","Type 13",85,0.0875,971.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare."
+"2015-05-18_YB-Bq5",2015-05-18,2015-05-18,"YB","B","5","Ls","Littorina_sitkana","Type 13",95,0.0875,1085.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts likely low due to glare."
+"2015-05-18_YB-Bq6",2015-05-18,2015-05-18,"YB","B","6","Ls","Littorina_sitkana","Type 13",99,0.0875,1131.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare."
+"2015-05-18_YB-Bq1",2015-05-18,2015-05-18,"YB","B","1","Mc","Mytilus_californianus","Type 17",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare."
+"2015-05-18_YB-Bq5",2015-05-18,2015-05-18,"YB","B","5","Mc","Mytilus_californianus","Type 17",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts likely low due to glare."
+"2015-05-18_YB-Bq6",2015-05-18,2015-05-18,"YB","B","6","Mc","Mytilus_californianus","Type 17",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare."
+"2015-05-18_YB-Bq1",2015-05-18,2015-05-18,"YB","B","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare."
+"2015-05-18_YB-Bq5",2015-05-18,2015-05-18,"YB","B","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts likely low due to glare."
+"2015-05-18_YB-Bq6",2015-05-18,2015-05-18,"YB","B","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare."
+"2015-05-18_YB-Bq1",2015-05-18,2015-05-18,"YB","B","1","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare."
+"2015-05-18_YB-Bq5",2015-05-18,2015-05-18,"YB","B","5","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts likely low due to glare."
+"2015-05-18_YB-Bq6",2015-05-18,2015-05-18,"YB","B","6","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare."
+"2015-05-18_YB-Bq1",2015-05-18,2015-05-18,"YB","B","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare."
+"2015-05-18_YB-Bq5",2015-05-18,2015-05-18,"YB","B","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts likely low due to glare."
+"2015-05-18_YB-Bq6",2015-05-18,2015-05-18,"YB","B","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare."
+"2015-05-18_YB-Bq1",2015-05-18,2015-05-18,"YB","B","1","Mt","Mytilus_trossulus","Type 15",44,0.0875,502.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare."
+"2015-05-18_YB-Bq5",2015-05-18,2015-05-18,"YB","B","5","Mt","Mytilus_trossulus","Type 15",58,0.0875,662.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts likely low due to glare."
+"2015-05-18_YB-Bq6",2015-05-18,2015-05-18,"YB","B","6","Mt","Mytilus_trossulus","Type 15",62,0.0875,708.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare."
+"2015-05-18_YB-Bq1",2015-05-18,2015-05-18,"YB","B","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare."
+"2015-05-18_YB-Bq5",2015-05-18,2015-05-18,"YB","B","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts likely low due to glare."
+"2015-05-18_YB-Bq6",2015-05-18,2015-05-18,"YB","B","6","MtD","Mytilus_trossulus_(dead)","Type 16",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare."
+"2015-05-18_YB-Bq1",2015-05-18,2015-05-18,"YB","B","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare."
+"2015-05-18_YB-Bq5",2015-05-18,2015-05-18,"YB","B","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts likely low due to glare."
+"2015-05-18_YB-Bq6",2015-05-18,2015-05-18,"YB","B","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare."
+"2015-05-18_YB-Bq1",2015-05-18,2015-05-18,"YB","B","1","Nc","Nucella_canaliculata","Type 10",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare."
+"2015-05-18_YB-Bq5",2015-05-18,2015-05-18,"YB","B","5","Nc","Nucella_canaliculata","Type 10",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts likely low due to glare."
+"2015-05-18_YB-Bq6",2015-05-18,2015-05-18,"YB","B","6","Nc","Nucella_canaliculata","Type 10",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare."
+"2015-05-18_YB-Bq1",2015-05-18,2015-05-18,"YB","B","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare."
+"2015-05-18_YB-Bq5",2015-05-18,2015-05-18,"YB","B","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts likely low due to glare."
+"2015-05-18_YB-Bq6",2015-05-18,2015-05-18,"YB","B","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare."
+"2015-05-18_YB-Bq1",2015-05-18,2015-05-18,"YB","B","1","No","Nucella_ostrina","Type 9",9,0.0875,102.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare."
+"2015-05-18_YB-Bq5",2015-05-18,2015-05-18,"YB","B","5","No","Nucella_ostrina","Type 9",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts likely low due to glare."
+"2015-05-18_YB-Bq6",2015-05-18,2015-05-18,"YB","B","6","No","Nucella_ostrina","Type 9",12,0.0875,137.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare."
+"2015-05-18_YB-Bq1",2015-05-18,2015-05-18,"YB","B","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare."
+"2015-05-18_YB-Bq5",2015-05-18,2015-05-18,"YB","B","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts likely low due to glare."
+"2015-05-18_YB-Bq6",2015-05-18,2015-05-18,"YB","B","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare."
+"2015-05-18_YB-Bq1",2015-05-18,2015-05-18,"YB","B","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare."
+"2015-05-18_YB-Bq5",2015-05-18,2015-05-18,"YB","B","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts likely low due to glare."
+"2015-05-18_YB-Bq6",2015-05-18,2015-05-18,"YB","B","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare."
+"2015-05-18_YB-Bq1",2015-05-18,2015-05-18,"YB","B","1","Pp","Pollicipes_polymerus","Type 11",1118,0.0875,12777.1428571429,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare."
+"2015-05-18_YB-Bq5",2015-05-18,2015-05-18,"YB","B","5","Pp","Pollicipes_polymerus","Type 11",698,0.0875,7977.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts likely low due to glare."
+"2015-05-18_YB-Bq6",2015-05-18,2015-05-18,"YB","B","6","Pp","Pollicipes_polymerus","Type 11",536,0.0875,6125.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare."
+"2015-05-18_YB-Bq1",2015-05-18,2015-05-18,"YB","B","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare."
+"2015-05-18_YB-Bq5",2015-05-18,2015-05-18,"YB","B","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts likely low due to glare."
+"2015-05-18_YB-Bq6",2015-05-18,2015-05-18,"YB","B","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare."
+"2015-05-18_YB-Bq1",2015-05-18,2015-05-18,"YB","B","1","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare."
+"2015-05-18_YB-Bq5",2015-05-18,2015-05-18,"YB","B","5","Sc","Semibalanus_cariosus","Type 5",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts likely low due to glare."
+"2015-05-18_YB-Bq6",2015-05-18,2015-05-18,"YB","B","6","Sc","Semibalanus_cariosus","Type 5",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare."
+"2015-05-18_YB-Bq1",2015-05-18,2015-05-18,"YB","B","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare."
+"2015-05-18_YB-Bq5",2015-05-18,2015-05-18,"YB","B","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts likely low due to glare."
+"2015-05-18_YB-Bq6",2015-05-18,2015-05-18,"YB","B","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare."
+"2015-05-18_YB-BBq1",2015-05-18,2015-05-18,"YB","BB","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to algae coverage and glare"
+"2015-05-18_YB-BBq2",2015-05-18,2015-05-18,"YB","BB","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%","Counts likely low due to algae cover, glare and blur"
+"2015-05-18_YB-BBq9",2015-05-18,2015-05-18,"YB","BB","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-05-18_YB-BBq1",2015-05-18,2015-05-18,"YB","BB","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to algae coverage and glare"
+"2015-05-18_YB-BBq2",2015-05-18,2015-05-18,"YB","BB","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%","Counts likely low due to algae cover, glare and blur"
+"2015-05-18_YB-BBq9",2015-05-18,2015-05-18,"YB","BB","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-05-18_YB-BBq1",2015-05-18,2015-05-18,"YB","BB","1","Bg","Balanus_glandula","Type 1",74,0.0875,845.714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to algae coverage and glare"
+"2015-05-18_YB-BBq2",2015-05-18,2015-05-18,"YB","BB","2","Bg","Balanus_glandula","Type 1",94,0.0875,1074.28571428571,NA,"Stephanie Merhoff","Finished","Full","Full","70%","Counts likely low due to algae cover, glare and blur"
+"2015-05-18_YB-BBq9",2015-05-18,2015-05-18,"YB","BB","9","Bg","Balanus_glandula","Type 1",273,0.0875,3120,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-05-18_YB-BBq1",2015-05-18,2015-05-18,"YB","BB","1","BgD","Balanus_glandula_(dead)","Type 2",4,0.0875,45.7142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to algae coverage and glare"
+"2015-05-18_YB-BBq2",2015-05-18,2015-05-18,"YB","BB","2","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%","Counts likely low due to algae cover, glare and blur"
+"2015-05-18_YB-BBq9",2015-05-18,2015-05-18,"YB","BB","9","BgD","Balanus_glandula_(dead)","Type 2",11,0.0875,125.714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-05-18_YB-BBq1",2015-05-18,2015-05-18,"YB","BB","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to algae coverage and glare"
+"2015-05-18_YB-BBq2",2015-05-18,2015-05-18,"YB","BB","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%","Counts likely low due to algae cover, glare and blur"
+"2015-05-18_YB-BBq9",2015-05-18,2015-05-18,"YB","BB","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-05-18_YB-BBq1",2015-05-18,2015-05-18,"YB","BB","1","Cth","Chthamalus_dalli","Type 3",24,0.0875,274.285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to algae coverage and glare"
+"2015-05-18_YB-BBq2",2015-05-18,2015-05-18,"YB","BB","2","Cth","Chthamalus_dalli","Type 3",14,0.0875,160,NA,"Stephanie Merhoff","Finished","Full","Full","70%","Counts likely low due to algae cover, glare and blur"
+"2015-05-18_YB-BBq9",2015-05-18,2015-05-18,"YB","BB","9","Cth","Chthamalus_dalli","Type 3",53,0.0875,605.714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-05-18_YB-BBq1",2015-05-18,2015-05-18,"YB","BB","1","CthD","Chthamalus_dalli (dead)","Type 4",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to algae coverage and glare"
+"2015-05-18_YB-BBq2",2015-05-18,2015-05-18,"YB","BB","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%","Counts likely low due to algae cover, glare and blur"
+"2015-05-18_YB-BBq9",2015-05-18,2015-05-18,"YB","BB","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-05-18_YB-BBq1",2015-05-18,2015-05-18,"YB","BB","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to algae coverage and glare"
+"2015-05-18_YB-BBq2",2015-05-18,2015-05-18,"YB","BB","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%","Counts likely low due to algae cover, glare and blur"
+"2015-05-18_YB-BBq9",2015-05-18,2015-05-18,"YB","BB","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-05-18_YB-BBq1",2015-05-18,2015-05-18,"YB","BB","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to algae coverage and glare"
+"2015-05-18_YB-BBq2",2015-05-18,2015-05-18,"YB","BB","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%","Counts likely low due to algae cover, glare and blur"
+"2015-05-18_YB-BBq9",2015-05-18,2015-05-18,"YB","BB","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-05-18_YB-BBq1",2015-05-18,2015-05-18,"YB","BB","1","Lim","Limpets","Type 12",83,0.0875,948.571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to algae coverage and glare"
+"2015-05-18_YB-BBq2",2015-05-18,2015-05-18,"YB","BB","2","Lim","Limpets","Type 12",42,0.0875,480,NA,"Stephanie Merhoff","Finished","Full","Full","70%","Counts likely low due to algae cover, glare and blur"
+"2015-05-18_YB-BBq9",2015-05-18,2015-05-18,"YB","BB","9","Lim","Limpets","Type 12",89,0.0875,1017.14285714286,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-05-18_YB-BBq1",2015-05-18,2015-05-18,"YB","BB","1","Ls","Littorina_sitkana","Type 13",177,0.0875,2022.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to algae coverage and glare"
+"2015-05-18_YB-BBq2",2015-05-18,2015-05-18,"YB","BB","2","Ls","Littorina_sitkana","Type 13",158,0.0875,1805.71428571429,NA,"Stephanie Merhoff","Finished","Full","Full","70%","Counts likely low due to algae cover, glare and blur"
+"2015-05-18_YB-BBq9",2015-05-18,2015-05-18,"YB","BB","9","Ls","Littorina_sitkana","Type 13",227,0.0875,2594.28571428571,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-05-18_YB-BBq1",2015-05-18,2015-05-18,"YB","BB","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to algae coverage and glare"
+"2015-05-18_YB-BBq2",2015-05-18,2015-05-18,"YB","BB","2","Mc","Mytilus_californianus","Type 17",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","70%","Counts likely low due to algae cover, glare and blur"
+"2015-05-18_YB-BBq9",2015-05-18,2015-05-18,"YB","BB","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-05-18_YB-BBq1",2015-05-18,2015-05-18,"YB","BB","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to algae coverage and glare"
+"2015-05-18_YB-BBq2",2015-05-18,2015-05-18,"YB","BB","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%","Counts likely low due to algae cover, glare and blur"
+"2015-05-18_YB-BBq9",2015-05-18,2015-05-18,"YB","BB","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-05-18_YB-BBq1",2015-05-18,2015-05-18,"YB","BB","1","Myt","Mytilus_spp","Type 7",62,0.0875,708.571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to algae coverage and glare"
+"2015-05-18_YB-BBq2",2015-05-18,2015-05-18,"YB","BB","2","Myt","Mytilus_spp","Type 7",87,0.0875,994.285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","70%","Counts likely low due to algae cover, glare and blur"
+"2015-05-18_YB-BBq9",2015-05-18,2015-05-18,"YB","BB","9","Myt","Mytilus_spp","Type 7",33,0.0875,377.142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-05-18_YB-BBq1",2015-05-18,2015-05-18,"YB","BB","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to algae coverage and glare"
+"2015-05-18_YB-BBq2",2015-05-18,2015-05-18,"YB","BB","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%","Counts likely low due to algae cover, glare and blur"
+"2015-05-18_YB-BBq9",2015-05-18,2015-05-18,"YB","BB","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-05-18_YB-BBq1",2015-05-18,2015-05-18,"YB","BB","1","Mt","Mytilus_trossulus","Type 15",32,0.0875,365.714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to algae coverage and glare"
+"2015-05-18_YB-BBq2",2015-05-18,2015-05-18,"YB","BB","2","Mt","Mytilus_trossulus","Type 15",24,0.0875,274.285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","70%","Counts likely low due to algae cover, glare and blur"
+"2015-05-18_YB-BBq9",2015-05-18,2015-05-18,"YB","BB","9","Mt","Mytilus_trossulus","Type 15",22,0.0875,251.428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-05-18_YB-BBq1",2015-05-18,2015-05-18,"YB","BB","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to algae coverage and glare"
+"2015-05-18_YB-BBq2",2015-05-18,2015-05-18,"YB","BB","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%","Counts likely low due to algae cover, glare and blur"
+"2015-05-18_YB-BBq9",2015-05-18,2015-05-18,"YB","BB","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-05-18_YB-BBq1",2015-05-18,2015-05-18,"YB","BB","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to algae coverage and glare"
+"2015-05-18_YB-BBq2",2015-05-18,2015-05-18,"YB","BB","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%","Counts likely low due to algae cover, glare and blur"
+"2015-05-18_YB-BBq9",2015-05-18,2015-05-18,"YB","BB","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-05-18_YB-BBq1",2015-05-18,2015-05-18,"YB","BB","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to algae coverage and glare"
+"2015-05-18_YB-BBq2",2015-05-18,2015-05-18,"YB","BB","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%","Counts likely low due to algae cover, glare and blur"
+"2015-05-18_YB-BBq9",2015-05-18,2015-05-18,"YB","BB","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-05-18_YB-BBq1",2015-05-18,2015-05-18,"YB","BB","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to algae coverage and glare"
+"2015-05-18_YB-BBq2",2015-05-18,2015-05-18,"YB","BB","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%","Counts likely low due to algae cover, glare and blur"
+"2015-05-18_YB-BBq9",2015-05-18,2015-05-18,"YB","BB","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-05-18_YB-BBq1",2015-05-18,2015-05-18,"YB","BB","1","No","Nucella_ostrina","Type 9",7,0.0875,80,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to algae coverage and glare"
+"2015-05-18_YB-BBq2",2015-05-18,2015-05-18,"YB","BB","2","No","Nucella_ostrina","Type 9",25,0.0875,285.714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","70%","Counts likely low due to algae cover, glare and blur"
+"2015-05-18_YB-BBq9",2015-05-18,2015-05-18,"YB","BB","9","No","Nucella_ostrina","Type 9",25,0.0875,285.714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-05-18_YB-BBq1",2015-05-18,2015-05-18,"YB","BB","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to algae coverage and glare"
+"2015-05-18_YB-BBq2",2015-05-18,2015-05-18,"YB","BB","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%","Counts likely low due to algae cover, glare and blur"
+"2015-05-18_YB-BBq9",2015-05-18,2015-05-18,"YB","BB","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-05-18_YB-BBq1",2015-05-18,2015-05-18,"YB","BB","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to algae coverage and glare"
+"2015-05-18_YB-BBq2",2015-05-18,2015-05-18,"YB","BB","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%","Counts likely low due to algae cover, glare and blur"
+"2015-05-18_YB-BBq9",2015-05-18,2015-05-18,"YB","BB","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-05-18_YB-BBq1",2015-05-18,2015-05-18,"YB","BB","1","Pp","Pollicipes_polymerus","Type 11",4,0.0875,45.7142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to algae coverage and glare"
+"2015-05-18_YB-BBq2",2015-05-18,2015-05-18,"YB","BB","2","Pp","Pollicipes_polymerus","Type 11",29,0.0875,331.428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","70%","Counts likely low due to algae cover, glare and blur"
+"2015-05-18_YB-BBq9",2015-05-18,2015-05-18,"YB","BB","9","Pp","Pollicipes_polymerus","Type 11",6,0.0875,68.5714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-05-18_YB-BBq1",2015-05-18,2015-05-18,"YB","BB","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to algae coverage and glare"
+"2015-05-18_YB-BBq2",2015-05-18,2015-05-18,"YB","BB","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%","Counts likely low due to algae cover, glare and blur"
+"2015-05-18_YB-BBq9",2015-05-18,2015-05-18,"YB","BB","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-05-18_YB-BBq1",2015-05-18,2015-05-18,"YB","BB","1","Sc","Semibalanus_cariosus","Type 5",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to algae coverage and glare"
+"2015-05-18_YB-BBq2",2015-05-18,2015-05-18,"YB","BB","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%","Counts likely low due to algae cover, glare and blur"
+"2015-05-18_YB-BBq9",2015-05-18,2015-05-18,"YB","BB","9","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-05-18_YB-BBq1",2015-05-18,2015-05-18,"YB","BB","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to algae coverage and glare"
+"2015-05-18_YB-BBq2",2015-05-18,2015-05-18,"YB","BB","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%","Counts likely low due to algae cover, glare and blur"
+"2015-05-18_YB-BBq9",2015-05-18,2015-05-18,"YB","BB","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-05-18_YB-BCq3",2015-05-18,2015-05-18,"YB","BC","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-05-18_YB-BCq5",2015-05-18,2015-05-18,"YB","BC","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2015-05-18_YB-BCq9",2015-05-18,2015-05-18,"YB","BC","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2015-05-18_YB-BCq3",2015-05-18,2015-05-18,"YB","BC","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-05-18_YB-BCq5",2015-05-18,2015-05-18,"YB","BC","5","Ae","Anemones","Type 14",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2015-05-18_YB-BCq9",2015-05-18,2015-05-18,"YB","BC","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2015-05-18_YB-BCq3",2015-05-18,2015-05-18,"YB","BC","3","Bg","Balanus_glandula","Type 1",412,0.0875,4708.57142857143,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-05-18_YB-BCq5",2015-05-18,2015-05-18,"YB","BC","5","Bg","Balanus_glandula","Type 1",219,0.0875,2502.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2015-05-18_YB-BCq9",2015-05-18,2015-05-18,"YB","BC","9","Bg","Balanus_glandula","Type 1",360,0.0875,4114.28571428571,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2015-05-18_YB-BCq3",2015-05-18,2015-05-18,"YB","BC","3","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-05-18_YB-BCq5",2015-05-18,2015-05-18,"YB","BC","5","BgD","Balanus_glandula_(dead)","Type 2",4,0.0875,45.7142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2015-05-18_YB-BCq9",2015-05-18,2015-05-18,"YB","BC","9","BgD","Balanus_glandula_(dead)","Type 2",12,0.0875,137.142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2015-05-18_YB-BCq3",2015-05-18,2015-05-18,"YB","BC","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-05-18_YB-BCq5",2015-05-18,2015-05-18,"YB","BC","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2015-05-18_YB-BCq9",2015-05-18,2015-05-18,"YB","BC","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2015-05-18_YB-BCq3",2015-05-18,2015-05-18,"YB","BC","3","Cth","Chthamalus_dalli","Type 3",370,0.0875,4228.57142857143,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-05-18_YB-BCq5",2015-05-18,2015-05-18,"YB","BC","5","Cth","Chthamalus_dalli","Type 3",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2015-05-18_YB-BCq9",2015-05-18,2015-05-18,"YB","BC","9","Cth","Chthamalus_dalli","Type 3",105,0.0875,1200,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2015-05-18_YB-BCq3",2015-05-18,2015-05-18,"YB","BC","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-05-18_YB-BCq5",2015-05-18,2015-05-18,"YB","BC","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2015-05-18_YB-BCq9",2015-05-18,2015-05-18,"YB","BC","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2015-05-18_YB-BCq3",2015-05-18,2015-05-18,"YB","BC","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-05-18_YB-BCq5",2015-05-18,2015-05-18,"YB","BC","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2015-05-18_YB-BCq9",2015-05-18,2015-05-18,"YB","BC","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2015-05-18_YB-BCq3",2015-05-18,2015-05-18,"YB","BC","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-05-18_YB-BCq5",2015-05-18,2015-05-18,"YB","BC","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2015-05-18_YB-BCq9",2015-05-18,2015-05-18,"YB","BC","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2015-05-18_YB-BCq3",2015-05-18,2015-05-18,"YB","BC","3","Lim","Limpets","Type 12",143,0.0875,1634.28571428571,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-05-18_YB-BCq5",2015-05-18,2015-05-18,"YB","BC","5","Lim","Limpets","Type 12",67,0.0875,765.714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2015-05-18_YB-BCq9",2015-05-18,2015-05-18,"YB","BC","9","Lim","Limpets","Type 12",194,0.0875,2217.14285714286,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2015-05-18_YB-BCq3",2015-05-18,2015-05-18,"YB","BC","3","Ls","Littorina_sitkana","Type 13",279,0.0875,3188.57142857143,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-05-18_YB-BCq5",2015-05-18,2015-05-18,"YB","BC","5","Ls","Littorina_sitkana","Type 13",218,0.0875,2491.42857142857,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2015-05-18_YB-BCq9",2015-05-18,2015-05-18,"YB","BC","9","Ls","Littorina_sitkana","Type 13",163,0.0875,1862.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2015-05-18_YB-BCq3",2015-05-18,2015-05-18,"YB","BC","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-05-18_YB-BCq5",2015-05-18,2015-05-18,"YB","BC","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2015-05-18_YB-BCq9",2015-05-18,2015-05-18,"YB","BC","9","Mc","Mytilus_californianus","Type 17",4,0.0875,45.7142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2015-05-18_YB-BCq3",2015-05-18,2015-05-18,"YB","BC","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-05-18_YB-BCq5",2015-05-18,2015-05-18,"YB","BC","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2015-05-18_YB-BCq9",2015-05-18,2015-05-18,"YB","BC","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2015-05-18_YB-BCq3",2015-05-18,2015-05-18,"YB","BC","3","Myt","Mytilus_spp","Type 7",89,0.0875,1017.14285714286,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-05-18_YB-BCq5",2015-05-18,2015-05-18,"YB","BC","5","Myt","Mytilus_spp","Type 7",38,0.0875,434.285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2015-05-18_YB-BCq9",2015-05-18,2015-05-18,"YB","BC","9","Myt","Mytilus_spp","Type 7",21,0.0875,240,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2015-05-18_YB-BCq3",2015-05-18,2015-05-18,"YB","BC","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-05-18_YB-BCq5",2015-05-18,2015-05-18,"YB","BC","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2015-05-18_YB-BCq9",2015-05-18,2015-05-18,"YB","BC","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2015-05-18_YB-BCq3",2015-05-18,2015-05-18,"YB","BC","3","Mt","Mytilus_trossulus","Type 15",63,0.0875,720,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-05-18_YB-BCq5",2015-05-18,2015-05-18,"YB","BC","5","Mt","Mytilus_trossulus","Type 15",23,0.0875,262.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2015-05-18_YB-BCq9",2015-05-18,2015-05-18,"YB","BC","9","Mt","Mytilus_trossulus","Type 15",34,0.0875,388.571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2015-05-18_YB-BCq3",2015-05-18,2015-05-18,"YB","BC","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-05-18_YB-BCq5",2015-05-18,2015-05-18,"YB","BC","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2015-05-18_YB-BCq9",2015-05-18,2015-05-18,"YB","BC","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2015-05-18_YB-BCq3",2015-05-18,2015-05-18,"YB","BC","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-05-18_YB-BCq5",2015-05-18,2015-05-18,"YB","BC","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2015-05-18_YB-BCq9",2015-05-18,2015-05-18,"YB","BC","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2015-05-18_YB-BCq3",2015-05-18,2015-05-18,"YB","BC","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-05-18_YB-BCq5",2015-05-18,2015-05-18,"YB","BC","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2015-05-18_YB-BCq9",2015-05-18,2015-05-18,"YB","BC","9","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2015-05-18_YB-BCq3",2015-05-18,2015-05-18,"YB","BC","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-05-18_YB-BCq5",2015-05-18,2015-05-18,"YB","BC","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2015-05-18_YB-BCq9",2015-05-18,2015-05-18,"YB","BC","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2015-05-18_YB-BCq3",2015-05-18,2015-05-18,"YB","BC","3","No","Nucella_ostrina","Type 9",15,0.0875,171.428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-05-18_YB-BCq5",2015-05-18,2015-05-18,"YB","BC","5","No","Nucella_ostrina","Type 9",7,0.0875,80,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2015-05-18_YB-BCq9",2015-05-18,2015-05-18,"YB","BC","9","No","Nucella_ostrina","Type 9",17,0.0875,194.285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2015-05-18_YB-BCq3",2015-05-18,2015-05-18,"YB","BC","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-05-18_YB-BCq5",2015-05-18,2015-05-18,"YB","BC","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2015-05-18_YB-BCq9",2015-05-18,2015-05-18,"YB","BC","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2015-05-18_YB-BCq3",2015-05-18,2015-05-18,"YB","BC","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-05-18_YB-BCq5",2015-05-18,2015-05-18,"YB","BC","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2015-05-18_YB-BCq9",2015-05-18,2015-05-18,"YB","BC","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2015-05-18_YB-BCq3",2015-05-18,2015-05-18,"YB","BC","3","Pp","Pollicipes_polymerus","Type 11",4,0.0875,45.7142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-05-18_YB-BCq5",2015-05-18,2015-05-18,"YB","BC","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2015-05-18_YB-BCq9",2015-05-18,2015-05-18,"YB","BC","9","Pp","Pollicipes_polymerus","Type 11",36,0.0875,411.428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2015-05-18_YB-BCq3",2015-05-18,2015-05-18,"YB","BC","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-05-18_YB-BCq5",2015-05-18,2015-05-18,"YB","BC","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2015-05-18_YB-BCq9",2015-05-18,2015-05-18,"YB","BC","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2015-05-18_YB-BCq3",2015-05-18,2015-05-18,"YB","BC","3","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-05-18_YB-BCq5",2015-05-18,2015-05-18,"YB","BC","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2015-05-18_YB-BCq9",2015-05-18,2015-05-18,"YB","BC","9","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2015-05-18_YB-BCq3",2015-05-18,2015-05-18,"YB","BC","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-05-18_YB-BCq5",2015-05-18,2015-05-18,"YB","BC","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2015-05-18_YB-BCq9",2015-05-18,2015-05-18,"YB","BC","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%",""
+"2015-05-18_YB-BDq1",2015-05-18,2015-05-18,"YB","BD","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%",""
+"2015-05-18_YB-BDq5",2015-05-18,2015-05-18,"YB","BD","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","22%","counts likely low due to water coverage and glare"
+"2015-05-18_YB-BDq7",2015-05-18,2015-05-18,"YB","BD","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2015-05-18_YB-BDq1",2015-05-18,2015-05-18,"YB","BD","1","Ae","Anemones","Type 14",6,0.0875,68.5714285714286,NA,"Julia Bingham","Finished","Full","Full","5%",""
+"2015-05-18_YB-BDq5",2015-05-18,2015-05-18,"YB","BD","5","Ae","Anemones","Type 14",3,0.0875,34.2857142857143,NA,"Julia Bingham","Finished","Full","Full","22%","counts likely low due to water coverage and glare"
+"2015-05-18_YB-BDq7",2015-05-18,2015-05-18,"YB","BD","7","Ae","Anemones","Type 14",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2015-05-18_YB-BDq1",2015-05-18,2015-05-18,"YB","BD","1","Bg","Balanus_glandula","Type 1",277,0.0875,3165.71428571429,NA,"Julia Bingham","Finished","Full","Full","5%",""
+"2015-05-18_YB-BDq5",2015-05-18,2015-05-18,"YB","BD","5","Bg","Balanus_glandula","Type 1",73,0.0875,834.285714285714,NA,"Julia Bingham","Finished","Full","Full","22%","counts likely low due to water coverage and glare"
+"2015-05-18_YB-BDq7",2015-05-18,2015-05-18,"YB","BD","7","Bg","Balanus_glandula","Type 1",242,0.0875,2765.71428571429,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2015-05-18_YB-BDq1",2015-05-18,2015-05-18,"YB","BD","1","BgD","Balanus_glandula_(dead)","Type 2",103,0.0875,1177.14285714286,NA,"Julia Bingham","Finished","Full","Full","5%",""
+"2015-05-18_YB-BDq5",2015-05-18,2015-05-18,"YB","BD","5","BgD","Balanus_glandula_(dead)","Type 2",20,0.0875,228.571428571429,NA,"Julia Bingham","Finished","Full","Full","22%","counts likely low due to water coverage and glare"
+"2015-05-18_YB-BDq7",2015-05-18,2015-05-18,"YB","BD","7","BgD","Balanus_glandula_(dead)","Type 2",98,0.0875,1120,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2015-05-18_YB-BDq1",2015-05-18,2015-05-18,"YB","BD","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%",""
+"2015-05-18_YB-BDq5",2015-05-18,2015-05-18,"YB","BD","5","Chi","Chiton_spp","Type 22",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","22%","counts likely low due to water coverage and glare"
+"2015-05-18_YB-BDq7",2015-05-18,2015-05-18,"YB","BD","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2015-05-18_YB-BDq1",2015-05-18,2015-05-18,"YB","BD","1","Cth","Chthamalus_dalli","Type 3",33,0.0875,377.142857142857,NA,"Julia Bingham","Finished","Full","Full","5%",""
+"2015-05-18_YB-BDq5",2015-05-18,2015-05-18,"YB","BD","5","Cth","Chthamalus_dalli","Type 3",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","22%","counts likely low due to water coverage and glare"
+"2015-05-18_YB-BDq7",2015-05-18,2015-05-18,"YB","BD","7","Cth","Chthamalus_dalli","Type 3",40,0.0875,457.142857142857,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2015-05-18_YB-BDq1",2015-05-18,2015-05-18,"YB","BD","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%",""
+"2015-05-18_YB-BDq5",2015-05-18,2015-05-18,"YB","BD","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","22%","counts likely low due to water coverage and glare"
+"2015-05-18_YB-BDq7",2015-05-18,2015-05-18,"YB","BD","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2015-05-18_YB-BDq1",2015-05-18,2015-05-18,"YB","BD","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%",""
+"2015-05-18_YB-BDq5",2015-05-18,2015-05-18,"YB","BD","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","22%","counts likely low due to water coverage and glare"
+"2015-05-18_YB-BDq7",2015-05-18,2015-05-18,"YB","BD","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2015-05-18_YB-BDq1",2015-05-18,2015-05-18,"YB","BD","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%",""
+"2015-05-18_YB-BDq5",2015-05-18,2015-05-18,"YB","BD","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","22%","counts likely low due to water coverage and glare"
+"2015-05-18_YB-BDq7",2015-05-18,2015-05-18,"YB","BD","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2015-05-18_YB-BDq1",2015-05-18,2015-05-18,"YB","BD","1","Lim","Limpets","Type 12",447,0.0875,5108.57142857143,NA,"Julia Bingham","Finished","Full","Full","5%",""
+"2015-05-18_YB-BDq5",2015-05-18,2015-05-18,"YB","BD","5","Lim","Limpets","Type 12",239,0.0875,2731.42857142857,NA,"Julia Bingham","Finished","Full","Full","22%","counts likely low due to water coverage and glare"
+"2015-05-18_YB-BDq7",2015-05-18,2015-05-18,"YB","BD","7","Lim","Limpets","Type 12",522,0.0875,5965.71428571429,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2015-05-18_YB-BDq1",2015-05-18,2015-05-18,"YB","BD","1","Ls","Littorina_sitkana","Type 13",310,0.0875,3542.85714285714,NA,"Julia Bingham","Finished","Full","Full","5%",""
+"2015-05-18_YB-BDq5",2015-05-18,2015-05-18,"YB","BD","5","Ls","Littorina_sitkana","Type 13",250,0.0875,2857.14285714286,NA,"Julia Bingham","Finished","Full","Full","22%","counts likely low due to water coverage and glare"
+"2015-05-18_YB-BDq7",2015-05-18,2015-05-18,"YB","BD","7","Ls","Littorina_sitkana","Type 13",322,0.0875,3680,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2015-05-18_YB-BDq1",2015-05-18,2015-05-18,"YB","BD","1","Mc","Mytilus_californianus","Type 17",73,0.0875,834.285714285714,NA,"Julia Bingham","Finished","Full","Full","5%",""
+"2015-05-18_YB-BDq5",2015-05-18,2015-05-18,"YB","BD","5","Mc","Mytilus_californianus","Type 17",104,0.0875,1188.57142857143,NA,"Julia Bingham","Finished","Full","Full","22%","counts likely low due to water coverage and glare"
+"2015-05-18_YB-BDq7",2015-05-18,2015-05-18,"YB","BD","7","Mc","Mytilus_californianus","Type 17",14,0.0875,160,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2015-05-18_YB-BDq1",2015-05-18,2015-05-18,"YB","BD","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%",""
+"2015-05-18_YB-BDq5",2015-05-18,2015-05-18,"YB","BD","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","22%","counts likely low due to water coverage and glare"
+"2015-05-18_YB-BDq7",2015-05-18,2015-05-18,"YB","BD","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2015-05-18_YB-BDq1",2015-05-18,2015-05-18,"YB","BD","1","Myt","Mytilus_spp","Type 7",1273,0.0875,14548.5714285714,NA,"Julia Bingham","Finished","Full","Full","5%",""
+"2015-05-18_YB-BDq5",2015-05-18,2015-05-18,"YB","BD","5","Myt","Mytilus_spp","Type 7",412,0.0875,4708.57142857143,NA,"Julia Bingham","Finished","Full","Full","22%","counts likely low due to water coverage and glare"
+"2015-05-18_YB-BDq7",2015-05-18,2015-05-18,"YB","BD","7","Myt","Mytilus_spp","Type 7",296,0.0875,3382.85714285714,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2015-05-18_YB-BDq1",2015-05-18,2015-05-18,"YB","BD","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%",""
+"2015-05-18_YB-BDq5",2015-05-18,2015-05-18,"YB","BD","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","22%","counts likely low due to water coverage and glare"
+"2015-05-18_YB-BDq7",2015-05-18,2015-05-18,"YB","BD","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2015-05-18_YB-BDq1",2015-05-18,2015-05-18,"YB","BD","1","Mt","Mytilus_trossulus","Type 15",27,0.0875,308.571428571429,NA,"Julia Bingham","Finished","Full","Full","5%",""
+"2015-05-18_YB-BDq5",2015-05-18,2015-05-18,"YB","BD","5","Mt","Mytilus_trossulus","Type 15",39,0.0875,445.714285714286,NA,"Julia Bingham","Finished","Full","Full","22%","counts likely low due to water coverage and glare"
+"2015-05-18_YB-BDq7",2015-05-18,2015-05-18,"YB","BD","7","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2015-05-18_YB-BDq1",2015-05-18,2015-05-18,"YB","BD","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%",""
+"2015-05-18_YB-BDq5",2015-05-18,2015-05-18,"YB","BD","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","22%","counts likely low due to water coverage and glare"
+"2015-05-18_YB-BDq7",2015-05-18,2015-05-18,"YB","BD","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2015-05-18_YB-BDq1",2015-05-18,2015-05-18,"YB","BD","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%",""
+"2015-05-18_YB-BDq5",2015-05-18,2015-05-18,"YB","BD","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","22%","counts likely low due to water coverage and glare"
+"2015-05-18_YB-BDq7",2015-05-18,2015-05-18,"YB","BD","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2015-05-18_YB-BDq1",2015-05-18,2015-05-18,"YB","BD","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%",""
+"2015-05-18_YB-BDq5",2015-05-18,2015-05-18,"YB","BD","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","22%","counts likely low due to water coverage and glare"
+"2015-05-18_YB-BDq7",2015-05-18,2015-05-18,"YB","BD","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2015-05-18_YB-BDq1",2015-05-18,2015-05-18,"YB","BD","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%",""
+"2015-05-18_YB-BDq5",2015-05-18,2015-05-18,"YB","BD","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","22%","counts likely low due to water coverage and glare"
+"2015-05-18_YB-BDq7",2015-05-18,2015-05-18,"YB","BD","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2015-05-18_YB-BDq1",2015-05-18,2015-05-18,"YB","BD","1","No","Nucella_ostrina","Type 9",29,0.0875,331.428571428571,NA,"Julia Bingham","Finished","Full","Full","5%",""
+"2015-05-18_YB-BDq5",2015-05-18,2015-05-18,"YB","BD","5","No","Nucella_ostrina","Type 9",16,0.0875,182.857142857143,NA,"Julia Bingham","Finished","Full","Full","22%","counts likely low due to water coverage and glare"
+"2015-05-18_YB-BDq7",2015-05-18,2015-05-18,"YB","BD","7","No","Nucella_ostrina","Type 9",11,0.0875,125.714285714286,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2015-05-18_YB-BDq1",2015-05-18,2015-05-18,"YB","BD","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%",""
+"2015-05-18_YB-BDq5",2015-05-18,2015-05-18,"YB","BD","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","22%","counts likely low due to water coverage and glare"
+"2015-05-18_YB-BDq7",2015-05-18,2015-05-18,"YB","BD","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2015-05-18_YB-BDq1",2015-05-18,2015-05-18,"YB","BD","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%",""
+"2015-05-18_YB-BDq5",2015-05-18,2015-05-18,"YB","BD","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","22%","counts likely low due to water coverage and glare"
+"2015-05-18_YB-BDq7",2015-05-18,2015-05-18,"YB","BD","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2015-05-18_YB-BDq1",2015-05-18,2015-05-18,"YB","BD","1","Pp","Pollicipes_polymerus","Type 11",2659,0.0875,30388.5714285714,NA,"Julia Bingham","Finished","Full","Full","5%",""
+"2015-05-18_YB-BDq5",2015-05-18,2015-05-18,"YB","BD","5","Pp","Pollicipes_polymerus","Type 11",1299,0.0875,14845.7142857143,NA,"Julia Bingham","Finished","Full","Full","22%","counts likely low due to water coverage and glare"
+"2015-05-18_YB-BDq7",2015-05-18,2015-05-18,"YB","BD","7","Pp","Pollicipes_polymerus","Type 11",1524,0.0875,17417.1428571429,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2015-05-18_YB-BDq1",2015-05-18,2015-05-18,"YB","BD","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%",""
+"2015-05-18_YB-BDq5",2015-05-18,2015-05-18,"YB","BD","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","22%","counts likely low due to water coverage and glare"
+"2015-05-18_YB-BDq7",2015-05-18,2015-05-18,"YB","BD","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2015-05-18_YB-BDq1",2015-05-18,2015-05-18,"YB","BD","1","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","5%",""
+"2015-05-18_YB-BDq5",2015-05-18,2015-05-18,"YB","BD","5","Sc","Semibalanus_cariosus","Type 5",8,0.0875,91.4285714285714,NA,"Julia Bingham","Finished","Full","Full","22%","counts likely low due to water coverage and glare"
+"2015-05-18_YB-BDq7",2015-05-18,2015-05-18,"YB","BD","7","Sc","Semibalanus_cariosus","Type 5",10,0.0875,114.285714285714,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2015-05-18_YB-BDq1",2015-05-18,2015-05-18,"YB","BD","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%",""
+"2015-05-18_YB-BDq5",2015-05-18,2015-05-18,"YB","BD","5","ScD","Semibalanus_cariosus_(dead)","Type 6",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","22%","counts likely low due to water coverage and glare"
+"2015-05-18_YB-BDq7",2015-05-18,2015-05-18,"YB","BD","7","ScD","Semibalanus_cariosus_(dead)","Type 6",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2015-05-18_YB-BEq2",2015-05-18,2015-05-18,"YB","BE","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur"
+"2015-05-18_YB-BEq3",2015-05-18,2015-05-18,"YB","BE","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-05-18_YB-BEq6",2015-05-18,2015-05-18,"YB","BE","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-05-18_YB-BEq2",2015-05-18,2015-05-18,"YB","BE","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur"
+"2015-05-18_YB-BEq3",2015-05-18,2015-05-18,"YB","BE","3","Ae","Anemones","Type 14",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-05-18_YB-BEq6",2015-05-18,2015-05-18,"YB","BE","6","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-05-18_YB-BEq2",2015-05-18,2015-05-18,"YB","BE","2","Bg","Balanus_glandula","Type 1",253,0.0875,2891.42857142857,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur"
+"2015-05-18_YB-BEq3",2015-05-18,2015-05-18,"YB","BE","3","Bg","Balanus_glandula","Type 1",269,0.0875,3074.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-05-18_YB-BEq6",2015-05-18,2015-05-18,"YB","BE","6","Bg","Balanus_glandula","Type 1",371,0.0875,4240,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-05-18_YB-BEq2",2015-05-18,2015-05-18,"YB","BE","2","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur"
+"2015-05-18_YB-BEq3",2015-05-18,2015-05-18,"YB","BE","3","BgD","Balanus_glandula_(dead)","Type 2",17,0.0875,194.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-05-18_YB-BEq6",2015-05-18,2015-05-18,"YB","BE","6","BgD","Balanus_glandula_(dead)","Type 2",32,0.0875,365.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-05-18_YB-BEq2",2015-05-18,2015-05-18,"YB","BE","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur"
+"2015-05-18_YB-BEq3",2015-05-18,2015-05-18,"YB","BE","3","Chi","Chiton_spp","Type 22",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-05-18_YB-BEq6",2015-05-18,2015-05-18,"YB","BE","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-05-18_YB-BEq2",2015-05-18,2015-05-18,"YB","BE","2","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur"
+"2015-05-18_YB-BEq3",2015-05-18,2015-05-18,"YB","BE","3","Cth","Chthamalus_dalli","Type 3",62,0.0875,708.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-05-18_YB-BEq6",2015-05-18,2015-05-18,"YB","BE","6","Cth","Chthamalus_dalli","Type 3",69,0.0875,788.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-05-18_YB-BEq2",2015-05-18,2015-05-18,"YB","BE","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur"
+"2015-05-18_YB-BEq3",2015-05-18,2015-05-18,"YB","BE","3","CthD","Chthamalus_dalli (dead)","Type 4",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-05-18_YB-BEq6",2015-05-18,2015-05-18,"YB","BE","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-05-18_YB-BEq2",2015-05-18,2015-05-18,"YB","BE","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur"
+"2015-05-18_YB-BEq3",2015-05-18,2015-05-18,"YB","BE","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-05-18_YB-BEq6",2015-05-18,2015-05-18,"YB","BE","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-05-18_YB-BEq2",2015-05-18,2015-05-18,"YB","BE","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur"
+"2015-05-18_YB-BEq3",2015-05-18,2015-05-18,"YB","BE","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-05-18_YB-BEq6",2015-05-18,2015-05-18,"YB","BE","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-05-18_YB-BEq2",2015-05-18,2015-05-18,"YB","BE","2","Lim","Limpets","Type 12",59,0.0875,674.285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur"
+"2015-05-18_YB-BEq3",2015-05-18,2015-05-18,"YB","BE","3","Lim","Limpets","Type 12",273,0.0875,3120,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-05-18_YB-BEq6",2015-05-18,2015-05-18,"YB","BE","6","Lim","Limpets","Type 12",211,0.0875,2411.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-05-18_YB-BEq2",2015-05-18,2015-05-18,"YB","BE","2","Ls","Littorina_sitkana","Type 13",279,0.0875,3188.57142857143,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur"
+"2015-05-18_YB-BEq3",2015-05-18,2015-05-18,"YB","BE","3","Ls","Littorina_sitkana","Type 13",216,0.0875,2468.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-05-18_YB-BEq6",2015-05-18,2015-05-18,"YB","BE","6","Ls","Littorina_sitkana","Type 13",671,0.0875,7668.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-05-18_YB-BEq2",2015-05-18,2015-05-18,"YB","BE","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur"
+"2015-05-18_YB-BEq3",2015-05-18,2015-05-18,"YB","BE","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-05-18_YB-BEq6",2015-05-18,2015-05-18,"YB","BE","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-05-18_YB-BEq2",2015-05-18,2015-05-18,"YB","BE","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur"
+"2015-05-18_YB-BEq3",2015-05-18,2015-05-18,"YB","BE","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-05-18_YB-BEq6",2015-05-18,2015-05-18,"YB","BE","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-05-18_YB-BEq2",2015-05-18,2015-05-18,"YB","BE","2","Myt","Mytilus_spp","Type 7",43,0.0875,491.428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur"
+"2015-05-18_YB-BEq3",2015-05-18,2015-05-18,"YB","BE","3","Myt","Mytilus_spp","Type 7",74,0.0875,845.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-05-18_YB-BEq6",2015-05-18,2015-05-18,"YB","BE","6","Myt","Mytilus_spp","Type 7",56,0.0875,640,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-05-18_YB-BEq2",2015-05-18,2015-05-18,"YB","BE","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur"
+"2015-05-18_YB-BEq3",2015-05-18,2015-05-18,"YB","BE","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-05-18_YB-BEq6",2015-05-18,2015-05-18,"YB","BE","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-05-18_YB-BEq2",2015-05-18,2015-05-18,"YB","BE","2","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur"
+"2015-05-18_YB-BEq3",2015-05-18,2015-05-18,"YB","BE","3","Mt","Mytilus_trossulus","Type 15",58,0.0875,662.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-05-18_YB-BEq6",2015-05-18,2015-05-18,"YB","BE","6","Mt","Mytilus_trossulus","Type 15",45,0.0875,514.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-05-18_YB-BEq2",2015-05-18,2015-05-18,"YB","BE","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur"
+"2015-05-18_YB-BEq3",2015-05-18,2015-05-18,"YB","BE","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-05-18_YB-BEq6",2015-05-18,2015-05-18,"YB","BE","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-05-18_YB-BEq2",2015-05-18,2015-05-18,"YB","BE","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur"
+"2015-05-18_YB-BEq3",2015-05-18,2015-05-18,"YB","BE","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-05-18_YB-BEq6",2015-05-18,2015-05-18,"YB","BE","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-05-18_YB-BEq2",2015-05-18,2015-05-18,"YB","BE","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur"
+"2015-05-18_YB-BEq3",2015-05-18,2015-05-18,"YB","BE","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-05-18_YB-BEq6",2015-05-18,2015-05-18,"YB","BE","6","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-05-18_YB-BEq2",2015-05-18,2015-05-18,"YB","BE","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur"
+"2015-05-18_YB-BEq3",2015-05-18,2015-05-18,"YB","BE","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-05-18_YB-BEq6",2015-05-18,2015-05-18,"YB","BE","6","Negg","Nucella_eggs","Type 26",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-05-18_YB-BEq2",2015-05-18,2015-05-18,"YB","BE","2","No","Nucella_ostrina","Type 9",5,0.0875,57.1428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur"
+"2015-05-18_YB-BEq3",2015-05-18,2015-05-18,"YB","BE","3","No","Nucella_ostrina","Type 9",13,0.0875,148.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-05-18_YB-BEq6",2015-05-18,2015-05-18,"YB","BE","6","No","Nucella_ostrina","Type 9",22,0.0875,251.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-05-18_YB-BEq2",2015-05-18,2015-05-18,"YB","BE","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur"
+"2015-05-18_YB-BEq3",2015-05-18,2015-05-18,"YB","BE","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-05-18_YB-BEq6",2015-05-18,2015-05-18,"YB","BE","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-05-18_YB-BEq2",2015-05-18,2015-05-18,"YB","BE","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur"
+"2015-05-18_YB-BEq3",2015-05-18,2015-05-18,"YB","BE","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-05-18_YB-BEq6",2015-05-18,2015-05-18,"YB","BE","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-05-18_YB-BEq2",2015-05-18,2015-05-18,"YB","BE","2","Pp","Pollicipes_polymerus","Type 11",6,0.0875,68.5714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur"
+"2015-05-18_YB-BEq3",2015-05-18,2015-05-18,"YB","BE","3","Pp","Pollicipes_polymerus","Type 11",41,0.0875,468.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-05-18_YB-BEq6",2015-05-18,2015-05-18,"YB","BE","6","Pp","Pollicipes_polymerus","Type 11",11,0.0875,125.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-05-18_YB-BEq2",2015-05-18,2015-05-18,"YB","BE","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur"
+"2015-05-18_YB-BEq3",2015-05-18,2015-05-18,"YB","BE","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-05-18_YB-BEq6",2015-05-18,2015-05-18,"YB","BE","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-05-18_YB-BEq2",2015-05-18,2015-05-18,"YB","BE","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur"
+"2015-05-18_YB-BEq3",2015-05-18,2015-05-18,"YB","BE","3","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-05-18_YB-BEq6",2015-05-18,2015-05-18,"YB","BE","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-05-18_YB-BEq2",2015-05-18,2015-05-18,"YB","BE","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur"
+"2015-05-18_YB-BEq3",2015-05-18,2015-05-18,"YB","BE","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-05-18_YB-BEq6",2015-05-18,2015-05-18,"YB","BE","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-05-18_YB-BFq1",2015-05-18,2015-05-18,"YB","BF","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae."
+"2015-05-18_YB-BFq4",2015-05-18,2015-05-18,"YB","BF","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae."
+"2015-05-18_YB-BFq9",2015-05-18,2015-05-18,"YB","BF","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","90%","Counts may be low due to algae."
+"2015-05-18_YB-BFq1",2015-05-18,2015-05-18,"YB","BF","1","Ae","Anemones","Type 14",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae."
+"2015-05-18_YB-BFq4",2015-05-18,2015-05-18,"YB","BF","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae."
+"2015-05-18_YB-BFq9",2015-05-18,2015-05-18,"YB","BF","9","Ae","Anemones","Type 14",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","90%","Counts may be low due to algae."
+"2015-05-18_YB-BFq1",2015-05-18,2015-05-18,"YB","BF","1","Bg","Balanus_glandula","Type 1",222,0.0875,2537.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae."
+"2015-05-18_YB-BFq4",2015-05-18,2015-05-18,"YB","BF","4","Bg","Balanus_glandula","Type 1",502,0.0875,5737.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae."
+"2015-05-18_YB-BFq9",2015-05-18,2015-05-18,"YB","BF","9","Bg","Balanus_glandula","Type 1",40,0.0875,457.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","90%","Counts may be low due to algae."
+"2015-05-18_YB-BFq1",2015-05-18,2015-05-18,"YB","BF","1","BgD","Balanus_glandula_(dead)","Type 2",77,0.0875,880,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae."
+"2015-05-18_YB-BFq4",2015-05-18,2015-05-18,"YB","BF","4","BgD","Balanus_glandula_(dead)","Type 2",23,0.0875,262.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae."
+"2015-05-18_YB-BFq9",2015-05-18,2015-05-18,"YB","BF","9","BgD","Balanus_glandula_(dead)","Type 2",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","90%","Counts may be low due to algae."
+"2015-05-18_YB-BFq1",2015-05-18,2015-05-18,"YB","BF","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae."
+"2015-05-18_YB-BFq4",2015-05-18,2015-05-18,"YB","BF","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae."
+"2015-05-18_YB-BFq9",2015-05-18,2015-05-18,"YB","BF","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","90%","Counts may be low due to algae."
+"2015-05-18_YB-BFq1",2015-05-18,2015-05-18,"YB","BF","1","Cth","Chthamalus_dalli","Type 3",75,0.0875,857.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae."
+"2015-05-18_YB-BFq4",2015-05-18,2015-05-18,"YB","BF","4","Cth","Chthamalus_dalli","Type 3",79,0.0875,902.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae."
+"2015-05-18_YB-BFq9",2015-05-18,2015-05-18,"YB","BF","9","Cth","Chthamalus_dalli","Type 3",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","90%","Counts may be low due to algae."
+"2015-05-18_YB-BFq1",2015-05-18,2015-05-18,"YB","BF","1","CthD","Chthamalus_dalli (dead)","Type 4",9,0.0875,102.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae."
+"2015-05-18_YB-BFq4",2015-05-18,2015-05-18,"YB","BF","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae."
+"2015-05-18_YB-BFq9",2015-05-18,2015-05-18,"YB","BF","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","90%","Counts may be low due to algae."
+"2015-05-18_YB-BFq1",2015-05-18,2015-05-18,"YB","BF","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae."
+"2015-05-18_YB-BFq4",2015-05-18,2015-05-18,"YB","BF","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae."
+"2015-05-18_YB-BFq9",2015-05-18,2015-05-18,"YB","BF","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","90%","Counts may be low due to algae."
+"2015-05-18_YB-BFq1",2015-05-18,2015-05-18,"YB","BF","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae."
+"2015-05-18_YB-BFq4",2015-05-18,2015-05-18,"YB","BF","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae."
+"2015-05-18_YB-BFq9",2015-05-18,2015-05-18,"YB","BF","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","90%","Counts may be low due to algae."
+"2015-05-18_YB-BFq1",2015-05-18,2015-05-18,"YB","BF","1","Lim","Limpets","Type 12",139,0.0875,1588.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae."
+"2015-05-18_YB-BFq4",2015-05-18,2015-05-18,"YB","BF","4","Lim","Limpets","Type 12",279,0.0875,3188.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae."
+"2015-05-18_YB-BFq9",2015-05-18,2015-05-18,"YB","BF","9","Lim","Limpets","Type 12",48,0.0875,548.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","90%","Counts may be low due to algae."
+"2015-05-18_YB-BFq1",2015-05-18,2015-05-18,"YB","BF","1","Ls","Littorina_sitkana","Type 13",265,0.0875,3028.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae."
+"2015-05-18_YB-BFq4",2015-05-18,2015-05-18,"YB","BF","4","Ls","Littorina_sitkana","Type 13",281,0.0875,3211.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae."
+"2015-05-18_YB-BFq9",2015-05-18,2015-05-18,"YB","BF","9","Ls","Littorina_sitkana","Type 13",294,0.0875,3360,NA,"Beatriz Vaca","Finished","Full","Full","90%","Counts may be low due to algae."
+"2015-05-18_YB-BFq1",2015-05-18,2015-05-18,"YB","BF","1","Mc","Mytilus_californianus","Type 17",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae."
+"2015-05-18_YB-BFq4",2015-05-18,2015-05-18,"YB","BF","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae."
+"2015-05-18_YB-BFq9",2015-05-18,2015-05-18,"YB","BF","9","Mc","Mytilus_californianus","Type 17",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","90%","Counts may be low due to algae."
+"2015-05-18_YB-BFq1",2015-05-18,2015-05-18,"YB","BF","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae."
+"2015-05-18_YB-BFq4",2015-05-18,2015-05-18,"YB","BF","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae."
+"2015-05-18_YB-BFq9",2015-05-18,2015-05-18,"YB","BF","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","90%","Counts may be low due to algae."
+"2015-05-18_YB-BFq1",2015-05-18,2015-05-18,"YB","BF","1","Myt","Mytilus_spp","Type 7",41,0.0875,468.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae."
+"2015-05-18_YB-BFq4",2015-05-18,2015-05-18,"YB","BF","4","Myt","Mytilus_spp","Type 7",67,0.0875,765.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae."
+"2015-05-18_YB-BFq9",2015-05-18,2015-05-18,"YB","BF","9","Myt","Mytilus_spp","Type 7",31,0.0875,354.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","90%","Counts may be low due to algae."
+"2015-05-18_YB-BFq1",2015-05-18,2015-05-18,"YB","BF","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae."
+"2015-05-18_YB-BFq4",2015-05-18,2015-05-18,"YB","BF","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae."
+"2015-05-18_YB-BFq9",2015-05-18,2015-05-18,"YB","BF","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","90%","Counts may be low due to algae."
+"2015-05-18_YB-BFq1",2015-05-18,2015-05-18,"YB","BF","1","Mt","Mytilus_trossulus","Type 15",80,0.0875,914.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae."
+"2015-05-18_YB-BFq4",2015-05-18,2015-05-18,"YB","BF","4","Mt","Mytilus_trossulus","Type 15",88,0.0875,1005.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae."
+"2015-05-18_YB-BFq9",2015-05-18,2015-05-18,"YB","BF","9","Mt","Mytilus_trossulus","Type 15",17,0.0875,194.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","90%","Counts may be low due to algae."
+"2015-05-18_YB-BFq1",2015-05-18,2015-05-18,"YB","BF","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae."
+"2015-05-18_YB-BFq4",2015-05-18,2015-05-18,"YB","BF","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae."
+"2015-05-18_YB-BFq9",2015-05-18,2015-05-18,"YB","BF","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","90%","Counts may be low due to algae."
+"2015-05-18_YB-BFq1",2015-05-18,2015-05-18,"YB","BF","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae."
+"2015-05-18_YB-BFq4",2015-05-18,2015-05-18,"YB","BF","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae."
+"2015-05-18_YB-BFq9",2015-05-18,2015-05-18,"YB","BF","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","90%","Counts may be low due to algae."
+"2015-05-18_YB-BFq1",2015-05-18,2015-05-18,"YB","BF","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae."
+"2015-05-18_YB-BFq4",2015-05-18,2015-05-18,"YB","BF","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae."
+"2015-05-18_YB-BFq9",2015-05-18,2015-05-18,"YB","BF","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","90%","Counts may be low due to algae."
+"2015-05-18_YB-BFq1",2015-05-18,2015-05-18,"YB","BF","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae."
+"2015-05-18_YB-BFq4",2015-05-18,2015-05-18,"YB","BF","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae."
+"2015-05-18_YB-BFq9",2015-05-18,2015-05-18,"YB","BF","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","90%","Counts may be low due to algae."
+"2015-05-18_YB-BFq1",2015-05-18,2015-05-18,"YB","BF","1","No","Nucella_ostrina","Type 9",21,0.0875,240,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae."
+"2015-05-18_YB-BFq4",2015-05-18,2015-05-18,"YB","BF","4","No","Nucella_ostrina","Type 9",11,0.0875,125.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae."
+"2015-05-18_YB-BFq9",2015-05-18,2015-05-18,"YB","BF","9","No","Nucella_ostrina","Type 9",28,0.0875,320,NA,"Beatriz Vaca","Finished","Full","Full","90%","Counts may be low due to algae."
+"2015-05-18_YB-BFq1",2015-05-18,2015-05-18,"YB","BF","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae."
+"2015-05-18_YB-BFq4",2015-05-18,2015-05-18,"YB","BF","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae."
+"2015-05-18_YB-BFq9",2015-05-18,2015-05-18,"YB","BF","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","90%","Counts may be low due to algae."
+"2015-05-18_YB-BFq1",2015-05-18,2015-05-18,"YB","BF","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae."
+"2015-05-18_YB-BFq4",2015-05-18,2015-05-18,"YB","BF","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae."
+"2015-05-18_YB-BFq9",2015-05-18,2015-05-18,"YB","BF","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","90%","Counts may be low due to algae."
+"2015-05-18_YB-BFq1",2015-05-18,2015-05-18,"YB","BF","1","Pp","Pollicipes_polymerus","Type 11",85,0.0875,971.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae."
+"2015-05-18_YB-BFq4",2015-05-18,2015-05-18,"YB","BF","4","Pp","Pollicipes_polymerus","Type 11",36,0.0875,411.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae."
+"2015-05-18_YB-BFq9",2015-05-18,2015-05-18,"YB","BF","9","Pp","Pollicipes_polymerus","Type 11",273,0.0875,3120,NA,"Beatriz Vaca","Finished","Full","Full","90%","Counts may be low due to algae."
+"2015-05-18_YB-BFq1",2015-05-18,2015-05-18,"YB","BF","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae."
+"2015-05-18_YB-BFq4",2015-05-18,2015-05-18,"YB","BF","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae."
+"2015-05-18_YB-BFq9",2015-05-18,2015-05-18,"YB","BF","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","90%","Counts may be low due to algae."
+"2015-05-18_YB-BFq1",2015-05-18,2015-05-18,"YB","BF","1","Sc","Semibalanus_cariosus","Type 5",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae."
+"2015-05-18_YB-BFq4",2015-05-18,2015-05-18,"YB","BF","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae."
+"2015-05-18_YB-BFq9",2015-05-18,2015-05-18,"YB","BF","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","90%","Counts may be low due to algae."
+"2015-05-18_YB-BFq1",2015-05-18,2015-05-18,"YB","BF","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae."
+"2015-05-18_YB-BFq4",2015-05-18,2015-05-18,"YB","BF","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae."
+"2015-05-18_YB-BFq9",2015-05-18,2015-05-18,"YB","BF","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","90%","Counts may be low due to algae."
+"2015-05-18_YB-Cq2",2015-05-18,2015-05-18,"YB","C","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-05-18_YB-Cq4",2015-05-18,2015-05-18,"YB","C","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to glare."
+"2015-05-18_YB-Cq6",2015-05-18,2015-05-18,"YB","C","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-05-18_YB-Cq2",2015-05-18,2015-05-18,"YB","C","2","Ae","Anemones","Type 14",14,0.0875,160,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-05-18_YB-Cq4",2015-05-18,2015-05-18,"YB","C","4","Ae","Anemones","Type 14",28,0.0875,320,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to glare."
+"2015-05-18_YB-Cq6",2015-05-18,2015-05-18,"YB","C","6","Ae","Anemones","Type 14",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-05-18_YB-Cq2",2015-05-18,2015-05-18,"YB","C","2","Bg","Balanus_glandula","Type 1",99,0.0875,1131.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-05-18_YB-Cq4",2015-05-18,2015-05-18,"YB","C","4","Bg","Balanus_glandula","Type 1",72,0.0875,822.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to glare."
+"2015-05-18_YB-Cq6",2015-05-18,2015-05-18,"YB","C","6","Bg","Balanus_glandula","Type 1",115,0.0875,1314.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-05-18_YB-Cq2",2015-05-18,2015-05-18,"YB","C","2","BgD","Balanus_glandula_(dead)","Type 2",38,0.0875,434.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-05-18_YB-Cq4",2015-05-18,2015-05-18,"YB","C","4","BgD","Balanus_glandula_(dead)","Type 2",49,0.0875,560,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to glare."
+"2015-05-18_YB-Cq6",2015-05-18,2015-05-18,"YB","C","6","BgD","Balanus_glandula_(dead)","Type 2",10,0.0875,114.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-05-18_YB-Cq2",2015-05-18,2015-05-18,"YB","C","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-05-18_YB-Cq4",2015-05-18,2015-05-18,"YB","C","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to glare."
+"2015-05-18_YB-Cq6",2015-05-18,2015-05-18,"YB","C","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-05-18_YB-Cq2",2015-05-18,2015-05-18,"YB","C","2","Cth","Chthamalus_dalli","Type 3",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-05-18_YB-Cq4",2015-05-18,2015-05-18,"YB","C","4","Cth","Chthamalus_dalli","Type 3",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to glare."
+"2015-05-18_YB-Cq6",2015-05-18,2015-05-18,"YB","C","6","Cth","Chthamalus_dalli","Type 3",21,0.0875,240,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-05-18_YB-Cq2",2015-05-18,2015-05-18,"YB","C","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-05-18_YB-Cq4",2015-05-18,2015-05-18,"YB","C","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to glare."
+"2015-05-18_YB-Cq6",2015-05-18,2015-05-18,"YB","C","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-05-18_YB-Cq2",2015-05-18,2015-05-18,"YB","C","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-05-18_YB-Cq4",2015-05-18,2015-05-18,"YB","C","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to glare."
+"2015-05-18_YB-Cq6",2015-05-18,2015-05-18,"YB","C","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-05-18_YB-Cq2",2015-05-18,2015-05-18,"YB","C","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-05-18_YB-Cq4",2015-05-18,2015-05-18,"YB","C","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to glare."
+"2015-05-18_YB-Cq6",2015-05-18,2015-05-18,"YB","C","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-05-18_YB-Cq2",2015-05-18,2015-05-18,"YB","C","2","Lim","Limpets","Type 12",223,0.0875,2548.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-05-18_YB-Cq4",2015-05-18,2015-05-18,"YB","C","4","Lim","Limpets","Type 12",261,0.0875,2982.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to glare."
+"2015-05-18_YB-Cq6",2015-05-18,2015-05-18,"YB","C","6","Lim","Limpets","Type 12",257,0.0875,2937.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-05-18_YB-Cq2",2015-05-18,2015-05-18,"YB","C","2","Ls","Littorina_sitkana","Type 13",126,0.0875,1440,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-05-18_YB-Cq4",2015-05-18,2015-05-18,"YB","C","4","Ls","Littorina_sitkana","Type 13",121,0.0875,1382.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to glare."
+"2015-05-18_YB-Cq6",2015-05-18,2015-05-18,"YB","C","6","Ls","Littorina_sitkana","Type 13",34,0.0875,388.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-05-18_YB-Cq2",2015-05-18,2015-05-18,"YB","C","2","Mc","Mytilus_californianus","Type 17",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-05-18_YB-Cq4",2015-05-18,2015-05-18,"YB","C","4","Mc","Mytilus_californianus","Type 17",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to glare."
+"2015-05-18_YB-Cq6",2015-05-18,2015-05-18,"YB","C","6","Mc","Mytilus_californianus","Type 17",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-05-18_YB-Cq2",2015-05-18,2015-05-18,"YB","C","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-05-18_YB-Cq4",2015-05-18,2015-05-18,"YB","C","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to glare."
+"2015-05-18_YB-Cq6",2015-05-18,2015-05-18,"YB","C","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-05-18_YB-Cq2",2015-05-18,2015-05-18,"YB","C","2","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-05-18_YB-Cq4",2015-05-18,2015-05-18,"YB","C","4","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to glare."
+"2015-05-18_YB-Cq6",2015-05-18,2015-05-18,"YB","C","6","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-05-18_YB-Cq2",2015-05-18,2015-05-18,"YB","C","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-05-18_YB-Cq4",2015-05-18,2015-05-18,"YB","C","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to glare."
+"2015-05-18_YB-Cq6",2015-05-18,2015-05-18,"YB","C","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-05-18_YB-Cq2",2015-05-18,2015-05-18,"YB","C","2","Mt","Mytilus_trossulus","Type 15",101,0.0875,1154.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-05-18_YB-Cq4",2015-05-18,2015-05-18,"YB","C","4","Mt","Mytilus_trossulus","Type 15",22,0.0875,251.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to glare."
+"2015-05-18_YB-Cq6",2015-05-18,2015-05-18,"YB","C","6","Mt","Mytilus_trossulus","Type 15",37,0.0875,422.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-05-18_YB-Cq2",2015-05-18,2015-05-18,"YB","C","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-05-18_YB-Cq4",2015-05-18,2015-05-18,"YB","C","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to glare."
+"2015-05-18_YB-Cq6",2015-05-18,2015-05-18,"YB","C","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-05-18_YB-Cq2",2015-05-18,2015-05-18,"YB","C","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-05-18_YB-Cq4",2015-05-18,2015-05-18,"YB","C","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to glare."
+"2015-05-18_YB-Cq6",2015-05-18,2015-05-18,"YB","C","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-05-18_YB-Cq2",2015-05-18,2015-05-18,"YB","C","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-05-18_YB-Cq4",2015-05-18,2015-05-18,"YB","C","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to glare."
+"2015-05-18_YB-Cq6",2015-05-18,2015-05-18,"YB","C","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-05-18_YB-Cq2",2015-05-18,2015-05-18,"YB","C","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-05-18_YB-Cq4",2015-05-18,2015-05-18,"YB","C","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to glare."
+"2015-05-18_YB-Cq6",2015-05-18,2015-05-18,"YB","C","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-05-18_YB-Cq2",2015-05-18,2015-05-18,"YB","C","2","No","Nucella_ostrina","Type 9",12,0.0875,137.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-05-18_YB-Cq4",2015-05-18,2015-05-18,"YB","C","4","No","Nucella_ostrina","Type 9",12,0.0875,137.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to glare."
+"2015-05-18_YB-Cq6",2015-05-18,2015-05-18,"YB","C","6","No","Nucella_ostrina","Type 9",12,0.0875,137.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-05-18_YB-Cq2",2015-05-18,2015-05-18,"YB","C","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-05-18_YB-Cq4",2015-05-18,2015-05-18,"YB","C","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to glare."
+"2015-05-18_YB-Cq6",2015-05-18,2015-05-18,"YB","C","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-05-18_YB-Cq2",2015-05-18,2015-05-18,"YB","C","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-05-18_YB-Cq4",2015-05-18,2015-05-18,"YB","C","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to glare."
+"2015-05-18_YB-Cq6",2015-05-18,2015-05-18,"YB","C","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-05-18_YB-Cq2",2015-05-18,2015-05-18,"YB","C","2","Pp","Pollicipes_polymerus","Type 11",869,0.0875,9931.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-05-18_YB-Cq4",2015-05-18,2015-05-18,"YB","C","4","Pp","Pollicipes_polymerus","Type 11",817,0.0875,9337.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to glare."
+"2015-05-18_YB-Cq6",2015-05-18,2015-05-18,"YB","C","6","Pp","Pollicipes_polymerus","Type 11",558,0.0875,6377.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-05-18_YB-Cq2",2015-05-18,2015-05-18,"YB","C","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-05-18_YB-Cq4",2015-05-18,2015-05-18,"YB","C","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to glare."
+"2015-05-18_YB-Cq6",2015-05-18,2015-05-18,"YB","C","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-05-18_YB-Cq2",2015-05-18,2015-05-18,"YB","C","2","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-05-18_YB-Cq4",2015-05-18,2015-05-18,"YB","C","4","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to glare."
+"2015-05-18_YB-Cq6",2015-05-18,2015-05-18,"YB","C","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-05-18_YB-Cq2",2015-05-18,2015-05-18,"YB","C","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-05-18_YB-Cq4",2015-05-18,2015-05-18,"YB","C","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to glare."
+"2015-05-18_YB-Cq6",2015-05-18,2015-05-18,"YB","C","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-05-18_YB-Dq3",2015-05-18,2015-05-18,"YB","D","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare and algae."
+"2015-05-18_YB-Dq4",2015-05-18,2015-05-18,"YB","D","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2015-05-18_YB-Dq5",2015-05-18,2015-05-18,"YB","D","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae and glare."
+"2015-05-18_YB-Dq3",2015-05-18,2015-05-18,"YB","D","3","Ae","Anemones","Type 14",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare and algae."
+"2015-05-18_YB-Dq4",2015-05-18,2015-05-18,"YB","D","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2015-05-18_YB-Dq5",2015-05-18,2015-05-18,"YB","D","5","Ae","Anemones","Type 14",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae and glare."
+"2015-05-18_YB-Dq3",2015-05-18,2015-05-18,"YB","D","3","Bg","Balanus_glandula","Type 1",262,0.0875,2994.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare and algae."
+"2015-05-18_YB-Dq4",2015-05-18,2015-05-18,"YB","D","4","Bg","Balanus_glandula","Type 1",707,0.0875,8080,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2015-05-18_YB-Dq5",2015-05-18,2015-05-18,"YB","D","5","Bg","Balanus_glandula","Type 1",352,0.0875,4022.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae and glare."
+"2015-05-18_YB-Dq3",2015-05-18,2015-05-18,"YB","D","3","BgD","Balanus_glandula_(dead)","Type 2",146,0.0875,1668.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare and algae."
+"2015-05-18_YB-Dq4",2015-05-18,2015-05-18,"YB","D","4","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2015-05-18_YB-Dq5",2015-05-18,2015-05-18,"YB","D","5","BgD","Balanus_glandula_(dead)","Type 2",58,0.0875,662.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae and glare."
+"2015-05-18_YB-Dq3",2015-05-18,2015-05-18,"YB","D","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare and algae."
+"2015-05-18_YB-Dq4",2015-05-18,2015-05-18,"YB","D","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2015-05-18_YB-Dq5",2015-05-18,2015-05-18,"YB","D","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae and glare."
+"2015-05-18_YB-Dq3",2015-05-18,2015-05-18,"YB","D","3","Cth","Chthamalus_dalli","Type 3",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare and algae."
+"2015-05-18_YB-Dq4",2015-05-18,2015-05-18,"YB","D","4","Cth","Chthamalus_dalli","Type 3",9,0.0875,102.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2015-05-18_YB-Dq5",2015-05-18,2015-05-18,"YB","D","5","Cth","Chthamalus_dalli","Type 3",20,0.0875,228.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae and glare."
+"2015-05-18_YB-Dq3",2015-05-18,2015-05-18,"YB","D","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare and algae."
+"2015-05-18_YB-Dq4",2015-05-18,2015-05-18,"YB","D","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2015-05-18_YB-Dq5",2015-05-18,2015-05-18,"YB","D","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae and glare."
+"2015-05-18_YB-Dq3",2015-05-18,2015-05-18,"YB","D","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare and algae."
+"2015-05-18_YB-Dq4",2015-05-18,2015-05-18,"YB","D","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2015-05-18_YB-Dq5",2015-05-18,2015-05-18,"YB","D","5","Emp","Emplectonema worm","Type 23",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae and glare."
+"2015-05-18_YB-Dq3",2015-05-18,2015-05-18,"YB","D","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare and algae."
+"2015-05-18_YB-Dq4",2015-05-18,2015-05-18,"YB","D","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2015-05-18_YB-Dq5",2015-05-18,2015-05-18,"YB","D","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae and glare."
+"2015-05-18_YB-Dq3",2015-05-18,2015-05-18,"YB","D","3","Lim","Limpets","Type 12",206,0.0875,2354.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare and algae."
+"2015-05-18_YB-Dq4",2015-05-18,2015-05-18,"YB","D","4","Lim","Limpets","Type 12",98,0.0875,1120,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2015-05-18_YB-Dq5",2015-05-18,2015-05-18,"YB","D","5","Lim","Limpets","Type 12",350,0.0875,4000,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae and glare."
+"2015-05-18_YB-Dq3",2015-05-18,2015-05-18,"YB","D","3","Ls","Littorina_sitkana","Type 13",183,0.0875,2091.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare and algae."
+"2015-05-18_YB-Dq4",2015-05-18,2015-05-18,"YB","D","4","Ls","Littorina_sitkana","Type 13",243,0.0875,2777.14285714286,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2015-05-18_YB-Dq5",2015-05-18,2015-05-18,"YB","D","5","Ls","Littorina_sitkana","Type 13",237,0.0875,2708.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae and glare."
+"2015-05-18_YB-Dq3",2015-05-18,2015-05-18,"YB","D","3","Mc","Mytilus_californianus","Type 17",22,0.0875,251.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare and algae."
+"2015-05-18_YB-Dq4",2015-05-18,2015-05-18,"YB","D","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2015-05-18_YB-Dq5",2015-05-18,2015-05-18,"YB","D","5","Mc","Mytilus_californianus","Type 17",44,0.0875,502.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae and glare."
+"2015-05-18_YB-Dq3",2015-05-18,2015-05-18,"YB","D","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare and algae."
+"2015-05-18_YB-Dq4",2015-05-18,2015-05-18,"YB","D","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2015-05-18_YB-Dq5",2015-05-18,2015-05-18,"YB","D","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae and glare."
+"2015-05-18_YB-Dq3",2015-05-18,2015-05-18,"YB","D","3","Myt","Mytilus_spp","Type 7",28,0.0875,320,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare and algae."
+"2015-05-18_YB-Dq4",2015-05-18,2015-05-18,"YB","D","4","Myt","Mytilus_spp","Type 7",155,0.0875,1771.42857142857,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2015-05-18_YB-Dq5",2015-05-18,2015-05-18,"YB","D","5","Myt","Mytilus_spp","Type 7",92,0.0875,1051.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae and glare."
+"2015-05-18_YB-Dq3",2015-05-18,2015-05-18,"YB","D","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare and algae."
+"2015-05-18_YB-Dq4",2015-05-18,2015-05-18,"YB","D","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2015-05-18_YB-Dq5",2015-05-18,2015-05-18,"YB","D","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae and glare."
+"2015-05-18_YB-Dq3",2015-05-18,2015-05-18,"YB","D","3","Mt","Mytilus_trossulus","Type 15",65,0.0875,742.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare and algae."
+"2015-05-18_YB-Dq4",2015-05-18,2015-05-18,"YB","D","4","Mt","Mytilus_trossulus","Type 15",79,0.0875,902.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2015-05-18_YB-Dq5",2015-05-18,2015-05-18,"YB","D","5","Mt","Mytilus_trossulus","Type 15",99,0.0875,1131.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae and glare."
+"2015-05-18_YB-Dq3",2015-05-18,2015-05-18,"YB","D","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare and algae."
+"2015-05-18_YB-Dq4",2015-05-18,2015-05-18,"YB","D","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2015-05-18_YB-Dq5",2015-05-18,2015-05-18,"YB","D","5","MtD","Mytilus_trossulus_(dead)","Type 16",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae and glare."
+"2015-05-18_YB-Dq3",2015-05-18,2015-05-18,"YB","D","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare and algae."
+"2015-05-18_YB-Dq4",2015-05-18,2015-05-18,"YB","D","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2015-05-18_YB-Dq5",2015-05-18,2015-05-18,"YB","D","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae and glare."
+"2015-05-18_YB-Dq3",2015-05-18,2015-05-18,"YB","D","3","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare and algae."
+"2015-05-18_YB-Dq4",2015-05-18,2015-05-18,"YB","D","4","Nc","Nucella_canaliculata","Type 10",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2015-05-18_YB-Dq5",2015-05-18,2015-05-18,"YB","D","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae and glare."
+"2015-05-18_YB-Dq3",2015-05-18,2015-05-18,"YB","D","3","Negg","Nucella_eggs","Type 26",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare and algae."
+"2015-05-18_YB-Dq4",2015-05-18,2015-05-18,"YB","D","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2015-05-18_YB-Dq5",2015-05-18,2015-05-18,"YB","D","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae and glare."
+"2015-05-18_YB-Dq3",2015-05-18,2015-05-18,"YB","D","3","No","Nucella_ostrina","Type 9",14,0.0875,160,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare and algae."
+"2015-05-18_YB-Dq4",2015-05-18,2015-05-18,"YB","D","4","No","Nucella_ostrina","Type 9",14,0.0875,160,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2015-05-18_YB-Dq5",2015-05-18,2015-05-18,"YB","D","5","No","Nucella_ostrina","Type 9",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae and glare."
+"2015-05-18_YB-Dq3",2015-05-18,2015-05-18,"YB","D","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare and algae."
+"2015-05-18_YB-Dq4",2015-05-18,2015-05-18,"YB","D","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2015-05-18_YB-Dq5",2015-05-18,2015-05-18,"YB","D","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae and glare."
+"2015-05-18_YB-Dq3",2015-05-18,2015-05-18,"YB","D","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare and algae."
+"2015-05-18_YB-Dq4",2015-05-18,2015-05-18,"YB","D","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2015-05-18_YB-Dq5",2015-05-18,2015-05-18,"YB","D","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae and glare."
+"2015-05-18_YB-Dq3",2015-05-18,2015-05-18,"YB","D","3","Pp","Pollicipes_polymerus","Type 11",9,0.0875,102.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare and algae."
+"2015-05-18_YB-Dq4",2015-05-18,2015-05-18,"YB","D","4","Pp","Pollicipes_polymerus","Type 11",7,0.0875,80,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2015-05-18_YB-Dq5",2015-05-18,2015-05-18,"YB","D","5","Pp","Pollicipes_polymerus","Type 11",13,0.0875,148.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae and glare."
+"2015-05-18_YB-Dq3",2015-05-18,2015-05-18,"YB","D","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare and algae."
+"2015-05-18_YB-Dq4",2015-05-18,2015-05-18,"YB","D","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2015-05-18_YB-Dq5",2015-05-18,2015-05-18,"YB","D","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae and glare."
+"2015-05-18_YB-Dq3",2015-05-18,2015-05-18,"YB","D","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare and algae."
+"2015-05-18_YB-Dq4",2015-05-18,2015-05-18,"YB","D","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2015-05-18_YB-Dq5",2015-05-18,2015-05-18,"YB","D","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae and glare."
+"2015-05-18_YB-Dq3",2015-05-18,2015-05-18,"YB","D","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare and algae."
+"2015-05-18_YB-Dq4",2015-05-18,2015-05-18,"YB","D","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur and glare"
+"2015-05-18_YB-Dq5",2015-05-18,2015-05-18,"YB","D","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae and glare."
+"2015-05-18_YB-Eq3",2015-05-18,2015-05-18,"YB","E","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts likely low due to blur"
+"2015-05-18_YB-Eq4",2015-05-18,2015-05-18,"YB","E","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur"
+"2015-05-18_YB-Eq8",2015-05-18,2015-05-18,"YB","E","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur"
+"2015-05-18_YB-Eq3",2015-05-18,2015-05-18,"YB","E","3","Ae","Anemones","Type 14",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts likely low due to blur"
+"2015-05-18_YB-Eq4",2015-05-18,2015-05-18,"YB","E","4","Ae","Anemones","Type 14",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur"
+"2015-05-18_YB-Eq8",2015-05-18,2015-05-18,"YB","E","8","Ae","Anemones","Type 14",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur"
+"2015-05-18_YB-Eq3",2015-05-18,2015-05-18,"YB","E","3","Bg","Balanus_glandula","Type 1",90,0.0875,1028.57142857143,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts likely low due to blur"
+"2015-05-18_YB-Eq4",2015-05-18,2015-05-18,"YB","E","4","Bg","Balanus_glandula","Type 1",32,0.0875,365.714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur"
+"2015-05-18_YB-Eq8",2015-05-18,2015-05-18,"YB","E","8","Bg","Balanus_glandula","Type 1",50,0.0875,571.428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur"
+"2015-05-18_YB-Eq3",2015-05-18,2015-05-18,"YB","E","3","BgD","Balanus_glandula_(dead)","Type 2",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts likely low due to blur"
+"2015-05-18_YB-Eq4",2015-05-18,2015-05-18,"YB","E","4","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur"
+"2015-05-18_YB-Eq8",2015-05-18,2015-05-18,"YB","E","8","BgD","Balanus_glandula_(dead)","Type 2",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur"
+"2015-05-18_YB-Eq3",2015-05-18,2015-05-18,"YB","E","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts likely low due to blur"
+"2015-05-18_YB-Eq4",2015-05-18,2015-05-18,"YB","E","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur"
+"2015-05-18_YB-Eq8",2015-05-18,2015-05-18,"YB","E","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur"
+"2015-05-18_YB-Eq3",2015-05-18,2015-05-18,"YB","E","3","Cth","Chthamalus_dalli","Type 3",39,0.0875,445.714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts likely low due to blur"
+"2015-05-18_YB-Eq4",2015-05-18,2015-05-18,"YB","E","4","Cth","Chthamalus_dalli","Type 3",13,0.0875,148.571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur"
+"2015-05-18_YB-Eq8",2015-05-18,2015-05-18,"YB","E","8","Cth","Chthamalus_dalli","Type 3",10,0.0875,114.285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur"
+"2015-05-18_YB-Eq3",2015-05-18,2015-05-18,"YB","E","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts likely low due to blur"
+"2015-05-18_YB-Eq4",2015-05-18,2015-05-18,"YB","E","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur"
+"2015-05-18_YB-Eq8",2015-05-18,2015-05-18,"YB","E","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur"
+"2015-05-18_YB-Eq3",2015-05-18,2015-05-18,"YB","E","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts likely low due to blur"
+"2015-05-18_YB-Eq4",2015-05-18,2015-05-18,"YB","E","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur"
+"2015-05-18_YB-Eq8",2015-05-18,2015-05-18,"YB","E","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur"
+"2015-05-18_YB-Eq3",2015-05-18,2015-05-18,"YB","E","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts likely low due to blur"
+"2015-05-18_YB-Eq4",2015-05-18,2015-05-18,"YB","E","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur"
+"2015-05-18_YB-Eq8",2015-05-18,2015-05-18,"YB","E","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur"
+"2015-05-18_YB-Eq3",2015-05-18,2015-05-18,"YB","E","3","Lim","Limpets","Type 12",102,0.0875,1165.71428571429,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts likely low due to blur"
+"2015-05-18_YB-Eq4",2015-05-18,2015-05-18,"YB","E","4","Lim","Limpets","Type 12",135,0.0875,1542.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur"
+"2015-05-18_YB-Eq8",2015-05-18,2015-05-18,"YB","E","8","Lim","Limpets","Type 12",70,0.0875,800,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur"
+"2015-05-18_YB-Eq3",2015-05-18,2015-05-18,"YB","E","3","Ls","Littorina_sitkana","Type 13",170,0.0875,1942.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts likely low due to blur"
+"2015-05-18_YB-Eq4",2015-05-18,2015-05-18,"YB","E","4","Ls","Littorina_sitkana","Type 13",142,0.0875,1622.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur"
+"2015-05-18_YB-Eq8",2015-05-18,2015-05-18,"YB","E","8","Ls","Littorina_sitkana","Type 13",70,0.0875,800,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur"
+"2015-05-18_YB-Eq3",2015-05-18,2015-05-18,"YB","E","3","Mc","Mytilus_californianus","Type 17",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts likely low due to blur"
+"2015-05-18_YB-Eq4",2015-05-18,2015-05-18,"YB","E","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur"
+"2015-05-18_YB-Eq8",2015-05-18,2015-05-18,"YB","E","8","Mc","Mytilus_californianus","Type 17",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur"
+"2015-05-18_YB-Eq3",2015-05-18,2015-05-18,"YB","E","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts likely low due to blur"
+"2015-05-18_YB-Eq4",2015-05-18,2015-05-18,"YB","E","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur"
+"2015-05-18_YB-Eq8",2015-05-18,2015-05-18,"YB","E","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur"
+"2015-05-18_YB-Eq3",2015-05-18,2015-05-18,"YB","E","3","Myt","Mytilus_spp","Type 7",9,0.0875,102.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts likely low due to blur"
+"2015-05-18_YB-Eq4",2015-05-18,2015-05-18,"YB","E","4","Myt","Mytilus_spp","Type 7",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur"
+"2015-05-18_YB-Eq8",2015-05-18,2015-05-18,"YB","E","8","Myt","Mytilus_spp","Type 7",12,0.0875,137.142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur"
+"2015-05-18_YB-Eq3",2015-05-18,2015-05-18,"YB","E","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts likely low due to blur"
+"2015-05-18_YB-Eq4",2015-05-18,2015-05-18,"YB","E","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur"
+"2015-05-18_YB-Eq8",2015-05-18,2015-05-18,"YB","E","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur"
+"2015-05-18_YB-Eq3",2015-05-18,2015-05-18,"YB","E","3","Mt","Mytilus_trossulus","Type 15",5,0.0875,57.1428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts likely low due to blur"
+"2015-05-18_YB-Eq4",2015-05-18,2015-05-18,"YB","E","4","Mt","Mytilus_trossulus","Type 15",5,0.0875,57.1428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur"
+"2015-05-18_YB-Eq8",2015-05-18,2015-05-18,"YB","E","8","Mt","Mytilus_trossulus","Type 15",5,0.0875,57.1428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur"
+"2015-05-18_YB-Eq3",2015-05-18,2015-05-18,"YB","E","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts likely low due to blur"
+"2015-05-18_YB-Eq4",2015-05-18,2015-05-18,"YB","E","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur"
+"2015-05-18_YB-Eq8",2015-05-18,2015-05-18,"YB","E","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur"
+"2015-05-18_YB-Eq3",2015-05-18,2015-05-18,"YB","E","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts likely low due to blur"
+"2015-05-18_YB-Eq4",2015-05-18,2015-05-18,"YB","E","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur"
+"2015-05-18_YB-Eq8",2015-05-18,2015-05-18,"YB","E","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur"
+"2015-05-18_YB-Eq3",2015-05-18,2015-05-18,"YB","E","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts likely low due to blur"
+"2015-05-18_YB-Eq4",2015-05-18,2015-05-18,"YB","E","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur"
+"2015-05-18_YB-Eq8",2015-05-18,2015-05-18,"YB","E","8","Nc","Nucella_canaliculata","Type 10",4,0.0875,45.7142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur"
+"2015-05-18_YB-Eq3",2015-05-18,2015-05-18,"YB","E","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts likely low due to blur"
+"2015-05-18_YB-Eq4",2015-05-18,2015-05-18,"YB","E","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur"
+"2015-05-18_YB-Eq8",2015-05-18,2015-05-18,"YB","E","8","Negg","Nucella_eggs","Type 26",15,0.0875,171.428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur"
+"2015-05-18_YB-Eq3",2015-05-18,2015-05-18,"YB","E","3","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts likely low due to blur"
+"2015-05-18_YB-Eq4",2015-05-18,2015-05-18,"YB","E","4","No","Nucella_ostrina","Type 9",10,0.0875,114.285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur"
+"2015-05-18_YB-Eq8",2015-05-18,2015-05-18,"YB","E","8","No","Nucella_ostrina","Type 9",24,0.0875,274.285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur"
+"2015-05-18_YB-Eq3",2015-05-18,2015-05-18,"YB","E","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts likely low due to blur"
+"2015-05-18_YB-Eq4",2015-05-18,2015-05-18,"YB","E","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur"
+"2015-05-18_YB-Eq8",2015-05-18,2015-05-18,"YB","E","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur"
+"2015-05-18_YB-Eq3",2015-05-18,2015-05-18,"YB","E","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts likely low due to blur"
+"2015-05-18_YB-Eq4",2015-05-18,2015-05-18,"YB","E","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur"
+"2015-05-18_YB-Eq8",2015-05-18,2015-05-18,"YB","E","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur"
+"2015-05-18_YB-Eq3",2015-05-18,2015-05-18,"YB","E","3","Pp","Pollicipes_polymerus","Type 11",416,0.0875,4754.28571428571,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts likely low due to blur"
+"2015-05-18_YB-Eq4",2015-05-18,2015-05-18,"YB","E","4","Pp","Pollicipes_polymerus","Type 11",490,0.0875,5600,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur"
+"2015-05-18_YB-Eq8",2015-05-18,2015-05-18,"YB","E","8","Pp","Pollicipes_polymerus","Type 11",805,0.0875,9200,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur"
+"2015-05-18_YB-Eq3",2015-05-18,2015-05-18,"YB","E","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts likely low due to blur"
+"2015-05-18_YB-Eq4",2015-05-18,2015-05-18,"YB","E","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur"
+"2015-05-18_YB-Eq8",2015-05-18,2015-05-18,"YB","E","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur"
+"2015-05-18_YB-Eq3",2015-05-18,2015-05-18,"YB","E","3","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts likely low due to blur"
+"2015-05-18_YB-Eq4",2015-05-18,2015-05-18,"YB","E","4","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur"
+"2015-05-18_YB-Eq8",2015-05-18,2015-05-18,"YB","E","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur"
+"2015-05-18_YB-Eq3",2015-05-18,2015-05-18,"YB","E","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts likely low due to blur"
+"2015-05-18_YB-Eq4",2015-05-18,2015-05-18,"YB","E","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur"
+"2015-05-18_YB-Eq8",2015-05-18,2015-05-18,"YB","E","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur"
+"2015-05-18_YB-Fq4",2015-05-18,2015-05-18,"YB","F","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-05-18_YB-Fq5",2015-05-18,2015-05-18,"YB","F","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare."
+"2015-05-18_YB-Fq6",2015-05-18,2015-05-18,"YB","F","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-05-18_YB-Fq4",2015-05-18,2015-05-18,"YB","F","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-05-18_YB-Fq5",2015-05-18,2015-05-18,"YB","F","5","Ae","Anemones","Type 14",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare."
+"2015-05-18_YB-Fq6",2015-05-18,2015-05-18,"YB","F","6","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-05-18_YB-Fq4",2015-05-18,2015-05-18,"YB","F","4","Bg","Balanus_glandula","Type 1",655,0.0875,7485.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-05-18_YB-Fq5",2015-05-18,2015-05-18,"YB","F","5","Bg","Balanus_glandula","Type 1",295,0.0875,3371.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare."
+"2015-05-18_YB-Fq6",2015-05-18,2015-05-18,"YB","F","6","Bg","Balanus_glandula","Type 1",465,0.0875,5314.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-05-18_YB-Fq4",2015-05-18,2015-05-18,"YB","F","4","BgD","Balanus_glandula_(dead)","Type 2",33,0.0875,377.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-05-18_YB-Fq5",2015-05-18,2015-05-18,"YB","F","5","BgD","Balanus_glandula_(dead)","Type 2",14,0.0875,160,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare."
+"2015-05-18_YB-Fq6",2015-05-18,2015-05-18,"YB","F","6","BgD","Balanus_glandula_(dead)","Type 2",55,0.0875,628.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-05-18_YB-Fq4",2015-05-18,2015-05-18,"YB","F","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-05-18_YB-Fq5",2015-05-18,2015-05-18,"YB","F","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare."
+"2015-05-18_YB-Fq6",2015-05-18,2015-05-18,"YB","F","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-05-18_YB-Fq4",2015-05-18,2015-05-18,"YB","F","4","Cth","Chthamalus_dalli","Type 3",171,0.0875,1954.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-05-18_YB-Fq5",2015-05-18,2015-05-18,"YB","F","5","Cth","Chthamalus_dalli","Type 3",49,0.0875,560,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare."
+"2015-05-18_YB-Fq6",2015-05-18,2015-05-18,"YB","F","6","Cth","Chthamalus_dalli","Type 3",78,0.0875,891.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-05-18_YB-Fq4",2015-05-18,2015-05-18,"YB","F","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-05-18_YB-Fq5",2015-05-18,2015-05-18,"YB","F","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare."
+"2015-05-18_YB-Fq6",2015-05-18,2015-05-18,"YB","F","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-05-18_YB-Fq4",2015-05-18,2015-05-18,"YB","F","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-05-18_YB-Fq5",2015-05-18,2015-05-18,"YB","F","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare."
+"2015-05-18_YB-Fq6",2015-05-18,2015-05-18,"YB","F","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-05-18_YB-Fq4",2015-05-18,2015-05-18,"YB","F","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-05-18_YB-Fq5",2015-05-18,2015-05-18,"YB","F","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare."
+"2015-05-18_YB-Fq6",2015-05-18,2015-05-18,"YB","F","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-05-18_YB-Fq4",2015-05-18,2015-05-18,"YB","F","4","Lim","Limpets","Type 12",312,0.0875,3565.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-05-18_YB-Fq5",2015-05-18,2015-05-18,"YB","F","5","Lim","Limpets","Type 12",295,0.0875,3371.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare."
+"2015-05-18_YB-Fq6",2015-05-18,2015-05-18,"YB","F","6","Lim","Limpets","Type 12",385,0.0875,4400,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-05-18_YB-Fq4",2015-05-18,2015-05-18,"YB","F","4","Ls","Littorina_sitkana","Type 13",119,0.0875,1360,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-05-18_YB-Fq5",2015-05-18,2015-05-18,"YB","F","5","Ls","Littorina_sitkana","Type 13",128,0.0875,1462.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare."
+"2015-05-18_YB-Fq6",2015-05-18,2015-05-18,"YB","F","6","Ls","Littorina_sitkana","Type 13",138,0.0875,1577.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-05-18_YB-Fq4",2015-05-18,2015-05-18,"YB","F","4","Mc","Mytilus_californianus","Type 17",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-05-18_YB-Fq5",2015-05-18,2015-05-18,"YB","F","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare."
+"2015-05-18_YB-Fq6",2015-05-18,2015-05-18,"YB","F","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-05-18_YB-Fq4",2015-05-18,2015-05-18,"YB","F","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-05-18_YB-Fq5",2015-05-18,2015-05-18,"YB","F","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare."
+"2015-05-18_YB-Fq6",2015-05-18,2015-05-18,"YB","F","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-05-18_YB-Fq4",2015-05-18,2015-05-18,"YB","F","4","Myt","Mytilus_spp","Type 7",49,0.0875,560,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-05-18_YB-Fq5",2015-05-18,2015-05-18,"YB","F","5","Myt","Mytilus_spp","Type 7",30,0.0875,342.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare."
+"2015-05-18_YB-Fq6",2015-05-18,2015-05-18,"YB","F","6","Myt","Mytilus_spp","Type 7",46,0.0875,525.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-05-18_YB-Fq4",2015-05-18,2015-05-18,"YB","F","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-05-18_YB-Fq5",2015-05-18,2015-05-18,"YB","F","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare."
+"2015-05-18_YB-Fq6",2015-05-18,2015-05-18,"YB","F","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-05-18_YB-Fq4",2015-05-18,2015-05-18,"YB","F","4","Mt","Mytilus_trossulus","Type 15",12,0.0875,137.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-05-18_YB-Fq5",2015-05-18,2015-05-18,"YB","F","5","Mt","Mytilus_trossulus","Type 15",81,0.0875,925.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare."
+"2015-05-18_YB-Fq6",2015-05-18,2015-05-18,"YB","F","6","Mt","Mytilus_trossulus","Type 15",69,0.0875,788.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-05-18_YB-Fq4",2015-05-18,2015-05-18,"YB","F","4","MtD","Mytilus_trossulus_(dead)","Type 16",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-05-18_YB-Fq5",2015-05-18,2015-05-18,"YB","F","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare."
+"2015-05-18_YB-Fq6",2015-05-18,2015-05-18,"YB","F","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-05-18_YB-Fq4",2015-05-18,2015-05-18,"YB","F","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-05-18_YB-Fq5",2015-05-18,2015-05-18,"YB","F","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare."
+"2015-05-18_YB-Fq6",2015-05-18,2015-05-18,"YB","F","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-05-18_YB-Fq4",2015-05-18,2015-05-18,"YB","F","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-05-18_YB-Fq5",2015-05-18,2015-05-18,"YB","F","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare."
+"2015-05-18_YB-Fq6",2015-05-18,2015-05-18,"YB","F","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-05-18_YB-Fq4",2015-05-18,2015-05-18,"YB","F","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-05-18_YB-Fq5",2015-05-18,2015-05-18,"YB","F","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare."
+"2015-05-18_YB-Fq6",2015-05-18,2015-05-18,"YB","F","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-05-18_YB-Fq4",2015-05-18,2015-05-18,"YB","F","4","No","Nucella_ostrina","Type 9",12,0.0875,137.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-05-18_YB-Fq5",2015-05-18,2015-05-18,"YB","F","5","No","Nucella_ostrina","Type 9",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare."
+"2015-05-18_YB-Fq6",2015-05-18,2015-05-18,"YB","F","6","No","Nucella_ostrina","Type 9",15,0.0875,171.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-05-18_YB-Fq4",2015-05-18,2015-05-18,"YB","F","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-05-18_YB-Fq5",2015-05-18,2015-05-18,"YB","F","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare."
+"2015-05-18_YB-Fq6",2015-05-18,2015-05-18,"YB","F","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-05-18_YB-Fq4",2015-05-18,2015-05-18,"YB","F","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-05-18_YB-Fq5",2015-05-18,2015-05-18,"YB","F","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare."
+"2015-05-18_YB-Fq6",2015-05-18,2015-05-18,"YB","F","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-05-18_YB-Fq4",2015-05-18,2015-05-18,"YB","F","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-05-18_YB-Fq5",2015-05-18,2015-05-18,"YB","F","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare."
+"2015-05-18_YB-Fq6",2015-05-18,2015-05-18,"YB","F","6","Pp","Pollicipes_polymerus","Type 11",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-05-18_YB-Fq4",2015-05-18,2015-05-18,"YB","F","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-05-18_YB-Fq5",2015-05-18,2015-05-18,"YB","F","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare."
+"2015-05-18_YB-Fq6",2015-05-18,2015-05-18,"YB","F","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-05-18_YB-Fq4",2015-05-18,2015-05-18,"YB","F","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-05-18_YB-Fq5",2015-05-18,2015-05-18,"YB","F","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare."
+"2015-05-18_YB-Fq6",2015-05-18,2015-05-18,"YB","F","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-05-18_YB-Fq4",2015-05-18,2015-05-18,"YB","F","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-05-18_YB-Fq5",2015-05-18,2015-05-18,"YB","F","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare."
+"2015-05-18_YB-Fq6",2015-05-18,2015-05-18,"YB","F","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-05-18_YB-Gq3",2015-05-18,2015-05-18,"YB","G","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae."
+"2015-05-18_YB-Gq5",2015-05-18,2015-05-18,"YB","G","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-05-18_YB-Gq8",2015-05-18,2015-05-18,"YB","G","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-05-18_YB-Gq3",2015-05-18,2015-05-18,"YB","G","3","Ae","Anemones","Type 14",106,0.0875,1211.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae."
+"2015-05-18_YB-Gq5",2015-05-18,2015-05-18,"YB","G","5","Ae","Anemones","Type 14",47,0.0875,537.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-05-18_YB-Gq8",2015-05-18,2015-05-18,"YB","G","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-05-18_YB-Gq3",2015-05-18,2015-05-18,"YB","G","3","Bg","Balanus_glandula","Type 1",558,0.0875,6377.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae."
+"2015-05-18_YB-Gq5",2015-05-18,2015-05-18,"YB","G","5","Bg","Balanus_glandula","Type 1",94,0.0875,1074.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-05-18_YB-Gq8",2015-05-18,2015-05-18,"YB","G","8","Bg","Balanus_glandula","Type 1",87,0.0875,994.285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-05-18_YB-Gq3",2015-05-18,2015-05-18,"YB","G","3","BgD","Balanus_glandula_(dead)","Type 2",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae."
+"2015-05-18_YB-Gq5",2015-05-18,2015-05-18,"YB","G","5","BgD","Balanus_glandula_(dead)","Type 2",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-05-18_YB-Gq8",2015-05-18,2015-05-18,"YB","G","8","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-05-18_YB-Gq3",2015-05-18,2015-05-18,"YB","G","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae."
+"2015-05-18_YB-Gq5",2015-05-18,2015-05-18,"YB","G","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-05-18_YB-Gq8",2015-05-18,2015-05-18,"YB","G","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-05-18_YB-Gq3",2015-05-18,2015-05-18,"YB","G","3","Cth","Chthamalus_dalli","Type 3",93,0.0875,1062.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae."
+"2015-05-18_YB-Gq5",2015-05-18,2015-05-18,"YB","G","5","Cth","Chthamalus_dalli","Type 3",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-05-18_YB-Gq8",2015-05-18,2015-05-18,"YB","G","8","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-05-18_YB-Gq3",2015-05-18,2015-05-18,"YB","G","3","CthD","Chthamalus_dalli (dead)","Type 4",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae."
+"2015-05-18_YB-Gq5",2015-05-18,2015-05-18,"YB","G","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-05-18_YB-Gq8",2015-05-18,2015-05-18,"YB","G","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-05-18_YB-Gq3",2015-05-18,2015-05-18,"YB","G","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae."
+"2015-05-18_YB-Gq5",2015-05-18,2015-05-18,"YB","G","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-05-18_YB-Gq8",2015-05-18,2015-05-18,"YB","G","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-05-18_YB-Gq3",2015-05-18,2015-05-18,"YB","G","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae."
+"2015-05-18_YB-Gq5",2015-05-18,2015-05-18,"YB","G","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-05-18_YB-Gq8",2015-05-18,2015-05-18,"YB","G","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-05-18_YB-Gq3",2015-05-18,2015-05-18,"YB","G","3","Lim","Limpets","Type 12",199,0.0875,2274.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae."
+"2015-05-18_YB-Gq5",2015-05-18,2015-05-18,"YB","G","5","Lim","Limpets","Type 12",191,0.0875,2182.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-05-18_YB-Gq8",2015-05-18,2015-05-18,"YB","G","8","Lim","Limpets","Type 12",49,0.0875,560,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-05-18_YB-Gq3",2015-05-18,2015-05-18,"YB","G","3","Ls","Littorina_sitkana","Type 13",475,0.0875,5428.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae."
+"2015-05-18_YB-Gq5",2015-05-18,2015-05-18,"YB","G","5","Ls","Littorina_sitkana","Type 13",50,0.0875,571.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-05-18_YB-Gq8",2015-05-18,2015-05-18,"YB","G","8","Ls","Littorina_sitkana","Type 13",53,0.0875,605.714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-05-18_YB-Gq3",2015-05-18,2015-05-18,"YB","G","3","Mc","Mytilus_californianus","Type 17",52,0.0875,594.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae."
+"2015-05-18_YB-Gq5",2015-05-18,2015-05-18,"YB","G","5","Mc","Mytilus_californianus","Type 17",29,0.0875,331.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-05-18_YB-Gq8",2015-05-18,2015-05-18,"YB","G","8","Mc","Mytilus_californianus","Type 17",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-05-18_YB-Gq3",2015-05-18,2015-05-18,"YB","G","3","McD","Mytilus_californianus_(dead)","Type 18",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae."
+"2015-05-18_YB-Gq5",2015-05-18,2015-05-18,"YB","G","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-05-18_YB-Gq8",2015-05-18,2015-05-18,"YB","G","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-05-18_YB-Gq3",2015-05-18,2015-05-18,"YB","G","3","Myt","Mytilus_spp","Type 7",41,0.0875,468.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae."
+"2015-05-18_YB-Gq5",2015-05-18,2015-05-18,"YB","G","5","Myt","Mytilus_spp","Type 7",10,0.0875,114.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-05-18_YB-Gq8",2015-05-18,2015-05-18,"YB","G","8","Myt","Mytilus_spp","Type 7",207,0.0875,2365.71428571429,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-05-18_YB-Gq3",2015-05-18,2015-05-18,"YB","G","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae."
+"2015-05-18_YB-Gq5",2015-05-18,2015-05-18,"YB","G","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-05-18_YB-Gq8",2015-05-18,2015-05-18,"YB","G","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-05-18_YB-Gq3",2015-05-18,2015-05-18,"YB","G","3","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae."
+"2015-05-18_YB-Gq5",2015-05-18,2015-05-18,"YB","G","5","Mt","Mytilus_trossulus","Type 15",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-05-18_YB-Gq8",2015-05-18,2015-05-18,"YB","G","8","Mt","Mytilus_trossulus","Type 15",37,0.0875,422.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-05-18_YB-Gq3",2015-05-18,2015-05-18,"YB","G","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae."
+"2015-05-18_YB-Gq5",2015-05-18,2015-05-18,"YB","G","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-05-18_YB-Gq8",2015-05-18,2015-05-18,"YB","G","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-05-18_YB-Gq3",2015-05-18,2015-05-18,"YB","G","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae."
+"2015-05-18_YB-Gq5",2015-05-18,2015-05-18,"YB","G","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-05-18_YB-Gq8",2015-05-18,2015-05-18,"YB","G","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-05-18_YB-Gq3",2015-05-18,2015-05-18,"YB","G","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae."
+"2015-05-18_YB-Gq5",2015-05-18,2015-05-18,"YB","G","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-05-18_YB-Gq8",2015-05-18,2015-05-18,"YB","G","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-05-18_YB-Gq3",2015-05-18,2015-05-18,"YB","G","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae."
+"2015-05-18_YB-Gq5",2015-05-18,2015-05-18,"YB","G","5","Negg","Nucella_eggs","Type 26",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-05-18_YB-Gq8",2015-05-18,2015-05-18,"YB","G","8","Negg","Nucella_eggs","Type 26",34,0.0875,388.571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-05-18_YB-Gq3",2015-05-18,2015-05-18,"YB","G","3","No","Nucella_ostrina","Type 9",24,0.0875,274.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae."
+"2015-05-18_YB-Gq5",2015-05-18,2015-05-18,"YB","G","5","No","Nucella_ostrina","Type 9",19,0.0875,217.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-05-18_YB-Gq8",2015-05-18,2015-05-18,"YB","G","8","No","Nucella_ostrina","Type 9",31,0.0875,354.285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-05-18_YB-Gq3",2015-05-18,2015-05-18,"YB","G","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae."
+"2015-05-18_YB-Gq5",2015-05-18,2015-05-18,"YB","G","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-05-18_YB-Gq8",2015-05-18,2015-05-18,"YB","G","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-05-18_YB-Gq3",2015-05-18,2015-05-18,"YB","G","3","Pis","Pisaster","Type 21",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae."
+"2015-05-18_YB-Gq5",2015-05-18,2015-05-18,"YB","G","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-05-18_YB-Gq8",2015-05-18,2015-05-18,"YB","G","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-05-18_YB-Gq3",2015-05-18,2015-05-18,"YB","G","3","Pp","Pollicipes_polymerus","Type 11",574,0.0875,6560,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae."
+"2015-05-18_YB-Gq5",2015-05-18,2015-05-18,"YB","G","5","Pp","Pollicipes_polymerus","Type 11",615,0.0875,7028.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-05-18_YB-Gq8",2015-05-18,2015-05-18,"YB","G","8","Pp","Pollicipes_polymerus","Type 11",693,0.0875,7920,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-05-18_YB-Gq3",2015-05-18,2015-05-18,"YB","G","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae."
+"2015-05-18_YB-Gq5",2015-05-18,2015-05-18,"YB","G","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-05-18_YB-Gq8",2015-05-18,2015-05-18,"YB","G","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-05-18_YB-Gq3",2015-05-18,2015-05-18,"YB","G","3","Sc","Semibalanus_cariosus","Type 5",20,0.0875,228.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae."
+"2015-05-18_YB-Gq5",2015-05-18,2015-05-18,"YB","G","5","Sc","Semibalanus_cariosus","Type 5",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-05-18_YB-Gq8",2015-05-18,2015-05-18,"YB","G","8","Sc","Semibalanus_cariosus","Type 5",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-05-18_YB-Gq3",2015-05-18,2015-05-18,"YB","G","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae."
+"2015-05-18_YB-Gq5",2015-05-18,2015-05-18,"YB","G","5","ScD","Semibalanus_cariosus_(dead)","Type 6",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-05-18_YB-Gq8",2015-05-18,2015-05-18,"YB","G","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%",""
+"2015-06-15_YB-Aq6",2015-06-15,2015-06-15,"YB","A","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","40%","Counts low due to algae cover"
+"2015-06-15_YB-Aq7",2015-06-15,2015-06-15,"YB","A","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae."
+"2015-06-15_YB-Aq9",2015-06-15,2015-06-15,"YB","A","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-06-15_YB-Aq6",2015-06-15,2015-06-15,"YB","A","6","Ae","Anemones","Type 14",5,0.0875,57.1428571428571,NA,"Celeste Moen","Finished","Full","Full","40%","Counts low due to algae cover"
+"2015-06-15_YB-Aq7",2015-06-15,2015-06-15,"YB","A","7","Ae","Anemones","Type 14",23,0.0875,262.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae."
+"2015-06-15_YB-Aq9",2015-06-15,2015-06-15,"YB","A","9","Ae","Anemones","Type 14",76,0.0875,868.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-06-15_YB-Aq6",2015-06-15,2015-06-15,"YB","A","6","Bg","Balanus_glandula","Type 1",82,0.0875,937.142857142857,NA,"Celeste Moen","Finished","Full","Full","40%","Counts low due to algae cover"
+"2015-06-15_YB-Aq7",2015-06-15,2015-06-15,"YB","A","7","Bg","Balanus_glandula","Type 1",113,0.0875,1291.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae."
+"2015-06-15_YB-Aq9",2015-06-15,2015-06-15,"YB","A","9","Bg","Balanus_glandula","Type 1",449,0.0875,5131.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-06-15_YB-Aq6",2015-06-15,2015-06-15,"YB","A","6","BgD","Balanus_glandula_(dead)","Type 2",11,0.0875,125.714285714286,NA,"Celeste Moen","Finished","Full","Full","40%","Counts low due to algae cover"
+"2015-06-15_YB-Aq7",2015-06-15,2015-06-15,"YB","A","7","BgD","Balanus_glandula_(dead)","Type 2",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae."
+"2015-06-15_YB-Aq9",2015-06-15,2015-06-15,"YB","A","9","BgD","Balanus_glandula_(dead)","Type 2",9,0.0875,102.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-06-15_YB-Aq6",2015-06-15,2015-06-15,"YB","A","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","40%","Counts low due to algae cover"
+"2015-06-15_YB-Aq7",2015-06-15,2015-06-15,"YB","A","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae."
+"2015-06-15_YB-Aq9",2015-06-15,2015-06-15,"YB","A","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-06-15_YB-Aq6",2015-06-15,2015-06-15,"YB","A","6","Cth","Chthamalus_dalli","Type 3",16,0.0875,182.857142857143,NA,"Celeste Moen","Finished","Full","Full","40%","Counts low due to algae cover"
+"2015-06-15_YB-Aq7",2015-06-15,2015-06-15,"YB","A","7","Cth","Chthamalus_dalli","Type 3",32,0.0875,365.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae."
+"2015-06-15_YB-Aq9",2015-06-15,2015-06-15,"YB","A","9","Cth","Chthamalus_dalli","Type 3",195,0.0875,2228.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-06-15_YB-Aq6",2015-06-15,2015-06-15,"YB","A","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","40%","Counts low due to algae cover"
+"2015-06-15_YB-Aq7",2015-06-15,2015-06-15,"YB","A","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae."
+"2015-06-15_YB-Aq9",2015-06-15,2015-06-15,"YB","A","9","CthD","Chthamalus_dalli (dead)","Type 4",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-06-15_YB-Aq6",2015-06-15,2015-06-15,"YB","A","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","40%","Counts low due to algae cover"
+"2015-06-15_YB-Aq7",2015-06-15,2015-06-15,"YB","A","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae."
+"2015-06-15_YB-Aq9",2015-06-15,2015-06-15,"YB","A","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-06-15_YB-Aq6",2015-06-15,2015-06-15,"YB","A","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","40%","Counts low due to algae cover"
+"2015-06-15_YB-Aq7",2015-06-15,2015-06-15,"YB","A","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae."
+"2015-06-15_YB-Aq9",2015-06-15,2015-06-15,"YB","A","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-06-15_YB-Aq6",2015-06-15,2015-06-15,"YB","A","6","Lim","Limpets","Type 12",195,0.0875,2228.57142857143,NA,"Celeste Moen","Finished","Full","Full","40%","Counts low due to algae cover"
+"2015-06-15_YB-Aq7",2015-06-15,2015-06-15,"YB","A","7","Lim","Limpets","Type 12",244,0.0875,2788.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae."
+"2015-06-15_YB-Aq9",2015-06-15,2015-06-15,"YB","A","9","Lim","Limpets","Type 12",596,0.0875,6811.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-06-15_YB-Aq6",2015-06-15,2015-06-15,"YB","A","6","Ls","Littorina_sitkana","Type 13",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","40%","Counts low due to algae cover"
+"2015-06-15_YB-Aq7",2015-06-15,2015-06-15,"YB","A","7","Ls","Littorina_sitkana","Type 13",99,0.0875,1131.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae."
+"2015-06-15_YB-Aq9",2015-06-15,2015-06-15,"YB","A","9","Ls","Littorina_sitkana","Type 13",68,0.0875,777.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-06-15_YB-Aq6",2015-06-15,2015-06-15,"YB","A","6","Mc","Mytilus_californianus","Type 17",1,0.0875,11.4285714285714,NA,"Celeste Moen","Finished","Full","Full","40%","Counts low due to algae cover"
+"2015-06-15_YB-Aq7",2015-06-15,2015-06-15,"YB","A","7","Mc","Mytilus_californianus","Type 17",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae."
+"2015-06-15_YB-Aq9",2015-06-15,2015-06-15,"YB","A","9","Mc","Mytilus_californianus","Type 17",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-06-15_YB-Aq6",2015-06-15,2015-06-15,"YB","A","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","40%","Counts low due to algae cover"
+"2015-06-15_YB-Aq7",2015-06-15,2015-06-15,"YB","A","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae."
+"2015-06-15_YB-Aq9",2015-06-15,2015-06-15,"YB","A","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-06-15_YB-Aq6",2015-06-15,2015-06-15,"YB","A","6","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","40%","Counts low due to algae cover"
+"2015-06-15_YB-Aq7",2015-06-15,2015-06-15,"YB","A","7","Myt","Mytilus_spp","Type 7",12,0.0875,137.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae."
+"2015-06-15_YB-Aq9",2015-06-15,2015-06-15,"YB","A","9","Myt","Mytilus_spp","Type 7",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-06-15_YB-Aq6",2015-06-15,2015-06-15,"YB","A","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","40%","Counts low due to algae cover"
+"2015-06-15_YB-Aq7",2015-06-15,2015-06-15,"YB","A","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae."
+"2015-06-15_YB-Aq9",2015-06-15,2015-06-15,"YB","A","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-06-15_YB-Aq6",2015-06-15,2015-06-15,"YB","A","6","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","40%","Counts low due to algae cover"
+"2015-06-15_YB-Aq7",2015-06-15,2015-06-15,"YB","A","7","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae."
+"2015-06-15_YB-Aq9",2015-06-15,2015-06-15,"YB","A","9","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-06-15_YB-Aq6",2015-06-15,2015-06-15,"YB","A","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","40%","Counts low due to algae cover"
+"2015-06-15_YB-Aq7",2015-06-15,2015-06-15,"YB","A","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae."
+"2015-06-15_YB-Aq9",2015-06-15,2015-06-15,"YB","A","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-06-15_YB-Aq6",2015-06-15,2015-06-15,"YB","A","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","40%","Counts low due to algae cover"
+"2015-06-15_YB-Aq7",2015-06-15,2015-06-15,"YB","A","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae."
+"2015-06-15_YB-Aq9",2015-06-15,2015-06-15,"YB","A","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-06-15_YB-Aq6",2015-06-15,2015-06-15,"YB","A","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","40%","Counts low due to algae cover"
+"2015-06-15_YB-Aq7",2015-06-15,2015-06-15,"YB","A","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae."
+"2015-06-15_YB-Aq9",2015-06-15,2015-06-15,"YB","A","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-06-15_YB-Aq6",2015-06-15,2015-06-15,"YB","A","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","40%","Counts low due to algae cover"
+"2015-06-15_YB-Aq7",2015-06-15,2015-06-15,"YB","A","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae."
+"2015-06-15_YB-Aq9",2015-06-15,2015-06-15,"YB","A","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-06-15_YB-Aq6",2015-06-15,2015-06-15,"YB","A","6","No","Nucella_ostrina","Type 9",9,0.0875,102.857142857143,NA,"Celeste Moen","Finished","Full","Full","40%","Counts low due to algae cover"
+"2015-06-15_YB-Aq7",2015-06-15,2015-06-15,"YB","A","7","No","Nucella_ostrina","Type 9",10,0.0875,114.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae."
+"2015-06-15_YB-Aq9",2015-06-15,2015-06-15,"YB","A","9","No","Nucella_ostrina","Type 9",17,0.0875,194.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-06-15_YB-Aq6",2015-06-15,2015-06-15,"YB","A","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","40%","Counts low due to algae cover"
+"2015-06-15_YB-Aq7",2015-06-15,2015-06-15,"YB","A","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae."
+"2015-06-15_YB-Aq9",2015-06-15,2015-06-15,"YB","A","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-06-15_YB-Aq6",2015-06-15,2015-06-15,"YB","A","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","40%","Counts low due to algae cover"
+"2015-06-15_YB-Aq7",2015-06-15,2015-06-15,"YB","A","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae."
+"2015-06-15_YB-Aq9",2015-06-15,2015-06-15,"YB","A","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-06-15_YB-Aq6",2015-06-15,2015-06-15,"YB","A","6","Pp","Pollicipes_polymerus","Type 11",242,0.0875,2765.71428571429,NA,"Celeste Moen","Finished","Full","Full","40%","Counts low due to algae cover"
+"2015-06-15_YB-Aq7",2015-06-15,2015-06-15,"YB","A","7","Pp","Pollicipes_polymerus","Type 11",326,0.0875,3725.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae."
+"2015-06-15_YB-Aq9",2015-06-15,2015-06-15,"YB","A","9","Pp","Pollicipes_polymerus","Type 11",661,0.0875,7554.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-06-15_YB-Aq6",2015-06-15,2015-06-15,"YB","A","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","40%","Counts low due to algae cover"
+"2015-06-15_YB-Aq7",2015-06-15,2015-06-15,"YB","A","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae."
+"2015-06-15_YB-Aq9",2015-06-15,2015-06-15,"YB","A","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-06-15_YB-Aq6",2015-06-15,2015-06-15,"YB","A","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","40%","Counts low due to algae cover"
+"2015-06-15_YB-Aq7",2015-06-15,2015-06-15,"YB","A","7","Sc","Semibalanus_cariosus","Type 5",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae."
+"2015-06-15_YB-Aq9",2015-06-15,2015-06-15,"YB","A","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-06-15_YB-Aq6",2015-06-15,2015-06-15,"YB","A","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","40%","Counts low due to algae cover"
+"2015-06-15_YB-Aq7",2015-06-15,2015-06-15,"YB","A","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae."
+"2015-06-15_YB-Aq9",2015-06-15,2015-06-15,"YB","A","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-06-15_YB-ABq1",2015-06-15,2015-06-15,"YB","AB","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ABq2",2015-06-15,2015-06-15,"YB","AB","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to glare."
+"2015-06-15_YB-ABq4",2015-06-15,2015-06-15,"YB","AB","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to algae and glare."
+"2015-06-15_YB-ABq1",2015-06-15,2015-06-15,"YB","AB","1","Ae","Anemones","Type 14",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ABq2",2015-06-15,2015-06-15,"YB","AB","2","Ae","Anemones","Type 14",11,0.0875,125.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to glare."
+"2015-06-15_YB-ABq4",2015-06-15,2015-06-15,"YB","AB","4","Ae","Anemones","Type 14",17,0.0875,194.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to algae and glare."
+"2015-06-15_YB-ABq1",2015-06-15,2015-06-15,"YB","AB","1","Bg","Balanus_glandula","Type 1",33,0.0875,377.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ABq2",2015-06-15,2015-06-15,"YB","AB","2","Bg","Balanus_glandula","Type 1",35,0.0875,400,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to glare."
+"2015-06-15_YB-ABq4",2015-06-15,2015-06-15,"YB","AB","4","Bg","Balanus_glandula","Type 1",69,0.0875,788.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to algae and glare."
+"2015-06-15_YB-ABq1",2015-06-15,2015-06-15,"YB","AB","1","BgD","Balanus_glandula_(dead)","Type 2",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ABq2",2015-06-15,2015-06-15,"YB","AB","2","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to glare."
+"2015-06-15_YB-ABq4",2015-06-15,2015-06-15,"YB","AB","4","BgD","Balanus_glandula_(dead)","Type 2",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to algae and glare."
+"2015-06-15_YB-ABq1",2015-06-15,2015-06-15,"YB","AB","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ABq2",2015-06-15,2015-06-15,"YB","AB","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to glare."
+"2015-06-15_YB-ABq4",2015-06-15,2015-06-15,"YB","AB","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to algae and glare."
+"2015-06-15_YB-ABq1",2015-06-15,2015-06-15,"YB","AB","1","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ABq2",2015-06-15,2015-06-15,"YB","AB","2","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to glare."
+"2015-06-15_YB-ABq4",2015-06-15,2015-06-15,"YB","AB","4","Cth","Chthamalus_dalli","Type 3",16,0.0875,182.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to algae and glare."
+"2015-06-15_YB-ABq1",2015-06-15,2015-06-15,"YB","AB","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ABq2",2015-06-15,2015-06-15,"YB","AB","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to glare."
+"2015-06-15_YB-ABq4",2015-06-15,2015-06-15,"YB","AB","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to algae and glare."
+"2015-06-15_YB-ABq1",2015-06-15,2015-06-15,"YB","AB","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ABq2",2015-06-15,2015-06-15,"YB","AB","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to glare."
+"2015-06-15_YB-ABq4",2015-06-15,2015-06-15,"YB","AB","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to algae and glare."
+"2015-06-15_YB-ABq1",2015-06-15,2015-06-15,"YB","AB","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ABq2",2015-06-15,2015-06-15,"YB","AB","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to glare."
+"2015-06-15_YB-ABq4",2015-06-15,2015-06-15,"YB","AB","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to algae and glare."
+"2015-06-15_YB-ABq1",2015-06-15,2015-06-15,"YB","AB","1","Lim","Limpets","Type 12",54,0.0875,617.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ABq2",2015-06-15,2015-06-15,"YB","AB","2","Lim","Limpets","Type 12",143,0.0875,1634.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to glare."
+"2015-06-15_YB-ABq4",2015-06-15,2015-06-15,"YB","AB","4","Lim","Limpets","Type 12",185,0.0875,2114.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to algae and glare."
+"2015-06-15_YB-ABq1",2015-06-15,2015-06-15,"YB","AB","1","Ls","Littorina_sitkana","Type 13",162,0.0875,1851.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ABq2",2015-06-15,2015-06-15,"YB","AB","2","Ls","Littorina_sitkana","Type 13",155,0.0875,1771.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to glare."
+"2015-06-15_YB-ABq4",2015-06-15,2015-06-15,"YB","AB","4","Ls","Littorina_sitkana","Type 13",161,0.0875,1840,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to algae and glare."
+"2015-06-15_YB-ABq1",2015-06-15,2015-06-15,"YB","AB","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ABq2",2015-06-15,2015-06-15,"YB","AB","2","Mc","Mytilus_californianus","Type 17",10,0.0875,114.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to glare."
+"2015-06-15_YB-ABq4",2015-06-15,2015-06-15,"YB","AB","4","Mc","Mytilus_californianus","Type 17",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to algae and glare."
+"2015-06-15_YB-ABq1",2015-06-15,2015-06-15,"YB","AB","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ABq2",2015-06-15,2015-06-15,"YB","AB","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to glare."
+"2015-06-15_YB-ABq4",2015-06-15,2015-06-15,"YB","AB","4","McD","Mytilus_californianus_(dead)","Type 18",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to algae and glare."
+"2015-06-15_YB-ABq1",2015-06-15,2015-06-15,"YB","AB","1","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ABq2",2015-06-15,2015-06-15,"YB","AB","2","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to glare."
+"2015-06-15_YB-ABq4",2015-06-15,2015-06-15,"YB","AB","4","Myt","Mytilus_spp","Type 7",12,0.0875,137.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to algae and glare."
+"2015-06-15_YB-ABq1",2015-06-15,2015-06-15,"YB","AB","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ABq2",2015-06-15,2015-06-15,"YB","AB","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to glare."
+"2015-06-15_YB-ABq4",2015-06-15,2015-06-15,"YB","AB","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to algae and glare."
+"2015-06-15_YB-ABq1",2015-06-15,2015-06-15,"YB","AB","1","Mt","Mytilus_trossulus","Type 15",28,0.0875,320,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ABq2",2015-06-15,2015-06-15,"YB","AB","2","Mt","Mytilus_trossulus","Type 15",107,0.0875,1222.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to glare."
+"2015-06-15_YB-ABq4",2015-06-15,2015-06-15,"YB","AB","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to algae and glare."
+"2015-06-15_YB-ABq1",2015-06-15,2015-06-15,"YB","AB","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ABq2",2015-06-15,2015-06-15,"YB","AB","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to glare."
+"2015-06-15_YB-ABq4",2015-06-15,2015-06-15,"YB","AB","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to algae and glare."
+"2015-06-15_YB-ABq1",2015-06-15,2015-06-15,"YB","AB","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ABq2",2015-06-15,2015-06-15,"YB","AB","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to glare."
+"2015-06-15_YB-ABq4",2015-06-15,2015-06-15,"YB","AB","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to algae and glare."
+"2015-06-15_YB-ABq1",2015-06-15,2015-06-15,"YB","AB","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ABq2",2015-06-15,2015-06-15,"YB","AB","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to glare."
+"2015-06-15_YB-ABq4",2015-06-15,2015-06-15,"YB","AB","4","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to algae and glare."
+"2015-06-15_YB-ABq1",2015-06-15,2015-06-15,"YB","AB","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ABq2",2015-06-15,2015-06-15,"YB","AB","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to glare."
+"2015-06-15_YB-ABq4",2015-06-15,2015-06-15,"YB","AB","4","Negg","Nucella_eggs","Type 26",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to algae and glare."
+"2015-06-15_YB-ABq1",2015-06-15,2015-06-15,"YB","AB","1","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ABq2",2015-06-15,2015-06-15,"YB","AB","2","No","Nucella_ostrina","Type 9",18,0.0875,205.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to glare."
+"2015-06-15_YB-ABq4",2015-06-15,2015-06-15,"YB","AB","4","No","Nucella_ostrina","Type 9",19,0.0875,217.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to algae and glare."
+"2015-06-15_YB-ABq1",2015-06-15,2015-06-15,"YB","AB","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ABq2",2015-06-15,2015-06-15,"YB","AB","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to glare."
+"2015-06-15_YB-ABq4",2015-06-15,2015-06-15,"YB","AB","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to algae and glare."
+"2015-06-15_YB-ABq1",2015-06-15,2015-06-15,"YB","AB","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ABq2",2015-06-15,2015-06-15,"YB","AB","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to glare."
+"2015-06-15_YB-ABq4",2015-06-15,2015-06-15,"YB","AB","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to algae and glare."
+"2015-06-15_YB-ABq1",2015-06-15,2015-06-15,"YB","AB","1","Pp","Pollicipes_polymerus","Type 11",815,0.0875,9314.28571428572,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ABq2",2015-06-15,2015-06-15,"YB","AB","2","Pp","Pollicipes_polymerus","Type 11",620,0.0875,7085.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to glare."
+"2015-06-15_YB-ABq4",2015-06-15,2015-06-15,"YB","AB","4","Pp","Pollicipes_polymerus","Type 11",547,0.0875,6251.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to algae and glare."
+"2015-06-15_YB-ABq1",2015-06-15,2015-06-15,"YB","AB","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ABq2",2015-06-15,2015-06-15,"YB","AB","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to glare."
+"2015-06-15_YB-ABq4",2015-06-15,2015-06-15,"YB","AB","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to algae and glare."
+"2015-06-15_YB-ABq1",2015-06-15,2015-06-15,"YB","AB","1","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ABq2",2015-06-15,2015-06-15,"YB","AB","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to glare."
+"2015-06-15_YB-ABq4",2015-06-15,2015-06-15,"YB","AB","4","Sc","Semibalanus_cariosus","Type 5",9,0.0875,102.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to algae and glare."
+"2015-06-15_YB-ABq1",2015-06-15,2015-06-15,"YB","AB","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ABq2",2015-06-15,2015-06-15,"YB","AB","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to glare."
+"2015-06-15_YB-ABq4",2015-06-15,2015-06-15,"YB","AB","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to algae and glare."
+"2015-06-15_YB-ACq4",2015-06-15,2015-06-15,"YB","AC","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ACq7",2015-06-15,2015-06-15,"YB","AC","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-06-15_YB-ACq8",2015-06-15,2015-06-15,"YB","AC","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-06-15_YB-ACq4",2015-06-15,2015-06-15,"YB","AC","4","Ae","Anemones","Type 14",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ACq7",2015-06-15,2015-06-15,"YB","AC","7","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-06-15_YB-ACq8",2015-06-15,2015-06-15,"YB","AC","8","Ae","Anemones","Type 14",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-06-15_YB-ACq4",2015-06-15,2015-06-15,"YB","AC","4","Bg","Balanus_glandula","Type 1",638,0.0875,7291.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ACq7",2015-06-15,2015-06-15,"YB","AC","7","Bg","Balanus_glandula","Type 1",376,0.0875,4297.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-06-15_YB-ACq8",2015-06-15,2015-06-15,"YB","AC","8","Bg","Balanus_glandula","Type 1",40,0.0875,457.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-06-15_YB-ACq4",2015-06-15,2015-06-15,"YB","AC","4","BgD","Balanus_glandula_(dead)","Type 2",15,0.0875,171.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ACq7",2015-06-15,2015-06-15,"YB","AC","7","BgD","Balanus_glandula_(dead)","Type 2",36,0.0875,411.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-06-15_YB-ACq8",2015-06-15,2015-06-15,"YB","AC","8","BgD","Balanus_glandula_(dead)","Type 2",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-06-15_YB-ACq4",2015-06-15,2015-06-15,"YB","AC","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ACq7",2015-06-15,2015-06-15,"YB","AC","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-06-15_YB-ACq8",2015-06-15,2015-06-15,"YB","AC","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-06-15_YB-ACq4",2015-06-15,2015-06-15,"YB","AC","4","Cth","Chthamalus_dalli","Type 3",22,0.0875,251.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ACq7",2015-06-15,2015-06-15,"YB","AC","7","Cth","Chthamalus_dalli","Type 3",17,0.0875,194.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-06-15_YB-ACq8",2015-06-15,2015-06-15,"YB","AC","8","Cth","Chthamalus_dalli","Type 3",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-06-15_YB-ACq4",2015-06-15,2015-06-15,"YB","AC","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ACq7",2015-06-15,2015-06-15,"YB","AC","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-06-15_YB-ACq8",2015-06-15,2015-06-15,"YB","AC","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-06-15_YB-ACq4",2015-06-15,2015-06-15,"YB","AC","4","Emp","Emplectonema worm","Type 23",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ACq7",2015-06-15,2015-06-15,"YB","AC","7","Emp","Emplectonema worm","Type 23",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-06-15_YB-ACq8",2015-06-15,2015-06-15,"YB","AC","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-06-15_YB-ACq4",2015-06-15,2015-06-15,"YB","AC","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ACq7",2015-06-15,2015-06-15,"YB","AC","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-06-15_YB-ACq8",2015-06-15,2015-06-15,"YB","AC","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-06-15_YB-ACq4",2015-06-15,2015-06-15,"YB","AC","4","Lim","Limpets","Type 12",346,0.0875,3954.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ACq7",2015-06-15,2015-06-15,"YB","AC","7","Lim","Limpets","Type 12",239,0.0875,2731.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-06-15_YB-ACq8",2015-06-15,2015-06-15,"YB","AC","8","Lim","Limpets","Type 12",111,0.0875,1268.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-06-15_YB-ACq4",2015-06-15,2015-06-15,"YB","AC","4","Ls","Littorina_sitkana","Type 13",833,0.0875,9520,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ACq7",2015-06-15,2015-06-15,"YB","AC","7","Ls","Littorina_sitkana","Type 13",766,0.0875,8754.28571428572,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-06-15_YB-ACq8",2015-06-15,2015-06-15,"YB","AC","8","Ls","Littorina_sitkana","Type 13",547,0.0875,6251.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-06-15_YB-ACq4",2015-06-15,2015-06-15,"YB","AC","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ACq7",2015-06-15,2015-06-15,"YB","AC","7","Mc","Mytilus_californianus","Type 17",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-06-15_YB-ACq8",2015-06-15,2015-06-15,"YB","AC","8","Mc","Mytilus_californianus","Type 17",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-06-15_YB-ACq4",2015-06-15,2015-06-15,"YB","AC","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ACq7",2015-06-15,2015-06-15,"YB","AC","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-06-15_YB-ACq8",2015-06-15,2015-06-15,"YB","AC","8","McD","Mytilus_californianus_(dead)","Type 18",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-06-15_YB-ACq4",2015-06-15,2015-06-15,"YB","AC","4","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ACq7",2015-06-15,2015-06-15,"YB","AC","7","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-06-15_YB-ACq8",2015-06-15,2015-06-15,"YB","AC","8","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-06-15_YB-ACq4",2015-06-15,2015-06-15,"YB","AC","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ACq7",2015-06-15,2015-06-15,"YB","AC","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-06-15_YB-ACq8",2015-06-15,2015-06-15,"YB","AC","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-06-15_YB-ACq4",2015-06-15,2015-06-15,"YB","AC","4","Mt","Mytilus_trossulus","Type 15",194,0.0875,2217.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ACq7",2015-06-15,2015-06-15,"YB","AC","7","Mt","Mytilus_trossulus","Type 15",111,0.0875,1268.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-06-15_YB-ACq8",2015-06-15,2015-06-15,"YB","AC","8","Mt","Mytilus_trossulus","Type 15",28,0.0875,320,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-06-15_YB-ACq4",2015-06-15,2015-06-15,"YB","AC","4","MtD","Mytilus_trossulus_(dead)","Type 16",10,0.0875,114.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ACq7",2015-06-15,2015-06-15,"YB","AC","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-06-15_YB-ACq8",2015-06-15,2015-06-15,"YB","AC","8","MtD","Mytilus_trossulus_(dead)","Type 16",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-06-15_YB-ACq4",2015-06-15,2015-06-15,"YB","AC","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ACq7",2015-06-15,2015-06-15,"YB","AC","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-06-15_YB-ACq8",2015-06-15,2015-06-15,"YB","AC","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-06-15_YB-ACq4",2015-06-15,2015-06-15,"YB","AC","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ACq7",2015-06-15,2015-06-15,"YB","AC","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-06-15_YB-ACq8",2015-06-15,2015-06-15,"YB","AC","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-06-15_YB-ACq4",2015-06-15,2015-06-15,"YB","AC","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ACq7",2015-06-15,2015-06-15,"YB","AC","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-06-15_YB-ACq8",2015-06-15,2015-06-15,"YB","AC","8","Negg","Nucella_eggs","Type 26",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-06-15_YB-ACq4",2015-06-15,2015-06-15,"YB","AC","4","No","Nucella_ostrina","Type 9",19,0.0875,217.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ACq7",2015-06-15,2015-06-15,"YB","AC","7","No","Nucella_ostrina","Type 9",48,0.0875,548.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-06-15_YB-ACq8",2015-06-15,2015-06-15,"YB","AC","8","No","Nucella_ostrina","Type 9",21,0.0875,240,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-06-15_YB-ACq4",2015-06-15,2015-06-15,"YB","AC","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ACq7",2015-06-15,2015-06-15,"YB","AC","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-06-15_YB-ACq8",2015-06-15,2015-06-15,"YB","AC","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-06-15_YB-ACq4",2015-06-15,2015-06-15,"YB","AC","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ACq7",2015-06-15,2015-06-15,"YB","AC","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-06-15_YB-ACq8",2015-06-15,2015-06-15,"YB","AC","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-06-15_YB-ACq4",2015-06-15,2015-06-15,"YB","AC","4","Pp","Pollicipes_polymerus","Type 11",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ACq7",2015-06-15,2015-06-15,"YB","AC","7","Pp","Pollicipes_polymerus","Type 11",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-06-15_YB-ACq8",2015-06-15,2015-06-15,"YB","AC","8","Pp","Pollicipes_polymerus","Type 11",77,0.0875,880,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-06-15_YB-ACq4",2015-06-15,2015-06-15,"YB","AC","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ACq7",2015-06-15,2015-06-15,"YB","AC","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-06-15_YB-ACq8",2015-06-15,2015-06-15,"YB","AC","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-06-15_YB-ACq4",2015-06-15,2015-06-15,"YB","AC","4","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ACq7",2015-06-15,2015-06-15,"YB","AC","7","Sc","Semibalanus_cariosus","Type 5",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-06-15_YB-ACq8",2015-06-15,2015-06-15,"YB","AC","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-06-15_YB-ACq4",2015-06-15,2015-06-15,"YB","AC","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ACq7",2015-06-15,2015-06-15,"YB","AC","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-06-15_YB-ACq8",2015-06-15,2015-06-15,"YB","AC","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-06-15_YB-ADq1",2015-06-15,2015-06-15,"YB","AD","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","85%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ADq5",2015-06-15,2015-06-15,"YB","AD","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ADq8",2015-06-15,2015-06-15,"YB","AD","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to glare and sand cover. ~30% sand cover."
+"2015-06-15_YB-ADq1",2015-06-15,2015-06-15,"YB","AD","1","Ae","Anemones","Type 14",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","85%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ADq5",2015-06-15,2015-06-15,"YB","AD","5","Ae","Anemones","Type 14",20,0.0875,228.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ADq8",2015-06-15,2015-06-15,"YB","AD","8","Ae","Anemones","Type 14",43,0.0875,491.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to glare and sand cover. ~30% sand cover."
+"2015-06-15_YB-ADq1",2015-06-15,2015-06-15,"YB","AD","1","Bg","Balanus_glandula","Type 1",84,0.0875,960,NA,"Beatriz Vaca","Finished","Full","Full","85%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ADq5",2015-06-15,2015-06-15,"YB","AD","5","Bg","Balanus_glandula","Type 1",65,0.0875,742.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ADq8",2015-06-15,2015-06-15,"YB","AD","8","Bg","Balanus_glandula","Type 1",217,0.0875,2480,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to glare and sand cover. ~30% sand cover."
+"2015-06-15_YB-ADq1",2015-06-15,2015-06-15,"YB","AD","1","BgD","Balanus_glandula_(dead)","Type 2",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","85%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ADq5",2015-06-15,2015-06-15,"YB","AD","5","BgD","Balanus_glandula_(dead)","Type 2",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ADq8",2015-06-15,2015-06-15,"YB","AD","8","BgD","Balanus_glandula_(dead)","Type 2",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to glare and sand cover. ~30% sand cover."
+"2015-06-15_YB-ADq1",2015-06-15,2015-06-15,"YB","AD","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","85%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ADq5",2015-06-15,2015-06-15,"YB","AD","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ADq8",2015-06-15,2015-06-15,"YB","AD","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to glare and sand cover. ~30% sand cover."
+"2015-06-15_YB-ADq1",2015-06-15,2015-06-15,"YB","AD","1","Cth","Chthamalus_dalli","Type 3",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","85%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ADq5",2015-06-15,2015-06-15,"YB","AD","5","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ADq8",2015-06-15,2015-06-15,"YB","AD","8","Cth","Chthamalus_dalli","Type 3",17,0.0875,194.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to glare and sand cover. ~30% sand cover."
+"2015-06-15_YB-ADq1",2015-06-15,2015-06-15,"YB","AD","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","85%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ADq5",2015-06-15,2015-06-15,"YB","AD","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ADq8",2015-06-15,2015-06-15,"YB","AD","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to glare and sand cover. ~30% sand cover."
+"2015-06-15_YB-ADq1",2015-06-15,2015-06-15,"YB","AD","1","Emp","Emplectonema worm","Type 23",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","85%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ADq5",2015-06-15,2015-06-15,"YB","AD","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ADq8",2015-06-15,2015-06-15,"YB","AD","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to glare and sand cover. ~30% sand cover."
+"2015-06-15_YB-ADq1",2015-06-15,2015-06-15,"YB","AD","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","85%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ADq5",2015-06-15,2015-06-15,"YB","AD","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ADq8",2015-06-15,2015-06-15,"YB","AD","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to glare and sand cover. ~30% sand cover."
+"2015-06-15_YB-ADq1",2015-06-15,2015-06-15,"YB","AD","1","Lim","Limpets","Type 12",100,0.0875,1142.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","85%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ADq5",2015-06-15,2015-06-15,"YB","AD","5","Lim","Limpets","Type 12",91,0.0875,1040,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ADq8",2015-06-15,2015-06-15,"YB","AD","8","Lim","Limpets","Type 12",212,0.0875,2422.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to glare and sand cover. ~30% sand cover."
+"2015-06-15_YB-ADq1",2015-06-15,2015-06-15,"YB","AD","1","Ls","Littorina_sitkana","Type 13",55,0.0875,628.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","85%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ADq5",2015-06-15,2015-06-15,"YB","AD","5","Ls","Littorina_sitkana","Type 13",103,0.0875,1177.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ADq8",2015-06-15,2015-06-15,"YB","AD","8","Ls","Littorina_sitkana","Type 13",119,0.0875,1360,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to glare and sand cover. ~30% sand cover."
+"2015-06-15_YB-ADq1",2015-06-15,2015-06-15,"YB","AD","1","Mc","Mytilus_californianus","Type 17",12,0.0875,137.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","85%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ADq5",2015-06-15,2015-06-15,"YB","AD","5","Mc","Mytilus_californianus","Type 17",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ADq8",2015-06-15,2015-06-15,"YB","AD","8","Mc","Mytilus_californianus","Type 17",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to glare and sand cover. ~30% sand cover."
+"2015-06-15_YB-ADq1",2015-06-15,2015-06-15,"YB","AD","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","85%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ADq5",2015-06-15,2015-06-15,"YB","AD","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ADq8",2015-06-15,2015-06-15,"YB","AD","8","McD","Mytilus_californianus_(dead)","Type 18",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to glare and sand cover. ~30% sand cover."
+"2015-06-15_YB-ADq1",2015-06-15,2015-06-15,"YB","AD","1","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","85%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ADq5",2015-06-15,2015-06-15,"YB","AD","5","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ADq8",2015-06-15,2015-06-15,"YB","AD","8","Myt","Mytilus_spp","Type 7",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to glare and sand cover. ~30% sand cover."
+"2015-06-15_YB-ADq1",2015-06-15,2015-06-15,"YB","AD","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","85%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ADq5",2015-06-15,2015-06-15,"YB","AD","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ADq8",2015-06-15,2015-06-15,"YB","AD","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to glare and sand cover. ~30% sand cover."
+"2015-06-15_YB-ADq1",2015-06-15,2015-06-15,"YB","AD","1","Mt","Mytilus_trossulus","Type 15",26,0.0875,297.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","85%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ADq5",2015-06-15,2015-06-15,"YB","AD","5","Mt","Mytilus_trossulus","Type 15",41,0.0875,468.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ADq8",2015-06-15,2015-06-15,"YB","AD","8","Mt","Mytilus_trossulus","Type 15",36,0.0875,411.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to glare and sand cover. ~30% sand cover."
+"2015-06-15_YB-ADq1",2015-06-15,2015-06-15,"YB","AD","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","85%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ADq5",2015-06-15,2015-06-15,"YB","AD","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ADq8",2015-06-15,2015-06-15,"YB","AD","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to glare and sand cover. ~30% sand cover."
+"2015-06-15_YB-ADq1",2015-06-15,2015-06-15,"YB","AD","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","85%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ADq5",2015-06-15,2015-06-15,"YB","AD","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ADq8",2015-06-15,2015-06-15,"YB","AD","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to glare and sand cover. ~30% sand cover."
+"2015-06-15_YB-ADq1",2015-06-15,2015-06-15,"YB","AD","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","85%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ADq5",2015-06-15,2015-06-15,"YB","AD","5","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ADq8",2015-06-15,2015-06-15,"YB","AD","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to glare and sand cover. ~30% sand cover."
+"2015-06-15_YB-ADq1",2015-06-15,2015-06-15,"YB","AD","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","85%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ADq5",2015-06-15,2015-06-15,"YB","AD","5","Negg","Nucella_eggs","Type 26",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ADq8",2015-06-15,2015-06-15,"YB","AD","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to glare and sand cover. ~30% sand cover."
+"2015-06-15_YB-ADq1",2015-06-15,2015-06-15,"YB","AD","1","No","Nucella_ostrina","Type 9",19,0.0875,217.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","85%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ADq5",2015-06-15,2015-06-15,"YB","AD","5","No","Nucella_ostrina","Type 9",27,0.0875,308.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ADq8",2015-06-15,2015-06-15,"YB","AD","8","No","Nucella_ostrina","Type 9",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to glare and sand cover. ~30% sand cover."
+"2015-06-15_YB-ADq1",2015-06-15,2015-06-15,"YB","AD","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","85%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ADq5",2015-06-15,2015-06-15,"YB","AD","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ADq8",2015-06-15,2015-06-15,"YB","AD","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to glare and sand cover. ~30% sand cover."
+"2015-06-15_YB-ADq1",2015-06-15,2015-06-15,"YB","AD","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","85%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ADq5",2015-06-15,2015-06-15,"YB","AD","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ADq8",2015-06-15,2015-06-15,"YB","AD","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to glare and sand cover. ~30% sand cover."
+"2015-06-15_YB-ADq1",2015-06-15,2015-06-15,"YB","AD","1","Pp","Pollicipes_polymerus","Type 11",420,0.0875,4800,NA,"Beatriz Vaca","Finished","Full","Full","85%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ADq5",2015-06-15,2015-06-15,"YB","AD","5","Pp","Pollicipes_polymerus","Type 11",719,0.0875,8217.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ADq8",2015-06-15,2015-06-15,"YB","AD","8","Pp","Pollicipes_polymerus","Type 11",176,0.0875,2011.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to glare and sand cover. ~30% sand cover."
+"2015-06-15_YB-ADq1",2015-06-15,2015-06-15,"YB","AD","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","85%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ADq5",2015-06-15,2015-06-15,"YB","AD","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ADq8",2015-06-15,2015-06-15,"YB","AD","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to glare and sand cover. ~30% sand cover."
+"2015-06-15_YB-ADq1",2015-06-15,2015-06-15,"YB","AD","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","85%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ADq5",2015-06-15,2015-06-15,"YB","AD","5","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ADq8",2015-06-15,2015-06-15,"YB","AD","8","Sc","Semibalanus_cariosus","Type 5",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to glare and sand cover. ~30% sand cover."
+"2015-06-15_YB-ADq1",2015-06-15,2015-06-15,"YB","AD","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","85%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ADq5",2015-06-15,2015-06-15,"YB","AD","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-ADq8",2015-06-15,2015-06-15,"YB","AD","8","ScD","Semibalanus_cariosus_(dead)","Type 6",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to glare and sand cover. ~30% sand cover."
+"2015-06-15_YB-AEq1",2015-06-15,2015-06-15,"YB","AE","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-AEq4",2015-06-15,2015-06-15,"YB","AE","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae and glare."
+"2015-06-15_YB-AEq8",2015-06-15,2015-06-15,"YB","AE","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae and glare."
+"2015-06-15_YB-AEq1",2015-06-15,2015-06-15,"YB","AE","1","Ae","Anemones","Type 14",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-AEq4",2015-06-15,2015-06-15,"YB","AE","4","Ae","Anemones","Type 14",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae and glare."
+"2015-06-15_YB-AEq8",2015-06-15,2015-06-15,"YB","AE","8","Ae","Anemones","Type 14",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae and glare."
+"2015-06-15_YB-AEq1",2015-06-15,2015-06-15,"YB","AE","1","Bg","Balanus_glandula","Type 1",94,0.0875,1074.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-AEq4",2015-06-15,2015-06-15,"YB","AE","4","Bg","Balanus_glandula","Type 1",122,0.0875,1394.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae and glare."
+"2015-06-15_YB-AEq8",2015-06-15,2015-06-15,"YB","AE","8","Bg","Balanus_glandula","Type 1",68,0.0875,777.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae and glare."
+"2015-06-15_YB-AEq1",2015-06-15,2015-06-15,"YB","AE","1","BgD","Balanus_glandula_(dead)","Type 2",12,0.0875,137.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-AEq4",2015-06-15,2015-06-15,"YB","AE","4","BgD","Balanus_glandula_(dead)","Type 2",26,0.0875,297.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae and glare."
+"2015-06-15_YB-AEq8",2015-06-15,2015-06-15,"YB","AE","8","BgD","Balanus_glandula_(dead)","Type 2",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae and glare."
+"2015-06-15_YB-AEq1",2015-06-15,2015-06-15,"YB","AE","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-AEq4",2015-06-15,2015-06-15,"YB","AE","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae and glare."
+"2015-06-15_YB-AEq8",2015-06-15,2015-06-15,"YB","AE","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae and glare."
+"2015-06-15_YB-AEq1",2015-06-15,2015-06-15,"YB","AE","1","Cth","Chthamalus_dalli","Type 3",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-AEq4",2015-06-15,2015-06-15,"YB","AE","4","Cth","Chthamalus_dalli","Type 3",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae and glare."
+"2015-06-15_YB-AEq8",2015-06-15,2015-06-15,"YB","AE","8","Cth","Chthamalus_dalli","Type 3",11,0.0875,125.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae and glare."
+"2015-06-15_YB-AEq1",2015-06-15,2015-06-15,"YB","AE","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-AEq4",2015-06-15,2015-06-15,"YB","AE","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae and glare."
+"2015-06-15_YB-AEq8",2015-06-15,2015-06-15,"YB","AE","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae and glare."
+"2015-06-15_YB-AEq1",2015-06-15,2015-06-15,"YB","AE","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-AEq4",2015-06-15,2015-06-15,"YB","AE","4","Emp","Emplectonema worm","Type 23",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae and glare."
+"2015-06-15_YB-AEq8",2015-06-15,2015-06-15,"YB","AE","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae and glare."
+"2015-06-15_YB-AEq1",2015-06-15,2015-06-15,"YB","AE","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-AEq4",2015-06-15,2015-06-15,"YB","AE","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae and glare."
+"2015-06-15_YB-AEq8",2015-06-15,2015-06-15,"YB","AE","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae and glare."
+"2015-06-15_YB-AEq1",2015-06-15,2015-06-15,"YB","AE","1","Lim","Limpets","Type 12",161,0.0875,1840,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-AEq4",2015-06-15,2015-06-15,"YB","AE","4","Lim","Limpets","Type 12",279,0.0875,3188.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae and glare."
+"2015-06-15_YB-AEq8",2015-06-15,2015-06-15,"YB","AE","8","Lim","Limpets","Type 12",196,0.0875,2240,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae and glare."
+"2015-06-15_YB-AEq1",2015-06-15,2015-06-15,"YB","AE","1","Ls","Littorina_sitkana","Type 13",78,0.0875,891.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-AEq4",2015-06-15,2015-06-15,"YB","AE","4","Ls","Littorina_sitkana","Type 13",122,0.0875,1394.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae and glare."
+"2015-06-15_YB-AEq8",2015-06-15,2015-06-15,"YB","AE","8","Ls","Littorina_sitkana","Type 13",192,0.0875,2194.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae and glare."
+"2015-06-15_YB-AEq1",2015-06-15,2015-06-15,"YB","AE","1","Mc","Mytilus_californianus","Type 17",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-AEq4",2015-06-15,2015-06-15,"YB","AE","4","Mc","Mytilus_californianus","Type 17",11,0.0875,125.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae and glare."
+"2015-06-15_YB-AEq8",2015-06-15,2015-06-15,"YB","AE","8","Mc","Mytilus_californianus","Type 17",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae and glare."
+"2015-06-15_YB-AEq1",2015-06-15,2015-06-15,"YB","AE","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-AEq4",2015-06-15,2015-06-15,"YB","AE","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae and glare."
+"2015-06-15_YB-AEq8",2015-06-15,2015-06-15,"YB","AE","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae and glare."
+"2015-06-15_YB-AEq1",2015-06-15,2015-06-15,"YB","AE","1","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-AEq4",2015-06-15,2015-06-15,"YB","AE","4","Myt","Mytilus_spp","Type 7",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae and glare."
+"2015-06-15_YB-AEq8",2015-06-15,2015-06-15,"YB","AE","8","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae and glare."
+"2015-06-15_YB-AEq1",2015-06-15,2015-06-15,"YB","AE","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-AEq4",2015-06-15,2015-06-15,"YB","AE","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae and glare."
+"2015-06-15_YB-AEq8",2015-06-15,2015-06-15,"YB","AE","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae and glare."
+"2015-06-15_YB-AEq1",2015-06-15,2015-06-15,"YB","AE","1","Mt","Mytilus_trossulus","Type 15",23,0.0875,262.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-AEq4",2015-06-15,2015-06-15,"YB","AE","4","Mt","Mytilus_trossulus","Type 15",43,0.0875,491.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae and glare."
+"2015-06-15_YB-AEq8",2015-06-15,2015-06-15,"YB","AE","8","Mt","Mytilus_trossulus","Type 15",120,0.0875,1371.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae and glare."
+"2015-06-15_YB-AEq1",2015-06-15,2015-06-15,"YB","AE","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-AEq4",2015-06-15,2015-06-15,"YB","AE","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae and glare."
+"2015-06-15_YB-AEq8",2015-06-15,2015-06-15,"YB","AE","8","MtD","Mytilus_trossulus_(dead)","Type 16",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae and glare."
+"2015-06-15_YB-AEq1",2015-06-15,2015-06-15,"YB","AE","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-AEq4",2015-06-15,2015-06-15,"YB","AE","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae and glare."
+"2015-06-15_YB-AEq8",2015-06-15,2015-06-15,"YB","AE","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae and glare."
+"2015-06-15_YB-AEq1",2015-06-15,2015-06-15,"YB","AE","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-AEq4",2015-06-15,2015-06-15,"YB","AE","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae and glare."
+"2015-06-15_YB-AEq8",2015-06-15,2015-06-15,"YB","AE","8","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae and glare."
+"2015-06-15_YB-AEq1",2015-06-15,2015-06-15,"YB","AE","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-AEq4",2015-06-15,2015-06-15,"YB","AE","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae and glare."
+"2015-06-15_YB-AEq8",2015-06-15,2015-06-15,"YB","AE","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae and glare."
+"2015-06-15_YB-AEq1",2015-06-15,2015-06-15,"YB","AE","1","No","Nucella_ostrina","Type 9",15,0.0875,171.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-AEq4",2015-06-15,2015-06-15,"YB","AE","4","No","Nucella_ostrina","Type 9",25,0.0875,285.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae and glare."
+"2015-06-15_YB-AEq8",2015-06-15,2015-06-15,"YB","AE","8","No","Nucella_ostrina","Type 9",20,0.0875,228.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae and glare."
+"2015-06-15_YB-AEq1",2015-06-15,2015-06-15,"YB","AE","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-AEq4",2015-06-15,2015-06-15,"YB","AE","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae and glare."
+"2015-06-15_YB-AEq8",2015-06-15,2015-06-15,"YB","AE","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae and glare."
+"2015-06-15_YB-AEq1",2015-06-15,2015-06-15,"YB","AE","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-AEq4",2015-06-15,2015-06-15,"YB","AE","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae and glare."
+"2015-06-15_YB-AEq8",2015-06-15,2015-06-15,"YB","AE","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae and glare."
+"2015-06-15_YB-AEq1",2015-06-15,2015-06-15,"YB","AE","1","Pp","Pollicipes_polymerus","Type 11",78,0.0875,891.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-AEq4",2015-06-15,2015-06-15,"YB","AE","4","Pp","Pollicipes_polymerus","Type 11",54,0.0875,617.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae and glare."
+"2015-06-15_YB-AEq8",2015-06-15,2015-06-15,"YB","AE","8","Pp","Pollicipes_polymerus","Type 11",29,0.0875,331.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae and glare."
+"2015-06-15_YB-AEq1",2015-06-15,2015-06-15,"YB","AE","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-AEq4",2015-06-15,2015-06-15,"YB","AE","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae and glare."
+"2015-06-15_YB-AEq8",2015-06-15,2015-06-15,"YB","AE","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae and glare."
+"2015-06-15_YB-AEq1",2015-06-15,2015-06-15,"YB","AE","1","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-AEq4",2015-06-15,2015-06-15,"YB","AE","4","Sc","Semibalanus_cariosus","Type 5",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae and glare."
+"2015-06-15_YB-AEq8",2015-06-15,2015-06-15,"YB","AE","8","Sc","Semibalanus_cariosus","Type 5",9,0.0875,102.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae and glare."
+"2015-06-15_YB-AEq1",2015-06-15,2015-06-15,"YB","AE","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae cover and glare."
+"2015-06-15_YB-AEq4",2015-06-15,2015-06-15,"YB","AE","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae and glare."
+"2015-06-15_YB-AEq8",2015-06-15,2015-06-15,"YB","AE","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae and glare."
+"2015-06-15_YB-AFq5",2015-06-15,2015-06-15,"YB","AF","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%",""
+"2015-06-15_YB-AFq8",2015-06-15,2015-06-15,"YB","AF","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","20%","Counts may be low due to blur"
+"2015-06-15_YB-AFq9",2015-06-15,2015-06-15,"YB","AF","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches and blur"
+"2015-06-15_YB-AFq5",2015-06-15,2015-06-15,"YB","AF","5","Ae","Anemones","Type 14",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","30%",""
+"2015-06-15_YB-AFq8",2015-06-15,2015-06-15,"YB","AF","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","20%","Counts may be low due to blur"
+"2015-06-15_YB-AFq9",2015-06-15,2015-06-15,"YB","AF","9","Ae","Anemones","Type 14",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches and blur"
+"2015-06-15_YB-AFq5",2015-06-15,2015-06-15,"YB","AF","5","Bg","Balanus_glandula","Type 1",385,0.0875,4400,NA,"Beatriz Vaca","Finished","Full","Full","30%",""
+"2015-06-15_YB-AFq8",2015-06-15,2015-06-15,"YB","AF","8","Bg","Balanus_glandula","Type 1",660,0.0875,7542.85714285714,NA,"Celeste Moen","Finished","Full","Full","20%","Counts may be low due to blur"
+"2015-06-15_YB-AFq9",2015-06-15,2015-06-15,"YB","AF","9","Bg","Balanus_glandula","Type 1",1113,0.0875,12720,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches and blur"
+"2015-06-15_YB-AFq5",2015-06-15,2015-06-15,"YB","AF","5","BgD","Balanus_glandula_(dead)","Type 2",17,0.0875,194.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","30%",""
+"2015-06-15_YB-AFq8",2015-06-15,2015-06-15,"YB","AF","8","BgD","Balanus_glandula_(dead)","Type 2",55,0.0875,628.571428571429,NA,"Celeste Moen","Finished","Full","Full","20%","Counts may be low due to blur"
+"2015-06-15_YB-AFq9",2015-06-15,2015-06-15,"YB","AF","9","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches and blur"
+"2015-06-15_YB-AFq5",2015-06-15,2015-06-15,"YB","AF","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%",""
+"2015-06-15_YB-AFq8",2015-06-15,2015-06-15,"YB","AF","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","20%","Counts may be low due to blur"
+"2015-06-15_YB-AFq9",2015-06-15,2015-06-15,"YB","AF","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches and blur"
+"2015-06-15_YB-AFq5",2015-06-15,2015-06-15,"YB","AF","5","Cth","Chthamalus_dalli","Type 3",101,0.0875,1154.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","30%",""
+"2015-06-15_YB-AFq8",2015-06-15,2015-06-15,"YB","AF","8","Cth","Chthamalus_dalli","Type 3",156,0.0875,1782.85714285714,NA,"Celeste Moen","Finished","Full","Full","20%","Counts may be low due to blur"
+"2015-06-15_YB-AFq9",2015-06-15,2015-06-15,"YB","AF","9","Cth","Chthamalus_dalli","Type 3",15,0.0875,171.428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches and blur"
+"2015-06-15_YB-AFq5",2015-06-15,2015-06-15,"YB","AF","5","CthD","Chthamalus_dalli (dead)","Type 4",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Full","30%",""
+"2015-06-15_YB-AFq8",2015-06-15,2015-06-15,"YB","AF","8","CthD","Chthamalus_dalli (dead)","Type 4",27,0.0875,308.571428571429,NA,"Celeste Moen","Finished","Full","Full","20%","Counts may be low due to blur"
+"2015-06-15_YB-AFq9",2015-06-15,2015-06-15,"YB","AF","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches and blur"
+"2015-06-15_YB-AFq5",2015-06-15,2015-06-15,"YB","AF","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%",""
+"2015-06-15_YB-AFq8",2015-06-15,2015-06-15,"YB","AF","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","20%","Counts may be low due to blur"
+"2015-06-15_YB-AFq9",2015-06-15,2015-06-15,"YB","AF","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches and blur"
+"2015-06-15_YB-AFq5",2015-06-15,2015-06-15,"YB","AF","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%",""
+"2015-06-15_YB-AFq8",2015-06-15,2015-06-15,"YB","AF","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","20%","Counts may be low due to blur"
+"2015-06-15_YB-AFq9",2015-06-15,2015-06-15,"YB","AF","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches and blur"
+"2015-06-15_YB-AFq5",2015-06-15,2015-06-15,"YB","AF","5","Lim","Limpets","Type 12",306,0.0875,3497.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","30%",""
+"2015-06-15_YB-AFq8",2015-06-15,2015-06-15,"YB","AF","8","Lim","Limpets","Type 12",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","20%","Counts may be low due to blur"
+"2015-06-15_YB-AFq9",2015-06-15,2015-06-15,"YB","AF","9","Lim","Limpets","Type 12",187,0.0875,2137.14285714286,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches and blur"
+"2015-06-15_YB-AFq5",2015-06-15,2015-06-15,"YB","AF","5","Ls","Littorina_sitkana","Type 13",455,0.0875,5200,NA,"Beatriz Vaca","Finished","Full","Full","30%",""
+"2015-06-15_YB-AFq8",2015-06-15,2015-06-15,"YB","AF","8","Ls","Littorina_sitkana","Type 13",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","20%","Counts may be low due to blur"
+"2015-06-15_YB-AFq9",2015-06-15,2015-06-15,"YB","AF","9","Ls","Littorina_sitkana","Type 13",543,0.0875,6205.71428571429,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches and blur"
+"2015-06-15_YB-AFq5",2015-06-15,2015-06-15,"YB","AF","5","Mc","Mytilus_californianus","Type 17",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","30%",""
+"2015-06-15_YB-AFq8",2015-06-15,2015-06-15,"YB","AF","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","20%","Counts may be low due to blur"
+"2015-06-15_YB-AFq9",2015-06-15,2015-06-15,"YB","AF","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches and blur"
+"2015-06-15_YB-AFq5",2015-06-15,2015-06-15,"YB","AF","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%",""
+"2015-06-15_YB-AFq8",2015-06-15,2015-06-15,"YB","AF","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","20%","Counts may be low due to blur"
+"2015-06-15_YB-AFq9",2015-06-15,2015-06-15,"YB","AF","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches and blur"
+"2015-06-15_YB-AFq5",2015-06-15,2015-06-15,"YB","AF","5","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%",""
+"2015-06-15_YB-AFq8",2015-06-15,2015-06-15,"YB","AF","8","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","20%","Counts may be low due to blur"
+"2015-06-15_YB-AFq9",2015-06-15,2015-06-15,"YB","AF","9","Myt","Mytilus_spp","Type 7",16,0.0875,182.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches and blur"
+"2015-06-15_YB-AFq5",2015-06-15,2015-06-15,"YB","AF","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%",""
+"2015-06-15_YB-AFq8",2015-06-15,2015-06-15,"YB","AF","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","20%","Counts may be low due to blur"
+"2015-06-15_YB-AFq9",2015-06-15,2015-06-15,"YB","AF","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches and blur"
+"2015-06-15_YB-AFq5",2015-06-15,2015-06-15,"YB","AF","5","Mt","Mytilus_trossulus","Type 15",63,0.0875,720,NA,"Beatriz Vaca","Finished","Full","Full","30%",""
+"2015-06-15_YB-AFq8",2015-06-15,2015-06-15,"YB","AF","8","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","20%","Counts may be low due to blur"
+"2015-06-15_YB-AFq9",2015-06-15,2015-06-15,"YB","AF","9","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches and blur"
+"2015-06-15_YB-AFq5",2015-06-15,2015-06-15,"YB","AF","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%",""
+"2015-06-15_YB-AFq8",2015-06-15,2015-06-15,"YB","AF","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","20%","Counts may be low due to blur"
+"2015-06-15_YB-AFq9",2015-06-15,2015-06-15,"YB","AF","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches and blur"
+"2015-06-15_YB-AFq5",2015-06-15,2015-06-15,"YB","AF","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%",""
+"2015-06-15_YB-AFq8",2015-06-15,2015-06-15,"YB","AF","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","20%","Counts may be low due to blur"
+"2015-06-15_YB-AFq9",2015-06-15,2015-06-15,"YB","AF","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches and blur"
+"2015-06-15_YB-AFq5",2015-06-15,2015-06-15,"YB","AF","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%",""
+"2015-06-15_YB-AFq8",2015-06-15,2015-06-15,"YB","AF","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","20%","Counts may be low due to blur"
+"2015-06-15_YB-AFq9",2015-06-15,2015-06-15,"YB","AF","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches and blur"
+"2015-06-15_YB-AFq5",2015-06-15,2015-06-15,"YB","AF","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%",""
+"2015-06-15_YB-AFq8",2015-06-15,2015-06-15,"YB","AF","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","20%","Counts may be low due to blur"
+"2015-06-15_YB-AFq9",2015-06-15,2015-06-15,"YB","AF","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches and blur"
+"2015-06-15_YB-AFq5",2015-06-15,2015-06-15,"YB","AF","5","No","Nucella_ostrina","Type 9",23,0.0875,262.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","30%",""
+"2015-06-15_YB-AFq8",2015-06-15,2015-06-15,"YB","AF","8","No","Nucella_ostrina","Type 9",3,0.0875,34.2857142857143,NA,"Celeste Moen","Finished","Full","Full","20%","Counts may be low due to blur"
+"2015-06-15_YB-AFq9",2015-06-15,2015-06-15,"YB","AF","9","No","Nucella_ostrina","Type 9",9,0.0875,102.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches and blur"
+"2015-06-15_YB-AFq5",2015-06-15,2015-06-15,"YB","AF","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%",""
+"2015-06-15_YB-AFq8",2015-06-15,2015-06-15,"YB","AF","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","20%","Counts may be low due to blur"
+"2015-06-15_YB-AFq9",2015-06-15,2015-06-15,"YB","AF","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches and blur"
+"2015-06-15_YB-AFq5",2015-06-15,2015-06-15,"YB","AF","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%",""
+"2015-06-15_YB-AFq8",2015-06-15,2015-06-15,"YB","AF","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","20%","Counts may be low due to blur"
+"2015-06-15_YB-AFq9",2015-06-15,2015-06-15,"YB","AF","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches and blur"
+"2015-06-15_YB-AFq5",2015-06-15,2015-06-15,"YB","AF","5","Pp","Pollicipes_polymerus","Type 11",14,0.0875,160,NA,"Beatriz Vaca","Finished","Full","Full","30%",""
+"2015-06-15_YB-AFq8",2015-06-15,2015-06-15,"YB","AF","8","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","20%","Counts may be low due to blur"
+"2015-06-15_YB-AFq9",2015-06-15,2015-06-15,"YB","AF","9","Pp","Pollicipes_polymerus","Type 11",6,0.0875,68.5714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches and blur"
+"2015-06-15_YB-AFq5",2015-06-15,2015-06-15,"YB","AF","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%",""
+"2015-06-15_YB-AFq8",2015-06-15,2015-06-15,"YB","AF","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","20%","Counts may be low due to blur"
+"2015-06-15_YB-AFq9",2015-06-15,2015-06-15,"YB","AF","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches and blur"
+"2015-06-15_YB-AFq5",2015-06-15,2015-06-15,"YB","AF","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%",""
+"2015-06-15_YB-AFq8",2015-06-15,2015-06-15,"YB","AF","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","20%","Counts may be low due to blur"
+"2015-06-15_YB-AFq9",2015-06-15,2015-06-15,"YB","AF","9","Sc","Semibalanus_cariosus","Type 5",6,0.0875,68.5714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches and blur"
+"2015-06-15_YB-AFq5",2015-06-15,2015-06-15,"YB","AF","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%",""
+"2015-06-15_YB-AFq8",2015-06-15,2015-06-15,"YB","AF","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","20%","Counts may be low due to blur"
+"2015-06-15_YB-AFq9",2015-06-15,2015-06-15,"YB","AF","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%","Counts likely low due to water patches and blur"
+"2015-06-15_YB-AGq2",2015-06-15,2015-06-15,"YB","AG","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","",""
+"2015-06-15_YB-AGq7",2015-06-15,2015-06-15,"YB","AG","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-06-15_YB-AGq9",2015-06-15,2015-06-15,"YB","AG","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%",""
+"2015-06-15_YB-AGq2",2015-06-15,2015-06-15,"YB","AG","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","",""
+"2015-06-15_YB-AGq7",2015-06-15,2015-06-15,"YB","AG","7","Ae","Anemones","Type 14",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-06-15_YB-AGq9",2015-06-15,2015-06-15,"YB","AG","9","Ae","Anemones","Type 14",13,0.0875,148.571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","60%",""
+"2015-06-15_YB-AGq2",2015-06-15,2015-06-15,"YB","AG","2","Bg","Balanus_glandula","Type 1",576,0.0875,6582.85714285714,NA,"Rebecca Friedrich","Finished","Full","Full","",""
+"2015-06-15_YB-AGq7",2015-06-15,2015-06-15,"YB","AG","7","Bg","Balanus_glandula","Type 1",638,0.0875,7291.42857142857,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-06-15_YB-AGq9",2015-06-15,2015-06-15,"YB","AG","9","Bg","Balanus_glandula","Type 1",113,0.0875,1291.42857142857,NA,"Stephanie Merhoff","Finished","Full","Full","60%",""
+"2015-06-15_YB-AGq2",2015-06-15,2015-06-15,"YB","AG","2","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","",""
+"2015-06-15_YB-AGq7",2015-06-15,2015-06-15,"YB","AG","7","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-06-15_YB-AGq9",2015-06-15,2015-06-15,"YB","AG","9","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%",""
+"2015-06-15_YB-AGq2",2015-06-15,2015-06-15,"YB","AG","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","",""
+"2015-06-15_YB-AGq7",2015-06-15,2015-06-15,"YB","AG","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-06-15_YB-AGq9",2015-06-15,2015-06-15,"YB","AG","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%",""
+"2015-06-15_YB-AGq2",2015-06-15,2015-06-15,"YB","AG","2","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","",""
+"2015-06-15_YB-AGq7",2015-06-15,2015-06-15,"YB","AG","7","Cth","Chthamalus_dalli","Type 3",4,0.0875,45.7142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-06-15_YB-AGq9",2015-06-15,2015-06-15,"YB","AG","9","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%",""
+"2015-06-15_YB-AGq2",2015-06-15,2015-06-15,"YB","AG","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","",""
+"2015-06-15_YB-AGq7",2015-06-15,2015-06-15,"YB","AG","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-06-15_YB-AGq9",2015-06-15,2015-06-15,"YB","AG","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%",""
+"2015-06-15_YB-AGq2",2015-06-15,2015-06-15,"YB","AG","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","",""
+"2015-06-15_YB-AGq7",2015-06-15,2015-06-15,"YB","AG","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-06-15_YB-AGq9",2015-06-15,2015-06-15,"YB","AG","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%",""
+"2015-06-15_YB-AGq2",2015-06-15,2015-06-15,"YB","AG","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","",""
+"2015-06-15_YB-AGq7",2015-06-15,2015-06-15,"YB","AG","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-06-15_YB-AGq9",2015-06-15,2015-06-15,"YB","AG","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%",""
+"2015-06-15_YB-AGq2",2015-06-15,2015-06-15,"YB","AG","2","Lim","Limpets","Type 12",302,0.0875,3451.42857142857,NA,"Rebecca Friedrich","Finished","Full","Full","",""
+"2015-06-15_YB-AGq7",2015-06-15,2015-06-15,"YB","AG","7","Lim","Limpets","Type 12",301,0.0875,3440,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-06-15_YB-AGq9",2015-06-15,2015-06-15,"YB","AG","9","Lim","Limpets","Type 12",74,0.0875,845.714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","60%",""
+"2015-06-15_YB-AGq2",2015-06-15,2015-06-15,"YB","AG","2","Ls","Littorina_sitkana","Type 13",177,0.0875,2022.85714285714,NA,"Rebecca Friedrich","Finished","Full","Full","",""
+"2015-06-15_YB-AGq7",2015-06-15,2015-06-15,"YB","AG","7","Ls","Littorina_sitkana","Type 13",491,0.0875,5611.42857142857,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-06-15_YB-AGq9",2015-06-15,2015-06-15,"YB","AG","9","Ls","Littorina_sitkana","Type 13",314,0.0875,3588.57142857143,NA,"Stephanie Merhoff","Finished","Full","Full","60%",""
+"2015-06-15_YB-AGq2",2015-06-15,2015-06-15,"YB","AG","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","",""
+"2015-06-15_YB-AGq7",2015-06-15,2015-06-15,"YB","AG","7","Mc","Mytilus_californianus","Type 17",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-06-15_YB-AGq9",2015-06-15,2015-06-15,"YB","AG","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%",""
+"2015-06-15_YB-AGq2",2015-06-15,2015-06-15,"YB","AG","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","",""
+"2015-06-15_YB-AGq7",2015-06-15,2015-06-15,"YB","AG","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-06-15_YB-AGq9",2015-06-15,2015-06-15,"YB","AG","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%",""
+"2015-06-15_YB-AGq2",2015-06-15,2015-06-15,"YB","AG","2","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","",""
+"2015-06-15_YB-AGq7",2015-06-15,2015-06-15,"YB","AG","7","Myt","Mytilus_spp","Type 7",9,0.0875,102.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-06-15_YB-AGq9",2015-06-15,2015-06-15,"YB","AG","9","Myt","Mytilus_spp","Type 7",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","60%",""
+"2015-06-15_YB-AGq2",2015-06-15,2015-06-15,"YB","AG","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","",""
+"2015-06-15_YB-AGq7",2015-06-15,2015-06-15,"YB","AG","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-06-15_YB-AGq9",2015-06-15,2015-06-15,"YB","AG","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%",""
+"2015-06-15_YB-AGq2",2015-06-15,2015-06-15,"YB","AG","2","Mt","Mytilus_trossulus","Type 15",138,0.0875,1577.14285714286,NA,"Rebecca Friedrich","Finished","Full","Full","",""
+"2015-06-15_YB-AGq7",2015-06-15,2015-06-15,"YB","AG","7","Mt","Mytilus_trossulus","Type 15",18,0.0875,205.714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-06-15_YB-AGq9",2015-06-15,2015-06-15,"YB","AG","9","Mt","Mytilus_trossulus","Type 15",9,0.0875,102.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","60%",""
+"2015-06-15_YB-AGq2",2015-06-15,2015-06-15,"YB","AG","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","",""
+"2015-06-15_YB-AGq7",2015-06-15,2015-06-15,"YB","AG","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-06-15_YB-AGq9",2015-06-15,2015-06-15,"YB","AG","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%",""
+"2015-06-15_YB-AGq2",2015-06-15,2015-06-15,"YB","AG","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","",""
+"2015-06-15_YB-AGq7",2015-06-15,2015-06-15,"YB","AG","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-06-15_YB-AGq9",2015-06-15,2015-06-15,"YB","AG","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%",""
+"2015-06-15_YB-AGq2",2015-06-15,2015-06-15,"YB","AG","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","",""
+"2015-06-15_YB-AGq7",2015-06-15,2015-06-15,"YB","AG","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-06-15_YB-AGq9",2015-06-15,2015-06-15,"YB","AG","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%",""
+"2015-06-15_YB-AGq2",2015-06-15,2015-06-15,"YB","AG","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","",""
+"2015-06-15_YB-AGq7",2015-06-15,2015-06-15,"YB","AG","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-06-15_YB-AGq9",2015-06-15,2015-06-15,"YB","AG","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%",""
+"2015-06-15_YB-AGq2",2015-06-15,2015-06-15,"YB","AG","2","No","Nucella_ostrina","Type 9",34,0.0875,388.571428571429,NA,"Rebecca Friedrich","Finished","Full","Full","",""
+"2015-06-15_YB-AGq7",2015-06-15,2015-06-15,"YB","AG","7","No","Nucella_ostrina","Type 9",16,0.0875,182.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-06-15_YB-AGq9",2015-06-15,2015-06-15,"YB","AG","9","No","Nucella_ostrina","Type 9",10,0.0875,114.285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","60%",""
+"2015-06-15_YB-AGq2",2015-06-15,2015-06-15,"YB","AG","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","",""
+"2015-06-15_YB-AGq7",2015-06-15,2015-06-15,"YB","AG","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-06-15_YB-AGq9",2015-06-15,2015-06-15,"YB","AG","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%",""
+"2015-06-15_YB-AGq2",2015-06-15,2015-06-15,"YB","AG","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","",""
+"2015-06-15_YB-AGq7",2015-06-15,2015-06-15,"YB","AG","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-06-15_YB-AGq9",2015-06-15,2015-06-15,"YB","AG","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%",""
+"2015-06-15_YB-AGq2",2015-06-15,2015-06-15,"YB","AG","2","Pp","Pollicipes_polymerus","Type 11",6,0.0875,68.5714285714286,NA,"Rebecca Friedrich","Finished","Full","Full","",""
+"2015-06-15_YB-AGq7",2015-06-15,2015-06-15,"YB","AG","7","Pp","Pollicipes_polymerus","Type 11",82,0.0875,937.142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-06-15_YB-AGq9",2015-06-15,2015-06-15,"YB","AG","9","Pp","Pollicipes_polymerus","Type 11",345,0.0875,3942.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","60%",""
+"2015-06-15_YB-AGq2",2015-06-15,2015-06-15,"YB","AG","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","",""
+"2015-06-15_YB-AGq7",2015-06-15,2015-06-15,"YB","AG","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-06-15_YB-AGq9",2015-06-15,2015-06-15,"YB","AG","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%",""
+"2015-06-15_YB-AGq2",2015-06-15,2015-06-15,"YB","AG","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","",""
+"2015-06-15_YB-AGq7",2015-06-15,2015-06-15,"YB","AG","7","Sc","Semibalanus_cariosus","Type 5",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-06-15_YB-AGq9",2015-06-15,2015-06-15,"YB","AG","9","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","60%",""
+"2015-06-15_YB-AGq2",2015-06-15,2015-06-15,"YB","AG","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Rebecca Friedrich","Finished","Full","Full","",""
+"2015-06-15_YB-AGq7",2015-06-15,2015-06-15,"YB","AG","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-06-15_YB-AGq9",2015-06-15,2015-06-15,"YB","AG","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%",""
+"2015-06-15_YB-Bq1",2015-06-15,2015-06-15,"YB","B","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-06-15_YB-Bq5",2015-06-15,2015-06-15,"YB","B","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to glare."
+"2015-06-15_YB-Bq6",2015-06-15,2015-06-15,"YB","B","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare."
+"2015-06-15_YB-Bq1",2015-06-15,2015-06-15,"YB","B","1","Ae","Anemones","Type 14",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-06-15_YB-Bq5",2015-06-15,2015-06-15,"YB","B","5","Ae","Anemones","Type 14",18,0.0875,205.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to glare."
+"2015-06-15_YB-Bq6",2015-06-15,2015-06-15,"YB","B","6","Ae","Anemones","Type 14",29,0.0875,331.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare."
+"2015-06-15_YB-Bq1",2015-06-15,2015-06-15,"YB","B","1","Bg","Balanus_glandula","Type 1",54,0.0875,617.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-06-15_YB-Bq5",2015-06-15,2015-06-15,"YB","B","5","Bg","Balanus_glandula","Type 1",60,0.0875,685.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to glare."
+"2015-06-15_YB-Bq6",2015-06-15,2015-06-15,"YB","B","6","Bg","Balanus_glandula","Type 1",58,0.0875,662.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare."
+"2015-06-15_YB-Bq1",2015-06-15,2015-06-15,"YB","B","1","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-06-15_YB-Bq5",2015-06-15,2015-06-15,"YB","B","5","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to glare."
+"2015-06-15_YB-Bq6",2015-06-15,2015-06-15,"YB","B","6","BgD","Balanus_glandula_(dead)","Type 2",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare."
+"2015-06-15_YB-Bq1",2015-06-15,2015-06-15,"YB","B","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-06-15_YB-Bq5",2015-06-15,2015-06-15,"YB","B","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to glare."
+"2015-06-15_YB-Bq6",2015-06-15,2015-06-15,"YB","B","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare."
+"2015-06-15_YB-Bq1",2015-06-15,2015-06-15,"YB","B","1","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-06-15_YB-Bq5",2015-06-15,2015-06-15,"YB","B","5","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to glare."
+"2015-06-15_YB-Bq6",2015-06-15,2015-06-15,"YB","B","6","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare."
+"2015-06-15_YB-Bq1",2015-06-15,2015-06-15,"YB","B","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-06-15_YB-Bq5",2015-06-15,2015-06-15,"YB","B","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to glare."
+"2015-06-15_YB-Bq6",2015-06-15,2015-06-15,"YB","B","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare."
+"2015-06-15_YB-Bq1",2015-06-15,2015-06-15,"YB","B","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-06-15_YB-Bq5",2015-06-15,2015-06-15,"YB","B","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to glare."
+"2015-06-15_YB-Bq6",2015-06-15,2015-06-15,"YB","B","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare."
+"2015-06-15_YB-Bq1",2015-06-15,2015-06-15,"YB","B","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-06-15_YB-Bq5",2015-06-15,2015-06-15,"YB","B","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to glare."
+"2015-06-15_YB-Bq6",2015-06-15,2015-06-15,"YB","B","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare."
+"2015-06-15_YB-Bq1",2015-06-15,2015-06-15,"YB","B","1","Lim","Limpets","Type 12",140,0.0875,1600,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-06-15_YB-Bq5",2015-06-15,2015-06-15,"YB","B","5","Lim","Limpets","Type 12",81,0.0875,925.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to glare."
+"2015-06-15_YB-Bq6",2015-06-15,2015-06-15,"YB","B","6","Lim","Limpets","Type 12",101,0.0875,1154.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare."
+"2015-06-15_YB-Bq1",2015-06-15,2015-06-15,"YB","B","1","Ls","Littorina_sitkana","Type 13",41,0.0875,468.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-06-15_YB-Bq5",2015-06-15,2015-06-15,"YB","B","5","Ls","Littorina_sitkana","Type 13",37,0.0875,422.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to glare."
+"2015-06-15_YB-Bq6",2015-06-15,2015-06-15,"YB","B","6","Ls","Littorina_sitkana","Type 13",112,0.0875,1280,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare."
+"2015-06-15_YB-Bq1",2015-06-15,2015-06-15,"YB","B","1","Mc","Mytilus_californianus","Type 17",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-06-15_YB-Bq5",2015-06-15,2015-06-15,"YB","B","5","Mc","Mytilus_californianus","Type 17",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to glare."
+"2015-06-15_YB-Bq6",2015-06-15,2015-06-15,"YB","B","6","Mc","Mytilus_californianus","Type 17",25,0.0875,285.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare."
+"2015-06-15_YB-Bq1",2015-06-15,2015-06-15,"YB","B","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-06-15_YB-Bq5",2015-06-15,2015-06-15,"YB","B","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to glare."
+"2015-06-15_YB-Bq6",2015-06-15,2015-06-15,"YB","B","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare."
+"2015-06-15_YB-Bq1",2015-06-15,2015-06-15,"YB","B","1","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-06-15_YB-Bq5",2015-06-15,2015-06-15,"YB","B","5","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to glare."
+"2015-06-15_YB-Bq6",2015-06-15,2015-06-15,"YB","B","6","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare."
+"2015-06-15_YB-Bq1",2015-06-15,2015-06-15,"YB","B","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-06-15_YB-Bq5",2015-06-15,2015-06-15,"YB","B","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to glare."
+"2015-06-15_YB-Bq6",2015-06-15,2015-06-15,"YB","B","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare."
+"2015-06-15_YB-Bq1",2015-06-15,2015-06-15,"YB","B","1","Mt","Mytilus_trossulus","Type 15",32,0.0875,365.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-06-15_YB-Bq5",2015-06-15,2015-06-15,"YB","B","5","Mt","Mytilus_trossulus","Type 15",60,0.0875,685.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to glare."
+"2015-06-15_YB-Bq6",2015-06-15,2015-06-15,"YB","B","6","Mt","Mytilus_trossulus","Type 15",31,0.0875,354.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare."
+"2015-06-15_YB-Bq1",2015-06-15,2015-06-15,"YB","B","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-06-15_YB-Bq5",2015-06-15,2015-06-15,"YB","B","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to glare."
+"2015-06-15_YB-Bq6",2015-06-15,2015-06-15,"YB","B","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare."
+"2015-06-15_YB-Bq1",2015-06-15,2015-06-15,"YB","B","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-06-15_YB-Bq5",2015-06-15,2015-06-15,"YB","B","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to glare."
+"2015-06-15_YB-Bq6",2015-06-15,2015-06-15,"YB","B","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare."
+"2015-06-15_YB-Bq1",2015-06-15,2015-06-15,"YB","B","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-06-15_YB-Bq5",2015-06-15,2015-06-15,"YB","B","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to glare."
+"2015-06-15_YB-Bq6",2015-06-15,2015-06-15,"YB","B","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare."
+"2015-06-15_YB-Bq1",2015-06-15,2015-06-15,"YB","B","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-06-15_YB-Bq5",2015-06-15,2015-06-15,"YB","B","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to glare."
+"2015-06-15_YB-Bq6",2015-06-15,2015-06-15,"YB","B","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare."
+"2015-06-15_YB-Bq1",2015-06-15,2015-06-15,"YB","B","1","No","Nucella_ostrina","Type 9",9,0.0875,102.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-06-15_YB-Bq5",2015-06-15,2015-06-15,"YB","B","5","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to glare."
+"2015-06-15_YB-Bq6",2015-06-15,2015-06-15,"YB","B","6","No","Nucella_ostrina","Type 9",14,0.0875,160,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare."
+"2015-06-15_YB-Bq1",2015-06-15,2015-06-15,"YB","B","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-06-15_YB-Bq5",2015-06-15,2015-06-15,"YB","B","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to glare."
+"2015-06-15_YB-Bq6",2015-06-15,2015-06-15,"YB","B","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare."
+"2015-06-15_YB-Bq1",2015-06-15,2015-06-15,"YB","B","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-06-15_YB-Bq5",2015-06-15,2015-06-15,"YB","B","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to glare."
+"2015-06-15_YB-Bq6",2015-06-15,2015-06-15,"YB","B","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare."
+"2015-06-15_YB-Bq1",2015-06-15,2015-06-15,"YB","B","1","Pp","Pollicipes_polymerus","Type 11",1142,0.0875,13051.4285714286,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-06-15_YB-Bq5",2015-06-15,2015-06-15,"YB","B","5","Pp","Pollicipes_polymerus","Type 11",858,0.0875,9805.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to glare."
+"2015-06-15_YB-Bq6",2015-06-15,2015-06-15,"YB","B","6","Pp","Pollicipes_polymerus","Type 11",702,0.0875,8022.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare."
+"2015-06-15_YB-Bq1",2015-06-15,2015-06-15,"YB","B","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-06-15_YB-Bq5",2015-06-15,2015-06-15,"YB","B","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to glare."
+"2015-06-15_YB-Bq6",2015-06-15,2015-06-15,"YB","B","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare."
+"2015-06-15_YB-Bq1",2015-06-15,2015-06-15,"YB","B","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-06-15_YB-Bq5",2015-06-15,2015-06-15,"YB","B","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to glare."
+"2015-06-15_YB-Bq6",2015-06-15,2015-06-15,"YB","B","6","Sc","Semibalanus_cariosus","Type 5",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare."
+"2015-06-15_YB-Bq1",2015-06-15,2015-06-15,"YB","B","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-06-15_YB-Bq5",2015-06-15,2015-06-15,"YB","B","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to glare."
+"2015-06-15_YB-Bq6",2015-06-15,2015-06-15,"YB","B","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare."
+"2015-06-15_YB-BBq1",2015-06-15,2015-06-15,"YB","BB","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to algae coverage and glare"
+"2015-06-15_YB-BBq2",2015-06-15,2015-06-15,"YB","BB","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","65%","Counts likely low due to algae coverage and glare"
+"2015-06-15_YB-BBq9",2015-06-15,2015-06-15,"YB","BB","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur"
+"2015-06-15_YB-BBq1",2015-06-15,2015-06-15,"YB","BB","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to algae coverage and glare"
+"2015-06-15_YB-BBq2",2015-06-15,2015-06-15,"YB","BB","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","65%","Counts likely low due to algae coverage and glare"
+"2015-06-15_YB-BBq9",2015-06-15,2015-06-15,"YB","BB","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur"
+"2015-06-15_YB-BBq1",2015-06-15,2015-06-15,"YB","BB","1","Bg","Balanus_glandula","Type 1",27,0.0875,308.571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to algae coverage and glare"
+"2015-06-15_YB-BBq2",2015-06-15,2015-06-15,"YB","BB","2","Bg","Balanus_glandula","Type 1",29,0.0875,331.428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","65%","Counts likely low due to algae coverage and glare"
+"2015-06-15_YB-BBq9",2015-06-15,2015-06-15,"YB","BB","9","Bg","Balanus_glandula","Type 1",123,0.0875,1405.71428571429,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur"
+"2015-06-15_YB-BBq1",2015-06-15,2015-06-15,"YB","BB","1","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to algae coverage and glare"
+"2015-06-15_YB-BBq2",2015-06-15,2015-06-15,"YB","BB","2","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","65%","Counts likely low due to algae coverage and glare"
+"2015-06-15_YB-BBq9",2015-06-15,2015-06-15,"YB","BB","9","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur"
+"2015-06-15_YB-BBq1",2015-06-15,2015-06-15,"YB","BB","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to algae coverage and glare"
+"2015-06-15_YB-BBq2",2015-06-15,2015-06-15,"YB","BB","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","65%","Counts likely low due to algae coverage and glare"
+"2015-06-15_YB-BBq9",2015-06-15,2015-06-15,"YB","BB","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur"
+"2015-06-15_YB-BBq1",2015-06-15,2015-06-15,"YB","BB","1","Cth","Chthamalus_dalli","Type 3",7,0.0875,80,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to algae coverage and glare"
+"2015-06-15_YB-BBq2",2015-06-15,2015-06-15,"YB","BB","2","Cth","Chthamalus_dalli","Type 3",8,0.0875,91.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","65%","Counts likely low due to algae coverage and glare"
+"2015-06-15_YB-BBq9",2015-06-15,2015-06-15,"YB","BB","9","Cth","Chthamalus_dalli","Type 3",24,0.0875,274.285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur"
+"2015-06-15_YB-BBq1",2015-06-15,2015-06-15,"YB","BB","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to algae coverage and glare"
+"2015-06-15_YB-BBq2",2015-06-15,2015-06-15,"YB","BB","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","65%","Counts likely low due to algae coverage and glare"
+"2015-06-15_YB-BBq9",2015-06-15,2015-06-15,"YB","BB","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur"
+"2015-06-15_YB-BBq1",2015-06-15,2015-06-15,"YB","BB","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to algae coverage and glare"
+"2015-06-15_YB-BBq2",2015-06-15,2015-06-15,"YB","BB","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","65%","Counts likely low due to algae coverage and glare"
+"2015-06-15_YB-BBq9",2015-06-15,2015-06-15,"YB","BB","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur"
+"2015-06-15_YB-BBq1",2015-06-15,2015-06-15,"YB","BB","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to algae coverage and glare"
+"2015-06-15_YB-BBq2",2015-06-15,2015-06-15,"YB","BB","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","65%","Counts likely low due to algae coverage and glare"
+"2015-06-15_YB-BBq9",2015-06-15,2015-06-15,"YB","BB","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur"
+"2015-06-15_YB-BBq1",2015-06-15,2015-06-15,"YB","BB","1","Lim","Limpets","Type 12",96,0.0875,1097.14285714286,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to algae coverage and glare"
+"2015-06-15_YB-BBq2",2015-06-15,2015-06-15,"YB","BB","2","Lim","Limpets","Type 12",72,0.0875,822.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","65%","Counts likely low due to algae coverage and glare"
+"2015-06-15_YB-BBq9",2015-06-15,2015-06-15,"YB","BB","9","Lim","Limpets","Type 12",158,0.0875,1805.71428571429,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur"
+"2015-06-15_YB-BBq1",2015-06-15,2015-06-15,"YB","BB","1","Ls","Littorina_sitkana","Type 13",310,0.0875,3542.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to algae coverage and glare"
+"2015-06-15_YB-BBq2",2015-06-15,2015-06-15,"YB","BB","2","Ls","Littorina_sitkana","Type 13",309,0.0875,3531.42857142857,NA,"Stephanie Merhoff","Finished","Full","Full","65%","Counts likely low due to algae coverage and glare"
+"2015-06-15_YB-BBq9",2015-06-15,2015-06-15,"YB","BB","9","Ls","Littorina_sitkana","Type 13",282,0.0875,3222.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur"
+"2015-06-15_YB-BBq1",2015-06-15,2015-06-15,"YB","BB","1","Mc","Mytilus_californianus","Type 17",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to algae coverage and glare"
+"2015-06-15_YB-BBq2",2015-06-15,2015-06-15,"YB","BB","2","Mc","Mytilus_californianus","Type 17",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","65%","Counts likely low due to algae coverage and glare"
+"2015-06-15_YB-BBq9",2015-06-15,2015-06-15,"YB","BB","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur"
+"2015-06-15_YB-BBq1",2015-06-15,2015-06-15,"YB","BB","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to algae coverage and glare"
+"2015-06-15_YB-BBq2",2015-06-15,2015-06-15,"YB","BB","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","65%","Counts likely low due to algae coverage and glare"
+"2015-06-15_YB-BBq9",2015-06-15,2015-06-15,"YB","BB","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur"
+"2015-06-15_YB-BBq1",2015-06-15,2015-06-15,"YB","BB","1","Myt","Mytilus_spp","Type 7",19,0.0875,217.142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to algae coverage and glare"
+"2015-06-15_YB-BBq2",2015-06-15,2015-06-15,"YB","BB","2","Myt","Mytilus_spp","Type 7",29,0.0875,331.428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","65%","Counts likely low due to algae coverage and glare"
+"2015-06-15_YB-BBq9",2015-06-15,2015-06-15,"YB","BB","9","Myt","Mytilus_spp","Type 7",6,0.0875,68.5714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur"
+"2015-06-15_YB-BBq1",2015-06-15,2015-06-15,"YB","BB","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to algae coverage and glare"
+"2015-06-15_YB-BBq2",2015-06-15,2015-06-15,"YB","BB","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","65%","Counts likely low due to algae coverage and glare"
+"2015-06-15_YB-BBq9",2015-06-15,2015-06-15,"YB","BB","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur"
+"2015-06-15_YB-BBq1",2015-06-15,2015-06-15,"YB","BB","1","Mt","Mytilus_trossulus","Type 15",15,0.0875,171.428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to algae coverage and glare"
+"2015-06-15_YB-BBq2",2015-06-15,2015-06-15,"YB","BB","2","Mt","Mytilus_trossulus","Type 15",9,0.0875,102.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","65%","Counts likely low due to algae coverage and glare"
+"2015-06-15_YB-BBq9",2015-06-15,2015-06-15,"YB","BB","9","Mt","Mytilus_trossulus","Type 15",5,0.0875,57.1428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur"
+"2015-06-15_YB-BBq1",2015-06-15,2015-06-15,"YB","BB","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to algae coverage and glare"
+"2015-06-15_YB-BBq2",2015-06-15,2015-06-15,"YB","BB","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","65%","Counts likely low due to algae coverage and glare"
+"2015-06-15_YB-BBq9",2015-06-15,2015-06-15,"YB","BB","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur"
+"2015-06-15_YB-BBq1",2015-06-15,2015-06-15,"YB","BB","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to algae coverage and glare"
+"2015-06-15_YB-BBq2",2015-06-15,2015-06-15,"YB","BB","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","65%","Counts likely low due to algae coverage and glare"
+"2015-06-15_YB-BBq9",2015-06-15,2015-06-15,"YB","BB","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur"
+"2015-06-15_YB-BBq1",2015-06-15,2015-06-15,"YB","BB","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to algae coverage and glare"
+"2015-06-15_YB-BBq2",2015-06-15,2015-06-15,"YB","BB","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","65%","Counts likely low due to algae coverage and glare"
+"2015-06-15_YB-BBq9",2015-06-15,2015-06-15,"YB","BB","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur"
+"2015-06-15_YB-BBq1",2015-06-15,2015-06-15,"YB","BB","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to algae coverage and glare"
+"2015-06-15_YB-BBq2",2015-06-15,2015-06-15,"YB","BB","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","65%","Counts likely low due to algae coverage and glare"
+"2015-06-15_YB-BBq9",2015-06-15,2015-06-15,"YB","BB","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur"
+"2015-06-15_YB-BBq1",2015-06-15,2015-06-15,"YB","BB","1","No","Nucella_ostrina","Type 9",15,0.0875,171.428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to algae coverage and glare"
+"2015-06-15_YB-BBq2",2015-06-15,2015-06-15,"YB","BB","2","No","Nucella_ostrina","Type 9",27,0.0875,308.571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","65%","Counts likely low due to algae coverage and glare"
+"2015-06-15_YB-BBq9",2015-06-15,2015-06-15,"YB","BB","9","No","Nucella_ostrina","Type 9",13,0.0875,148.571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur"
+"2015-06-15_YB-BBq1",2015-06-15,2015-06-15,"YB","BB","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to algae coverage and glare"
+"2015-06-15_YB-BBq2",2015-06-15,2015-06-15,"YB","BB","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","65%","Counts likely low due to algae coverage and glare"
+"2015-06-15_YB-BBq9",2015-06-15,2015-06-15,"YB","BB","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur"
+"2015-06-15_YB-BBq1",2015-06-15,2015-06-15,"YB","BB","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to algae coverage and glare"
+"2015-06-15_YB-BBq2",2015-06-15,2015-06-15,"YB","BB","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","65%","Counts likely low due to algae coverage and glare"
+"2015-06-15_YB-BBq9",2015-06-15,2015-06-15,"YB","BB","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur"
+"2015-06-15_YB-BBq1",2015-06-15,2015-06-15,"YB","BB","1","Pp","Pollicipes_polymerus","Type 11",19,0.0875,217.142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to algae coverage and glare"
+"2015-06-15_YB-BBq2",2015-06-15,2015-06-15,"YB","BB","2","Pp","Pollicipes_polymerus","Type 11",52,0.0875,594.285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","65%","Counts likely low due to algae coverage and glare"
+"2015-06-15_YB-BBq9",2015-06-15,2015-06-15,"YB","BB","9","Pp","Pollicipes_polymerus","Type 11",12,0.0875,137.142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur"
+"2015-06-15_YB-BBq1",2015-06-15,2015-06-15,"YB","BB","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to algae coverage and glare"
+"2015-06-15_YB-BBq2",2015-06-15,2015-06-15,"YB","BB","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","65%","Counts likely low due to algae coverage and glare"
+"2015-06-15_YB-BBq9",2015-06-15,2015-06-15,"YB","BB","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur"
+"2015-06-15_YB-BBq1",2015-06-15,2015-06-15,"YB","BB","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to algae coverage and glare"
+"2015-06-15_YB-BBq2",2015-06-15,2015-06-15,"YB","BB","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","65%","Counts likely low due to algae coverage and glare"
+"2015-06-15_YB-BBq9",2015-06-15,2015-06-15,"YB","BB","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur"
+"2015-06-15_YB-BBq1",2015-06-15,2015-06-15,"YB","BB","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to algae coverage and glare"
+"2015-06-15_YB-BBq2",2015-06-15,2015-06-15,"YB","BB","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","65%","Counts likely low due to algae coverage and glare"
+"2015-06-15_YB-BBq9",2015-06-15,2015-06-15,"YB","BB","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur"
+"2015-06-15_YB-BCq3",2015-06-15,2015-06-15,"YB","BC","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","8%",""
+"2015-06-15_YB-BCq5",2015-06-15,2015-06-15,"YB","BC","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-06-15_YB-BCq9",2015-06-15,2015-06-15,"YB","BC","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts may be low due to blur"
+"2015-06-15_YB-BCq3",2015-06-15,2015-06-15,"YB","BC","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","8%",""
+"2015-06-15_YB-BCq5",2015-06-15,2015-06-15,"YB","BC","5","Ae","Anemones","Type 14",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-06-15_YB-BCq9",2015-06-15,2015-06-15,"YB","BC","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts may be low due to blur"
+"2015-06-15_YB-BCq3",2015-06-15,2015-06-15,"YB","BC","3","Bg","Balanus_glandula","Type 1",669,0.0875,7645.71428571429,NA,"Stephanie Merhoff","Finished","Full","Full","8%",""
+"2015-06-15_YB-BCq5",2015-06-15,2015-06-15,"YB","BC","5","Bg","Balanus_glandula","Type 1",241,0.0875,2754.28571428571,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-06-15_YB-BCq9",2015-06-15,2015-06-15,"YB","BC","9","Bg","Balanus_glandula","Type 1",302,0.0875,3451.42857142857,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts may be low due to blur"
+"2015-06-15_YB-BCq3",2015-06-15,2015-06-15,"YB","BC","3","BgD","Balanus_glandula_(dead)","Type 2",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","8%",""
+"2015-06-15_YB-BCq5",2015-06-15,2015-06-15,"YB","BC","5","BgD","Balanus_glandula_(dead)","Type 2",5,0.0875,57.1428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-06-15_YB-BCq9",2015-06-15,2015-06-15,"YB","BC","9","BgD","Balanus_glandula_(dead)","Type 2",4,0.0875,45.7142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts may be low due to blur"
+"2015-06-15_YB-BCq3",2015-06-15,2015-06-15,"YB","BC","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","8%",""
+"2015-06-15_YB-BCq5",2015-06-15,2015-06-15,"YB","BC","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-06-15_YB-BCq9",2015-06-15,2015-06-15,"YB","BC","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts may be low due to blur"
+"2015-06-15_YB-BCq3",2015-06-15,2015-06-15,"YB","BC","3","Cth","Chthamalus_dalli","Type 3",292,0.0875,3337.14285714286,NA,"Stephanie Merhoff","Finished","Full","Full","8%",""
+"2015-06-15_YB-BCq5",2015-06-15,2015-06-15,"YB","BC","5","Cth","Chthamalus_dalli","Type 3",18,0.0875,205.714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-06-15_YB-BCq9",2015-06-15,2015-06-15,"YB","BC","9","Cth","Chthamalus_dalli","Type 3",76,0.0875,868.571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts may be low due to blur"
+"2015-06-15_YB-BCq3",2015-06-15,2015-06-15,"YB","BC","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","8%",""
+"2015-06-15_YB-BCq5",2015-06-15,2015-06-15,"YB","BC","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-06-15_YB-BCq9",2015-06-15,2015-06-15,"YB","BC","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts may be low due to blur"
+"2015-06-15_YB-BCq3",2015-06-15,2015-06-15,"YB","BC","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","8%",""
+"2015-06-15_YB-BCq5",2015-06-15,2015-06-15,"YB","BC","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-06-15_YB-BCq9",2015-06-15,2015-06-15,"YB","BC","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts may be low due to blur"
+"2015-06-15_YB-BCq3",2015-06-15,2015-06-15,"YB","BC","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","8%",""
+"2015-06-15_YB-BCq5",2015-06-15,2015-06-15,"YB","BC","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-06-15_YB-BCq9",2015-06-15,2015-06-15,"YB","BC","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts may be low due to blur"
+"2015-06-15_YB-BCq3",2015-06-15,2015-06-15,"YB","BC","3","Lim","Limpets","Type 12",262,0.0875,2994.28571428571,NA,"Stephanie Merhoff","Finished","Full","Full","8%",""
+"2015-06-15_YB-BCq5",2015-06-15,2015-06-15,"YB","BC","5","Lim","Limpets","Type 12",230,0.0875,2628.57142857143,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-06-15_YB-BCq9",2015-06-15,2015-06-15,"YB","BC","9","Lim","Limpets","Type 12",257,0.0875,2937.14285714286,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts may be low due to blur"
+"2015-06-15_YB-BCq3",2015-06-15,2015-06-15,"YB","BC","3","Ls","Littorina_sitkana","Type 13",256,0.0875,2925.71428571429,NA,"Stephanie Merhoff","Finished","Full","Full","8%",""
+"2015-06-15_YB-BCq5",2015-06-15,2015-06-15,"YB","BC","5","Ls","Littorina_sitkana","Type 13",253,0.0875,2891.42857142857,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-06-15_YB-BCq9",2015-06-15,2015-06-15,"YB","BC","9","Ls","Littorina_sitkana","Type 13",122,0.0875,1394.28571428571,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts may be low due to blur"
+"2015-06-15_YB-BCq3",2015-06-15,2015-06-15,"YB","BC","3","Mc","Mytilus_californianus","Type 17",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","8%",""
+"2015-06-15_YB-BCq5",2015-06-15,2015-06-15,"YB","BC","5","Mc","Mytilus_californianus","Type 17",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-06-15_YB-BCq9",2015-06-15,2015-06-15,"YB","BC","9","Mc","Mytilus_californianus","Type 17",5,0.0875,57.1428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts may be low due to blur"
+"2015-06-15_YB-BCq3",2015-06-15,2015-06-15,"YB","BC","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","8%",""
+"2015-06-15_YB-BCq5",2015-06-15,2015-06-15,"YB","BC","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-06-15_YB-BCq9",2015-06-15,2015-06-15,"YB","BC","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts may be low due to blur"
+"2015-06-15_YB-BCq3",2015-06-15,2015-06-15,"YB","BC","3","Myt","Mytilus_spp","Type 7",37,0.0875,422.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","8%",""
+"2015-06-15_YB-BCq5",2015-06-15,2015-06-15,"YB","BC","5","Myt","Mytilus_spp","Type 7",8,0.0875,91.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-06-15_YB-BCq9",2015-06-15,2015-06-15,"YB","BC","9","Myt","Mytilus_spp","Type 7",13,0.0875,148.571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts may be low due to blur"
+"2015-06-15_YB-BCq3",2015-06-15,2015-06-15,"YB","BC","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","8%",""
+"2015-06-15_YB-BCq5",2015-06-15,2015-06-15,"YB","BC","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-06-15_YB-BCq9",2015-06-15,2015-06-15,"YB","BC","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts may be low due to blur"
+"2015-06-15_YB-BCq3",2015-06-15,2015-06-15,"YB","BC","3","Mt","Mytilus_trossulus","Type 15",26,0.0875,297.142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","8%",""
+"2015-06-15_YB-BCq5",2015-06-15,2015-06-15,"YB","BC","5","Mt","Mytilus_trossulus","Type 15",8,0.0875,91.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-06-15_YB-BCq9",2015-06-15,2015-06-15,"YB","BC","9","Mt","Mytilus_trossulus","Type 15",19,0.0875,217.142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts may be low due to blur"
+"2015-06-15_YB-BCq3",2015-06-15,2015-06-15,"YB","BC","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","8%",""
+"2015-06-15_YB-BCq5",2015-06-15,2015-06-15,"YB","BC","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-06-15_YB-BCq9",2015-06-15,2015-06-15,"YB","BC","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts may be low due to blur"
+"2015-06-15_YB-BCq3",2015-06-15,2015-06-15,"YB","BC","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","8%",""
+"2015-06-15_YB-BCq5",2015-06-15,2015-06-15,"YB","BC","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-06-15_YB-BCq9",2015-06-15,2015-06-15,"YB","BC","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts may be low due to blur"
+"2015-06-15_YB-BCq3",2015-06-15,2015-06-15,"YB","BC","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","8%",""
+"2015-06-15_YB-BCq5",2015-06-15,2015-06-15,"YB","BC","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-06-15_YB-BCq9",2015-06-15,2015-06-15,"YB","BC","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts may be low due to blur"
+"2015-06-15_YB-BCq3",2015-06-15,2015-06-15,"YB","BC","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","8%",""
+"2015-06-15_YB-BCq5",2015-06-15,2015-06-15,"YB","BC","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-06-15_YB-BCq9",2015-06-15,2015-06-15,"YB","BC","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts may be low due to blur"
+"2015-06-15_YB-BCq3",2015-06-15,2015-06-15,"YB","BC","3","No","Nucella_ostrina","Type 9",22,0.0875,251.428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","8%",""
+"2015-06-15_YB-BCq5",2015-06-15,2015-06-15,"YB","BC","5","No","Nucella_ostrina","Type 9",11,0.0875,125.714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-06-15_YB-BCq9",2015-06-15,2015-06-15,"YB","BC","9","No","Nucella_ostrina","Type 9",25,0.0875,285.714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts may be low due to blur"
+"2015-06-15_YB-BCq3",2015-06-15,2015-06-15,"YB","BC","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","8%",""
+"2015-06-15_YB-BCq5",2015-06-15,2015-06-15,"YB","BC","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-06-15_YB-BCq9",2015-06-15,2015-06-15,"YB","BC","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts may be low due to blur"
+"2015-06-15_YB-BCq3",2015-06-15,2015-06-15,"YB","BC","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","8%",""
+"2015-06-15_YB-BCq5",2015-06-15,2015-06-15,"YB","BC","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-06-15_YB-BCq9",2015-06-15,2015-06-15,"YB","BC","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts may be low due to blur"
+"2015-06-15_YB-BCq3",2015-06-15,2015-06-15,"YB","BC","3","Pp","Pollicipes_polymerus","Type 11",7,0.0875,80,NA,"Stephanie Merhoff","Finished","Full","Full","8%",""
+"2015-06-15_YB-BCq5",2015-06-15,2015-06-15,"YB","BC","5","Pp","Pollicipes_polymerus","Type 11",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-06-15_YB-BCq9",2015-06-15,2015-06-15,"YB","BC","9","Pp","Pollicipes_polymerus","Type 11",50,0.0875,571.428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts may be low due to blur"
+"2015-06-15_YB-BCq3",2015-06-15,2015-06-15,"YB","BC","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","8%",""
+"2015-06-15_YB-BCq5",2015-06-15,2015-06-15,"YB","BC","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-06-15_YB-BCq9",2015-06-15,2015-06-15,"YB","BC","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts may be low due to blur"
+"2015-06-15_YB-BCq3",2015-06-15,2015-06-15,"YB","BC","3","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","8%",""
+"2015-06-15_YB-BCq5",2015-06-15,2015-06-15,"YB","BC","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-06-15_YB-BCq9",2015-06-15,2015-06-15,"YB","BC","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts may be low due to blur"
+"2015-06-15_YB-BCq3",2015-06-15,2015-06-15,"YB","BC","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","8%",""
+"2015-06-15_YB-BCq5",2015-06-15,2015-06-15,"YB","BC","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-06-15_YB-BCq9",2015-06-15,2015-06-15,"YB","BC","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts may be low due to blur"
+"2015-06-15_YB-BDq1",2015-06-15,2015-06-15,"YB","BD","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%","3% sand coverage"
+"2015-06-15_YB-BDq5",2015-06-15,2015-06-15,"YB","BD","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%","mussel recruit counts may be low due to glare"
+"2015-06-15_YB-BDq7",2015-06-15,2015-06-15,"YB","BD","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","11%",""
+"2015-06-15_YB-BDq1",2015-06-15,2015-06-15,"YB","BD","1","Ae","Anemones","Type 14",10,0.0875,114.285714285714,NA,"Julia Bingham","Finished","Full","Full","8%","3% sand coverage"
+"2015-06-15_YB-BDq5",2015-06-15,2015-06-15,"YB","BD","5","Ae","Anemones","Type 14",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","15%","mussel recruit counts may be low due to glare"
+"2015-06-15_YB-BDq7",2015-06-15,2015-06-15,"YB","BD","7","Ae","Anemones","Type 14",11,0.0875,125.714285714286,NA,"Julia Bingham","Finished","Full","Full","11%",""
+"2015-06-15_YB-BDq1",2015-06-15,2015-06-15,"YB","BD","1","Bg","Balanus_glandula","Type 1",242,0.0875,2765.71428571429,NA,"Julia Bingham","Finished","Full","Full","8%","3% sand coverage"
+"2015-06-15_YB-BDq5",2015-06-15,2015-06-15,"YB","BD","5","Bg","Balanus_glandula","Type 1",191,0.0875,2182.85714285714,NA,"Julia Bingham","Finished","Full","Full","15%","mussel recruit counts may be low due to glare"
+"2015-06-15_YB-BDq7",2015-06-15,2015-06-15,"YB","BD","7","Bg","Balanus_glandula","Type 1",383,0.0875,4377.14285714286,NA,"Julia Bingham","Finished","Full","Full","11%",""
+"2015-06-15_YB-BDq1",2015-06-15,2015-06-15,"YB","BD","1","BgD","Balanus_glandula_(dead)","Type 2",30,0.0875,342.857142857143,NA,"Julia Bingham","Finished","Full","Full","8%","3% sand coverage"
+"2015-06-15_YB-BDq5",2015-06-15,2015-06-15,"YB","BD","5","BgD","Balanus_glandula_(dead)","Type 2",41,0.0875,468.571428571429,NA,"Julia Bingham","Finished","Full","Full","15%","mussel recruit counts may be low due to glare"
+"2015-06-15_YB-BDq7",2015-06-15,2015-06-15,"YB","BD","7","BgD","Balanus_glandula_(dead)","Type 2",89,0.0875,1017.14285714286,NA,"Julia Bingham","Finished","Full","Full","11%",""
+"2015-06-15_YB-BDq1",2015-06-15,2015-06-15,"YB","BD","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%","3% sand coverage"
+"2015-06-15_YB-BDq5",2015-06-15,2015-06-15,"YB","BD","5","Chi","Chiton_spp","Type 22",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Full","15%","mussel recruit counts may be low due to glare"
+"2015-06-15_YB-BDq7",2015-06-15,2015-06-15,"YB","BD","7","Chi","Chiton_spp","Type 22",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","11%",""
+"2015-06-15_YB-BDq1",2015-06-15,2015-06-15,"YB","BD","1","Cth","Chthamalus_dalli","Type 3",13,0.0875,148.571428571429,NA,"Julia Bingham","Finished","Full","Full","8%","3% sand coverage"
+"2015-06-15_YB-BDq5",2015-06-15,2015-06-15,"YB","BD","5","Cth","Chthamalus_dalli","Type 3",10,0.0875,114.285714285714,NA,"Julia Bingham","Finished","Full","Full","15%","mussel recruit counts may be low due to glare"
+"2015-06-15_YB-BDq7",2015-06-15,2015-06-15,"YB","BD","7","Cth","Chthamalus_dalli","Type 3",15,0.0875,171.428571428571,NA,"Julia Bingham","Finished","Full","Full","11%",""
+"2015-06-15_YB-BDq1",2015-06-15,2015-06-15,"YB","BD","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%","3% sand coverage"
+"2015-06-15_YB-BDq5",2015-06-15,2015-06-15,"YB","BD","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%","mussel recruit counts may be low due to glare"
+"2015-06-15_YB-BDq7",2015-06-15,2015-06-15,"YB","BD","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","11%",""
+"2015-06-15_YB-BDq1",2015-06-15,2015-06-15,"YB","BD","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%","3% sand coverage"
+"2015-06-15_YB-BDq5",2015-06-15,2015-06-15,"YB","BD","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%","mussel recruit counts may be low due to glare"
+"2015-06-15_YB-BDq7",2015-06-15,2015-06-15,"YB","BD","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","11%",""
+"2015-06-15_YB-BDq1",2015-06-15,2015-06-15,"YB","BD","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%","3% sand coverage"
+"2015-06-15_YB-BDq5",2015-06-15,2015-06-15,"YB","BD","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%","mussel recruit counts may be low due to glare"
+"2015-06-15_YB-BDq7",2015-06-15,2015-06-15,"YB","BD","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","11%",""
+"2015-06-15_YB-BDq1",2015-06-15,2015-06-15,"YB","BD","1","Lim","Limpets","Type 12",335,0.0875,3828.57142857143,NA,"Julia Bingham","Finished","Full","Full","8%","3% sand coverage"
+"2015-06-15_YB-BDq5",2015-06-15,2015-06-15,"YB","BD","5","Lim","Limpets","Type 12",444,0.0875,5074.28571428571,NA,"Julia Bingham","Finished","Full","Full","15%","mussel recruit counts may be low due to glare"
+"2015-06-15_YB-BDq7",2015-06-15,2015-06-15,"YB","BD","7","Lim","Limpets","Type 12",631,0.0875,7211.42857142857,NA,"Julia Bingham","Finished","Full","Full","11%",""
+"2015-06-15_YB-BDq1",2015-06-15,2015-06-15,"YB","BD","1","Ls","Littorina_sitkana","Type 13",251,0.0875,2868.57142857143,NA,"Julia Bingham","Finished","Full","Full","8%","3% sand coverage"
+"2015-06-15_YB-BDq5",2015-06-15,2015-06-15,"YB","BD","5","Ls","Littorina_sitkana","Type 13",371,0.0875,4240,NA,"Julia Bingham","Finished","Full","Full","15%","mussel recruit counts may be low due to glare"
+"2015-06-15_YB-BDq7",2015-06-15,2015-06-15,"YB","BD","7","Ls","Littorina_sitkana","Type 13",450,0.0875,5142.85714285714,NA,"Julia Bingham","Finished","Full","Full","11%",""
+"2015-06-15_YB-BDq1",2015-06-15,2015-06-15,"YB","BD","1","Mc","Mytilus_californianus","Type 17",45,0.0875,514.285714285714,NA,"Julia Bingham","Finished","Full","Full","8%","3% sand coverage"
+"2015-06-15_YB-BDq5",2015-06-15,2015-06-15,"YB","BD","5","Mc","Mytilus_californianus","Type 17",56,0.0875,640,NA,"Julia Bingham","Finished","Full","Full","15%","mussel recruit counts may be low due to glare"
+"2015-06-15_YB-BDq7",2015-06-15,2015-06-15,"YB","BD","7","Mc","Mytilus_californianus","Type 17",8,0.0875,91.4285714285714,NA,"Julia Bingham","Finished","Full","Full","11%",""
+"2015-06-15_YB-BDq1",2015-06-15,2015-06-15,"YB","BD","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%","3% sand coverage"
+"2015-06-15_YB-BDq5",2015-06-15,2015-06-15,"YB","BD","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%","mussel recruit counts may be low due to glare"
+"2015-06-15_YB-BDq7",2015-06-15,2015-06-15,"YB","BD","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","11%",""
+"2015-06-15_YB-BDq1",2015-06-15,2015-06-15,"YB","BD","1","Myt","Mytilus_spp","Type 7",488,0.0875,5577.14285714286,NA,"Julia Bingham","Finished","Full","Full","8%","3% sand coverage"
+"2015-06-15_YB-BDq5",2015-06-15,2015-06-15,"YB","BD","5","Myt","Mytilus_spp","Type 7",1064,0.0875,12160,NA,"Julia Bingham","Finished","Full","Full","15%","mussel recruit counts may be low due to glare"
+"2015-06-15_YB-BDq7",2015-06-15,2015-06-15,"YB","BD","7","Myt","Mytilus_spp","Type 7",1094,0.0875,12502.8571428571,NA,"Julia Bingham","Finished","Full","Full","11%",""
+"2015-06-15_YB-BDq1",2015-06-15,2015-06-15,"YB","BD","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%","3% sand coverage"
+"2015-06-15_YB-BDq5",2015-06-15,2015-06-15,"YB","BD","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%","mussel recruit counts may be low due to glare"
+"2015-06-15_YB-BDq7",2015-06-15,2015-06-15,"YB","BD","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","11%",""
+"2015-06-15_YB-BDq1",2015-06-15,2015-06-15,"YB","BD","1","Mt","Mytilus_trossulus","Type 15",29,0.0875,331.428571428571,NA,"Julia Bingham","Finished","Full","Full","8%","3% sand coverage"
+"2015-06-15_YB-BDq5",2015-06-15,2015-06-15,"YB","BD","5","Mt","Mytilus_trossulus","Type 15",12,0.0875,137.142857142857,NA,"Julia Bingham","Finished","Full","Full","15%","mussel recruit counts may be low due to glare"
+"2015-06-15_YB-BDq7",2015-06-15,2015-06-15,"YB","BD","7","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","11%",""
+"2015-06-15_YB-BDq1",2015-06-15,2015-06-15,"YB","BD","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%","3% sand coverage"
+"2015-06-15_YB-BDq5",2015-06-15,2015-06-15,"YB","BD","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%","mussel recruit counts may be low due to glare"
+"2015-06-15_YB-BDq7",2015-06-15,2015-06-15,"YB","BD","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","11%",""
+"2015-06-15_YB-BDq1",2015-06-15,2015-06-15,"YB","BD","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%","3% sand coverage"
+"2015-06-15_YB-BDq5",2015-06-15,2015-06-15,"YB","BD","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%","mussel recruit counts may be low due to glare"
+"2015-06-15_YB-BDq7",2015-06-15,2015-06-15,"YB","BD","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","11%",""
+"2015-06-15_YB-BDq1",2015-06-15,2015-06-15,"YB","BD","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%","3% sand coverage"
+"2015-06-15_YB-BDq5",2015-06-15,2015-06-15,"YB","BD","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%","mussel recruit counts may be low due to glare"
+"2015-06-15_YB-BDq7",2015-06-15,2015-06-15,"YB","BD","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","11%",""
+"2015-06-15_YB-BDq1",2015-06-15,2015-06-15,"YB","BD","1","Negg","Nucella_eggs","Type 26",10,0.0875,114.285714285714,NA,"Julia Bingham","Finished","Full","Full","8%","3% sand coverage"
+"2015-06-15_YB-BDq5",2015-06-15,2015-06-15,"YB","BD","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%","mussel recruit counts may be low due to glare"
+"2015-06-15_YB-BDq7",2015-06-15,2015-06-15,"YB","BD","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","11%",""
+"2015-06-15_YB-BDq1",2015-06-15,2015-06-15,"YB","BD","1","No","Nucella_ostrina","Type 9",14,0.0875,160,NA,"Julia Bingham","Finished","Full","Full","8%","3% sand coverage"
+"2015-06-15_YB-BDq5",2015-06-15,2015-06-15,"YB","BD","5","No","Nucella_ostrina","Type 9",22,0.0875,251.428571428571,NA,"Julia Bingham","Finished","Full","Full","15%","mussel recruit counts may be low due to glare"
+"2015-06-15_YB-BDq7",2015-06-15,2015-06-15,"YB","BD","7","No","Nucella_ostrina","Type 9",8,0.0875,91.4285714285714,NA,"Julia Bingham","Finished","Full","Full","11%",""
+"2015-06-15_YB-BDq1",2015-06-15,2015-06-15,"YB","BD","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%","3% sand coverage"
+"2015-06-15_YB-BDq5",2015-06-15,2015-06-15,"YB","BD","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%","mussel recruit counts may be low due to glare"
+"2015-06-15_YB-BDq7",2015-06-15,2015-06-15,"YB","BD","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","11%",""
+"2015-06-15_YB-BDq1",2015-06-15,2015-06-15,"YB","BD","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%","3% sand coverage"
+"2015-06-15_YB-BDq5",2015-06-15,2015-06-15,"YB","BD","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%","mussel recruit counts may be low due to glare"
+"2015-06-15_YB-BDq7",2015-06-15,2015-06-15,"YB","BD","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","11%",""
+"2015-06-15_YB-BDq1",2015-06-15,2015-06-15,"YB","BD","1","Pp","Pollicipes_polymerus","Type 11",2507,0.0875,28651.4285714286,NA,"Julia Bingham","Finished","Full","Full","8%","3% sand coverage"
+"2015-06-15_YB-BDq5",2015-06-15,2015-06-15,"YB","BD","5","Pp","Pollicipes_polymerus","Type 11",1833,0.0875,20948.5714285714,NA,"Julia Bingham","Finished","Full","Full","15%","mussel recruit counts may be low due to glare"
+"2015-06-15_YB-BDq7",2015-06-15,2015-06-15,"YB","BD","7","Pp","Pollicipes_polymerus","Type 11",2328,0.0875,26605.7142857143,NA,"Julia Bingham","Finished","Full","Full","11%",""
+"2015-06-15_YB-BDq1",2015-06-15,2015-06-15,"YB","BD","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%","3% sand coverage"
+"2015-06-15_YB-BDq5",2015-06-15,2015-06-15,"YB","BD","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","15%","mussel recruit counts may be low due to glare"
+"2015-06-15_YB-BDq7",2015-06-15,2015-06-15,"YB","BD","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","11%",""
+"2015-06-15_YB-BDq1",2015-06-15,2015-06-15,"YB","BD","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%","3% sand coverage"
+"2015-06-15_YB-BDq5",2015-06-15,2015-06-15,"YB","BD","5","Sc","Semibalanus_cariosus","Type 5",6,0.0875,68.5714285714286,NA,"Julia Bingham","Finished","Full","Full","15%","mussel recruit counts may be low due to glare"
+"2015-06-15_YB-BDq7",2015-06-15,2015-06-15,"YB","BD","7","Sc","Semibalanus_cariosus","Type 5",10,0.0875,114.285714285714,NA,"Julia Bingham","Finished","Full","Full","11%",""
+"2015-06-15_YB-BDq1",2015-06-15,2015-06-15,"YB","BD","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%","3% sand coverage"
+"2015-06-15_YB-BDq5",2015-06-15,2015-06-15,"YB","BD","5","ScD","Semibalanus_cariosus_(dead)","Type 6",4,0.0875,45.7142857142857,NA,"Julia Bingham","Finished","Full","Full","15%","mussel recruit counts may be low due to glare"
+"2015-06-15_YB-BDq7",2015-06-15,2015-06-15,"YB","BD","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","11%",""
+"2015-06-15_YB-BEq2",2015-06-15,2015-06-15,"YB","BE","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-06-15_YB-BEq3",2015-06-15,2015-06-15,"YB","BE","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-06-15_YB-BEq6",2015-06-15,2015-06-15,"YB","BE","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%",""
+"2015-06-15_YB-BEq2",2015-06-15,2015-06-15,"YB","BE","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-06-15_YB-BEq3",2015-06-15,2015-06-15,"YB","BE","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-06-15_YB-BEq6",2015-06-15,2015-06-15,"YB","BE","6","Ae","Anemones","Type 14",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","60%",""
+"2015-06-15_YB-BEq2",2015-06-15,2015-06-15,"YB","BE","2","Bg","Balanus_glandula","Type 1",155,0.0875,1771.42857142857,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-06-15_YB-BEq3",2015-06-15,2015-06-15,"YB","BE","3","Bg","Balanus_glandula","Type 1",267,0.0875,3051.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-06-15_YB-BEq6",2015-06-15,2015-06-15,"YB","BE","6","Bg","Balanus_glandula","Type 1",218,0.0875,2491.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","60%",""
+"2015-06-15_YB-BEq2",2015-06-15,2015-06-15,"YB","BE","2","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-06-15_YB-BEq3",2015-06-15,2015-06-15,"YB","BE","3","BgD","Balanus_glandula_(dead)","Type 2",27,0.0875,308.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-06-15_YB-BEq6",2015-06-15,2015-06-15,"YB","BE","6","BgD","Balanus_glandula_(dead)","Type 2",45,0.0875,514.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","60%",""
+"2015-06-15_YB-BEq2",2015-06-15,2015-06-15,"YB","BE","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-06-15_YB-BEq3",2015-06-15,2015-06-15,"YB","BE","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-06-15_YB-BEq6",2015-06-15,2015-06-15,"YB","BE","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%",""
+"2015-06-15_YB-BEq2",2015-06-15,2015-06-15,"YB","BE","2","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-06-15_YB-BEq3",2015-06-15,2015-06-15,"YB","BE","3","Cth","Chthamalus_dalli","Type 3",81,0.0875,925.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-06-15_YB-BEq6",2015-06-15,2015-06-15,"YB","BE","6","Cth","Chthamalus_dalli","Type 3",27,0.0875,308.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","60%",""
+"2015-06-15_YB-BEq2",2015-06-15,2015-06-15,"YB","BE","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-06-15_YB-BEq3",2015-06-15,2015-06-15,"YB","BE","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-06-15_YB-BEq6",2015-06-15,2015-06-15,"YB","BE","6","CthD","Chthamalus_dalli (dead)","Type 4",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","60%",""
+"2015-06-15_YB-BEq2",2015-06-15,2015-06-15,"YB","BE","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-06-15_YB-BEq3",2015-06-15,2015-06-15,"YB","BE","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-06-15_YB-BEq6",2015-06-15,2015-06-15,"YB","BE","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%",""
+"2015-06-15_YB-BEq2",2015-06-15,2015-06-15,"YB","BE","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-06-15_YB-BEq3",2015-06-15,2015-06-15,"YB","BE","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-06-15_YB-BEq6",2015-06-15,2015-06-15,"YB","BE","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%",""
+"2015-06-15_YB-BEq2",2015-06-15,2015-06-15,"YB","BE","2","Lim","Limpets","Type 12",169,0.0875,1931.42857142857,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-06-15_YB-BEq3",2015-06-15,2015-06-15,"YB","BE","3","Lim","Limpets","Type 12",358,0.0875,4091.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-06-15_YB-BEq6",2015-06-15,2015-06-15,"YB","BE","6","Lim","Limpets","Type 12",279,0.0875,3188.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","60%",""
+"2015-06-15_YB-BEq2",2015-06-15,2015-06-15,"YB","BE","2","Ls","Littorina_sitkana","Type 13",315,0.0875,3600,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-06-15_YB-BEq3",2015-06-15,2015-06-15,"YB","BE","3","Ls","Littorina_sitkana","Type 13",250,0.0875,2857.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-06-15_YB-BEq6",2015-06-15,2015-06-15,"YB","BE","6","Ls","Littorina_sitkana","Type 13",488,0.0875,5577.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","60%",""
+"2015-06-15_YB-BEq2",2015-06-15,2015-06-15,"YB","BE","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-06-15_YB-BEq3",2015-06-15,2015-06-15,"YB","BE","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-06-15_YB-BEq6",2015-06-15,2015-06-15,"YB","BE","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%",""
+"2015-06-15_YB-BEq2",2015-06-15,2015-06-15,"YB","BE","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-06-15_YB-BEq3",2015-06-15,2015-06-15,"YB","BE","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-06-15_YB-BEq6",2015-06-15,2015-06-15,"YB","BE","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%",""
+"2015-06-15_YB-BEq2",2015-06-15,2015-06-15,"YB","BE","2","Myt","Mytilus_spp","Type 7",47,0.0875,537.142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-06-15_YB-BEq3",2015-06-15,2015-06-15,"YB","BE","3","Myt","Mytilus_spp","Type 7",10,0.0875,114.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-06-15_YB-BEq6",2015-06-15,2015-06-15,"YB","BE","6","Myt","Mytilus_spp","Type 7",12,0.0875,137.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","60%",""
+"2015-06-15_YB-BEq2",2015-06-15,2015-06-15,"YB","BE","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-06-15_YB-BEq3",2015-06-15,2015-06-15,"YB","BE","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-06-15_YB-BEq6",2015-06-15,2015-06-15,"YB","BE","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%",""
+"2015-06-15_YB-BEq2",2015-06-15,2015-06-15,"YB","BE","2","Mt","Mytilus_trossulus","Type 15",5,0.0875,57.1428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-06-15_YB-BEq3",2015-06-15,2015-06-15,"YB","BE","3","Mt","Mytilus_trossulus","Type 15",73,0.0875,834.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-06-15_YB-BEq6",2015-06-15,2015-06-15,"YB","BE","6","Mt","Mytilus_trossulus","Type 15",39,0.0875,445.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","60%",""
+"2015-06-15_YB-BEq2",2015-06-15,2015-06-15,"YB","BE","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-06-15_YB-BEq3",2015-06-15,2015-06-15,"YB","BE","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-06-15_YB-BEq6",2015-06-15,2015-06-15,"YB","BE","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%",""
+"2015-06-15_YB-BEq2",2015-06-15,2015-06-15,"YB","BE","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-06-15_YB-BEq3",2015-06-15,2015-06-15,"YB","BE","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-06-15_YB-BEq6",2015-06-15,2015-06-15,"YB","BE","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%",""
+"2015-06-15_YB-BEq2",2015-06-15,2015-06-15,"YB","BE","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-06-15_YB-BEq3",2015-06-15,2015-06-15,"YB","BE","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-06-15_YB-BEq6",2015-06-15,2015-06-15,"YB","BE","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%",""
+"2015-06-15_YB-BEq2",2015-06-15,2015-06-15,"YB","BE","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-06-15_YB-BEq3",2015-06-15,2015-06-15,"YB","BE","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-06-15_YB-BEq6",2015-06-15,2015-06-15,"YB","BE","6","Negg","Nucella_eggs","Type 26",9,0.0875,102.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","60%",""
+"2015-06-15_YB-BEq2",2015-06-15,2015-06-15,"YB","BE","2","No","Nucella_ostrina","Type 9",17,0.0875,194.285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-06-15_YB-BEq3",2015-06-15,2015-06-15,"YB","BE","3","No","Nucella_ostrina","Type 9",16,0.0875,182.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-06-15_YB-BEq6",2015-06-15,2015-06-15,"YB","BE","6","No","Nucella_ostrina","Type 9",43,0.0875,491.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","60%",""
+"2015-06-15_YB-BEq2",2015-06-15,2015-06-15,"YB","BE","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-06-15_YB-BEq3",2015-06-15,2015-06-15,"YB","BE","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-06-15_YB-BEq6",2015-06-15,2015-06-15,"YB","BE","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%",""
+"2015-06-15_YB-BEq2",2015-06-15,2015-06-15,"YB","BE","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-06-15_YB-BEq3",2015-06-15,2015-06-15,"YB","BE","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-06-15_YB-BEq6",2015-06-15,2015-06-15,"YB","BE","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%",""
+"2015-06-15_YB-BEq2",2015-06-15,2015-06-15,"YB","BE","2","Pp","Pollicipes_polymerus","Type 11",18,0.0875,205.714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-06-15_YB-BEq3",2015-06-15,2015-06-15,"YB","BE","3","Pp","Pollicipes_polymerus","Type 11",21,0.0875,240,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-06-15_YB-BEq6",2015-06-15,2015-06-15,"YB","BE","6","Pp","Pollicipes_polymerus","Type 11",9,0.0875,102.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","60%",""
+"2015-06-15_YB-BEq2",2015-06-15,2015-06-15,"YB","BE","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-06-15_YB-BEq3",2015-06-15,2015-06-15,"YB","BE","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-06-15_YB-BEq6",2015-06-15,2015-06-15,"YB","BE","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%",""
+"2015-06-15_YB-BEq2",2015-06-15,2015-06-15,"YB","BE","2","Sc","Semibalanus_cariosus","Type 5",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-06-15_YB-BEq3",2015-06-15,2015-06-15,"YB","BE","3","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-06-15_YB-BEq6",2015-06-15,2015-06-15,"YB","BE","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%",""
+"2015-06-15_YB-BEq2",2015-06-15,2015-06-15,"YB","BE","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-06-15_YB-BEq3",2015-06-15,2015-06-15,"YB","BE","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-06-15_YB-BEq6",2015-06-15,2015-06-15,"YB","BE","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%",""
+"2015-06-15_YB-BFq1",2015-06-15,2015-06-15,"YB","BF","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-06-15_YB-BFq4",2015-06-15,2015-06-15,"YB","BF","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-06-15_YB-BFq9",2015-06-15,2015-06-15,"YB","BF","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","65%",""
+"2015-06-15_YB-BFq1",2015-06-15,2015-06-15,"YB","BF","1","Ae","Anemones","Type 14",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-06-15_YB-BFq4",2015-06-15,2015-06-15,"YB","BF","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-06-15_YB-BFq9",2015-06-15,2015-06-15,"YB","BF","9","Ae","Anemones","Type 14",13,0.0875,148.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","65%",""
+"2015-06-15_YB-BFq1",2015-06-15,2015-06-15,"YB","BF","1","Bg","Balanus_glandula","Type 1",239,0.0875,2731.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-06-15_YB-BFq4",2015-06-15,2015-06-15,"YB","BF","4","Bg","Balanus_glandula","Type 1",362,0.0875,4137.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-06-15_YB-BFq9",2015-06-15,2015-06-15,"YB","BF","9","Bg","Balanus_glandula","Type 1",57,0.0875,651.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","65%",""
+"2015-06-15_YB-BFq1",2015-06-15,2015-06-15,"YB","BF","1","BgD","Balanus_glandula_(dead)","Type 2",56,0.0875,640,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-06-15_YB-BFq4",2015-06-15,2015-06-15,"YB","BF","4","BgD","Balanus_glandula_(dead)","Type 2",67,0.0875,765.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-06-15_YB-BFq9",2015-06-15,2015-06-15,"YB","BF","9","BgD","Balanus_glandula_(dead)","Type 2",15,0.0875,171.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","65%",""
+"2015-06-15_YB-BFq1",2015-06-15,2015-06-15,"YB","BF","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-06-15_YB-BFq4",2015-06-15,2015-06-15,"YB","BF","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-06-15_YB-BFq9",2015-06-15,2015-06-15,"YB","BF","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","65%",""
+"2015-06-15_YB-BFq1",2015-06-15,2015-06-15,"YB","BF","1","Cth","Chthamalus_dalli","Type 3",105,0.0875,1200,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-06-15_YB-BFq4",2015-06-15,2015-06-15,"YB","BF","4","Cth","Chthamalus_dalli","Type 3",138,0.0875,1577.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-06-15_YB-BFq9",2015-06-15,2015-06-15,"YB","BF","9","Cth","Chthamalus_dalli","Type 3",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","65%",""
+"2015-06-15_YB-BFq1",2015-06-15,2015-06-15,"YB","BF","1","CthD","Chthamalus_dalli (dead)","Type 4",9,0.0875,102.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-06-15_YB-BFq4",2015-06-15,2015-06-15,"YB","BF","4","CthD","Chthamalus_dalli (dead)","Type 4",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-06-15_YB-BFq9",2015-06-15,2015-06-15,"YB","BF","9","CthD","Chthamalus_dalli (dead)","Type 4",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","65%",""
+"2015-06-15_YB-BFq1",2015-06-15,2015-06-15,"YB","BF","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-06-15_YB-BFq4",2015-06-15,2015-06-15,"YB","BF","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-06-15_YB-BFq9",2015-06-15,2015-06-15,"YB","BF","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","65%",""
+"2015-06-15_YB-BFq1",2015-06-15,2015-06-15,"YB","BF","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-06-15_YB-BFq4",2015-06-15,2015-06-15,"YB","BF","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-06-15_YB-BFq9",2015-06-15,2015-06-15,"YB","BF","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","65%",""
+"2015-06-15_YB-BFq1",2015-06-15,2015-06-15,"YB","BF","1","Lim","Limpets","Type 12",285,0.0875,3257.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-06-15_YB-BFq4",2015-06-15,2015-06-15,"YB","BF","4","Lim","Limpets","Type 12",430,0.0875,4914.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-06-15_YB-BFq9",2015-06-15,2015-06-15,"YB","BF","9","Lim","Limpets","Type 12",103,0.0875,1177.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","65%",""
+"2015-06-15_YB-BFq1",2015-06-15,2015-06-15,"YB","BF","1","Ls","Littorina_sitkana","Type 13",324,0.0875,3702.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-06-15_YB-BFq4",2015-06-15,2015-06-15,"YB","BF","4","Ls","Littorina_sitkana","Type 13",330,0.0875,3771.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-06-15_YB-BFq9",2015-06-15,2015-06-15,"YB","BF","9","Ls","Littorina_sitkana","Type 13",378,0.0875,4320,NA,"Beatriz Vaca","Finished","Full","Full","65%",""
+"2015-06-15_YB-BFq1",2015-06-15,2015-06-15,"YB","BF","1","Mc","Mytilus_californianus","Type 17",16,0.0875,182.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-06-15_YB-BFq4",2015-06-15,2015-06-15,"YB","BF","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-06-15_YB-BFq9",2015-06-15,2015-06-15,"YB","BF","9","Mc","Mytilus_californianus","Type 17",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","65%",""
+"2015-06-15_YB-BFq1",2015-06-15,2015-06-15,"YB","BF","1","McD","Mytilus_californianus_(dead)","Type 18",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-06-15_YB-BFq4",2015-06-15,2015-06-15,"YB","BF","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-06-15_YB-BFq9",2015-06-15,2015-06-15,"YB","BF","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","65%",""
+"2015-06-15_YB-BFq1",2015-06-15,2015-06-15,"YB","BF","1","Myt","Mytilus_spp","Type 7",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-06-15_YB-BFq4",2015-06-15,2015-06-15,"YB","BF","4","Myt","Mytilus_spp","Type 7",11,0.0875,125.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-06-15_YB-BFq9",2015-06-15,2015-06-15,"YB","BF","9","Myt","Mytilus_spp","Type 7",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","65%",""
+"2015-06-15_YB-BFq1",2015-06-15,2015-06-15,"YB","BF","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-06-15_YB-BFq4",2015-06-15,2015-06-15,"YB","BF","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-06-15_YB-BFq9",2015-06-15,2015-06-15,"YB","BF","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","65%",""
+"2015-06-15_YB-BFq1",2015-06-15,2015-06-15,"YB","BF","1","Mt","Mytilus_trossulus","Type 15",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-06-15_YB-BFq4",2015-06-15,2015-06-15,"YB","BF","4","Mt","Mytilus_trossulus","Type 15",79,0.0875,902.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-06-15_YB-BFq9",2015-06-15,2015-06-15,"YB","BF","9","Mt","Mytilus_trossulus","Type 15",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","65%",""
+"2015-06-15_YB-BFq1",2015-06-15,2015-06-15,"YB","BF","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-06-15_YB-BFq4",2015-06-15,2015-06-15,"YB","BF","4","MtD","Mytilus_trossulus_(dead)","Type 16",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-06-15_YB-BFq9",2015-06-15,2015-06-15,"YB","BF","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","65%",""
+"2015-06-15_YB-BFq1",2015-06-15,2015-06-15,"YB","BF","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-06-15_YB-BFq4",2015-06-15,2015-06-15,"YB","BF","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-06-15_YB-BFq9",2015-06-15,2015-06-15,"YB","BF","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","65%",""
+"2015-06-15_YB-BFq1",2015-06-15,2015-06-15,"YB","BF","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-06-15_YB-BFq4",2015-06-15,2015-06-15,"YB","BF","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-06-15_YB-BFq9",2015-06-15,2015-06-15,"YB","BF","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","65%",""
+"2015-06-15_YB-BFq1",2015-06-15,2015-06-15,"YB","BF","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-06-15_YB-BFq4",2015-06-15,2015-06-15,"YB","BF","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-06-15_YB-BFq9",2015-06-15,2015-06-15,"YB","BF","9","Negg","Nucella_eggs","Type 26",23,0.0875,262.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","65%",""
+"2015-06-15_YB-BFq1",2015-06-15,2015-06-15,"YB","BF","1","No","Nucella_ostrina","Type 9",27,0.0875,308.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-06-15_YB-BFq4",2015-06-15,2015-06-15,"YB","BF","4","No","Nucella_ostrina","Type 9",42,0.0875,480,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-06-15_YB-BFq9",2015-06-15,2015-06-15,"YB","BF","9","No","Nucella_ostrina","Type 9",22,0.0875,251.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","65%",""
+"2015-06-15_YB-BFq1",2015-06-15,2015-06-15,"YB","BF","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-06-15_YB-BFq4",2015-06-15,2015-06-15,"YB","BF","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-06-15_YB-BFq9",2015-06-15,2015-06-15,"YB","BF","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","65%",""
+"2015-06-15_YB-BFq1",2015-06-15,2015-06-15,"YB","BF","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-06-15_YB-BFq4",2015-06-15,2015-06-15,"YB","BF","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-06-15_YB-BFq9",2015-06-15,2015-06-15,"YB","BF","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","65%",""
+"2015-06-15_YB-BFq1",2015-06-15,2015-06-15,"YB","BF","1","Pp","Pollicipes_polymerus","Type 11",93,0.0875,1062.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-06-15_YB-BFq4",2015-06-15,2015-06-15,"YB","BF","4","Pp","Pollicipes_polymerus","Type 11",22,0.0875,251.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-06-15_YB-BFq9",2015-06-15,2015-06-15,"YB","BF","9","Pp","Pollicipes_polymerus","Type 11",257,0.0875,2937.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","65%",""
+"2015-06-15_YB-BFq1",2015-06-15,2015-06-15,"YB","BF","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-06-15_YB-BFq4",2015-06-15,2015-06-15,"YB","BF","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-06-15_YB-BFq9",2015-06-15,2015-06-15,"YB","BF","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","65%",""
+"2015-06-15_YB-BFq1",2015-06-15,2015-06-15,"YB","BF","1","Sc","Semibalanus_cariosus","Type 5",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-06-15_YB-BFq4",2015-06-15,2015-06-15,"YB","BF","4","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-06-15_YB-BFq9",2015-06-15,2015-06-15,"YB","BF","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","65%",""
+"2015-06-15_YB-BFq1",2015-06-15,2015-06-15,"YB","BF","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-06-15_YB-BFq4",2015-06-15,2015-06-15,"YB","BF","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-06-15_YB-BFq9",2015-06-15,2015-06-15,"YB","BF","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","65%",""
+"2015-06-15_YB-Cq2",2015-06-15,2015-06-15,"YB","C","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-06-15_YB-Cq4",2015-06-15,2015-06-15,"YB","C","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts may be low due to glare."
+"2015-06-15_YB-Cq6",2015-06-15,2015-06-15,"YB","C","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2015-06-15_YB-Cq2",2015-06-15,2015-06-15,"YB","C","2","Ae","Anemones","Type 14",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-06-15_YB-Cq4",2015-06-15,2015-06-15,"YB","C","4","Ae","Anemones","Type 14",12,0.0875,137.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts may be low due to glare."
+"2015-06-15_YB-Cq6",2015-06-15,2015-06-15,"YB","C","6","Ae","Anemones","Type 14",17,0.0875,194.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2015-06-15_YB-Cq2",2015-06-15,2015-06-15,"YB","C","2","Bg","Balanus_glandula","Type 1",48,0.0875,548.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-06-15_YB-Cq4",2015-06-15,2015-06-15,"YB","C","4","Bg","Balanus_glandula","Type 1",29,0.0875,331.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts may be low due to glare."
+"2015-06-15_YB-Cq6",2015-06-15,2015-06-15,"YB","C","6","Bg","Balanus_glandula","Type 1",41,0.0875,468.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2015-06-15_YB-Cq2",2015-06-15,2015-06-15,"YB","C","2","BgD","Balanus_glandula_(dead)","Type 2",28,0.0875,320,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-06-15_YB-Cq4",2015-06-15,2015-06-15,"YB","C","4","BgD","Balanus_glandula_(dead)","Type 2",17,0.0875,194.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts may be low due to glare."
+"2015-06-15_YB-Cq6",2015-06-15,2015-06-15,"YB","C","6","BgD","Balanus_glandula_(dead)","Type 2",19,0.0875,217.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2015-06-15_YB-Cq2",2015-06-15,2015-06-15,"YB","C","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-06-15_YB-Cq4",2015-06-15,2015-06-15,"YB","C","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts may be low due to glare."
+"2015-06-15_YB-Cq6",2015-06-15,2015-06-15,"YB","C","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2015-06-15_YB-Cq2",2015-06-15,2015-06-15,"YB","C","2","Cth","Chthamalus_dalli","Type 3",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-06-15_YB-Cq4",2015-06-15,2015-06-15,"YB","C","4","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts may be low due to glare."
+"2015-06-15_YB-Cq6",2015-06-15,2015-06-15,"YB","C","6","Cth","Chthamalus_dalli","Type 3",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2015-06-15_YB-Cq2",2015-06-15,2015-06-15,"YB","C","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-06-15_YB-Cq4",2015-06-15,2015-06-15,"YB","C","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts may be low due to glare."
+"2015-06-15_YB-Cq6",2015-06-15,2015-06-15,"YB","C","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2015-06-15_YB-Cq2",2015-06-15,2015-06-15,"YB","C","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-06-15_YB-Cq4",2015-06-15,2015-06-15,"YB","C","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts may be low due to glare."
+"2015-06-15_YB-Cq6",2015-06-15,2015-06-15,"YB","C","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2015-06-15_YB-Cq2",2015-06-15,2015-06-15,"YB","C","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-06-15_YB-Cq4",2015-06-15,2015-06-15,"YB","C","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts may be low due to glare."
+"2015-06-15_YB-Cq6",2015-06-15,2015-06-15,"YB","C","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2015-06-15_YB-Cq2",2015-06-15,2015-06-15,"YB","C","2","Lim","Limpets","Type 12",220,0.0875,2514.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-06-15_YB-Cq4",2015-06-15,2015-06-15,"YB","C","4","Lim","Limpets","Type 12",126,0.0875,1440,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts may be low due to glare."
+"2015-06-15_YB-Cq6",2015-06-15,2015-06-15,"YB","C","6","Lim","Limpets","Type 12",366,0.0875,4182.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2015-06-15_YB-Cq2",2015-06-15,2015-06-15,"YB","C","2","Ls","Littorina_sitkana","Type 13",114,0.0875,1302.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-06-15_YB-Cq4",2015-06-15,2015-06-15,"YB","C","4","Ls","Littorina_sitkana","Type 13",74,0.0875,845.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts may be low due to glare."
+"2015-06-15_YB-Cq6",2015-06-15,2015-06-15,"YB","C","6","Ls","Littorina_sitkana","Type 13",72,0.0875,822.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2015-06-15_YB-Cq2",2015-06-15,2015-06-15,"YB","C","2","Mc","Mytilus_californianus","Type 17",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-06-15_YB-Cq4",2015-06-15,2015-06-15,"YB","C","4","Mc","Mytilus_californianus","Type 17",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts may be low due to glare."
+"2015-06-15_YB-Cq6",2015-06-15,2015-06-15,"YB","C","6","Mc","Mytilus_californianus","Type 17",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2015-06-15_YB-Cq2",2015-06-15,2015-06-15,"YB","C","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-06-15_YB-Cq4",2015-06-15,2015-06-15,"YB","C","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts may be low due to glare."
+"2015-06-15_YB-Cq6",2015-06-15,2015-06-15,"YB","C","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2015-06-15_YB-Cq2",2015-06-15,2015-06-15,"YB","C","2","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-06-15_YB-Cq4",2015-06-15,2015-06-15,"YB","C","4","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts may be low due to glare."
+"2015-06-15_YB-Cq6",2015-06-15,2015-06-15,"YB","C","6","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2015-06-15_YB-Cq2",2015-06-15,2015-06-15,"YB","C","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-06-15_YB-Cq4",2015-06-15,2015-06-15,"YB","C","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts may be low due to glare."
+"2015-06-15_YB-Cq6",2015-06-15,2015-06-15,"YB","C","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2015-06-15_YB-Cq2",2015-06-15,2015-06-15,"YB","C","2","Mt","Mytilus_trossulus","Type 15",29,0.0875,331.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-06-15_YB-Cq4",2015-06-15,2015-06-15,"YB","C","4","Mt","Mytilus_trossulus","Type 15",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts may be low due to glare."
+"2015-06-15_YB-Cq6",2015-06-15,2015-06-15,"YB","C","6","Mt","Mytilus_trossulus","Type 15",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2015-06-15_YB-Cq2",2015-06-15,2015-06-15,"YB","C","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-06-15_YB-Cq4",2015-06-15,2015-06-15,"YB","C","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts may be low due to glare."
+"2015-06-15_YB-Cq6",2015-06-15,2015-06-15,"YB","C","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2015-06-15_YB-Cq2",2015-06-15,2015-06-15,"YB","C","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-06-15_YB-Cq4",2015-06-15,2015-06-15,"YB","C","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts may be low due to glare."
+"2015-06-15_YB-Cq6",2015-06-15,2015-06-15,"YB","C","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2015-06-15_YB-Cq2",2015-06-15,2015-06-15,"YB","C","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-06-15_YB-Cq4",2015-06-15,2015-06-15,"YB","C","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts may be low due to glare."
+"2015-06-15_YB-Cq6",2015-06-15,2015-06-15,"YB","C","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2015-06-15_YB-Cq2",2015-06-15,2015-06-15,"YB","C","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-06-15_YB-Cq4",2015-06-15,2015-06-15,"YB","C","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts may be low due to glare."
+"2015-06-15_YB-Cq6",2015-06-15,2015-06-15,"YB","C","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2015-06-15_YB-Cq2",2015-06-15,2015-06-15,"YB","C","2","No","Nucella_ostrina","Type 9",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-06-15_YB-Cq4",2015-06-15,2015-06-15,"YB","C","4","No","Nucella_ostrina","Type 9",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts may be low due to glare."
+"2015-06-15_YB-Cq6",2015-06-15,2015-06-15,"YB","C","6","No","Nucella_ostrina","Type 9",9,0.0875,102.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2015-06-15_YB-Cq2",2015-06-15,2015-06-15,"YB","C","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-06-15_YB-Cq4",2015-06-15,2015-06-15,"YB","C","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts may be low due to glare."
+"2015-06-15_YB-Cq6",2015-06-15,2015-06-15,"YB","C","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2015-06-15_YB-Cq2",2015-06-15,2015-06-15,"YB","C","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-06-15_YB-Cq4",2015-06-15,2015-06-15,"YB","C","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts may be low due to glare."
+"2015-06-15_YB-Cq6",2015-06-15,2015-06-15,"YB","C","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2015-06-15_YB-Cq2",2015-06-15,2015-06-15,"YB","C","2","Pp","Pollicipes_polymerus","Type 11",1025,0.0875,11714.2857142857,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-06-15_YB-Cq4",2015-06-15,2015-06-15,"YB","C","4","Pp","Pollicipes_polymerus","Type 11",953,0.0875,10891.4285714286,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts may be low due to glare."
+"2015-06-15_YB-Cq6",2015-06-15,2015-06-15,"YB","C","6","Pp","Pollicipes_polymerus","Type 11",742,0.0875,8480,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2015-06-15_YB-Cq2",2015-06-15,2015-06-15,"YB","C","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-06-15_YB-Cq4",2015-06-15,2015-06-15,"YB","C","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts may be low due to glare."
+"2015-06-15_YB-Cq6",2015-06-15,2015-06-15,"YB","C","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2015-06-15_YB-Cq2",2015-06-15,2015-06-15,"YB","C","2","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-06-15_YB-Cq4",2015-06-15,2015-06-15,"YB","C","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts may be low due to glare."
+"2015-06-15_YB-Cq6",2015-06-15,2015-06-15,"YB","C","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2015-06-15_YB-Cq2",2015-06-15,2015-06-15,"YB","C","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-06-15_YB-Cq4",2015-06-15,2015-06-15,"YB","C","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts may be low due to glare."
+"2015-06-15_YB-Cq6",2015-06-15,2015-06-15,"YB","C","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2015-06-15_YB-Dq3",2015-06-15,2015-06-15,"YB","D","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare and algae."
+"2015-06-15_YB-Dq4",2015-06-15,2015-06-15,"YB","D","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-06-15_YB-Dq5",2015-06-15,2015-06-15,"YB","D","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to algae and glare."
+"2015-06-15_YB-Dq3",2015-06-15,2015-06-15,"YB","D","3","Ae","Anemones","Type 14",12,0.0875,137.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare and algae."
+"2015-06-15_YB-Dq4",2015-06-15,2015-06-15,"YB","D","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-06-15_YB-Dq5",2015-06-15,2015-06-15,"YB","D","5","Ae","Anemones","Type 14",11,0.0875,125.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to algae and glare."
+"2015-06-15_YB-Dq3",2015-06-15,2015-06-15,"YB","D","3","Bg","Balanus_glandula","Type 1",219,0.0875,2502.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare and algae."
+"2015-06-15_YB-Dq4",2015-06-15,2015-06-15,"YB","D","4","Bg","Balanus_glandula","Type 1",653,0.0875,7462.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-06-15_YB-Dq5",2015-06-15,2015-06-15,"YB","D","5","Bg","Balanus_glandula","Type 1",304,0.0875,3474.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to algae and glare."
+"2015-06-15_YB-Dq3",2015-06-15,2015-06-15,"YB","D","3","BgD","Balanus_glandula_(dead)","Type 2",68,0.0875,777.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare and algae."
+"2015-06-15_YB-Dq4",2015-06-15,2015-06-15,"YB","D","4","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-06-15_YB-Dq5",2015-06-15,2015-06-15,"YB","D","5","BgD","Balanus_glandula_(dead)","Type 2",37,0.0875,422.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to algae and glare."
+"2015-06-15_YB-Dq3",2015-06-15,2015-06-15,"YB","D","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare and algae."
+"2015-06-15_YB-Dq4",2015-06-15,2015-06-15,"YB","D","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-06-15_YB-Dq5",2015-06-15,2015-06-15,"YB","D","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to algae and glare."
+"2015-06-15_YB-Dq3",2015-06-15,2015-06-15,"YB","D","3","Cth","Chthamalus_dalli","Type 3",18,0.0875,205.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare and algae."
+"2015-06-15_YB-Dq4",2015-06-15,2015-06-15,"YB","D","4","Cth","Chthamalus_dalli","Type 3",30,0.0875,342.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-06-15_YB-Dq5",2015-06-15,2015-06-15,"YB","D","5","Cth","Chthamalus_dalli","Type 3",46,0.0875,525.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to algae and glare."
+"2015-06-15_YB-Dq3",2015-06-15,2015-06-15,"YB","D","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare and algae."
+"2015-06-15_YB-Dq4",2015-06-15,2015-06-15,"YB","D","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-06-15_YB-Dq5",2015-06-15,2015-06-15,"YB","D","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to algae and glare."
+"2015-06-15_YB-Dq3",2015-06-15,2015-06-15,"YB","D","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare and algae."
+"2015-06-15_YB-Dq4",2015-06-15,2015-06-15,"YB","D","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-06-15_YB-Dq5",2015-06-15,2015-06-15,"YB","D","5","Emp","Emplectonema worm","Type 23",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to algae and glare."
+"2015-06-15_YB-Dq3",2015-06-15,2015-06-15,"YB","D","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare and algae."
+"2015-06-15_YB-Dq4",2015-06-15,2015-06-15,"YB","D","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-06-15_YB-Dq5",2015-06-15,2015-06-15,"YB","D","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to algae and glare."
+"2015-06-15_YB-Dq3",2015-06-15,2015-06-15,"YB","D","3","Lim","Limpets","Type 12",232,0.0875,2651.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare and algae."
+"2015-06-15_YB-Dq4",2015-06-15,2015-06-15,"YB","D","4","Lim","Limpets","Type 12",223,0.0875,2548.57142857143,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-06-15_YB-Dq5",2015-06-15,2015-06-15,"YB","D","5","Lim","Limpets","Type 12",341,0.0875,3897.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to algae and glare."
+"2015-06-15_YB-Dq3",2015-06-15,2015-06-15,"YB","D","3","Ls","Littorina_sitkana","Type 13",187,0.0875,2137.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare and algae."
+"2015-06-15_YB-Dq4",2015-06-15,2015-06-15,"YB","D","4","Ls","Littorina_sitkana","Type 13",412,0.0875,4708.57142857143,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-06-15_YB-Dq5",2015-06-15,2015-06-15,"YB","D","5","Ls","Littorina_sitkana","Type 13",168,0.0875,1920,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to algae and glare."
+"2015-06-15_YB-Dq3",2015-06-15,2015-06-15,"YB","D","3","Mc","Mytilus_californianus","Type 17",16,0.0875,182.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare and algae."
+"2015-06-15_YB-Dq4",2015-06-15,2015-06-15,"YB","D","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-06-15_YB-Dq5",2015-06-15,2015-06-15,"YB","D","5","Mc","Mytilus_californianus","Type 17",30,0.0875,342.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to algae and glare."
+"2015-06-15_YB-Dq3",2015-06-15,2015-06-15,"YB","D","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare and algae."
+"2015-06-15_YB-Dq4",2015-06-15,2015-06-15,"YB","D","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-06-15_YB-Dq5",2015-06-15,2015-06-15,"YB","D","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to algae and glare."
+"2015-06-15_YB-Dq3",2015-06-15,2015-06-15,"YB","D","3","Myt","Mytilus_spp","Type 7",9,0.0875,102.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare and algae."
+"2015-06-15_YB-Dq4",2015-06-15,2015-06-15,"YB","D","4","Myt","Mytilus_spp","Type 7",86,0.0875,982.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-06-15_YB-Dq5",2015-06-15,2015-06-15,"YB","D","5","Myt","Mytilus_spp","Type 7",49,0.0875,560,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to algae and glare."
+"2015-06-15_YB-Dq3",2015-06-15,2015-06-15,"YB","D","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare and algae."
+"2015-06-15_YB-Dq4",2015-06-15,2015-06-15,"YB","D","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-06-15_YB-Dq5",2015-06-15,2015-06-15,"YB","D","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to algae and glare."
+"2015-06-15_YB-Dq3",2015-06-15,2015-06-15,"YB","D","3","Mt","Mytilus_trossulus","Type 15",17,0.0875,194.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare and algae."
+"2015-06-15_YB-Dq4",2015-06-15,2015-06-15,"YB","D","4","Mt","Mytilus_trossulus","Type 15",50,0.0875,571.428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-06-15_YB-Dq5",2015-06-15,2015-06-15,"YB","D","5","Mt","Mytilus_trossulus","Type 15",26,0.0875,297.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to algae and glare."
+"2015-06-15_YB-Dq3",2015-06-15,2015-06-15,"YB","D","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare and algae."
+"2015-06-15_YB-Dq4",2015-06-15,2015-06-15,"YB","D","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-06-15_YB-Dq5",2015-06-15,2015-06-15,"YB","D","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to algae and glare."
+"2015-06-15_YB-Dq3",2015-06-15,2015-06-15,"YB","D","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare and algae."
+"2015-06-15_YB-Dq4",2015-06-15,2015-06-15,"YB","D","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-06-15_YB-Dq5",2015-06-15,2015-06-15,"YB","D","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to algae and glare."
+"2015-06-15_YB-Dq3",2015-06-15,2015-06-15,"YB","D","3","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare and algae."
+"2015-06-15_YB-Dq4",2015-06-15,2015-06-15,"YB","D","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-06-15_YB-Dq5",2015-06-15,2015-06-15,"YB","D","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to algae and glare."
+"2015-06-15_YB-Dq3",2015-06-15,2015-06-15,"YB","D","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare and algae."
+"2015-06-15_YB-Dq4",2015-06-15,2015-06-15,"YB","D","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-06-15_YB-Dq5",2015-06-15,2015-06-15,"YB","D","5","Negg","Nucella_eggs","Type 26",9,0.0875,102.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to algae and glare."
+"2015-06-15_YB-Dq3",2015-06-15,2015-06-15,"YB","D","3","No","Nucella_ostrina","Type 9",14,0.0875,160,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare and algae."
+"2015-06-15_YB-Dq4",2015-06-15,2015-06-15,"YB","D","4","No","Nucella_ostrina","Type 9",19,0.0875,217.142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-06-15_YB-Dq5",2015-06-15,2015-06-15,"YB","D","5","No","Nucella_ostrina","Type 9",17,0.0875,194.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to algae and glare."
+"2015-06-15_YB-Dq3",2015-06-15,2015-06-15,"YB","D","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare and algae."
+"2015-06-15_YB-Dq4",2015-06-15,2015-06-15,"YB","D","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-06-15_YB-Dq5",2015-06-15,2015-06-15,"YB","D","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to algae and glare."
+"2015-06-15_YB-Dq3",2015-06-15,2015-06-15,"YB","D","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare and algae."
+"2015-06-15_YB-Dq4",2015-06-15,2015-06-15,"YB","D","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-06-15_YB-Dq5",2015-06-15,2015-06-15,"YB","D","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to algae and glare."
+"2015-06-15_YB-Dq3",2015-06-15,2015-06-15,"YB","D","3","Pp","Pollicipes_polymerus","Type 11",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare and algae."
+"2015-06-15_YB-Dq4",2015-06-15,2015-06-15,"YB","D","4","Pp","Pollicipes_polymerus","Type 11",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-06-15_YB-Dq5",2015-06-15,2015-06-15,"YB","D","5","Pp","Pollicipes_polymerus","Type 11",16,0.0875,182.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to algae and glare."
+"2015-06-15_YB-Dq3",2015-06-15,2015-06-15,"YB","D","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare and algae."
+"2015-06-15_YB-Dq4",2015-06-15,2015-06-15,"YB","D","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-06-15_YB-Dq5",2015-06-15,2015-06-15,"YB","D","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to algae and glare."
+"2015-06-15_YB-Dq3",2015-06-15,2015-06-15,"YB","D","3","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare and algae."
+"2015-06-15_YB-Dq4",2015-06-15,2015-06-15,"YB","D","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-06-15_YB-Dq5",2015-06-15,2015-06-15,"YB","D","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to algae and glare."
+"2015-06-15_YB-Dq3",2015-06-15,2015-06-15,"YB","D","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare and algae."
+"2015-06-15_YB-Dq4",2015-06-15,2015-06-15,"YB","D","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%",""
+"2015-06-15_YB-Dq5",2015-06-15,2015-06-15,"YB","D","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to algae and glare."
+"2015-06-15_YB-Eq3",2015-06-15,2015-06-15,"YB","E","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur"
+"2015-06-15_YB-Eq4",2015-06-15,2015-06-15,"YB","E","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur"
+"2015-06-15_YB-Eq8",2015-06-15,2015-06-15,"YB","E","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-06-15_YB-Eq3",2015-06-15,2015-06-15,"YB","E","3","Ae","Anemones","Type 14",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur"
+"2015-06-15_YB-Eq4",2015-06-15,2015-06-15,"YB","E","4","Ae","Anemones","Type 14",5,0.0875,57.1428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur"
+"2015-06-15_YB-Eq8",2015-06-15,2015-06-15,"YB","E","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-06-15_YB-Eq3",2015-06-15,2015-06-15,"YB","E","3","Bg","Balanus_glandula","Type 1",35,0.0875,400,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur"
+"2015-06-15_YB-Eq4",2015-06-15,2015-06-15,"YB","E","4","Bg","Balanus_glandula","Type 1",28,0.0875,320,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur"
+"2015-06-15_YB-Eq8",2015-06-15,2015-06-15,"YB","E","8","Bg","Balanus_glandula","Type 1",13,0.0875,148.571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-06-15_YB-Eq3",2015-06-15,2015-06-15,"YB","E","3","BgD","Balanus_glandula_(dead)","Type 2",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur"
+"2015-06-15_YB-Eq4",2015-06-15,2015-06-15,"YB","E","4","BgD","Balanus_glandula_(dead)","Type 2",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur"
+"2015-06-15_YB-Eq8",2015-06-15,2015-06-15,"YB","E","8","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-06-15_YB-Eq3",2015-06-15,2015-06-15,"YB","E","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur"
+"2015-06-15_YB-Eq4",2015-06-15,2015-06-15,"YB","E","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur"
+"2015-06-15_YB-Eq8",2015-06-15,2015-06-15,"YB","E","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-06-15_YB-Eq3",2015-06-15,2015-06-15,"YB","E","3","Cth","Chthamalus_dalli","Type 3",7,0.0875,80,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur"
+"2015-06-15_YB-Eq4",2015-06-15,2015-06-15,"YB","E","4","Cth","Chthamalus_dalli","Type 3",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur"
+"2015-06-15_YB-Eq8",2015-06-15,2015-06-15,"YB","E","8","Cth","Chthamalus_dalli","Type 3",4,0.0875,45.7142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-06-15_YB-Eq3",2015-06-15,2015-06-15,"YB","E","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur"
+"2015-06-15_YB-Eq4",2015-06-15,2015-06-15,"YB","E","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur"
+"2015-06-15_YB-Eq8",2015-06-15,2015-06-15,"YB","E","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-06-15_YB-Eq3",2015-06-15,2015-06-15,"YB","E","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur"
+"2015-06-15_YB-Eq4",2015-06-15,2015-06-15,"YB","E","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur"
+"2015-06-15_YB-Eq8",2015-06-15,2015-06-15,"YB","E","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-06-15_YB-Eq3",2015-06-15,2015-06-15,"YB","E","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur"
+"2015-06-15_YB-Eq4",2015-06-15,2015-06-15,"YB","E","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur"
+"2015-06-15_YB-Eq8",2015-06-15,2015-06-15,"YB","E","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-06-15_YB-Eq3",2015-06-15,2015-06-15,"YB","E","3","Lim","Limpets","Type 12",116,0.0875,1325.71428571429,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur"
+"2015-06-15_YB-Eq4",2015-06-15,2015-06-15,"YB","E","4","Lim","Limpets","Type 12",97,0.0875,1108.57142857143,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur"
+"2015-06-15_YB-Eq8",2015-06-15,2015-06-15,"YB","E","8","Lim","Limpets","Type 12",39,0.0875,445.714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-06-15_YB-Eq3",2015-06-15,2015-06-15,"YB","E","3","Ls","Littorina_sitkana","Type 13",165,0.0875,1885.71428571429,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur"
+"2015-06-15_YB-Eq4",2015-06-15,2015-06-15,"YB","E","4","Ls","Littorina_sitkana","Type 13",114,0.0875,1302.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur"
+"2015-06-15_YB-Eq8",2015-06-15,2015-06-15,"YB","E","8","Ls","Littorina_sitkana","Type 13",56,0.0875,640,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-06-15_YB-Eq3",2015-06-15,2015-06-15,"YB","E","3","Mc","Mytilus_californianus","Type 17",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur"
+"2015-06-15_YB-Eq4",2015-06-15,2015-06-15,"YB","E","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur"
+"2015-06-15_YB-Eq8",2015-06-15,2015-06-15,"YB","E","8","Mc","Mytilus_californianus","Type 17",4,0.0875,45.7142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-06-15_YB-Eq3",2015-06-15,2015-06-15,"YB","E","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur"
+"2015-06-15_YB-Eq4",2015-06-15,2015-06-15,"YB","E","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur"
+"2015-06-15_YB-Eq8",2015-06-15,2015-06-15,"YB","E","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-06-15_YB-Eq3",2015-06-15,2015-06-15,"YB","E","3","Myt","Mytilus_spp","Type 7",4,0.0875,45.7142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur"
+"2015-06-15_YB-Eq4",2015-06-15,2015-06-15,"YB","E","4","Myt","Mytilus_spp","Type 7",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur"
+"2015-06-15_YB-Eq8",2015-06-15,2015-06-15,"YB","E","8","Myt","Mytilus_spp","Type 7",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-06-15_YB-Eq3",2015-06-15,2015-06-15,"YB","E","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur"
+"2015-06-15_YB-Eq4",2015-06-15,2015-06-15,"YB","E","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur"
+"2015-06-15_YB-Eq8",2015-06-15,2015-06-15,"YB","E","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-06-15_YB-Eq3",2015-06-15,2015-06-15,"YB","E","3","Mt","Mytilus_trossulus","Type 15",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur"
+"2015-06-15_YB-Eq4",2015-06-15,2015-06-15,"YB","E","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur"
+"2015-06-15_YB-Eq8",2015-06-15,2015-06-15,"YB","E","8","Mt","Mytilus_trossulus","Type 15",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-06-15_YB-Eq3",2015-06-15,2015-06-15,"YB","E","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur"
+"2015-06-15_YB-Eq4",2015-06-15,2015-06-15,"YB","E","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur"
+"2015-06-15_YB-Eq8",2015-06-15,2015-06-15,"YB","E","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-06-15_YB-Eq3",2015-06-15,2015-06-15,"YB","E","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur"
+"2015-06-15_YB-Eq4",2015-06-15,2015-06-15,"YB","E","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur"
+"2015-06-15_YB-Eq8",2015-06-15,2015-06-15,"YB","E","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-06-15_YB-Eq3",2015-06-15,2015-06-15,"YB","E","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur"
+"2015-06-15_YB-Eq4",2015-06-15,2015-06-15,"YB","E","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur"
+"2015-06-15_YB-Eq8",2015-06-15,2015-06-15,"YB","E","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-06-15_YB-Eq3",2015-06-15,2015-06-15,"YB","E","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur"
+"2015-06-15_YB-Eq4",2015-06-15,2015-06-15,"YB","E","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur"
+"2015-06-15_YB-Eq8",2015-06-15,2015-06-15,"YB","E","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-06-15_YB-Eq3",2015-06-15,2015-06-15,"YB","E","3","No","Nucella_ostrina","Type 9",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur"
+"2015-06-15_YB-Eq4",2015-06-15,2015-06-15,"YB","E","4","No","Nucella_ostrina","Type 9",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur"
+"2015-06-15_YB-Eq8",2015-06-15,2015-06-15,"YB","E","8","No","Nucella_ostrina","Type 9",4,0.0875,45.7142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-06-15_YB-Eq3",2015-06-15,2015-06-15,"YB","E","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur"
+"2015-06-15_YB-Eq4",2015-06-15,2015-06-15,"YB","E","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur"
+"2015-06-15_YB-Eq8",2015-06-15,2015-06-15,"YB","E","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-06-15_YB-Eq3",2015-06-15,2015-06-15,"YB","E","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur"
+"2015-06-15_YB-Eq4",2015-06-15,2015-06-15,"YB","E","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur"
+"2015-06-15_YB-Eq8",2015-06-15,2015-06-15,"YB","E","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-06-15_YB-Eq3",2015-06-15,2015-06-15,"YB","E","3","Pp","Pollicipes_polymerus","Type 11",443,0.0875,5062.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur"
+"2015-06-15_YB-Eq4",2015-06-15,2015-06-15,"YB","E","4","Pp","Pollicipes_polymerus","Type 11",655,0.0875,7485.71428571429,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur"
+"2015-06-15_YB-Eq8",2015-06-15,2015-06-15,"YB","E","8","Pp","Pollicipes_polymerus","Type 11",1010,0.0875,11542.8571428571,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-06-15_YB-Eq3",2015-06-15,2015-06-15,"YB","E","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur"
+"2015-06-15_YB-Eq4",2015-06-15,2015-06-15,"YB","E","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur"
+"2015-06-15_YB-Eq8",2015-06-15,2015-06-15,"YB","E","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-06-15_YB-Eq3",2015-06-15,2015-06-15,"YB","E","3","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur"
+"2015-06-15_YB-Eq4",2015-06-15,2015-06-15,"YB","E","4","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur"
+"2015-06-15_YB-Eq8",2015-06-15,2015-06-15,"YB","E","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-06-15_YB-Eq3",2015-06-15,2015-06-15,"YB","E","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur"
+"2015-06-15_YB-Eq4",2015-06-15,2015-06-15,"YB","E","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur"
+"2015-06-15_YB-Eq8",2015-06-15,2015-06-15,"YB","E","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-06-15_YB-Fq4",2015-06-15,2015-06-15,"YB","F","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","13%","Counts may be low due to glare and blur."
+"2015-06-15_YB-Fq5",2015-06-15,2015-06-15,"YB","F","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and blur."
+"2015-06-15_YB-Fq6",2015-06-15,2015-06-15,"YB","F","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","27%","Counts may be low due to glare and blur."
+"2015-06-15_YB-Fq4",2015-06-15,2015-06-15,"YB","F","4","Ae","Anemones","Type 14",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Full","13%","Counts may be low due to glare and blur."
+"2015-06-15_YB-Fq5",2015-06-15,2015-06-15,"YB","F","5","Ae","Anemones","Type 14",19,0.0875,217.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and blur."
+"2015-06-15_YB-Fq6",2015-06-15,2015-06-15,"YB","F","6","Ae","Anemones","Type 14",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Full","27%","Counts may be low due to glare and blur."
+"2015-06-15_YB-Fq4",2015-06-15,2015-06-15,"YB","F","4","Bg","Balanus_glandula","Type 1",689,0.0875,7874.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","13%","Counts may be low due to glare and blur."
+"2015-06-15_YB-Fq5",2015-06-15,2015-06-15,"YB","F","5","Bg","Balanus_glandula","Type 1",297,0.0875,3394.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and blur."
+"2015-06-15_YB-Fq6",2015-06-15,2015-06-15,"YB","F","6","Bg","Balanus_glandula","Type 1",338,0.0875,3862.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","27%","Counts may be low due to glare and blur."
+"2015-06-15_YB-Fq4",2015-06-15,2015-06-15,"YB","F","4","BgD","Balanus_glandula_(dead)","Type 2",17,0.0875,194.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","13%","Counts may be low due to glare and blur."
+"2015-06-15_YB-Fq5",2015-06-15,2015-06-15,"YB","F","5","BgD","Balanus_glandula_(dead)","Type 2",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and blur."
+"2015-06-15_YB-Fq6",2015-06-15,2015-06-15,"YB","F","6","BgD","Balanus_glandula_(dead)","Type 2",28,0.0875,320,NA,"Beatriz Vaca","Finished","Full","Full","27%","Counts may be low due to glare and blur."
+"2015-06-15_YB-Fq4",2015-06-15,2015-06-15,"YB","F","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","13%","Counts may be low due to glare and blur."
+"2015-06-15_YB-Fq5",2015-06-15,2015-06-15,"YB","F","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and blur."
+"2015-06-15_YB-Fq6",2015-06-15,2015-06-15,"YB","F","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","27%","Counts may be low due to glare and blur."
+"2015-06-15_YB-Fq4",2015-06-15,2015-06-15,"YB","F","4","Cth","Chthamalus_dalli","Type 3",438,0.0875,5005.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","13%","Counts may be low due to glare and blur."
+"2015-06-15_YB-Fq5",2015-06-15,2015-06-15,"YB","F","5","Cth","Chthamalus_dalli","Type 3",121,0.0875,1382.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and blur."
+"2015-06-15_YB-Fq6",2015-06-15,2015-06-15,"YB","F","6","Cth","Chthamalus_dalli","Type 3",89,0.0875,1017.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","27%","Counts may be low due to glare and blur."
+"2015-06-15_YB-Fq4",2015-06-15,2015-06-15,"YB","F","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","13%","Counts may be low due to glare and blur."
+"2015-06-15_YB-Fq5",2015-06-15,2015-06-15,"YB","F","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and blur."
+"2015-06-15_YB-Fq6",2015-06-15,2015-06-15,"YB","F","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","27%","Counts may be low due to glare and blur."
+"2015-06-15_YB-Fq4",2015-06-15,2015-06-15,"YB","F","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","13%","Counts may be low due to glare and blur."
+"2015-06-15_YB-Fq5",2015-06-15,2015-06-15,"YB","F","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and blur."
+"2015-06-15_YB-Fq6",2015-06-15,2015-06-15,"YB","F","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","27%","Counts may be low due to glare and blur."
+"2015-06-15_YB-Fq4",2015-06-15,2015-06-15,"YB","F","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","13%","Counts may be low due to glare and blur."
+"2015-06-15_YB-Fq5",2015-06-15,2015-06-15,"YB","F","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and blur."
+"2015-06-15_YB-Fq6",2015-06-15,2015-06-15,"YB","F","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","27%","Counts may be low due to glare and blur."
+"2015-06-15_YB-Fq4",2015-06-15,2015-06-15,"YB","F","4","Lim","Limpets","Type 12",452,0.0875,5165.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","13%","Counts may be low due to glare and blur."
+"2015-06-15_YB-Fq5",2015-06-15,2015-06-15,"YB","F","5","Lim","Limpets","Type 12",534,0.0875,6102.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and blur."
+"2015-06-15_YB-Fq6",2015-06-15,2015-06-15,"YB","F","6","Lim","Limpets","Type 12",441,0.0875,5040,NA,"Beatriz Vaca","Finished","Full","Full","27%","Counts may be low due to glare and blur."
+"2015-06-15_YB-Fq4",2015-06-15,2015-06-15,"YB","F","4","Ls","Littorina_sitkana","Type 13",230,0.0875,2628.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","13%","Counts may be low due to glare and blur."
+"2015-06-15_YB-Fq5",2015-06-15,2015-06-15,"YB","F","5","Ls","Littorina_sitkana","Type 13",250,0.0875,2857.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and blur."
+"2015-06-15_YB-Fq6",2015-06-15,2015-06-15,"YB","F","6","Ls","Littorina_sitkana","Type 13",214,0.0875,2445.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","27%","Counts may be low due to glare and blur."
+"2015-06-15_YB-Fq4",2015-06-15,2015-06-15,"YB","F","4","Mc","Mytilus_californianus","Type 17",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","13%","Counts may be low due to glare and blur."
+"2015-06-15_YB-Fq5",2015-06-15,2015-06-15,"YB","F","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and blur."
+"2015-06-15_YB-Fq6",2015-06-15,2015-06-15,"YB","F","6","Mc","Mytilus_californianus","Type 17",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","27%","Counts may be low due to glare and blur."
+"2015-06-15_YB-Fq4",2015-06-15,2015-06-15,"YB","F","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","13%","Counts may be low due to glare and blur."
+"2015-06-15_YB-Fq5",2015-06-15,2015-06-15,"YB","F","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and blur."
+"2015-06-15_YB-Fq6",2015-06-15,2015-06-15,"YB","F","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","27%","Counts may be low due to glare and blur."
+"2015-06-15_YB-Fq4",2015-06-15,2015-06-15,"YB","F","4","Myt","Mytilus_spp","Type 7",21,0.0875,240,NA,"Beatriz Vaca","Finished","Full","Full","13%","Counts may be low due to glare and blur."
+"2015-06-15_YB-Fq5",2015-06-15,2015-06-15,"YB","F","5","Myt","Mytilus_spp","Type 7",18,0.0875,205.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and blur."
+"2015-06-15_YB-Fq6",2015-06-15,2015-06-15,"YB","F","6","Myt","Mytilus_spp","Type 7",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","27%","Counts may be low due to glare and blur."
+"2015-06-15_YB-Fq4",2015-06-15,2015-06-15,"YB","F","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","13%","Counts may be low due to glare and blur."
+"2015-06-15_YB-Fq5",2015-06-15,2015-06-15,"YB","F","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and blur."
+"2015-06-15_YB-Fq6",2015-06-15,2015-06-15,"YB","F","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","27%","Counts may be low due to glare and blur."
+"2015-06-15_YB-Fq4",2015-06-15,2015-06-15,"YB","F","4","Mt","Mytilus_trossulus","Type 15",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","13%","Counts may be low due to glare and blur."
+"2015-06-15_YB-Fq5",2015-06-15,2015-06-15,"YB","F","5","Mt","Mytilus_trossulus","Type 15",39,0.0875,445.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and blur."
+"2015-06-15_YB-Fq6",2015-06-15,2015-06-15,"YB","F","6","Mt","Mytilus_trossulus","Type 15",13,0.0875,148.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","27%","Counts may be low due to glare and blur."
+"2015-06-15_YB-Fq4",2015-06-15,2015-06-15,"YB","F","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","13%","Counts may be low due to glare and blur."
+"2015-06-15_YB-Fq5",2015-06-15,2015-06-15,"YB","F","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and blur."
+"2015-06-15_YB-Fq6",2015-06-15,2015-06-15,"YB","F","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","27%","Counts may be low due to glare and blur."
+"2015-06-15_YB-Fq4",2015-06-15,2015-06-15,"YB","F","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","13%","Counts may be low due to glare and blur."
+"2015-06-15_YB-Fq5",2015-06-15,2015-06-15,"YB","F","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and blur."
+"2015-06-15_YB-Fq6",2015-06-15,2015-06-15,"YB","F","6","Ner","Nereis_worm","Type 24",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","27%","Counts may be low due to glare and blur."
+"2015-06-15_YB-Fq4",2015-06-15,2015-06-15,"YB","F","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","13%","Counts may be low due to glare and blur."
+"2015-06-15_YB-Fq5",2015-06-15,2015-06-15,"YB","F","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and blur."
+"2015-06-15_YB-Fq6",2015-06-15,2015-06-15,"YB","F","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","27%","Counts may be low due to glare and blur."
+"2015-06-15_YB-Fq4",2015-06-15,2015-06-15,"YB","F","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","13%","Counts may be low due to glare and blur."
+"2015-06-15_YB-Fq5",2015-06-15,2015-06-15,"YB","F","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and blur."
+"2015-06-15_YB-Fq6",2015-06-15,2015-06-15,"YB","F","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","27%","Counts may be low due to glare and blur."
+"2015-06-15_YB-Fq4",2015-06-15,2015-06-15,"YB","F","4","No","Nucella_ostrina","Type 9",10,0.0875,114.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","13%","Counts may be low due to glare and blur."
+"2015-06-15_YB-Fq5",2015-06-15,2015-06-15,"YB","F","5","No","Nucella_ostrina","Type 9",21,0.0875,240,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and blur."
+"2015-06-15_YB-Fq6",2015-06-15,2015-06-15,"YB","F","6","No","Nucella_ostrina","Type 9",22,0.0875,251.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","27%","Counts may be low due to glare and blur."
+"2015-06-15_YB-Fq4",2015-06-15,2015-06-15,"YB","F","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","13%","Counts may be low due to glare and blur."
+"2015-06-15_YB-Fq5",2015-06-15,2015-06-15,"YB","F","5","Wor","Other_worm spp.","Type 25",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and blur."
+"2015-06-15_YB-Fq6",2015-06-15,2015-06-15,"YB","F","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","27%","Counts may be low due to glare and blur."
+"2015-06-15_YB-Fq4",2015-06-15,2015-06-15,"YB","F","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","13%","Counts may be low due to glare and blur."
+"2015-06-15_YB-Fq5",2015-06-15,2015-06-15,"YB","F","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and blur."
+"2015-06-15_YB-Fq6",2015-06-15,2015-06-15,"YB","F","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","27%","Counts may be low due to glare and blur."
+"2015-06-15_YB-Fq4",2015-06-15,2015-06-15,"YB","F","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","13%","Counts may be low due to glare and blur."
+"2015-06-15_YB-Fq5",2015-06-15,2015-06-15,"YB","F","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and blur."
+"2015-06-15_YB-Fq6",2015-06-15,2015-06-15,"YB","F","6","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","27%","Counts may be low due to glare and blur."
+"2015-06-15_YB-Fq4",2015-06-15,2015-06-15,"YB","F","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","13%","Counts may be low due to glare and blur."
+"2015-06-15_YB-Fq5",2015-06-15,2015-06-15,"YB","F","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and blur."
+"2015-06-15_YB-Fq6",2015-06-15,2015-06-15,"YB","F","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","27%","Counts may be low due to glare and blur."
+"2015-06-15_YB-Fq4",2015-06-15,2015-06-15,"YB","F","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","13%","Counts may be low due to glare and blur."
+"2015-06-15_YB-Fq5",2015-06-15,2015-06-15,"YB","F","5","Sc","Semibalanus_cariosus","Type 5",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and blur."
+"2015-06-15_YB-Fq6",2015-06-15,2015-06-15,"YB","F","6","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","27%","Counts may be low due to glare and blur."
+"2015-06-15_YB-Fq4",2015-06-15,2015-06-15,"YB","F","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","13%","Counts may be low due to glare and blur."
+"2015-06-15_YB-Fq5",2015-06-15,2015-06-15,"YB","F","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and blur."
+"2015-06-15_YB-Fq6",2015-06-15,2015-06-15,"YB","F","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","27%","Counts may be low due to glare and blur."
+"2015-06-15_YB-Gq3",2015-06-15,2015-06-15,"YB","G","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","37%",""
+"2015-06-15_YB-Gq5",2015-06-15,2015-06-15,"YB","G","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to sand cover and glare. ~20%sand cover."
+"2015-06-15_YB-Gq8",2015-06-15,2015-06-15,"YB","G","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","7%","Counts may be low due to blurry patches"
+"2015-06-15_YB-Gq3",2015-06-15,2015-06-15,"YB","G","3","Ae","Anemones","Type 14",9,0.0875,102.857142857143,NA,"Celeste Moen","Finished","Full","Full","37%",""
+"2015-06-15_YB-Gq5",2015-06-15,2015-06-15,"YB","G","5","Ae","Anemones","Type 14",25,0.0875,285.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to sand cover and glare. ~20%sand cover."
+"2015-06-15_YB-Gq8",2015-06-15,2015-06-15,"YB","G","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","7%","Counts may be low due to blurry patches"
+"2015-06-15_YB-Gq3",2015-06-15,2015-06-15,"YB","G","3","Bg","Balanus_glandula","Type 1",23,0.0875,262.857142857143,NA,"Celeste Moen","Finished","Full","Full","37%",""
+"2015-06-15_YB-Gq5",2015-06-15,2015-06-15,"YB","G","5","Bg","Balanus_glandula","Type 1",18,0.0875,205.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to sand cover and glare. ~20%sand cover."
+"2015-06-15_YB-Gq8",2015-06-15,2015-06-15,"YB","G","8","Bg","Balanus_glandula","Type 1",38,0.0875,434.285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","7%","Counts may be low due to blurry patches"
+"2015-06-15_YB-Gq3",2015-06-15,2015-06-15,"YB","G","3","BgD","Balanus_glandula_(dead)","Type 2",7,0.0875,80,NA,"Celeste Moen","Finished","Full","Full","37%",""
+"2015-06-15_YB-Gq5",2015-06-15,2015-06-15,"YB","G","5","BgD","Balanus_glandula_(dead)","Type 2",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to sand cover and glare. ~20%sand cover."
+"2015-06-15_YB-Gq8",2015-06-15,2015-06-15,"YB","G","8","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","7%","Counts may be low due to blurry patches"
+"2015-06-15_YB-Gq3",2015-06-15,2015-06-15,"YB","G","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","37%",""
+"2015-06-15_YB-Gq5",2015-06-15,2015-06-15,"YB","G","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to sand cover and glare. ~20%sand cover."
+"2015-06-15_YB-Gq8",2015-06-15,2015-06-15,"YB","G","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","7%","Counts may be low due to blurry patches"
+"2015-06-15_YB-Gq3",2015-06-15,2015-06-15,"YB","G","3","Cth","Chthamalus_dalli","Type 3",1,0.0875,11.4285714285714,NA,"Celeste Moen","Finished","Full","Full","37%",""
+"2015-06-15_YB-Gq5",2015-06-15,2015-06-15,"YB","G","5","Cth","Chthamalus_dalli","Type 3",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to sand cover and glare. ~20%sand cover."
+"2015-06-15_YB-Gq8",2015-06-15,2015-06-15,"YB","G","8","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","7%","Counts may be low due to blurry patches"
+"2015-06-15_YB-Gq3",2015-06-15,2015-06-15,"YB","G","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","37%",""
+"2015-06-15_YB-Gq5",2015-06-15,2015-06-15,"YB","G","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to sand cover and glare. ~20%sand cover."
+"2015-06-15_YB-Gq8",2015-06-15,2015-06-15,"YB","G","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","7%","Counts may be low due to blurry patches"
+"2015-06-15_YB-Gq3",2015-06-15,2015-06-15,"YB","G","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","37%",""
+"2015-06-15_YB-Gq5",2015-06-15,2015-06-15,"YB","G","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to sand cover and glare. ~20%sand cover."
+"2015-06-15_YB-Gq8",2015-06-15,2015-06-15,"YB","G","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","7%","Counts may be low due to blurry patches"
+"2015-06-15_YB-Gq3",2015-06-15,2015-06-15,"YB","G","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","37%",""
+"2015-06-15_YB-Gq5",2015-06-15,2015-06-15,"YB","G","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to sand cover and glare. ~20%sand cover."
+"2015-06-15_YB-Gq8",2015-06-15,2015-06-15,"YB","G","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","7%","Counts may be low due to blurry patches"
+"2015-06-15_YB-Gq3",2015-06-15,2015-06-15,"YB","G","3","Lim","Limpets","Type 12",56,0.0875,640,NA,"Celeste Moen","Finished","Full","Full","37%",""
+"2015-06-15_YB-Gq5",2015-06-15,2015-06-15,"YB","G","5","Lim","Limpets","Type 12",102,0.0875,1165.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to sand cover and glare. ~20%sand cover."
+"2015-06-15_YB-Gq8",2015-06-15,2015-06-15,"YB","G","8","Lim","Limpets","Type 12",54,0.0875,617.142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","7%","Counts may be low due to blurry patches"
+"2015-06-15_YB-Gq3",2015-06-15,2015-06-15,"YB","G","3","Ls","Littorina_sitkana","Type 13",64,0.0875,731.428571428571,NA,"Celeste Moen","Finished","Full","Full","37%",""
+"2015-06-15_YB-Gq5",2015-06-15,2015-06-15,"YB","G","5","Ls","Littorina_sitkana","Type 13",58,0.0875,662.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to sand cover and glare. ~20%sand cover."
+"2015-06-15_YB-Gq8",2015-06-15,2015-06-15,"YB","G","8","Ls","Littorina_sitkana","Type 13",127,0.0875,1451.42857142857,NA,"Stephanie Merhoff","Finished","Full","Full","7%","Counts may be low due to blurry patches"
+"2015-06-15_YB-Gq3",2015-06-15,2015-06-15,"YB","G","3","Mc","Mytilus_californianus","Type 17",17,0.0875,194.285714285714,NA,"Celeste Moen","Finished","Full","Full","37%",""
+"2015-06-15_YB-Gq5",2015-06-15,2015-06-15,"YB","G","5","Mc","Mytilus_californianus","Type 17",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to sand cover and glare. ~20%sand cover."
+"2015-06-15_YB-Gq8",2015-06-15,2015-06-15,"YB","G","8","Mc","Mytilus_californianus","Type 17",4,0.0875,45.7142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","7%","Counts may be low due to blurry patches"
+"2015-06-15_YB-Gq3",2015-06-15,2015-06-15,"YB","G","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","37%",""
+"2015-06-15_YB-Gq5",2015-06-15,2015-06-15,"YB","G","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to sand cover and glare. ~20%sand cover."
+"2015-06-15_YB-Gq8",2015-06-15,2015-06-15,"YB","G","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","7%","Counts may be low due to blurry patches"
+"2015-06-15_YB-Gq3",2015-06-15,2015-06-15,"YB","G","3","Myt","Mytilus_spp","Type 7",15,0.0875,171.428571428571,NA,"Celeste Moen","Finished","Full","Full","37%",""
+"2015-06-15_YB-Gq5",2015-06-15,2015-06-15,"YB","G","5","Myt","Mytilus_spp","Type 7",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to sand cover and glare. ~20%sand cover."
+"2015-06-15_YB-Gq8",2015-06-15,2015-06-15,"YB","G","8","Myt","Mytilus_spp","Type 7",148,0.0875,1691.42857142857,NA,"Stephanie Merhoff","Finished","Full","Full","7%","Counts may be low due to blurry patches"
+"2015-06-15_YB-Gq3",2015-06-15,2015-06-15,"YB","G","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","37%",""
+"2015-06-15_YB-Gq5",2015-06-15,2015-06-15,"YB","G","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to sand cover and glare. ~20%sand cover."
+"2015-06-15_YB-Gq8",2015-06-15,2015-06-15,"YB","G","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","7%","Counts may be low due to blurry patches"
+"2015-06-15_YB-Gq3",2015-06-15,2015-06-15,"YB","G","3","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","37%",""
+"2015-06-15_YB-Gq5",2015-06-15,2015-06-15,"YB","G","5","Mt","Mytilus_trossulus","Type 15",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to sand cover and glare. ~20%sand cover."
+"2015-06-15_YB-Gq8",2015-06-15,2015-06-15,"YB","G","8","Mt","Mytilus_trossulus","Type 15",24,0.0875,274.285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","7%","Counts may be low due to blurry patches"
+"2015-06-15_YB-Gq3",2015-06-15,2015-06-15,"YB","G","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","37%",""
+"2015-06-15_YB-Gq5",2015-06-15,2015-06-15,"YB","G","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to sand cover and glare. ~20%sand cover."
+"2015-06-15_YB-Gq8",2015-06-15,2015-06-15,"YB","G","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","7%","Counts may be low due to blurry patches"
+"2015-06-15_YB-Gq3",2015-06-15,2015-06-15,"YB","G","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","37%",""
+"2015-06-15_YB-Gq5",2015-06-15,2015-06-15,"YB","G","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to sand cover and glare. ~20%sand cover."
+"2015-06-15_YB-Gq8",2015-06-15,2015-06-15,"YB","G","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","7%","Counts may be low due to blurry patches"
+"2015-06-15_YB-Gq3",2015-06-15,2015-06-15,"YB","G","3","Nc","Nucella_canaliculata","Type 10",3,0.0875,34.2857142857143,NA,"Celeste Moen","Finished","Full","Full","37%",""
+"2015-06-15_YB-Gq5",2015-06-15,2015-06-15,"YB","G","5","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to sand cover and glare. ~20%sand cover."
+"2015-06-15_YB-Gq8",2015-06-15,2015-06-15,"YB","G","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","7%","Counts may be low due to blurry patches"
+"2015-06-15_YB-Gq3",2015-06-15,2015-06-15,"YB","G","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","37%",""
+"2015-06-15_YB-Gq5",2015-06-15,2015-06-15,"YB","G","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to sand cover and glare. ~20%sand cover."
+"2015-06-15_YB-Gq8",2015-06-15,2015-06-15,"YB","G","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","7%","Counts may be low due to blurry patches"
+"2015-06-15_YB-Gq3",2015-06-15,2015-06-15,"YB","G","3","No","Nucella_ostrina","Type 9",12,0.0875,137.142857142857,NA,"Celeste Moen","Finished","Full","Full","37%",""
+"2015-06-15_YB-Gq5",2015-06-15,2015-06-15,"YB","G","5","No","Nucella_ostrina","Type 9",11,0.0875,125.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to sand cover and glare. ~20%sand cover."
+"2015-06-15_YB-Gq8",2015-06-15,2015-06-15,"YB","G","8","No","Nucella_ostrina","Type 9",22,0.0875,251.428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","7%","Counts may be low due to blurry patches"
+"2015-06-15_YB-Gq3",2015-06-15,2015-06-15,"YB","G","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","37%",""
+"2015-06-15_YB-Gq5",2015-06-15,2015-06-15,"YB","G","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to sand cover and glare. ~20%sand cover."
+"2015-06-15_YB-Gq8",2015-06-15,2015-06-15,"YB","G","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","7%","Counts may be low due to blurry patches"
+"2015-06-15_YB-Gq3",2015-06-15,2015-06-15,"YB","G","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","37%",""
+"2015-06-15_YB-Gq5",2015-06-15,2015-06-15,"YB","G","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to sand cover and glare. ~20%sand cover."
+"2015-06-15_YB-Gq8",2015-06-15,2015-06-15,"YB","G","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","7%","Counts may be low due to blurry patches"
+"2015-06-15_YB-Gq3",2015-06-15,2015-06-15,"YB","G","3","Pp","Pollicipes_polymerus","Type 11",209,0.0875,2388.57142857143,NA,"Celeste Moen","Finished","Full","Full","37%",""
+"2015-06-15_YB-Gq5",2015-06-15,2015-06-15,"YB","G","5","Pp","Pollicipes_polymerus","Type 11",744,0.0875,8502.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to sand cover and glare. ~20%sand cover."
+"2015-06-15_YB-Gq8",2015-06-15,2015-06-15,"YB","G","8","Pp","Pollicipes_polymerus","Type 11",843,0.0875,9634.28571428572,NA,"Stephanie Merhoff","Finished","Full","Full","7%","Counts may be low due to blurry patches"
+"2015-06-15_YB-Gq3",2015-06-15,2015-06-15,"YB","G","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","37%",""
+"2015-06-15_YB-Gq5",2015-06-15,2015-06-15,"YB","G","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to sand cover and glare. ~20%sand cover."
+"2015-06-15_YB-Gq8",2015-06-15,2015-06-15,"YB","G","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","7%","Counts may be low due to blurry patches"
+"2015-06-15_YB-Gq3",2015-06-15,2015-06-15,"YB","G","3","Sc","Semibalanus_cariosus","Type 5",2,0.0875,22.8571428571429,NA,"Celeste Moen","Finished","Full","Full","37%",""
+"2015-06-15_YB-Gq5",2015-06-15,2015-06-15,"YB","G","5","Sc","Semibalanus_cariosus","Type 5",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to sand cover and glare. ~20%sand cover."
+"2015-06-15_YB-Gq8",2015-06-15,2015-06-15,"YB","G","8","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","7%","Counts may be low due to blurry patches"
+"2015-06-15_YB-Gq3",2015-06-15,2015-06-15,"YB","G","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","37%",""
+"2015-06-15_YB-Gq5",2015-06-15,2015-06-15,"YB","G","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to sand cover and glare. ~20%sand cover."
+"2015-06-15_YB-Gq8",2015-06-15,2015-06-15,"YB","G","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","7%","Counts may be low due to blurry patches"
+"2015-07-13_YB-Aq6",2015-07-13,2015-07-13,"YB","A","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","20%","Counts likely low due to algae cover"
+"2015-07-13_YB-Aq7",2015-07-13,2015-07-13,"YB","A","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare and algae."
+"2015-07-13_YB-Aq9",2015-07-13,2015-07-13,"YB","A","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to sand, blur, and glare. ~10% sand cover."
+"2015-07-13_YB-Aq6",2015-07-13,2015-07-13,"YB","A","6","Ae","Anemones","Type 14",55,0.0875,628.571428571429,NA,"Celeste Moen","Finished","Full","Full","20%","Counts likely low due to algae cover"
+"2015-07-13_YB-Aq7",2015-07-13,2015-07-13,"YB","A","7","Ae","Anemones","Type 14",77,0.0875,880,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare and algae."
+"2015-07-13_YB-Aq9",2015-07-13,2015-07-13,"YB","A","9","Ae","Anemones","Type 14",92,0.0875,1051.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to sand, blur, and glare. ~10% sand cover."
+"2015-07-13_YB-Aq6",2015-07-13,2015-07-13,"YB","A","6","Bg","Balanus_glandula","Type 1",115,0.0875,1314.28571428571,NA,"Celeste Moen","Finished","Full","Full","20%","Counts likely low due to algae cover"
+"2015-07-13_YB-Aq7",2015-07-13,2015-07-13,"YB","A","7","Bg","Balanus_glandula","Type 1",126,0.0875,1440,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare and algae."
+"2015-07-13_YB-Aq9",2015-07-13,2015-07-13,"YB","A","9","Bg","Balanus_glandula","Type 1",742,0.0875,8480,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to sand, blur, and glare. ~10% sand cover."
+"2015-07-13_YB-Aq6",2015-07-13,2015-07-13,"YB","A","6","BgD","Balanus_glandula_(dead)","Type 2",21,0.0875,240,NA,"Celeste Moen","Finished","Full","Full","20%","Counts likely low due to algae cover"
+"2015-07-13_YB-Aq7",2015-07-13,2015-07-13,"YB","A","7","BgD","Balanus_glandula_(dead)","Type 2",14,0.0875,160,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare and algae."
+"2015-07-13_YB-Aq9",2015-07-13,2015-07-13,"YB","A","9","BgD","Balanus_glandula_(dead)","Type 2",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to sand, blur, and glare. ~10% sand cover."
+"2015-07-13_YB-Aq6",2015-07-13,2015-07-13,"YB","A","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","20%","Counts likely low due to algae cover"
+"2015-07-13_YB-Aq7",2015-07-13,2015-07-13,"YB","A","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare and algae."
+"2015-07-13_YB-Aq9",2015-07-13,2015-07-13,"YB","A","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to sand, blur, and glare. ~10% sand cover."
+"2015-07-13_YB-Aq6",2015-07-13,2015-07-13,"YB","A","6","Cth","Chthamalus_dalli","Type 3",6,0.0875,68.5714285714286,NA,"Celeste Moen","Finished","Full","Full","20%","Counts likely low due to algae cover"
+"2015-07-13_YB-Aq7",2015-07-13,2015-07-13,"YB","A","7","Cth","Chthamalus_dalli","Type 3",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare and algae."
+"2015-07-13_YB-Aq9",2015-07-13,2015-07-13,"YB","A","9","Cth","Chthamalus_dalli","Type 3",101,0.0875,1154.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to sand, blur, and glare. ~10% sand cover."
+"2015-07-13_YB-Aq6",2015-07-13,2015-07-13,"YB","A","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","20%","Counts likely low due to algae cover"
+"2015-07-13_YB-Aq7",2015-07-13,2015-07-13,"YB","A","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare and algae."
+"2015-07-13_YB-Aq9",2015-07-13,2015-07-13,"YB","A","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to sand, blur, and glare. ~10% sand cover."
+"2015-07-13_YB-Aq6",2015-07-13,2015-07-13,"YB","A","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","20%","Counts likely low due to algae cover"
+"2015-07-13_YB-Aq7",2015-07-13,2015-07-13,"YB","A","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare and algae."
+"2015-07-13_YB-Aq9",2015-07-13,2015-07-13,"YB","A","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to sand, blur, and glare. ~10% sand cover."
+"2015-07-13_YB-Aq6",2015-07-13,2015-07-13,"YB","A","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","20%","Counts likely low due to algae cover"
+"2015-07-13_YB-Aq7",2015-07-13,2015-07-13,"YB","A","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare and algae."
+"2015-07-13_YB-Aq9",2015-07-13,2015-07-13,"YB","A","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to sand, blur, and glare. ~10% sand cover."
+"2015-07-13_YB-Aq6",2015-07-13,2015-07-13,"YB","A","6","Lim","Limpets","Type 12",21,0.0875,240,NA,"Celeste Moen","Finished","Full","Full","20%","Counts likely low due to algae cover"
+"2015-07-13_YB-Aq7",2015-07-13,2015-07-13,"YB","A","7","Lim","Limpets","Type 12",193,0.0875,2205.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare and algae."
+"2015-07-13_YB-Aq9",2015-07-13,2015-07-13,"YB","A","9","Lim","Limpets","Type 12",630,0.0875,7200,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to sand, blur, and glare. ~10% sand cover."
+"2015-07-13_YB-Aq6",2015-07-13,2015-07-13,"YB","A","6","Ls","Littorina_sitkana","Type 13",2,0.0875,22.8571428571429,NA,"Celeste Moen","Finished","Full","Full","20%","Counts likely low due to algae cover"
+"2015-07-13_YB-Aq7",2015-07-13,2015-07-13,"YB","A","7","Ls","Littorina_sitkana","Type 13",139,0.0875,1588.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare and algae."
+"2015-07-13_YB-Aq9",2015-07-13,2015-07-13,"YB","A","9","Ls","Littorina_sitkana","Type 13",120,0.0875,1371.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to sand, blur, and glare. ~10% sand cover."
+"2015-07-13_YB-Aq6",2015-07-13,2015-07-13,"YB","A","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","20%","Counts likely low due to algae cover"
+"2015-07-13_YB-Aq7",2015-07-13,2015-07-13,"YB","A","7","Mc","Mytilus_californianus","Type 17",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare and algae."
+"2015-07-13_YB-Aq9",2015-07-13,2015-07-13,"YB","A","9","Mc","Mytilus_californianus","Type 17",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to sand, blur, and glare. ~10% sand cover."
+"2015-07-13_YB-Aq6",2015-07-13,2015-07-13,"YB","A","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","20%","Counts likely low due to algae cover"
+"2015-07-13_YB-Aq7",2015-07-13,2015-07-13,"YB","A","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare and algae."
+"2015-07-13_YB-Aq9",2015-07-13,2015-07-13,"YB","A","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to sand, blur, and glare. ~10% sand cover."
+"2015-07-13_YB-Aq6",2015-07-13,2015-07-13,"YB","A","6","Myt","Mytilus_spp","Type 7",139,0.0875,1588.57142857143,NA,"Celeste Moen","Finished","Full","Full","20%","Counts likely low due to algae cover"
+"2015-07-13_YB-Aq7",2015-07-13,2015-07-13,"YB","A","7","Myt","Mytilus_spp","Type 7",9,0.0875,102.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare and algae."
+"2015-07-13_YB-Aq9",2015-07-13,2015-07-13,"YB","A","9","Myt","Mytilus_spp","Type 7",61,0.0875,697.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to sand, blur, and glare. ~10% sand cover."
+"2015-07-13_YB-Aq6",2015-07-13,2015-07-13,"YB","A","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","20%","Counts likely low due to algae cover"
+"2015-07-13_YB-Aq7",2015-07-13,2015-07-13,"YB","A","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare and algae."
+"2015-07-13_YB-Aq9",2015-07-13,2015-07-13,"YB","A","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to sand, blur, and glare. ~10% sand cover."
+"2015-07-13_YB-Aq6",2015-07-13,2015-07-13,"YB","A","6","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","20%","Counts likely low due to algae cover"
+"2015-07-13_YB-Aq7",2015-07-13,2015-07-13,"YB","A","7","Mt","Mytilus_trossulus","Type 15",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare and algae."
+"2015-07-13_YB-Aq9",2015-07-13,2015-07-13,"YB","A","9","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to sand, blur, and glare. ~10% sand cover."
+"2015-07-13_YB-Aq6",2015-07-13,2015-07-13,"YB","A","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","20%","Counts likely low due to algae cover"
+"2015-07-13_YB-Aq7",2015-07-13,2015-07-13,"YB","A","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare and algae."
+"2015-07-13_YB-Aq9",2015-07-13,2015-07-13,"YB","A","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to sand, blur, and glare. ~10% sand cover."
+"2015-07-13_YB-Aq6",2015-07-13,2015-07-13,"YB","A","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","20%","Counts likely low due to algae cover"
+"2015-07-13_YB-Aq7",2015-07-13,2015-07-13,"YB","A","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare and algae."
+"2015-07-13_YB-Aq9",2015-07-13,2015-07-13,"YB","A","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to sand, blur, and glare. ~10% sand cover."
+"2015-07-13_YB-Aq6",2015-07-13,2015-07-13,"YB","A","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","20%","Counts likely low due to algae cover"
+"2015-07-13_YB-Aq7",2015-07-13,2015-07-13,"YB","A","7","Nc","Nucella_canaliculata","Type 10",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare and algae."
+"2015-07-13_YB-Aq9",2015-07-13,2015-07-13,"YB","A","9","Nc","Nucella_canaliculata","Type 10",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to sand, blur, and glare. ~10% sand cover."
+"2015-07-13_YB-Aq6",2015-07-13,2015-07-13,"YB","A","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","20%","Counts likely low due to algae cover"
+"2015-07-13_YB-Aq7",2015-07-13,2015-07-13,"YB","A","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare and algae."
+"2015-07-13_YB-Aq9",2015-07-13,2015-07-13,"YB","A","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to sand, blur, and glare. ~10% sand cover."
+"2015-07-13_YB-Aq6",2015-07-13,2015-07-13,"YB","A","6","No","Nucella_ostrina","Type 9",15,0.0875,171.428571428571,NA,"Celeste Moen","Finished","Full","Full","20%","Counts likely low due to algae cover"
+"2015-07-13_YB-Aq7",2015-07-13,2015-07-13,"YB","A","7","No","Nucella_ostrina","Type 9",12,0.0875,137.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare and algae."
+"2015-07-13_YB-Aq9",2015-07-13,2015-07-13,"YB","A","9","No","Nucella_ostrina","Type 9",28,0.0875,320,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to sand, blur, and glare. ~10% sand cover."
+"2015-07-13_YB-Aq6",2015-07-13,2015-07-13,"YB","A","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","20%","Counts likely low due to algae cover"
+"2015-07-13_YB-Aq7",2015-07-13,2015-07-13,"YB","A","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare and algae."
+"2015-07-13_YB-Aq9",2015-07-13,2015-07-13,"YB","A","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to sand, blur, and glare. ~10% sand cover."
+"2015-07-13_YB-Aq6",2015-07-13,2015-07-13,"YB","A","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","20%","Counts likely low due to algae cover"
+"2015-07-13_YB-Aq7",2015-07-13,2015-07-13,"YB","A","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare and algae."
+"2015-07-13_YB-Aq9",2015-07-13,2015-07-13,"YB","A","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to sand, blur, and glare. ~10% sand cover."
+"2015-07-13_YB-Aq6",2015-07-13,2015-07-13,"YB","A","6","Pp","Pollicipes_polymerus","Type 11",289,0.0875,3302.85714285714,NA,"Celeste Moen","Finished","Full","Full","20%","Counts likely low due to algae cover"
+"2015-07-13_YB-Aq7",2015-07-13,2015-07-13,"YB","A","7","Pp","Pollicipes_polymerus","Type 11",346,0.0875,3954.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare and algae."
+"2015-07-13_YB-Aq9",2015-07-13,2015-07-13,"YB","A","9","Pp","Pollicipes_polymerus","Type 11",737,0.0875,8422.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to sand, blur, and glare. ~10% sand cover."
+"2015-07-13_YB-Aq6",2015-07-13,2015-07-13,"YB","A","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","20%","Counts likely low due to algae cover"
+"2015-07-13_YB-Aq7",2015-07-13,2015-07-13,"YB","A","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare and algae."
+"2015-07-13_YB-Aq9",2015-07-13,2015-07-13,"YB","A","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to sand, blur, and glare. ~10% sand cover."
+"2015-07-13_YB-Aq6",2015-07-13,2015-07-13,"YB","A","6","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Celeste Moen","Finished","Full","Full","20%","Counts likely low due to algae cover"
+"2015-07-13_YB-Aq7",2015-07-13,2015-07-13,"YB","A","7","Sc","Semibalanus_cariosus","Type 5",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare and algae."
+"2015-07-13_YB-Aq9",2015-07-13,2015-07-13,"YB","A","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to sand, blur, and glare. ~10% sand cover."
+"2015-07-13_YB-Aq6",2015-07-13,2015-07-13,"YB","A","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","20%","Counts likely low due to algae cover"
+"2015-07-13_YB-Aq7",2015-07-13,2015-07-13,"YB","A","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare and algae."
+"2015-07-13_YB-Aq9",2015-07-13,2015-07-13,"YB","A","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to sand, blur, and glare. ~10% sand cover."
+"2015-07-13_YB-ABq1",2015-07-13,2015-07-13,"YB","AB","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-07-13_YB-ABq2",2015-07-13,2015-07-13,"YB","AB","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-07-13_YB-ABq4",2015-07-13,2015-07-13,"YB","AB","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to blur and glare."
+"2015-07-13_YB-ABq1",2015-07-13,2015-07-13,"YB","AB","1","Ae","Anemones","Type 14",13,0.0875,148.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-07-13_YB-ABq2",2015-07-13,2015-07-13,"YB","AB","2","Ae","Anemones","Type 14",65,0.0875,742.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-07-13_YB-ABq4",2015-07-13,2015-07-13,"YB","AB","4","Ae","Anemones","Type 14",37,0.0875,422.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to blur and glare."
+"2015-07-13_YB-ABq1",2015-07-13,2015-07-13,"YB","AB","1","Bg","Balanus_glandula","Type 1",61,0.0875,697.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-07-13_YB-ABq2",2015-07-13,2015-07-13,"YB","AB","2","Bg","Balanus_glandula","Type 1",56,0.0875,640,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-07-13_YB-ABq4",2015-07-13,2015-07-13,"YB","AB","4","Bg","Balanus_glandula","Type 1",159,0.0875,1817.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to blur and glare."
+"2015-07-13_YB-ABq1",2015-07-13,2015-07-13,"YB","AB","1","BgD","Balanus_glandula_(dead)","Type 2",22,0.0875,251.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-07-13_YB-ABq2",2015-07-13,2015-07-13,"YB","AB","2","BgD","Balanus_glandula_(dead)","Type 2",16,0.0875,182.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-07-13_YB-ABq4",2015-07-13,2015-07-13,"YB","AB","4","BgD","Balanus_glandula_(dead)","Type 2",22,0.0875,251.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to blur and glare."
+"2015-07-13_YB-ABq1",2015-07-13,2015-07-13,"YB","AB","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-07-13_YB-ABq2",2015-07-13,2015-07-13,"YB","AB","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-07-13_YB-ABq4",2015-07-13,2015-07-13,"YB","AB","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to blur and glare."
+"2015-07-13_YB-ABq1",2015-07-13,2015-07-13,"YB","AB","1","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-07-13_YB-ABq2",2015-07-13,2015-07-13,"YB","AB","2","Cth","Chthamalus_dalli","Type 3",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-07-13_YB-ABq4",2015-07-13,2015-07-13,"YB","AB","4","Cth","Chthamalus_dalli","Type 3",48,0.0875,548.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to blur and glare."
+"2015-07-13_YB-ABq1",2015-07-13,2015-07-13,"YB","AB","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-07-13_YB-ABq2",2015-07-13,2015-07-13,"YB","AB","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-07-13_YB-ABq4",2015-07-13,2015-07-13,"YB","AB","4","CthD","Chthamalus_dalli (dead)","Type 4",22,0.0875,251.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to blur and glare."
+"2015-07-13_YB-ABq1",2015-07-13,2015-07-13,"YB","AB","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-07-13_YB-ABq2",2015-07-13,2015-07-13,"YB","AB","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-07-13_YB-ABq4",2015-07-13,2015-07-13,"YB","AB","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to blur and glare."
+"2015-07-13_YB-ABq1",2015-07-13,2015-07-13,"YB","AB","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-07-13_YB-ABq2",2015-07-13,2015-07-13,"YB","AB","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-07-13_YB-ABq4",2015-07-13,2015-07-13,"YB","AB","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to blur and glare."
+"2015-07-13_YB-ABq1",2015-07-13,2015-07-13,"YB","AB","1","Lim","Limpets","Type 12",115,0.0875,1314.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-07-13_YB-ABq2",2015-07-13,2015-07-13,"YB","AB","2","Lim","Limpets","Type 12",218,0.0875,2491.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-07-13_YB-ABq4",2015-07-13,2015-07-13,"YB","AB","4","Lim","Limpets","Type 12",328,0.0875,3748.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to blur and glare."
+"2015-07-13_YB-ABq1",2015-07-13,2015-07-13,"YB","AB","1","Ls","Littorina_sitkana","Type 13",275,0.0875,3142.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-07-13_YB-ABq2",2015-07-13,2015-07-13,"YB","AB","2","Ls","Littorina_sitkana","Type 13",161,0.0875,1840,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-07-13_YB-ABq4",2015-07-13,2015-07-13,"YB","AB","4","Ls","Littorina_sitkana","Type 13",258,0.0875,2948.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to blur and glare."
+"2015-07-13_YB-ABq1",2015-07-13,2015-07-13,"YB","AB","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-07-13_YB-ABq2",2015-07-13,2015-07-13,"YB","AB","2","Mc","Mytilus_californianus","Type 17",10,0.0875,114.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-07-13_YB-ABq4",2015-07-13,2015-07-13,"YB","AB","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to blur and glare."
+"2015-07-13_YB-ABq1",2015-07-13,2015-07-13,"YB","AB","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-07-13_YB-ABq2",2015-07-13,2015-07-13,"YB","AB","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-07-13_YB-ABq4",2015-07-13,2015-07-13,"YB","AB","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to blur and glare."
+"2015-07-13_YB-ABq1",2015-07-13,2015-07-13,"YB","AB","1","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-07-13_YB-ABq2",2015-07-13,2015-07-13,"YB","AB","2","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-07-13_YB-ABq4",2015-07-13,2015-07-13,"YB","AB","4","Myt","Mytilus_spp","Type 7",60,0.0875,685.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to blur and glare."
+"2015-07-13_YB-ABq1",2015-07-13,2015-07-13,"YB","AB","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-07-13_YB-ABq2",2015-07-13,2015-07-13,"YB","AB","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-07-13_YB-ABq4",2015-07-13,2015-07-13,"YB","AB","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to blur and glare."
+"2015-07-13_YB-ABq1",2015-07-13,2015-07-13,"YB","AB","1","Mt","Mytilus_trossulus","Type 15",18,0.0875,205.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-07-13_YB-ABq2",2015-07-13,2015-07-13,"YB","AB","2","Mt","Mytilus_trossulus","Type 15",11,0.0875,125.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-07-13_YB-ABq4",2015-07-13,2015-07-13,"YB","AB","4","Mt","Mytilus_trossulus","Type 15",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to blur and glare."
+"2015-07-13_YB-ABq1",2015-07-13,2015-07-13,"YB","AB","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-07-13_YB-ABq2",2015-07-13,2015-07-13,"YB","AB","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-07-13_YB-ABq4",2015-07-13,2015-07-13,"YB","AB","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to blur and glare."
+"2015-07-13_YB-ABq1",2015-07-13,2015-07-13,"YB","AB","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-07-13_YB-ABq2",2015-07-13,2015-07-13,"YB","AB","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-07-13_YB-ABq4",2015-07-13,2015-07-13,"YB","AB","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to blur and glare."
+"2015-07-13_YB-ABq1",2015-07-13,2015-07-13,"YB","AB","1","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-07-13_YB-ABq2",2015-07-13,2015-07-13,"YB","AB","2","Nc","Nucella_canaliculata","Type 10",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-07-13_YB-ABq4",2015-07-13,2015-07-13,"YB","AB","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to blur and glare."
+"2015-07-13_YB-ABq1",2015-07-13,2015-07-13,"YB","AB","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-07-13_YB-ABq2",2015-07-13,2015-07-13,"YB","AB","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-07-13_YB-ABq4",2015-07-13,2015-07-13,"YB","AB","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to blur and glare."
+"2015-07-13_YB-ABq1",2015-07-13,2015-07-13,"YB","AB","1","No","Nucella_ostrina","Type 9",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-07-13_YB-ABq2",2015-07-13,2015-07-13,"YB","AB","2","No","Nucella_ostrina","Type 9",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-07-13_YB-ABq4",2015-07-13,2015-07-13,"YB","AB","4","No","Nucella_ostrina","Type 9",39,0.0875,445.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to blur and glare."
+"2015-07-13_YB-ABq1",2015-07-13,2015-07-13,"YB","AB","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-07-13_YB-ABq2",2015-07-13,2015-07-13,"YB","AB","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-07-13_YB-ABq4",2015-07-13,2015-07-13,"YB","AB","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to blur and glare."
+"2015-07-13_YB-ABq1",2015-07-13,2015-07-13,"YB","AB","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-07-13_YB-ABq2",2015-07-13,2015-07-13,"YB","AB","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-07-13_YB-ABq4",2015-07-13,2015-07-13,"YB","AB","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to blur and glare."
+"2015-07-13_YB-ABq1",2015-07-13,2015-07-13,"YB","AB","1","Pp","Pollicipes_polymerus","Type 11",837,0.0875,9565.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-07-13_YB-ABq2",2015-07-13,2015-07-13,"YB","AB","2","Pp","Pollicipes_polymerus","Type 11",671,0.0875,7668.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-07-13_YB-ABq4",2015-07-13,2015-07-13,"YB","AB","4","Pp","Pollicipes_polymerus","Type 11",1454,0.0875,16617.1428571429,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to blur and glare."
+"2015-07-13_YB-ABq1",2015-07-13,2015-07-13,"YB","AB","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-07-13_YB-ABq2",2015-07-13,2015-07-13,"YB","AB","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-07-13_YB-ABq4",2015-07-13,2015-07-13,"YB","AB","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to blur and glare."
+"2015-07-13_YB-ABq1",2015-07-13,2015-07-13,"YB","AB","1","Sc","Semibalanus_cariosus","Type 5",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-07-13_YB-ABq2",2015-07-13,2015-07-13,"YB","AB","2","Sc","Semibalanus_cariosus","Type 5",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-07-13_YB-ABq4",2015-07-13,2015-07-13,"YB","AB","4","Sc","Semibalanus_cariosus","Type 5",14,0.0875,160,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to blur and glare."
+"2015-07-13_YB-ABq1",2015-07-13,2015-07-13,"YB","AB","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-07-13_YB-ABq2",2015-07-13,2015-07-13,"YB","AB","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-07-13_YB-ABq4",2015-07-13,2015-07-13,"YB","AB","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to blur and glare."
+"2015-07-13_YB-ACq4",2015-07-13,2015-07-13,"YB","AC","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare and algae cover"
+"2015-07-13_YB-ACq7",2015-07-13,2015-07-13,"YB","AC","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare."
+"2015-07-13_YB-ACq8",2015-07-13,2015-07-13,"YB","AC","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to glare and blur."
+"2015-07-13_YB-ACq4",2015-07-13,2015-07-13,"YB","AC","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare and algae cover"
+"2015-07-13_YB-ACq7",2015-07-13,2015-07-13,"YB","AC","7","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare."
+"2015-07-13_YB-ACq8",2015-07-13,2015-07-13,"YB","AC","8","Ae","Anemones","Type 14",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to glare and blur."
+"2015-07-13_YB-ACq4",2015-07-13,2015-07-13,"YB","AC","4","Bg","Balanus_glandula","Type 1",435,0.0875,4971.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare and algae cover"
+"2015-07-13_YB-ACq7",2015-07-13,2015-07-13,"YB","AC","7","Bg","Balanus_glandula","Type 1",123,0.0875,1405.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare."
+"2015-07-13_YB-ACq8",2015-07-13,2015-07-13,"YB","AC","8","Bg","Balanus_glandula","Type 1",18,0.0875,205.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to glare and blur."
+"2015-07-13_YB-ACq4",2015-07-13,2015-07-13,"YB","AC","4","BgD","Balanus_glandula_(dead)","Type 2",9,0.0875,102.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare and algae cover"
+"2015-07-13_YB-ACq7",2015-07-13,2015-07-13,"YB","AC","7","BgD","Balanus_glandula_(dead)","Type 2",72,0.0875,822.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare."
+"2015-07-13_YB-ACq8",2015-07-13,2015-07-13,"YB","AC","8","BgD","Balanus_glandula_(dead)","Type 2",19,0.0875,217.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to glare and blur."
+"2015-07-13_YB-ACq4",2015-07-13,2015-07-13,"YB","AC","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare and algae cover"
+"2015-07-13_YB-ACq7",2015-07-13,2015-07-13,"YB","AC","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare."
+"2015-07-13_YB-ACq8",2015-07-13,2015-07-13,"YB","AC","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to glare and blur."
+"2015-07-13_YB-ACq4",2015-07-13,2015-07-13,"YB","AC","4","Cth","Chthamalus_dalli","Type 3",17,0.0875,194.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare and algae cover"
+"2015-07-13_YB-ACq7",2015-07-13,2015-07-13,"YB","AC","7","Cth","Chthamalus_dalli","Type 3",37,0.0875,422.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare."
+"2015-07-13_YB-ACq8",2015-07-13,2015-07-13,"YB","AC","8","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to glare and blur."
+"2015-07-13_YB-ACq4",2015-07-13,2015-07-13,"YB","AC","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare and algae cover"
+"2015-07-13_YB-ACq7",2015-07-13,2015-07-13,"YB","AC","7","CthD","Chthamalus_dalli (dead)","Type 4",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare."
+"2015-07-13_YB-ACq8",2015-07-13,2015-07-13,"YB","AC","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to glare and blur."
+"2015-07-13_YB-ACq4",2015-07-13,2015-07-13,"YB","AC","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare and algae cover"
+"2015-07-13_YB-ACq7",2015-07-13,2015-07-13,"YB","AC","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare."
+"2015-07-13_YB-ACq8",2015-07-13,2015-07-13,"YB","AC","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to glare and blur."
+"2015-07-13_YB-ACq4",2015-07-13,2015-07-13,"YB","AC","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare and algae cover"
+"2015-07-13_YB-ACq7",2015-07-13,2015-07-13,"YB","AC","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare."
+"2015-07-13_YB-ACq8",2015-07-13,2015-07-13,"YB","AC","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to glare and blur."
+"2015-07-13_YB-ACq4",2015-07-13,2015-07-13,"YB","AC","4","Lim","Limpets","Type 12",221,0.0875,2525.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare and algae cover"
+"2015-07-13_YB-ACq7",2015-07-13,2015-07-13,"YB","AC","7","Lim","Limpets","Type 12",296,0.0875,3382.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare."
+"2015-07-13_YB-ACq8",2015-07-13,2015-07-13,"YB","AC","8","Lim","Limpets","Type 12",67,0.0875,765.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to glare and blur."
+"2015-07-13_YB-ACq4",2015-07-13,2015-07-13,"YB","AC","4","Ls","Littorina_sitkana","Type 13",1033,0.0875,11805.7142857143,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare and algae cover"
+"2015-07-13_YB-ACq7",2015-07-13,2015-07-13,"YB","AC","7","Ls","Littorina_sitkana","Type 13",929,0.0875,10617.1428571429,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare."
+"2015-07-13_YB-ACq8",2015-07-13,2015-07-13,"YB","AC","8","Ls","Littorina_sitkana","Type 13",580,0.0875,6628.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to glare and blur."
+"2015-07-13_YB-ACq4",2015-07-13,2015-07-13,"YB","AC","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare and algae cover"
+"2015-07-13_YB-ACq7",2015-07-13,2015-07-13,"YB","AC","7","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare."
+"2015-07-13_YB-ACq8",2015-07-13,2015-07-13,"YB","AC","8","Mc","Mytilus_californianus","Type 17",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to glare and blur."
+"2015-07-13_YB-ACq4",2015-07-13,2015-07-13,"YB","AC","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare and algae cover"
+"2015-07-13_YB-ACq7",2015-07-13,2015-07-13,"YB","AC","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare."
+"2015-07-13_YB-ACq8",2015-07-13,2015-07-13,"YB","AC","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to glare and blur."
+"2015-07-13_YB-ACq4",2015-07-13,2015-07-13,"YB","AC","4","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare and algae cover"
+"2015-07-13_YB-ACq7",2015-07-13,2015-07-13,"YB","AC","7","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare."
+"2015-07-13_YB-ACq8",2015-07-13,2015-07-13,"YB","AC","8","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to glare and blur."
+"2015-07-13_YB-ACq4",2015-07-13,2015-07-13,"YB","AC","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare and algae cover"
+"2015-07-13_YB-ACq7",2015-07-13,2015-07-13,"YB","AC","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare."
+"2015-07-13_YB-ACq8",2015-07-13,2015-07-13,"YB","AC","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to glare and blur."
+"2015-07-13_YB-ACq4",2015-07-13,2015-07-13,"YB","AC","4","Mt","Mytilus_trossulus","Type 15",156,0.0875,1782.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare and algae cover"
+"2015-07-13_YB-ACq7",2015-07-13,2015-07-13,"YB","AC","7","Mt","Mytilus_trossulus","Type 15",59,0.0875,674.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare."
+"2015-07-13_YB-ACq8",2015-07-13,2015-07-13,"YB","AC","8","Mt","Mytilus_trossulus","Type 15",75,0.0875,857.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to glare and blur."
+"2015-07-13_YB-ACq4",2015-07-13,2015-07-13,"YB","AC","4","MtD","Mytilus_trossulus_(dead)","Type 16",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare and algae cover"
+"2015-07-13_YB-ACq7",2015-07-13,2015-07-13,"YB","AC","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare."
+"2015-07-13_YB-ACq8",2015-07-13,2015-07-13,"YB","AC","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to glare and blur."
+"2015-07-13_YB-ACq4",2015-07-13,2015-07-13,"YB","AC","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare and algae cover"
+"2015-07-13_YB-ACq7",2015-07-13,2015-07-13,"YB","AC","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare."
+"2015-07-13_YB-ACq8",2015-07-13,2015-07-13,"YB","AC","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to glare and blur."
+"2015-07-13_YB-ACq4",2015-07-13,2015-07-13,"YB","AC","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare and algae cover"
+"2015-07-13_YB-ACq7",2015-07-13,2015-07-13,"YB","AC","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare."
+"2015-07-13_YB-ACq8",2015-07-13,2015-07-13,"YB","AC","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to glare and blur."
+"2015-07-13_YB-ACq4",2015-07-13,2015-07-13,"YB","AC","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare and algae cover"
+"2015-07-13_YB-ACq7",2015-07-13,2015-07-13,"YB","AC","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare."
+"2015-07-13_YB-ACq8",2015-07-13,2015-07-13,"YB","AC","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to glare and blur."
+"2015-07-13_YB-ACq4",2015-07-13,2015-07-13,"YB","AC","4","No","Nucella_ostrina","Type 9",68,0.0875,777.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare and algae cover"
+"2015-07-13_YB-ACq7",2015-07-13,2015-07-13,"YB","AC","7","No","Nucella_ostrina","Type 9",41,0.0875,468.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare."
+"2015-07-13_YB-ACq8",2015-07-13,2015-07-13,"YB","AC","8","No","Nucella_ostrina","Type 9",22,0.0875,251.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to glare and blur."
+"2015-07-13_YB-ACq4",2015-07-13,2015-07-13,"YB","AC","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare and algae cover"
+"2015-07-13_YB-ACq7",2015-07-13,2015-07-13,"YB","AC","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare."
+"2015-07-13_YB-ACq8",2015-07-13,2015-07-13,"YB","AC","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to glare and blur."
+"2015-07-13_YB-ACq4",2015-07-13,2015-07-13,"YB","AC","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare and algae cover"
+"2015-07-13_YB-ACq7",2015-07-13,2015-07-13,"YB","AC","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare."
+"2015-07-13_YB-ACq8",2015-07-13,2015-07-13,"YB","AC","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to glare and blur."
+"2015-07-13_YB-ACq4",2015-07-13,2015-07-13,"YB","AC","4","Pp","Pollicipes_polymerus","Type 11",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare and algae cover"
+"2015-07-13_YB-ACq7",2015-07-13,2015-07-13,"YB","AC","7","Pp","Pollicipes_polymerus","Type 11",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare."
+"2015-07-13_YB-ACq8",2015-07-13,2015-07-13,"YB","AC","8","Pp","Pollicipes_polymerus","Type 11",71,0.0875,811.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to glare and blur."
+"2015-07-13_YB-ACq4",2015-07-13,2015-07-13,"YB","AC","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare and algae cover"
+"2015-07-13_YB-ACq7",2015-07-13,2015-07-13,"YB","AC","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare."
+"2015-07-13_YB-ACq8",2015-07-13,2015-07-13,"YB","AC","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to glare and blur."
+"2015-07-13_YB-ACq4",2015-07-13,2015-07-13,"YB","AC","4","Sc","Semibalanus_cariosus","Type 5",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare and algae cover"
+"2015-07-13_YB-ACq7",2015-07-13,2015-07-13,"YB","AC","7","Sc","Semibalanus_cariosus","Type 5",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare."
+"2015-07-13_YB-ACq8",2015-07-13,2015-07-13,"YB","AC","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to glare and blur."
+"2015-07-13_YB-ACq4",2015-07-13,2015-07-13,"YB","AC","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare and algae cover"
+"2015-07-13_YB-ACq7",2015-07-13,2015-07-13,"YB","AC","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to glare."
+"2015-07-13_YB-ACq8",2015-07-13,2015-07-13,"YB","AC","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to glare and blur."
+"2015-07-13_YB-ADq1",2015-07-13,2015-07-13,"YB","AD","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to glare and blur."
+"2015-07-13_YB-ADq5",2015-07-13,2015-07-13,"YB","AD","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare and sludge cover (~20% sludge cover)"
+"2015-07-13_YB-ADq8",2015-07-13,2015-07-13,"YB","AD","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","6%","B.g counts likely low due to recruits being obscured by glare and possible sand cover. Possible sand cover ~80%"
+"2015-07-13_YB-ADq1",2015-07-13,2015-07-13,"YB","AD","1","Ae","Anemones","Type 14",22,0.0875,251.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to glare and blur."
+"2015-07-13_YB-ADq5",2015-07-13,2015-07-13,"YB","AD","5","Ae","Anemones","Type 14",57,0.0875,651.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare and sludge cover (~20% sludge cover)"
+"2015-07-13_YB-ADq8",2015-07-13,2015-07-13,"YB","AD","8","Ae","Anemones","Type 14",67,0.0875,765.714285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","6%","B.g counts likely low due to recruits being obscured by glare and possible sand cover. Possible sand cover ~80%"
+"2015-07-13_YB-ADq1",2015-07-13,2015-07-13,"YB","AD","1","Bg","Balanus_glandula","Type 1",110,0.0875,1257.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to glare and blur."
+"2015-07-13_YB-ADq5",2015-07-13,2015-07-13,"YB","AD","5","Bg","Balanus_glandula","Type 1",76,0.0875,868.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare and sludge cover (~20% sludge cover)"
+"2015-07-13_YB-ADq8",2015-07-13,2015-07-13,"YB","AD","8","Bg","Balanus_glandula","Type 1",909,0.015625,58176,"c","Beatriz Vaca","Finished","Full","Cropped","6%","B.g counts likely low due to recruits being obscured by glare and possible sand cover. Possible sand cover ~80%"
+"2015-07-13_YB-ADq1",2015-07-13,2015-07-13,"YB","AD","1","BgD","Balanus_glandula_(dead)","Type 2",26,0.0875,297.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to glare and blur."
+"2015-07-13_YB-ADq5",2015-07-13,2015-07-13,"YB","AD","5","BgD","Balanus_glandula_(dead)","Type 2",12,0.0875,137.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare and sludge cover (~20% sludge cover)"
+"2015-07-13_YB-ADq8",2015-07-13,2015-07-13,"YB","AD","8","BgD","Balanus_glandula_(dead)","Type 2",2,0.015625,128,"c","Beatriz Vaca","Finished","Full","Cropped","6%","B.g counts likely low due to recruits being obscured by glare and possible sand cover. Possible sand cover ~80%"
+"2015-07-13_YB-ADq1",2015-07-13,2015-07-13,"YB","AD","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to glare and blur."
+"2015-07-13_YB-ADq5",2015-07-13,2015-07-13,"YB","AD","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare and sludge cover (~20% sludge cover)"
+"2015-07-13_YB-ADq8",2015-07-13,2015-07-13,"YB","AD","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","6%","B.g counts likely low due to recruits being obscured by glare and possible sand cover. Possible sand cover ~80%"
+"2015-07-13_YB-ADq1",2015-07-13,2015-07-13,"YB","AD","1","Cth","Chthamalus_dalli","Type 3",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to glare and blur."
+"2015-07-13_YB-ADq5",2015-07-13,2015-07-13,"YB","AD","5","Cth","Chthamalus_dalli","Type 3",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare and sludge cover (~20% sludge cover)"
+"2015-07-13_YB-ADq8",2015-07-13,2015-07-13,"YB","AD","8","Cth","Chthamalus_dalli","Type 3",4,0.015625,256,"c","Beatriz Vaca","Finished","Full","Cropped","6%","B.g counts likely low due to recruits being obscured by glare and possible sand cover. Possible sand cover ~80%"
+"2015-07-13_YB-ADq1",2015-07-13,2015-07-13,"YB","AD","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to glare and blur."
+"2015-07-13_YB-ADq5",2015-07-13,2015-07-13,"YB","AD","5","CthD","Chthamalus_dalli (dead)","Type 4",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare and sludge cover (~20% sludge cover)"
+"2015-07-13_YB-ADq8",2015-07-13,2015-07-13,"YB","AD","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","6%","B.g counts likely low due to recruits being obscured by glare and possible sand cover. Possible sand cover ~80%"
+"2015-07-13_YB-ADq1",2015-07-13,2015-07-13,"YB","AD","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to glare and blur."
+"2015-07-13_YB-ADq5",2015-07-13,2015-07-13,"YB","AD","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare and sludge cover (~20% sludge cover)"
+"2015-07-13_YB-ADq8",2015-07-13,2015-07-13,"YB","AD","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","6%","B.g counts likely low due to recruits being obscured by glare and possible sand cover. Possible sand cover ~80%"
+"2015-07-13_YB-ADq1",2015-07-13,2015-07-13,"YB","AD","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to glare and blur."
+"2015-07-13_YB-ADq5",2015-07-13,2015-07-13,"YB","AD","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare and sludge cover (~20% sludge cover)"
+"2015-07-13_YB-ADq8",2015-07-13,2015-07-13,"YB","AD","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","6%","B.g counts likely low due to recruits being obscured by glare and possible sand cover. Possible sand cover ~80%"
+"2015-07-13_YB-ADq1",2015-07-13,2015-07-13,"YB","AD","1","Lim","Limpets","Type 12",158,0.0875,1805.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to glare and blur."
+"2015-07-13_YB-ADq5",2015-07-13,2015-07-13,"YB","AD","5","Lim","Limpets","Type 12",110,0.0875,1257.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare and sludge cover (~20% sludge cover)"
+"2015-07-13_YB-ADq8",2015-07-13,2015-07-13,"YB","AD","8","Lim","Limpets","Type 12",227,0.0875,2594.28571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","6%","B.g counts likely low due to recruits being obscured by glare and possible sand cover. Possible sand cover ~80%"
+"2015-07-13_YB-ADq1",2015-07-13,2015-07-13,"YB","AD","1","Ls","Littorina_sitkana","Type 13",122,0.0875,1394.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to glare and blur."
+"2015-07-13_YB-ADq5",2015-07-13,2015-07-13,"YB","AD","5","Ls","Littorina_sitkana","Type 13",212,0.0875,2422.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare and sludge cover (~20% sludge cover)"
+"2015-07-13_YB-ADq8",2015-07-13,2015-07-13,"YB","AD","8","Ls","Littorina_sitkana","Type 13",210,0.0875,2400,NA,"Beatriz Vaca","Finished","Full","Cropped","6%","B.g counts likely low due to recruits being obscured by glare and possible sand cover. Possible sand cover ~80%"
+"2015-07-13_YB-ADq1",2015-07-13,2015-07-13,"YB","AD","1","Mc","Mytilus_californianus","Type 17",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to glare and blur."
+"2015-07-13_YB-ADq5",2015-07-13,2015-07-13,"YB","AD","5","Mc","Mytilus_californianus","Type 17",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare and sludge cover (~20% sludge cover)"
+"2015-07-13_YB-ADq8",2015-07-13,2015-07-13,"YB","AD","8","Mc","Mytilus_californianus","Type 17",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","6%","B.g counts likely low due to recruits being obscured by glare and possible sand cover. Possible sand cover ~80%"
+"2015-07-13_YB-ADq1",2015-07-13,2015-07-13,"YB","AD","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to glare and blur."
+"2015-07-13_YB-ADq5",2015-07-13,2015-07-13,"YB","AD","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare and sludge cover (~20% sludge cover)"
+"2015-07-13_YB-ADq8",2015-07-13,2015-07-13,"YB","AD","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","6%","B.g counts likely low due to recruits being obscured by glare and possible sand cover. Possible sand cover ~80%"
+"2015-07-13_YB-ADq1",2015-07-13,2015-07-13,"YB","AD","1","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to glare and blur."
+"2015-07-13_YB-ADq5",2015-07-13,2015-07-13,"YB","AD","5","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare and sludge cover (~20% sludge cover)"
+"2015-07-13_YB-ADq8",2015-07-13,2015-07-13,"YB","AD","8","Myt","Mytilus_spp","Type 7",55,0.0875,628.571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","6%","B.g counts likely low due to recruits being obscured by glare and possible sand cover. Possible sand cover ~80%"
+"2015-07-13_YB-ADq1",2015-07-13,2015-07-13,"YB","AD","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to glare and blur."
+"2015-07-13_YB-ADq5",2015-07-13,2015-07-13,"YB","AD","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare and sludge cover (~20% sludge cover)"
+"2015-07-13_YB-ADq8",2015-07-13,2015-07-13,"YB","AD","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","6%","B.g counts likely low due to recruits being obscured by glare and possible sand cover. Possible sand cover ~80%"
+"2015-07-13_YB-ADq1",2015-07-13,2015-07-13,"YB","AD","1","Mt","Mytilus_trossulus","Type 15",83,0.0875,948.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to glare and blur."
+"2015-07-13_YB-ADq5",2015-07-13,2015-07-13,"YB","AD","5","Mt","Mytilus_trossulus","Type 15",48,0.0875,548.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare and sludge cover (~20% sludge cover)"
+"2015-07-13_YB-ADq8",2015-07-13,2015-07-13,"YB","AD","8","Mt","Mytilus_trossulus","Type 15",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","6%","B.g counts likely low due to recruits being obscured by glare and possible sand cover. Possible sand cover ~80%"
+"2015-07-13_YB-ADq1",2015-07-13,2015-07-13,"YB","AD","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to glare and blur."
+"2015-07-13_YB-ADq5",2015-07-13,2015-07-13,"YB","AD","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare and sludge cover (~20% sludge cover)"
+"2015-07-13_YB-ADq8",2015-07-13,2015-07-13,"YB","AD","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","6%","B.g counts likely low due to recruits being obscured by glare and possible sand cover. Possible sand cover ~80%"
+"2015-07-13_YB-ADq1",2015-07-13,2015-07-13,"YB","AD","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to glare and blur."
+"2015-07-13_YB-ADq5",2015-07-13,2015-07-13,"YB","AD","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare and sludge cover (~20% sludge cover)"
+"2015-07-13_YB-ADq8",2015-07-13,2015-07-13,"YB","AD","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","6%","B.g counts likely low due to recruits being obscured by glare and possible sand cover. Possible sand cover ~80%"
+"2015-07-13_YB-ADq1",2015-07-13,2015-07-13,"YB","AD","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to glare and blur."
+"2015-07-13_YB-ADq5",2015-07-13,2015-07-13,"YB","AD","5","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare and sludge cover (~20% sludge cover)"
+"2015-07-13_YB-ADq8",2015-07-13,2015-07-13,"YB","AD","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","6%","B.g counts likely low due to recruits being obscured by glare and possible sand cover. Possible sand cover ~80%"
+"2015-07-13_YB-ADq1",2015-07-13,2015-07-13,"YB","AD","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to glare and blur."
+"2015-07-13_YB-ADq5",2015-07-13,2015-07-13,"YB","AD","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare and sludge cover (~20% sludge cover)"
+"2015-07-13_YB-ADq8",2015-07-13,2015-07-13,"YB","AD","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","6%","B.g counts likely low due to recruits being obscured by glare and possible sand cover. Possible sand cover ~80%"
+"2015-07-13_YB-ADq1",2015-07-13,2015-07-13,"YB","AD","1","No","Nucella_ostrina","Type 9",24,0.0875,274.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to glare and blur."
+"2015-07-13_YB-ADq5",2015-07-13,2015-07-13,"YB","AD","5","No","Nucella_ostrina","Type 9",18,0.0875,205.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare and sludge cover (~20% sludge cover)"
+"2015-07-13_YB-ADq8",2015-07-13,2015-07-13,"YB","AD","8","No","Nucella_ostrina","Type 9",19,0.0875,217.142857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","6%","B.g counts likely low due to recruits being obscured by glare and possible sand cover. Possible sand cover ~80%"
+"2015-07-13_YB-ADq1",2015-07-13,2015-07-13,"YB","AD","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to glare and blur."
+"2015-07-13_YB-ADq5",2015-07-13,2015-07-13,"YB","AD","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare and sludge cover (~20% sludge cover)"
+"2015-07-13_YB-ADq8",2015-07-13,2015-07-13,"YB","AD","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","6%","B.g counts likely low due to recruits being obscured by glare and possible sand cover. Possible sand cover ~80%"
+"2015-07-13_YB-ADq1",2015-07-13,2015-07-13,"YB","AD","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to glare and blur."
+"2015-07-13_YB-ADq5",2015-07-13,2015-07-13,"YB","AD","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare and sludge cover (~20% sludge cover)"
+"2015-07-13_YB-ADq8",2015-07-13,2015-07-13,"YB","AD","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","6%","B.g counts likely low due to recruits being obscured by glare and possible sand cover. Possible sand cover ~80%"
+"2015-07-13_YB-ADq1",2015-07-13,2015-07-13,"YB","AD","1","Pp","Pollicipes_polymerus","Type 11",418,0.0875,4777.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to glare and blur."
+"2015-07-13_YB-ADq5",2015-07-13,2015-07-13,"YB","AD","5","Pp","Pollicipes_polymerus","Type 11",735,0.0875,8400,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare and sludge cover (~20% sludge cover)"
+"2015-07-13_YB-ADq8",2015-07-13,2015-07-13,"YB","AD","8","Pp","Pollicipes_polymerus","Type 11",198,0.0875,2262.85714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","6%","B.g counts likely low due to recruits being obscured by glare and possible sand cover. Possible sand cover ~80%"
+"2015-07-13_YB-ADq1",2015-07-13,2015-07-13,"YB","AD","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to glare and blur."
+"2015-07-13_YB-ADq5",2015-07-13,2015-07-13,"YB","AD","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare and sludge cover (~20% sludge cover)"
+"2015-07-13_YB-ADq8",2015-07-13,2015-07-13,"YB","AD","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","6%","B.g counts likely low due to recruits being obscured by glare and possible sand cover. Possible sand cover ~80%"
+"2015-07-13_YB-ADq1",2015-07-13,2015-07-13,"YB","AD","1","Sc","Semibalanus_cariosus","Type 5",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to glare and blur."
+"2015-07-13_YB-ADq5",2015-07-13,2015-07-13,"YB","AD","5","Sc","Semibalanus_cariosus","Type 5",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare and sludge cover (~20% sludge cover)"
+"2015-07-13_YB-ADq8",2015-07-13,2015-07-13,"YB","AD","8","Sc","Semibalanus_cariosus","Type 5",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","6%","B.g counts likely low due to recruits being obscured by glare and possible sand cover. Possible sand cover ~80%"
+"2015-07-13_YB-ADq1",2015-07-13,2015-07-13,"YB","AD","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to glare and blur."
+"2015-07-13_YB-ADq5",2015-07-13,2015-07-13,"YB","AD","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to glare and sludge cover (~20% sludge cover)"
+"2015-07-13_YB-ADq8",2015-07-13,2015-07-13,"YB","AD","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","6%","B.g counts likely low due to recruits being obscured by glare and possible sand cover. Possible sand cover ~80%"
+"2015-07-13_YB-AEq1",2015-07-13,2015-07-13,"YB","AE","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and blur."
+"2015-07-13_YB-AEq4",2015-07-13,2015-07-13,"YB","AE","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to algae cover."
+"2015-07-13_YB-AEq5",2015-07-13,2015-07-13,"YB","AE","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae cover."
+"2015-07-13_YB-AEq8",2015-07-13,2015-07-13,"YB","AE","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover and sand cover (Sand ~20% cover)"
+"2015-07-13_YB-AEq1",2015-07-13,2015-07-13,"YB","AE","1","Ae","Anemones","Type 14",24,0.0875,274.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and blur."
+"2015-07-13_YB-AEq4",2015-07-13,2015-07-13,"YB","AE","4","Ae","Anemones","Type 14",15,0.0875,171.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to algae cover."
+"2015-07-13_YB-AEq5",2015-07-13,2015-07-13,"YB","AE","5","Ae","Anemones","Type 14",18,0.0875,205.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae cover."
+"2015-07-13_YB-AEq8",2015-07-13,2015-07-13,"YB","AE","8","Ae","Anemones","Type 14",21,0.0875,240,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover and sand cover (Sand ~20% cover)"
+"2015-07-13_YB-AEq1",2015-07-13,2015-07-13,"YB","AE","1","Bg","Balanus_glandula","Type 1",106,0.0875,1211.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and blur."
+"2015-07-13_YB-AEq4",2015-07-13,2015-07-13,"YB","AE","4","Bg","Balanus_glandula","Type 1",92,0.0875,1051.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to algae cover."
+"2015-07-13_YB-AEq5",2015-07-13,2015-07-13,"YB","AE","5","Bg","Balanus_glandula","Type 1",144,0.0875,1645.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae cover."
+"2015-07-13_YB-AEq8",2015-07-13,2015-07-13,"YB","AE","8","Bg","Balanus_glandula","Type 1",87,0.0875,994.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover and sand cover (Sand ~20% cover)"
+"2015-07-13_YB-AEq1",2015-07-13,2015-07-13,"YB","AE","1","BgD","Balanus_glandula_(dead)","Type 2",9,0.0875,102.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and blur."
+"2015-07-13_YB-AEq4",2015-07-13,2015-07-13,"YB","AE","4","BgD","Balanus_glandula_(dead)","Type 2",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to algae cover."
+"2015-07-13_YB-AEq5",2015-07-13,2015-07-13,"YB","AE","5","BgD","Balanus_glandula_(dead)","Type 2",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae cover."
+"2015-07-13_YB-AEq8",2015-07-13,2015-07-13,"YB","AE","8","BgD","Balanus_glandula_(dead)","Type 2",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover and sand cover (Sand ~20% cover)"
+"2015-07-13_YB-AEq1",2015-07-13,2015-07-13,"YB","AE","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and blur."
+"2015-07-13_YB-AEq4",2015-07-13,2015-07-13,"YB","AE","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to algae cover."
+"2015-07-13_YB-AEq5",2015-07-13,2015-07-13,"YB","AE","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae cover."
+"2015-07-13_YB-AEq8",2015-07-13,2015-07-13,"YB","AE","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover and sand cover (Sand ~20% cover)"
+"2015-07-13_YB-AEq1",2015-07-13,2015-07-13,"YB","AE","1","Cth","Chthamalus_dalli","Type 3",14,0.0875,160,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and blur."
+"2015-07-13_YB-AEq4",2015-07-13,2015-07-13,"YB","AE","4","Cth","Chthamalus_dalli","Type 3",43,0.0875,491.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to algae cover."
+"2015-07-13_YB-AEq5",2015-07-13,2015-07-13,"YB","AE","5","Cth","Chthamalus_dalli","Type 3",26,0.0875,297.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae cover."
+"2015-07-13_YB-AEq8",2015-07-13,2015-07-13,"YB","AE","8","Cth","Chthamalus_dalli","Type 3",25,0.0875,285.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover and sand cover (Sand ~20% cover)"
+"2015-07-13_YB-AEq1",2015-07-13,2015-07-13,"YB","AE","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and blur."
+"2015-07-13_YB-AEq4",2015-07-13,2015-07-13,"YB","AE","4","CthD","Chthamalus_dalli (dead)","Type 4",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to algae cover."
+"2015-07-13_YB-AEq5",2015-07-13,2015-07-13,"YB","AE","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae cover."
+"2015-07-13_YB-AEq8",2015-07-13,2015-07-13,"YB","AE","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover and sand cover (Sand ~20% cover)"
+"2015-07-13_YB-AEq1",2015-07-13,2015-07-13,"YB","AE","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and blur."
+"2015-07-13_YB-AEq4",2015-07-13,2015-07-13,"YB","AE","4","Emp","Emplectonema worm","Type 23",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to algae cover."
+"2015-07-13_YB-AEq5",2015-07-13,2015-07-13,"YB","AE","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae cover."
+"2015-07-13_YB-AEq8",2015-07-13,2015-07-13,"YB","AE","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover and sand cover (Sand ~20% cover)"
+"2015-07-13_YB-AEq1",2015-07-13,2015-07-13,"YB","AE","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and blur."
+"2015-07-13_YB-AEq4",2015-07-13,2015-07-13,"YB","AE","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to algae cover."
+"2015-07-13_YB-AEq5",2015-07-13,2015-07-13,"YB","AE","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae cover."
+"2015-07-13_YB-AEq8",2015-07-13,2015-07-13,"YB","AE","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover and sand cover (Sand ~20% cover)"
+"2015-07-13_YB-AEq1",2015-07-13,2015-07-13,"YB","AE","1","Lim","Limpets","Type 12",187,0.0875,2137.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and blur."
+"2015-07-13_YB-AEq4",2015-07-13,2015-07-13,"YB","AE","4","Lim","Limpets","Type 12",285,0.0875,3257.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to algae cover."
+"2015-07-13_YB-AEq5",2015-07-13,2015-07-13,"YB","AE","5","Lim","Limpets","Type 12",156,0.0875,1782.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae cover."
+"2015-07-13_YB-AEq8",2015-07-13,2015-07-13,"YB","AE","8","Lim","Limpets","Type 12",213,0.0875,2434.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover and sand cover (Sand ~20% cover)"
+"2015-07-13_YB-AEq1",2015-07-13,2015-07-13,"YB","AE","1","Ls","Littorina_sitkana","Type 13",268,0.0875,3062.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and blur."
+"2015-07-13_YB-AEq4",2015-07-13,2015-07-13,"YB","AE","4","Ls","Littorina_sitkana","Type 13",203,0.0875,2320,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to algae cover."
+"2015-07-13_YB-AEq5",2015-07-13,2015-07-13,"YB","AE","5","Ls","Littorina_sitkana","Type 13",216,0.0875,2468.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae cover."
+"2015-07-13_YB-AEq8",2015-07-13,2015-07-13,"YB","AE","8","Ls","Littorina_sitkana","Type 13",214,0.0875,2445.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover and sand cover (Sand ~20% cover)"
+"2015-07-13_YB-AEq1",2015-07-13,2015-07-13,"YB","AE","1","Mc","Mytilus_californianus","Type 17",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and blur."
+"2015-07-13_YB-AEq4",2015-07-13,2015-07-13,"YB","AE","4","Mc","Mytilus_californianus","Type 17",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to algae cover."
+"2015-07-13_YB-AEq5",2015-07-13,2015-07-13,"YB","AE","5","Mc","Mytilus_californianus","Type 17",9,0.0875,102.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae cover."
+"2015-07-13_YB-AEq8",2015-07-13,2015-07-13,"YB","AE","8","Mc","Mytilus_californianus","Type 17",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover and sand cover (Sand ~20% cover)"
+"2015-07-13_YB-AEq1",2015-07-13,2015-07-13,"YB","AE","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and blur."
+"2015-07-13_YB-AEq4",2015-07-13,2015-07-13,"YB","AE","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to algae cover."
+"2015-07-13_YB-AEq5",2015-07-13,2015-07-13,"YB","AE","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae cover."
+"2015-07-13_YB-AEq8",2015-07-13,2015-07-13,"YB","AE","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover and sand cover (Sand ~20% cover)"
+"2015-07-13_YB-AEq1",2015-07-13,2015-07-13,"YB","AE","1","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and blur."
+"2015-07-13_YB-AEq4",2015-07-13,2015-07-13,"YB","AE","4","Myt","Mytilus_spp","Type 7",15,0.0875,171.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to algae cover."
+"2015-07-13_YB-AEq5",2015-07-13,2015-07-13,"YB","AE","5","Myt","Mytilus_spp","Type 7",50,0.0875,571.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae cover."
+"2015-07-13_YB-AEq8",2015-07-13,2015-07-13,"YB","AE","8","Myt","Mytilus_spp","Type 7",21,0.0875,240,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover and sand cover (Sand ~20% cover)"
+"2015-07-13_YB-AEq1",2015-07-13,2015-07-13,"YB","AE","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and blur."
+"2015-07-13_YB-AEq4",2015-07-13,2015-07-13,"YB","AE","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to algae cover."
+"2015-07-13_YB-AEq5",2015-07-13,2015-07-13,"YB","AE","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae cover."
+"2015-07-13_YB-AEq8",2015-07-13,2015-07-13,"YB","AE","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover and sand cover (Sand ~20% cover)"
+"2015-07-13_YB-AEq1",2015-07-13,2015-07-13,"YB","AE","1","Mt","Mytilus_trossulus","Type 15",17,0.0875,194.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and blur."
+"2015-07-13_YB-AEq4",2015-07-13,2015-07-13,"YB","AE","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to algae cover."
+"2015-07-13_YB-AEq5",2015-07-13,2015-07-13,"YB","AE","5","Mt","Mytilus_trossulus","Type 15",153,0.0875,1748.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae cover."
+"2015-07-13_YB-AEq8",2015-07-13,2015-07-13,"YB","AE","8","Mt","Mytilus_trossulus","Type 15",40,0.0875,457.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover and sand cover (Sand ~20% cover)"
+"2015-07-13_YB-AEq1",2015-07-13,2015-07-13,"YB","AE","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and blur."
+"2015-07-13_YB-AEq4",2015-07-13,2015-07-13,"YB","AE","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to algae cover."
+"2015-07-13_YB-AEq5",2015-07-13,2015-07-13,"YB","AE","5","MtD","Mytilus_trossulus_(dead)","Type 16",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae cover."
+"2015-07-13_YB-AEq8",2015-07-13,2015-07-13,"YB","AE","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover and sand cover (Sand ~20% cover)"
+"2015-07-13_YB-AEq1",2015-07-13,2015-07-13,"YB","AE","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and blur."
+"2015-07-13_YB-AEq4",2015-07-13,2015-07-13,"YB","AE","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to algae cover."
+"2015-07-13_YB-AEq5",2015-07-13,2015-07-13,"YB","AE","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae cover."
+"2015-07-13_YB-AEq8",2015-07-13,2015-07-13,"YB","AE","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover and sand cover (Sand ~20% cover)"
+"2015-07-13_YB-AEq1",2015-07-13,2015-07-13,"YB","AE","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and blur."
+"2015-07-13_YB-AEq4",2015-07-13,2015-07-13,"YB","AE","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to algae cover."
+"2015-07-13_YB-AEq5",2015-07-13,2015-07-13,"YB","AE","5","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae cover."
+"2015-07-13_YB-AEq8",2015-07-13,2015-07-13,"YB","AE","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover and sand cover (Sand ~20% cover)"
+"2015-07-13_YB-AEq1",2015-07-13,2015-07-13,"YB","AE","1","Negg","Nucella_eggs","Type 26",9,0.0875,102.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and blur."
+"2015-07-13_YB-AEq4",2015-07-13,2015-07-13,"YB","AE","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to algae cover."
+"2015-07-13_YB-AEq5",2015-07-13,2015-07-13,"YB","AE","5","Negg","Nucella_eggs","Type 26",13,0.0875,148.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae cover."
+"2015-07-13_YB-AEq8",2015-07-13,2015-07-13,"YB","AE","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover and sand cover (Sand ~20% cover)"
+"2015-07-13_YB-AEq1",2015-07-13,2015-07-13,"YB","AE","1","No","Nucella_ostrina","Type 9",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and blur."
+"2015-07-13_YB-AEq4",2015-07-13,2015-07-13,"YB","AE","4","No","Nucella_ostrina","Type 9",20,0.0875,228.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to algae cover."
+"2015-07-13_YB-AEq5",2015-07-13,2015-07-13,"YB","AE","5","No","Nucella_ostrina","Type 9",37,0.0875,422.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae cover."
+"2015-07-13_YB-AEq8",2015-07-13,2015-07-13,"YB","AE","8","No","Nucella_ostrina","Type 9",47,0.0875,537.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover and sand cover (Sand ~20% cover)"
+"2015-07-13_YB-AEq1",2015-07-13,2015-07-13,"YB","AE","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and blur."
+"2015-07-13_YB-AEq4",2015-07-13,2015-07-13,"YB","AE","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to algae cover."
+"2015-07-13_YB-AEq5",2015-07-13,2015-07-13,"YB","AE","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae cover."
+"2015-07-13_YB-AEq8",2015-07-13,2015-07-13,"YB","AE","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover and sand cover (Sand ~20% cover)"
+"2015-07-13_YB-AEq1",2015-07-13,2015-07-13,"YB","AE","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and blur."
+"2015-07-13_YB-AEq4",2015-07-13,2015-07-13,"YB","AE","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to algae cover."
+"2015-07-13_YB-AEq5",2015-07-13,2015-07-13,"YB","AE","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae cover."
+"2015-07-13_YB-AEq8",2015-07-13,2015-07-13,"YB","AE","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover and sand cover (Sand ~20% cover)"
+"2015-07-13_YB-AEq1",2015-07-13,2015-07-13,"YB","AE","1","Pp","Pollicipes_polymerus","Type 11",121,0.0875,1382.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and blur."
+"2015-07-13_YB-AEq4",2015-07-13,2015-07-13,"YB","AE","4","Pp","Pollicipes_polymerus","Type 11",44,0.0875,502.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to algae cover."
+"2015-07-13_YB-AEq5",2015-07-13,2015-07-13,"YB","AE","5","Pp","Pollicipes_polymerus","Type 11",37,0.0875,422.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae cover."
+"2015-07-13_YB-AEq8",2015-07-13,2015-07-13,"YB","AE","8","Pp","Pollicipes_polymerus","Type 11",20,0.0875,228.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover and sand cover (Sand ~20% cover)"
+"2015-07-13_YB-AEq1",2015-07-13,2015-07-13,"YB","AE","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and blur."
+"2015-07-13_YB-AEq4",2015-07-13,2015-07-13,"YB","AE","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to algae cover."
+"2015-07-13_YB-AEq5",2015-07-13,2015-07-13,"YB","AE","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae cover."
+"2015-07-13_YB-AEq8",2015-07-13,2015-07-13,"YB","AE","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover and sand cover (Sand ~20% cover)"
+"2015-07-13_YB-AEq1",2015-07-13,2015-07-13,"YB","AE","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and blur."
+"2015-07-13_YB-AEq4",2015-07-13,2015-07-13,"YB","AE","4","Sc","Semibalanus_cariosus","Type 5",10,0.0875,114.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to algae cover."
+"2015-07-13_YB-AEq5",2015-07-13,2015-07-13,"YB","AE","5","Sc","Semibalanus_cariosus","Type 5",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae cover."
+"2015-07-13_YB-AEq8",2015-07-13,2015-07-13,"YB","AE","8","Sc","Semibalanus_cariosus","Type 5",13,0.0875,148.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover and sand cover (Sand ~20% cover)"
+"2015-07-13_YB-AEq1",2015-07-13,2015-07-13,"YB","AE","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and blur."
+"2015-07-13_YB-AEq4",2015-07-13,2015-07-13,"YB","AE","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts likely low due to algae cover."
+"2015-07-13_YB-AEq5",2015-07-13,2015-07-13,"YB","AE","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to algae cover."
+"2015-07-13_YB-AEq8",2015-07-13,2015-07-13,"YB","AE","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts likely low due to algae cover and sand cover (Sand ~20% cover)"
+"2015-07-13_YB-AFq5",2015-07-13,2015-07-13,"YB","AF","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts likely low due to glare and algae."
+"2015-07-13_YB-AFq8",2015-07-13,2015-07-13,"YB","AF","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","18%","Counts likely low due to blur and glare"
+"2015-07-13_YB-AFq9",2015-07-13,2015-07-13,"YB","AF","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Counts likely low due to glare and blur"
+"2015-07-13_YB-AFq5",2015-07-13,2015-07-13,"YB","AF","5","Ae","Anemones","Type 14",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts likely low due to glare and algae."
+"2015-07-13_YB-AFq8",2015-07-13,2015-07-13,"YB","AF","8","Ae","Anemones","Type 14",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","18%","Counts likely low due to blur and glare"
+"2015-07-13_YB-AFq9",2015-07-13,2015-07-13,"YB","AF","9","Ae","Anemones","Type 14",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Counts likely low due to glare and blur"
+"2015-07-13_YB-AFq5",2015-07-13,2015-07-13,"YB","AF","5","Bg","Balanus_glandula","Type 1",283,0.0875,3234.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts likely low due to glare and algae."
+"2015-07-13_YB-AFq8",2015-07-13,2015-07-13,"YB","AF","8","Bg","Balanus_glandula","Type 1",655,0.0875,7485.71428571429,NA,"Celeste Moen","Finished","Full","Full","18%","Counts likely low due to blur and glare"
+"2015-07-13_YB-AFq9",2015-07-13,2015-07-13,"YB","AF","9","Bg","Balanus_glandula","Type 1",730,0.015625,46720,"c","Stephanie Merhoff","Finished","Full","Cropped","0%","Counts likely low due to glare and blur"
+"2015-07-13_YB-AFq5",2015-07-13,2015-07-13,"YB","AF","5","BgD","Balanus_glandula_(dead)","Type 2",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts likely low due to glare and algae."
+"2015-07-13_YB-AFq8",2015-07-13,2015-07-13,"YB","AF","8","BgD","Balanus_glandula_(dead)","Type 2",26,0.0875,297.142857142857,NA,"Celeste Moen","Finished","Full","Full","18%","Counts likely low due to blur and glare"
+"2015-07-13_YB-AFq9",2015-07-13,2015-07-13,"YB","AF","9","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","0%","Counts likely low due to glare and blur"
+"2015-07-13_YB-AFq5",2015-07-13,2015-07-13,"YB","AF","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts likely low due to glare and algae."
+"2015-07-13_YB-AFq8",2015-07-13,2015-07-13,"YB","AF","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","18%","Counts likely low due to blur and glare"
+"2015-07-13_YB-AFq9",2015-07-13,2015-07-13,"YB","AF","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Counts likely low due to glare and blur"
+"2015-07-13_YB-AFq5",2015-07-13,2015-07-13,"YB","AF","5","Cth","Chthamalus_dalli","Type 3",250,0.0875,2857.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts likely low due to glare and algae."
+"2015-07-13_YB-AFq8",2015-07-13,2015-07-13,"YB","AF","8","Cth","Chthamalus_dalli","Type 3",55,0.0875,628.571428571429,NA,"Celeste Moen","Finished","Full","Full","18%","Counts likely low due to blur and glare"
+"2015-07-13_YB-AFq9",2015-07-13,2015-07-13,"YB","AF","9","Cth","Chthamalus_dalli","Type 3",5,0.015625,320,"c","Stephanie Merhoff","Finished","Full","Cropped","0%","Counts likely low due to glare and blur"
+"2015-07-13_YB-AFq5",2015-07-13,2015-07-13,"YB","AF","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts likely low due to glare and algae."
+"2015-07-13_YB-AFq8",2015-07-13,2015-07-13,"YB","AF","8","CthD","Chthamalus_dalli (dead)","Type 4",5,0.0875,57.1428571428571,NA,"Celeste Moen","Finished","Full","Full","18%","Counts likely low due to blur and glare"
+"2015-07-13_YB-AFq9",2015-07-13,2015-07-13,"YB","AF","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","0%","Counts likely low due to glare and blur"
+"2015-07-13_YB-AFq5",2015-07-13,2015-07-13,"YB","AF","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts likely low due to glare and algae."
+"2015-07-13_YB-AFq8",2015-07-13,2015-07-13,"YB","AF","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","18%","Counts likely low due to blur and glare"
+"2015-07-13_YB-AFq9",2015-07-13,2015-07-13,"YB","AF","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Counts likely low due to glare and blur"
+"2015-07-13_YB-AFq5",2015-07-13,2015-07-13,"YB","AF","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts likely low due to glare and algae."
+"2015-07-13_YB-AFq8",2015-07-13,2015-07-13,"YB","AF","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","18%","Counts likely low due to blur and glare"
+"2015-07-13_YB-AFq9",2015-07-13,2015-07-13,"YB","AF","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Counts likely low due to glare and blur"
+"2015-07-13_YB-AFq5",2015-07-13,2015-07-13,"YB","AF","5","Lim","Limpets","Type 12",280,0.0875,3200,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts likely low due to glare and algae."
+"2015-07-13_YB-AFq8",2015-07-13,2015-07-13,"YB","AF","8","Lim","Limpets","Type 12",301,0.0875,3440,NA,"Celeste Moen","Finished","Full","Full","18%","Counts likely low due to blur and glare"
+"2015-07-13_YB-AFq9",2015-07-13,2015-07-13,"YB","AF","9","Lim","Limpets","Type 12",112,0.0875,1280,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Counts likely low due to glare and blur"
+"2015-07-13_YB-AFq5",2015-07-13,2015-07-13,"YB","AF","5","Ls","Littorina_sitkana","Type 13",537,0.0875,6137.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts likely low due to glare and algae."
+"2015-07-13_YB-AFq8",2015-07-13,2015-07-13,"YB","AF","8","Ls","Littorina_sitkana","Type 13",365,0.0875,4171.42857142857,NA,"Celeste Moen","Finished","Full","Full","18%","Counts likely low due to blur and glare"
+"2015-07-13_YB-AFq9",2015-07-13,2015-07-13,"YB","AF","9","Ls","Littorina_sitkana","Type 13",681,0.0875,7782.85714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Counts likely low due to glare and blur"
+"2015-07-13_YB-AFq5",2015-07-13,2015-07-13,"YB","AF","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts likely low due to glare and algae."
+"2015-07-13_YB-AFq8",2015-07-13,2015-07-13,"YB","AF","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","18%","Counts likely low due to blur and glare"
+"2015-07-13_YB-AFq9",2015-07-13,2015-07-13,"YB","AF","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Counts likely low due to glare and blur"
+"2015-07-13_YB-AFq5",2015-07-13,2015-07-13,"YB","AF","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts likely low due to glare and algae."
+"2015-07-13_YB-AFq8",2015-07-13,2015-07-13,"YB","AF","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","18%","Counts likely low due to blur and glare"
+"2015-07-13_YB-AFq9",2015-07-13,2015-07-13,"YB","AF","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Counts likely low due to glare and blur"
+"2015-07-13_YB-AFq5",2015-07-13,2015-07-13,"YB","AF","5","Myt","Mytilus_spp","Type 7",17,0.0875,194.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts likely low due to glare and algae."
+"2015-07-13_YB-AFq8",2015-07-13,2015-07-13,"YB","AF","8","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","18%","Counts likely low due to blur and glare"
+"2015-07-13_YB-AFq9",2015-07-13,2015-07-13,"YB","AF","9","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Counts likely low due to glare and blur"
+"2015-07-13_YB-AFq5",2015-07-13,2015-07-13,"YB","AF","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts likely low due to glare and algae."
+"2015-07-13_YB-AFq8",2015-07-13,2015-07-13,"YB","AF","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","18%","Counts likely low due to blur and glare"
+"2015-07-13_YB-AFq9",2015-07-13,2015-07-13,"YB","AF","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Counts likely low due to glare and blur"
+"2015-07-13_YB-AFq5",2015-07-13,2015-07-13,"YB","AF","5","Mt","Mytilus_trossulus","Type 15",42,0.0875,480,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts likely low due to glare and algae."
+"2015-07-13_YB-AFq8",2015-07-13,2015-07-13,"YB","AF","8","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","18%","Counts likely low due to blur and glare"
+"2015-07-13_YB-AFq9",2015-07-13,2015-07-13,"YB","AF","9","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Counts likely low due to glare and blur"
+"2015-07-13_YB-AFq5",2015-07-13,2015-07-13,"YB","AF","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts likely low due to glare and algae."
+"2015-07-13_YB-AFq8",2015-07-13,2015-07-13,"YB","AF","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","18%","Counts likely low due to blur and glare"
+"2015-07-13_YB-AFq9",2015-07-13,2015-07-13,"YB","AF","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Counts likely low due to glare and blur"
+"2015-07-13_YB-AFq5",2015-07-13,2015-07-13,"YB","AF","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts likely low due to glare and algae."
+"2015-07-13_YB-AFq8",2015-07-13,2015-07-13,"YB","AF","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","18%","Counts likely low due to blur and glare"
+"2015-07-13_YB-AFq9",2015-07-13,2015-07-13,"YB","AF","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Counts likely low due to glare and blur"
+"2015-07-13_YB-AFq5",2015-07-13,2015-07-13,"YB","AF","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts likely low due to glare and algae."
+"2015-07-13_YB-AFq8",2015-07-13,2015-07-13,"YB","AF","8","Nc","Nucella_canaliculata","Type 10",2,0.0875,22.8571428571429,NA,"Celeste Moen","Finished","Full","Full","18%","Counts likely low due to blur and glare"
+"2015-07-13_YB-AFq9",2015-07-13,2015-07-13,"YB","AF","9","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Counts likely low due to glare and blur"
+"2015-07-13_YB-AFq5",2015-07-13,2015-07-13,"YB","AF","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts likely low due to glare and algae."
+"2015-07-13_YB-AFq8",2015-07-13,2015-07-13,"YB","AF","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","18%","Counts likely low due to blur and glare"
+"2015-07-13_YB-AFq9",2015-07-13,2015-07-13,"YB","AF","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Counts likely low due to glare and blur"
+"2015-07-13_YB-AFq5",2015-07-13,2015-07-13,"YB","AF","5","No","Nucella_ostrina","Type 9",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts likely low due to glare and algae."
+"2015-07-13_YB-AFq8",2015-07-13,2015-07-13,"YB","AF","8","No","Nucella_ostrina","Type 9",26,0.0875,297.142857142857,NA,"Celeste Moen","Finished","Full","Full","18%","Counts likely low due to blur and glare"
+"2015-07-13_YB-AFq9",2015-07-13,2015-07-13,"YB","AF","9","No","Nucella_ostrina","Type 9",82,0.0875,937.142857142857,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Counts likely low due to glare and blur"
+"2015-07-13_YB-AFq5",2015-07-13,2015-07-13,"YB","AF","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts likely low due to glare and algae."
+"2015-07-13_YB-AFq8",2015-07-13,2015-07-13,"YB","AF","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","18%","Counts likely low due to blur and glare"
+"2015-07-13_YB-AFq9",2015-07-13,2015-07-13,"YB","AF","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Counts likely low due to glare and blur"
+"2015-07-13_YB-AFq5",2015-07-13,2015-07-13,"YB","AF","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts likely low due to glare and algae."
+"2015-07-13_YB-AFq8",2015-07-13,2015-07-13,"YB","AF","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","18%","Counts likely low due to blur and glare"
+"2015-07-13_YB-AFq9",2015-07-13,2015-07-13,"YB","AF","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Counts likely low due to glare and blur"
+"2015-07-13_YB-AFq5",2015-07-13,2015-07-13,"YB","AF","5","Pp","Pollicipes_polymerus","Type 11",14,0.0875,160,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts likely low due to glare and algae."
+"2015-07-13_YB-AFq8",2015-07-13,2015-07-13,"YB","AF","8","Pp","Pollicipes_polymerus","Type 11",2,0.0875,22.8571428571429,NA,"Celeste Moen","Finished","Full","Full","18%","Counts likely low due to blur and glare"
+"2015-07-13_YB-AFq9",2015-07-13,2015-07-13,"YB","AF","9","Pp","Pollicipes_polymerus","Type 11",4,0.0875,45.7142857142857,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Counts likely low due to glare and blur"
+"2015-07-13_YB-AFq5",2015-07-13,2015-07-13,"YB","AF","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts likely low due to glare and algae."
+"2015-07-13_YB-AFq8",2015-07-13,2015-07-13,"YB","AF","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","18%","Counts likely low due to blur and glare"
+"2015-07-13_YB-AFq9",2015-07-13,2015-07-13,"YB","AF","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Counts likely low due to glare and blur"
+"2015-07-13_YB-AFq5",2015-07-13,2015-07-13,"YB","AF","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts likely low due to glare and algae."
+"2015-07-13_YB-AFq8",2015-07-13,2015-07-13,"YB","AF","8","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Celeste Moen","Finished","Full","Full","18%","Counts likely low due to blur and glare"
+"2015-07-13_YB-AFq9",2015-07-13,2015-07-13,"YB","AF","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Counts likely low due to glare and blur"
+"2015-07-13_YB-AFq5",2015-07-13,2015-07-13,"YB","AF","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts likely low due to glare and algae."
+"2015-07-13_YB-AFq8",2015-07-13,2015-07-13,"YB","AF","8","ScD","Semibalanus_cariosus_(dead)","Type 6",4,0.0875,45.7142857142857,NA,"Celeste Moen","Finished","Full","Full","18%","Counts likely low due to blur and glare"
+"2015-07-13_YB-AFq9",2015-07-13,2015-07-13,"YB","AF","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","0%","Counts likely low due to glare and blur"
+"2015-07-13_YB-AGq2",2015-07-13,2015-07-13,"YB","AG","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to glare, algae, and blur."
+"2015-07-13_YB-AGq7",2015-07-13,2015-07-13,"YB","AG","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur and glare"
+"2015-07-13_YB-AGq9",2015-07-13,2015-07-13,"YB","AG","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur"
+"2015-07-13_YB-AGq2",2015-07-13,2015-07-13,"YB","AG","2","Ae","Anemones","Type 14",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to glare, algae, and blur."
+"2015-07-13_YB-AGq7",2015-07-13,2015-07-13,"YB","AG","7","Ae","Anemones","Type 14",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur and glare"
+"2015-07-13_YB-AGq9",2015-07-13,2015-07-13,"YB","AG","9","Ae","Anemones","Type 14",69,0.0875,788.571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur"
+"2015-07-13_YB-AGq2",2015-07-13,2015-07-13,"YB","AG","2","Bg","Balanus_glandula","Type 1",574,0.0875,6560,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to glare, algae, and blur."
+"2015-07-13_YB-AGq7",2015-07-13,2015-07-13,"YB","AG","7","Bg","Balanus_glandula","Type 1",482,0.0875,5508.57142857143,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur and glare"
+"2015-07-13_YB-AGq9",2015-07-13,2015-07-13,"YB","AG","9","Bg","Balanus_glandula","Type 1",90,0.0875,1028.57142857143,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur"
+"2015-07-13_YB-AGq2",2015-07-13,2015-07-13,"YB","AG","2","BgD","Balanus_glandula_(dead)","Type 2",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to glare, algae, and blur."
+"2015-07-13_YB-AGq7",2015-07-13,2015-07-13,"YB","AG","7","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur and glare"
+"2015-07-13_YB-AGq9",2015-07-13,2015-07-13,"YB","AG","9","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur"
+"2015-07-13_YB-AGq2",2015-07-13,2015-07-13,"YB","AG","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to glare, algae, and blur."
+"2015-07-13_YB-AGq7",2015-07-13,2015-07-13,"YB","AG","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur and glare"
+"2015-07-13_YB-AGq9",2015-07-13,2015-07-13,"YB","AG","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur"
+"2015-07-13_YB-AGq2",2015-07-13,2015-07-13,"YB","AG","2","Cth","Chthamalus_dalli","Type 3",367,0.0875,4194.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to glare, algae, and blur."
+"2015-07-13_YB-AGq7",2015-07-13,2015-07-13,"YB","AG","7","Cth","Chthamalus_dalli","Type 3",4,0.0875,45.7142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur and glare"
+"2015-07-13_YB-AGq9",2015-07-13,2015-07-13,"YB","AG","9","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur"
+"2015-07-13_YB-AGq2",2015-07-13,2015-07-13,"YB","AG","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to glare, algae, and blur."
+"2015-07-13_YB-AGq7",2015-07-13,2015-07-13,"YB","AG","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur and glare"
+"2015-07-13_YB-AGq9",2015-07-13,2015-07-13,"YB","AG","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur"
+"2015-07-13_YB-AGq2",2015-07-13,2015-07-13,"YB","AG","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to glare, algae, and blur."
+"2015-07-13_YB-AGq7",2015-07-13,2015-07-13,"YB","AG","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur and glare"
+"2015-07-13_YB-AGq9",2015-07-13,2015-07-13,"YB","AG","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur"
+"2015-07-13_YB-AGq2",2015-07-13,2015-07-13,"YB","AG","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to glare, algae, and blur."
+"2015-07-13_YB-AGq7",2015-07-13,2015-07-13,"YB","AG","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur and glare"
+"2015-07-13_YB-AGq9",2015-07-13,2015-07-13,"YB","AG","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur"
+"2015-07-13_YB-AGq2",2015-07-13,2015-07-13,"YB","AG","2","Lim","Limpets","Type 12",403,0.0875,4605.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to glare, algae, and blur."
+"2015-07-13_YB-AGq7",2015-07-13,2015-07-13,"YB","AG","7","Lim","Limpets","Type 12",351,0.0875,4011.42857142857,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur and glare"
+"2015-07-13_YB-AGq9",2015-07-13,2015-07-13,"YB","AG","9","Lim","Limpets","Type 12",143,0.0875,1634.28571428571,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur"
+"2015-07-13_YB-AGq2",2015-07-13,2015-07-13,"YB","AG","2","Ls","Littorina_sitkana","Type 13",281,0.0875,3211.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to glare, algae, and blur."
+"2015-07-13_YB-AGq7",2015-07-13,2015-07-13,"YB","AG","7","Ls","Littorina_sitkana","Type 13",403,0.0875,4605.71428571429,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur and glare"
+"2015-07-13_YB-AGq9",2015-07-13,2015-07-13,"YB","AG","9","Ls","Littorina_sitkana","Type 13",390,0.0875,4457.14285714286,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur"
+"2015-07-13_YB-AGq2",2015-07-13,2015-07-13,"YB","AG","2","Mc","Mytilus_californianus","Type 17",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to glare, algae, and blur."
+"2015-07-13_YB-AGq7",2015-07-13,2015-07-13,"YB","AG","7","Mc","Mytilus_californianus","Type 17",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur and glare"
+"2015-07-13_YB-AGq9",2015-07-13,2015-07-13,"YB","AG","9","Mc","Mytilus_californianus","Type 17",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur"
+"2015-07-13_YB-AGq2",2015-07-13,2015-07-13,"YB","AG","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to glare, algae, and blur."
+"2015-07-13_YB-AGq7",2015-07-13,2015-07-13,"YB","AG","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur and glare"
+"2015-07-13_YB-AGq9",2015-07-13,2015-07-13,"YB","AG","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur"
+"2015-07-13_YB-AGq2",2015-07-13,2015-07-13,"YB","AG","2","Myt","Mytilus_spp","Type 7",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to glare, algae, and blur."
+"2015-07-13_YB-AGq7",2015-07-13,2015-07-13,"YB","AG","7","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur and glare"
+"2015-07-13_YB-AGq9",2015-07-13,2015-07-13,"YB","AG","9","Myt","Mytilus_spp","Type 7",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur"
+"2015-07-13_YB-AGq2",2015-07-13,2015-07-13,"YB","AG","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to glare, algae, and blur."
+"2015-07-13_YB-AGq7",2015-07-13,2015-07-13,"YB","AG","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur and glare"
+"2015-07-13_YB-AGq9",2015-07-13,2015-07-13,"YB","AG","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur"
+"2015-07-13_YB-AGq2",2015-07-13,2015-07-13,"YB","AG","2","Mt","Mytilus_trossulus","Type 15",49,0.0875,560,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to glare, algae, and blur."
+"2015-07-13_YB-AGq7",2015-07-13,2015-07-13,"YB","AG","7","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur and glare"
+"2015-07-13_YB-AGq9",2015-07-13,2015-07-13,"YB","AG","9","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur"
+"2015-07-13_YB-AGq2",2015-07-13,2015-07-13,"YB","AG","2","MtD","Mytilus_trossulus_(dead)","Type 16",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to glare, algae, and blur."
+"2015-07-13_YB-AGq7",2015-07-13,2015-07-13,"YB","AG","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur and glare"
+"2015-07-13_YB-AGq9",2015-07-13,2015-07-13,"YB","AG","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur"
+"2015-07-13_YB-AGq2",2015-07-13,2015-07-13,"YB","AG","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to glare, algae, and blur."
+"2015-07-13_YB-AGq7",2015-07-13,2015-07-13,"YB","AG","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur and glare"
+"2015-07-13_YB-AGq9",2015-07-13,2015-07-13,"YB","AG","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur"
+"2015-07-13_YB-AGq2",2015-07-13,2015-07-13,"YB","AG","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to glare, algae, and blur."
+"2015-07-13_YB-AGq7",2015-07-13,2015-07-13,"YB","AG","7","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur and glare"
+"2015-07-13_YB-AGq9",2015-07-13,2015-07-13,"YB","AG","9","Nc","Nucella_canaliculata","Type 10",5,0.0875,57.1428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur"
+"2015-07-13_YB-AGq2",2015-07-13,2015-07-13,"YB","AG","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to glare, algae, and blur."
+"2015-07-13_YB-AGq7",2015-07-13,2015-07-13,"YB","AG","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur and glare"
+"2015-07-13_YB-AGq9",2015-07-13,2015-07-13,"YB","AG","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur"
+"2015-07-13_YB-AGq2",2015-07-13,2015-07-13,"YB","AG","2","No","Nucella_ostrina","Type 9",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to glare, algae, and blur."
+"2015-07-13_YB-AGq7",2015-07-13,2015-07-13,"YB","AG","7","No","Nucella_ostrina","Type 9",11,0.0875,125.714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur and glare"
+"2015-07-13_YB-AGq9",2015-07-13,2015-07-13,"YB","AG","9","No","Nucella_ostrina","Type 9",15,0.0875,171.428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur"
+"2015-07-13_YB-AGq2",2015-07-13,2015-07-13,"YB","AG","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to glare, algae, and blur."
+"2015-07-13_YB-AGq7",2015-07-13,2015-07-13,"YB","AG","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur and glare"
+"2015-07-13_YB-AGq9",2015-07-13,2015-07-13,"YB","AG","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur"
+"2015-07-13_YB-AGq2",2015-07-13,2015-07-13,"YB","AG","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to glare, algae, and blur."
+"2015-07-13_YB-AGq7",2015-07-13,2015-07-13,"YB","AG","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur and glare"
+"2015-07-13_YB-AGq9",2015-07-13,2015-07-13,"YB","AG","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur"
+"2015-07-13_YB-AGq2",2015-07-13,2015-07-13,"YB","AG","2","Pp","Pollicipes_polymerus","Type 11",25,0.0875,285.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to glare, algae, and blur."
+"2015-07-13_YB-AGq7",2015-07-13,2015-07-13,"YB","AG","7","Pp","Pollicipes_polymerus","Type 11",64,0.0875,731.428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur and glare"
+"2015-07-13_YB-AGq9",2015-07-13,2015-07-13,"YB","AG","9","Pp","Pollicipes_polymerus","Type 11",337,0.0875,3851.42857142857,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur"
+"2015-07-13_YB-AGq2",2015-07-13,2015-07-13,"YB","AG","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to glare, algae, and blur."
+"2015-07-13_YB-AGq7",2015-07-13,2015-07-13,"YB","AG","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur and glare"
+"2015-07-13_YB-AGq9",2015-07-13,2015-07-13,"YB","AG","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur"
+"2015-07-13_YB-AGq2",2015-07-13,2015-07-13,"YB","AG","2","Sc","Semibalanus_cariosus","Type 5",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to glare, algae, and blur."
+"2015-07-13_YB-AGq7",2015-07-13,2015-07-13,"YB","AG","7","Sc","Semibalanus_cariosus","Type 5",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur and glare"
+"2015-07-13_YB-AGq9",2015-07-13,2015-07-13,"YB","AG","9","Sc","Semibalanus_cariosus","Type 5",4,0.0875,45.7142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur"
+"2015-07-13_YB-AGq2",2015-07-13,2015-07-13,"YB","AG","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to glare, algae, and blur."
+"2015-07-13_YB-AGq7",2015-07-13,2015-07-13,"YB","AG","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur and glare"
+"2015-07-13_YB-AGq9",2015-07-13,2015-07-13,"YB","AG","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur"
+"2015-07-13_YB-Bq1",2015-07-13,2015-07-13,"YB","B","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-07-13_YB-Bq5",2015-07-13,2015-07-13,"YB","B","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-07-13_YB-Bq6",2015-07-13,2015-07-13,"YB","B","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts may be low due to glare."
+"2015-07-13_YB-Bq1",2015-07-13,2015-07-13,"YB","B","1","Ae","Anemones","Type 14",11,0.0875,125.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-07-13_YB-Bq5",2015-07-13,2015-07-13,"YB","B","5","Ae","Anemones","Type 14",35,0.0875,400,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-07-13_YB-Bq6",2015-07-13,2015-07-13,"YB","B","6","Ae","Anemones","Type 14",55,0.0875,628.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts may be low due to glare."
+"2015-07-13_YB-Bq1",2015-07-13,2015-07-13,"YB","B","1","Bg","Balanus_glandula","Type 1",49,0.0875,560,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-07-13_YB-Bq5",2015-07-13,2015-07-13,"YB","B","5","Bg","Balanus_glandula","Type 1",113,0.0875,1291.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-07-13_YB-Bq6",2015-07-13,2015-07-13,"YB","B","6","Bg","Balanus_glandula","Type 1",289,0.0875,3302.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts may be low due to glare."
+"2015-07-13_YB-Bq1",2015-07-13,2015-07-13,"YB","B","1","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-07-13_YB-Bq5",2015-07-13,2015-07-13,"YB","B","5","BgD","Balanus_glandula_(dead)","Type 2",12,0.0875,137.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-07-13_YB-Bq6",2015-07-13,2015-07-13,"YB","B","6","BgD","Balanus_glandula_(dead)","Type 2",23,0.0875,262.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts may be low due to glare."
+"2015-07-13_YB-Bq1",2015-07-13,2015-07-13,"YB","B","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-07-13_YB-Bq5",2015-07-13,2015-07-13,"YB","B","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-07-13_YB-Bq6",2015-07-13,2015-07-13,"YB","B","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts may be low due to glare."
+"2015-07-13_YB-Bq1",2015-07-13,2015-07-13,"YB","B","1","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-07-13_YB-Bq5",2015-07-13,2015-07-13,"YB","B","5","Cth","Chthamalus_dalli","Type 3",15,0.0875,171.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-07-13_YB-Bq6",2015-07-13,2015-07-13,"YB","B","6","Cth","Chthamalus_dalli","Type 3",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts may be low due to glare."
+"2015-07-13_YB-Bq1",2015-07-13,2015-07-13,"YB","B","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-07-13_YB-Bq5",2015-07-13,2015-07-13,"YB","B","5","CthD","Chthamalus_dalli (dead)","Type 4",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-07-13_YB-Bq6",2015-07-13,2015-07-13,"YB","B","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts may be low due to glare."
+"2015-07-13_YB-Bq1",2015-07-13,2015-07-13,"YB","B","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-07-13_YB-Bq5",2015-07-13,2015-07-13,"YB","B","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-07-13_YB-Bq6",2015-07-13,2015-07-13,"YB","B","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts may be low due to glare."
+"2015-07-13_YB-Bq1",2015-07-13,2015-07-13,"YB","B","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-07-13_YB-Bq5",2015-07-13,2015-07-13,"YB","B","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-07-13_YB-Bq6",2015-07-13,2015-07-13,"YB","B","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts may be low due to glare."
+"2015-07-13_YB-Bq1",2015-07-13,2015-07-13,"YB","B","1","Lim","Limpets","Type 12",129,0.0875,1474.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-07-13_YB-Bq5",2015-07-13,2015-07-13,"YB","B","5","Lim","Limpets","Type 12",113,0.0875,1291.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-07-13_YB-Bq6",2015-07-13,2015-07-13,"YB","B","6","Lim","Limpets","Type 12",172,0.0875,1965.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts may be low due to glare."
+"2015-07-13_YB-Bq1",2015-07-13,2015-07-13,"YB","B","1","Ls","Littorina_sitkana","Type 13",16,0.0875,182.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-07-13_YB-Bq5",2015-07-13,2015-07-13,"YB","B","5","Ls","Littorina_sitkana","Type 13",60,0.0875,685.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-07-13_YB-Bq6",2015-07-13,2015-07-13,"YB","B","6","Ls","Littorina_sitkana","Type 13",73,0.0875,834.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts may be low due to glare."
+"2015-07-13_YB-Bq1",2015-07-13,2015-07-13,"YB","B","1","Mc","Mytilus_californianus","Type 17",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-07-13_YB-Bq5",2015-07-13,2015-07-13,"YB","B","5","Mc","Mytilus_californianus","Type 17",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-07-13_YB-Bq6",2015-07-13,2015-07-13,"YB","B","6","Mc","Mytilus_californianus","Type 17",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts may be low due to glare."
+"2015-07-13_YB-Bq1",2015-07-13,2015-07-13,"YB","B","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-07-13_YB-Bq5",2015-07-13,2015-07-13,"YB","B","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-07-13_YB-Bq6",2015-07-13,2015-07-13,"YB","B","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts may be low due to glare."
+"2015-07-13_YB-Bq1",2015-07-13,2015-07-13,"YB","B","1","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-07-13_YB-Bq5",2015-07-13,2015-07-13,"YB","B","5","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-07-13_YB-Bq6",2015-07-13,2015-07-13,"YB","B","6","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts may be low due to glare."
+"2015-07-13_YB-Bq1",2015-07-13,2015-07-13,"YB","B","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-07-13_YB-Bq5",2015-07-13,2015-07-13,"YB","B","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-07-13_YB-Bq6",2015-07-13,2015-07-13,"YB","B","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts may be low due to glare."
+"2015-07-13_YB-Bq1",2015-07-13,2015-07-13,"YB","B","1","Mt","Mytilus_trossulus","Type 15",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-07-13_YB-Bq5",2015-07-13,2015-07-13,"YB","B","5","Mt","Mytilus_trossulus","Type 15",27,0.0875,308.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-07-13_YB-Bq6",2015-07-13,2015-07-13,"YB","B","6","Mt","Mytilus_trossulus","Type 15",12,0.0875,137.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts may be low due to glare."
+"2015-07-13_YB-Bq1",2015-07-13,2015-07-13,"YB","B","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-07-13_YB-Bq5",2015-07-13,2015-07-13,"YB","B","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-07-13_YB-Bq6",2015-07-13,2015-07-13,"YB","B","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts may be low due to glare."
+"2015-07-13_YB-Bq1",2015-07-13,2015-07-13,"YB","B","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-07-13_YB-Bq5",2015-07-13,2015-07-13,"YB","B","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-07-13_YB-Bq6",2015-07-13,2015-07-13,"YB","B","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts may be low due to glare."
+"2015-07-13_YB-Bq1",2015-07-13,2015-07-13,"YB","B","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-07-13_YB-Bq5",2015-07-13,2015-07-13,"YB","B","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-07-13_YB-Bq6",2015-07-13,2015-07-13,"YB","B","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts may be low due to glare."
+"2015-07-13_YB-Bq1",2015-07-13,2015-07-13,"YB","B","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-07-13_YB-Bq5",2015-07-13,2015-07-13,"YB","B","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-07-13_YB-Bq6",2015-07-13,2015-07-13,"YB","B","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts may be low due to glare."
+"2015-07-13_YB-Bq1",2015-07-13,2015-07-13,"YB","B","1","No","Nucella_ostrina","Type 9",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-07-13_YB-Bq5",2015-07-13,2015-07-13,"YB","B","5","No","Nucella_ostrina","Type 9",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-07-13_YB-Bq6",2015-07-13,2015-07-13,"YB","B","6","No","Nucella_ostrina","Type 9",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts may be low due to glare."
+"2015-07-13_YB-Bq1",2015-07-13,2015-07-13,"YB","B","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-07-13_YB-Bq5",2015-07-13,2015-07-13,"YB","B","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-07-13_YB-Bq6",2015-07-13,2015-07-13,"YB","B","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts may be low due to glare."
+"2015-07-13_YB-Bq1",2015-07-13,2015-07-13,"YB","B","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-07-13_YB-Bq5",2015-07-13,2015-07-13,"YB","B","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-07-13_YB-Bq6",2015-07-13,2015-07-13,"YB","B","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts may be low due to glare."
+"2015-07-13_YB-Bq1",2015-07-13,2015-07-13,"YB","B","1","Pp","Pollicipes_polymerus","Type 11",1000,0.0875,11428.5714285714,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-07-13_YB-Bq5",2015-07-13,2015-07-13,"YB","B","5","Pp","Pollicipes_polymerus","Type 11",899,0.0875,10274.2857142857,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-07-13_YB-Bq6",2015-07-13,2015-07-13,"YB","B","6","Pp","Pollicipes_polymerus","Type 11",709,0.0875,8102.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts may be low due to glare."
+"2015-07-13_YB-Bq1",2015-07-13,2015-07-13,"YB","B","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-07-13_YB-Bq5",2015-07-13,2015-07-13,"YB","B","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-07-13_YB-Bq6",2015-07-13,2015-07-13,"YB","B","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts may be low due to glare."
+"2015-07-13_YB-Bq1",2015-07-13,2015-07-13,"YB","B","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-07-13_YB-Bq5",2015-07-13,2015-07-13,"YB","B","5","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-07-13_YB-Bq6",2015-07-13,2015-07-13,"YB","B","6","Sc","Semibalanus_cariosus","Type 5",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts may be low due to glare."
+"2015-07-13_YB-Bq1",2015-07-13,2015-07-13,"YB","B","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-07-13_YB-Bq5",2015-07-13,2015-07-13,"YB","B","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-07-13_YB-Bq6",2015-07-13,2015-07-13,"YB","B","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts may be low due to glare."
+"2015-07-13_YB-BBq1",2015-07-13,2015-07-13,"YB","BB","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to blur"
+"2015-07-13_YB-BBq2",2015-07-13,2015-07-13,"YB","BB","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","75%","Counts likely low due to blur"
+"2015-07-13_YB-BBq9",2015-07-13,2015-07-13,"YB","BB","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur"
+"2015-07-13_YB-BBq1",2015-07-13,2015-07-13,"YB","BB","1","Ae","Anemones","Type 14",10,0.0875,114.285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to blur"
+"2015-07-13_YB-BBq2",2015-07-13,2015-07-13,"YB","BB","2","Ae","Anemones","Type 14",22,0.0875,251.428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","75%","Counts likely low due to blur"
+"2015-07-13_YB-BBq9",2015-07-13,2015-07-13,"YB","BB","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur"
+"2015-07-13_YB-BBq1",2015-07-13,2015-07-13,"YB","BB","1","Bg","Balanus_glandula","Type 1",31,0.0875,354.285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to blur"
+"2015-07-13_YB-BBq2",2015-07-13,2015-07-13,"YB","BB","2","Bg","Balanus_glandula","Type 1",32,0.0875,365.714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","75%","Counts likely low due to blur"
+"2015-07-13_YB-BBq9",2015-07-13,2015-07-13,"YB","BB","9","Bg","Balanus_glandula","Type 1",243,0.0875,2777.14285714286,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur"
+"2015-07-13_YB-BBq1",2015-07-13,2015-07-13,"YB","BB","1","BgD","Balanus_glandula_(dead)","Type 2",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to blur"
+"2015-07-13_YB-BBq2",2015-07-13,2015-07-13,"YB","BB","2","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","75%","Counts likely low due to blur"
+"2015-07-13_YB-BBq9",2015-07-13,2015-07-13,"YB","BB","9","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur"
+"2015-07-13_YB-BBq1",2015-07-13,2015-07-13,"YB","BB","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to blur"
+"2015-07-13_YB-BBq2",2015-07-13,2015-07-13,"YB","BB","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","75%","Counts likely low due to blur"
+"2015-07-13_YB-BBq9",2015-07-13,2015-07-13,"YB","BB","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur"
+"2015-07-13_YB-BBq1",2015-07-13,2015-07-13,"YB","BB","1","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to blur"
+"2015-07-13_YB-BBq2",2015-07-13,2015-07-13,"YB","BB","2","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","75%","Counts likely low due to blur"
+"2015-07-13_YB-BBq9",2015-07-13,2015-07-13,"YB","BB","9","Cth","Chthamalus_dalli","Type 3",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur"
+"2015-07-13_YB-BBq1",2015-07-13,2015-07-13,"YB","BB","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to blur"
+"2015-07-13_YB-BBq2",2015-07-13,2015-07-13,"YB","BB","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","75%","Counts likely low due to blur"
+"2015-07-13_YB-BBq9",2015-07-13,2015-07-13,"YB","BB","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur"
+"2015-07-13_YB-BBq1",2015-07-13,2015-07-13,"YB","BB","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to blur"
+"2015-07-13_YB-BBq2",2015-07-13,2015-07-13,"YB","BB","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","75%","Counts likely low due to blur"
+"2015-07-13_YB-BBq9",2015-07-13,2015-07-13,"YB","BB","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur"
+"2015-07-13_YB-BBq1",2015-07-13,2015-07-13,"YB","BB","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to blur"
+"2015-07-13_YB-BBq2",2015-07-13,2015-07-13,"YB","BB","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","75%","Counts likely low due to blur"
+"2015-07-13_YB-BBq9",2015-07-13,2015-07-13,"YB","BB","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur"
+"2015-07-13_YB-BBq1",2015-07-13,2015-07-13,"YB","BB","1","Lim","Limpets","Type 12",58,0.0875,662.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to blur"
+"2015-07-13_YB-BBq2",2015-07-13,2015-07-13,"YB","BB","2","Lim","Limpets","Type 12",68,0.0875,777.142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","75%","Counts likely low due to blur"
+"2015-07-13_YB-BBq9",2015-07-13,2015-07-13,"YB","BB","9","Lim","Limpets","Type 12",154,0.0875,1760,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur"
+"2015-07-13_YB-BBq1",2015-07-13,2015-07-13,"YB","BB","1","Ls","Littorina_sitkana","Type 13",420,0.0875,4800,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to blur"
+"2015-07-13_YB-BBq2",2015-07-13,2015-07-13,"YB","BB","2","Ls","Littorina_sitkana","Type 13",245,0.0875,2800,NA,"Stephanie Merhoff","Finished","Full","Full","75%","Counts likely low due to blur"
+"2015-07-13_YB-BBq9",2015-07-13,2015-07-13,"YB","BB","9","Ls","Littorina_sitkana","Type 13",333,0.0875,3805.71428571429,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur"
+"2015-07-13_YB-BBq1",2015-07-13,2015-07-13,"YB","BB","1","Mc","Mytilus_californianus","Type 17",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to blur"
+"2015-07-13_YB-BBq2",2015-07-13,2015-07-13,"YB","BB","2","Mc","Mytilus_californianus","Type 17",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","75%","Counts likely low due to blur"
+"2015-07-13_YB-BBq9",2015-07-13,2015-07-13,"YB","BB","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur"
+"2015-07-13_YB-BBq1",2015-07-13,2015-07-13,"YB","BB","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to blur"
+"2015-07-13_YB-BBq2",2015-07-13,2015-07-13,"YB","BB","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","75%","Counts likely low due to blur"
+"2015-07-13_YB-BBq9",2015-07-13,2015-07-13,"YB","BB","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur"
+"2015-07-13_YB-BBq1",2015-07-13,2015-07-13,"YB","BB","1","Myt","Mytilus_spp","Type 7",9,0.0875,102.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to blur"
+"2015-07-13_YB-BBq2",2015-07-13,2015-07-13,"YB","BB","2","Myt","Mytilus_spp","Type 7",9,0.0875,102.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","75%","Counts likely low due to blur"
+"2015-07-13_YB-BBq9",2015-07-13,2015-07-13,"YB","BB","9","Myt","Mytilus_spp","Type 7",4,0.0875,45.7142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur"
+"2015-07-13_YB-BBq1",2015-07-13,2015-07-13,"YB","BB","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to blur"
+"2015-07-13_YB-BBq2",2015-07-13,2015-07-13,"YB","BB","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","75%","Counts likely low due to blur"
+"2015-07-13_YB-BBq9",2015-07-13,2015-07-13,"YB","BB","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur"
+"2015-07-13_YB-BBq1",2015-07-13,2015-07-13,"YB","BB","1","Mt","Mytilus_trossulus","Type 15",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to blur"
+"2015-07-13_YB-BBq2",2015-07-13,2015-07-13,"YB","BB","2","Mt","Mytilus_trossulus","Type 15",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","75%","Counts likely low due to blur"
+"2015-07-13_YB-BBq9",2015-07-13,2015-07-13,"YB","BB","9","Mt","Mytilus_trossulus","Type 15",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur"
+"2015-07-13_YB-BBq1",2015-07-13,2015-07-13,"YB","BB","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to blur"
+"2015-07-13_YB-BBq2",2015-07-13,2015-07-13,"YB","BB","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","75%","Counts likely low due to blur"
+"2015-07-13_YB-BBq9",2015-07-13,2015-07-13,"YB","BB","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur"
+"2015-07-13_YB-BBq1",2015-07-13,2015-07-13,"YB","BB","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to blur"
+"2015-07-13_YB-BBq2",2015-07-13,2015-07-13,"YB","BB","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","75%","Counts likely low due to blur"
+"2015-07-13_YB-BBq9",2015-07-13,2015-07-13,"YB","BB","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur"
+"2015-07-13_YB-BBq1",2015-07-13,2015-07-13,"YB","BB","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to blur"
+"2015-07-13_YB-BBq2",2015-07-13,2015-07-13,"YB","BB","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","75%","Counts likely low due to blur"
+"2015-07-13_YB-BBq9",2015-07-13,2015-07-13,"YB","BB","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur"
+"2015-07-13_YB-BBq1",2015-07-13,2015-07-13,"YB","BB","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to blur"
+"2015-07-13_YB-BBq2",2015-07-13,2015-07-13,"YB","BB","2","Negg","Nucella_eggs","Type 26",10,0.0875,114.285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","75%","Counts likely low due to blur"
+"2015-07-13_YB-BBq9",2015-07-13,2015-07-13,"YB","BB","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur"
+"2015-07-13_YB-BBq1",2015-07-13,2015-07-13,"YB","BB","1","No","Nucella_ostrina","Type 9",4,0.0875,45.7142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to blur"
+"2015-07-13_YB-BBq2",2015-07-13,2015-07-13,"YB","BB","2","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","75%","Counts likely low due to blur"
+"2015-07-13_YB-BBq9",2015-07-13,2015-07-13,"YB","BB","9","No","Nucella_ostrina","Type 9",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur"
+"2015-07-13_YB-BBq1",2015-07-13,2015-07-13,"YB","BB","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to blur"
+"2015-07-13_YB-BBq2",2015-07-13,2015-07-13,"YB","BB","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","75%","Counts likely low due to blur"
+"2015-07-13_YB-BBq9",2015-07-13,2015-07-13,"YB","BB","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur"
+"2015-07-13_YB-BBq1",2015-07-13,2015-07-13,"YB","BB","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to blur"
+"2015-07-13_YB-BBq2",2015-07-13,2015-07-13,"YB","BB","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","75%","Counts likely low due to blur"
+"2015-07-13_YB-BBq9",2015-07-13,2015-07-13,"YB","BB","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur"
+"2015-07-13_YB-BBq1",2015-07-13,2015-07-13,"YB","BB","1","Pp","Pollicipes_polymerus","Type 11",9,0.0875,102.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to blur"
+"2015-07-13_YB-BBq2",2015-07-13,2015-07-13,"YB","BB","2","Pp","Pollicipes_polymerus","Type 11",36,0.0875,411.428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","75%","Counts likely low due to blur"
+"2015-07-13_YB-BBq9",2015-07-13,2015-07-13,"YB","BB","9","Pp","Pollicipes_polymerus","Type 11",15,0.0875,171.428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur"
+"2015-07-13_YB-BBq1",2015-07-13,2015-07-13,"YB","BB","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to blur"
+"2015-07-13_YB-BBq2",2015-07-13,2015-07-13,"YB","BB","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","75%","Counts likely low due to blur"
+"2015-07-13_YB-BBq9",2015-07-13,2015-07-13,"YB","BB","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur"
+"2015-07-13_YB-BBq1",2015-07-13,2015-07-13,"YB","BB","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to blur"
+"2015-07-13_YB-BBq2",2015-07-13,2015-07-13,"YB","BB","2","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","75%","Counts likely low due to blur"
+"2015-07-13_YB-BBq9",2015-07-13,2015-07-13,"YB","BB","9","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur"
+"2015-07-13_YB-BBq1",2015-07-13,2015-07-13,"YB","BB","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to blur"
+"2015-07-13_YB-BBq2",2015-07-13,2015-07-13,"YB","BB","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","75%","Counts likely low due to blur"
+"2015-07-13_YB-BBq9",2015-07-13,2015-07-13,"YB","BB","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to blur"
+"2015-07-13_YB-BCq3",2015-07-13,2015-07-13,"YB","BC","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","8%",""
+"2015-07-13_YB-BCq5",2015-07-13,2015-07-13,"YB","BC","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%",""
+"2015-07-13_YB-BCq9",2015-07-13,2015-07-13,"YB","BC","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%",""
+"2015-07-13_YB-BCq3",2015-07-13,2015-07-13,"YB","BC","3","Ae","Anemones","Type 14",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","8%",""
+"2015-07-13_YB-BCq5",2015-07-13,2015-07-13,"YB","BC","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%",""
+"2015-07-13_YB-BCq9",2015-07-13,2015-07-13,"YB","BC","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%",""
+"2015-07-13_YB-BCq3",2015-07-13,2015-07-13,"YB","BC","3","Bg","Balanus_glandula","Type 1",904,0.0875,10331.4285714286,NA,"Stephanie Merhoff","Finished","Full","Full","8%",""
+"2015-07-13_YB-BCq5",2015-07-13,2015-07-13,"YB","BC","5","Bg","Balanus_glandula","Type 1",235,0.0875,2685.71428571429,NA,"Stephanie Merhoff","Finished","Full","Full","35%",""
+"2015-07-13_YB-BCq9",2015-07-13,2015-07-13,"YB","BC","9","Bg","Balanus_glandula","Type 1",411,0.0875,4697.14285714286,NA,"Stephanie Merhoff","Finished","Full","Full","50%",""
+"2015-07-13_YB-BCq3",2015-07-13,2015-07-13,"YB","BC","3","BgD","Balanus_glandula_(dead)","Type 2",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","8%",""
+"2015-07-13_YB-BCq5",2015-07-13,2015-07-13,"YB","BC","5","BgD","Balanus_glandula_(dead)","Type 2",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","35%",""
+"2015-07-13_YB-BCq9",2015-07-13,2015-07-13,"YB","BC","9","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%",""
+"2015-07-13_YB-BCq3",2015-07-13,2015-07-13,"YB","BC","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","8%",""
+"2015-07-13_YB-BCq5",2015-07-13,2015-07-13,"YB","BC","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%",""
+"2015-07-13_YB-BCq9",2015-07-13,2015-07-13,"YB","BC","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%",""
+"2015-07-13_YB-BCq3",2015-07-13,2015-07-13,"YB","BC","3","Cth","Chthamalus_dalli","Type 3",220,0.0875,2514.28571428571,NA,"Stephanie Merhoff","Finished","Full","Full","8%",""
+"2015-07-13_YB-BCq5",2015-07-13,2015-07-13,"YB","BC","5","Cth","Chthamalus_dalli","Type 3",27,0.0875,308.571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","35%",""
+"2015-07-13_YB-BCq9",2015-07-13,2015-07-13,"YB","BC","9","Cth","Chthamalus_dalli","Type 3",43,0.0875,491.428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","50%",""
+"2015-07-13_YB-BCq3",2015-07-13,2015-07-13,"YB","BC","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","8%",""
+"2015-07-13_YB-BCq5",2015-07-13,2015-07-13,"YB","BC","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%",""
+"2015-07-13_YB-BCq9",2015-07-13,2015-07-13,"YB","BC","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%",""
+"2015-07-13_YB-BCq3",2015-07-13,2015-07-13,"YB","BC","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","8%",""
+"2015-07-13_YB-BCq5",2015-07-13,2015-07-13,"YB","BC","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%",""
+"2015-07-13_YB-BCq9",2015-07-13,2015-07-13,"YB","BC","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%",""
+"2015-07-13_YB-BCq3",2015-07-13,2015-07-13,"YB","BC","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","8%",""
+"2015-07-13_YB-BCq5",2015-07-13,2015-07-13,"YB","BC","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%",""
+"2015-07-13_YB-BCq9",2015-07-13,2015-07-13,"YB","BC","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%",""
+"2015-07-13_YB-BCq3",2015-07-13,2015-07-13,"YB","BC","3","Lim","Limpets","Type 12",278,0.0875,3177.14285714286,NA,"Stephanie Merhoff","Finished","Full","Full","8%",""
+"2015-07-13_YB-BCq5",2015-07-13,2015-07-13,"YB","BC","5","Lim","Limpets","Type 12",242,0.0875,2765.71428571429,NA,"Stephanie Merhoff","Finished","Full","Full","35%",""
+"2015-07-13_YB-BCq9",2015-07-13,2015-07-13,"YB","BC","9","Lim","Limpets","Type 12",227,0.0875,2594.28571428571,NA,"Stephanie Merhoff","Finished","Full","Full","50%",""
+"2015-07-13_YB-BCq3",2015-07-13,2015-07-13,"YB","BC","3","Ls","Littorina_sitkana","Type 13",259,0.0875,2960,NA,"Stephanie Merhoff","Finished","Full","Full","8%",""
+"2015-07-13_YB-BCq5",2015-07-13,2015-07-13,"YB","BC","5","Ls","Littorina_sitkana","Type 13",260,0.0875,2971.42857142857,NA,"Stephanie Merhoff","Finished","Full","Full","35%",""
+"2015-07-13_YB-BCq9",2015-07-13,2015-07-13,"YB","BC","9","Ls","Littorina_sitkana","Type 13",197,0.0875,2251.42857142857,NA,"Stephanie Merhoff","Finished","Full","Full","50%",""
+"2015-07-13_YB-BCq3",2015-07-13,2015-07-13,"YB","BC","3","Mc","Mytilus_californianus","Type 17",4,0.0875,45.7142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","8%",""
+"2015-07-13_YB-BCq5",2015-07-13,2015-07-13,"YB","BC","5","Mc","Mytilus_californianus","Type 17",5,0.0875,57.1428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","35%",""
+"2015-07-13_YB-BCq9",2015-07-13,2015-07-13,"YB","BC","9","Mc","Mytilus_californianus","Type 17",4,0.0875,45.7142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","50%",""
+"2015-07-13_YB-BCq3",2015-07-13,2015-07-13,"YB","BC","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","8%",""
+"2015-07-13_YB-BCq5",2015-07-13,2015-07-13,"YB","BC","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%",""
+"2015-07-13_YB-BCq9",2015-07-13,2015-07-13,"YB","BC","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%",""
+"2015-07-13_YB-BCq3",2015-07-13,2015-07-13,"YB","BC","3","Myt","Mytilus_spp","Type 7",28,0.0875,320,NA,"Stephanie Merhoff","Finished","Full","Full","8%",""
+"2015-07-13_YB-BCq5",2015-07-13,2015-07-13,"YB","BC","5","Myt","Mytilus_spp","Type 7",4,0.0875,45.7142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","35%",""
+"2015-07-13_YB-BCq9",2015-07-13,2015-07-13,"YB","BC","9","Myt","Mytilus_spp","Type 7",23,0.0875,262.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","50%",""
+"2015-07-13_YB-BCq3",2015-07-13,2015-07-13,"YB","BC","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","8%",""
+"2015-07-13_YB-BCq5",2015-07-13,2015-07-13,"YB","BC","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%",""
+"2015-07-13_YB-BCq9",2015-07-13,2015-07-13,"YB","BC","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%",""
+"2015-07-13_YB-BCq3",2015-07-13,2015-07-13,"YB","BC","3","Mt","Mytilus_trossulus","Type 15",7,0.0875,80,NA,"Stephanie Merhoff","Finished","Full","Full","8%",""
+"2015-07-13_YB-BCq5",2015-07-13,2015-07-13,"YB","BC","5","Mt","Mytilus_trossulus","Type 15",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","35%",""
+"2015-07-13_YB-BCq9",2015-07-13,2015-07-13,"YB","BC","9","Mt","Mytilus_trossulus","Type 15",9,0.0875,102.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","50%",""
+"2015-07-13_YB-BCq3",2015-07-13,2015-07-13,"YB","BC","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","8%",""
+"2015-07-13_YB-BCq5",2015-07-13,2015-07-13,"YB","BC","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%",""
+"2015-07-13_YB-BCq9",2015-07-13,2015-07-13,"YB","BC","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%",""
+"2015-07-13_YB-BCq3",2015-07-13,2015-07-13,"YB","BC","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","8%",""
+"2015-07-13_YB-BCq5",2015-07-13,2015-07-13,"YB","BC","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%",""
+"2015-07-13_YB-BCq9",2015-07-13,2015-07-13,"YB","BC","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%",""
+"2015-07-13_YB-BCq3",2015-07-13,2015-07-13,"YB","BC","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","8%",""
+"2015-07-13_YB-BCq5",2015-07-13,2015-07-13,"YB","BC","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%",""
+"2015-07-13_YB-BCq9",2015-07-13,2015-07-13,"YB","BC","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%",""
+"2015-07-13_YB-BCq3",2015-07-13,2015-07-13,"YB","BC","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","8%",""
+"2015-07-13_YB-BCq5",2015-07-13,2015-07-13,"YB","BC","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%",""
+"2015-07-13_YB-BCq9",2015-07-13,2015-07-13,"YB","BC","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%",""
+"2015-07-13_YB-BCq3",2015-07-13,2015-07-13,"YB","BC","3","No","Nucella_ostrina","Type 9",4,0.0875,45.7142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","8%",""
+"2015-07-13_YB-BCq5",2015-07-13,2015-07-13,"YB","BC","5","No","Nucella_ostrina","Type 9",9,0.0875,102.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","35%",""
+"2015-07-13_YB-BCq9",2015-07-13,2015-07-13,"YB","BC","9","No","Nucella_ostrina","Type 9",17,0.0875,194.285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","50%",""
+"2015-07-13_YB-BCq3",2015-07-13,2015-07-13,"YB","BC","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","8%",""
+"2015-07-13_YB-BCq5",2015-07-13,2015-07-13,"YB","BC","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%",""
+"2015-07-13_YB-BCq9",2015-07-13,2015-07-13,"YB","BC","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%",""
+"2015-07-13_YB-BCq3",2015-07-13,2015-07-13,"YB","BC","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","8%",""
+"2015-07-13_YB-BCq5",2015-07-13,2015-07-13,"YB","BC","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%",""
+"2015-07-13_YB-BCq9",2015-07-13,2015-07-13,"YB","BC","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%",""
+"2015-07-13_YB-BCq3",2015-07-13,2015-07-13,"YB","BC","3","Pp","Pollicipes_polymerus","Type 11",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","8%",""
+"2015-07-13_YB-BCq5",2015-07-13,2015-07-13,"YB","BC","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%",""
+"2015-07-13_YB-BCq9",2015-07-13,2015-07-13,"YB","BC","9","Pp","Pollicipes_polymerus","Type 11",53,0.0875,605.714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","50%",""
+"2015-07-13_YB-BCq3",2015-07-13,2015-07-13,"YB","BC","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","8%",""
+"2015-07-13_YB-BCq5",2015-07-13,2015-07-13,"YB","BC","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%",""
+"2015-07-13_YB-BCq9",2015-07-13,2015-07-13,"YB","BC","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%",""
+"2015-07-13_YB-BCq3",2015-07-13,2015-07-13,"YB","BC","3","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","8%",""
+"2015-07-13_YB-BCq5",2015-07-13,2015-07-13,"YB","BC","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%",""
+"2015-07-13_YB-BCq9",2015-07-13,2015-07-13,"YB","BC","9","Sc","Semibalanus_cariosus","Type 5",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","50%",""
+"2015-07-13_YB-BCq3",2015-07-13,2015-07-13,"YB","BC","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","8%",""
+"2015-07-13_YB-BCq5",2015-07-13,2015-07-13,"YB","BC","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%",""
+"2015-07-13_YB-BCq9",2015-07-13,2015-07-13,"YB","BC","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%",""
+"2015-07-13_YB-BDq1",2015-07-13,2015-07-13,"YB","BD","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","6%","counts in corners may be low due to blur; sand covering about 2%"
+"2015-07-13_YB-BDq5",2015-07-13,2015-07-13,"YB","BD","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%","sand covering about 15%"
+"2015-07-13_YB-BDq7",2015-07-13,2015-07-13,"YB","BD","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%","sand covering about 3%. counts in right side may be low due to glare"
+"2015-07-13_YB-BDq1",2015-07-13,2015-07-13,"YB","BD","1","Ae","Anemones","Type 14",14,0.0875,160,NA,"Julia Bingham","Finished","Full","Full","6%","counts in corners may be low due to blur; sand covering about 2%"
+"2015-07-13_YB-BDq5",2015-07-13,2015-07-13,"YB","BD","5","Ae","Anemones","Type 14",5,0.0875,57.1428571428571,NA,"Julia Bingham","Finished","Full","Full","5%","sand covering about 15%"
+"2015-07-13_YB-BDq7",2015-07-13,2015-07-13,"YB","BD","7","Ae","Anemones","Type 14",29,0.0875,331.428571428571,NA,"Julia Bingham","Finished","Full","Full","8%","sand covering about 3%. counts in right side may be low due to glare"
+"2015-07-13_YB-BDq1",2015-07-13,2015-07-13,"YB","BD","1","Bg","Balanus_glandula","Type 1",180,0.0875,2057.14285714286,NA,"Julia Bingham","Finished","Full","Full","6%","counts in corners may be low due to blur; sand covering about 2%"
+"2015-07-13_YB-BDq5",2015-07-13,2015-07-13,"YB","BD","5","Bg","Balanus_glandula","Type 1",142,0.0875,1622.85714285714,NA,"Julia Bingham","Finished","Full","Full","5%","sand covering about 15%"
+"2015-07-13_YB-BDq7",2015-07-13,2015-07-13,"YB","BD","7","Bg","Balanus_glandula","Type 1",502,0.0875,5737.14285714286,NA,"Julia Bingham","Finished","Full","Full","8%","sand covering about 3%. counts in right side may be low due to glare"
+"2015-07-13_YB-BDq1",2015-07-13,2015-07-13,"YB","BD","1","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","6%","counts in corners may be low due to blur; sand covering about 2%"
+"2015-07-13_YB-BDq5",2015-07-13,2015-07-13,"YB","BD","5","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%","sand covering about 15%"
+"2015-07-13_YB-BDq7",2015-07-13,2015-07-13,"YB","BD","7","BgD","Balanus_glandula_(dead)","Type 2",43,0.0875,491.428571428571,NA,"Julia Bingham","Finished","Full","Full","8%","sand covering about 3%. counts in right side may be low due to glare"
+"2015-07-13_YB-BDq1",2015-07-13,2015-07-13,"YB","BD","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","6%","counts in corners may be low due to blur; sand covering about 2%"
+"2015-07-13_YB-BDq5",2015-07-13,2015-07-13,"YB","BD","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%","sand covering about 15%"
+"2015-07-13_YB-BDq7",2015-07-13,2015-07-13,"YB","BD","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%","sand covering about 3%. counts in right side may be low due to glare"
+"2015-07-13_YB-BDq1",2015-07-13,2015-07-13,"YB","BD","1","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","6%","counts in corners may be low due to blur; sand covering about 2%"
+"2015-07-13_YB-BDq5",2015-07-13,2015-07-13,"YB","BD","5","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%","sand covering about 15%"
+"2015-07-13_YB-BDq7",2015-07-13,2015-07-13,"YB","BD","7","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%","sand covering about 3%. counts in right side may be low due to glare"
+"2015-07-13_YB-BDq1",2015-07-13,2015-07-13,"YB","BD","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","6%","counts in corners may be low due to blur; sand covering about 2%"
+"2015-07-13_YB-BDq5",2015-07-13,2015-07-13,"YB","BD","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%","sand covering about 15%"
+"2015-07-13_YB-BDq7",2015-07-13,2015-07-13,"YB","BD","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%","sand covering about 3%. counts in right side may be low due to glare"
+"2015-07-13_YB-BDq1",2015-07-13,2015-07-13,"YB","BD","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","6%","counts in corners may be low due to blur; sand covering about 2%"
+"2015-07-13_YB-BDq5",2015-07-13,2015-07-13,"YB","BD","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%","sand covering about 15%"
+"2015-07-13_YB-BDq7",2015-07-13,2015-07-13,"YB","BD","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%","sand covering about 3%. counts in right side may be low due to glare"
+"2015-07-13_YB-BDq1",2015-07-13,2015-07-13,"YB","BD","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","6%","counts in corners may be low due to blur; sand covering about 2%"
+"2015-07-13_YB-BDq5",2015-07-13,2015-07-13,"YB","BD","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%","sand covering about 15%"
+"2015-07-13_YB-BDq7",2015-07-13,2015-07-13,"YB","BD","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%","sand covering about 3%. counts in right side may be low due to glare"
+"2015-07-13_YB-BDq1",2015-07-13,2015-07-13,"YB","BD","1","Lim","Limpets","Type 12",200,0.0875,2285.71428571429,NA,"Julia Bingham","Finished","Full","Full","6%","counts in corners may be low due to blur; sand covering about 2%"
+"2015-07-13_YB-BDq5",2015-07-13,2015-07-13,"YB","BD","5","Lim","Limpets","Type 12",214,0.0875,2445.71428571429,NA,"Julia Bingham","Finished","Full","Full","5%","sand covering about 15%"
+"2015-07-13_YB-BDq7",2015-07-13,2015-07-13,"YB","BD","7","Lim","Limpets","Type 12",441,0.0875,5040,NA,"Julia Bingham","Finished","Full","Full","8%","sand covering about 3%. counts in right side may be low due to glare"
+"2015-07-13_YB-BDq1",2015-07-13,2015-07-13,"YB","BD","1","Ls","Littorina_sitkana","Type 13",139,0.0875,1588.57142857143,NA,"Julia Bingham","Finished","Full","Full","6%","counts in corners may be low due to blur; sand covering about 2%"
+"2015-07-13_YB-BDq5",2015-07-13,2015-07-13,"YB","BD","5","Ls","Littorina_sitkana","Type 13",245,0.0875,2800,NA,"Julia Bingham","Finished","Full","Full","5%","sand covering about 15%"
+"2015-07-13_YB-BDq7",2015-07-13,2015-07-13,"YB","BD","7","Ls","Littorina_sitkana","Type 13",219,0.0875,2502.85714285714,NA,"Julia Bingham","Finished","Full","Full","8%","sand covering about 3%. counts in right side may be low due to glare"
+"2015-07-13_YB-BDq1",2015-07-13,2015-07-13,"YB","BD","1","Mc","Mytilus_californianus","Type 17",8,0.0875,91.4285714285714,NA,"Julia Bingham","Finished","Full","Full","6%","counts in corners may be low due to blur; sand covering about 2%"
+"2015-07-13_YB-BDq5",2015-07-13,2015-07-13,"YB","BD","5","Mc","Mytilus_californianus","Type 17",13,0.0875,148.571428571429,NA,"Julia Bingham","Finished","Full","Full","5%","sand covering about 15%"
+"2015-07-13_YB-BDq7",2015-07-13,2015-07-13,"YB","BD","7","Mc","Mytilus_californianus","Type 17",3,0.0875,34.2857142857143,NA,"Julia Bingham","Finished","Full","Full","8%","sand covering about 3%. counts in right side may be low due to glare"
+"2015-07-13_YB-BDq1",2015-07-13,2015-07-13,"YB","BD","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","6%","counts in corners may be low due to blur; sand covering about 2%"
+"2015-07-13_YB-BDq5",2015-07-13,2015-07-13,"YB","BD","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%","sand covering about 15%"
+"2015-07-13_YB-BDq7",2015-07-13,2015-07-13,"YB","BD","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%","sand covering about 3%. counts in right side may be low due to glare"
+"2015-07-13_YB-BDq1",2015-07-13,2015-07-13,"YB","BD","1","Myt","Mytilus_spp","Type 7",238,0.0875,2720,NA,"Julia Bingham","Finished","Full","Full","6%","counts in corners may be low due to blur; sand covering about 2%"
+"2015-07-13_YB-BDq5",2015-07-13,2015-07-13,"YB","BD","5","Myt","Mytilus_spp","Type 7",605,0.0875,6914.28571428571,NA,"Julia Bingham","Finished","Full","Full","5%","sand covering about 15%"
+"2015-07-13_YB-BDq7",2015-07-13,2015-07-13,"YB","BD","7","Myt","Mytilus_spp","Type 7",286,0.0875,3268.57142857143,NA,"Julia Bingham","Finished","Full","Full","8%","sand covering about 3%. counts in right side may be low due to glare"
+"2015-07-13_YB-BDq1",2015-07-13,2015-07-13,"YB","BD","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","6%","counts in corners may be low due to blur; sand covering about 2%"
+"2015-07-13_YB-BDq5",2015-07-13,2015-07-13,"YB","BD","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%","sand covering about 15%"
+"2015-07-13_YB-BDq7",2015-07-13,2015-07-13,"YB","BD","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%","sand covering about 3%. counts in right side may be low due to glare"
+"2015-07-13_YB-BDq1",2015-07-13,2015-07-13,"YB","BD","1","Mt","Mytilus_trossulus","Type 15",6,0.0875,68.5714285714286,NA,"Julia Bingham","Finished","Full","Full","6%","counts in corners may be low due to blur; sand covering about 2%"
+"2015-07-13_YB-BDq5",2015-07-13,2015-07-13,"YB","BD","5","Mt","Mytilus_trossulus","Type 15",5,0.0875,57.1428571428571,NA,"Julia Bingham","Finished","Full","Full","5%","sand covering about 15%"
+"2015-07-13_YB-BDq7",2015-07-13,2015-07-13,"YB","BD","7","Mt","Mytilus_trossulus","Type 15",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","8%","sand covering about 3%. counts in right side may be low due to glare"
+"2015-07-13_YB-BDq1",2015-07-13,2015-07-13,"YB","BD","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","6%","counts in corners may be low due to blur; sand covering about 2%"
+"2015-07-13_YB-BDq5",2015-07-13,2015-07-13,"YB","BD","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%","sand covering about 15%"
+"2015-07-13_YB-BDq7",2015-07-13,2015-07-13,"YB","BD","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%","sand covering about 3%. counts in right side may be low due to glare"
+"2015-07-13_YB-BDq1",2015-07-13,2015-07-13,"YB","BD","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","6%","counts in corners may be low due to blur; sand covering about 2%"
+"2015-07-13_YB-BDq5",2015-07-13,2015-07-13,"YB","BD","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%","sand covering about 15%"
+"2015-07-13_YB-BDq7",2015-07-13,2015-07-13,"YB","BD","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%","sand covering about 3%. counts in right side may be low due to glare"
+"2015-07-13_YB-BDq1",2015-07-13,2015-07-13,"YB","BD","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","6%","counts in corners may be low due to blur; sand covering about 2%"
+"2015-07-13_YB-BDq5",2015-07-13,2015-07-13,"YB","BD","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%","sand covering about 15%"
+"2015-07-13_YB-BDq7",2015-07-13,2015-07-13,"YB","BD","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%","sand covering about 3%. counts in right side may be low due to glare"
+"2015-07-13_YB-BDq1",2015-07-13,2015-07-13,"YB","BD","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","6%","counts in corners may be low due to blur; sand covering about 2%"
+"2015-07-13_YB-BDq5",2015-07-13,2015-07-13,"YB","BD","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%","sand covering about 15%"
+"2015-07-13_YB-BDq7",2015-07-13,2015-07-13,"YB","BD","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%","sand covering about 3%. counts in right side may be low due to glare"
+"2015-07-13_YB-BDq1",2015-07-13,2015-07-13,"YB","BD","1","No","Nucella_ostrina","Type 9",14,0.0875,160,NA,"Julia Bingham","Finished","Full","Full","6%","counts in corners may be low due to blur; sand covering about 2%"
+"2015-07-13_YB-BDq5",2015-07-13,2015-07-13,"YB","BD","5","No","Nucella_ostrina","Type 9",4,0.0875,45.7142857142857,NA,"Julia Bingham","Finished","Full","Full","5%","sand covering about 15%"
+"2015-07-13_YB-BDq7",2015-07-13,2015-07-13,"YB","BD","7","No","Nucella_ostrina","Type 9",7,0.0875,80,NA,"Julia Bingham","Finished","Full","Full","8%","sand covering about 3%. counts in right side may be low due to glare"
+"2015-07-13_YB-BDq1",2015-07-13,2015-07-13,"YB","BD","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","6%","counts in corners may be low due to blur; sand covering about 2%"
+"2015-07-13_YB-BDq5",2015-07-13,2015-07-13,"YB","BD","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%","sand covering about 15%"
+"2015-07-13_YB-BDq7",2015-07-13,2015-07-13,"YB","BD","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%","sand covering about 3%. counts in right side may be low due to glare"
+"2015-07-13_YB-BDq1",2015-07-13,2015-07-13,"YB","BD","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","6%","counts in corners may be low due to blur; sand covering about 2%"
+"2015-07-13_YB-BDq5",2015-07-13,2015-07-13,"YB","BD","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%","sand covering about 15%"
+"2015-07-13_YB-BDq7",2015-07-13,2015-07-13,"YB","BD","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%","sand covering about 3%. counts in right side may be low due to glare"
+"2015-07-13_YB-BDq1",2015-07-13,2015-07-13,"YB","BD","1","Pp","Pollicipes_polymerus","Type 11",1813,0.0875,20720,NA,"Julia Bingham","Finished","Full","Full","6%","counts in corners may be low due to blur; sand covering about 2%"
+"2015-07-13_YB-BDq5",2015-07-13,2015-07-13,"YB","BD","5","Pp","Pollicipes_polymerus","Type 11",1330,0.0875,15200,NA,"Julia Bingham","Finished","Full","Full","5%","sand covering about 15%"
+"2015-07-13_YB-BDq7",2015-07-13,2015-07-13,"YB","BD","7","Pp","Pollicipes_polymerus","Type 11",1551,0.0875,17725.7142857143,NA,"Julia Bingham","Finished","Full","Full","8%","sand covering about 3%. counts in right side may be low due to glare"
+"2015-07-13_YB-BDq1",2015-07-13,2015-07-13,"YB","BD","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","6%","counts in corners may be low due to blur; sand covering about 2%"
+"2015-07-13_YB-BDq5",2015-07-13,2015-07-13,"YB","BD","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%","sand covering about 15%"
+"2015-07-13_YB-BDq7",2015-07-13,2015-07-13,"YB","BD","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%","sand covering about 3%. counts in right side may be low due to glare"
+"2015-07-13_YB-BDq1",2015-07-13,2015-07-13,"YB","BD","1","Sc","Semibalanus_cariosus","Type 5",4,0.0875,45.7142857142857,NA,"Julia Bingham","Finished","Full","Full","6%","counts in corners may be low due to blur; sand covering about 2%"
+"2015-07-13_YB-BDq5",2015-07-13,2015-07-13,"YB","BD","5","Sc","Semibalanus_cariosus","Type 5",4,0.0875,45.7142857142857,NA,"Julia Bingham","Finished","Full","Full","5%","sand covering about 15%"
+"2015-07-13_YB-BDq7",2015-07-13,2015-07-13,"YB","BD","7","Sc","Semibalanus_cariosus","Type 5",15,0.0875,171.428571428571,NA,"Julia Bingham","Finished","Full","Full","8%","sand covering about 3%. counts in right side may be low due to glare"
+"2015-07-13_YB-BDq1",2015-07-13,2015-07-13,"YB","BD","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","6%","counts in corners may be low due to blur; sand covering about 2%"
+"2015-07-13_YB-BDq5",2015-07-13,2015-07-13,"YB","BD","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","5%","sand covering about 15%"
+"2015-07-13_YB-BDq7",2015-07-13,2015-07-13,"YB","BD","7","ScD","Semibalanus_cariosus_(dead)","Type 6",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Full","8%","sand covering about 3%. counts in right side may be low due to glare"
+"2015-07-13_YB-BEq2",2015-07-13,2015-07-13,"YB","BE","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-07-13_YB-BEq3",2015-07-13,2015-07-13,"YB","BE","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to glare."
+"2015-07-13_YB-BEq6",2015-07-13,2015-07-13,"YB","BE","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae."
+"2015-07-13_YB-BEq2",2015-07-13,2015-07-13,"YB","BE","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-07-13_YB-BEq3",2015-07-13,2015-07-13,"YB","BE","3","Ae","Anemones","Type 14",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to glare."
+"2015-07-13_YB-BEq6",2015-07-13,2015-07-13,"YB","BE","6","Ae","Anemones","Type 14",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae."
+"2015-07-13_YB-BEq2",2015-07-13,2015-07-13,"YB","BE","2","Bg","Balanus_glandula","Type 1",135,0.0875,1542.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-07-13_YB-BEq3",2015-07-13,2015-07-13,"YB","BE","3","Bg","Balanus_glandula","Type 1",242,0.0875,2765.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to glare."
+"2015-07-13_YB-BEq6",2015-07-13,2015-07-13,"YB","BE","6","Bg","Balanus_glandula","Type 1",183,0.0875,2091.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae."
+"2015-07-13_YB-BEq2",2015-07-13,2015-07-13,"YB","BE","2","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-07-13_YB-BEq3",2015-07-13,2015-07-13,"YB","BE","3","BgD","Balanus_glandula_(dead)","Type 2",19,0.0875,217.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to glare."
+"2015-07-13_YB-BEq6",2015-07-13,2015-07-13,"YB","BE","6","BgD","Balanus_glandula_(dead)","Type 2",33,0.0875,377.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae."
+"2015-07-13_YB-BEq2",2015-07-13,2015-07-13,"YB","BE","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-07-13_YB-BEq3",2015-07-13,2015-07-13,"YB","BE","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to glare."
+"2015-07-13_YB-BEq6",2015-07-13,2015-07-13,"YB","BE","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae."
+"2015-07-13_YB-BEq2",2015-07-13,2015-07-13,"YB","BE","2","Cth","Chthamalus_dalli","Type 3",37,0.0875,422.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-07-13_YB-BEq3",2015-07-13,2015-07-13,"YB","BE","3","Cth","Chthamalus_dalli","Type 3",147,0.0875,1680,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to glare."
+"2015-07-13_YB-BEq6",2015-07-13,2015-07-13,"YB","BE","6","Cth","Chthamalus_dalli","Type 3",41,0.0875,468.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae."
+"2015-07-13_YB-BEq2",2015-07-13,2015-07-13,"YB","BE","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-07-13_YB-BEq3",2015-07-13,2015-07-13,"YB","BE","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to glare."
+"2015-07-13_YB-BEq6",2015-07-13,2015-07-13,"YB","BE","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae."
+"2015-07-13_YB-BEq2",2015-07-13,2015-07-13,"YB","BE","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-07-13_YB-BEq3",2015-07-13,2015-07-13,"YB","BE","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to glare."
+"2015-07-13_YB-BEq6",2015-07-13,2015-07-13,"YB","BE","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae."
+"2015-07-13_YB-BEq2",2015-07-13,2015-07-13,"YB","BE","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-07-13_YB-BEq3",2015-07-13,2015-07-13,"YB","BE","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to glare."
+"2015-07-13_YB-BEq6",2015-07-13,2015-07-13,"YB","BE","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae."
+"2015-07-13_YB-BEq2",2015-07-13,2015-07-13,"YB","BE","2","Lim","Limpets","Type 12",158,0.0875,1805.71428571429,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-07-13_YB-BEq3",2015-07-13,2015-07-13,"YB","BE","3","Lim","Limpets","Type 12",400,0.0875,4571.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to glare."
+"2015-07-13_YB-BEq6",2015-07-13,2015-07-13,"YB","BE","6","Lim","Limpets","Type 12",282,0.0875,3222.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae."
+"2015-07-13_YB-BEq2",2015-07-13,2015-07-13,"YB","BE","2","Ls","Littorina_sitkana","Type 13",328,0.0875,3748.57142857143,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-07-13_YB-BEq3",2015-07-13,2015-07-13,"YB","BE","3","Ls","Littorina_sitkana","Type 13",446,0.0875,5097.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to glare."
+"2015-07-13_YB-BEq6",2015-07-13,2015-07-13,"YB","BE","6","Ls","Littorina_sitkana","Type 13",544,0.0875,6217.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae."
+"2015-07-13_YB-BEq2",2015-07-13,2015-07-13,"YB","BE","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-07-13_YB-BEq3",2015-07-13,2015-07-13,"YB","BE","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to glare."
+"2015-07-13_YB-BEq6",2015-07-13,2015-07-13,"YB","BE","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae."
+"2015-07-13_YB-BEq2",2015-07-13,2015-07-13,"YB","BE","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-07-13_YB-BEq3",2015-07-13,2015-07-13,"YB","BE","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to glare."
+"2015-07-13_YB-BEq6",2015-07-13,2015-07-13,"YB","BE","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae."
+"2015-07-13_YB-BEq2",2015-07-13,2015-07-13,"YB","BE","2","Myt","Mytilus_spp","Type 7",20,0.0875,228.571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-07-13_YB-BEq3",2015-07-13,2015-07-13,"YB","BE","3","Myt","Mytilus_spp","Type 7",75,0.0875,857.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to glare."
+"2015-07-13_YB-BEq6",2015-07-13,2015-07-13,"YB","BE","6","Myt","Mytilus_spp","Type 7",52,0.0875,594.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae."
+"2015-07-13_YB-BEq2",2015-07-13,2015-07-13,"YB","BE","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-07-13_YB-BEq3",2015-07-13,2015-07-13,"YB","BE","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to glare."
+"2015-07-13_YB-BEq6",2015-07-13,2015-07-13,"YB","BE","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae."
+"2015-07-13_YB-BEq2",2015-07-13,2015-07-13,"YB","BE","2","Mt","Mytilus_trossulus","Type 15",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-07-13_YB-BEq3",2015-07-13,2015-07-13,"YB","BE","3","Mt","Mytilus_trossulus","Type 15",31,0.0875,354.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to glare."
+"2015-07-13_YB-BEq6",2015-07-13,2015-07-13,"YB","BE","6","Mt","Mytilus_trossulus","Type 15",33,0.0875,377.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae."
+"2015-07-13_YB-BEq2",2015-07-13,2015-07-13,"YB","BE","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-07-13_YB-BEq3",2015-07-13,2015-07-13,"YB","BE","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to glare."
+"2015-07-13_YB-BEq6",2015-07-13,2015-07-13,"YB","BE","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae."
+"2015-07-13_YB-BEq2",2015-07-13,2015-07-13,"YB","BE","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-07-13_YB-BEq3",2015-07-13,2015-07-13,"YB","BE","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to glare."
+"2015-07-13_YB-BEq6",2015-07-13,2015-07-13,"YB","BE","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae."
+"2015-07-13_YB-BEq2",2015-07-13,2015-07-13,"YB","BE","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-07-13_YB-BEq3",2015-07-13,2015-07-13,"YB","BE","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to glare."
+"2015-07-13_YB-BEq6",2015-07-13,2015-07-13,"YB","BE","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae."
+"2015-07-13_YB-BEq2",2015-07-13,2015-07-13,"YB","BE","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-07-13_YB-BEq3",2015-07-13,2015-07-13,"YB","BE","3","Negg","Nucella_eggs","Type 26",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to glare."
+"2015-07-13_YB-BEq6",2015-07-13,2015-07-13,"YB","BE","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae."
+"2015-07-13_YB-BEq2",2015-07-13,2015-07-13,"YB","BE","2","No","Nucella_ostrina","Type 9",7,0.0875,80,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-07-13_YB-BEq3",2015-07-13,2015-07-13,"YB","BE","3","No","Nucella_ostrina","Type 9",9,0.0875,102.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to glare."
+"2015-07-13_YB-BEq6",2015-07-13,2015-07-13,"YB","BE","6","No","Nucella_ostrina","Type 9",22,0.0875,251.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae."
+"2015-07-13_YB-BEq2",2015-07-13,2015-07-13,"YB","BE","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-07-13_YB-BEq3",2015-07-13,2015-07-13,"YB","BE","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to glare."
+"2015-07-13_YB-BEq6",2015-07-13,2015-07-13,"YB","BE","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae."
+"2015-07-13_YB-BEq2",2015-07-13,2015-07-13,"YB","BE","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-07-13_YB-BEq3",2015-07-13,2015-07-13,"YB","BE","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to glare."
+"2015-07-13_YB-BEq6",2015-07-13,2015-07-13,"YB","BE","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae."
+"2015-07-13_YB-BEq2",2015-07-13,2015-07-13,"YB","BE","2","Pp","Pollicipes_polymerus","Type 11",22,0.0875,251.428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-07-13_YB-BEq3",2015-07-13,2015-07-13,"YB","BE","3","Pp","Pollicipes_polymerus","Type 11",152,0.0875,1737.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to glare."
+"2015-07-13_YB-BEq6",2015-07-13,2015-07-13,"YB","BE","6","Pp","Pollicipes_polymerus","Type 11",41,0.0875,468.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae."
+"2015-07-13_YB-BEq2",2015-07-13,2015-07-13,"YB","BE","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-07-13_YB-BEq3",2015-07-13,2015-07-13,"YB","BE","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to glare."
+"2015-07-13_YB-BEq6",2015-07-13,2015-07-13,"YB","BE","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae."
+"2015-07-13_YB-BEq2",2015-07-13,2015-07-13,"YB","BE","2","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-07-13_YB-BEq3",2015-07-13,2015-07-13,"YB","BE","3","Sc","Semibalanus_cariosus","Type 5",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to glare."
+"2015-07-13_YB-BEq6",2015-07-13,2015-07-13,"YB","BE","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae."
+"2015-07-13_YB-BEq2",2015-07-13,2015-07-13,"YB","BE","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-07-13_YB-BEq3",2015-07-13,2015-07-13,"YB","BE","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts low due to glare."
+"2015-07-13_YB-BEq6",2015-07-13,2015-07-13,"YB","BE","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to algae."
+"2015-07-13_YB-BFq1",2015-07-13,2015-07-13,"YB","BF","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to algae and blur."
+"2015-07-13_YB-BFq4",2015-07-13,2015-07-13,"YB","BF","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-07-13_YB-BFq9",2015-07-13,2015-07-13,"YB","BF","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-07-13_YB-BFq1",2015-07-13,2015-07-13,"YB","BF","1","Ae","Anemones","Type 14",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to algae and blur."
+"2015-07-13_YB-BFq4",2015-07-13,2015-07-13,"YB","BF","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-07-13_YB-BFq9",2015-07-13,2015-07-13,"YB","BF","9","Ae","Anemones","Type 14",14,0.0875,160,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-07-13_YB-BFq1",2015-07-13,2015-07-13,"YB","BF","1","Bg","Balanus_glandula","Type 1",206,0.0875,2354.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to algae and blur."
+"2015-07-13_YB-BFq4",2015-07-13,2015-07-13,"YB","BF","4","Bg","Balanus_glandula","Type 1",217,0.0875,2480,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-07-13_YB-BFq9",2015-07-13,2015-07-13,"YB","BF","9","Bg","Balanus_glandula","Type 1",53,0.0875,605.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-07-13_YB-BFq1",2015-07-13,2015-07-13,"YB","BF","1","BgD","Balanus_glandula_(dead)","Type 2",12,0.0875,137.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to algae and blur."
+"2015-07-13_YB-BFq4",2015-07-13,2015-07-13,"YB","BF","4","BgD","Balanus_glandula_(dead)","Type 2",22,0.0875,251.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-07-13_YB-BFq9",2015-07-13,2015-07-13,"YB","BF","9","BgD","Balanus_glandula_(dead)","Type 2",15,0.0875,171.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-07-13_YB-BFq1",2015-07-13,2015-07-13,"YB","BF","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to algae and blur."
+"2015-07-13_YB-BFq4",2015-07-13,2015-07-13,"YB","BF","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-07-13_YB-BFq9",2015-07-13,2015-07-13,"YB","BF","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-07-13_YB-BFq1",2015-07-13,2015-07-13,"YB","BF","1","Cth","Chthamalus_dalli","Type 3",70,0.0875,800,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to algae and blur."
+"2015-07-13_YB-BFq4",2015-07-13,2015-07-13,"YB","BF","4","Cth","Chthamalus_dalli","Type 3",199,0.0875,2274.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-07-13_YB-BFq9",2015-07-13,2015-07-13,"YB","BF","9","Cth","Chthamalus_dalli","Type 3",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-07-13_YB-BFq1",2015-07-13,2015-07-13,"YB","BF","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to algae and blur."
+"2015-07-13_YB-BFq4",2015-07-13,2015-07-13,"YB","BF","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-07-13_YB-BFq9",2015-07-13,2015-07-13,"YB","BF","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-07-13_YB-BFq1",2015-07-13,2015-07-13,"YB","BF","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to algae and blur."
+"2015-07-13_YB-BFq4",2015-07-13,2015-07-13,"YB","BF","4","Emp","Emplectonema worm","Type 23",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-07-13_YB-BFq9",2015-07-13,2015-07-13,"YB","BF","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-07-13_YB-BFq1",2015-07-13,2015-07-13,"YB","BF","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to algae and blur."
+"2015-07-13_YB-BFq4",2015-07-13,2015-07-13,"YB","BF","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-07-13_YB-BFq9",2015-07-13,2015-07-13,"YB","BF","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-07-13_YB-BFq1",2015-07-13,2015-07-13,"YB","BF","1","Lim","Limpets","Type 12",341,0.0875,3897.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to algae and blur."
+"2015-07-13_YB-BFq4",2015-07-13,2015-07-13,"YB","BF","4","Lim","Limpets","Type 12",421,0.0875,4811.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-07-13_YB-BFq9",2015-07-13,2015-07-13,"YB","BF","9","Lim","Limpets","Type 12",162,0.0875,1851.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-07-13_YB-BFq1",2015-07-13,2015-07-13,"YB","BF","1","Ls","Littorina_sitkana","Type 13",343,0.0875,3920,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to algae and blur."
+"2015-07-13_YB-BFq4",2015-07-13,2015-07-13,"YB","BF","4","Ls","Littorina_sitkana","Type 13",399,0.0875,4560,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-07-13_YB-BFq9",2015-07-13,2015-07-13,"YB","BF","9","Ls","Littorina_sitkana","Type 13",510,0.0875,5828.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-07-13_YB-BFq1",2015-07-13,2015-07-13,"YB","BF","1","Mc","Mytilus_californianus","Type 17",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to algae and blur."
+"2015-07-13_YB-BFq4",2015-07-13,2015-07-13,"YB","BF","4","Mc","Mytilus_californianus","Type 17",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-07-13_YB-BFq9",2015-07-13,2015-07-13,"YB","BF","9","Mc","Mytilus_californianus","Type 17",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-07-13_YB-BFq1",2015-07-13,2015-07-13,"YB","BF","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to algae and blur."
+"2015-07-13_YB-BFq4",2015-07-13,2015-07-13,"YB","BF","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-07-13_YB-BFq9",2015-07-13,2015-07-13,"YB","BF","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-07-13_YB-BFq1",2015-07-13,2015-07-13,"YB","BF","1","Myt","Mytilus_spp","Type 7",13,0.0875,148.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to algae and blur."
+"2015-07-13_YB-BFq4",2015-07-13,2015-07-13,"YB","BF","4","Myt","Mytilus_spp","Type 7",11,0.0875,125.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-07-13_YB-BFq9",2015-07-13,2015-07-13,"YB","BF","9","Myt","Mytilus_spp","Type 7",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-07-13_YB-BFq1",2015-07-13,2015-07-13,"YB","BF","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to algae and blur."
+"2015-07-13_YB-BFq4",2015-07-13,2015-07-13,"YB","BF","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-07-13_YB-BFq9",2015-07-13,2015-07-13,"YB","BF","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-07-13_YB-BFq1",2015-07-13,2015-07-13,"YB","BF","1","Mt","Mytilus_trossulus","Type 15",9,0.0875,102.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to algae and blur."
+"2015-07-13_YB-BFq4",2015-07-13,2015-07-13,"YB","BF","4","Mt","Mytilus_trossulus","Type 15",61,0.0875,697.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-07-13_YB-BFq9",2015-07-13,2015-07-13,"YB","BF","9","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-07-13_YB-BFq1",2015-07-13,2015-07-13,"YB","BF","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to algae and blur."
+"2015-07-13_YB-BFq4",2015-07-13,2015-07-13,"YB","BF","4","MtD","Mytilus_trossulus_(dead)","Type 16",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-07-13_YB-BFq9",2015-07-13,2015-07-13,"YB","BF","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-07-13_YB-BFq1",2015-07-13,2015-07-13,"YB","BF","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to algae and blur."
+"2015-07-13_YB-BFq4",2015-07-13,2015-07-13,"YB","BF","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-07-13_YB-BFq9",2015-07-13,2015-07-13,"YB","BF","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-07-13_YB-BFq1",2015-07-13,2015-07-13,"YB","BF","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to algae and blur."
+"2015-07-13_YB-BFq4",2015-07-13,2015-07-13,"YB","BF","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-07-13_YB-BFq9",2015-07-13,2015-07-13,"YB","BF","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-07-13_YB-BFq1",2015-07-13,2015-07-13,"YB","BF","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to algae and blur."
+"2015-07-13_YB-BFq4",2015-07-13,2015-07-13,"YB","BF","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-07-13_YB-BFq9",2015-07-13,2015-07-13,"YB","BF","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-07-13_YB-BFq1",2015-07-13,2015-07-13,"YB","BF","1","No","Nucella_ostrina","Type 9",17,0.0875,194.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to algae and blur."
+"2015-07-13_YB-BFq4",2015-07-13,2015-07-13,"YB","BF","4","No","Nucella_ostrina","Type 9",12,0.0875,137.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-07-13_YB-BFq9",2015-07-13,2015-07-13,"YB","BF","9","No","Nucella_ostrina","Type 9",24,0.0875,274.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-07-13_YB-BFq1",2015-07-13,2015-07-13,"YB","BF","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to algae and blur."
+"2015-07-13_YB-BFq4",2015-07-13,2015-07-13,"YB","BF","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-07-13_YB-BFq9",2015-07-13,2015-07-13,"YB","BF","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-07-13_YB-BFq1",2015-07-13,2015-07-13,"YB","BF","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to algae and blur."
+"2015-07-13_YB-BFq4",2015-07-13,2015-07-13,"YB","BF","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-07-13_YB-BFq9",2015-07-13,2015-07-13,"YB","BF","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-07-13_YB-BFq1",2015-07-13,2015-07-13,"YB","BF","1","Pp","Pollicipes_polymerus","Type 11",169,0.0875,1931.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to algae and blur."
+"2015-07-13_YB-BFq4",2015-07-13,2015-07-13,"YB","BF","4","Pp","Pollicipes_polymerus","Type 11",26,0.0875,297.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-07-13_YB-BFq9",2015-07-13,2015-07-13,"YB","BF","9","Pp","Pollicipes_polymerus","Type 11",456,0.0875,5211.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-07-13_YB-BFq1",2015-07-13,2015-07-13,"YB","BF","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to algae and blur."
+"2015-07-13_YB-BFq4",2015-07-13,2015-07-13,"YB","BF","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-07-13_YB-BFq9",2015-07-13,2015-07-13,"YB","BF","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-07-13_YB-BFq1",2015-07-13,2015-07-13,"YB","BF","1","Sc","Semibalanus_cariosus","Type 5",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to algae and blur."
+"2015-07-13_YB-BFq4",2015-07-13,2015-07-13,"YB","BF","4","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-07-13_YB-BFq9",2015-07-13,2015-07-13,"YB","BF","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-07-13_YB-BFq1",2015-07-13,2015-07-13,"YB","BF","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to algae and blur."
+"2015-07-13_YB-BFq4",2015-07-13,2015-07-13,"YB","BF","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-07-13_YB-BFq9",2015-07-13,2015-07-13,"YB","BF","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-07-13_YB-Cq2",2015-07-13,2015-07-13,"YB","C","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to glare."
+"2015-07-13_YB-Cq4",2015-07-13,2015-07-13,"YB","C","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-07-13_YB-Cq6",2015-07-13,2015-07-13,"YB","C","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts may be low due to glare."
+"2015-07-13_YB-Cq2",2015-07-13,2015-07-13,"YB","C","2","Ae","Anemones","Type 14",21,0.0875,240,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to glare."
+"2015-07-13_YB-Cq4",2015-07-13,2015-07-13,"YB","C","4","Ae","Anemones","Type 14",36,0.0875,411.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-07-13_YB-Cq6",2015-07-13,2015-07-13,"YB","C","6","Ae","Anemones","Type 14",46,0.0875,525.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts may be low due to glare."
+"2015-07-13_YB-Cq2",2015-07-13,2015-07-13,"YB","C","2","Bg","Balanus_glandula","Type 1",147,0.0875,1680,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to glare."
+"2015-07-13_YB-Cq4",2015-07-13,2015-07-13,"YB","C","4","Bg","Balanus_glandula","Type 1",64,0.0875,731.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-07-13_YB-Cq6",2015-07-13,2015-07-13,"YB","C","6","Bg","Balanus_glandula","Type 1",64,0.0875,731.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts may be low due to glare."
+"2015-07-13_YB-Cq2",2015-07-13,2015-07-13,"YB","C","2","BgD","Balanus_glandula_(dead)","Type 2",20,0.0875,228.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to glare."
+"2015-07-13_YB-Cq4",2015-07-13,2015-07-13,"YB","C","4","BgD","Balanus_glandula_(dead)","Type 2",13,0.0875,148.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-07-13_YB-Cq6",2015-07-13,2015-07-13,"YB","C","6","BgD","Balanus_glandula_(dead)","Type 2",9,0.0875,102.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts may be low due to glare."
+"2015-07-13_YB-Cq2",2015-07-13,2015-07-13,"YB","C","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to glare."
+"2015-07-13_YB-Cq4",2015-07-13,2015-07-13,"YB","C","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-07-13_YB-Cq6",2015-07-13,2015-07-13,"YB","C","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts may be low due to glare."
+"2015-07-13_YB-Cq2",2015-07-13,2015-07-13,"YB","C","2","Cth","Chthamalus_dalli","Type 3",11,0.0875,125.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to glare."
+"2015-07-13_YB-Cq4",2015-07-13,2015-07-13,"YB","C","4","Cth","Chthamalus_dalli","Type 3",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-07-13_YB-Cq6",2015-07-13,2015-07-13,"YB","C","6","Cth","Chthamalus_dalli","Type 3",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts may be low due to glare."
+"2015-07-13_YB-Cq2",2015-07-13,2015-07-13,"YB","C","2","CthD","Chthamalus_dalli (dead)","Type 4",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to glare."
+"2015-07-13_YB-Cq4",2015-07-13,2015-07-13,"YB","C","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-07-13_YB-Cq6",2015-07-13,2015-07-13,"YB","C","6","CthD","Chthamalus_dalli (dead)","Type 4",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts may be low due to glare."
+"2015-07-13_YB-Cq2",2015-07-13,2015-07-13,"YB","C","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to glare."
+"2015-07-13_YB-Cq4",2015-07-13,2015-07-13,"YB","C","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-07-13_YB-Cq6",2015-07-13,2015-07-13,"YB","C","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts may be low due to glare."
+"2015-07-13_YB-Cq2",2015-07-13,2015-07-13,"YB","C","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to glare."
+"2015-07-13_YB-Cq4",2015-07-13,2015-07-13,"YB","C","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-07-13_YB-Cq6",2015-07-13,2015-07-13,"YB","C","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts may be low due to glare."
+"2015-07-13_YB-Cq2",2015-07-13,2015-07-13,"YB","C","2","Lim","Limpets","Type 12",191,0.0875,2182.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to glare."
+"2015-07-13_YB-Cq4",2015-07-13,2015-07-13,"YB","C","4","Lim","Limpets","Type 12",128,0.0875,1462.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-07-13_YB-Cq6",2015-07-13,2015-07-13,"YB","C","6","Lim","Limpets","Type 12",301,0.0875,3440,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts may be low due to glare."
+"2015-07-13_YB-Cq2",2015-07-13,2015-07-13,"YB","C","2","Ls","Littorina_sitkana","Type 13",55,0.0875,628.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to glare."
+"2015-07-13_YB-Cq4",2015-07-13,2015-07-13,"YB","C","4","Ls","Littorina_sitkana","Type 13",36,0.0875,411.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-07-13_YB-Cq6",2015-07-13,2015-07-13,"YB","C","6","Ls","Littorina_sitkana","Type 13",70,0.0875,800,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts may be low due to glare."
+"2015-07-13_YB-Cq2",2015-07-13,2015-07-13,"YB","C","2","Mc","Mytilus_californianus","Type 17",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to glare."
+"2015-07-13_YB-Cq4",2015-07-13,2015-07-13,"YB","C","4","Mc","Mytilus_californianus","Type 17",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-07-13_YB-Cq6",2015-07-13,2015-07-13,"YB","C","6","Mc","Mytilus_californianus","Type 17",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts may be low due to glare."
+"2015-07-13_YB-Cq2",2015-07-13,2015-07-13,"YB","C","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to glare."
+"2015-07-13_YB-Cq4",2015-07-13,2015-07-13,"YB","C","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-07-13_YB-Cq6",2015-07-13,2015-07-13,"YB","C","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts may be low due to glare."
+"2015-07-13_YB-Cq2",2015-07-13,2015-07-13,"YB","C","2","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to glare."
+"2015-07-13_YB-Cq4",2015-07-13,2015-07-13,"YB","C","4","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-07-13_YB-Cq6",2015-07-13,2015-07-13,"YB","C","6","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts may be low due to glare."
+"2015-07-13_YB-Cq2",2015-07-13,2015-07-13,"YB","C","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to glare."
+"2015-07-13_YB-Cq4",2015-07-13,2015-07-13,"YB","C","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-07-13_YB-Cq6",2015-07-13,2015-07-13,"YB","C","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts may be low due to glare."
+"2015-07-13_YB-Cq2",2015-07-13,2015-07-13,"YB","C","2","Mt","Mytilus_trossulus","Type 15",9,0.0875,102.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to glare."
+"2015-07-13_YB-Cq4",2015-07-13,2015-07-13,"YB","C","4","Mt","Mytilus_trossulus","Type 15",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-07-13_YB-Cq6",2015-07-13,2015-07-13,"YB","C","6","Mt","Mytilus_trossulus","Type 15",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts may be low due to glare."
+"2015-07-13_YB-Cq2",2015-07-13,2015-07-13,"YB","C","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to glare."
+"2015-07-13_YB-Cq4",2015-07-13,2015-07-13,"YB","C","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-07-13_YB-Cq6",2015-07-13,2015-07-13,"YB","C","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts may be low due to glare."
+"2015-07-13_YB-Cq2",2015-07-13,2015-07-13,"YB","C","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to glare."
+"2015-07-13_YB-Cq4",2015-07-13,2015-07-13,"YB","C","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-07-13_YB-Cq6",2015-07-13,2015-07-13,"YB","C","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts may be low due to glare."
+"2015-07-13_YB-Cq2",2015-07-13,2015-07-13,"YB","C","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to glare."
+"2015-07-13_YB-Cq4",2015-07-13,2015-07-13,"YB","C","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-07-13_YB-Cq6",2015-07-13,2015-07-13,"YB","C","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts may be low due to glare."
+"2015-07-13_YB-Cq2",2015-07-13,2015-07-13,"YB","C","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to glare."
+"2015-07-13_YB-Cq4",2015-07-13,2015-07-13,"YB","C","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-07-13_YB-Cq6",2015-07-13,2015-07-13,"YB","C","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts may be low due to glare."
+"2015-07-13_YB-Cq2",2015-07-13,2015-07-13,"YB","C","2","No","Nucella_ostrina","Type 9",11,0.0875,125.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to glare."
+"2015-07-13_YB-Cq4",2015-07-13,2015-07-13,"YB","C","4","No","Nucella_ostrina","Type 9",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-07-13_YB-Cq6",2015-07-13,2015-07-13,"YB","C","6","No","Nucella_ostrina","Type 9",22,0.0875,251.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts may be low due to glare."
+"2015-07-13_YB-Cq2",2015-07-13,2015-07-13,"YB","C","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to glare."
+"2015-07-13_YB-Cq4",2015-07-13,2015-07-13,"YB","C","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-07-13_YB-Cq6",2015-07-13,2015-07-13,"YB","C","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts may be low due to glare."
+"2015-07-13_YB-Cq2",2015-07-13,2015-07-13,"YB","C","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to glare."
+"2015-07-13_YB-Cq4",2015-07-13,2015-07-13,"YB","C","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-07-13_YB-Cq6",2015-07-13,2015-07-13,"YB","C","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts may be low due to glare."
+"2015-07-13_YB-Cq2",2015-07-13,2015-07-13,"YB","C","2","Pp","Pollicipes_polymerus","Type 11",949,0.0875,10845.7142857143,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to glare."
+"2015-07-13_YB-Cq4",2015-07-13,2015-07-13,"YB","C","4","Pp","Pollicipes_polymerus","Type 11",885,0.0875,10114.2857142857,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-07-13_YB-Cq6",2015-07-13,2015-07-13,"YB","C","6","Pp","Pollicipes_polymerus","Type 11",680,0.0875,7771.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts may be low due to glare."
+"2015-07-13_YB-Cq2",2015-07-13,2015-07-13,"YB","C","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to glare."
+"2015-07-13_YB-Cq4",2015-07-13,2015-07-13,"YB","C","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-07-13_YB-Cq6",2015-07-13,2015-07-13,"YB","C","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts may be low due to glare."
+"2015-07-13_YB-Cq2",2015-07-13,2015-07-13,"YB","C","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to glare."
+"2015-07-13_YB-Cq4",2015-07-13,2015-07-13,"YB","C","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-07-13_YB-Cq6",2015-07-13,2015-07-13,"YB","C","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts may be low due to glare."
+"2015-07-13_YB-Cq2",2015-07-13,2015-07-13,"YB","C","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to glare."
+"2015-07-13_YB-Cq4",2015-07-13,2015-07-13,"YB","C","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-07-13_YB-Cq6",2015-07-13,2015-07-13,"YB","C","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts may be low due to glare."
+"2015-07-13_YB-Dq3",2015-07-13,2015-07-13,"YB","D","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare and algae."
+"2015-07-13_YB-Dq4",2015-07-13,2015-07-13,"YB","D","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to glare and blurry edges"
+"2015-07-13_YB-Dq5",2015-07-13,2015-07-13,"YB","D","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts low due to algae and glare."
+"2015-07-13_YB-Dq3",2015-07-13,2015-07-13,"YB","D","3","Ae","Anemones","Type 14",11,0.0875,125.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare and algae."
+"2015-07-13_YB-Dq4",2015-07-13,2015-07-13,"YB","D","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to glare and blurry edges"
+"2015-07-13_YB-Dq5",2015-07-13,2015-07-13,"YB","D","5","Ae","Anemones","Type 14",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts low due to algae and glare."
+"2015-07-13_YB-Dq3",2015-07-13,2015-07-13,"YB","D","3","Bg","Balanus_glandula","Type 1",125,0.0875,1428.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare and algae."
+"2015-07-13_YB-Dq4",2015-07-13,2015-07-13,"YB","D","4","Bg","Balanus_glandula","Type 1",886,0.0875,10125.7142857143,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to glare and blurry edges"
+"2015-07-13_YB-Dq5",2015-07-13,2015-07-13,"YB","D","5","Bg","Balanus_glandula","Type 1",213,0.0875,2434.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts low due to algae and glare."
+"2015-07-13_YB-Dq3",2015-07-13,2015-07-13,"YB","D","3","BgD","Balanus_glandula_(dead)","Type 2",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare and algae."
+"2015-07-13_YB-Dq4",2015-07-13,2015-07-13,"YB","D","4","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to glare and blurry edges"
+"2015-07-13_YB-Dq5",2015-07-13,2015-07-13,"YB","D","5","BgD","Balanus_glandula_(dead)","Type 2",14,0.0875,160,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts low due to algae and glare."
+"2015-07-13_YB-Dq3",2015-07-13,2015-07-13,"YB","D","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare and algae."
+"2015-07-13_YB-Dq4",2015-07-13,2015-07-13,"YB","D","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to glare and blurry edges"
+"2015-07-13_YB-Dq5",2015-07-13,2015-07-13,"YB","D","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts low due to algae and glare."
+"2015-07-13_YB-Dq3",2015-07-13,2015-07-13,"YB","D","3","Cth","Chthamalus_dalli","Type 3",26,0.0875,297.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare and algae."
+"2015-07-13_YB-Dq4",2015-07-13,2015-07-13,"YB","D","4","Cth","Chthamalus_dalli","Type 3",127,0.0875,1451.42857142857,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to glare and blurry edges"
+"2015-07-13_YB-Dq5",2015-07-13,2015-07-13,"YB","D","5","Cth","Chthamalus_dalli","Type 3",145,0.0875,1657.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts low due to algae and glare."
+"2015-07-13_YB-Dq3",2015-07-13,2015-07-13,"YB","D","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare and algae."
+"2015-07-13_YB-Dq4",2015-07-13,2015-07-13,"YB","D","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to glare and blurry edges"
+"2015-07-13_YB-Dq5",2015-07-13,2015-07-13,"YB","D","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts low due to algae and glare."
+"2015-07-13_YB-Dq3",2015-07-13,2015-07-13,"YB","D","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare and algae."
+"2015-07-13_YB-Dq4",2015-07-13,2015-07-13,"YB","D","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to glare and blurry edges"
+"2015-07-13_YB-Dq5",2015-07-13,2015-07-13,"YB","D","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts low due to algae and glare."
+"2015-07-13_YB-Dq3",2015-07-13,2015-07-13,"YB","D","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare and algae."
+"2015-07-13_YB-Dq4",2015-07-13,2015-07-13,"YB","D","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to glare and blurry edges"
+"2015-07-13_YB-Dq5",2015-07-13,2015-07-13,"YB","D","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts low due to algae and glare."
+"2015-07-13_YB-Dq3",2015-07-13,2015-07-13,"YB","D","3","Lim","Limpets","Type 12",216,0.0875,2468.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare and algae."
+"2015-07-13_YB-Dq4",2015-07-13,2015-07-13,"YB","D","4","Lim","Limpets","Type 12",269,0.0875,3074.28571428571,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to glare and blurry edges"
+"2015-07-13_YB-Dq5",2015-07-13,2015-07-13,"YB","D","5","Lim","Limpets","Type 12",302,0.0875,3451.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts low due to algae and glare."
+"2015-07-13_YB-Dq3",2015-07-13,2015-07-13,"YB","D","3","Ls","Littorina_sitkana","Type 13",234,0.0875,2674.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare and algae."
+"2015-07-13_YB-Dq4",2015-07-13,2015-07-13,"YB","D","4","Ls","Littorina_sitkana","Type 13",536,0.0875,6125.71428571429,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to glare and blurry edges"
+"2015-07-13_YB-Dq5",2015-07-13,2015-07-13,"YB","D","5","Ls","Littorina_sitkana","Type 13",199,0.0875,2274.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts low due to algae and glare."
+"2015-07-13_YB-Dq3",2015-07-13,2015-07-13,"YB","D","3","Mc","Mytilus_californianus","Type 17",14,0.0875,160,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare and algae."
+"2015-07-13_YB-Dq4",2015-07-13,2015-07-13,"YB","D","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to glare and blurry edges"
+"2015-07-13_YB-Dq5",2015-07-13,2015-07-13,"YB","D","5","Mc","Mytilus_californianus","Type 17",10,0.0875,114.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts low due to algae and glare."
+"2015-07-13_YB-Dq3",2015-07-13,2015-07-13,"YB","D","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare and algae."
+"2015-07-13_YB-Dq4",2015-07-13,2015-07-13,"YB","D","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to glare and blurry edges"
+"2015-07-13_YB-Dq5",2015-07-13,2015-07-13,"YB","D","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts low due to algae and glare."
+"2015-07-13_YB-Dq3",2015-07-13,2015-07-13,"YB","D","3","Myt","Mytilus_spp","Type 7",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare and algae."
+"2015-07-13_YB-Dq4",2015-07-13,2015-07-13,"YB","D","4","Myt","Mytilus_spp","Type 7",60,0.0875,685.714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to glare and blurry edges"
+"2015-07-13_YB-Dq5",2015-07-13,2015-07-13,"YB","D","5","Myt","Mytilus_spp","Type 7",16,0.0875,182.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts low due to algae and glare."
+"2015-07-13_YB-Dq3",2015-07-13,2015-07-13,"YB","D","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare and algae."
+"2015-07-13_YB-Dq4",2015-07-13,2015-07-13,"YB","D","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to glare and blurry edges"
+"2015-07-13_YB-Dq5",2015-07-13,2015-07-13,"YB","D","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts low due to algae and glare."
+"2015-07-13_YB-Dq3",2015-07-13,2015-07-13,"YB","D","3","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare and algae."
+"2015-07-13_YB-Dq4",2015-07-13,2015-07-13,"YB","D","4","Mt","Mytilus_trossulus","Type 15",46,0.0875,525.714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to glare and blurry edges"
+"2015-07-13_YB-Dq5",2015-07-13,2015-07-13,"YB","D","5","Mt","Mytilus_trossulus","Type 15",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts low due to algae and glare."
+"2015-07-13_YB-Dq3",2015-07-13,2015-07-13,"YB","D","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare and algae."
+"2015-07-13_YB-Dq4",2015-07-13,2015-07-13,"YB","D","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to glare and blurry edges"
+"2015-07-13_YB-Dq5",2015-07-13,2015-07-13,"YB","D","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts low due to algae and glare."
+"2015-07-13_YB-Dq3",2015-07-13,2015-07-13,"YB","D","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare and algae."
+"2015-07-13_YB-Dq4",2015-07-13,2015-07-13,"YB","D","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to glare and blurry edges"
+"2015-07-13_YB-Dq5",2015-07-13,2015-07-13,"YB","D","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts low due to algae and glare."
+"2015-07-13_YB-Dq3",2015-07-13,2015-07-13,"YB","D","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare and algae."
+"2015-07-13_YB-Dq4",2015-07-13,2015-07-13,"YB","D","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to glare and blurry edges"
+"2015-07-13_YB-Dq5",2015-07-13,2015-07-13,"YB","D","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts low due to algae and glare."
+"2015-07-13_YB-Dq3",2015-07-13,2015-07-13,"YB","D","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare and algae."
+"2015-07-13_YB-Dq4",2015-07-13,2015-07-13,"YB","D","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to glare and blurry edges"
+"2015-07-13_YB-Dq5",2015-07-13,2015-07-13,"YB","D","5","Negg","Nucella_eggs","Type 26",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts low due to algae and glare."
+"2015-07-13_YB-Dq3",2015-07-13,2015-07-13,"YB","D","3","No","Nucella_ostrina","Type 9",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare and algae."
+"2015-07-13_YB-Dq4",2015-07-13,2015-07-13,"YB","D","4","No","Nucella_ostrina","Type 9",26,0.0875,297.142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to glare and blurry edges"
+"2015-07-13_YB-Dq5",2015-07-13,2015-07-13,"YB","D","5","No","Nucella_ostrina","Type 9",29,0.0875,331.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts low due to algae and glare."
+"2015-07-13_YB-Dq3",2015-07-13,2015-07-13,"YB","D","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare and algae."
+"2015-07-13_YB-Dq4",2015-07-13,2015-07-13,"YB","D","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to glare and blurry edges"
+"2015-07-13_YB-Dq5",2015-07-13,2015-07-13,"YB","D","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts low due to algae and glare."
+"2015-07-13_YB-Dq3",2015-07-13,2015-07-13,"YB","D","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare and algae."
+"2015-07-13_YB-Dq4",2015-07-13,2015-07-13,"YB","D","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to glare and blurry edges"
+"2015-07-13_YB-Dq5",2015-07-13,2015-07-13,"YB","D","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts low due to algae and glare."
+"2015-07-13_YB-Dq3",2015-07-13,2015-07-13,"YB","D","3","Pp","Pollicipes_polymerus","Type 11",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare and algae."
+"2015-07-13_YB-Dq4",2015-07-13,2015-07-13,"YB","D","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to glare and blurry edges"
+"2015-07-13_YB-Dq5",2015-07-13,2015-07-13,"YB","D","5","Pp","Pollicipes_polymerus","Type 11",20,0.0875,228.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts low due to algae and glare."
+"2015-07-13_YB-Dq3",2015-07-13,2015-07-13,"YB","D","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare and algae."
+"2015-07-13_YB-Dq4",2015-07-13,2015-07-13,"YB","D","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to glare and blurry edges"
+"2015-07-13_YB-Dq5",2015-07-13,2015-07-13,"YB","D","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts low due to algae and glare."
+"2015-07-13_YB-Dq3",2015-07-13,2015-07-13,"YB","D","3","Sc","Semibalanus_cariosus","Type 5",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare and algae."
+"2015-07-13_YB-Dq4",2015-07-13,2015-07-13,"YB","D","4","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to glare and blurry edges"
+"2015-07-13_YB-Dq5",2015-07-13,2015-07-13,"YB","D","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts low due to algae and glare."
+"2015-07-13_YB-Dq3",2015-07-13,2015-07-13,"YB","D","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","60%","Counts likely low due to glare and algae."
+"2015-07-13_YB-Dq4",2015-07-13,2015-07-13,"YB","D","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to glare and blurry edges"
+"2015-07-13_YB-Dq5",2015-07-13,2015-07-13,"YB","D","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts low due to algae and glare."
+"2015-07-13_YB-Eq3",2015-07-13,2015-07-13,"YB","E","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-07-13_YB-Eq4",2015-07-13,2015-07-13,"YB","E","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to sediment layer"
+"2015-07-13_YB-Eq8",2015-07-13,2015-07-13,"YB","E","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to blur"
+"2015-07-13_YB-Eq3",2015-07-13,2015-07-13,"YB","E","3","Ae","Anemones","Type 14",19,0.0875,217.142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-07-13_YB-Eq4",2015-07-13,2015-07-13,"YB","E","4","Ae","Anemones","Type 14",44,0.0875,502.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to sediment layer"
+"2015-07-13_YB-Eq8",2015-07-13,2015-07-13,"YB","E","8","Ae","Anemones","Type 14",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to blur"
+"2015-07-13_YB-Eq3",2015-07-13,2015-07-13,"YB","E","3","Bg","Balanus_glandula","Type 1",20,0.0875,228.571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-07-13_YB-Eq4",2015-07-13,2015-07-13,"YB","E","4","Bg","Balanus_glandula","Type 1",22,0.0875,251.428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to sediment layer"
+"2015-07-13_YB-Eq8",2015-07-13,2015-07-13,"YB","E","8","Bg","Balanus_glandula","Type 1",34,0.0875,388.571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to blur"
+"2015-07-13_YB-Eq3",2015-07-13,2015-07-13,"YB","E","3","BgD","Balanus_glandula_(dead)","Type 2",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-07-13_YB-Eq4",2015-07-13,2015-07-13,"YB","E","4","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to sediment layer"
+"2015-07-13_YB-Eq8",2015-07-13,2015-07-13,"YB","E","8","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to blur"
+"2015-07-13_YB-Eq3",2015-07-13,2015-07-13,"YB","E","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-07-13_YB-Eq4",2015-07-13,2015-07-13,"YB","E","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to sediment layer"
+"2015-07-13_YB-Eq8",2015-07-13,2015-07-13,"YB","E","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to blur"
+"2015-07-13_YB-Eq3",2015-07-13,2015-07-13,"YB","E","3","Cth","Chthamalus_dalli","Type 3",17,0.0875,194.285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-07-13_YB-Eq4",2015-07-13,2015-07-13,"YB","E","4","Cth","Chthamalus_dalli","Type 3",12,0.0875,137.142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to sediment layer"
+"2015-07-13_YB-Eq8",2015-07-13,2015-07-13,"YB","E","8","Cth","Chthamalus_dalli","Type 3",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to blur"
+"2015-07-13_YB-Eq3",2015-07-13,2015-07-13,"YB","E","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-07-13_YB-Eq4",2015-07-13,2015-07-13,"YB","E","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to sediment layer"
+"2015-07-13_YB-Eq8",2015-07-13,2015-07-13,"YB","E","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to blur"
+"2015-07-13_YB-Eq3",2015-07-13,2015-07-13,"YB","E","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-07-13_YB-Eq4",2015-07-13,2015-07-13,"YB","E","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to sediment layer"
+"2015-07-13_YB-Eq8",2015-07-13,2015-07-13,"YB","E","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to blur"
+"2015-07-13_YB-Eq3",2015-07-13,2015-07-13,"YB","E","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-07-13_YB-Eq4",2015-07-13,2015-07-13,"YB","E","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to sediment layer"
+"2015-07-13_YB-Eq8",2015-07-13,2015-07-13,"YB","E","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to blur"
+"2015-07-13_YB-Eq3",2015-07-13,2015-07-13,"YB","E","3","Lim","Limpets","Type 12",93,0.0875,1062.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-07-13_YB-Eq4",2015-07-13,2015-07-13,"YB","E","4","Lim","Limpets","Type 12",79,0.0875,902.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to sediment layer"
+"2015-07-13_YB-Eq8",2015-07-13,2015-07-13,"YB","E","8","Lim","Limpets","Type 12",36,0.0875,411.428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to blur"
+"2015-07-13_YB-Eq3",2015-07-13,2015-07-13,"YB","E","3","Ls","Littorina_sitkana","Type 13",113,0.0875,1291.42857142857,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-07-13_YB-Eq4",2015-07-13,2015-07-13,"YB","E","4","Ls","Littorina_sitkana","Type 13",112,0.0875,1280,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to sediment layer"
+"2015-07-13_YB-Eq8",2015-07-13,2015-07-13,"YB","E","8","Ls","Littorina_sitkana","Type 13",68,0.0875,777.142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to blur"
+"2015-07-13_YB-Eq3",2015-07-13,2015-07-13,"YB","E","3","Mc","Mytilus_californianus","Type 17",6,0.0875,68.5714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-07-13_YB-Eq4",2015-07-13,2015-07-13,"YB","E","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to sediment layer"
+"2015-07-13_YB-Eq8",2015-07-13,2015-07-13,"YB","E","8","Mc","Mytilus_californianus","Type 17",9,0.0875,102.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to blur"
+"2015-07-13_YB-Eq3",2015-07-13,2015-07-13,"YB","E","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-07-13_YB-Eq4",2015-07-13,2015-07-13,"YB","E","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to sediment layer"
+"2015-07-13_YB-Eq8",2015-07-13,2015-07-13,"YB","E","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to blur"
+"2015-07-13_YB-Eq3",2015-07-13,2015-07-13,"YB","E","3","Myt","Mytilus_spp","Type 7",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-07-13_YB-Eq4",2015-07-13,2015-07-13,"YB","E","4","Myt","Mytilus_spp","Type 7",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to sediment layer"
+"2015-07-13_YB-Eq8",2015-07-13,2015-07-13,"YB","E","8","Myt","Mytilus_spp","Type 7",7,0.0875,80,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to blur"
+"2015-07-13_YB-Eq3",2015-07-13,2015-07-13,"YB","E","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-07-13_YB-Eq4",2015-07-13,2015-07-13,"YB","E","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to sediment layer"
+"2015-07-13_YB-Eq8",2015-07-13,2015-07-13,"YB","E","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to blur"
+"2015-07-13_YB-Eq3",2015-07-13,2015-07-13,"YB","E","3","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-07-13_YB-Eq4",2015-07-13,2015-07-13,"YB","E","4","Mt","Mytilus_trossulus","Type 15",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to sediment layer"
+"2015-07-13_YB-Eq8",2015-07-13,2015-07-13,"YB","E","8","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to blur"
+"2015-07-13_YB-Eq3",2015-07-13,2015-07-13,"YB","E","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-07-13_YB-Eq4",2015-07-13,2015-07-13,"YB","E","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to sediment layer"
+"2015-07-13_YB-Eq8",2015-07-13,2015-07-13,"YB","E","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to blur"
+"2015-07-13_YB-Eq3",2015-07-13,2015-07-13,"YB","E","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-07-13_YB-Eq4",2015-07-13,2015-07-13,"YB","E","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to sediment layer"
+"2015-07-13_YB-Eq8",2015-07-13,2015-07-13,"YB","E","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to blur"
+"2015-07-13_YB-Eq3",2015-07-13,2015-07-13,"YB","E","3","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-07-13_YB-Eq4",2015-07-13,2015-07-13,"YB","E","4","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to sediment layer"
+"2015-07-13_YB-Eq8",2015-07-13,2015-07-13,"YB","E","8","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to blur"
+"2015-07-13_YB-Eq3",2015-07-13,2015-07-13,"YB","E","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-07-13_YB-Eq4",2015-07-13,2015-07-13,"YB","E","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to sediment layer"
+"2015-07-13_YB-Eq8",2015-07-13,2015-07-13,"YB","E","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to blur"
+"2015-07-13_YB-Eq3",2015-07-13,2015-07-13,"YB","E","3","No","Nucella_ostrina","Type 9",7,0.0875,80,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-07-13_YB-Eq4",2015-07-13,2015-07-13,"YB","E","4","No","Nucella_ostrina","Type 9",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to sediment layer"
+"2015-07-13_YB-Eq8",2015-07-13,2015-07-13,"YB","E","8","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to blur"
+"2015-07-13_YB-Eq3",2015-07-13,2015-07-13,"YB","E","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-07-13_YB-Eq4",2015-07-13,2015-07-13,"YB","E","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to sediment layer"
+"2015-07-13_YB-Eq8",2015-07-13,2015-07-13,"YB","E","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to blur"
+"2015-07-13_YB-Eq3",2015-07-13,2015-07-13,"YB","E","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-07-13_YB-Eq4",2015-07-13,2015-07-13,"YB","E","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to sediment layer"
+"2015-07-13_YB-Eq8",2015-07-13,2015-07-13,"YB","E","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to blur"
+"2015-07-13_YB-Eq3",2015-07-13,2015-07-13,"YB","E","3","Pp","Pollicipes_polymerus","Type 11",431,0.0875,4925.71428571429,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-07-13_YB-Eq4",2015-07-13,2015-07-13,"YB","E","4","Pp","Pollicipes_polymerus","Type 11",621,0.0875,7097.14285714286,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to sediment layer"
+"2015-07-13_YB-Eq8",2015-07-13,2015-07-13,"YB","E","8","Pp","Pollicipes_polymerus","Type 11",929,0.0875,10617.1428571429,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to blur"
+"2015-07-13_YB-Eq3",2015-07-13,2015-07-13,"YB","E","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-07-13_YB-Eq4",2015-07-13,2015-07-13,"YB","E","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to sediment layer"
+"2015-07-13_YB-Eq8",2015-07-13,2015-07-13,"YB","E","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to blur"
+"2015-07-13_YB-Eq3",2015-07-13,2015-07-13,"YB","E","3","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-07-13_YB-Eq4",2015-07-13,2015-07-13,"YB","E","4","Sc","Semibalanus_cariosus","Type 5",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to sediment layer"
+"2015-07-13_YB-Eq8",2015-07-13,2015-07-13,"YB","E","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to blur"
+"2015-07-13_YB-Eq3",2015-07-13,2015-07-13,"YB","E","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-07-13_YB-Eq4",2015-07-13,2015-07-13,"YB","E","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to sediment layer"
+"2015-07-13_YB-Eq8",2015-07-13,2015-07-13,"YB","E","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to blur"
+"2015-07-13_YB-Fq4",2015-07-13,2015-07-13,"YB","F","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare and blur."
+"2015-07-13_YB-Fq5",2015-07-13,2015-07-13,"YB","F","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts may be low due to glare and blur."
+"2015-07-13_YB-Fq6",2015-07-13,2015-07-13,"YB","F","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare and blur."
+"2015-07-13_YB-Fq4",2015-07-13,2015-07-13,"YB","F","4","Ae","Anemones","Type 14",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare and blur."
+"2015-07-13_YB-Fq5",2015-07-13,2015-07-13,"YB","F","5","Ae","Anemones","Type 14",9,0.0875,102.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts may be low due to glare and blur."
+"2015-07-13_YB-Fq6",2015-07-13,2015-07-13,"YB","F","6","Ae","Anemones","Type 14",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare and blur."
+"2015-07-13_YB-Fq4",2015-07-13,2015-07-13,"YB","F","4","Bg","Balanus_glandula","Type 1",686,0.0875,7840,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare and blur."
+"2015-07-13_YB-Fq5",2015-07-13,2015-07-13,"YB","F","5","Bg","Balanus_glandula","Type 1",242,0.0875,2765.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts may be low due to glare and blur."
+"2015-07-13_YB-Fq6",2015-07-13,2015-07-13,"YB","F","6","Bg","Balanus_glandula","Type 1",238,0.0875,2720,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare and blur."
+"2015-07-13_YB-Fq4",2015-07-13,2015-07-13,"YB","F","4","BgD","Balanus_glandula_(dead)","Type 2",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare and blur."
+"2015-07-13_YB-Fq5",2015-07-13,2015-07-13,"YB","F","5","BgD","Balanus_glandula_(dead)","Type 2",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts may be low due to glare and blur."
+"2015-07-13_YB-Fq6",2015-07-13,2015-07-13,"YB","F","6","BgD","Balanus_glandula_(dead)","Type 2",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare and blur."
+"2015-07-13_YB-Fq4",2015-07-13,2015-07-13,"YB","F","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare and blur."
+"2015-07-13_YB-Fq5",2015-07-13,2015-07-13,"YB","F","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts may be low due to glare and blur."
+"2015-07-13_YB-Fq6",2015-07-13,2015-07-13,"YB","F","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare and blur."
+"2015-07-13_YB-Fq4",2015-07-13,2015-07-13,"YB","F","4","Cth","Chthamalus_dalli","Type 3",554,0.0875,6331.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare and blur."
+"2015-07-13_YB-Fq5",2015-07-13,2015-07-13,"YB","F","5","Cth","Chthamalus_dalli","Type 3",266,0.0875,3040,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts may be low due to glare and blur."
+"2015-07-13_YB-Fq6",2015-07-13,2015-07-13,"YB","F","6","Cth","Chthamalus_dalli","Type 3",139,0.0875,1588.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare and blur."
+"2015-07-13_YB-Fq4",2015-07-13,2015-07-13,"YB","F","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare and blur."
+"2015-07-13_YB-Fq5",2015-07-13,2015-07-13,"YB","F","5","CthD","Chthamalus_dalli (dead)","Type 4",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts may be low due to glare and blur."
+"2015-07-13_YB-Fq6",2015-07-13,2015-07-13,"YB","F","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare and blur."
+"2015-07-13_YB-Fq4",2015-07-13,2015-07-13,"YB","F","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare and blur."
+"2015-07-13_YB-Fq5",2015-07-13,2015-07-13,"YB","F","5","Emp","Emplectonema worm","Type 23",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts may be low due to glare and blur."
+"2015-07-13_YB-Fq6",2015-07-13,2015-07-13,"YB","F","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare and blur."
+"2015-07-13_YB-Fq4",2015-07-13,2015-07-13,"YB","F","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare and blur."
+"2015-07-13_YB-Fq5",2015-07-13,2015-07-13,"YB","F","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts may be low due to glare and blur."
+"2015-07-13_YB-Fq6",2015-07-13,2015-07-13,"YB","F","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare and blur."
+"2015-07-13_YB-Fq4",2015-07-13,2015-07-13,"YB","F","4","Lim","Limpets","Type 12",397,0.0875,4537.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare and blur."
+"2015-07-13_YB-Fq5",2015-07-13,2015-07-13,"YB","F","5","Lim","Limpets","Type 12",451,0.0875,5154.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts may be low due to glare and blur."
+"2015-07-13_YB-Fq6",2015-07-13,2015-07-13,"YB","F","6","Lim","Limpets","Type 12",391,0.0875,4468.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare and blur."
+"2015-07-13_YB-Fq4",2015-07-13,2015-07-13,"YB","F","4","Ls","Littorina_sitkana","Type 13",201,0.0875,2297.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare and blur."
+"2015-07-13_YB-Fq5",2015-07-13,2015-07-13,"YB","F","5","Ls","Littorina_sitkana","Type 13",209,0.0875,2388.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts may be low due to glare and blur."
+"2015-07-13_YB-Fq6",2015-07-13,2015-07-13,"YB","F","6","Ls","Littorina_sitkana","Type 13",231,0.0875,2640,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare and blur."
+"2015-07-13_YB-Fq4",2015-07-13,2015-07-13,"YB","F","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare and blur."
+"2015-07-13_YB-Fq5",2015-07-13,2015-07-13,"YB","F","5","Mc","Mytilus_californianus","Type 17",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts may be low due to glare and blur."
+"2015-07-13_YB-Fq6",2015-07-13,2015-07-13,"YB","F","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare and blur."
+"2015-07-13_YB-Fq4",2015-07-13,2015-07-13,"YB","F","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare and blur."
+"2015-07-13_YB-Fq5",2015-07-13,2015-07-13,"YB","F","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts may be low due to glare and blur."
+"2015-07-13_YB-Fq6",2015-07-13,2015-07-13,"YB","F","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare and blur."
+"2015-07-13_YB-Fq4",2015-07-13,2015-07-13,"YB","F","4","Myt","Mytilus_spp","Type 7",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare and blur."
+"2015-07-13_YB-Fq5",2015-07-13,2015-07-13,"YB","F","5","Myt","Mytilus_spp","Type 7",15,0.0875,171.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts may be low due to glare and blur."
+"2015-07-13_YB-Fq6",2015-07-13,2015-07-13,"YB","F","6","Myt","Mytilus_spp","Type 7",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare and blur."
+"2015-07-13_YB-Fq4",2015-07-13,2015-07-13,"YB","F","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare and blur."
+"2015-07-13_YB-Fq5",2015-07-13,2015-07-13,"YB","F","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts may be low due to glare and blur."
+"2015-07-13_YB-Fq6",2015-07-13,2015-07-13,"YB","F","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare and blur."
+"2015-07-13_YB-Fq4",2015-07-13,2015-07-13,"YB","F","4","Mt","Mytilus_trossulus","Type 15",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare and blur."
+"2015-07-13_YB-Fq5",2015-07-13,2015-07-13,"YB","F","5","Mt","Mytilus_trossulus","Type 15",10,0.0875,114.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts may be low due to glare and blur."
+"2015-07-13_YB-Fq6",2015-07-13,2015-07-13,"YB","F","6","Mt","Mytilus_trossulus","Type 15",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare and blur."
+"2015-07-13_YB-Fq4",2015-07-13,2015-07-13,"YB","F","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare and blur."
+"2015-07-13_YB-Fq5",2015-07-13,2015-07-13,"YB","F","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts may be low due to glare and blur."
+"2015-07-13_YB-Fq6",2015-07-13,2015-07-13,"YB","F","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare and blur."
+"2015-07-13_YB-Fq4",2015-07-13,2015-07-13,"YB","F","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare and blur."
+"2015-07-13_YB-Fq5",2015-07-13,2015-07-13,"YB","F","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts may be low due to glare and blur."
+"2015-07-13_YB-Fq6",2015-07-13,2015-07-13,"YB","F","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare and blur."
+"2015-07-13_YB-Fq4",2015-07-13,2015-07-13,"YB","F","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare and blur."
+"2015-07-13_YB-Fq5",2015-07-13,2015-07-13,"YB","F","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts may be low due to glare and blur."
+"2015-07-13_YB-Fq6",2015-07-13,2015-07-13,"YB","F","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare and blur."
+"2015-07-13_YB-Fq4",2015-07-13,2015-07-13,"YB","F","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare and blur."
+"2015-07-13_YB-Fq5",2015-07-13,2015-07-13,"YB","F","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts may be low due to glare and blur."
+"2015-07-13_YB-Fq6",2015-07-13,2015-07-13,"YB","F","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare and blur."
+"2015-07-13_YB-Fq4",2015-07-13,2015-07-13,"YB","F","4","No","Nucella_ostrina","Type 9",9,0.0875,102.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare and blur."
+"2015-07-13_YB-Fq5",2015-07-13,2015-07-13,"YB","F","5","No","Nucella_ostrina","Type 9",10,0.0875,114.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts may be low due to glare and blur."
+"2015-07-13_YB-Fq6",2015-07-13,2015-07-13,"YB","F","6","No","Nucella_ostrina","Type 9",11,0.0875,125.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare and blur."
+"2015-07-13_YB-Fq4",2015-07-13,2015-07-13,"YB","F","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare and blur."
+"2015-07-13_YB-Fq5",2015-07-13,2015-07-13,"YB","F","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts may be low due to glare and blur."
+"2015-07-13_YB-Fq6",2015-07-13,2015-07-13,"YB","F","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare and blur."
+"2015-07-13_YB-Fq4",2015-07-13,2015-07-13,"YB","F","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare and blur."
+"2015-07-13_YB-Fq5",2015-07-13,2015-07-13,"YB","F","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts may be low due to glare and blur."
+"2015-07-13_YB-Fq6",2015-07-13,2015-07-13,"YB","F","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare and blur."
+"2015-07-13_YB-Fq4",2015-07-13,2015-07-13,"YB","F","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare and blur."
+"2015-07-13_YB-Fq5",2015-07-13,2015-07-13,"YB","F","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts may be low due to glare and blur."
+"2015-07-13_YB-Fq6",2015-07-13,2015-07-13,"YB","F","6","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare and blur."
+"2015-07-13_YB-Fq4",2015-07-13,2015-07-13,"YB","F","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare and blur."
+"2015-07-13_YB-Fq5",2015-07-13,2015-07-13,"YB","F","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts may be low due to glare and blur."
+"2015-07-13_YB-Fq6",2015-07-13,2015-07-13,"YB","F","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare and blur."
+"2015-07-13_YB-Fq4",2015-07-13,2015-07-13,"YB","F","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare and blur."
+"2015-07-13_YB-Fq5",2015-07-13,2015-07-13,"YB","F","5","Sc","Semibalanus_cariosus","Type 5",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts may be low due to glare and blur."
+"2015-07-13_YB-Fq6",2015-07-13,2015-07-13,"YB","F","6","Sc","Semibalanus_cariosus","Type 5",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare and blur."
+"2015-07-13_YB-Fq4",2015-07-13,2015-07-13,"YB","F","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare and blur."
+"2015-07-13_YB-Fq5",2015-07-13,2015-07-13,"YB","F","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts may be low due to glare and blur."
+"2015-07-13_YB-Fq6",2015-07-13,2015-07-13,"YB","F","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare and blur."
+"2015-07-13_YB-Gq3",2015-07-13,2015-07-13,"YB","G","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","28%",""
+"2015-07-13_YB-Gq5",2015-07-13,2015-07-13,"YB","G","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts low due to sand cover and glare. Sand covering ~45%"
+"2015-07-13_YB-Gq8",2015-07-13,2015-07-13,"YB","G","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to blurry edges and sediment deposit"
+"2015-07-13_YB-Gq3",2015-07-13,2015-07-13,"YB","G","3","Ae","Anemones","Type 14",41,0.0875,468.571428571429,NA,"Celeste Moen","Finished","Full","Full","28%",""
+"2015-07-13_YB-Gq5",2015-07-13,2015-07-13,"YB","G","5","Ae","Anemones","Type 14",84,0.0875,960,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts low due to sand cover and glare. Sand covering ~45%"
+"2015-07-13_YB-Gq8",2015-07-13,2015-07-13,"YB","G","8","Ae","Anemones","Type 14",6,0.0875,68.5714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to blurry edges and sediment deposit"
+"2015-07-13_YB-Gq3",2015-07-13,2015-07-13,"YB","G","3","Bg","Balanus_glandula","Type 1",31,0.0875,354.285714285714,NA,"Celeste Moen","Finished","Full","Full","28%",""
+"2015-07-13_YB-Gq5",2015-07-13,2015-07-13,"YB","G","5","Bg","Balanus_glandula","Type 1",28,0.0875,320,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts low due to sand cover and glare. Sand covering ~45%"
+"2015-07-13_YB-Gq8",2015-07-13,2015-07-13,"YB","G","8","Bg","Balanus_glandula","Type 1",35,0.0875,400,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to blurry edges and sediment deposit"
+"2015-07-13_YB-Gq3",2015-07-13,2015-07-13,"YB","G","3","BgD","Balanus_glandula_(dead)","Type 2",18,0.0875,205.714285714286,NA,"Celeste Moen","Finished","Full","Full","28%",""
+"2015-07-13_YB-Gq5",2015-07-13,2015-07-13,"YB","G","5","BgD","Balanus_glandula_(dead)","Type 2",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts low due to sand cover and glare. Sand covering ~45%"
+"2015-07-13_YB-Gq8",2015-07-13,2015-07-13,"YB","G","8","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to blurry edges and sediment deposit"
+"2015-07-13_YB-Gq3",2015-07-13,2015-07-13,"YB","G","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","28%",""
+"2015-07-13_YB-Gq5",2015-07-13,2015-07-13,"YB","G","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts low due to sand cover and glare. Sand covering ~45%"
+"2015-07-13_YB-Gq8",2015-07-13,2015-07-13,"YB","G","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to blurry edges and sediment deposit"
+"2015-07-13_YB-Gq3",2015-07-13,2015-07-13,"YB","G","3","Cth","Chthamalus_dalli","Type 3",7,0.0875,80,NA,"Celeste Moen","Finished","Full","Full","28%",""
+"2015-07-13_YB-Gq5",2015-07-13,2015-07-13,"YB","G","5","Cth","Chthamalus_dalli","Type 3",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts low due to sand cover and glare. Sand covering ~45%"
+"2015-07-13_YB-Gq8",2015-07-13,2015-07-13,"YB","G","8","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to blurry edges and sediment deposit"
+"2015-07-13_YB-Gq3",2015-07-13,2015-07-13,"YB","G","3","CthD","Chthamalus_dalli (dead)","Type 4",3,0.0875,34.2857142857143,NA,"Celeste Moen","Finished","Full","Full","28%",""
+"2015-07-13_YB-Gq5",2015-07-13,2015-07-13,"YB","G","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts low due to sand cover and glare. Sand covering ~45%"
+"2015-07-13_YB-Gq8",2015-07-13,2015-07-13,"YB","G","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to blurry edges and sediment deposit"
+"2015-07-13_YB-Gq3",2015-07-13,2015-07-13,"YB","G","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","28%",""
+"2015-07-13_YB-Gq5",2015-07-13,2015-07-13,"YB","G","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts low due to sand cover and glare. Sand covering ~45%"
+"2015-07-13_YB-Gq8",2015-07-13,2015-07-13,"YB","G","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to blurry edges and sediment deposit"
+"2015-07-13_YB-Gq3",2015-07-13,2015-07-13,"YB","G","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","28%",""
+"2015-07-13_YB-Gq5",2015-07-13,2015-07-13,"YB","G","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts low due to sand cover and glare. Sand covering ~45%"
+"2015-07-13_YB-Gq8",2015-07-13,2015-07-13,"YB","G","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to blurry edges and sediment deposit"
+"2015-07-13_YB-Gq3",2015-07-13,2015-07-13,"YB","G","3","Lim","Limpets","Type 12",58,0.0875,662.857142857143,NA,"Celeste Moen","Finished","Full","Full","28%",""
+"2015-07-13_YB-Gq5",2015-07-13,2015-07-13,"YB","G","5","Lim","Limpets","Type 12",89,0.0875,1017.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts low due to sand cover and glare. Sand covering ~45%"
+"2015-07-13_YB-Gq8",2015-07-13,2015-07-13,"YB","G","8","Lim","Limpets","Type 12",44,0.0875,502.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to blurry edges and sediment deposit"
+"2015-07-13_YB-Gq3",2015-07-13,2015-07-13,"YB","G","3","Ls","Littorina_sitkana","Type 13",81,0.0875,925.714285714286,NA,"Celeste Moen","Finished","Full","Full","28%",""
+"2015-07-13_YB-Gq5",2015-07-13,2015-07-13,"YB","G","5","Ls","Littorina_sitkana","Type 13",116,0.0875,1325.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts low due to sand cover and glare. Sand covering ~45%"
+"2015-07-13_YB-Gq8",2015-07-13,2015-07-13,"YB","G","8","Ls","Littorina_sitkana","Type 13",116,0.0875,1325.71428571429,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to blurry edges and sediment deposit"
+"2015-07-13_YB-Gq3",2015-07-13,2015-07-13,"YB","G","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","28%",""
+"2015-07-13_YB-Gq5",2015-07-13,2015-07-13,"YB","G","5","Mc","Mytilus_californianus","Type 17",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts low due to sand cover and glare. Sand covering ~45%"
+"2015-07-13_YB-Gq8",2015-07-13,2015-07-13,"YB","G","8","Mc","Mytilus_californianus","Type 17",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to blurry edges and sediment deposit"
+"2015-07-13_YB-Gq3",2015-07-13,2015-07-13,"YB","G","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","28%",""
+"2015-07-13_YB-Gq5",2015-07-13,2015-07-13,"YB","G","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts low due to sand cover and glare. Sand covering ~45%"
+"2015-07-13_YB-Gq8",2015-07-13,2015-07-13,"YB","G","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to blurry edges and sediment deposit"
+"2015-07-13_YB-Gq3",2015-07-13,2015-07-13,"YB","G","3","Myt","Mytilus_spp","Type 7",5,0.0875,57.1428571428571,NA,"Celeste Moen","Finished","Full","Full","28%",""
+"2015-07-13_YB-Gq5",2015-07-13,2015-07-13,"YB","G","5","Myt","Mytilus_spp","Type 7",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts low due to sand cover and glare. Sand covering ~45%"
+"2015-07-13_YB-Gq8",2015-07-13,2015-07-13,"YB","G","8","Myt","Mytilus_spp","Type 7",17,0.0875,194.285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to blurry edges and sediment deposit"
+"2015-07-13_YB-Gq3",2015-07-13,2015-07-13,"YB","G","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","28%",""
+"2015-07-13_YB-Gq5",2015-07-13,2015-07-13,"YB","G","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts low due to sand cover and glare. Sand covering ~45%"
+"2015-07-13_YB-Gq8",2015-07-13,2015-07-13,"YB","G","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to blurry edges and sediment deposit"
+"2015-07-13_YB-Gq3",2015-07-13,2015-07-13,"YB","G","3","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","28%",""
+"2015-07-13_YB-Gq5",2015-07-13,2015-07-13,"YB","G","5","Mt","Mytilus_trossulus","Type 15",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts low due to sand cover and glare. Sand covering ~45%"
+"2015-07-13_YB-Gq8",2015-07-13,2015-07-13,"YB","G","8","Mt","Mytilus_trossulus","Type 15",6,0.0875,68.5714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to blurry edges and sediment deposit"
+"2015-07-13_YB-Gq3",2015-07-13,2015-07-13,"YB","G","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","28%",""
+"2015-07-13_YB-Gq5",2015-07-13,2015-07-13,"YB","G","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts low due to sand cover and glare. Sand covering ~45%"
+"2015-07-13_YB-Gq8",2015-07-13,2015-07-13,"YB","G","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to blurry edges and sediment deposit"
+"2015-07-13_YB-Gq3",2015-07-13,2015-07-13,"YB","G","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","28%",""
+"2015-07-13_YB-Gq5",2015-07-13,2015-07-13,"YB","G","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts low due to sand cover and glare. Sand covering ~45%"
+"2015-07-13_YB-Gq8",2015-07-13,2015-07-13,"YB","G","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to blurry edges and sediment deposit"
+"2015-07-13_YB-Gq3",2015-07-13,2015-07-13,"YB","G","3","Nc","Nucella_canaliculata","Type 10",6,0.0875,68.5714285714286,NA,"Celeste Moen","Finished","Full","Full","28%",""
+"2015-07-13_YB-Gq5",2015-07-13,2015-07-13,"YB","G","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts low due to sand cover and glare. Sand covering ~45%"
+"2015-07-13_YB-Gq8",2015-07-13,2015-07-13,"YB","G","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to blurry edges and sediment deposit"
+"2015-07-13_YB-Gq3",2015-07-13,2015-07-13,"YB","G","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","28%",""
+"2015-07-13_YB-Gq5",2015-07-13,2015-07-13,"YB","G","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts low due to sand cover and glare. Sand covering ~45%"
+"2015-07-13_YB-Gq8",2015-07-13,2015-07-13,"YB","G","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to blurry edges and sediment deposit"
+"2015-07-13_YB-Gq3",2015-07-13,2015-07-13,"YB","G","3","No","Nucella_ostrina","Type 9",16,0.0875,182.857142857143,NA,"Celeste Moen","Finished","Full","Full","28%",""
+"2015-07-13_YB-Gq5",2015-07-13,2015-07-13,"YB","G","5","No","Nucella_ostrina","Type 9",15,0.0875,171.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts low due to sand cover and glare. Sand covering ~45%"
+"2015-07-13_YB-Gq8",2015-07-13,2015-07-13,"YB","G","8","No","Nucella_ostrina","Type 9",15,0.0875,171.428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to blurry edges and sediment deposit"
+"2015-07-13_YB-Gq3",2015-07-13,2015-07-13,"YB","G","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","28%",""
+"2015-07-13_YB-Gq5",2015-07-13,2015-07-13,"YB","G","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts low due to sand cover and glare. Sand covering ~45%"
+"2015-07-13_YB-Gq8",2015-07-13,2015-07-13,"YB","G","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to blurry edges and sediment deposit"
+"2015-07-13_YB-Gq3",2015-07-13,2015-07-13,"YB","G","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","28%",""
+"2015-07-13_YB-Gq5",2015-07-13,2015-07-13,"YB","G","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts low due to sand cover and glare. Sand covering ~45%"
+"2015-07-13_YB-Gq8",2015-07-13,2015-07-13,"YB","G","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to blurry edges and sediment deposit"
+"2015-07-13_YB-Gq3",2015-07-13,2015-07-13,"YB","G","3","Pp","Pollicipes_polymerus","Type 11",220,0.0875,2514.28571428571,NA,"Celeste Moen","Finished","Full","Full","28%",""
+"2015-07-13_YB-Gq5",2015-07-13,2015-07-13,"YB","G","5","Pp","Pollicipes_polymerus","Type 11",745,0.0875,8514.28571428572,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts low due to sand cover and glare. Sand covering ~45%"
+"2015-07-13_YB-Gq8",2015-07-13,2015-07-13,"YB","G","8","Pp","Pollicipes_polymerus","Type 11",777,0.0875,8880,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to blurry edges and sediment deposit"
+"2015-07-13_YB-Gq3",2015-07-13,2015-07-13,"YB","G","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","28%",""
+"2015-07-13_YB-Gq5",2015-07-13,2015-07-13,"YB","G","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts low due to sand cover and glare. Sand covering ~45%"
+"2015-07-13_YB-Gq8",2015-07-13,2015-07-13,"YB","G","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to blurry edges and sediment deposit"
+"2015-07-13_YB-Gq3",2015-07-13,2015-07-13,"YB","G","3","Sc","Semibalanus_cariosus","Type 5",2,0.0875,22.8571428571429,NA,"Celeste Moen","Finished","Full","Full","28%",""
+"2015-07-13_YB-Gq5",2015-07-13,2015-07-13,"YB","G","5","Sc","Semibalanus_cariosus","Type 5",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts low due to sand cover and glare. Sand covering ~45%"
+"2015-07-13_YB-Gq8",2015-07-13,2015-07-13,"YB","G","8","Sc","Semibalanus_cariosus","Type 5",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to blurry edges and sediment deposit"
+"2015-07-13_YB-Gq3",2015-07-13,2015-07-13,"YB","G","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","28%",""
+"2015-07-13_YB-Gq5",2015-07-13,2015-07-13,"YB","G","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts low due to sand cover and glare. Sand covering ~45%"
+"2015-07-13_YB-Gq8",2015-07-13,2015-07-13,"YB","G","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to blurry edges and sediment deposit"
+"2015-08-28_YB-Aq6",2015-08-28,2015-08-28,"YB","A","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%","Counts likely low due to blur"
+"2015-08-28_YB-Aq7",2015-08-28,2015-08-28,"YB","A","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-08-28_YB-Aq9",2015-08-28,2015-08-28,"YB","A","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to blur and sand."
+"2015-08-28_YB-Aq6",2015-08-28,2015-08-28,"YB","A","6","Ae","Anemones","Type 14",76,0.0875,868.571428571429,NA,"Celeste Moen","Finished","Full","Full","5%","Counts likely low due to blur"
+"2015-08-28_YB-Aq7",2015-08-28,2015-08-28,"YB","A","7","Ae","Anemones","Type 14",131,0.0875,1497.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-08-28_YB-Aq9",2015-08-28,2015-08-28,"YB","A","9","Ae","Anemones","Type 14",107,0.0875,1222.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to blur and sand."
+"2015-08-28_YB-Aq6",2015-08-28,2015-08-28,"YB","A","6","Bg","Balanus_glandula","Type 1",1170,0.0875,13371.4285714286,NA,"Celeste Moen","Finished","Full","Full","5%","Counts likely low due to blur"
+"2015-08-28_YB-Aq7",2015-08-28,2015-08-28,"YB","A","7","Bg","Balanus_glandula","Type 1",1542,0.0875,17622.8571428571,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-08-28_YB-Aq9",2015-08-28,2015-08-28,"YB","A","9","Bg","Balanus_glandula","Type 1",1086,0.0875,12411.4285714286,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to blur and sand."
+"2015-08-28_YB-Aq6",2015-08-28,2015-08-28,"YB","A","6","BgD","Balanus_glandula_(dead)","Type 2",14,0.0875,160,NA,"Celeste Moen","Finished","Full","Full","5%","Counts likely low due to blur"
+"2015-08-28_YB-Aq7",2015-08-28,2015-08-28,"YB","A","7","BgD","Balanus_glandula_(dead)","Type 2",12,0.0875,137.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-08-28_YB-Aq9",2015-08-28,2015-08-28,"YB","A","9","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to blur and sand."
+"2015-08-28_YB-Aq6",2015-08-28,2015-08-28,"YB","A","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%","Counts likely low due to blur"
+"2015-08-28_YB-Aq7",2015-08-28,2015-08-28,"YB","A","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-08-28_YB-Aq9",2015-08-28,2015-08-28,"YB","A","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to blur and sand."
+"2015-08-28_YB-Aq6",2015-08-28,2015-08-28,"YB","A","6","Cth","Chthamalus_dalli","Type 3",12,0.0875,137.142857142857,NA,"Celeste Moen","Finished","Full","Full","5%","Counts likely low due to blur"
+"2015-08-28_YB-Aq7",2015-08-28,2015-08-28,"YB","A","7","Cth","Chthamalus_dalli","Type 3",39,0.0875,445.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-08-28_YB-Aq9",2015-08-28,2015-08-28,"YB","A","9","Cth","Chthamalus_dalli","Type 3",235,0.0875,2685.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to blur and sand."
+"2015-08-28_YB-Aq6",2015-08-28,2015-08-28,"YB","A","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%","Counts likely low due to blur"
+"2015-08-28_YB-Aq7",2015-08-28,2015-08-28,"YB","A","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-08-28_YB-Aq9",2015-08-28,2015-08-28,"YB","A","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to blur and sand."
+"2015-08-28_YB-Aq6",2015-08-28,2015-08-28,"YB","A","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%","Counts likely low due to blur"
+"2015-08-28_YB-Aq7",2015-08-28,2015-08-28,"YB","A","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-08-28_YB-Aq9",2015-08-28,2015-08-28,"YB","A","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to blur and sand."
+"2015-08-28_YB-Aq6",2015-08-28,2015-08-28,"YB","A","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%","Counts likely low due to blur"
+"2015-08-28_YB-Aq7",2015-08-28,2015-08-28,"YB","A","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-08-28_YB-Aq9",2015-08-28,2015-08-28,"YB","A","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to blur and sand."
+"2015-08-28_YB-Aq6",2015-08-28,2015-08-28,"YB","A","6","Lim","Limpets","Type 12",244,0.0875,2788.57142857143,NA,"Celeste Moen","Finished","Full","Full","5%","Counts likely low due to blur"
+"2015-08-28_YB-Aq7",2015-08-28,2015-08-28,"YB","A","7","Lim","Limpets","Type 12",185,0.0875,2114.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-08-28_YB-Aq9",2015-08-28,2015-08-28,"YB","A","9","Lim","Limpets","Type 12",477,0.0875,5451.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to blur and sand."
+"2015-08-28_YB-Aq6",2015-08-28,2015-08-28,"YB","A","6","Ls","Littorina_sitkana","Type 13",147,0.0875,1680,NA,"Celeste Moen","Finished","Full","Full","5%","Counts likely low due to blur"
+"2015-08-28_YB-Aq7",2015-08-28,2015-08-28,"YB","A","7","Ls","Littorina_sitkana","Type 13",400,0.0875,4571.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-08-28_YB-Aq9",2015-08-28,2015-08-28,"YB","A","9","Ls","Littorina_sitkana","Type 13",184,0.0875,2102.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to blur and sand."
+"2015-08-28_YB-Aq6",2015-08-28,2015-08-28,"YB","A","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%","Counts likely low due to blur"
+"2015-08-28_YB-Aq7",2015-08-28,2015-08-28,"YB","A","7","Mc","Mytilus_californianus","Type 17",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-08-28_YB-Aq9",2015-08-28,2015-08-28,"YB","A","9","Mc","Mytilus_californianus","Type 17",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to blur and sand."
+"2015-08-28_YB-Aq6",2015-08-28,2015-08-28,"YB","A","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%","Counts likely low due to blur"
+"2015-08-28_YB-Aq7",2015-08-28,2015-08-28,"YB","A","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-08-28_YB-Aq9",2015-08-28,2015-08-28,"YB","A","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to blur and sand."
+"2015-08-28_YB-Aq6",2015-08-28,2015-08-28,"YB","A","6","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%","Counts likely low due to blur"
+"2015-08-28_YB-Aq7",2015-08-28,2015-08-28,"YB","A","7","Myt","Mytilus_spp","Type 7",108,0.0875,1234.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-08-28_YB-Aq9",2015-08-28,2015-08-28,"YB","A","9","Myt","Mytilus_spp","Type 7",20,0.0875,228.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to blur and sand."
+"2015-08-28_YB-Aq6",2015-08-28,2015-08-28,"YB","A","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%","Counts likely low due to blur"
+"2015-08-28_YB-Aq7",2015-08-28,2015-08-28,"YB","A","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-08-28_YB-Aq9",2015-08-28,2015-08-28,"YB","A","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to blur and sand."
+"2015-08-28_YB-Aq6",2015-08-28,2015-08-28,"YB","A","6","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%","Counts likely low due to blur"
+"2015-08-28_YB-Aq7",2015-08-28,2015-08-28,"YB","A","7","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-08-28_YB-Aq9",2015-08-28,2015-08-28,"YB","A","9","Mt","Mytilus_trossulus","Type 15",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to blur and sand."
+"2015-08-28_YB-Aq6",2015-08-28,2015-08-28,"YB","A","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%","Counts likely low due to blur"
+"2015-08-28_YB-Aq7",2015-08-28,2015-08-28,"YB","A","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-08-28_YB-Aq9",2015-08-28,2015-08-28,"YB","A","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to blur and sand."
+"2015-08-28_YB-Aq6",2015-08-28,2015-08-28,"YB","A","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%","Counts likely low due to blur"
+"2015-08-28_YB-Aq7",2015-08-28,2015-08-28,"YB","A","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-08-28_YB-Aq9",2015-08-28,2015-08-28,"YB","A","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to blur and sand."
+"2015-08-28_YB-Aq6",2015-08-28,2015-08-28,"YB","A","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%","Counts likely low due to blur"
+"2015-08-28_YB-Aq7",2015-08-28,2015-08-28,"YB","A","7","Nc","Nucella_canaliculata","Type 10",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-08-28_YB-Aq9",2015-08-28,2015-08-28,"YB","A","9","Nc","Nucella_canaliculata","Type 10",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to blur and sand."
+"2015-08-28_YB-Aq6",2015-08-28,2015-08-28,"YB","A","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%","Counts likely low due to blur"
+"2015-08-28_YB-Aq7",2015-08-28,2015-08-28,"YB","A","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-08-28_YB-Aq9",2015-08-28,2015-08-28,"YB","A","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to blur and sand."
+"2015-08-28_YB-Aq6",2015-08-28,2015-08-28,"YB","A","6","No","Nucella_ostrina","Type 9",4,0.0875,45.7142857142857,NA,"Celeste Moen","Finished","Full","Full","5%","Counts likely low due to blur"
+"2015-08-28_YB-Aq7",2015-08-28,2015-08-28,"YB","A","7","No","Nucella_ostrina","Type 9",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-08-28_YB-Aq9",2015-08-28,2015-08-28,"YB","A","9","No","Nucella_ostrina","Type 9",13,0.0875,148.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to blur and sand."
+"2015-08-28_YB-Aq6",2015-08-28,2015-08-28,"YB","A","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%","Counts likely low due to blur"
+"2015-08-28_YB-Aq7",2015-08-28,2015-08-28,"YB","A","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-08-28_YB-Aq9",2015-08-28,2015-08-28,"YB","A","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to blur and sand."
+"2015-08-28_YB-Aq6",2015-08-28,2015-08-28,"YB","A","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%","Counts likely low due to blur"
+"2015-08-28_YB-Aq7",2015-08-28,2015-08-28,"YB","A","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-08-28_YB-Aq9",2015-08-28,2015-08-28,"YB","A","9","Pis","Pisaster","Type 21",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to blur and sand."
+"2015-08-28_YB-Aq6",2015-08-28,2015-08-28,"YB","A","6","Pp","Pollicipes_polymerus","Type 11",346,0.0875,3954.28571428571,NA,"Celeste Moen","Finished","Full","Full","5%","Counts likely low due to blur"
+"2015-08-28_YB-Aq7",2015-08-28,2015-08-28,"YB","A","7","Pp","Pollicipes_polymerus","Type 11",640,0.0875,7314.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-08-28_YB-Aq9",2015-08-28,2015-08-28,"YB","A","9","Pp","Pollicipes_polymerus","Type 11",899,0.0875,10274.2857142857,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to blur and sand."
+"2015-08-28_YB-Aq6",2015-08-28,2015-08-28,"YB","A","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%","Counts likely low due to blur"
+"2015-08-28_YB-Aq7",2015-08-28,2015-08-28,"YB","A","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-08-28_YB-Aq9",2015-08-28,2015-08-28,"YB","A","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to blur and sand."
+"2015-08-28_YB-Aq6",2015-08-28,2015-08-28,"YB","A","6","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Celeste Moen","Finished","Full","Full","5%","Counts likely low due to blur"
+"2015-08-28_YB-Aq7",2015-08-28,2015-08-28,"YB","A","7","Sc","Semibalanus_cariosus","Type 5",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-08-28_YB-Aq9",2015-08-28,2015-08-28,"YB","A","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to blur and sand."
+"2015-08-28_YB-Aq6",2015-08-28,2015-08-28,"YB","A","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","5%","Counts likely low due to blur"
+"2015-08-28_YB-Aq7",2015-08-28,2015-08-28,"YB","A","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-08-28_YB-Aq9",2015-08-28,2015-08-28,"YB","A","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to blur and sand."
+"2015-08-28_YB-ABq1",2015-08-28,2015-08-28,"YB","AB","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2015-08-28_YB-ABq2",2015-08-28,2015-08-28,"YB","AB","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%",""
+"2015-08-28_YB-ABq4",2015-08-28,2015-08-28,"YB","AB","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-08-28_YB-ABq1",2015-08-28,2015-08-28,"YB","AB","1","Ae","Anemones","Type 14",17,0.0875,194.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2015-08-28_YB-ABq2",2015-08-28,2015-08-28,"YB","AB","2","Ae","Anemones","Type 14",95,0.0875,1085.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","12%",""
+"2015-08-28_YB-ABq4",2015-08-28,2015-08-28,"YB","AB","4","Ae","Anemones","Type 14",27,0.0875,308.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-08-28_YB-ABq1",2015-08-28,2015-08-28,"YB","AB","1","Bg","Balanus_glandula","Type 1",35,0.0875,400,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2015-08-28_YB-ABq2",2015-08-28,2015-08-28,"YB","AB","2","Bg","Balanus_glandula","Type 1",32,0.0875,365.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","12%",""
+"2015-08-28_YB-ABq4",2015-08-28,2015-08-28,"YB","AB","4","Bg","Balanus_glandula","Type 1",185,0.0875,2114.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-08-28_YB-ABq1",2015-08-28,2015-08-28,"YB","AB","1","BgD","Balanus_glandula_(dead)","Type 2",10,0.0875,114.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2015-08-28_YB-ABq2",2015-08-28,2015-08-28,"YB","AB","2","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%",""
+"2015-08-28_YB-ABq4",2015-08-28,2015-08-28,"YB","AB","4","BgD","Balanus_glandula_(dead)","Type 2",11,0.0875,125.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-08-28_YB-ABq1",2015-08-28,2015-08-28,"YB","AB","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2015-08-28_YB-ABq2",2015-08-28,2015-08-28,"YB","AB","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%",""
+"2015-08-28_YB-ABq4",2015-08-28,2015-08-28,"YB","AB","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-08-28_YB-ABq1",2015-08-28,2015-08-28,"YB","AB","1","Cth","Chthamalus_dalli","Type 3",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2015-08-28_YB-ABq2",2015-08-28,2015-08-28,"YB","AB","2","Cth","Chthamalus_dalli","Type 3",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","12%",""
+"2015-08-28_YB-ABq4",2015-08-28,2015-08-28,"YB","AB","4","Cth","Chthamalus_dalli","Type 3",9,0.0875,102.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-08-28_YB-ABq1",2015-08-28,2015-08-28,"YB","AB","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2015-08-28_YB-ABq2",2015-08-28,2015-08-28,"YB","AB","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%",""
+"2015-08-28_YB-ABq4",2015-08-28,2015-08-28,"YB","AB","4","CthD","Chthamalus_dalli (dead)","Type 4",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-08-28_YB-ABq1",2015-08-28,2015-08-28,"YB","AB","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2015-08-28_YB-ABq2",2015-08-28,2015-08-28,"YB","AB","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%",""
+"2015-08-28_YB-ABq4",2015-08-28,2015-08-28,"YB","AB","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-08-28_YB-ABq1",2015-08-28,2015-08-28,"YB","AB","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2015-08-28_YB-ABq2",2015-08-28,2015-08-28,"YB","AB","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%",""
+"2015-08-28_YB-ABq4",2015-08-28,2015-08-28,"YB","AB","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-08-28_YB-ABq1",2015-08-28,2015-08-28,"YB","AB","1","Lim","Limpets","Type 12",173,0.0875,1977.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2015-08-28_YB-ABq2",2015-08-28,2015-08-28,"YB","AB","2","Lim","Limpets","Type 12",218,0.0875,2491.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","12%",""
+"2015-08-28_YB-ABq4",2015-08-28,2015-08-28,"YB","AB","4","Lim","Limpets","Type 12",244,0.0875,2788.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-08-28_YB-ABq1",2015-08-28,2015-08-28,"YB","AB","1","Ls","Littorina_sitkana","Type 13",468,0.0875,5348.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2015-08-28_YB-ABq2",2015-08-28,2015-08-28,"YB","AB","2","Ls","Littorina_sitkana","Type 13",386,0.0875,4411.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","12%",""
+"2015-08-28_YB-ABq4",2015-08-28,2015-08-28,"YB","AB","4","Ls","Littorina_sitkana","Type 13",421,0.0875,4811.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-08-28_YB-ABq1",2015-08-28,2015-08-28,"YB","AB","1","Mc","Mytilus_californianus","Type 17",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2015-08-28_YB-ABq2",2015-08-28,2015-08-28,"YB","AB","2","Mc","Mytilus_californianus","Type 17",13,0.0875,148.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","12%",""
+"2015-08-28_YB-ABq4",2015-08-28,2015-08-28,"YB","AB","4","Mc","Mytilus_californianus","Type 17",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-08-28_YB-ABq1",2015-08-28,2015-08-28,"YB","AB","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2015-08-28_YB-ABq2",2015-08-28,2015-08-28,"YB","AB","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%",""
+"2015-08-28_YB-ABq4",2015-08-28,2015-08-28,"YB","AB","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-08-28_YB-ABq1",2015-08-28,2015-08-28,"YB","AB","1","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2015-08-28_YB-ABq2",2015-08-28,2015-08-28,"YB","AB","2","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%",""
+"2015-08-28_YB-ABq4",2015-08-28,2015-08-28,"YB","AB","4","Myt","Mytilus_spp","Type 7",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-08-28_YB-ABq1",2015-08-28,2015-08-28,"YB","AB","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2015-08-28_YB-ABq2",2015-08-28,2015-08-28,"YB","AB","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%",""
+"2015-08-28_YB-ABq4",2015-08-28,2015-08-28,"YB","AB","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-08-28_YB-ABq1",2015-08-28,2015-08-28,"YB","AB","1","Mt","Mytilus_trossulus","Type 15",45,0.0875,514.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2015-08-28_YB-ABq2",2015-08-28,2015-08-28,"YB","AB","2","Mt","Mytilus_trossulus","Type 15",29,0.0875,331.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","12%",""
+"2015-08-28_YB-ABq4",2015-08-28,2015-08-28,"YB","AB","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-08-28_YB-ABq1",2015-08-28,2015-08-28,"YB","AB","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2015-08-28_YB-ABq2",2015-08-28,2015-08-28,"YB","AB","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%",""
+"2015-08-28_YB-ABq4",2015-08-28,2015-08-28,"YB","AB","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-08-28_YB-ABq1",2015-08-28,2015-08-28,"YB","AB","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2015-08-28_YB-ABq2",2015-08-28,2015-08-28,"YB","AB","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%",""
+"2015-08-28_YB-ABq4",2015-08-28,2015-08-28,"YB","AB","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-08-28_YB-ABq1",2015-08-28,2015-08-28,"YB","AB","1","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2015-08-28_YB-ABq2",2015-08-28,2015-08-28,"YB","AB","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%",""
+"2015-08-28_YB-ABq4",2015-08-28,2015-08-28,"YB","AB","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-08-28_YB-ABq1",2015-08-28,2015-08-28,"YB","AB","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2015-08-28_YB-ABq2",2015-08-28,2015-08-28,"YB","AB","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%",""
+"2015-08-28_YB-ABq4",2015-08-28,2015-08-28,"YB","AB","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-08-28_YB-ABq1",2015-08-28,2015-08-28,"YB","AB","1","No","Nucella_ostrina","Type 9",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2015-08-28_YB-ABq2",2015-08-28,2015-08-28,"YB","AB","2","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","12%",""
+"2015-08-28_YB-ABq4",2015-08-28,2015-08-28,"YB","AB","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-08-28_YB-ABq1",2015-08-28,2015-08-28,"YB","AB","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2015-08-28_YB-ABq2",2015-08-28,2015-08-28,"YB","AB","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%",""
+"2015-08-28_YB-ABq4",2015-08-28,2015-08-28,"YB","AB","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-08-28_YB-ABq1",2015-08-28,2015-08-28,"YB","AB","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2015-08-28_YB-ABq2",2015-08-28,2015-08-28,"YB","AB","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%",""
+"2015-08-28_YB-ABq4",2015-08-28,2015-08-28,"YB","AB","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-08-28_YB-ABq1",2015-08-28,2015-08-28,"YB","AB","1","Pp","Pollicipes_polymerus","Type 11",855,0.0875,9771.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2015-08-28_YB-ABq2",2015-08-28,2015-08-28,"YB","AB","2","Pp","Pollicipes_polymerus","Type 11",671,0.0875,7668.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","12%",""
+"2015-08-28_YB-ABq4",2015-08-28,2015-08-28,"YB","AB","4","Pp","Pollicipes_polymerus","Type 11",634,0.0875,7245.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-08-28_YB-ABq1",2015-08-28,2015-08-28,"YB","AB","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2015-08-28_YB-ABq2",2015-08-28,2015-08-28,"YB","AB","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%",""
+"2015-08-28_YB-ABq4",2015-08-28,2015-08-28,"YB","AB","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-08-28_YB-ABq1",2015-08-28,2015-08-28,"YB","AB","1","Sc","Semibalanus_cariosus","Type 5",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2015-08-28_YB-ABq2",2015-08-28,2015-08-28,"YB","AB","2","Sc","Semibalanus_cariosus","Type 5",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","12%",""
+"2015-08-28_YB-ABq4",2015-08-28,2015-08-28,"YB","AB","4","Sc","Semibalanus_cariosus","Type 5",12,0.0875,137.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-08-28_YB-ABq1",2015-08-28,2015-08-28,"YB","AB","1","ScD","Semibalanus_cariosus_(dead)","Type 6",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","3%",""
+"2015-08-28_YB-ABq2",2015-08-28,2015-08-28,"YB","AB","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%",""
+"2015-08-28_YB-ABq4",2015-08-28,2015-08-28,"YB","AB","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%",""
+"2015-08-28_YB-ACq4",2015-08-28,2015-08-28,"YB","AC","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts likely low due to glare."
+"2015-08-28_YB-ACq7",2015-08-28,2015-08-28,"YB","AC","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-08-28_YB-ACq8",2015-08-28,2015-08-28,"YB","AC","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to glare."
+"2015-08-28_YB-ACq4",2015-08-28,2015-08-28,"YB","AC","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts likely low due to glare."
+"2015-08-28_YB-ACq7",2015-08-28,2015-08-28,"YB","AC","7","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-08-28_YB-ACq8",2015-08-28,2015-08-28,"YB","AC","8","Ae","Anemones","Type 14",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to glare."
+"2015-08-28_YB-ACq4",2015-08-28,2015-08-28,"YB","AC","4","Bg","Balanus_glandula","Type 1",241,0.0875,2754.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts likely low due to glare."
+"2015-08-28_YB-ACq7",2015-08-28,2015-08-28,"YB","AC","7","Bg","Balanus_glandula","Type 1",109,0.0875,1245.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-08-28_YB-ACq8",2015-08-28,2015-08-28,"YB","AC","8","Bg","Balanus_glandula","Type 1",30,0.0875,342.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to glare."
+"2015-08-28_YB-ACq4",2015-08-28,2015-08-28,"YB","AC","4","BgD","Balanus_glandula_(dead)","Type 2",68,0.0875,777.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts likely low due to glare."
+"2015-08-28_YB-ACq7",2015-08-28,2015-08-28,"YB","AC","7","BgD","Balanus_glandula_(dead)","Type 2",14,0.0875,160,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-08-28_YB-ACq8",2015-08-28,2015-08-28,"YB","AC","8","BgD","Balanus_glandula_(dead)","Type 2",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to glare."
+"2015-08-28_YB-ACq4",2015-08-28,2015-08-28,"YB","AC","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts likely low due to glare."
+"2015-08-28_YB-ACq7",2015-08-28,2015-08-28,"YB","AC","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-08-28_YB-ACq8",2015-08-28,2015-08-28,"YB","AC","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to glare."
+"2015-08-28_YB-ACq4",2015-08-28,2015-08-28,"YB","AC","4","Cth","Chthamalus_dalli","Type 3",69,0.0875,788.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts likely low due to glare."
+"2015-08-28_YB-ACq7",2015-08-28,2015-08-28,"YB","AC","7","Cth","Chthamalus_dalli","Type 3",93,0.0875,1062.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-08-28_YB-ACq8",2015-08-28,2015-08-28,"YB","AC","8","Cth","Chthamalus_dalli","Type 3",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to glare."
+"2015-08-28_YB-ACq4",2015-08-28,2015-08-28,"YB","AC","4","CthD","Chthamalus_dalli (dead)","Type 4",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts likely low due to glare."
+"2015-08-28_YB-ACq7",2015-08-28,2015-08-28,"YB","AC","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-08-28_YB-ACq8",2015-08-28,2015-08-28,"YB","AC","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to glare."
+"2015-08-28_YB-ACq4",2015-08-28,2015-08-28,"YB","AC","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts likely low due to glare."
+"2015-08-28_YB-ACq7",2015-08-28,2015-08-28,"YB","AC","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-08-28_YB-ACq8",2015-08-28,2015-08-28,"YB","AC","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to glare."
+"2015-08-28_YB-ACq4",2015-08-28,2015-08-28,"YB","AC","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts likely low due to glare."
+"2015-08-28_YB-ACq7",2015-08-28,2015-08-28,"YB","AC","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-08-28_YB-ACq8",2015-08-28,2015-08-28,"YB","AC","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to glare."
+"2015-08-28_YB-ACq4",2015-08-28,2015-08-28,"YB","AC","4","Lim","Limpets","Type 12",443,0.0875,5062.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts likely low due to glare."
+"2015-08-28_YB-ACq7",2015-08-28,2015-08-28,"YB","AC","7","Lim","Limpets","Type 12",297,0.0875,3394.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-08-28_YB-ACq8",2015-08-28,2015-08-28,"YB","AC","8","Lim","Limpets","Type 12",148,0.0875,1691.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to glare."
+"2015-08-28_YB-ACq4",2015-08-28,2015-08-28,"YB","AC","4","Ls","Littorina_sitkana","Type 13",674,0.0875,7702.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts likely low due to glare."
+"2015-08-28_YB-ACq7",2015-08-28,2015-08-28,"YB","AC","7","Ls","Littorina_sitkana","Type 13",532,0.0875,6080,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-08-28_YB-ACq8",2015-08-28,2015-08-28,"YB","AC","8","Ls","Littorina_sitkana","Type 13",423,0.0875,4834.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to glare."
+"2015-08-28_YB-ACq4",2015-08-28,2015-08-28,"YB","AC","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts likely low due to glare."
+"2015-08-28_YB-ACq7",2015-08-28,2015-08-28,"YB","AC","7","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-08-28_YB-ACq8",2015-08-28,2015-08-28,"YB","AC","8","Mc","Mytilus_californianus","Type 17",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to glare."
+"2015-08-28_YB-ACq4",2015-08-28,2015-08-28,"YB","AC","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts likely low due to glare."
+"2015-08-28_YB-ACq7",2015-08-28,2015-08-28,"YB","AC","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-08-28_YB-ACq8",2015-08-28,2015-08-28,"YB","AC","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to glare."
+"2015-08-28_YB-ACq4",2015-08-28,2015-08-28,"YB","AC","4","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts likely low due to glare."
+"2015-08-28_YB-ACq7",2015-08-28,2015-08-28,"YB","AC","7","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-08-28_YB-ACq8",2015-08-28,2015-08-28,"YB","AC","8","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to glare."
+"2015-08-28_YB-ACq4",2015-08-28,2015-08-28,"YB","AC","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts likely low due to glare."
+"2015-08-28_YB-ACq7",2015-08-28,2015-08-28,"YB","AC","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-08-28_YB-ACq8",2015-08-28,2015-08-28,"YB","AC","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to glare."
+"2015-08-28_YB-ACq4",2015-08-28,2015-08-28,"YB","AC","4","Mt","Mytilus_trossulus","Type 15",95,0.0875,1085.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts likely low due to glare."
+"2015-08-28_YB-ACq7",2015-08-28,2015-08-28,"YB","AC","7","Mt","Mytilus_trossulus","Type 15",30,0.0875,342.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-08-28_YB-ACq8",2015-08-28,2015-08-28,"YB","AC","8","Mt","Mytilus_trossulus","Type 15",24,0.0875,274.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to glare."
+"2015-08-28_YB-ACq4",2015-08-28,2015-08-28,"YB","AC","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts likely low due to glare."
+"2015-08-28_YB-ACq7",2015-08-28,2015-08-28,"YB","AC","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-08-28_YB-ACq8",2015-08-28,2015-08-28,"YB","AC","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to glare."
+"2015-08-28_YB-ACq4",2015-08-28,2015-08-28,"YB","AC","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts likely low due to glare."
+"2015-08-28_YB-ACq7",2015-08-28,2015-08-28,"YB","AC","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-08-28_YB-ACq8",2015-08-28,2015-08-28,"YB","AC","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to glare."
+"2015-08-28_YB-ACq4",2015-08-28,2015-08-28,"YB","AC","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts likely low due to glare."
+"2015-08-28_YB-ACq7",2015-08-28,2015-08-28,"YB","AC","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-08-28_YB-ACq8",2015-08-28,2015-08-28,"YB","AC","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to glare."
+"2015-08-28_YB-ACq4",2015-08-28,2015-08-28,"YB","AC","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts likely low due to glare."
+"2015-08-28_YB-ACq7",2015-08-28,2015-08-28,"YB","AC","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-08-28_YB-ACq8",2015-08-28,2015-08-28,"YB","AC","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to glare."
+"2015-08-28_YB-ACq4",2015-08-28,2015-08-28,"YB","AC","4","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts likely low due to glare."
+"2015-08-28_YB-ACq7",2015-08-28,2015-08-28,"YB","AC","7","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-08-28_YB-ACq8",2015-08-28,2015-08-28,"YB","AC","8","No","Nucella_ostrina","Type 9",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to glare."
+"2015-08-28_YB-ACq4",2015-08-28,2015-08-28,"YB","AC","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts likely low due to glare."
+"2015-08-28_YB-ACq7",2015-08-28,2015-08-28,"YB","AC","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-08-28_YB-ACq8",2015-08-28,2015-08-28,"YB","AC","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to glare."
+"2015-08-28_YB-ACq4",2015-08-28,2015-08-28,"YB","AC","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts likely low due to glare."
+"2015-08-28_YB-ACq7",2015-08-28,2015-08-28,"YB","AC","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-08-28_YB-ACq8",2015-08-28,2015-08-28,"YB","AC","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to glare."
+"2015-08-28_YB-ACq4",2015-08-28,2015-08-28,"YB","AC","4","Pp","Pollicipes_polymerus","Type 11",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts likely low due to glare."
+"2015-08-28_YB-ACq7",2015-08-28,2015-08-28,"YB","AC","7","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-08-28_YB-ACq8",2015-08-28,2015-08-28,"YB","AC","8","Pp","Pollicipes_polymerus","Type 11",69,0.0875,788.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to glare."
+"2015-08-28_YB-ACq4",2015-08-28,2015-08-28,"YB","AC","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts likely low due to glare."
+"2015-08-28_YB-ACq7",2015-08-28,2015-08-28,"YB","AC","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-08-28_YB-ACq8",2015-08-28,2015-08-28,"YB","AC","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to glare."
+"2015-08-28_YB-ACq4",2015-08-28,2015-08-28,"YB","AC","4","Sc","Semibalanus_cariosus","Type 5",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts likely low due to glare."
+"2015-08-28_YB-ACq7",2015-08-28,2015-08-28,"YB","AC","7","Sc","Semibalanus_cariosus","Type 5",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-08-28_YB-ACq8",2015-08-28,2015-08-28,"YB","AC","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to glare."
+"2015-08-28_YB-ACq4",2015-08-28,2015-08-28,"YB","AC","4","ScD","Semibalanus_cariosus_(dead)","Type 6",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts likely low due to glare."
+"2015-08-28_YB-ACq7",2015-08-28,2015-08-28,"YB","AC","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-08-28_YB-ACq8",2015-08-28,2015-08-28,"YB","AC","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to glare."
+"2015-08-28_YB-ADq1",2015-08-28,2015-08-28,"YB","AD","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","8%","Counts likely low due to glare."
+"2015-08-28_YB-ADq5",2015-08-28,2015-08-28,"YB","AD","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Counts likely low due to glare."
+"2015-08-28_YB-ADq8",2015-08-28,2015-08-28,"YB","AD","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2015-08-28_YB-ADq1",2015-08-28,2015-08-28,"YB","AD","1","Ae","Anemones","Type 14",12,0.0875,137.142857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","8%","Counts likely low due to glare."
+"2015-08-28_YB-ADq5",2015-08-28,2015-08-28,"YB","AD","5","Ae","Anemones","Type 14",91,0.0875,1040,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Counts likely low due to glare."
+"2015-08-28_YB-ADq8",2015-08-28,2015-08-28,"YB","AD","8","Ae","Anemones","Type 14",89,0.0875,1017.14285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2015-08-28_YB-ADq1",2015-08-28,2015-08-28,"YB","AD","1","Bg","Balanus_glandula","Type 1",966,0.015625,61824,"c","Beatriz Vaca","Finished","Full","Cropped","8%","Counts likely low due to glare."
+"2015-08-28_YB-ADq5",2015-08-28,2015-08-28,"YB","AD","5","Bg","Balanus_glandula","Type 1",312,0.015625,19968,"c","Beatriz Vaca","Finished","Full","Cropped","10%","Counts likely low due to glare."
+"2015-08-28_YB-ADq8",2015-08-28,2015-08-28,"YB","AD","8","Bg","Balanus_glandula","Type 1",460,0.015625,29440,"c","Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2015-08-28_YB-ADq1",2015-08-28,2015-08-28,"YB","AD","1","BgD","Balanus_glandula_(dead)","Type 2",1,0.015625,64,"c","Beatriz Vaca","Finished","Full","Cropped","8%","Counts likely low due to glare."
+"2015-08-28_YB-ADq5",2015-08-28,2015-08-28,"YB","AD","5","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","10%","Counts likely low due to glare."
+"2015-08-28_YB-ADq8",2015-08-28,2015-08-28,"YB","AD","8","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2015-08-28_YB-ADq1",2015-08-28,2015-08-28,"YB","AD","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","8%","Counts likely low due to glare."
+"2015-08-28_YB-ADq5",2015-08-28,2015-08-28,"YB","AD","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Counts likely low due to glare."
+"2015-08-28_YB-ADq8",2015-08-28,2015-08-28,"YB","AD","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2015-08-28_YB-ADq1",2015-08-28,2015-08-28,"YB","AD","1","Cth","Chthamalus_dalli","Type 3",7,0.015625,448,"c","Beatriz Vaca","Finished","Full","Cropped","8%","Counts likely low due to glare."
+"2015-08-28_YB-ADq5",2015-08-28,2015-08-28,"YB","AD","5","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","10%","Counts likely low due to glare."
+"2015-08-28_YB-ADq8",2015-08-28,2015-08-28,"YB","AD","8","Cth","Chthamalus_dalli","Type 3",34,0.015625,2176,"c","Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2015-08-28_YB-ADq1",2015-08-28,2015-08-28,"YB","AD","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","8%","Counts likely low due to glare."
+"2015-08-28_YB-ADq5",2015-08-28,2015-08-28,"YB","AD","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","10%","Counts likely low due to glare."
+"2015-08-28_YB-ADq8",2015-08-28,2015-08-28,"YB","AD","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2015-08-28_YB-ADq1",2015-08-28,2015-08-28,"YB","AD","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","8%","Counts likely low due to glare."
+"2015-08-28_YB-ADq5",2015-08-28,2015-08-28,"YB","AD","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Counts likely low due to glare."
+"2015-08-28_YB-ADq8",2015-08-28,2015-08-28,"YB","AD","8","Emp","Emplectonema worm","Type 23",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2015-08-28_YB-ADq1",2015-08-28,2015-08-28,"YB","AD","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","8%","Counts likely low due to glare."
+"2015-08-28_YB-ADq5",2015-08-28,2015-08-28,"YB","AD","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Counts likely low due to glare."
+"2015-08-28_YB-ADq8",2015-08-28,2015-08-28,"YB","AD","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2015-08-28_YB-ADq1",2015-08-28,2015-08-28,"YB","AD","1","Lim","Limpets","Type 12",126,0.0875,1440,NA,"Beatriz Vaca","Finished","Full","Cropped","8%","Counts likely low due to glare."
+"2015-08-28_YB-ADq5",2015-08-28,2015-08-28,"YB","AD","5","Lim","Limpets","Type 12",123,0.0875,1405.71428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Counts likely low due to glare."
+"2015-08-28_YB-ADq8",2015-08-28,2015-08-28,"YB","AD","8","Lim","Limpets","Type 12",383,0.0875,4377.14285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2015-08-28_YB-ADq1",2015-08-28,2015-08-28,"YB","AD","1","Ls","Littorina_sitkana","Type 13",369,0.0875,4217.14285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","8%","Counts likely low due to glare."
+"2015-08-28_YB-ADq5",2015-08-28,2015-08-28,"YB","AD","5","Ls","Littorina_sitkana","Type 13",233,0.0875,2662.85714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Counts likely low due to glare."
+"2015-08-28_YB-ADq8",2015-08-28,2015-08-28,"YB","AD","8","Ls","Littorina_sitkana","Type 13",327,0.0875,3737.14285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2015-08-28_YB-ADq1",2015-08-28,2015-08-28,"YB","AD","1","Mc","Mytilus_californianus","Type 17",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","8%","Counts likely low due to glare."
+"2015-08-28_YB-ADq5",2015-08-28,2015-08-28,"YB","AD","5","Mc","Mytilus_californianus","Type 17",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Counts likely low due to glare."
+"2015-08-28_YB-ADq8",2015-08-28,2015-08-28,"YB","AD","8","Mc","Mytilus_californianus","Type 17",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2015-08-28_YB-ADq1",2015-08-28,2015-08-28,"YB","AD","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","8%","Counts likely low due to glare."
+"2015-08-28_YB-ADq5",2015-08-28,2015-08-28,"YB","AD","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Counts likely low due to glare."
+"2015-08-28_YB-ADq8",2015-08-28,2015-08-28,"YB","AD","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2015-08-28_YB-ADq1",2015-08-28,2015-08-28,"YB","AD","1","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","8%","Counts likely low due to glare."
+"2015-08-28_YB-ADq5",2015-08-28,2015-08-28,"YB","AD","5","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Counts likely low due to glare."
+"2015-08-28_YB-ADq8",2015-08-28,2015-08-28,"YB","AD","8","Myt","Mytilus_spp","Type 7",66,0.0875,754.285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2015-08-28_YB-ADq1",2015-08-28,2015-08-28,"YB","AD","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","8%","Counts likely low due to glare."
+"2015-08-28_YB-ADq5",2015-08-28,2015-08-28,"YB","AD","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Counts likely low due to glare."
+"2015-08-28_YB-ADq8",2015-08-28,2015-08-28,"YB","AD","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2015-08-28_YB-ADq1",2015-08-28,2015-08-28,"YB","AD","1","Mt","Mytilus_trossulus","Type 15",96,0.0875,1097.14285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","8%","Counts likely low due to glare."
+"2015-08-28_YB-ADq5",2015-08-28,2015-08-28,"YB","AD","5","Mt","Mytilus_trossulus","Type 15",32,0.0875,365.714285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Counts likely low due to glare."
+"2015-08-28_YB-ADq8",2015-08-28,2015-08-28,"YB","AD","8","Mt","Mytilus_trossulus","Type 15",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2015-08-28_YB-ADq1",2015-08-28,2015-08-28,"YB","AD","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","8%","Counts likely low due to glare."
+"2015-08-28_YB-ADq5",2015-08-28,2015-08-28,"YB","AD","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Counts likely low due to glare."
+"2015-08-28_YB-ADq8",2015-08-28,2015-08-28,"YB","AD","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2015-08-28_YB-ADq1",2015-08-28,2015-08-28,"YB","AD","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","8%","Counts likely low due to glare."
+"2015-08-28_YB-ADq5",2015-08-28,2015-08-28,"YB","AD","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Counts likely low due to glare."
+"2015-08-28_YB-ADq8",2015-08-28,2015-08-28,"YB","AD","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2015-08-28_YB-ADq1",2015-08-28,2015-08-28,"YB","AD","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","8%","Counts likely low due to glare."
+"2015-08-28_YB-ADq5",2015-08-28,2015-08-28,"YB","AD","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Counts likely low due to glare."
+"2015-08-28_YB-ADq8",2015-08-28,2015-08-28,"YB","AD","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2015-08-28_YB-ADq1",2015-08-28,2015-08-28,"YB","AD","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","8%","Counts likely low due to glare."
+"2015-08-28_YB-ADq5",2015-08-28,2015-08-28,"YB","AD","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Counts likely low due to glare."
+"2015-08-28_YB-ADq8",2015-08-28,2015-08-28,"YB","AD","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2015-08-28_YB-ADq1",2015-08-28,2015-08-28,"YB","AD","1","No","Nucella_ostrina","Type 9",11,0.0875,125.714285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","8%","Counts likely low due to glare."
+"2015-08-28_YB-ADq5",2015-08-28,2015-08-28,"YB","AD","5","No","Nucella_ostrina","Type 9",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Counts likely low due to glare."
+"2015-08-28_YB-ADq8",2015-08-28,2015-08-28,"YB","AD","8","No","Nucella_ostrina","Type 9",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2015-08-28_YB-ADq1",2015-08-28,2015-08-28,"YB","AD","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","8%","Counts likely low due to glare."
+"2015-08-28_YB-ADq5",2015-08-28,2015-08-28,"YB","AD","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Counts likely low due to glare."
+"2015-08-28_YB-ADq8",2015-08-28,2015-08-28,"YB","AD","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2015-08-28_YB-ADq1",2015-08-28,2015-08-28,"YB","AD","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","8%","Counts likely low due to glare."
+"2015-08-28_YB-ADq5",2015-08-28,2015-08-28,"YB","AD","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Counts likely low due to glare."
+"2015-08-28_YB-ADq8",2015-08-28,2015-08-28,"YB","AD","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2015-08-28_YB-ADq1",2015-08-28,2015-08-28,"YB","AD","1","Pp","Pollicipes_polymerus","Type 11",476,0.0875,5440,NA,"Beatriz Vaca","Finished","Full","Cropped","8%","Counts likely low due to glare."
+"2015-08-28_YB-ADq5",2015-08-28,2015-08-28,"YB","AD","5","Pp","Pollicipes_polymerus","Type 11",840,0.0875,9600,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Counts likely low due to glare."
+"2015-08-28_YB-ADq8",2015-08-28,2015-08-28,"YB","AD","8","Pp","Pollicipes_polymerus","Type 11",334,0.0875,3817.14285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2015-08-28_YB-ADq1",2015-08-28,2015-08-28,"YB","AD","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","8%","Counts likely low due to glare."
+"2015-08-28_YB-ADq5",2015-08-28,2015-08-28,"YB","AD","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Counts likely low due to glare."
+"2015-08-28_YB-ADq8",2015-08-28,2015-08-28,"YB","AD","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2015-08-28_YB-ADq1",2015-08-28,2015-08-28,"YB","AD","1","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","8%","Counts likely low due to glare."
+"2015-08-28_YB-ADq5",2015-08-28,2015-08-28,"YB","AD","5","Sc","Semibalanus_cariosus","Type 5",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Counts likely low due to glare."
+"2015-08-28_YB-ADq8",2015-08-28,2015-08-28,"YB","AD","8","Sc","Semibalanus_cariosus","Type 5",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2015-08-28_YB-ADq1",2015-08-28,2015-08-28,"YB","AD","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","8%","Counts likely low due to glare."
+"2015-08-28_YB-ADq5",2015-08-28,2015-08-28,"YB","AD","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","10%","Counts likely low due to glare."
+"2015-08-28_YB-ADq8",2015-08-28,2015-08-28,"YB","AD","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2015-08-28_YB-AEq1",2015-08-28,2015-08-28,"YB","AE","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-08-28_YB-AEq4",2015-08-28,2015-08-28,"YB","AE","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts likely low due to lots of glare."
+"2015-08-28_YB-AEq8",2015-08-28,2015-08-28,"YB","AE","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to lots of glare."
+"2015-08-28_YB-AEq1",2015-08-28,2015-08-28,"YB","AE","1","Ae","Anemones","Type 14",36,0.0875,411.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-08-28_YB-AEq4",2015-08-28,2015-08-28,"YB","AE","4","Ae","Anemones","Type 14",17,0.0875,194.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts likely low due to lots of glare."
+"2015-08-28_YB-AEq8",2015-08-28,2015-08-28,"YB","AE","8","Ae","Anemones","Type 14",23,0.0875,262.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to lots of glare."
+"2015-08-28_YB-AEq1",2015-08-28,2015-08-28,"YB","AE","1","Bg","Balanus_glandula","Type 1",115,0.0875,1314.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-08-28_YB-AEq4",2015-08-28,2015-08-28,"YB","AE","4","Bg","Balanus_glandula","Type 1",178,0.0875,2034.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts likely low due to lots of glare."
+"2015-08-28_YB-AEq8",2015-08-28,2015-08-28,"YB","AE","8","Bg","Balanus_glandula","Type 1",144,0.0875,1645.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to lots of glare."
+"2015-08-28_YB-AEq1",2015-08-28,2015-08-28,"YB","AE","1","BgD","Balanus_glandula_(dead)","Type 2",29,0.0875,331.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-08-28_YB-AEq4",2015-08-28,2015-08-28,"YB","AE","4","BgD","Balanus_glandula_(dead)","Type 2",17,0.0875,194.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts likely low due to lots of glare."
+"2015-08-28_YB-AEq8",2015-08-28,2015-08-28,"YB","AE","8","BgD","Balanus_glandula_(dead)","Type 2",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to lots of glare."
+"2015-08-28_YB-AEq1",2015-08-28,2015-08-28,"YB","AE","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-08-28_YB-AEq4",2015-08-28,2015-08-28,"YB","AE","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts likely low due to lots of glare."
+"2015-08-28_YB-AEq8",2015-08-28,2015-08-28,"YB","AE","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to lots of glare."
+"2015-08-28_YB-AEq1",2015-08-28,2015-08-28,"YB","AE","1","Cth","Chthamalus_dalli","Type 3",54,0.0875,617.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-08-28_YB-AEq4",2015-08-28,2015-08-28,"YB","AE","4","Cth","Chthamalus_dalli","Type 3",105,0.0875,1200,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts likely low due to lots of glare."
+"2015-08-28_YB-AEq8",2015-08-28,2015-08-28,"YB","AE","8","Cth","Chthamalus_dalli","Type 3",48,0.0875,548.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to lots of glare."
+"2015-08-28_YB-AEq1",2015-08-28,2015-08-28,"YB","AE","1","CthD","Chthamalus_dalli (dead)","Type 4",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-08-28_YB-AEq4",2015-08-28,2015-08-28,"YB","AE","4","CthD","Chthamalus_dalli (dead)","Type 4",9,0.0875,102.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts likely low due to lots of glare."
+"2015-08-28_YB-AEq8",2015-08-28,2015-08-28,"YB","AE","8","CthD","Chthamalus_dalli (dead)","Type 4",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to lots of glare."
+"2015-08-28_YB-AEq1",2015-08-28,2015-08-28,"YB","AE","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-08-28_YB-AEq4",2015-08-28,2015-08-28,"YB","AE","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts likely low due to lots of glare."
+"2015-08-28_YB-AEq8",2015-08-28,2015-08-28,"YB","AE","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to lots of glare."
+"2015-08-28_YB-AEq1",2015-08-28,2015-08-28,"YB","AE","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-08-28_YB-AEq4",2015-08-28,2015-08-28,"YB","AE","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts likely low due to lots of glare."
+"2015-08-28_YB-AEq8",2015-08-28,2015-08-28,"YB","AE","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to lots of glare."
+"2015-08-28_YB-AEq1",2015-08-28,2015-08-28,"YB","AE","1","Lim","Limpets","Type 12",90,0.0875,1028.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-08-28_YB-AEq4",2015-08-28,2015-08-28,"YB","AE","4","Lim","Limpets","Type 12",236,0.0875,2697.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts likely low due to lots of glare."
+"2015-08-28_YB-AEq8",2015-08-28,2015-08-28,"YB","AE","8","Lim","Limpets","Type 12",208,0.0875,2377.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to lots of glare."
+"2015-08-28_YB-AEq1",2015-08-28,2015-08-28,"YB","AE","1","Ls","Littorina_sitkana","Type 13",158,0.0875,1805.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-08-28_YB-AEq4",2015-08-28,2015-08-28,"YB","AE","4","Ls","Littorina_sitkana","Type 13",95,0.0875,1085.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts likely low due to lots of glare."
+"2015-08-28_YB-AEq8",2015-08-28,2015-08-28,"YB","AE","8","Ls","Littorina_sitkana","Type 13",221,0.0875,2525.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to lots of glare."
+"2015-08-28_YB-AEq1",2015-08-28,2015-08-28,"YB","AE","1","Mc","Mytilus_californianus","Type 17",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-08-28_YB-AEq4",2015-08-28,2015-08-28,"YB","AE","4","Mc","Mytilus_californianus","Type 17",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts likely low due to lots of glare."
+"2015-08-28_YB-AEq8",2015-08-28,2015-08-28,"YB","AE","8","Mc","Mytilus_californianus","Type 17",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to lots of glare."
+"2015-08-28_YB-AEq1",2015-08-28,2015-08-28,"YB","AE","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-08-28_YB-AEq4",2015-08-28,2015-08-28,"YB","AE","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts likely low due to lots of glare."
+"2015-08-28_YB-AEq8",2015-08-28,2015-08-28,"YB","AE","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to lots of glare."
+"2015-08-28_YB-AEq1",2015-08-28,2015-08-28,"YB","AE","1","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-08-28_YB-AEq4",2015-08-28,2015-08-28,"YB","AE","4","Myt","Mytilus_spp","Type 7",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts likely low due to lots of glare."
+"2015-08-28_YB-AEq8",2015-08-28,2015-08-28,"YB","AE","8","Myt","Mytilus_spp","Type 7",43,0.0875,491.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to lots of glare."
+"2015-08-28_YB-AEq1",2015-08-28,2015-08-28,"YB","AE","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-08-28_YB-AEq4",2015-08-28,2015-08-28,"YB","AE","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts likely low due to lots of glare."
+"2015-08-28_YB-AEq8",2015-08-28,2015-08-28,"YB","AE","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to lots of glare."
+"2015-08-28_YB-AEq1",2015-08-28,2015-08-28,"YB","AE","1","Mt","Mytilus_trossulus","Type 15",24,0.0875,274.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-08-28_YB-AEq4",2015-08-28,2015-08-28,"YB","AE","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts likely low due to lots of glare."
+"2015-08-28_YB-AEq8",2015-08-28,2015-08-28,"YB","AE","8","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to lots of glare."
+"2015-08-28_YB-AEq1",2015-08-28,2015-08-28,"YB","AE","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-08-28_YB-AEq4",2015-08-28,2015-08-28,"YB","AE","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts likely low due to lots of glare."
+"2015-08-28_YB-AEq8",2015-08-28,2015-08-28,"YB","AE","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to lots of glare."
+"2015-08-28_YB-AEq1",2015-08-28,2015-08-28,"YB","AE","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-08-28_YB-AEq4",2015-08-28,2015-08-28,"YB","AE","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts likely low due to lots of glare."
+"2015-08-28_YB-AEq8",2015-08-28,2015-08-28,"YB","AE","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to lots of glare."
+"2015-08-28_YB-AEq1",2015-08-28,2015-08-28,"YB","AE","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-08-28_YB-AEq4",2015-08-28,2015-08-28,"YB","AE","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts likely low due to lots of glare."
+"2015-08-28_YB-AEq8",2015-08-28,2015-08-28,"YB","AE","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to lots of glare."
+"2015-08-28_YB-AEq1",2015-08-28,2015-08-28,"YB","AE","1","Negg","Nucella_eggs","Type 26",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-08-28_YB-AEq4",2015-08-28,2015-08-28,"YB","AE","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts likely low due to lots of glare."
+"2015-08-28_YB-AEq8",2015-08-28,2015-08-28,"YB","AE","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to lots of glare."
+"2015-08-28_YB-AEq1",2015-08-28,2015-08-28,"YB","AE","1","No","Nucella_ostrina","Type 9",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-08-28_YB-AEq4",2015-08-28,2015-08-28,"YB","AE","4","No","Nucella_ostrina","Type 9",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts likely low due to lots of glare."
+"2015-08-28_YB-AEq8",2015-08-28,2015-08-28,"YB","AE","8","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to lots of glare."
+"2015-08-28_YB-AEq1",2015-08-28,2015-08-28,"YB","AE","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-08-28_YB-AEq4",2015-08-28,2015-08-28,"YB","AE","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts likely low due to lots of glare."
+"2015-08-28_YB-AEq8",2015-08-28,2015-08-28,"YB","AE","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to lots of glare."
+"2015-08-28_YB-AEq1",2015-08-28,2015-08-28,"YB","AE","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-08-28_YB-AEq4",2015-08-28,2015-08-28,"YB","AE","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts likely low due to lots of glare."
+"2015-08-28_YB-AEq8",2015-08-28,2015-08-28,"YB","AE","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to lots of glare."
+"2015-08-28_YB-AEq1",2015-08-28,2015-08-28,"YB","AE","1","Pp","Pollicipes_polymerus","Type 11",145,0.0875,1657.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-08-28_YB-AEq4",2015-08-28,2015-08-28,"YB","AE","4","Pp","Pollicipes_polymerus","Type 11",48,0.0875,548.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts likely low due to lots of glare."
+"2015-08-28_YB-AEq8",2015-08-28,2015-08-28,"YB","AE","8","Pp","Pollicipes_polymerus","Type 11",18,0.0875,205.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to lots of glare."
+"2015-08-28_YB-AEq1",2015-08-28,2015-08-28,"YB","AE","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-08-28_YB-AEq4",2015-08-28,2015-08-28,"YB","AE","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts likely low due to lots of glare."
+"2015-08-28_YB-AEq8",2015-08-28,2015-08-28,"YB","AE","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to lots of glare."
+"2015-08-28_YB-AEq1",2015-08-28,2015-08-28,"YB","AE","1","Sc","Semibalanus_cariosus","Type 5",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-08-28_YB-AEq4",2015-08-28,2015-08-28,"YB","AE","4","Sc","Semibalanus_cariosus","Type 5",16,0.0875,182.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts likely low due to lots of glare."
+"2015-08-28_YB-AEq8",2015-08-28,2015-08-28,"YB","AE","8","Sc","Semibalanus_cariosus","Type 5",16,0.0875,182.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to lots of glare."
+"2015-08-28_YB-AEq1",2015-08-28,2015-08-28,"YB","AE","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts likely low due to glare."
+"2015-08-28_YB-AEq4",2015-08-28,2015-08-28,"YB","AE","4","ScD","Semibalanus_cariosus_(dead)","Type 6",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts likely low due to lots of glare."
+"2015-08-28_YB-AEq8",2015-08-28,2015-08-28,"YB","AE","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to lots of glare."
+"2015-08-28_YB-AFq5",2015-08-28,2015-08-28,"YB","AF","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-08-28_YB-AFq8",2015-08-28,2015-08-28,"YB","AF","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to blur, glare, and algae."
+"2015-08-28_YB-AFq9",2015-08-28,2015-08-28,"YB","AF","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare"
+"2015-08-28_YB-AFq5",2015-08-28,2015-08-28,"YB","AF","5","Ae","Anemones","Type 14",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-08-28_YB-AFq8",2015-08-28,2015-08-28,"YB","AF","8","Ae","Anemones","Type 14",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to blur, glare, and algae."
+"2015-08-28_YB-AFq9",2015-08-28,2015-08-28,"YB","AF","9","Ae","Anemones","Type 14",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare"
+"2015-08-28_YB-AFq5",2015-08-28,2015-08-28,"YB","AF","5","Bg","Balanus_glandula","Type 1",446,0.0875,5097.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-08-28_YB-AFq8",2015-08-28,2015-08-28,"YB","AF","8","Bg","Balanus_glandula","Type 1",1298,0.0875,14834.2857142857,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to blur, glare, and algae."
+"2015-08-28_YB-AFq9",2015-08-28,2015-08-28,"YB","AF","9","Bg","Balanus_glandula","Type 1",891,0.015625,57024,"c","Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare"
+"2015-08-28_YB-AFq5",2015-08-28,2015-08-28,"YB","AF","5","BgD","Balanus_glandula_(dead)","Type 2",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-08-28_YB-AFq8",2015-08-28,2015-08-28,"YB","AF","8","BgD","Balanus_glandula_(dead)","Type 2",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to blur, glare, and algae."
+"2015-08-28_YB-AFq9",2015-08-28,2015-08-28,"YB","AF","9","BgD","Balanus_glandula_(dead)","Type 2",3,0.015625,192,"c","Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare"
+"2015-08-28_YB-AFq5",2015-08-28,2015-08-28,"YB","AF","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-08-28_YB-AFq8",2015-08-28,2015-08-28,"YB","AF","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to blur, glare, and algae."
+"2015-08-28_YB-AFq9",2015-08-28,2015-08-28,"YB","AF","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare"
+"2015-08-28_YB-AFq5",2015-08-28,2015-08-28,"YB","AF","5","Cth","Chthamalus_dalli","Type 3",590,0.0875,6742.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-08-28_YB-AFq8",2015-08-28,2015-08-28,"YB","AF","8","Cth","Chthamalus_dalli","Type 3",2604,0.0875,29760,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to blur, glare, and algae."
+"2015-08-28_YB-AFq9",2015-08-28,2015-08-28,"YB","AF","9","Cth","Chthamalus_dalli","Type 3",4,0.015625,256,"c","Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare"
+"2015-08-28_YB-AFq5",2015-08-28,2015-08-28,"YB","AF","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-08-28_YB-AFq8",2015-08-28,2015-08-28,"YB","AF","8","CthD","Chthamalus_dalli (dead)","Type 4",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to blur, glare, and algae."
+"2015-08-28_YB-AFq9",2015-08-28,2015-08-28,"YB","AF","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare"
+"2015-08-28_YB-AFq5",2015-08-28,2015-08-28,"YB","AF","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-08-28_YB-AFq8",2015-08-28,2015-08-28,"YB","AF","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to blur, glare, and algae."
+"2015-08-28_YB-AFq9",2015-08-28,2015-08-28,"YB","AF","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare"
+"2015-08-28_YB-AFq5",2015-08-28,2015-08-28,"YB","AF","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-08-28_YB-AFq8",2015-08-28,2015-08-28,"YB","AF","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to blur, glare, and algae."
+"2015-08-28_YB-AFq9",2015-08-28,2015-08-28,"YB","AF","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare"
+"2015-08-28_YB-AFq5",2015-08-28,2015-08-28,"YB","AF","5","Lim","Limpets","Type 12",85,0.0875,971.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-08-28_YB-AFq8",2015-08-28,2015-08-28,"YB","AF","8","Lim","Limpets","Type 12",115,0.0875,1314.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to blur, glare, and algae."
+"2015-08-28_YB-AFq9",2015-08-28,2015-08-28,"YB","AF","9","Lim","Limpets","Type 12",50,0.0875,571.428571428571,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare"
+"2015-08-28_YB-AFq5",2015-08-28,2015-08-28,"YB","AF","5","Ls","Littorina_sitkana","Type 13",279,0.0875,3188.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-08-28_YB-AFq8",2015-08-28,2015-08-28,"YB","AF","8","Ls","Littorina_sitkana","Type 13",973,0.0875,11120,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to blur, glare, and algae."
+"2015-08-28_YB-AFq9",2015-08-28,2015-08-28,"YB","AF","9","Ls","Littorina_sitkana","Type 13",384,0.0875,4388.57142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare"
+"2015-08-28_YB-AFq5",2015-08-28,2015-08-28,"YB","AF","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-08-28_YB-AFq8",2015-08-28,2015-08-28,"YB","AF","8","Mc","Mytilus_californianus","Type 17",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to blur, glare, and algae."
+"2015-08-28_YB-AFq9",2015-08-28,2015-08-28,"YB","AF","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare"
+"2015-08-28_YB-AFq5",2015-08-28,2015-08-28,"YB","AF","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-08-28_YB-AFq8",2015-08-28,2015-08-28,"YB","AF","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to blur, glare, and algae."
+"2015-08-28_YB-AFq9",2015-08-28,2015-08-28,"YB","AF","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare"
+"2015-08-28_YB-AFq5",2015-08-28,2015-08-28,"YB","AF","5","Myt","Mytilus_spp","Type 7",17,0.0875,194.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-08-28_YB-AFq8",2015-08-28,2015-08-28,"YB","AF","8","Myt","Mytilus_spp","Type 7",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to blur, glare, and algae."
+"2015-08-28_YB-AFq9",2015-08-28,2015-08-28,"YB","AF","9","Myt","Mytilus_spp","Type 7",5,0.0875,57.1428571428571,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare"
+"2015-08-28_YB-AFq5",2015-08-28,2015-08-28,"YB","AF","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-08-28_YB-AFq8",2015-08-28,2015-08-28,"YB","AF","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to blur, glare, and algae."
+"2015-08-28_YB-AFq9",2015-08-28,2015-08-28,"YB","AF","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare"
+"2015-08-28_YB-AFq5",2015-08-28,2015-08-28,"YB","AF","5","Mt","Mytilus_trossulus","Type 15",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-08-28_YB-AFq8",2015-08-28,2015-08-28,"YB","AF","8","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to blur, glare, and algae."
+"2015-08-28_YB-AFq9",2015-08-28,2015-08-28,"YB","AF","9","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare"
+"2015-08-28_YB-AFq5",2015-08-28,2015-08-28,"YB","AF","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-08-28_YB-AFq8",2015-08-28,2015-08-28,"YB","AF","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to blur, glare, and algae."
+"2015-08-28_YB-AFq9",2015-08-28,2015-08-28,"YB","AF","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare"
+"2015-08-28_YB-AFq5",2015-08-28,2015-08-28,"YB","AF","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-08-28_YB-AFq8",2015-08-28,2015-08-28,"YB","AF","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to blur, glare, and algae."
+"2015-08-28_YB-AFq9",2015-08-28,2015-08-28,"YB","AF","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare"
+"2015-08-28_YB-AFq5",2015-08-28,2015-08-28,"YB","AF","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-08-28_YB-AFq8",2015-08-28,2015-08-28,"YB","AF","8","Nc","Nucella_canaliculata","Type 10",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to blur, glare, and algae."
+"2015-08-28_YB-AFq9",2015-08-28,2015-08-28,"YB","AF","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare"
+"2015-08-28_YB-AFq5",2015-08-28,2015-08-28,"YB","AF","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-08-28_YB-AFq8",2015-08-28,2015-08-28,"YB","AF","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to blur, glare, and algae."
+"2015-08-28_YB-AFq9",2015-08-28,2015-08-28,"YB","AF","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare"
+"2015-08-28_YB-AFq5",2015-08-28,2015-08-28,"YB","AF","5","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-08-28_YB-AFq8",2015-08-28,2015-08-28,"YB","AF","8","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to blur, glare, and algae."
+"2015-08-28_YB-AFq9",2015-08-28,2015-08-28,"YB","AF","9","No","Nucella_ostrina","Type 9",7,0.0875,80,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare"
+"2015-08-28_YB-AFq5",2015-08-28,2015-08-28,"YB","AF","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-08-28_YB-AFq8",2015-08-28,2015-08-28,"YB","AF","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to blur, glare, and algae."
+"2015-08-28_YB-AFq9",2015-08-28,2015-08-28,"YB","AF","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare"
+"2015-08-28_YB-AFq5",2015-08-28,2015-08-28,"YB","AF","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-08-28_YB-AFq8",2015-08-28,2015-08-28,"YB","AF","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to blur, glare, and algae."
+"2015-08-28_YB-AFq9",2015-08-28,2015-08-28,"YB","AF","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare"
+"2015-08-28_YB-AFq5",2015-08-28,2015-08-28,"YB","AF","5","Pp","Pollicipes_polymerus","Type 11",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-08-28_YB-AFq8",2015-08-28,2015-08-28,"YB","AF","8","Pp","Pollicipes_polymerus","Type 11",72,0.0875,822.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to blur, glare, and algae."
+"2015-08-28_YB-AFq9",2015-08-28,2015-08-28,"YB","AF","9","Pp","Pollicipes_polymerus","Type 11",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare"
+"2015-08-28_YB-AFq5",2015-08-28,2015-08-28,"YB","AF","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-08-28_YB-AFq8",2015-08-28,2015-08-28,"YB","AF","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to blur, glare, and algae."
+"2015-08-28_YB-AFq9",2015-08-28,2015-08-28,"YB","AF","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare"
+"2015-08-28_YB-AFq5",2015-08-28,2015-08-28,"YB","AF","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-08-28_YB-AFq8",2015-08-28,2015-08-28,"YB","AF","8","Sc","Semibalanus_cariosus","Type 5",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to blur, glare, and algae."
+"2015-08-28_YB-AFq9",2015-08-28,2015-08-28,"YB","AF","9","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare"
+"2015-08-28_YB-AFq5",2015-08-28,2015-08-28,"YB","AF","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-08-28_YB-AFq8",2015-08-28,2015-08-28,"YB","AF","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts likely low due to blur, glare, and algae."
+"2015-08-28_YB-AFq9",2015-08-28,2015-08-28,"YB","AF","9","ScD","Semibalanus_cariosus_(dead)","Type 6",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","3%","Counts may be low due to glare"
+"2015-08-28_YB-AGq2",2015-08-28,2015-08-28,"YB","AG","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae and glare."
+"2015-08-28_YB-AGq7",2015-08-28,2015-08-28,"YB","AG","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts likely low due to blur and glare"
+"2015-08-28_YB-AGq9",2015-08-28,2015-08-28,"YB","AG","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%",""
+"2015-08-28_YB-AGq2",2015-08-28,2015-08-28,"YB","AG","2","Ae","Anemones","Type 14",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae and glare."
+"2015-08-28_YB-AGq7",2015-08-28,2015-08-28,"YB","AG","7","Ae","Anemones","Type 14",9,0.0875,102.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts likely low due to blur and glare"
+"2015-08-28_YB-AGq9",2015-08-28,2015-08-28,"YB","AG","9","Ae","Anemones","Type 14",51,0.0875,582.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","35%",""
+"2015-08-28_YB-AGq2",2015-08-28,2015-08-28,"YB","AG","2","Bg","Balanus_glandula","Type 1",663,0.0875,7577.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae and glare."
+"2015-08-28_YB-AGq7",2015-08-28,2015-08-28,"YB","AG","7","Bg","Balanus_glandula","Type 1",713,0.0875,8148.57142857143,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts likely low due to blur and glare"
+"2015-08-28_YB-AGq9",2015-08-28,2015-08-28,"YB","AG","9","Bg","Balanus_glandula","Type 1",247,0.0875,2822.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","35%",""
+"2015-08-28_YB-AGq2",2015-08-28,2015-08-28,"YB","AG","2","BgD","Balanus_glandula_(dead)","Type 2",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae and glare."
+"2015-08-28_YB-AGq7",2015-08-28,2015-08-28,"YB","AG","7","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts likely low due to blur and glare"
+"2015-08-28_YB-AGq9",2015-08-28,2015-08-28,"YB","AG","9","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%",""
+"2015-08-28_YB-AGq2",2015-08-28,2015-08-28,"YB","AG","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae and glare."
+"2015-08-28_YB-AGq7",2015-08-28,2015-08-28,"YB","AG","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts likely low due to blur and glare"
+"2015-08-28_YB-AGq9",2015-08-28,2015-08-28,"YB","AG","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%",""
+"2015-08-28_YB-AGq2",2015-08-28,2015-08-28,"YB","AG","2","Cth","Chthamalus_dalli","Type 3",723,0.0875,8262.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae and glare."
+"2015-08-28_YB-AGq7",2015-08-28,2015-08-28,"YB","AG","7","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts likely low due to blur and glare"
+"2015-08-28_YB-AGq9",2015-08-28,2015-08-28,"YB","AG","9","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%",""
+"2015-08-28_YB-AGq2",2015-08-28,2015-08-28,"YB","AG","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae and glare."
+"2015-08-28_YB-AGq7",2015-08-28,2015-08-28,"YB","AG","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts likely low due to blur and glare"
+"2015-08-28_YB-AGq9",2015-08-28,2015-08-28,"YB","AG","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%",""
+"2015-08-28_YB-AGq2",2015-08-28,2015-08-28,"YB","AG","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae and glare."
+"2015-08-28_YB-AGq7",2015-08-28,2015-08-28,"YB","AG","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts likely low due to blur and glare"
+"2015-08-28_YB-AGq9",2015-08-28,2015-08-28,"YB","AG","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%",""
+"2015-08-28_YB-AGq2",2015-08-28,2015-08-28,"YB","AG","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae and glare."
+"2015-08-28_YB-AGq7",2015-08-28,2015-08-28,"YB","AG","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts likely low due to blur and glare"
+"2015-08-28_YB-AGq9",2015-08-28,2015-08-28,"YB","AG","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%",""
+"2015-08-28_YB-AGq2",2015-08-28,2015-08-28,"YB","AG","2","Lim","Limpets","Type 12",186,0.0875,2125.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae and glare."
+"2015-08-28_YB-AGq7",2015-08-28,2015-08-28,"YB","AG","7","Lim","Limpets","Type 12",92,0.0875,1051.42857142857,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts likely low due to blur and glare"
+"2015-08-28_YB-AGq9",2015-08-28,2015-08-28,"YB","AG","9","Lim","Limpets","Type 12",67,0.0875,765.714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","35%",""
+"2015-08-28_YB-AGq2",2015-08-28,2015-08-28,"YB","AG","2","Ls","Littorina_sitkana","Type 13",224,0.0875,2560,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae and glare."
+"2015-08-28_YB-AGq7",2015-08-28,2015-08-28,"YB","AG","7","Ls","Littorina_sitkana","Type 13",347,0.0875,3965.71428571429,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts likely low due to blur and glare"
+"2015-08-28_YB-AGq9",2015-08-28,2015-08-28,"YB","AG","9","Ls","Littorina_sitkana","Type 13",377,0.0875,4308.57142857143,NA,"Stephanie Merhoff","Finished","Full","Full","35%",""
+"2015-08-28_YB-AGq2",2015-08-28,2015-08-28,"YB","AG","2","Mc","Mytilus_californianus","Type 17",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae and glare."
+"2015-08-28_YB-AGq7",2015-08-28,2015-08-28,"YB","AG","7","Mc","Mytilus_californianus","Type 17",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts likely low due to blur and glare"
+"2015-08-28_YB-AGq9",2015-08-28,2015-08-28,"YB","AG","9","Mc","Mytilus_californianus","Type 17",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","35%",""
+"2015-08-28_YB-AGq2",2015-08-28,2015-08-28,"YB","AG","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae and glare."
+"2015-08-28_YB-AGq7",2015-08-28,2015-08-28,"YB","AG","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts likely low due to blur and glare"
+"2015-08-28_YB-AGq9",2015-08-28,2015-08-28,"YB","AG","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%",""
+"2015-08-28_YB-AGq2",2015-08-28,2015-08-28,"YB","AG","2","Myt","Mytilus_spp","Type 7",38,0.0875,434.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae and glare."
+"2015-08-28_YB-AGq7",2015-08-28,2015-08-28,"YB","AG","7","Myt","Mytilus_spp","Type 7",23,0.0875,262.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts likely low due to blur and glare"
+"2015-08-28_YB-AGq9",2015-08-28,2015-08-28,"YB","AG","9","Myt","Mytilus_spp","Type 7",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","35%",""
+"2015-08-28_YB-AGq2",2015-08-28,2015-08-28,"YB","AG","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae and glare."
+"2015-08-28_YB-AGq7",2015-08-28,2015-08-28,"YB","AG","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts likely low due to blur and glare"
+"2015-08-28_YB-AGq9",2015-08-28,2015-08-28,"YB","AG","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%",""
+"2015-08-28_YB-AGq2",2015-08-28,2015-08-28,"YB","AG","2","Mt","Mytilus_trossulus","Type 15",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae and glare."
+"2015-08-28_YB-AGq7",2015-08-28,2015-08-28,"YB","AG","7","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts likely low due to blur and glare"
+"2015-08-28_YB-AGq9",2015-08-28,2015-08-28,"YB","AG","9","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%",""
+"2015-08-28_YB-AGq2",2015-08-28,2015-08-28,"YB","AG","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae and glare."
+"2015-08-28_YB-AGq7",2015-08-28,2015-08-28,"YB","AG","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts likely low due to blur and glare"
+"2015-08-28_YB-AGq9",2015-08-28,2015-08-28,"YB","AG","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%",""
+"2015-08-28_YB-AGq2",2015-08-28,2015-08-28,"YB","AG","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae and glare."
+"2015-08-28_YB-AGq7",2015-08-28,2015-08-28,"YB","AG","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts likely low due to blur and glare"
+"2015-08-28_YB-AGq9",2015-08-28,2015-08-28,"YB","AG","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%",""
+"2015-08-28_YB-AGq2",2015-08-28,2015-08-28,"YB","AG","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae and glare."
+"2015-08-28_YB-AGq7",2015-08-28,2015-08-28,"YB","AG","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts likely low due to blur and glare"
+"2015-08-28_YB-AGq9",2015-08-28,2015-08-28,"YB","AG","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%",""
+"2015-08-28_YB-AGq2",2015-08-28,2015-08-28,"YB","AG","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae and glare."
+"2015-08-28_YB-AGq7",2015-08-28,2015-08-28,"YB","AG","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts likely low due to blur and glare"
+"2015-08-28_YB-AGq9",2015-08-28,2015-08-28,"YB","AG","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%",""
+"2015-08-28_YB-AGq2",2015-08-28,2015-08-28,"YB","AG","2","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae and glare."
+"2015-08-28_YB-AGq7",2015-08-28,2015-08-28,"YB","AG","7","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts likely low due to blur and glare"
+"2015-08-28_YB-AGq9",2015-08-28,2015-08-28,"YB","AG","9","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","35%",""
+"2015-08-28_YB-AGq2",2015-08-28,2015-08-28,"YB","AG","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae and glare."
+"2015-08-28_YB-AGq7",2015-08-28,2015-08-28,"YB","AG","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts likely low due to blur and glare"
+"2015-08-28_YB-AGq9",2015-08-28,2015-08-28,"YB","AG","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%",""
+"2015-08-28_YB-AGq2",2015-08-28,2015-08-28,"YB","AG","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae and glare."
+"2015-08-28_YB-AGq7",2015-08-28,2015-08-28,"YB","AG","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts likely low due to blur and glare"
+"2015-08-28_YB-AGq9",2015-08-28,2015-08-28,"YB","AG","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%",""
+"2015-08-28_YB-AGq2",2015-08-28,2015-08-28,"YB","AG","2","Pp","Pollicipes_polymerus","Type 11",24,0.0875,274.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae and glare."
+"2015-08-28_YB-AGq7",2015-08-28,2015-08-28,"YB","AG","7","Pp","Pollicipes_polymerus","Type 11",52,0.0875,594.285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts likely low due to blur and glare"
+"2015-08-28_YB-AGq9",2015-08-28,2015-08-28,"YB","AG","9","Pp","Pollicipes_polymerus","Type 11",269,0.0875,3074.28571428571,NA,"Stephanie Merhoff","Finished","Full","Full","35%",""
+"2015-08-28_YB-AGq2",2015-08-28,2015-08-28,"YB","AG","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae and glare."
+"2015-08-28_YB-AGq7",2015-08-28,2015-08-28,"YB","AG","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts likely low due to blur and glare"
+"2015-08-28_YB-AGq9",2015-08-28,2015-08-28,"YB","AG","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%",""
+"2015-08-28_YB-AGq2",2015-08-28,2015-08-28,"YB","AG","2","Sc","Semibalanus_cariosus","Type 5",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae and glare."
+"2015-08-28_YB-AGq7",2015-08-28,2015-08-28,"YB","AG","7","Sc","Semibalanus_cariosus","Type 5",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts likely low due to blur and glare"
+"2015-08-28_YB-AGq9",2015-08-28,2015-08-28,"YB","AG","9","Sc","Semibalanus_cariosus","Type 5",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","35%",""
+"2015-08-28_YB-AGq2",2015-08-28,2015-08-28,"YB","AG","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae and glare."
+"2015-08-28_YB-AGq7",2015-08-28,2015-08-28,"YB","AG","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts likely low due to blur and glare"
+"2015-08-28_YB-AGq9",2015-08-28,2015-08-28,"YB","AG","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%",""
+"2015-08-28_YB-Bq1",2015-08-28,2015-08-28,"YB","B","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-08-28_YB-Bq5",2015-08-28,2015-08-28,"YB","B","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","6%","Counts may be low due to glare."
+"2015-08-28_YB-Bq6",2015-08-28,2015-08-28,"YB","B","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-08-28_YB-Bq1",2015-08-28,2015-08-28,"YB","B","1","Ae","Anemones","Type 14",47,0.0875,537.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-08-28_YB-Bq5",2015-08-28,2015-08-28,"YB","B","5","Ae","Anemones","Type 14",76,0.0875,868.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","6%","Counts may be low due to glare."
+"2015-08-28_YB-Bq6",2015-08-28,2015-08-28,"YB","B","6","Ae","Anemones","Type 14",155,0.0875,1771.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-08-28_YB-Bq1",2015-08-28,2015-08-28,"YB","B","1","Bg","Balanus_glandula","Type 1",30,0.0875,342.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-08-28_YB-Bq5",2015-08-28,2015-08-28,"YB","B","5","Bg","Balanus_glandula","Type 1",247,0.0875,2822.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","6%","Counts may be low due to glare."
+"2015-08-28_YB-Bq6",2015-08-28,2015-08-28,"YB","B","6","Bg","Balanus_glandula","Type 1",632,0.0875,7222.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-08-28_YB-Bq1",2015-08-28,2015-08-28,"YB","B","1","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-08-28_YB-Bq5",2015-08-28,2015-08-28,"YB","B","5","BgD","Balanus_glandula_(dead)","Type 2",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","6%","Counts may be low due to glare."
+"2015-08-28_YB-Bq6",2015-08-28,2015-08-28,"YB","B","6","BgD","Balanus_glandula_(dead)","Type 2",27,0.0875,308.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-08-28_YB-Bq1",2015-08-28,2015-08-28,"YB","B","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-08-28_YB-Bq5",2015-08-28,2015-08-28,"YB","B","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","6%","Counts may be low due to glare."
+"2015-08-28_YB-Bq6",2015-08-28,2015-08-28,"YB","B","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-08-28_YB-Bq1",2015-08-28,2015-08-28,"YB","B","1","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-08-28_YB-Bq5",2015-08-28,2015-08-28,"YB","B","5","Cth","Chthamalus_dalli","Type 3",16,0.0875,182.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","6%","Counts may be low due to glare."
+"2015-08-28_YB-Bq6",2015-08-28,2015-08-28,"YB","B","6","Cth","Chthamalus_dalli","Type 3",18,0.0875,205.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-08-28_YB-Bq1",2015-08-28,2015-08-28,"YB","B","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-08-28_YB-Bq5",2015-08-28,2015-08-28,"YB","B","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","6%","Counts may be low due to glare."
+"2015-08-28_YB-Bq6",2015-08-28,2015-08-28,"YB","B","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-08-28_YB-Bq1",2015-08-28,2015-08-28,"YB","B","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-08-28_YB-Bq5",2015-08-28,2015-08-28,"YB","B","5","Emp","Emplectonema worm","Type 23",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","6%","Counts may be low due to glare."
+"2015-08-28_YB-Bq6",2015-08-28,2015-08-28,"YB","B","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-08-28_YB-Bq1",2015-08-28,2015-08-28,"YB","B","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-08-28_YB-Bq5",2015-08-28,2015-08-28,"YB","B","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","6%","Counts may be low due to glare."
+"2015-08-28_YB-Bq6",2015-08-28,2015-08-28,"YB","B","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-08-28_YB-Bq1",2015-08-28,2015-08-28,"YB","B","1","Lim","Limpets","Type 12",92,0.0875,1051.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-08-28_YB-Bq5",2015-08-28,2015-08-28,"YB","B","5","Lim","Limpets","Type 12",120,0.0875,1371.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","6%","Counts may be low due to glare."
+"2015-08-28_YB-Bq6",2015-08-28,2015-08-28,"YB","B","6","Lim","Limpets","Type 12",172,0.0875,1965.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-08-28_YB-Bq1",2015-08-28,2015-08-28,"YB","B","1","Ls","Littorina_sitkana","Type 13",42,0.0875,480,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-08-28_YB-Bq5",2015-08-28,2015-08-28,"YB","B","5","Ls","Littorina_sitkana","Type 13",87,0.0875,994.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","6%","Counts may be low due to glare."
+"2015-08-28_YB-Bq6",2015-08-28,2015-08-28,"YB","B","6","Ls","Littorina_sitkana","Type 13",165,0.0875,1885.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-08-28_YB-Bq1",2015-08-28,2015-08-28,"YB","B","1","Mc","Mytilus_californianus","Type 17",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-08-28_YB-Bq5",2015-08-28,2015-08-28,"YB","B","5","Mc","Mytilus_californianus","Type 17",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","6%","Counts may be low due to glare."
+"2015-08-28_YB-Bq6",2015-08-28,2015-08-28,"YB","B","6","Mc","Mytilus_californianus","Type 17",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-08-28_YB-Bq1",2015-08-28,2015-08-28,"YB","B","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-08-28_YB-Bq5",2015-08-28,2015-08-28,"YB","B","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","6%","Counts may be low due to glare."
+"2015-08-28_YB-Bq6",2015-08-28,2015-08-28,"YB","B","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-08-28_YB-Bq1",2015-08-28,2015-08-28,"YB","B","1","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-08-28_YB-Bq5",2015-08-28,2015-08-28,"YB","B","5","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","6%","Counts may be low due to glare."
+"2015-08-28_YB-Bq6",2015-08-28,2015-08-28,"YB","B","6","Myt","Mytilus_spp","Type 7",40,0.0875,457.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-08-28_YB-Bq1",2015-08-28,2015-08-28,"YB","B","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-08-28_YB-Bq5",2015-08-28,2015-08-28,"YB","B","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","6%","Counts may be low due to glare."
+"2015-08-28_YB-Bq6",2015-08-28,2015-08-28,"YB","B","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-08-28_YB-Bq1",2015-08-28,2015-08-28,"YB","B","1","Mt","Mytilus_trossulus","Type 15",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-08-28_YB-Bq5",2015-08-28,2015-08-28,"YB","B","5","Mt","Mytilus_trossulus","Type 15",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","6%","Counts may be low due to glare."
+"2015-08-28_YB-Bq6",2015-08-28,2015-08-28,"YB","B","6","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-08-28_YB-Bq1",2015-08-28,2015-08-28,"YB","B","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-08-28_YB-Bq5",2015-08-28,2015-08-28,"YB","B","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","6%","Counts may be low due to glare."
+"2015-08-28_YB-Bq6",2015-08-28,2015-08-28,"YB","B","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-08-28_YB-Bq1",2015-08-28,2015-08-28,"YB","B","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-08-28_YB-Bq5",2015-08-28,2015-08-28,"YB","B","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","6%","Counts may be low due to glare."
+"2015-08-28_YB-Bq6",2015-08-28,2015-08-28,"YB","B","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-08-28_YB-Bq1",2015-08-28,2015-08-28,"YB","B","1","Nc","Nucella_canaliculata","Type 10",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-08-28_YB-Bq5",2015-08-28,2015-08-28,"YB","B","5","Nc","Nucella_canaliculata","Type 10",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","6%","Counts may be low due to glare."
+"2015-08-28_YB-Bq6",2015-08-28,2015-08-28,"YB","B","6","Nc","Nucella_canaliculata","Type 10",10,0.0875,114.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-08-28_YB-Bq1",2015-08-28,2015-08-28,"YB","B","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-08-28_YB-Bq5",2015-08-28,2015-08-28,"YB","B","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","6%","Counts may be low due to glare."
+"2015-08-28_YB-Bq6",2015-08-28,2015-08-28,"YB","B","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-08-28_YB-Bq1",2015-08-28,2015-08-28,"YB","B","1","No","Nucella_ostrina","Type 9",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-08-28_YB-Bq5",2015-08-28,2015-08-28,"YB","B","5","No","Nucella_ostrina","Type 9",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","6%","Counts may be low due to glare."
+"2015-08-28_YB-Bq6",2015-08-28,2015-08-28,"YB","B","6","No","Nucella_ostrina","Type 9",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-08-28_YB-Bq1",2015-08-28,2015-08-28,"YB","B","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-08-28_YB-Bq5",2015-08-28,2015-08-28,"YB","B","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","6%","Counts may be low due to glare."
+"2015-08-28_YB-Bq6",2015-08-28,2015-08-28,"YB","B","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-08-28_YB-Bq1",2015-08-28,2015-08-28,"YB","B","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-08-28_YB-Bq5",2015-08-28,2015-08-28,"YB","B","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","6%","Counts may be low due to glare."
+"2015-08-28_YB-Bq6",2015-08-28,2015-08-28,"YB","B","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-08-28_YB-Bq1",2015-08-28,2015-08-28,"YB","B","1","Pp","Pollicipes_polymerus","Type 11",1033,0.0875,11805.7142857143,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-08-28_YB-Bq5",2015-08-28,2015-08-28,"YB","B","5","Pp","Pollicipes_polymerus","Type 11",998,0.0875,11405.7142857143,NA,"Beatriz Vaca","Finished","Full","Full","6%","Counts may be low due to glare."
+"2015-08-28_YB-Bq6",2015-08-28,2015-08-28,"YB","B","6","Pp","Pollicipes_polymerus","Type 11",852,0.0875,9737.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-08-28_YB-Bq1",2015-08-28,2015-08-28,"YB","B","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-08-28_YB-Bq5",2015-08-28,2015-08-28,"YB","B","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","6%","Counts may be low due to glare."
+"2015-08-28_YB-Bq6",2015-08-28,2015-08-28,"YB","B","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-08-28_YB-Bq1",2015-08-28,2015-08-28,"YB","B","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-08-28_YB-Bq5",2015-08-28,2015-08-28,"YB","B","5","Sc","Semibalanus_cariosus","Type 5",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","6%","Counts may be low due to glare."
+"2015-08-28_YB-Bq6",2015-08-28,2015-08-28,"YB","B","6","Sc","Semibalanus_cariosus","Type 5",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-08-28_YB-Bq1",2015-08-28,2015-08-28,"YB","B","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-08-28_YB-Bq5",2015-08-28,2015-08-28,"YB","B","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","6%","Counts may be low due to glare."
+"2015-08-28_YB-Bq6",2015-08-28,2015-08-28,"YB","B","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-08-28_YB-BBq1",2015-08-28,2015-08-28,"YB","BB","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur"
+"2015-08-28_YB-BBq2",2015-08-28,2015-08-28,"YB","BB","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur"
+"2015-08-28_YB-BBq9",2015-08-28,2015-08-28,"YB","BB","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to recruit barnacle size and blur"
+"2015-08-28_YB-BBq1",2015-08-28,2015-08-28,"YB","BB","1","Ae","Anemones","Type 14",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur"
+"2015-08-28_YB-BBq2",2015-08-28,2015-08-28,"YB","BB","2","Ae","Anemones","Type 14",14,0.0875,160,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur"
+"2015-08-28_YB-BBq9",2015-08-28,2015-08-28,"YB","BB","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to recruit barnacle size and blur"
+"2015-08-28_YB-BBq1",2015-08-28,2015-08-28,"YB","BB","1","Bg","Balanus_glandula","Type 1",109,0.0875,1245.71428571429,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur"
+"2015-08-28_YB-BBq2",2015-08-28,2015-08-28,"YB","BB","2","Bg","Balanus_glandula","Type 1",43,0.0875,491.428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur"
+"2015-08-28_YB-BBq9",2015-08-28,2015-08-28,"YB","BB","9","Bg","Balanus_glandula","Type 1",3141,0.0875,35897.1428571429,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to recruit barnacle size and blur"
+"2015-08-28_YB-BBq1",2015-08-28,2015-08-28,"YB","BB","1","BgD","Balanus_glandula_(dead)","Type 2",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur"
+"2015-08-28_YB-BBq2",2015-08-28,2015-08-28,"YB","BB","2","BgD","Balanus_glandula_(dead)","Type 2",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur"
+"2015-08-28_YB-BBq9",2015-08-28,2015-08-28,"YB","BB","9","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to recruit barnacle size and blur"
+"2015-08-28_YB-BBq1",2015-08-28,2015-08-28,"YB","BB","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur"
+"2015-08-28_YB-BBq2",2015-08-28,2015-08-28,"YB","BB","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur"
+"2015-08-28_YB-BBq9",2015-08-28,2015-08-28,"YB","BB","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to recruit barnacle size and blur"
+"2015-08-28_YB-BBq1",2015-08-28,2015-08-28,"YB","BB","1","Cth","Chthamalus_dalli","Type 3",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur"
+"2015-08-28_YB-BBq2",2015-08-28,2015-08-28,"YB","BB","2","Cth","Chthamalus_dalli","Type 3",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur"
+"2015-08-28_YB-BBq9",2015-08-28,2015-08-28,"YB","BB","9","Cth","Chthamalus_dalli","Type 3",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to recruit barnacle size and blur"
+"2015-08-28_YB-BBq1",2015-08-28,2015-08-28,"YB","BB","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur"
+"2015-08-28_YB-BBq2",2015-08-28,2015-08-28,"YB","BB","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur"
+"2015-08-28_YB-BBq9",2015-08-28,2015-08-28,"YB","BB","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to recruit barnacle size and blur"
+"2015-08-28_YB-BBq1",2015-08-28,2015-08-28,"YB","BB","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur"
+"2015-08-28_YB-BBq2",2015-08-28,2015-08-28,"YB","BB","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur"
+"2015-08-28_YB-BBq9",2015-08-28,2015-08-28,"YB","BB","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to recruit barnacle size and blur"
+"2015-08-28_YB-BBq1",2015-08-28,2015-08-28,"YB","BB","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur"
+"2015-08-28_YB-BBq2",2015-08-28,2015-08-28,"YB","BB","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur"
+"2015-08-28_YB-BBq9",2015-08-28,2015-08-28,"YB","BB","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to recruit barnacle size and blur"
+"2015-08-28_YB-BBq1",2015-08-28,2015-08-28,"YB","BB","1","Lim","Limpets","Type 12",35,0.0875,400,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur"
+"2015-08-28_YB-BBq2",2015-08-28,2015-08-28,"YB","BB","2","Lim","Limpets","Type 12",68,0.0875,777.142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur"
+"2015-08-28_YB-BBq9",2015-08-28,2015-08-28,"YB","BB","9","Lim","Limpets","Type 12",26,0.0875,297.142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to recruit barnacle size and blur"
+"2015-08-28_YB-BBq1",2015-08-28,2015-08-28,"YB","BB","1","Ls","Littorina_sitkana","Type 13",240,0.0875,2742.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur"
+"2015-08-28_YB-BBq2",2015-08-28,2015-08-28,"YB","BB","2","Ls","Littorina_sitkana","Type 13",195,0.0875,2228.57142857143,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur"
+"2015-08-28_YB-BBq9",2015-08-28,2015-08-28,"YB","BB","9","Ls","Littorina_sitkana","Type 13",192,0.0875,2194.28571428571,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to recruit barnacle size and blur"
+"2015-08-28_YB-BBq1",2015-08-28,2015-08-28,"YB","BB","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur"
+"2015-08-28_YB-BBq2",2015-08-28,2015-08-28,"YB","BB","2","Mc","Mytilus_californianus","Type 17",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur"
+"2015-08-28_YB-BBq9",2015-08-28,2015-08-28,"YB","BB","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to recruit barnacle size and blur"
+"2015-08-28_YB-BBq1",2015-08-28,2015-08-28,"YB","BB","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur"
+"2015-08-28_YB-BBq2",2015-08-28,2015-08-28,"YB","BB","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur"
+"2015-08-28_YB-BBq9",2015-08-28,2015-08-28,"YB","BB","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to recruit barnacle size and blur"
+"2015-08-28_YB-BBq1",2015-08-28,2015-08-28,"YB","BB","1","Myt","Mytilus_spp","Type 7",16,0.0875,182.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur"
+"2015-08-28_YB-BBq2",2015-08-28,2015-08-28,"YB","BB","2","Myt","Mytilus_spp","Type 7",5,0.0875,57.1428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur"
+"2015-08-28_YB-BBq9",2015-08-28,2015-08-28,"YB","BB","9","Myt","Mytilus_spp","Type 7",17,0.0875,194.285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to recruit barnacle size and blur"
+"2015-08-28_YB-BBq1",2015-08-28,2015-08-28,"YB","BB","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur"
+"2015-08-28_YB-BBq2",2015-08-28,2015-08-28,"YB","BB","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur"
+"2015-08-28_YB-BBq9",2015-08-28,2015-08-28,"YB","BB","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to recruit barnacle size and blur"
+"2015-08-28_YB-BBq1",2015-08-28,2015-08-28,"YB","BB","1","Mt","Mytilus_trossulus","Type 15",5,0.0875,57.1428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur"
+"2015-08-28_YB-BBq2",2015-08-28,2015-08-28,"YB","BB","2","Mt","Mytilus_trossulus","Type 15",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur"
+"2015-08-28_YB-BBq9",2015-08-28,2015-08-28,"YB","BB","9","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to recruit barnacle size and blur"
+"2015-08-28_YB-BBq1",2015-08-28,2015-08-28,"YB","BB","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur"
+"2015-08-28_YB-BBq2",2015-08-28,2015-08-28,"YB","BB","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur"
+"2015-08-28_YB-BBq9",2015-08-28,2015-08-28,"YB","BB","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to recruit barnacle size and blur"
+"2015-08-28_YB-BBq1",2015-08-28,2015-08-28,"YB","BB","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur"
+"2015-08-28_YB-BBq2",2015-08-28,2015-08-28,"YB","BB","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur"
+"2015-08-28_YB-BBq9",2015-08-28,2015-08-28,"YB","BB","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to recruit barnacle size and blur"
+"2015-08-28_YB-BBq1",2015-08-28,2015-08-28,"YB","BB","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur"
+"2015-08-28_YB-BBq2",2015-08-28,2015-08-28,"YB","BB","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur"
+"2015-08-28_YB-BBq9",2015-08-28,2015-08-28,"YB","BB","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to recruit barnacle size and blur"
+"2015-08-28_YB-BBq1",2015-08-28,2015-08-28,"YB","BB","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur"
+"2015-08-28_YB-BBq2",2015-08-28,2015-08-28,"YB","BB","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur"
+"2015-08-28_YB-BBq9",2015-08-28,2015-08-28,"YB","BB","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to recruit barnacle size and blur"
+"2015-08-28_YB-BBq1",2015-08-28,2015-08-28,"YB","BB","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur"
+"2015-08-28_YB-BBq2",2015-08-28,2015-08-28,"YB","BB","2","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur"
+"2015-08-28_YB-BBq9",2015-08-28,2015-08-28,"YB","BB","9","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to recruit barnacle size and blur"
+"2015-08-28_YB-BBq1",2015-08-28,2015-08-28,"YB","BB","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur"
+"2015-08-28_YB-BBq2",2015-08-28,2015-08-28,"YB","BB","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur"
+"2015-08-28_YB-BBq9",2015-08-28,2015-08-28,"YB","BB","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to recruit barnacle size and blur"
+"2015-08-28_YB-BBq1",2015-08-28,2015-08-28,"YB","BB","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur"
+"2015-08-28_YB-BBq2",2015-08-28,2015-08-28,"YB","BB","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur"
+"2015-08-28_YB-BBq9",2015-08-28,2015-08-28,"YB","BB","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to recruit barnacle size and blur"
+"2015-08-28_YB-BBq1",2015-08-28,2015-08-28,"YB","BB","1","Pp","Pollicipes_polymerus","Type 11",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur"
+"2015-08-28_YB-BBq2",2015-08-28,2015-08-28,"YB","BB","2","Pp","Pollicipes_polymerus","Type 11",53,0.0875,605.714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur"
+"2015-08-28_YB-BBq9",2015-08-28,2015-08-28,"YB","BB","9","Pp","Pollicipes_polymerus","Type 11",6,0.0875,68.5714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to recruit barnacle size and blur"
+"2015-08-28_YB-BBq1",2015-08-28,2015-08-28,"YB","BB","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur"
+"2015-08-28_YB-BBq2",2015-08-28,2015-08-28,"YB","BB","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur"
+"2015-08-28_YB-BBq9",2015-08-28,2015-08-28,"YB","BB","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to recruit barnacle size and blur"
+"2015-08-28_YB-BBq1",2015-08-28,2015-08-28,"YB","BB","1","Sc","Semibalanus_cariosus","Type 5",4,0.0875,45.7142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur"
+"2015-08-28_YB-BBq2",2015-08-28,2015-08-28,"YB","BB","2","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur"
+"2015-08-28_YB-BBq9",2015-08-28,2015-08-28,"YB","BB","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to recruit barnacle size and blur"
+"2015-08-28_YB-BBq1",2015-08-28,2015-08-28,"YB","BB","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur"
+"2015-08-28_YB-BBq2",2015-08-28,2015-08-28,"YB","BB","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur"
+"2015-08-28_YB-BBq9",2015-08-28,2015-08-28,"YB","BB","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to recruit barnacle size and blur"
+"2015-08-28_YB-BCq3",2015-08-28,2015-08-28,"YB","BC","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts likely low due to blur"
+"2015-08-28_YB-BCq5",2015-08-28,2015-08-28,"YB","BC","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to glare"
+"2015-08-28_YB-BCq9",2015-08-28,2015-08-28,"YB","BC","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-08-28_YB-BCq3",2015-08-28,2015-08-28,"YB","BC","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts likely low due to blur"
+"2015-08-28_YB-BCq5",2015-08-28,2015-08-28,"YB","BC","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to glare"
+"2015-08-28_YB-BCq9",2015-08-28,2015-08-28,"YB","BC","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-08-28_YB-BCq3",2015-08-28,2015-08-28,"YB","BC","3","Bg","Balanus_glandula","Type 1",1942,0.0875,22194.2857142857,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts likely low due to blur"
+"2015-08-28_YB-BCq5",2015-08-28,2015-08-28,"YB","BC","5","Bg","Balanus_glandula","Type 1",302,0.0875,3451.42857142857,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to glare"
+"2015-08-28_YB-BCq9",2015-08-28,2015-08-28,"YB","BC","9","Bg","Balanus_glandula","Type 1",1174,0.0875,13417.1428571429,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-08-28_YB-BCq3",2015-08-28,2015-08-28,"YB","BC","3","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts likely low due to blur"
+"2015-08-28_YB-BCq5",2015-08-28,2015-08-28,"YB","BC","5","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to glare"
+"2015-08-28_YB-BCq9",2015-08-28,2015-08-28,"YB","BC","9","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-08-28_YB-BCq3",2015-08-28,2015-08-28,"YB","BC","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts likely low due to blur"
+"2015-08-28_YB-BCq5",2015-08-28,2015-08-28,"YB","BC","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to glare"
+"2015-08-28_YB-BCq9",2015-08-28,2015-08-28,"YB","BC","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-08-28_YB-BCq3",2015-08-28,2015-08-28,"YB","BC","3","Cth","Chthamalus_dalli","Type 3",80,0.0875,914.285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts likely low due to blur"
+"2015-08-28_YB-BCq5",2015-08-28,2015-08-28,"YB","BC","5","Cth","Chthamalus_dalli","Type 3",11,0.0875,125.714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to glare"
+"2015-08-28_YB-BCq9",2015-08-28,2015-08-28,"YB","BC","9","Cth","Chthamalus_dalli","Type 3",17,0.0875,194.285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-08-28_YB-BCq3",2015-08-28,2015-08-28,"YB","BC","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts likely low due to blur"
+"2015-08-28_YB-BCq5",2015-08-28,2015-08-28,"YB","BC","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to glare"
+"2015-08-28_YB-BCq9",2015-08-28,2015-08-28,"YB","BC","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-08-28_YB-BCq3",2015-08-28,2015-08-28,"YB","BC","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts likely low due to blur"
+"2015-08-28_YB-BCq5",2015-08-28,2015-08-28,"YB","BC","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to glare"
+"2015-08-28_YB-BCq9",2015-08-28,2015-08-28,"YB","BC","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-08-28_YB-BCq3",2015-08-28,2015-08-28,"YB","BC","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts likely low due to blur"
+"2015-08-28_YB-BCq5",2015-08-28,2015-08-28,"YB","BC","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to glare"
+"2015-08-28_YB-BCq9",2015-08-28,2015-08-28,"YB","BC","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-08-28_YB-BCq3",2015-08-28,2015-08-28,"YB","BC","3","Lim","Limpets","Type 12",183,0.0875,2091.42857142857,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts likely low due to blur"
+"2015-08-28_YB-BCq5",2015-08-28,2015-08-28,"YB","BC","5","Lim","Limpets","Type 12",193,0.0875,2205.71428571429,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to glare"
+"2015-08-28_YB-BCq9",2015-08-28,2015-08-28,"YB","BC","9","Lim","Limpets","Type 12",185,0.0875,2114.28571428571,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-08-28_YB-BCq3",2015-08-28,2015-08-28,"YB","BC","3","Ls","Littorina_sitkana","Type 13",194,0.0875,2217.14285714286,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts likely low due to blur"
+"2015-08-28_YB-BCq5",2015-08-28,2015-08-28,"YB","BC","5","Ls","Littorina_sitkana","Type 13",279,0.0875,3188.57142857143,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to glare"
+"2015-08-28_YB-BCq9",2015-08-28,2015-08-28,"YB","BC","9","Ls","Littorina_sitkana","Type 13",230,0.0875,2628.57142857143,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-08-28_YB-BCq3",2015-08-28,2015-08-28,"YB","BC","3","Mc","Mytilus_californianus","Type 17",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts likely low due to blur"
+"2015-08-28_YB-BCq5",2015-08-28,2015-08-28,"YB","BC","5","Mc","Mytilus_californianus","Type 17",5,0.0875,57.1428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to glare"
+"2015-08-28_YB-BCq9",2015-08-28,2015-08-28,"YB","BC","9","Mc","Mytilus_californianus","Type 17",5,0.0875,57.1428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-08-28_YB-BCq3",2015-08-28,2015-08-28,"YB","BC","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts likely low due to blur"
+"2015-08-28_YB-BCq5",2015-08-28,2015-08-28,"YB","BC","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to glare"
+"2015-08-28_YB-BCq9",2015-08-28,2015-08-28,"YB","BC","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-08-28_YB-BCq3",2015-08-28,2015-08-28,"YB","BC","3","Myt","Mytilus_spp","Type 7",224,0.0875,2560,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts likely low due to blur"
+"2015-08-28_YB-BCq5",2015-08-28,2015-08-28,"YB","BC","5","Myt","Mytilus_spp","Type 7",36,0.0875,411.428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to glare"
+"2015-08-28_YB-BCq9",2015-08-28,2015-08-28,"YB","BC","9","Myt","Mytilus_spp","Type 7",86,0.0875,982.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-08-28_YB-BCq3",2015-08-28,2015-08-28,"YB","BC","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts likely low due to blur"
+"2015-08-28_YB-BCq5",2015-08-28,2015-08-28,"YB","BC","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to glare"
+"2015-08-28_YB-BCq9",2015-08-28,2015-08-28,"YB","BC","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-08-28_YB-BCq3",2015-08-28,2015-08-28,"YB","BC","3","Mt","Mytilus_trossulus","Type 15",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts likely low due to blur"
+"2015-08-28_YB-BCq5",2015-08-28,2015-08-28,"YB","BC","5","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to glare"
+"2015-08-28_YB-BCq9",2015-08-28,2015-08-28,"YB","BC","9","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-08-28_YB-BCq3",2015-08-28,2015-08-28,"YB","BC","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts likely low due to blur"
+"2015-08-28_YB-BCq5",2015-08-28,2015-08-28,"YB","BC","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to glare"
+"2015-08-28_YB-BCq9",2015-08-28,2015-08-28,"YB","BC","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-08-28_YB-BCq3",2015-08-28,2015-08-28,"YB","BC","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts likely low due to blur"
+"2015-08-28_YB-BCq5",2015-08-28,2015-08-28,"YB","BC","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to glare"
+"2015-08-28_YB-BCq9",2015-08-28,2015-08-28,"YB","BC","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-08-28_YB-BCq3",2015-08-28,2015-08-28,"YB","BC","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts likely low due to blur"
+"2015-08-28_YB-BCq5",2015-08-28,2015-08-28,"YB","BC","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to glare"
+"2015-08-28_YB-BCq9",2015-08-28,2015-08-28,"YB","BC","9","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-08-28_YB-BCq3",2015-08-28,2015-08-28,"YB","BC","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts likely low due to blur"
+"2015-08-28_YB-BCq5",2015-08-28,2015-08-28,"YB","BC","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to glare"
+"2015-08-28_YB-BCq9",2015-08-28,2015-08-28,"YB","BC","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-08-28_YB-BCq3",2015-08-28,2015-08-28,"YB","BC","3","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts likely low due to blur"
+"2015-08-28_YB-BCq5",2015-08-28,2015-08-28,"YB","BC","5","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to glare"
+"2015-08-28_YB-BCq9",2015-08-28,2015-08-28,"YB","BC","9","No","Nucella_ostrina","Type 9",4,0.0875,45.7142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-08-28_YB-BCq3",2015-08-28,2015-08-28,"YB","BC","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts likely low due to blur"
+"2015-08-28_YB-BCq5",2015-08-28,2015-08-28,"YB","BC","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to glare"
+"2015-08-28_YB-BCq9",2015-08-28,2015-08-28,"YB","BC","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-08-28_YB-BCq3",2015-08-28,2015-08-28,"YB","BC","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts likely low due to blur"
+"2015-08-28_YB-BCq5",2015-08-28,2015-08-28,"YB","BC","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to glare"
+"2015-08-28_YB-BCq9",2015-08-28,2015-08-28,"YB","BC","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-08-28_YB-BCq3",2015-08-28,2015-08-28,"YB","BC","3","Pp","Pollicipes_polymerus","Type 11",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts likely low due to blur"
+"2015-08-28_YB-BCq5",2015-08-28,2015-08-28,"YB","BC","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to glare"
+"2015-08-28_YB-BCq9",2015-08-28,2015-08-28,"YB","BC","9","Pp","Pollicipes_polymerus","Type 11",67,0.0875,765.714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-08-28_YB-BCq3",2015-08-28,2015-08-28,"YB","BC","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts likely low due to blur"
+"2015-08-28_YB-BCq5",2015-08-28,2015-08-28,"YB","BC","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to glare"
+"2015-08-28_YB-BCq9",2015-08-28,2015-08-28,"YB","BC","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-08-28_YB-BCq3",2015-08-28,2015-08-28,"YB","BC","3","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts likely low due to blur"
+"2015-08-28_YB-BCq5",2015-08-28,2015-08-28,"YB","BC","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to glare"
+"2015-08-28_YB-BCq9",2015-08-28,2015-08-28,"YB","BC","9","Sc","Semibalanus_cariosus","Type 5",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-08-28_YB-BCq3",2015-08-28,2015-08-28,"YB","BC","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%","Counts likely low due to blur"
+"2015-08-28_YB-BCq5",2015-08-28,2015-08-28,"YB","BC","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to glare"
+"2015-08-28_YB-BCq9",2015-08-28,2015-08-28,"YB","BC","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-08-28_YB-BDq1",2015-08-28,2015-08-28,"YB","BD","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","4%",""
+"2015-08-28_YB-BDq5",2015-08-28,2015-08-28,"YB","BD","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2015-08-28_YB-BDq7",2015-08-28,2015-08-28,"YB","BD","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","2%",""
+"2015-08-28_YB-BDq1",2015-08-28,2015-08-28,"YB","BD","1","Ae","Anemones","Type 14",32,0.0875,365.714285714286,NA,"Julia Bingham","Finished","Full","Full","4%",""
+"2015-08-28_YB-BDq5",2015-08-28,2015-08-28,"YB","BD","5","Ae","Anemones","Type 14",28,0.0875,320,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2015-08-28_YB-BDq7",2015-08-28,2015-08-28,"YB","BD","7","Ae","Anemones","Type 14",35,0.0875,400,NA,"Julia Bingham","Finished","Full","Full","2%",""
+"2015-08-28_YB-BDq1",2015-08-28,2015-08-28,"YB","BD","1","Bg","Balanus_glandula","Type 1",232,0.0875,2651.42857142857,NA,"Julia Bingham","Finished","Full","Full","4%",""
+"2015-08-28_YB-BDq5",2015-08-28,2015-08-28,"YB","BD","5","Bg","Balanus_glandula","Type 1",153,0.0875,1748.57142857143,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2015-08-28_YB-BDq7",2015-08-28,2015-08-28,"YB","BD","7","Bg","Balanus_glandula","Type 1",527,0.0875,6022.85714285714,NA,"Julia Bingham","Finished","Full","Full","2%",""
+"2015-08-28_YB-BDq1",2015-08-28,2015-08-28,"YB","BD","1","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","4%",""
+"2015-08-28_YB-BDq5",2015-08-28,2015-08-28,"YB","BD","5","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2015-08-28_YB-BDq7",2015-08-28,2015-08-28,"YB","BD","7","BgD","Balanus_glandula_(dead)","Type 2",5,0.0875,57.1428571428571,NA,"Julia Bingham","Finished","Full","Full","2%",""
+"2015-08-28_YB-BDq1",2015-08-28,2015-08-28,"YB","BD","1","Chi","Chiton_spp","Type 22",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","4%",""
+"2015-08-28_YB-BDq5",2015-08-28,2015-08-28,"YB","BD","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2015-08-28_YB-BDq7",2015-08-28,2015-08-28,"YB","BD","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","2%",""
+"2015-08-28_YB-BDq1",2015-08-28,2015-08-28,"YB","BD","1","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","4%",""
+"2015-08-28_YB-BDq5",2015-08-28,2015-08-28,"YB","BD","5","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2015-08-28_YB-BDq7",2015-08-28,2015-08-28,"YB","BD","7","Cth","Chthamalus_dalli","Type 3",27,0.0875,308.571428571429,NA,"Julia Bingham","Finished","Full","Full","2%",""
+"2015-08-28_YB-BDq1",2015-08-28,2015-08-28,"YB","BD","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","4%",""
+"2015-08-28_YB-BDq5",2015-08-28,2015-08-28,"YB","BD","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2015-08-28_YB-BDq7",2015-08-28,2015-08-28,"YB","BD","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","2%",""
+"2015-08-28_YB-BDq1",2015-08-28,2015-08-28,"YB","BD","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","4%",""
+"2015-08-28_YB-BDq5",2015-08-28,2015-08-28,"YB","BD","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2015-08-28_YB-BDq7",2015-08-28,2015-08-28,"YB","BD","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","2%",""
+"2015-08-28_YB-BDq1",2015-08-28,2015-08-28,"YB","BD","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","4%",""
+"2015-08-28_YB-BDq5",2015-08-28,2015-08-28,"YB","BD","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2015-08-28_YB-BDq7",2015-08-28,2015-08-28,"YB","BD","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","2%",""
+"2015-08-28_YB-BDq1",2015-08-28,2015-08-28,"YB","BD","1","Lim","Limpets","Type 12",141,0.0875,1611.42857142857,NA,"Julia Bingham","Finished","Full","Full","4%",""
+"2015-08-28_YB-BDq5",2015-08-28,2015-08-28,"YB","BD","5","Lim","Limpets","Type 12",142,0.0875,1622.85714285714,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2015-08-28_YB-BDq7",2015-08-28,2015-08-28,"YB","BD","7","Lim","Limpets","Type 12",196,0.0875,2240,NA,"Julia Bingham","Finished","Full","Full","2%",""
+"2015-08-28_YB-BDq1",2015-08-28,2015-08-28,"YB","BD","1","Ls","Littorina_sitkana","Type 13",119,0.0875,1360,NA,"Julia Bingham","Finished","Full","Full","4%",""
+"2015-08-28_YB-BDq5",2015-08-28,2015-08-28,"YB","BD","5","Ls","Littorina_sitkana","Type 13",82,0.0875,937.142857142857,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2015-08-28_YB-BDq7",2015-08-28,2015-08-28,"YB","BD","7","Ls","Littorina_sitkana","Type 13",246,0.0875,2811.42857142857,NA,"Julia Bingham","Finished","Full","Full","2%",""
+"2015-08-28_YB-BDq1",2015-08-28,2015-08-28,"YB","BD","1","Mc","Mytilus_californianus","Type 17",13,0.0875,148.571428571429,NA,"Julia Bingham","Finished","Full","Full","4%",""
+"2015-08-28_YB-BDq5",2015-08-28,2015-08-28,"YB","BD","5","Mc","Mytilus_californianus","Type 17",5,0.0875,57.1428571428571,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2015-08-28_YB-BDq7",2015-08-28,2015-08-28,"YB","BD","7","Mc","Mytilus_californianus","Type 17",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Full","2%",""
+"2015-08-28_YB-BDq1",2015-08-28,2015-08-28,"YB","BD","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","4%",""
+"2015-08-28_YB-BDq5",2015-08-28,2015-08-28,"YB","BD","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2015-08-28_YB-BDq7",2015-08-28,2015-08-28,"YB","BD","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","2%",""
+"2015-08-28_YB-BDq1",2015-08-28,2015-08-28,"YB","BD","1","Myt","Mytilus_spp","Type 7",174,0.0875,1988.57142857143,NA,"Julia Bingham","Finished","Full","Full","4%",""
+"2015-08-28_YB-BDq5",2015-08-28,2015-08-28,"YB","BD","5","Myt","Mytilus_spp","Type 7",63,0.0875,720,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2015-08-28_YB-BDq7",2015-08-28,2015-08-28,"YB","BD","7","Myt","Mytilus_spp","Type 7",212,0.0875,2422.85714285714,NA,"Julia Bingham","Finished","Full","Full","2%",""
+"2015-08-28_YB-BDq1",2015-08-28,2015-08-28,"YB","BD","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","4%",""
+"2015-08-28_YB-BDq5",2015-08-28,2015-08-28,"YB","BD","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2015-08-28_YB-BDq7",2015-08-28,2015-08-28,"YB","BD","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","2%",""
+"2015-08-28_YB-BDq1",2015-08-28,2015-08-28,"YB","BD","1","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","4%",""
+"2015-08-28_YB-BDq5",2015-08-28,2015-08-28,"YB","BD","5","Mt","Mytilus_trossulus","Type 15",15,0.0875,171.428571428571,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2015-08-28_YB-BDq7",2015-08-28,2015-08-28,"YB","BD","7","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","2%",""
+"2015-08-28_YB-BDq1",2015-08-28,2015-08-28,"YB","BD","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","4%",""
+"2015-08-28_YB-BDq5",2015-08-28,2015-08-28,"YB","BD","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2015-08-28_YB-BDq7",2015-08-28,2015-08-28,"YB","BD","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","2%",""
+"2015-08-28_YB-BDq1",2015-08-28,2015-08-28,"YB","BD","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","4%",""
+"2015-08-28_YB-BDq5",2015-08-28,2015-08-28,"YB","BD","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2015-08-28_YB-BDq7",2015-08-28,2015-08-28,"YB","BD","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","2%",""
+"2015-08-28_YB-BDq1",2015-08-28,2015-08-28,"YB","BD","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","4%",""
+"2015-08-28_YB-BDq5",2015-08-28,2015-08-28,"YB","BD","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2015-08-28_YB-BDq7",2015-08-28,2015-08-28,"YB","BD","7","Nc","Nucella_canaliculata","Type 10",3,0.0875,34.2857142857143,NA,"Julia Bingham","Finished","Full","Full","2%",""
+"2015-08-28_YB-BDq1",2015-08-28,2015-08-28,"YB","BD","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","4%",""
+"2015-08-28_YB-BDq5",2015-08-28,2015-08-28,"YB","BD","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2015-08-28_YB-BDq7",2015-08-28,2015-08-28,"YB","BD","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","2%",""
+"2015-08-28_YB-BDq1",2015-08-28,2015-08-28,"YB","BD","1","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Full","4%",""
+"2015-08-28_YB-BDq5",2015-08-28,2015-08-28,"YB","BD","5","No","Nucella_ostrina","Type 9",4,0.0875,45.7142857142857,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2015-08-28_YB-BDq7",2015-08-28,2015-08-28,"YB","BD","7","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","2%",""
+"2015-08-28_YB-BDq1",2015-08-28,2015-08-28,"YB","BD","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","4%",""
+"2015-08-28_YB-BDq5",2015-08-28,2015-08-28,"YB","BD","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2015-08-28_YB-BDq7",2015-08-28,2015-08-28,"YB","BD","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","2%",""
+"2015-08-28_YB-BDq1",2015-08-28,2015-08-28,"YB","BD","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","4%",""
+"2015-08-28_YB-BDq5",2015-08-28,2015-08-28,"YB","BD","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2015-08-28_YB-BDq7",2015-08-28,2015-08-28,"YB","BD","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","2%",""
+"2015-08-28_YB-BDq1",2015-08-28,2015-08-28,"YB","BD","1","Pp","Pollicipes_polymerus","Type 11",1701,0.0875,19440,NA,"Julia Bingham","Finished","Full","Full","4%",""
+"2015-08-28_YB-BDq5",2015-08-28,2015-08-28,"YB","BD","5","Pp","Pollicipes_polymerus","Type 11",1259,0.0875,14388.5714285714,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2015-08-28_YB-BDq7",2015-08-28,2015-08-28,"YB","BD","7","Pp","Pollicipes_polymerus","Type 11",1638,0.0875,18720,NA,"Julia Bingham","Finished","Full","Full","2%",""
+"2015-08-28_YB-BDq1",2015-08-28,2015-08-28,"YB","BD","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","4%",""
+"2015-08-28_YB-BDq5",2015-08-28,2015-08-28,"YB","BD","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2015-08-28_YB-BDq7",2015-08-28,2015-08-28,"YB","BD","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","2%",""
+"2015-08-28_YB-BDq1",2015-08-28,2015-08-28,"YB","BD","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","4%",""
+"2015-08-28_YB-BDq5",2015-08-28,2015-08-28,"YB","BD","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2015-08-28_YB-BDq7",2015-08-28,2015-08-28,"YB","BD","7","Sc","Semibalanus_cariosus","Type 5",3,0.0875,34.2857142857143,NA,"Julia Bingham","Finished","Full","Full","2%",""
+"2015-08-28_YB-BDq1",2015-08-28,2015-08-28,"YB","BD","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","4%",""
+"2015-08-28_YB-BDq5",2015-08-28,2015-08-28,"YB","BD","5","ScD","Semibalanus_cariosus_(dead)","Type 6",3,0.0875,34.2857142857143,NA,"Julia Bingham","Finished","Full","Full","12%",""
+"2015-08-28_YB-BDq7",2015-08-28,2015-08-28,"YB","BD","7","ScD","Semibalanus_cariosus_(dead)","Type 6",4,0.0875,45.7142857142857,NA,"Julia Bingham","Finished","Full","Full","2%",""
+"2015-08-28_YB-BEq2",2015-08-28,2015-08-28,"YB","BE","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare and blur"
+"2015-08-28_YB-BEq3",2015-08-28,2015-08-28,"YB","BE","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BEq6",2015-08-28,2015-08-28,"YB","BE","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BEq2",2015-08-28,2015-08-28,"YB","BE","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare and blur"
+"2015-08-28_YB-BEq3",2015-08-28,2015-08-28,"YB","BE","3","Ae","Anemones","Type 14",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BEq6",2015-08-28,2015-08-28,"YB","BE","6","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BEq2",2015-08-28,2015-08-28,"YB","BE","2","Bg","Balanus_glandula","Type 1",111,0.0875,1268.57142857143,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare and blur"
+"2015-08-28_YB-BEq3",2015-08-28,2015-08-28,"YB","BE","3","Bg","Balanus_glandula","Type 1",634,0.0875,7245.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BEq6",2015-08-28,2015-08-28,"YB","BE","6","Bg","Balanus_glandula","Type 1",366,0.0875,4182.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BEq2",2015-08-28,2015-08-28,"YB","BE","2","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare and blur"
+"2015-08-28_YB-BEq3",2015-08-28,2015-08-28,"YB","BE","3","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BEq6",2015-08-28,2015-08-28,"YB","BE","6","BgD","Balanus_glandula_(dead)","Type 2",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BEq2",2015-08-28,2015-08-28,"YB","BE","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare and blur"
+"2015-08-28_YB-BEq3",2015-08-28,2015-08-28,"YB","BE","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BEq6",2015-08-28,2015-08-28,"YB","BE","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BEq2",2015-08-28,2015-08-28,"YB","BE","2","Cth","Chthamalus_dalli","Type 3",96,0.0875,1097.14285714286,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare and blur"
+"2015-08-28_YB-BEq3",2015-08-28,2015-08-28,"YB","BE","3","Cth","Chthamalus_dalli","Type 3",340,0.0875,3885.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BEq6",2015-08-28,2015-08-28,"YB","BE","6","Cth","Chthamalus_dalli","Type 3",99,0.0875,1131.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BEq2",2015-08-28,2015-08-28,"YB","BE","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare and blur"
+"2015-08-28_YB-BEq3",2015-08-28,2015-08-28,"YB","BE","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BEq6",2015-08-28,2015-08-28,"YB","BE","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BEq2",2015-08-28,2015-08-28,"YB","BE","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare and blur"
+"2015-08-28_YB-BEq3",2015-08-28,2015-08-28,"YB","BE","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BEq6",2015-08-28,2015-08-28,"YB","BE","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BEq2",2015-08-28,2015-08-28,"YB","BE","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare and blur"
+"2015-08-28_YB-BEq3",2015-08-28,2015-08-28,"YB","BE","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BEq6",2015-08-28,2015-08-28,"YB","BE","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BEq2",2015-08-28,2015-08-28,"YB","BE","2","Lim","Limpets","Type 12",94,0.0875,1074.28571428571,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare and blur"
+"2015-08-28_YB-BEq3",2015-08-28,2015-08-28,"YB","BE","3","Lim","Limpets","Type 12",243,0.0875,2777.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BEq6",2015-08-28,2015-08-28,"YB","BE","6","Lim","Limpets","Type 12",273,0.0875,3120,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BEq2",2015-08-28,2015-08-28,"YB","BE","2","Ls","Littorina_sitkana","Type 13",199,0.0875,2274.28571428571,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare and blur"
+"2015-08-28_YB-BEq3",2015-08-28,2015-08-28,"YB","BE","3","Ls","Littorina_sitkana","Type 13",248,0.0875,2834.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BEq6",2015-08-28,2015-08-28,"YB","BE","6","Ls","Littorina_sitkana","Type 13",340,0.0875,3885.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BEq2",2015-08-28,2015-08-28,"YB","BE","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare and blur"
+"2015-08-28_YB-BEq3",2015-08-28,2015-08-28,"YB","BE","3","Mc","Mytilus_californianus","Type 17",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BEq6",2015-08-28,2015-08-28,"YB","BE","6","Mc","Mytilus_californianus","Type 17",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BEq2",2015-08-28,2015-08-28,"YB","BE","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare and blur"
+"2015-08-28_YB-BEq3",2015-08-28,2015-08-28,"YB","BE","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BEq6",2015-08-28,2015-08-28,"YB","BE","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BEq2",2015-08-28,2015-08-28,"YB","BE","2","Myt","Mytilus_spp","Type 7",16,0.0875,182.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare and blur"
+"2015-08-28_YB-BEq3",2015-08-28,2015-08-28,"YB","BE","3","Myt","Mytilus_spp","Type 7",15,0.0875,171.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BEq6",2015-08-28,2015-08-28,"YB","BE","6","Myt","Mytilus_spp","Type 7",24,0.0875,274.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BEq2",2015-08-28,2015-08-28,"YB","BE","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare and blur"
+"2015-08-28_YB-BEq3",2015-08-28,2015-08-28,"YB","BE","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BEq6",2015-08-28,2015-08-28,"YB","BE","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BEq2",2015-08-28,2015-08-28,"YB","BE","2","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare and blur"
+"2015-08-28_YB-BEq3",2015-08-28,2015-08-28,"YB","BE","3","Mt","Mytilus_trossulus","Type 15",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BEq6",2015-08-28,2015-08-28,"YB","BE","6","Mt","Mytilus_trossulus","Type 15",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BEq2",2015-08-28,2015-08-28,"YB","BE","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare and blur"
+"2015-08-28_YB-BEq3",2015-08-28,2015-08-28,"YB","BE","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BEq6",2015-08-28,2015-08-28,"YB","BE","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BEq2",2015-08-28,2015-08-28,"YB","BE","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare and blur"
+"2015-08-28_YB-BEq3",2015-08-28,2015-08-28,"YB","BE","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BEq6",2015-08-28,2015-08-28,"YB","BE","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BEq2",2015-08-28,2015-08-28,"YB","BE","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare and blur"
+"2015-08-28_YB-BEq3",2015-08-28,2015-08-28,"YB","BE","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BEq6",2015-08-28,2015-08-28,"YB","BE","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BEq2",2015-08-28,2015-08-28,"YB","BE","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare and blur"
+"2015-08-28_YB-BEq3",2015-08-28,2015-08-28,"YB","BE","3","Negg","Nucella_eggs","Type 26",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BEq6",2015-08-28,2015-08-28,"YB","BE","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BEq2",2015-08-28,2015-08-28,"YB","BE","2","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare and blur"
+"2015-08-28_YB-BEq3",2015-08-28,2015-08-28,"YB","BE","3","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BEq6",2015-08-28,2015-08-28,"YB","BE","6","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BEq2",2015-08-28,2015-08-28,"YB","BE","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare and blur"
+"2015-08-28_YB-BEq3",2015-08-28,2015-08-28,"YB","BE","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BEq6",2015-08-28,2015-08-28,"YB","BE","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BEq2",2015-08-28,2015-08-28,"YB","BE","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare and blur"
+"2015-08-28_YB-BEq3",2015-08-28,2015-08-28,"YB","BE","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BEq6",2015-08-28,2015-08-28,"YB","BE","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BEq2",2015-08-28,2015-08-28,"YB","BE","2","Pp","Pollicipes_polymerus","Type 11",14,0.0875,160,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare and blur"
+"2015-08-28_YB-BEq3",2015-08-28,2015-08-28,"YB","BE","3","Pp","Pollicipes_polymerus","Type 11",159,0.0875,1817.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BEq6",2015-08-28,2015-08-28,"YB","BE","6","Pp","Pollicipes_polymerus","Type 11",115,0.0875,1314.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BEq2",2015-08-28,2015-08-28,"YB","BE","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare and blur"
+"2015-08-28_YB-BEq3",2015-08-28,2015-08-28,"YB","BE","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BEq6",2015-08-28,2015-08-28,"YB","BE","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BEq2",2015-08-28,2015-08-28,"YB","BE","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare and blur"
+"2015-08-28_YB-BEq3",2015-08-28,2015-08-28,"YB","BE","3","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BEq6",2015-08-28,2015-08-28,"YB","BE","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BEq2",2015-08-28,2015-08-28,"YB","BE","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare and blur"
+"2015-08-28_YB-BEq3",2015-08-28,2015-08-28,"YB","BE","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BEq6",2015-08-28,2015-08-28,"YB","BE","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BFq1",2015-08-28,2015-08-28,"YB","BF","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BFq4",2015-08-28,2015-08-28,"YB","BF","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BFq9",2015-08-28,2015-08-28,"YB","BF","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BFq1",2015-08-28,2015-08-28,"YB","BF","1","Ae","Anemones","Type 14",12,0.0875,137.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BFq4",2015-08-28,2015-08-28,"YB","BF","4","Ae","Anemones","Type 14",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BFq9",2015-08-28,2015-08-28,"YB","BF","9","Ae","Anemones","Type 14",22,0.0875,251.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BFq1",2015-08-28,2015-08-28,"YB","BF","1","Bg","Balanus_glandula","Type 1",623,0.0875,7120,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BFq4",2015-08-28,2015-08-28,"YB","BF","4","Bg","Balanus_glandula","Type 1",499,0.0875,5702.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BFq9",2015-08-28,2015-08-28,"YB","BF","9","Bg","Balanus_glandula","Type 1",162,0.0875,1851.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BFq1",2015-08-28,2015-08-28,"YB","BF","1","BgD","Balanus_glandula_(dead)","Type 2",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BFq4",2015-08-28,2015-08-28,"YB","BF","4","BgD","Balanus_glandula_(dead)","Type 2",11,0.0875,125.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BFq9",2015-08-28,2015-08-28,"YB","BF","9","BgD","Balanus_glandula_(dead)","Type 2",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BFq1",2015-08-28,2015-08-28,"YB","BF","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BFq4",2015-08-28,2015-08-28,"YB","BF","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BFq9",2015-08-28,2015-08-28,"YB","BF","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BFq1",2015-08-28,2015-08-28,"YB","BF","1","Cth","Chthamalus_dalli","Type 3",150,0.0875,1714.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BFq4",2015-08-28,2015-08-28,"YB","BF","4","Cth","Chthamalus_dalli","Type 3",239,0.0875,2731.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BFq9",2015-08-28,2015-08-28,"YB","BF","9","Cth","Chthamalus_dalli","Type 3",35,0.0875,400,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BFq1",2015-08-28,2015-08-28,"YB","BF","1","CthD","Chthamalus_dalli (dead)","Type 4",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BFq4",2015-08-28,2015-08-28,"YB","BF","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BFq9",2015-08-28,2015-08-28,"YB","BF","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BFq1",2015-08-28,2015-08-28,"YB","BF","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BFq4",2015-08-28,2015-08-28,"YB","BF","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BFq9",2015-08-28,2015-08-28,"YB","BF","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BFq1",2015-08-28,2015-08-28,"YB","BF","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BFq4",2015-08-28,2015-08-28,"YB","BF","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BFq9",2015-08-28,2015-08-28,"YB","BF","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BFq1",2015-08-28,2015-08-28,"YB","BF","1","Lim","Limpets","Type 12",286,0.0875,3268.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BFq4",2015-08-28,2015-08-28,"YB","BF","4","Lim","Limpets","Type 12",261,0.0875,2982.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BFq9",2015-08-28,2015-08-28,"YB","BF","9","Lim","Limpets","Type 12",161,0.0875,1840,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BFq1",2015-08-28,2015-08-28,"YB","BF","1","Ls","Littorina_sitkana","Type 13",419,0.0875,4788.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BFq4",2015-08-28,2015-08-28,"YB","BF","4","Ls","Littorina_sitkana","Type 13",334,0.0875,3817.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BFq9",2015-08-28,2015-08-28,"YB","BF","9","Ls","Littorina_sitkana","Type 13",525,0.0875,6000,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BFq1",2015-08-28,2015-08-28,"YB","BF","1","Mc","Mytilus_californianus","Type 17",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BFq4",2015-08-28,2015-08-28,"YB","BF","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BFq9",2015-08-28,2015-08-28,"YB","BF","9","Mc","Mytilus_californianus","Type 17",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BFq1",2015-08-28,2015-08-28,"YB","BF","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BFq4",2015-08-28,2015-08-28,"YB","BF","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BFq9",2015-08-28,2015-08-28,"YB","BF","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BFq1",2015-08-28,2015-08-28,"YB","BF","1","Myt","Mytilus_spp","Type 7",30,0.0875,342.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BFq4",2015-08-28,2015-08-28,"YB","BF","4","Myt","Mytilus_spp","Type 7",23,0.0875,262.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BFq9",2015-08-28,2015-08-28,"YB","BF","9","Myt","Mytilus_spp","Type 7",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BFq1",2015-08-28,2015-08-28,"YB","BF","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BFq4",2015-08-28,2015-08-28,"YB","BF","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BFq9",2015-08-28,2015-08-28,"YB","BF","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BFq1",2015-08-28,2015-08-28,"YB","BF","1","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BFq4",2015-08-28,2015-08-28,"YB","BF","4","Mt","Mytilus_trossulus","Type 15",22,0.0875,251.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BFq9",2015-08-28,2015-08-28,"YB","BF","9","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BFq1",2015-08-28,2015-08-28,"YB","BF","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BFq4",2015-08-28,2015-08-28,"YB","BF","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BFq9",2015-08-28,2015-08-28,"YB","BF","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BFq1",2015-08-28,2015-08-28,"YB","BF","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BFq4",2015-08-28,2015-08-28,"YB","BF","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BFq9",2015-08-28,2015-08-28,"YB","BF","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BFq1",2015-08-28,2015-08-28,"YB","BF","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BFq4",2015-08-28,2015-08-28,"YB","BF","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BFq9",2015-08-28,2015-08-28,"YB","BF","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BFq1",2015-08-28,2015-08-28,"YB","BF","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BFq4",2015-08-28,2015-08-28,"YB","BF","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BFq9",2015-08-28,2015-08-28,"YB","BF","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BFq1",2015-08-28,2015-08-28,"YB","BF","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BFq4",2015-08-28,2015-08-28,"YB","BF","4","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BFq9",2015-08-28,2015-08-28,"YB","BF","9","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BFq1",2015-08-28,2015-08-28,"YB","BF","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BFq4",2015-08-28,2015-08-28,"YB","BF","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BFq9",2015-08-28,2015-08-28,"YB","BF","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BFq1",2015-08-28,2015-08-28,"YB","BF","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BFq4",2015-08-28,2015-08-28,"YB","BF","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BFq9",2015-08-28,2015-08-28,"YB","BF","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BFq1",2015-08-28,2015-08-28,"YB","BF","1","Pp","Pollicipes_polymerus","Type 11",620,0.0875,7085.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BFq4",2015-08-28,2015-08-28,"YB","BF","4","Pp","Pollicipes_polymerus","Type 11",223,0.0875,2548.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BFq9",2015-08-28,2015-08-28,"YB","BF","9","Pp","Pollicipes_polymerus","Type 11",764,0.0875,8731.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BFq1",2015-08-28,2015-08-28,"YB","BF","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BFq4",2015-08-28,2015-08-28,"YB","BF","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BFq9",2015-08-28,2015-08-28,"YB","BF","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BFq1",2015-08-28,2015-08-28,"YB","BF","1","Sc","Semibalanus_cariosus","Type 5",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BFq4",2015-08-28,2015-08-28,"YB","BF","4","Sc","Semibalanus_cariosus","Type 5",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BFq9",2015-08-28,2015-08-28,"YB","BF","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BFq1",2015-08-28,2015-08-28,"YB","BF","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BFq4",2015-08-28,2015-08-28,"YB","BF","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare and blur."
+"2015-08-28_YB-BFq9",2015-08-28,2015-08-28,"YB","BF","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to glare and blur."
+"2015-08-28_YB-Cq2",2015-08-28,2015-08-28,"YB","C","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-08-28_YB-Cq4",2015-08-28,2015-08-28,"YB","C","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-08-28_YB-Cq6",2015-08-28,2015-08-28,"YB","C","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-08-28_YB-Cq2",2015-08-28,2015-08-28,"YB","C","2","Ae","Anemones","Type 14",49,0.0875,560,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-08-28_YB-Cq4",2015-08-28,2015-08-28,"YB","C","4","Ae","Anemones","Type 14",49,0.0875,560,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-08-28_YB-Cq6",2015-08-28,2015-08-28,"YB","C","6","Ae","Anemones","Type 14",88,0.0875,1005.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-08-28_YB-Cq2",2015-08-28,2015-08-28,"YB","C","2","Bg","Balanus_glandula","Type 1",294,0.0875,3360,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-08-28_YB-Cq4",2015-08-28,2015-08-28,"YB","C","4","Bg","Balanus_glandula","Type 1",132,0.0875,1508.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-08-28_YB-Cq6",2015-08-28,2015-08-28,"YB","C","6","Bg","Balanus_glandula","Type 1",107,0.0875,1222.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-08-28_YB-Cq2",2015-08-28,2015-08-28,"YB","C","2","BgD","Balanus_glandula_(dead)","Type 2",14,0.0875,160,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-08-28_YB-Cq4",2015-08-28,2015-08-28,"YB","C","4","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-08-28_YB-Cq6",2015-08-28,2015-08-28,"YB","C","6","BgD","Balanus_glandula_(dead)","Type 2",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-08-28_YB-Cq2",2015-08-28,2015-08-28,"YB","C","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-08-28_YB-Cq4",2015-08-28,2015-08-28,"YB","C","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-08-28_YB-Cq6",2015-08-28,2015-08-28,"YB","C","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-08-28_YB-Cq2",2015-08-28,2015-08-28,"YB","C","2","Cth","Chthamalus_dalli","Type 3",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-08-28_YB-Cq4",2015-08-28,2015-08-28,"YB","C","4","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-08-28_YB-Cq6",2015-08-28,2015-08-28,"YB","C","6","Cth","Chthamalus_dalli","Type 3",25,0.0875,285.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-08-28_YB-Cq2",2015-08-28,2015-08-28,"YB","C","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-08-28_YB-Cq4",2015-08-28,2015-08-28,"YB","C","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-08-28_YB-Cq6",2015-08-28,2015-08-28,"YB","C","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-08-28_YB-Cq2",2015-08-28,2015-08-28,"YB","C","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-08-28_YB-Cq4",2015-08-28,2015-08-28,"YB","C","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-08-28_YB-Cq6",2015-08-28,2015-08-28,"YB","C","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-08-28_YB-Cq2",2015-08-28,2015-08-28,"YB","C","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-08-28_YB-Cq4",2015-08-28,2015-08-28,"YB","C","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-08-28_YB-Cq6",2015-08-28,2015-08-28,"YB","C","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-08-28_YB-Cq2",2015-08-28,2015-08-28,"YB","C","2","Lim","Limpets","Type 12",159,0.0875,1817.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-08-28_YB-Cq4",2015-08-28,2015-08-28,"YB","C","4","Lim","Limpets","Type 12",94,0.0875,1074.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-08-28_YB-Cq6",2015-08-28,2015-08-28,"YB","C","6","Lim","Limpets","Type 12",215,0.0875,2457.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-08-28_YB-Cq2",2015-08-28,2015-08-28,"YB","C","2","Ls","Littorina_sitkana","Type 13",127,0.0875,1451.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-08-28_YB-Cq4",2015-08-28,2015-08-28,"YB","C","4","Ls","Littorina_sitkana","Type 13",70,0.0875,800,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-08-28_YB-Cq6",2015-08-28,2015-08-28,"YB","C","6","Ls","Littorina_sitkana","Type 13",161,0.0875,1840,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-08-28_YB-Cq2",2015-08-28,2015-08-28,"YB","C","2","Mc","Mytilus_californianus","Type 17",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-08-28_YB-Cq4",2015-08-28,2015-08-28,"YB","C","4","Mc","Mytilus_californianus","Type 17",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-08-28_YB-Cq6",2015-08-28,2015-08-28,"YB","C","6","Mc","Mytilus_californianus","Type 17",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-08-28_YB-Cq2",2015-08-28,2015-08-28,"YB","C","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-08-28_YB-Cq4",2015-08-28,2015-08-28,"YB","C","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-08-28_YB-Cq6",2015-08-28,2015-08-28,"YB","C","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-08-28_YB-Cq2",2015-08-28,2015-08-28,"YB","C","2","Myt","Mytilus_spp","Type 7",25,0.0875,285.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-08-28_YB-Cq4",2015-08-28,2015-08-28,"YB","C","4","Myt","Mytilus_spp","Type 7",36,0.0875,411.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-08-28_YB-Cq6",2015-08-28,2015-08-28,"YB","C","6","Myt","Mytilus_spp","Type 7",40,0.0875,457.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-08-28_YB-Cq2",2015-08-28,2015-08-28,"YB","C","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-08-28_YB-Cq4",2015-08-28,2015-08-28,"YB","C","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-08-28_YB-Cq6",2015-08-28,2015-08-28,"YB","C","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-08-28_YB-Cq2",2015-08-28,2015-08-28,"YB","C","2","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-08-28_YB-Cq4",2015-08-28,2015-08-28,"YB","C","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-08-28_YB-Cq6",2015-08-28,2015-08-28,"YB","C","6","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-08-28_YB-Cq2",2015-08-28,2015-08-28,"YB","C","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-08-28_YB-Cq4",2015-08-28,2015-08-28,"YB","C","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-08-28_YB-Cq6",2015-08-28,2015-08-28,"YB","C","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-08-28_YB-Cq2",2015-08-28,2015-08-28,"YB","C","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-08-28_YB-Cq4",2015-08-28,2015-08-28,"YB","C","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-08-28_YB-Cq6",2015-08-28,2015-08-28,"YB","C","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-08-28_YB-Cq2",2015-08-28,2015-08-28,"YB","C","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-08-28_YB-Cq4",2015-08-28,2015-08-28,"YB","C","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-08-28_YB-Cq6",2015-08-28,2015-08-28,"YB","C","6","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-08-28_YB-Cq2",2015-08-28,2015-08-28,"YB","C","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-08-28_YB-Cq4",2015-08-28,2015-08-28,"YB","C","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-08-28_YB-Cq6",2015-08-28,2015-08-28,"YB","C","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-08-28_YB-Cq2",2015-08-28,2015-08-28,"YB","C","2","No","Nucella_ostrina","Type 9",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-08-28_YB-Cq4",2015-08-28,2015-08-28,"YB","C","4","No","Nucella_ostrina","Type 9",9,0.0875,102.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-08-28_YB-Cq6",2015-08-28,2015-08-28,"YB","C","6","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-08-28_YB-Cq2",2015-08-28,2015-08-28,"YB","C","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-08-28_YB-Cq4",2015-08-28,2015-08-28,"YB","C","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-08-28_YB-Cq6",2015-08-28,2015-08-28,"YB","C","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-08-28_YB-Cq2",2015-08-28,2015-08-28,"YB","C","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-08-28_YB-Cq4",2015-08-28,2015-08-28,"YB","C","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-08-28_YB-Cq6",2015-08-28,2015-08-28,"YB","C","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-08-28_YB-Cq2",2015-08-28,2015-08-28,"YB","C","2","Pp","Pollicipes_polymerus","Type 11",1178,0.0875,13462.8571428571,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-08-28_YB-Cq4",2015-08-28,2015-08-28,"YB","C","4","Pp","Pollicipes_polymerus","Type 11",1064,0.0875,12160,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-08-28_YB-Cq6",2015-08-28,2015-08-28,"YB","C","6","Pp","Pollicipes_polymerus","Type 11",814,0.0875,9302.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-08-28_YB-Cq2",2015-08-28,2015-08-28,"YB","C","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-08-28_YB-Cq4",2015-08-28,2015-08-28,"YB","C","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-08-28_YB-Cq6",2015-08-28,2015-08-28,"YB","C","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-08-28_YB-Cq2",2015-08-28,2015-08-28,"YB","C","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-08-28_YB-Cq4",2015-08-28,2015-08-28,"YB","C","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-08-28_YB-Cq6",2015-08-28,2015-08-28,"YB","C","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-08-28_YB-Cq2",2015-08-28,2015-08-28,"YB","C","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-08-28_YB-Cq4",2015-08-28,2015-08-28,"YB","C","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-08-28_YB-Cq6",2015-08-28,2015-08-28,"YB","C","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts may be low due to glare."
+"2015-08-28_YB-Dq3",2015-08-28,2015-08-28,"YB","D","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae."
+"2015-08-28_YB-Dq4",2015-08-28,2015-08-28,"YB","D","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur and glare"
+"2015-08-28_YB-Dq5",2015-08-28,2015-08-28,"YB","D","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts low due to glare."
+"2015-08-28_YB-Dq3",2015-08-28,2015-08-28,"YB","D","3","Ae","Anemones","Type 14",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae."
+"2015-08-28_YB-Dq4",2015-08-28,2015-08-28,"YB","D","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur and glare"
+"2015-08-28_YB-Dq5",2015-08-28,2015-08-28,"YB","D","5","Ae","Anemones","Type 14",22,0.0875,251.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts low due to glare."
+"2015-08-28_YB-Dq3",2015-08-28,2015-08-28,"YB","D","3","Bg","Balanus_glandula","Type 1",212,0.0875,2422.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae."
+"2015-08-28_YB-Dq4",2015-08-28,2015-08-28,"YB","D","4","Bg","Balanus_glandula","Type 1",1680,0.0875,19200,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur and glare"
+"2015-08-28_YB-Dq5",2015-08-28,2015-08-28,"YB","D","5","Bg","Balanus_glandula","Type 1",152,0.0875,1737.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts low due to glare."
+"2015-08-28_YB-Dq3",2015-08-28,2015-08-28,"YB","D","3","BgD","Balanus_glandula_(dead)","Type 2",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae."
+"2015-08-28_YB-Dq4",2015-08-28,2015-08-28,"YB","D","4","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur and glare"
+"2015-08-28_YB-Dq5",2015-08-28,2015-08-28,"YB","D","5","BgD","Balanus_glandula_(dead)","Type 2",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts low due to glare."
+"2015-08-28_YB-Dq3",2015-08-28,2015-08-28,"YB","D","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae."
+"2015-08-28_YB-Dq4",2015-08-28,2015-08-28,"YB","D","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur and glare"
+"2015-08-28_YB-Dq5",2015-08-28,2015-08-28,"YB","D","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts low due to glare."
+"2015-08-28_YB-Dq3",2015-08-28,2015-08-28,"YB","D","3","Cth","Chthamalus_dalli","Type 3",177,0.0875,2022.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae."
+"2015-08-28_YB-Dq4",2015-08-28,2015-08-28,"YB","D","4","Cth","Chthamalus_dalli","Type 3",97,0.0875,1108.57142857143,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur and glare"
+"2015-08-28_YB-Dq5",2015-08-28,2015-08-28,"YB","D","5","Cth","Chthamalus_dalli","Type 3",350,0.0875,4000,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts low due to glare."
+"2015-08-28_YB-Dq3",2015-08-28,2015-08-28,"YB","D","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae."
+"2015-08-28_YB-Dq4",2015-08-28,2015-08-28,"YB","D","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur and glare"
+"2015-08-28_YB-Dq5",2015-08-28,2015-08-28,"YB","D","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts low due to glare."
+"2015-08-28_YB-Dq3",2015-08-28,2015-08-28,"YB","D","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae."
+"2015-08-28_YB-Dq4",2015-08-28,2015-08-28,"YB","D","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur and glare"
+"2015-08-28_YB-Dq5",2015-08-28,2015-08-28,"YB","D","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts low due to glare."
+"2015-08-28_YB-Dq3",2015-08-28,2015-08-28,"YB","D","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae."
+"2015-08-28_YB-Dq4",2015-08-28,2015-08-28,"YB","D","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur and glare"
+"2015-08-28_YB-Dq5",2015-08-28,2015-08-28,"YB","D","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts low due to glare."
+"2015-08-28_YB-Dq3",2015-08-28,2015-08-28,"YB","D","3","Lim","Limpets","Type 12",179,0.0875,2045.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae."
+"2015-08-28_YB-Dq4",2015-08-28,2015-08-28,"YB","D","4","Lim","Limpets","Type 12",231,0.0875,2640,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur and glare"
+"2015-08-28_YB-Dq5",2015-08-28,2015-08-28,"YB","D","5","Lim","Limpets","Type 12",235,0.0875,2685.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts low due to glare."
+"2015-08-28_YB-Dq3",2015-08-28,2015-08-28,"YB","D","3","Ls","Littorina_sitkana","Type 13",194,0.0875,2217.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae."
+"2015-08-28_YB-Dq4",2015-08-28,2015-08-28,"YB","D","4","Ls","Littorina_sitkana","Type 13",477,0.0875,5451.42857142857,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur and glare"
+"2015-08-28_YB-Dq5",2015-08-28,2015-08-28,"YB","D","5","Ls","Littorina_sitkana","Type 13",168,0.0875,1920,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts low due to glare."
+"2015-08-28_YB-Dq3",2015-08-28,2015-08-28,"YB","D","3","Mc","Mytilus_californianus","Type 17",12,0.0875,137.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae."
+"2015-08-28_YB-Dq4",2015-08-28,2015-08-28,"YB","D","4","Mc","Mytilus_californianus","Type 17",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur and glare"
+"2015-08-28_YB-Dq5",2015-08-28,2015-08-28,"YB","D","5","Mc","Mytilus_californianus","Type 17",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts low due to glare."
+"2015-08-28_YB-Dq3",2015-08-28,2015-08-28,"YB","D","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae."
+"2015-08-28_YB-Dq4",2015-08-28,2015-08-28,"YB","D","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur and glare"
+"2015-08-28_YB-Dq5",2015-08-28,2015-08-28,"YB","D","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts low due to glare."
+"2015-08-28_YB-Dq3",2015-08-28,2015-08-28,"YB","D","3","Myt","Mytilus_spp","Type 7",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae."
+"2015-08-28_YB-Dq4",2015-08-28,2015-08-28,"YB","D","4","Myt","Mytilus_spp","Type 7",8,0.0875,91.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur and glare"
+"2015-08-28_YB-Dq5",2015-08-28,2015-08-28,"YB","D","5","Myt","Mytilus_spp","Type 7",22,0.0875,251.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts low due to glare."
+"2015-08-28_YB-Dq3",2015-08-28,2015-08-28,"YB","D","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae."
+"2015-08-28_YB-Dq4",2015-08-28,2015-08-28,"YB","D","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur and glare"
+"2015-08-28_YB-Dq5",2015-08-28,2015-08-28,"YB","D","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts low due to glare."
+"2015-08-28_YB-Dq3",2015-08-28,2015-08-28,"YB","D","3","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae."
+"2015-08-28_YB-Dq4",2015-08-28,2015-08-28,"YB","D","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur and glare"
+"2015-08-28_YB-Dq5",2015-08-28,2015-08-28,"YB","D","5","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts low due to glare."
+"2015-08-28_YB-Dq3",2015-08-28,2015-08-28,"YB","D","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae."
+"2015-08-28_YB-Dq4",2015-08-28,2015-08-28,"YB","D","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur and glare"
+"2015-08-28_YB-Dq5",2015-08-28,2015-08-28,"YB","D","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts low due to glare."
+"2015-08-28_YB-Dq3",2015-08-28,2015-08-28,"YB","D","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae."
+"2015-08-28_YB-Dq4",2015-08-28,2015-08-28,"YB","D","4","Ner","Nereis_worm","Type 24",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur and glare"
+"2015-08-28_YB-Dq5",2015-08-28,2015-08-28,"YB","D","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts low due to glare."
+"2015-08-28_YB-Dq3",2015-08-28,2015-08-28,"YB","D","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae."
+"2015-08-28_YB-Dq4",2015-08-28,2015-08-28,"YB","D","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur and glare"
+"2015-08-28_YB-Dq5",2015-08-28,2015-08-28,"YB","D","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts low due to glare."
+"2015-08-28_YB-Dq3",2015-08-28,2015-08-28,"YB","D","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae."
+"2015-08-28_YB-Dq4",2015-08-28,2015-08-28,"YB","D","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur and glare"
+"2015-08-28_YB-Dq5",2015-08-28,2015-08-28,"YB","D","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts low due to glare."
+"2015-08-28_YB-Dq3",2015-08-28,2015-08-28,"YB","D","3","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae."
+"2015-08-28_YB-Dq4",2015-08-28,2015-08-28,"YB","D","4","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur and glare"
+"2015-08-28_YB-Dq5",2015-08-28,2015-08-28,"YB","D","5","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts low due to glare."
+"2015-08-28_YB-Dq3",2015-08-28,2015-08-28,"YB","D","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae."
+"2015-08-28_YB-Dq4",2015-08-28,2015-08-28,"YB","D","4","Wor","Other_worm spp.","Type 25",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur and glare"
+"2015-08-28_YB-Dq5",2015-08-28,2015-08-28,"YB","D","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts low due to glare."
+"2015-08-28_YB-Dq3",2015-08-28,2015-08-28,"YB","D","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae."
+"2015-08-28_YB-Dq4",2015-08-28,2015-08-28,"YB","D","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur and glare"
+"2015-08-28_YB-Dq5",2015-08-28,2015-08-28,"YB","D","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts low due to glare."
+"2015-08-28_YB-Dq3",2015-08-28,2015-08-28,"YB","D","3","Pp","Pollicipes_polymerus","Type 11",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae."
+"2015-08-28_YB-Dq4",2015-08-28,2015-08-28,"YB","D","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur and glare"
+"2015-08-28_YB-Dq5",2015-08-28,2015-08-28,"YB","D","5","Pp","Pollicipes_polymerus","Type 11",46,0.0875,525.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts low due to glare."
+"2015-08-28_YB-Dq3",2015-08-28,2015-08-28,"YB","D","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae."
+"2015-08-28_YB-Dq4",2015-08-28,2015-08-28,"YB","D","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur and glare"
+"2015-08-28_YB-Dq5",2015-08-28,2015-08-28,"YB","D","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts low due to glare."
+"2015-08-28_YB-Dq3",2015-08-28,2015-08-28,"YB","D","3","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae."
+"2015-08-28_YB-Dq4",2015-08-28,2015-08-28,"YB","D","4","Sc","Semibalanus_cariosus","Type 5",4,0.0875,45.7142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur and glare"
+"2015-08-28_YB-Dq5",2015-08-28,2015-08-28,"YB","D","5","Sc","Semibalanus_cariosus","Type 5",9,0.0875,102.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts low due to glare."
+"2015-08-28_YB-Dq3",2015-08-28,2015-08-28,"YB","D","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to glare and algae."
+"2015-08-28_YB-Dq4",2015-08-28,2015-08-28,"YB","D","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to blur and glare"
+"2015-08-28_YB-Dq5",2015-08-28,2015-08-28,"YB","D","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts low due to glare."
+"2015-08-28_YB-Eq3",2015-08-28,2015-08-28,"YB","E","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2015-08-28_YB-Eq4",2015-08-28,2015-08-28,"YB","E","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","6%","Counts likely low due to blur. Barnacle counts likely low due to recruit size."
+"2015-08-28_YB-Eq8",2015-08-28,2015-08-28,"YB","E","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%",""
+"2015-08-28_YB-Eq3",2015-08-28,2015-08-28,"YB","E","3","Ae","Anemones","Type 14",53,0.0875,605.714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2015-08-28_YB-Eq4",2015-08-28,2015-08-28,"YB","E","4","Ae","Anemones","Type 14",58,0.0875,662.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","6%","Counts likely low due to blur. Barnacle counts likely low due to recruit size."
+"2015-08-28_YB-Eq8",2015-08-28,2015-08-28,"YB","E","8","Ae","Anemones","Type 14",13,0.0875,148.571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","2%",""
+"2015-08-28_YB-Eq3",2015-08-28,2015-08-28,"YB","E","3","Bg","Balanus_glandula","Type 1",126,0.0875,1440,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2015-08-28_YB-Eq4",2015-08-28,2015-08-28,"YB","E","4","Bg","Balanus_glandula","Type 1",1310,0.0875,14971.4285714286,NA,"Stephanie Merhoff","Finished","Full","Full","6%","Counts likely low due to blur. Barnacle counts likely low due to recruit size."
+"2015-08-28_YB-Eq8",2015-08-28,2015-08-28,"YB","E","8","Bg","Balanus_glandula","Type 1",307,0.0875,3508.57142857143,NA,"Stephanie Merhoff","Finished","Full","Full","2%",""
+"2015-08-28_YB-Eq3",2015-08-28,2015-08-28,"YB","E","3","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2015-08-28_YB-Eq4",2015-08-28,2015-08-28,"YB","E","4","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","6%","Counts likely low due to blur. Barnacle counts likely low due to recruit size."
+"2015-08-28_YB-Eq8",2015-08-28,2015-08-28,"YB","E","8","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%",""
+"2015-08-28_YB-Eq3",2015-08-28,2015-08-28,"YB","E","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2015-08-28_YB-Eq4",2015-08-28,2015-08-28,"YB","E","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","6%","Counts likely low due to blur. Barnacle counts likely low due to recruit size."
+"2015-08-28_YB-Eq8",2015-08-28,2015-08-28,"YB","E","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%",""
+"2015-08-28_YB-Eq3",2015-08-28,2015-08-28,"YB","E","3","Cth","Chthamalus_dalli","Type 3",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2015-08-28_YB-Eq4",2015-08-28,2015-08-28,"YB","E","4","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","6%","Counts likely low due to blur. Barnacle counts likely low due to recruit size."
+"2015-08-28_YB-Eq8",2015-08-28,2015-08-28,"YB","E","8","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%",""
+"2015-08-28_YB-Eq3",2015-08-28,2015-08-28,"YB","E","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2015-08-28_YB-Eq4",2015-08-28,2015-08-28,"YB","E","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","6%","Counts likely low due to blur. Barnacle counts likely low due to recruit size."
+"2015-08-28_YB-Eq8",2015-08-28,2015-08-28,"YB","E","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%",""
+"2015-08-28_YB-Eq3",2015-08-28,2015-08-28,"YB","E","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2015-08-28_YB-Eq4",2015-08-28,2015-08-28,"YB","E","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","6%","Counts likely low due to blur. Barnacle counts likely low due to recruit size."
+"2015-08-28_YB-Eq8",2015-08-28,2015-08-28,"YB","E","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%",""
+"2015-08-28_YB-Eq3",2015-08-28,2015-08-28,"YB","E","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2015-08-28_YB-Eq4",2015-08-28,2015-08-28,"YB","E","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","6%","Counts likely low due to blur. Barnacle counts likely low due to recruit size."
+"2015-08-28_YB-Eq8",2015-08-28,2015-08-28,"YB","E","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%",""
+"2015-08-28_YB-Eq3",2015-08-28,2015-08-28,"YB","E","3","Lim","Limpets","Type 12",64,0.0875,731.428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2015-08-28_YB-Eq4",2015-08-28,2015-08-28,"YB","E","4","Lim","Limpets","Type 12",85,0.0875,971.428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","6%","Counts likely low due to blur. Barnacle counts likely low due to recruit size."
+"2015-08-28_YB-Eq8",2015-08-28,2015-08-28,"YB","E","8","Lim","Limpets","Type 12",55,0.0875,628.571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","2%",""
+"2015-08-28_YB-Eq3",2015-08-28,2015-08-28,"YB","E","3","Ls","Littorina_sitkana","Type 13",282,0.0875,3222.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2015-08-28_YB-Eq4",2015-08-28,2015-08-28,"YB","E","4","Ls","Littorina_sitkana","Type 13",281,0.0875,3211.42857142857,NA,"Stephanie Merhoff","Finished","Full","Full","6%","Counts likely low due to blur. Barnacle counts likely low due to recruit size."
+"2015-08-28_YB-Eq8",2015-08-28,2015-08-28,"YB","E","8","Ls","Littorina_sitkana","Type 13",185,0.0875,2114.28571428571,NA,"Stephanie Merhoff","Finished","Full","Full","2%",""
+"2015-08-28_YB-Eq3",2015-08-28,2015-08-28,"YB","E","3","Mc","Mytilus_californianus","Type 17",7,0.0875,80,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2015-08-28_YB-Eq4",2015-08-28,2015-08-28,"YB","E","4","Mc","Mytilus_californianus","Type 17",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","6%","Counts likely low due to blur. Barnacle counts likely low due to recruit size."
+"2015-08-28_YB-Eq8",2015-08-28,2015-08-28,"YB","E","8","Mc","Mytilus_californianus","Type 17",10,0.0875,114.285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","2%",""
+"2015-08-28_YB-Eq3",2015-08-28,2015-08-28,"YB","E","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2015-08-28_YB-Eq4",2015-08-28,2015-08-28,"YB","E","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","6%","Counts likely low due to blur. Barnacle counts likely low due to recruit size."
+"2015-08-28_YB-Eq8",2015-08-28,2015-08-28,"YB","E","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%",""
+"2015-08-28_YB-Eq3",2015-08-28,2015-08-28,"YB","E","3","Myt","Mytilus_spp","Type 7",6,0.0875,68.5714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2015-08-28_YB-Eq4",2015-08-28,2015-08-28,"YB","E","4","Myt","Mytilus_spp","Type 7",14,0.0875,160,NA,"Stephanie Merhoff","Finished","Full","Full","6%","Counts likely low due to blur. Barnacle counts likely low due to recruit size."
+"2015-08-28_YB-Eq8",2015-08-28,2015-08-28,"YB","E","8","Myt","Mytilus_spp","Type 7",5,0.0875,57.1428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","2%",""
+"2015-08-28_YB-Eq3",2015-08-28,2015-08-28,"YB","E","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2015-08-28_YB-Eq4",2015-08-28,2015-08-28,"YB","E","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","6%","Counts likely low due to blur. Barnacle counts likely low due to recruit size."
+"2015-08-28_YB-Eq8",2015-08-28,2015-08-28,"YB","E","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%",""
+"2015-08-28_YB-Eq3",2015-08-28,2015-08-28,"YB","E","3","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2015-08-28_YB-Eq4",2015-08-28,2015-08-28,"YB","E","4","Mt","Mytilus_trossulus","Type 15",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","6%","Counts likely low due to blur. Barnacle counts likely low due to recruit size."
+"2015-08-28_YB-Eq8",2015-08-28,2015-08-28,"YB","E","8","Mt","Mytilus_trossulus","Type 15",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","2%",""
+"2015-08-28_YB-Eq3",2015-08-28,2015-08-28,"YB","E","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2015-08-28_YB-Eq4",2015-08-28,2015-08-28,"YB","E","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","6%","Counts likely low due to blur. Barnacle counts likely low due to recruit size."
+"2015-08-28_YB-Eq8",2015-08-28,2015-08-28,"YB","E","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%",""
+"2015-08-28_YB-Eq3",2015-08-28,2015-08-28,"YB","E","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2015-08-28_YB-Eq4",2015-08-28,2015-08-28,"YB","E","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","6%","Counts likely low due to blur. Barnacle counts likely low due to recruit size."
+"2015-08-28_YB-Eq8",2015-08-28,2015-08-28,"YB","E","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%",""
+"2015-08-28_YB-Eq3",2015-08-28,2015-08-28,"YB","E","3","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2015-08-28_YB-Eq4",2015-08-28,2015-08-28,"YB","E","4","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","6%","Counts likely low due to blur. Barnacle counts likely low due to recruit size."
+"2015-08-28_YB-Eq8",2015-08-28,2015-08-28,"YB","E","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%",""
+"2015-08-28_YB-Eq3",2015-08-28,2015-08-28,"YB","E","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2015-08-28_YB-Eq4",2015-08-28,2015-08-28,"YB","E","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","6%","Counts likely low due to blur. Barnacle counts likely low due to recruit size."
+"2015-08-28_YB-Eq8",2015-08-28,2015-08-28,"YB","E","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%",""
+"2015-08-28_YB-Eq3",2015-08-28,2015-08-28,"YB","E","3","No","Nucella_ostrina","Type 9",7,0.0875,80,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2015-08-28_YB-Eq4",2015-08-28,2015-08-28,"YB","E","4","No","Nucella_ostrina","Type 9",5,0.0875,57.1428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","6%","Counts likely low due to blur. Barnacle counts likely low due to recruit size."
+"2015-08-28_YB-Eq8",2015-08-28,2015-08-28,"YB","E","8","No","Nucella_ostrina","Type 9",5,0.0875,57.1428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","2%",""
+"2015-08-28_YB-Eq3",2015-08-28,2015-08-28,"YB","E","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2015-08-28_YB-Eq4",2015-08-28,2015-08-28,"YB","E","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","6%","Counts likely low due to blur. Barnacle counts likely low due to recruit size."
+"2015-08-28_YB-Eq8",2015-08-28,2015-08-28,"YB","E","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%",""
+"2015-08-28_YB-Eq3",2015-08-28,2015-08-28,"YB","E","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2015-08-28_YB-Eq4",2015-08-28,2015-08-28,"YB","E","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","6%","Counts likely low due to blur. Barnacle counts likely low due to recruit size."
+"2015-08-28_YB-Eq8",2015-08-28,2015-08-28,"YB","E","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%",""
+"2015-08-28_YB-Eq3",2015-08-28,2015-08-28,"YB","E","3","Pp","Pollicipes_polymerus","Type 11",467,0.0875,5337.14285714286,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2015-08-28_YB-Eq4",2015-08-28,2015-08-28,"YB","E","4","Pp","Pollicipes_polymerus","Type 11",793,0.0875,9062.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","6%","Counts likely low due to blur. Barnacle counts likely low due to recruit size."
+"2015-08-28_YB-Eq8",2015-08-28,2015-08-28,"YB","E","8","Pp","Pollicipes_polymerus","Type 11",1138,0.0875,13005.7142857143,NA,"Stephanie Merhoff","Finished","Full","Full","2%",""
+"2015-08-28_YB-Eq3",2015-08-28,2015-08-28,"YB","E","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2015-08-28_YB-Eq4",2015-08-28,2015-08-28,"YB","E","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","6%","Counts likely low due to blur. Barnacle counts likely low due to recruit size."
+"2015-08-28_YB-Eq8",2015-08-28,2015-08-28,"YB","E","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%",""
+"2015-08-28_YB-Eq3",2015-08-28,2015-08-28,"YB","E","3","Sc","Semibalanus_cariosus","Type 5",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2015-08-28_YB-Eq4",2015-08-28,2015-08-28,"YB","E","4","Sc","Semibalanus_cariosus","Type 5",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","6%","Counts likely low due to blur. Barnacle counts likely low due to recruit size."
+"2015-08-28_YB-Eq8",2015-08-28,2015-08-28,"YB","E","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%",""
+"2015-08-28_YB-Eq3",2015-08-28,2015-08-28,"YB","E","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2015-08-28_YB-Eq4",2015-08-28,2015-08-28,"YB","E","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","6%","Counts likely low due to blur. Barnacle counts likely low due to recruit size."
+"2015-08-28_YB-Eq8",2015-08-28,2015-08-28,"YB","E","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","2%",""
+"2015-08-28_YB-Fq4",2015-08-28,2015-08-28,"YB","F","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts may be low due to glare and blur."
+"2015-08-28_YB-Fq5",2015-08-28,2015-08-28,"YB","F","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts may be low due to glare and blur."
+"2015-08-28_YB-Fq6",2015-08-28,2015-08-28,"YB","F","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare and blur."
+"2015-08-28_YB-Fq4",2015-08-28,2015-08-28,"YB","F","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts may be low due to glare and blur."
+"2015-08-28_YB-Fq5",2015-08-28,2015-08-28,"YB","F","5","Ae","Anemones","Type 14",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts may be low due to glare and blur."
+"2015-08-28_YB-Fq6",2015-08-28,2015-08-28,"YB","F","6","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare and blur."
+"2015-08-28_YB-Fq4",2015-08-28,2015-08-28,"YB","F","4","Bg","Balanus_glandula","Type 1",1592,0.0875,18194.2857142857,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts may be low due to glare and blur."
+"2015-08-28_YB-Fq5",2015-08-28,2015-08-28,"YB","F","5","Bg","Balanus_glandula","Type 1",187,0.0875,2137.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts may be low due to glare and blur."
+"2015-08-28_YB-Fq6",2015-08-28,2015-08-28,"YB","F","6","Bg","Balanus_glandula","Type 1",343,0.0875,3920,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare and blur."
+"2015-08-28_YB-Fq4",2015-08-28,2015-08-28,"YB","F","4","BgD","Balanus_glandula_(dead)","Type 2",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts may be low due to glare and blur."
+"2015-08-28_YB-Fq5",2015-08-28,2015-08-28,"YB","F","5","BgD","Balanus_glandula_(dead)","Type 2",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts may be low due to glare and blur."
+"2015-08-28_YB-Fq6",2015-08-28,2015-08-28,"YB","F","6","BgD","Balanus_glandula_(dead)","Type 2",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare and blur."
+"2015-08-28_YB-Fq4",2015-08-28,2015-08-28,"YB","F","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts may be low due to glare and blur."
+"2015-08-28_YB-Fq5",2015-08-28,2015-08-28,"YB","F","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts may be low due to glare and blur."
+"2015-08-28_YB-Fq6",2015-08-28,2015-08-28,"YB","F","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare and blur."
+"2015-08-28_YB-Fq4",2015-08-28,2015-08-28,"YB","F","4","Cth","Chthamalus_dalli","Type 3",2475,0.0875,28285.7142857143,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts may be low due to glare and blur."
+"2015-08-28_YB-Fq5",2015-08-28,2015-08-28,"YB","F","5","Cth","Chthamalus_dalli","Type 3",719,0.0875,8217.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts may be low due to glare and blur."
+"2015-08-28_YB-Fq6",2015-08-28,2015-08-28,"YB","F","6","Cth","Chthamalus_dalli","Type 3",483,0.0875,5520,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare and blur."
+"2015-08-28_YB-Fq4",2015-08-28,2015-08-28,"YB","F","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts may be low due to glare and blur."
+"2015-08-28_YB-Fq5",2015-08-28,2015-08-28,"YB","F","5","CthD","Chthamalus_dalli (dead)","Type 4",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts may be low due to glare and blur."
+"2015-08-28_YB-Fq6",2015-08-28,2015-08-28,"YB","F","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare and blur."
+"2015-08-28_YB-Fq4",2015-08-28,2015-08-28,"YB","F","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts may be low due to glare and blur."
+"2015-08-28_YB-Fq5",2015-08-28,2015-08-28,"YB","F","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts may be low due to glare and blur."
+"2015-08-28_YB-Fq6",2015-08-28,2015-08-28,"YB","F","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare and blur."
+"2015-08-28_YB-Fq4",2015-08-28,2015-08-28,"YB","F","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts may be low due to glare and blur."
+"2015-08-28_YB-Fq5",2015-08-28,2015-08-28,"YB","F","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts may be low due to glare and blur."
+"2015-08-28_YB-Fq6",2015-08-28,2015-08-28,"YB","F","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare and blur."
+"2015-08-28_YB-Fq4",2015-08-28,2015-08-28,"YB","F","4","Lim","Limpets","Type 12",282,0.0875,3222.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts may be low due to glare and blur."
+"2015-08-28_YB-Fq5",2015-08-28,2015-08-28,"YB","F","5","Lim","Limpets","Type 12",342,0.0875,3908.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts may be low due to glare and blur."
+"2015-08-28_YB-Fq6",2015-08-28,2015-08-28,"YB","F","6","Lim","Limpets","Type 12",378,0.0875,4320,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare and blur."
+"2015-08-28_YB-Fq4",2015-08-28,2015-08-28,"YB","F","4","Ls","Littorina_sitkana","Type 13",206,0.0875,2354.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts may be low due to glare and blur."
+"2015-08-28_YB-Fq5",2015-08-28,2015-08-28,"YB","F","5","Ls","Littorina_sitkana","Type 13",252,0.0875,2880,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts may be low due to glare and blur."
+"2015-08-28_YB-Fq6",2015-08-28,2015-08-28,"YB","F","6","Ls","Littorina_sitkana","Type 13",130,0.0875,1485.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare and blur."
+"2015-08-28_YB-Fq4",2015-08-28,2015-08-28,"YB","F","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts may be low due to glare and blur."
+"2015-08-28_YB-Fq5",2015-08-28,2015-08-28,"YB","F","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts may be low due to glare and blur."
+"2015-08-28_YB-Fq6",2015-08-28,2015-08-28,"YB","F","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare and blur."
+"2015-08-28_YB-Fq4",2015-08-28,2015-08-28,"YB","F","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts may be low due to glare and blur."
+"2015-08-28_YB-Fq5",2015-08-28,2015-08-28,"YB","F","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts may be low due to glare and blur."
+"2015-08-28_YB-Fq6",2015-08-28,2015-08-28,"YB","F","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare and blur."
+"2015-08-28_YB-Fq4",2015-08-28,2015-08-28,"YB","F","4","Myt","Mytilus_spp","Type 7",26,0.0875,297.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts may be low due to glare and blur."
+"2015-08-28_YB-Fq5",2015-08-28,2015-08-28,"YB","F","5","Myt","Mytilus_spp","Type 7",13,0.0875,148.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts may be low due to glare and blur."
+"2015-08-28_YB-Fq6",2015-08-28,2015-08-28,"YB","F","6","Myt","Mytilus_spp","Type 7",34,0.0875,388.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare and blur."
+"2015-08-28_YB-Fq4",2015-08-28,2015-08-28,"YB","F","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts may be low due to glare and blur."
+"2015-08-28_YB-Fq5",2015-08-28,2015-08-28,"YB","F","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts may be low due to glare and blur."
+"2015-08-28_YB-Fq6",2015-08-28,2015-08-28,"YB","F","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare and blur."
+"2015-08-28_YB-Fq4",2015-08-28,2015-08-28,"YB","F","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts may be low due to glare and blur."
+"2015-08-28_YB-Fq5",2015-08-28,2015-08-28,"YB","F","5","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts may be low due to glare and blur."
+"2015-08-28_YB-Fq6",2015-08-28,2015-08-28,"YB","F","6","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare and blur."
+"2015-08-28_YB-Fq4",2015-08-28,2015-08-28,"YB","F","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts may be low due to glare and blur."
+"2015-08-28_YB-Fq5",2015-08-28,2015-08-28,"YB","F","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts may be low due to glare and blur."
+"2015-08-28_YB-Fq6",2015-08-28,2015-08-28,"YB","F","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare and blur."
+"2015-08-28_YB-Fq4",2015-08-28,2015-08-28,"YB","F","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts may be low due to glare and blur."
+"2015-08-28_YB-Fq5",2015-08-28,2015-08-28,"YB","F","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts may be low due to glare and blur."
+"2015-08-28_YB-Fq6",2015-08-28,2015-08-28,"YB","F","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare and blur."
+"2015-08-28_YB-Fq4",2015-08-28,2015-08-28,"YB","F","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts may be low due to glare and blur."
+"2015-08-28_YB-Fq5",2015-08-28,2015-08-28,"YB","F","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts may be low due to glare and blur."
+"2015-08-28_YB-Fq6",2015-08-28,2015-08-28,"YB","F","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare and blur."
+"2015-08-28_YB-Fq4",2015-08-28,2015-08-28,"YB","F","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts may be low due to glare and blur."
+"2015-08-28_YB-Fq5",2015-08-28,2015-08-28,"YB","F","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts may be low due to glare and blur."
+"2015-08-28_YB-Fq6",2015-08-28,2015-08-28,"YB","F","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare and blur."
+"2015-08-28_YB-Fq4",2015-08-28,2015-08-28,"YB","F","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts may be low due to glare and blur."
+"2015-08-28_YB-Fq5",2015-08-28,2015-08-28,"YB","F","5","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts may be low due to glare and blur."
+"2015-08-28_YB-Fq6",2015-08-28,2015-08-28,"YB","F","6","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare and blur."
+"2015-08-28_YB-Fq4",2015-08-28,2015-08-28,"YB","F","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts may be low due to glare and blur."
+"2015-08-28_YB-Fq5",2015-08-28,2015-08-28,"YB","F","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts may be low due to glare and blur."
+"2015-08-28_YB-Fq6",2015-08-28,2015-08-28,"YB","F","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare and blur."
+"2015-08-28_YB-Fq4",2015-08-28,2015-08-28,"YB","F","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts may be low due to glare and blur."
+"2015-08-28_YB-Fq5",2015-08-28,2015-08-28,"YB","F","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts may be low due to glare and blur."
+"2015-08-28_YB-Fq6",2015-08-28,2015-08-28,"YB","F","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare and blur."
+"2015-08-28_YB-Fq4",2015-08-28,2015-08-28,"YB","F","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts may be low due to glare and blur."
+"2015-08-28_YB-Fq5",2015-08-28,2015-08-28,"YB","F","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts may be low due to glare and blur."
+"2015-08-28_YB-Fq6",2015-08-28,2015-08-28,"YB","F","6","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare and blur."
+"2015-08-28_YB-Fq4",2015-08-28,2015-08-28,"YB","F","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts may be low due to glare and blur."
+"2015-08-28_YB-Fq5",2015-08-28,2015-08-28,"YB","F","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts may be low due to glare and blur."
+"2015-08-28_YB-Fq6",2015-08-28,2015-08-28,"YB","F","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare and blur."
+"2015-08-28_YB-Fq4",2015-08-28,2015-08-28,"YB","F","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts may be low due to glare and blur."
+"2015-08-28_YB-Fq5",2015-08-28,2015-08-28,"YB","F","5","Sc","Semibalanus_cariosus","Type 5",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts may be low due to glare and blur."
+"2015-08-28_YB-Fq6",2015-08-28,2015-08-28,"YB","F","6","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare and blur."
+"2015-08-28_YB-Fq4",2015-08-28,2015-08-28,"YB","F","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts may be low due to glare and blur."
+"2015-08-28_YB-Fq5",2015-08-28,2015-08-28,"YB","F","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts may be low due to glare and blur."
+"2015-08-28_YB-Fq6",2015-08-28,2015-08-28,"YB","F","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare and blur."
+"2015-08-28_YB-Gq3",2015-08-28,2015-08-28,"YB","G","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","17%","Sand cover prominent in plot"
+"2015-08-28_YB-Gq5",2015-08-28,2015-08-28,"YB","G","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts low due to sand cover and glare. Sand covering ~20%"
+"2015-08-28_YB-Gq8",2015-08-28,2015-08-28,"YB","G","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to blur and sand. ~10% sand cover."
+"2015-08-28_YB-Gq3",2015-08-28,2015-08-28,"YB","G","3","Ae","Anemones","Type 14",88,0.0875,1005.71428571429,NA,"Celeste Moen","Finished","Full","Full","17%","Sand cover prominent in plot"
+"2015-08-28_YB-Gq5",2015-08-28,2015-08-28,"YB","G","5","Ae","Anemones","Type 14",84,0.0875,960,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts low due to sand cover and glare. Sand covering ~20%"
+"2015-08-28_YB-Gq8",2015-08-28,2015-08-28,"YB","G","8","Ae","Anemones","Type 14",67,0.0875,765.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to blur and sand. ~10% sand cover."
+"2015-08-28_YB-Gq3",2015-08-28,2015-08-28,"YB","G","3","Bg","Balanus_glandula","Type 1",23,0.0875,262.857142857143,NA,"Celeste Moen","Finished","Full","Full","17%","Sand cover prominent in plot"
+"2015-08-28_YB-Gq5",2015-08-28,2015-08-28,"YB","G","5","Bg","Balanus_glandula","Type 1",16,0.0875,182.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts low due to sand cover and glare. Sand covering ~20%"
+"2015-08-28_YB-Gq8",2015-08-28,2015-08-28,"YB","G","8","Bg","Balanus_glandula","Type 1",35,0.0875,400,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to blur and sand. ~10% sand cover."
+"2015-08-28_YB-Gq3",2015-08-28,2015-08-28,"YB","G","3","BgD","Balanus_glandula_(dead)","Type 2",12,0.0875,137.142857142857,NA,"Celeste Moen","Finished","Full","Full","17%","Sand cover prominent in plot"
+"2015-08-28_YB-Gq5",2015-08-28,2015-08-28,"YB","G","5","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts low due to sand cover and glare. Sand covering ~20%"
+"2015-08-28_YB-Gq8",2015-08-28,2015-08-28,"YB","G","8","BgD","Balanus_glandula_(dead)","Type 2",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to blur and sand. ~10% sand cover."
+"2015-08-28_YB-Gq3",2015-08-28,2015-08-28,"YB","G","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","17%","Sand cover prominent in plot"
+"2015-08-28_YB-Gq5",2015-08-28,2015-08-28,"YB","G","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts low due to sand cover and glare. Sand covering ~20%"
+"2015-08-28_YB-Gq8",2015-08-28,2015-08-28,"YB","G","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to blur and sand. ~10% sand cover."
+"2015-08-28_YB-Gq3",2015-08-28,2015-08-28,"YB","G","3","Cth","Chthamalus_dalli","Type 3",3,0.0875,34.2857142857143,NA,"Celeste Moen","Finished","Full","Full","17%","Sand cover prominent in plot"
+"2015-08-28_YB-Gq5",2015-08-28,2015-08-28,"YB","G","5","Cth","Chthamalus_dalli","Type 3",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts low due to sand cover and glare. Sand covering ~20%"
+"2015-08-28_YB-Gq8",2015-08-28,2015-08-28,"YB","G","8","Cth","Chthamalus_dalli","Type 3",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to blur and sand. ~10% sand cover."
+"2015-08-28_YB-Gq3",2015-08-28,2015-08-28,"YB","G","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","17%","Sand cover prominent in plot"
+"2015-08-28_YB-Gq5",2015-08-28,2015-08-28,"YB","G","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts low due to sand cover and glare. Sand covering ~20%"
+"2015-08-28_YB-Gq8",2015-08-28,2015-08-28,"YB","G","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to blur and sand. ~10% sand cover."
+"2015-08-28_YB-Gq3",2015-08-28,2015-08-28,"YB","G","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","17%","Sand cover prominent in plot"
+"2015-08-28_YB-Gq5",2015-08-28,2015-08-28,"YB","G","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts low due to sand cover and glare. Sand covering ~20%"
+"2015-08-28_YB-Gq8",2015-08-28,2015-08-28,"YB","G","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to blur and sand. ~10% sand cover."
+"2015-08-28_YB-Gq3",2015-08-28,2015-08-28,"YB","G","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","17%","Sand cover prominent in plot"
+"2015-08-28_YB-Gq5",2015-08-28,2015-08-28,"YB","G","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts low due to sand cover and glare. Sand covering ~20%"
+"2015-08-28_YB-Gq8",2015-08-28,2015-08-28,"YB","G","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to blur and sand. ~10% sand cover."
+"2015-08-28_YB-Gq3",2015-08-28,2015-08-28,"YB","G","3","Lim","Limpets","Type 12",94,0.0875,1074.28571428571,NA,"Celeste Moen","Finished","Full","Full","17%","Sand cover prominent in plot"
+"2015-08-28_YB-Gq5",2015-08-28,2015-08-28,"YB","G","5","Lim","Limpets","Type 12",90,0.0875,1028.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts low due to sand cover and glare. Sand covering ~20%"
+"2015-08-28_YB-Gq8",2015-08-28,2015-08-28,"YB","G","8","Lim","Limpets","Type 12",106,0.0875,1211.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to blur and sand. ~10% sand cover."
+"2015-08-28_YB-Gq3",2015-08-28,2015-08-28,"YB","G","3","Ls","Littorina_sitkana","Type 13",173,0.0875,1977.14285714286,NA,"Celeste Moen","Finished","Full","Full","17%","Sand cover prominent in plot"
+"2015-08-28_YB-Gq5",2015-08-28,2015-08-28,"YB","G","5","Ls","Littorina_sitkana","Type 13",275,0.0875,3142.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts low due to sand cover and glare. Sand covering ~20%"
+"2015-08-28_YB-Gq8",2015-08-28,2015-08-28,"YB","G","8","Ls","Littorina_sitkana","Type 13",477,0.0875,5451.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to blur and sand. ~10% sand cover."
+"2015-08-28_YB-Gq3",2015-08-28,2015-08-28,"YB","G","3","Mc","Mytilus_californianus","Type 17",10,0.0875,114.285714285714,NA,"Celeste Moen","Finished","Full","Full","17%","Sand cover prominent in plot"
+"2015-08-28_YB-Gq5",2015-08-28,2015-08-28,"YB","G","5","Mc","Mytilus_californianus","Type 17",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts low due to sand cover and glare. Sand covering ~20%"
+"2015-08-28_YB-Gq8",2015-08-28,2015-08-28,"YB","G","8","Mc","Mytilus_californianus","Type 17",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to blur and sand. ~10% sand cover."
+"2015-08-28_YB-Gq3",2015-08-28,2015-08-28,"YB","G","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","17%","Sand cover prominent in plot"
+"2015-08-28_YB-Gq5",2015-08-28,2015-08-28,"YB","G","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts low due to sand cover and glare. Sand covering ~20%"
+"2015-08-28_YB-Gq8",2015-08-28,2015-08-28,"YB","G","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to blur and sand. ~10% sand cover."
+"2015-08-28_YB-Gq3",2015-08-28,2015-08-28,"YB","G","3","Myt","Mytilus_spp","Type 7",29,0.0875,331.428571428571,NA,"Celeste Moen","Finished","Full","Full","17%","Sand cover prominent in plot"
+"2015-08-28_YB-Gq5",2015-08-28,2015-08-28,"YB","G","5","Myt","Mytilus_spp","Type 7",38,0.0875,434.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts low due to sand cover and glare. Sand covering ~20%"
+"2015-08-28_YB-Gq8",2015-08-28,2015-08-28,"YB","G","8","Myt","Mytilus_spp","Type 7",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to blur and sand. ~10% sand cover."
+"2015-08-28_YB-Gq3",2015-08-28,2015-08-28,"YB","G","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","17%","Sand cover prominent in plot"
+"2015-08-28_YB-Gq5",2015-08-28,2015-08-28,"YB","G","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts low due to sand cover and glare. Sand covering ~20%"
+"2015-08-28_YB-Gq8",2015-08-28,2015-08-28,"YB","G","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to blur and sand. ~10% sand cover."
+"2015-08-28_YB-Gq3",2015-08-28,2015-08-28,"YB","G","3","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","17%","Sand cover prominent in plot"
+"2015-08-28_YB-Gq5",2015-08-28,2015-08-28,"YB","G","5","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts low due to sand cover and glare. Sand covering ~20%"
+"2015-08-28_YB-Gq8",2015-08-28,2015-08-28,"YB","G","8","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to blur and sand. ~10% sand cover."
+"2015-08-28_YB-Gq3",2015-08-28,2015-08-28,"YB","G","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","17%","Sand cover prominent in plot"
+"2015-08-28_YB-Gq5",2015-08-28,2015-08-28,"YB","G","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts low due to sand cover and glare. Sand covering ~20%"
+"2015-08-28_YB-Gq8",2015-08-28,2015-08-28,"YB","G","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to blur and sand. ~10% sand cover."
+"2015-08-28_YB-Gq3",2015-08-28,2015-08-28,"YB","G","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","17%","Sand cover prominent in plot"
+"2015-08-28_YB-Gq5",2015-08-28,2015-08-28,"YB","G","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts low due to sand cover and glare. Sand covering ~20%"
+"2015-08-28_YB-Gq8",2015-08-28,2015-08-28,"YB","G","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to blur and sand. ~10% sand cover."
+"2015-08-28_YB-Gq3",2015-08-28,2015-08-28,"YB","G","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","17%","Sand cover prominent in plot"
+"2015-08-28_YB-Gq5",2015-08-28,2015-08-28,"YB","G","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts low due to sand cover and glare. Sand covering ~20%"
+"2015-08-28_YB-Gq8",2015-08-28,2015-08-28,"YB","G","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to blur and sand. ~10% sand cover."
+"2015-08-28_YB-Gq3",2015-08-28,2015-08-28,"YB","G","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","17%","Sand cover prominent in plot"
+"2015-08-28_YB-Gq5",2015-08-28,2015-08-28,"YB","G","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts low due to sand cover and glare. Sand covering ~20%"
+"2015-08-28_YB-Gq8",2015-08-28,2015-08-28,"YB","G","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to blur and sand. ~10% sand cover."
+"2015-08-28_YB-Gq3",2015-08-28,2015-08-28,"YB","G","3","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Celeste Moen","Finished","Full","Full","17%","Sand cover prominent in plot"
+"2015-08-28_YB-Gq5",2015-08-28,2015-08-28,"YB","G","5","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts low due to sand cover and glare. Sand covering ~20%"
+"2015-08-28_YB-Gq8",2015-08-28,2015-08-28,"YB","G","8","No","Nucella_ostrina","Type 9",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to blur and sand. ~10% sand cover."
+"2015-08-28_YB-Gq3",2015-08-28,2015-08-28,"YB","G","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","17%","Sand cover prominent in plot"
+"2015-08-28_YB-Gq5",2015-08-28,2015-08-28,"YB","G","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts low due to sand cover and glare. Sand covering ~20%"
+"2015-08-28_YB-Gq8",2015-08-28,2015-08-28,"YB","G","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to blur and sand. ~10% sand cover."
+"2015-08-28_YB-Gq3",2015-08-28,2015-08-28,"YB","G","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","17%","Sand cover prominent in plot"
+"2015-08-28_YB-Gq5",2015-08-28,2015-08-28,"YB","G","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts low due to sand cover and glare. Sand covering ~20%"
+"2015-08-28_YB-Gq8",2015-08-28,2015-08-28,"YB","G","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to blur and sand. ~10% sand cover."
+"2015-08-28_YB-Gq3",2015-08-28,2015-08-28,"YB","G","3","Pp","Pollicipes_polymerus","Type 11",410,0.0875,4685.71428571429,NA,"Celeste Moen","Finished","Full","Full","17%","Sand cover prominent in plot"
+"2015-08-28_YB-Gq5",2015-08-28,2015-08-28,"YB","G","5","Pp","Pollicipes_polymerus","Type 11",949,0.0875,10845.7142857143,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts low due to sand cover and glare. Sand covering ~20%"
+"2015-08-28_YB-Gq8",2015-08-28,2015-08-28,"YB","G","8","Pp","Pollicipes_polymerus","Type 11",1549,0.0875,17702.8571428571,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to blur and sand. ~10% sand cover."
+"2015-08-28_YB-Gq3",2015-08-28,2015-08-28,"YB","G","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","17%","Sand cover prominent in plot"
+"2015-08-28_YB-Gq5",2015-08-28,2015-08-28,"YB","G","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts low due to sand cover and glare. Sand covering ~20%"
+"2015-08-28_YB-Gq8",2015-08-28,2015-08-28,"YB","G","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to blur and sand. ~10% sand cover."
+"2015-08-28_YB-Gq3",2015-08-28,2015-08-28,"YB","G","3","Sc","Semibalanus_cariosus","Type 5",11,0.0875,125.714285714286,NA,"Celeste Moen","Finished","Full","Full","17%","Sand cover prominent in plot"
+"2015-08-28_YB-Gq5",2015-08-28,2015-08-28,"YB","G","5","Sc","Semibalanus_cariosus","Type 5",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts low due to sand cover and glare. Sand covering ~20%"
+"2015-08-28_YB-Gq8",2015-08-28,2015-08-28,"YB","G","8","Sc","Semibalanus_cariosus","Type 5",11,0.0875,125.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to blur and sand. ~10% sand cover."
+"2015-08-28_YB-Gq3",2015-08-28,2015-08-28,"YB","G","3","ScD","Semibalanus_cariosus_(dead)","Type 6",2,0.0875,22.8571428571429,NA,"Celeste Moen","Finished","Full","Full","17%","Sand cover prominent in plot"
+"2015-08-28_YB-Gq5",2015-08-28,2015-08-28,"YB","G","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts low due to sand cover and glare. Sand covering ~20%"
+"2015-08-28_YB-Gq8",2015-08-28,2015-08-28,"YB","G","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts likely low due to blur and sand. ~10% sand cover."
+"2015-09-29_YB-Aq6",2015-09-29,2015-09-29,"YB","A","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2015-09-29_YB-Aq7",2015-09-29,2015-09-29,"YB","A","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-09-29_YB-Aq9",2015-09-29,2015-09-29,"YB","A","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-09-29_YB-Aq6",2015-09-29,2015-09-29,"YB","A","6","Ae","Anemones","Type 14",65,0.0875,742.857142857143,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2015-09-29_YB-Aq7",2015-09-29,2015-09-29,"YB","A","7","Ae","Anemones","Type 14",142,0.0875,1622.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-09-29_YB-Aq9",2015-09-29,2015-09-29,"YB","A","9","Ae","Anemones","Type 14",105,0.0875,1200,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-09-29_YB-Aq6",2015-09-29,2015-09-29,"YB","A","6","Bg","Balanus_glandula","Type 1",159,0.015625,10176,"c","Celeste Moen","Finished","Full","Cropped","0%",""
+"2015-09-29_YB-Aq7",2015-09-29,2015-09-29,"YB","A","7","Bg","Balanus_glandula","Type 1",1359,0.0875,15531.4285714286,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-09-29_YB-Aq9",2015-09-29,2015-09-29,"YB","A","9","Bg","Balanus_glandula","Type 1",639,0.0875,7302.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-09-29_YB-Aq6",2015-09-29,2015-09-29,"YB","A","6","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Celeste Moen","Finished","Full","Cropped","0%",""
+"2015-09-29_YB-Aq7",2015-09-29,2015-09-29,"YB","A","7","BgD","Balanus_glandula_(dead)","Type 2",26,0.0875,297.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-09-29_YB-Aq9",2015-09-29,2015-09-29,"YB","A","9","BgD","Balanus_glandula_(dead)","Type 2",21,0.0875,240,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-09-29_YB-Aq6",2015-09-29,2015-09-29,"YB","A","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2015-09-29_YB-Aq7",2015-09-29,2015-09-29,"YB","A","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-09-29_YB-Aq9",2015-09-29,2015-09-29,"YB","A","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-09-29_YB-Aq6",2015-09-29,2015-09-29,"YB","A","6","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Celeste Moen","Finished","Full","Cropped","0%",""
+"2015-09-29_YB-Aq7",2015-09-29,2015-09-29,"YB","A","7","Cth","Chthamalus_dalli","Type 3",105,0.0875,1200,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-09-29_YB-Aq9",2015-09-29,2015-09-29,"YB","A","9","Cth","Chthamalus_dalli","Type 3",775,0.0875,8857.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-09-29_YB-Aq6",2015-09-29,2015-09-29,"YB","A","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Celeste Moen","Finished","Full","Cropped","0%",""
+"2015-09-29_YB-Aq7",2015-09-29,2015-09-29,"YB","A","7","CthD","Chthamalus_dalli (dead)","Type 4",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-09-29_YB-Aq9",2015-09-29,2015-09-29,"YB","A","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-09-29_YB-Aq6",2015-09-29,2015-09-29,"YB","A","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2015-09-29_YB-Aq7",2015-09-29,2015-09-29,"YB","A","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-09-29_YB-Aq9",2015-09-29,2015-09-29,"YB","A","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-09-29_YB-Aq6",2015-09-29,2015-09-29,"YB","A","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2015-09-29_YB-Aq7",2015-09-29,2015-09-29,"YB","A","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-09-29_YB-Aq9",2015-09-29,2015-09-29,"YB","A","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-09-29_YB-Aq6",2015-09-29,2015-09-29,"YB","A","6","Lim","Limpets","Type 12",117,0.0875,1337.14285714286,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2015-09-29_YB-Aq7",2015-09-29,2015-09-29,"YB","A","7","Lim","Limpets","Type 12",173,0.0875,1977.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-09-29_YB-Aq9",2015-09-29,2015-09-29,"YB","A","9","Lim","Limpets","Type 12",421,0.0875,4811.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-09-29_YB-Aq6",2015-09-29,2015-09-29,"YB","A","6","Ls","Littorina_sitkana","Type 13",63,0.0875,720,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2015-09-29_YB-Aq7",2015-09-29,2015-09-29,"YB","A","7","Ls","Littorina_sitkana","Type 13",346,0.0875,3954.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-09-29_YB-Aq9",2015-09-29,2015-09-29,"YB","A","9","Ls","Littorina_sitkana","Type 13",61,0.0875,697.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-09-29_YB-Aq6",2015-09-29,2015-09-29,"YB","A","6","Mc","Mytilus_californianus","Type 17",1,0.0875,11.4285714285714,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2015-09-29_YB-Aq7",2015-09-29,2015-09-29,"YB","A","7","Mc","Mytilus_californianus","Type 17",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-09-29_YB-Aq9",2015-09-29,2015-09-29,"YB","A","9","Mc","Mytilus_californianus","Type 17",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-09-29_YB-Aq6",2015-09-29,2015-09-29,"YB","A","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2015-09-29_YB-Aq7",2015-09-29,2015-09-29,"YB","A","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-09-29_YB-Aq9",2015-09-29,2015-09-29,"YB","A","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-09-29_YB-Aq6",2015-09-29,2015-09-29,"YB","A","6","Myt","Mytilus_spp","Type 7",109,0.0875,1245.71428571429,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2015-09-29_YB-Aq7",2015-09-29,2015-09-29,"YB","A","7","Myt","Mytilus_spp","Type 7",92,0.0875,1051.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-09-29_YB-Aq9",2015-09-29,2015-09-29,"YB","A","9","Myt","Mytilus_spp","Type 7",19,0.0875,217.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-09-29_YB-Aq6",2015-09-29,2015-09-29,"YB","A","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2015-09-29_YB-Aq7",2015-09-29,2015-09-29,"YB","A","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-09-29_YB-Aq9",2015-09-29,2015-09-29,"YB","A","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-09-29_YB-Aq6",2015-09-29,2015-09-29,"YB","A","6","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2015-09-29_YB-Aq7",2015-09-29,2015-09-29,"YB","A","7","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-09-29_YB-Aq9",2015-09-29,2015-09-29,"YB","A","9","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-09-29_YB-Aq6",2015-09-29,2015-09-29,"YB","A","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2015-09-29_YB-Aq7",2015-09-29,2015-09-29,"YB","A","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-09-29_YB-Aq9",2015-09-29,2015-09-29,"YB","A","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-09-29_YB-Aq6",2015-09-29,2015-09-29,"YB","A","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2015-09-29_YB-Aq7",2015-09-29,2015-09-29,"YB","A","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-09-29_YB-Aq9",2015-09-29,2015-09-29,"YB","A","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-09-29_YB-Aq6",2015-09-29,2015-09-29,"YB","A","6","Nc","Nucella_canaliculata","Type 10",2,0.0875,22.8571428571429,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2015-09-29_YB-Aq7",2015-09-29,2015-09-29,"YB","A","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-09-29_YB-Aq9",2015-09-29,2015-09-29,"YB","A","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-09-29_YB-Aq6",2015-09-29,2015-09-29,"YB","A","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2015-09-29_YB-Aq7",2015-09-29,2015-09-29,"YB","A","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-09-29_YB-Aq9",2015-09-29,2015-09-29,"YB","A","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-09-29_YB-Aq6",2015-09-29,2015-09-29,"YB","A","6","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2015-09-29_YB-Aq7",2015-09-29,2015-09-29,"YB","A","7","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-09-29_YB-Aq9",2015-09-29,2015-09-29,"YB","A","9","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-09-29_YB-Aq6",2015-09-29,2015-09-29,"YB","A","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2015-09-29_YB-Aq7",2015-09-29,2015-09-29,"YB","A","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-09-29_YB-Aq9",2015-09-29,2015-09-29,"YB","A","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-09-29_YB-Aq6",2015-09-29,2015-09-29,"YB","A","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2015-09-29_YB-Aq7",2015-09-29,2015-09-29,"YB","A","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-09-29_YB-Aq9",2015-09-29,2015-09-29,"YB","A","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-09-29_YB-Aq6",2015-09-29,2015-09-29,"YB","A","6","Pp","Pollicipes_polymerus","Type 11",679,0.0875,7760,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2015-09-29_YB-Aq7",2015-09-29,2015-09-29,"YB","A","7","Pp","Pollicipes_polymerus","Type 11",1610,0.0875,18400,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-09-29_YB-Aq9",2015-09-29,2015-09-29,"YB","A","9","Pp","Pollicipes_polymerus","Type 11",1188,0.0875,13577.1428571429,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-09-29_YB-Aq6",2015-09-29,2015-09-29,"YB","A","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2015-09-29_YB-Aq7",2015-09-29,2015-09-29,"YB","A","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-09-29_YB-Aq9",2015-09-29,2015-09-29,"YB","A","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-09-29_YB-Aq6",2015-09-29,2015-09-29,"YB","A","6","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2015-09-29_YB-Aq7",2015-09-29,2015-09-29,"YB","A","7","Sc","Semibalanus_cariosus","Type 5",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-09-29_YB-Aq9",2015-09-29,2015-09-29,"YB","A","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-09-29_YB-Aq6",2015-09-29,2015-09-29,"YB","A","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","0%",""
+"2015-09-29_YB-Aq7",2015-09-29,2015-09-29,"YB","A","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-09-29_YB-Aq9",2015-09-29,2015-09-29,"YB","A","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-09-29_YB-ABq1",2015-09-29,2015-09-29,"YB","AB","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-09-29_YB-ABq2",2015-09-29,2015-09-29,"YB","AB","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to glare."
+"2015-09-29_YB-ABq4",2015-09-29,2015-09-29,"YB","AB","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to algae and glare."
+"2015-09-29_YB-ABq1",2015-09-29,2015-09-29,"YB","AB","1","Ae","Anemones","Type 14",57,0.0875,651.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-09-29_YB-ABq2",2015-09-29,2015-09-29,"YB","AB","2","Ae","Anemones","Type 14",125,0.0875,1428.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to glare."
+"2015-09-29_YB-ABq4",2015-09-29,2015-09-29,"YB","AB","4","Ae","Anemones","Type 14",48,0.0875,548.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to algae and glare."
+"2015-09-29_YB-ABq1",2015-09-29,2015-09-29,"YB","AB","1","Bg","Balanus_glandula","Type 1",90,0.0875,1028.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-09-29_YB-ABq2",2015-09-29,2015-09-29,"YB","AB","2","Bg","Balanus_glandula","Type 1",153,0.0875,1748.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to glare."
+"2015-09-29_YB-ABq4",2015-09-29,2015-09-29,"YB","AB","4","Bg","Balanus_glandula","Type 1",89,0.0875,1017.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to algae and glare."
+"2015-09-29_YB-ABq1",2015-09-29,2015-09-29,"YB","AB","1","BgD","Balanus_glandula_(dead)","Type 2",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-09-29_YB-ABq2",2015-09-29,2015-09-29,"YB","AB","2","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to glare."
+"2015-09-29_YB-ABq4",2015-09-29,2015-09-29,"YB","AB","4","BgD","Balanus_glandula_(dead)","Type 2",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to algae and glare."
+"2015-09-29_YB-ABq1",2015-09-29,2015-09-29,"YB","AB","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-09-29_YB-ABq2",2015-09-29,2015-09-29,"YB","AB","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to glare."
+"2015-09-29_YB-ABq4",2015-09-29,2015-09-29,"YB","AB","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to algae and glare."
+"2015-09-29_YB-ABq1",2015-09-29,2015-09-29,"YB","AB","1","Cth","Chthamalus_dalli","Type 3",23,0.0875,262.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-09-29_YB-ABq2",2015-09-29,2015-09-29,"YB","AB","2","Cth","Chthamalus_dalli","Type 3",9,0.0875,102.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to glare."
+"2015-09-29_YB-ABq4",2015-09-29,2015-09-29,"YB","AB","4","Cth","Chthamalus_dalli","Type 3",15,0.0875,171.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to algae and glare."
+"2015-09-29_YB-ABq1",2015-09-29,2015-09-29,"YB","AB","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-09-29_YB-ABq2",2015-09-29,2015-09-29,"YB","AB","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to glare."
+"2015-09-29_YB-ABq4",2015-09-29,2015-09-29,"YB","AB","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to algae and glare."
+"2015-09-29_YB-ABq1",2015-09-29,2015-09-29,"YB","AB","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-09-29_YB-ABq2",2015-09-29,2015-09-29,"YB","AB","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to glare."
+"2015-09-29_YB-ABq4",2015-09-29,2015-09-29,"YB","AB","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to algae and glare."
+"2015-09-29_YB-ABq1",2015-09-29,2015-09-29,"YB","AB","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-09-29_YB-ABq2",2015-09-29,2015-09-29,"YB","AB","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to glare."
+"2015-09-29_YB-ABq4",2015-09-29,2015-09-29,"YB","AB","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to algae and glare."
+"2015-09-29_YB-ABq1",2015-09-29,2015-09-29,"YB","AB","1","Lim","Limpets","Type 12",142,0.0875,1622.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-09-29_YB-ABq2",2015-09-29,2015-09-29,"YB","AB","2","Lim","Limpets","Type 12",122,0.0875,1394.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to glare."
+"2015-09-29_YB-ABq4",2015-09-29,2015-09-29,"YB","AB","4","Lim","Limpets","Type 12",197,0.0875,2251.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to algae and glare."
+"2015-09-29_YB-ABq1",2015-09-29,2015-09-29,"YB","AB","1","Ls","Littorina_sitkana","Type 13",333,0.0875,3805.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-09-29_YB-ABq2",2015-09-29,2015-09-29,"YB","AB","2","Ls","Littorina_sitkana","Type 13",255,0.0875,2914.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to glare."
+"2015-09-29_YB-ABq4",2015-09-29,2015-09-29,"YB","AB","4","Ls","Littorina_sitkana","Type 13",196,0.0875,2240,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to algae and glare."
+"2015-09-29_YB-ABq1",2015-09-29,2015-09-29,"YB","AB","1","Mc","Mytilus_californianus","Type 17",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-09-29_YB-ABq2",2015-09-29,2015-09-29,"YB","AB","2","Mc","Mytilus_californianus","Type 17",10,0.0875,114.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to glare."
+"2015-09-29_YB-ABq4",2015-09-29,2015-09-29,"YB","AB","4","Mc","Mytilus_californianus","Type 17",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to algae and glare."
+"2015-09-29_YB-ABq1",2015-09-29,2015-09-29,"YB","AB","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-09-29_YB-ABq2",2015-09-29,2015-09-29,"YB","AB","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to glare."
+"2015-09-29_YB-ABq4",2015-09-29,2015-09-29,"YB","AB","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to algae and glare."
+"2015-09-29_YB-ABq1",2015-09-29,2015-09-29,"YB","AB","1","Myt","Mytilus_spp","Type 7",108,0.0875,1234.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-09-29_YB-ABq2",2015-09-29,2015-09-29,"YB","AB","2","Myt","Mytilus_spp","Type 7",45,0.0875,514.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to glare."
+"2015-09-29_YB-ABq4",2015-09-29,2015-09-29,"YB","AB","4","Myt","Mytilus_spp","Type 7",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to algae and glare."
+"2015-09-29_YB-ABq1",2015-09-29,2015-09-29,"YB","AB","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-09-29_YB-ABq2",2015-09-29,2015-09-29,"YB","AB","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to glare."
+"2015-09-29_YB-ABq4",2015-09-29,2015-09-29,"YB","AB","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to algae and glare."
+"2015-09-29_YB-ABq1",2015-09-29,2015-09-29,"YB","AB","1","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-09-29_YB-ABq2",2015-09-29,2015-09-29,"YB","AB","2","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to glare."
+"2015-09-29_YB-ABq4",2015-09-29,2015-09-29,"YB","AB","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to algae and glare."
+"2015-09-29_YB-ABq1",2015-09-29,2015-09-29,"YB","AB","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-09-29_YB-ABq2",2015-09-29,2015-09-29,"YB","AB","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to glare."
+"2015-09-29_YB-ABq4",2015-09-29,2015-09-29,"YB","AB","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to algae and glare."
+"2015-09-29_YB-ABq1",2015-09-29,2015-09-29,"YB","AB","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-09-29_YB-ABq2",2015-09-29,2015-09-29,"YB","AB","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to glare."
+"2015-09-29_YB-ABq4",2015-09-29,2015-09-29,"YB","AB","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to algae and glare."
+"2015-09-29_YB-ABq1",2015-09-29,2015-09-29,"YB","AB","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-09-29_YB-ABq2",2015-09-29,2015-09-29,"YB","AB","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to glare."
+"2015-09-29_YB-ABq4",2015-09-29,2015-09-29,"YB","AB","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to algae and glare."
+"2015-09-29_YB-ABq1",2015-09-29,2015-09-29,"YB","AB","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-09-29_YB-ABq2",2015-09-29,2015-09-29,"YB","AB","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to glare."
+"2015-09-29_YB-ABq4",2015-09-29,2015-09-29,"YB","AB","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to algae and glare."
+"2015-09-29_YB-ABq1",2015-09-29,2015-09-29,"YB","AB","1","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-09-29_YB-ABq2",2015-09-29,2015-09-29,"YB","AB","2","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to glare."
+"2015-09-29_YB-ABq4",2015-09-29,2015-09-29,"YB","AB","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to algae and glare."
+"2015-09-29_YB-ABq1",2015-09-29,2015-09-29,"YB","AB","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-09-29_YB-ABq2",2015-09-29,2015-09-29,"YB","AB","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to glare."
+"2015-09-29_YB-ABq4",2015-09-29,2015-09-29,"YB","AB","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to algae and glare."
+"2015-09-29_YB-ABq1",2015-09-29,2015-09-29,"YB","AB","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-09-29_YB-ABq2",2015-09-29,2015-09-29,"YB","AB","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to glare."
+"2015-09-29_YB-ABq4",2015-09-29,2015-09-29,"YB","AB","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to algae and glare."
+"2015-09-29_YB-ABq1",2015-09-29,2015-09-29,"YB","AB","1","Pp","Pollicipes_polymerus","Type 11",1000,0.0875,11428.5714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-09-29_YB-ABq2",2015-09-29,2015-09-29,"YB","AB","2","Pp","Pollicipes_polymerus","Type 11",679,0.0875,7760,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to glare."
+"2015-09-29_YB-ABq4",2015-09-29,2015-09-29,"YB","AB","4","Pp","Pollicipes_polymerus","Type 11",1049,0.0875,11988.5714285714,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to algae and glare."
+"2015-09-29_YB-ABq1",2015-09-29,2015-09-29,"YB","AB","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-09-29_YB-ABq2",2015-09-29,2015-09-29,"YB","AB","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to glare."
+"2015-09-29_YB-ABq4",2015-09-29,2015-09-29,"YB","AB","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to algae and glare."
+"2015-09-29_YB-ABq1",2015-09-29,2015-09-29,"YB","AB","1","Sc","Semibalanus_cariosus","Type 5",9,0.0875,102.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-09-29_YB-ABq2",2015-09-29,2015-09-29,"YB","AB","2","Sc","Semibalanus_cariosus","Type 5",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to glare."
+"2015-09-29_YB-ABq4",2015-09-29,2015-09-29,"YB","AB","4","Sc","Semibalanus_cariosus","Type 5",10,0.0875,114.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to algae and glare."
+"2015-09-29_YB-ABq1",2015-09-29,2015-09-29,"YB","AB","1","ScD","Semibalanus_cariosus_(dead)","Type 6",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare."
+"2015-09-29_YB-ABq2",2015-09-29,2015-09-29,"YB","AB","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to glare."
+"2015-09-29_YB-ABq4",2015-09-29,2015-09-29,"YB","AB","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts may be low due to algae and glare."
+"2015-09-29_YB-ACq4",2015-09-29,2015-09-29,"YB","AC","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts may be low due to glare."
+"2015-09-29_YB-ACq7",2015-09-29,2015-09-29,"YB","AC","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts may be low due to glare."
+"2015-09-29_YB-ACq8",2015-09-29,2015-09-29,"YB","AC","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and algae."
+"2015-09-29_YB-ACq4",2015-09-29,2015-09-29,"YB","AC","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts may be low due to glare."
+"2015-09-29_YB-ACq7",2015-09-29,2015-09-29,"YB","AC","7","Ae","Anemones","Type 14",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts may be low due to glare."
+"2015-09-29_YB-ACq8",2015-09-29,2015-09-29,"YB","AC","8","Ae","Anemones","Type 14",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and algae."
+"2015-09-29_YB-ACq4",2015-09-29,2015-09-29,"YB","AC","4","Bg","Balanus_glandula","Type 1",78,0.0875,891.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts may be low due to glare."
+"2015-09-29_YB-ACq7",2015-09-29,2015-09-29,"YB","AC","7","Bg","Balanus_glandula","Type 1",98,0.0875,1120,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts may be low due to glare."
+"2015-09-29_YB-ACq8",2015-09-29,2015-09-29,"YB","AC","8","Bg","Balanus_glandula","Type 1",45,0.0875,514.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and algae."
+"2015-09-29_YB-ACq4",2015-09-29,2015-09-29,"YB","AC","4","BgD","Balanus_glandula_(dead)","Type 2",28,0.0875,320,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts may be low due to glare."
+"2015-09-29_YB-ACq7",2015-09-29,2015-09-29,"YB","AC","7","BgD","Balanus_glandula_(dead)","Type 2",9,0.0875,102.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts may be low due to glare."
+"2015-09-29_YB-ACq8",2015-09-29,2015-09-29,"YB","AC","8","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and algae."
+"2015-09-29_YB-ACq4",2015-09-29,2015-09-29,"YB","AC","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts may be low due to glare."
+"2015-09-29_YB-ACq7",2015-09-29,2015-09-29,"YB","AC","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts may be low due to glare."
+"2015-09-29_YB-ACq8",2015-09-29,2015-09-29,"YB","AC","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and algae."
+"2015-09-29_YB-ACq4",2015-09-29,2015-09-29,"YB","AC","4","Cth","Chthamalus_dalli","Type 3",60,0.0875,685.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts may be low due to glare."
+"2015-09-29_YB-ACq7",2015-09-29,2015-09-29,"YB","AC","7","Cth","Chthamalus_dalli","Type 3",127,0.0875,1451.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts may be low due to glare."
+"2015-09-29_YB-ACq8",2015-09-29,2015-09-29,"YB","AC","8","Cth","Chthamalus_dalli","Type 3",21,0.0875,240,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and algae."
+"2015-09-29_YB-ACq4",2015-09-29,2015-09-29,"YB","AC","4","CthD","Chthamalus_dalli (dead)","Type 4",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts may be low due to glare."
+"2015-09-29_YB-ACq7",2015-09-29,2015-09-29,"YB","AC","7","CthD","Chthamalus_dalli (dead)","Type 4",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts may be low due to glare."
+"2015-09-29_YB-ACq8",2015-09-29,2015-09-29,"YB","AC","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and algae."
+"2015-09-29_YB-ACq4",2015-09-29,2015-09-29,"YB","AC","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts may be low due to glare."
+"2015-09-29_YB-ACq7",2015-09-29,2015-09-29,"YB","AC","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts may be low due to glare."
+"2015-09-29_YB-ACq8",2015-09-29,2015-09-29,"YB","AC","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and algae."
+"2015-09-29_YB-ACq4",2015-09-29,2015-09-29,"YB","AC","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts may be low due to glare."
+"2015-09-29_YB-ACq7",2015-09-29,2015-09-29,"YB","AC","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts may be low due to glare."
+"2015-09-29_YB-ACq8",2015-09-29,2015-09-29,"YB","AC","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and algae."
+"2015-09-29_YB-ACq4",2015-09-29,2015-09-29,"YB","AC","4","Lim","Limpets","Type 12",292,0.0875,3337.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts may be low due to glare."
+"2015-09-29_YB-ACq7",2015-09-29,2015-09-29,"YB","AC","7","Lim","Limpets","Type 12",244,0.0875,2788.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts may be low due to glare."
+"2015-09-29_YB-ACq8",2015-09-29,2015-09-29,"YB","AC","8","Lim","Limpets","Type 12",128,0.0875,1462.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and algae."
+"2015-09-29_YB-ACq4",2015-09-29,2015-09-29,"YB","AC","4","Ls","Littorina_sitkana","Type 13",157,0.0875,1794.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts may be low due to glare."
+"2015-09-29_YB-ACq7",2015-09-29,2015-09-29,"YB","AC","7","Ls","Littorina_sitkana","Type 13",150,0.0875,1714.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts may be low due to glare."
+"2015-09-29_YB-ACq8",2015-09-29,2015-09-29,"YB","AC","8","Ls","Littorina_sitkana","Type 13",259,0.0875,2960,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and algae."
+"2015-09-29_YB-ACq4",2015-09-29,2015-09-29,"YB","AC","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts may be low due to glare."
+"2015-09-29_YB-ACq7",2015-09-29,2015-09-29,"YB","AC","7","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts may be low due to glare."
+"2015-09-29_YB-ACq8",2015-09-29,2015-09-29,"YB","AC","8","Mc","Mytilus_californianus","Type 17",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and algae."
+"2015-09-29_YB-ACq4",2015-09-29,2015-09-29,"YB","AC","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts may be low due to glare."
+"2015-09-29_YB-ACq7",2015-09-29,2015-09-29,"YB","AC","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts may be low due to glare."
+"2015-09-29_YB-ACq8",2015-09-29,2015-09-29,"YB","AC","8","McD","Mytilus_californianus_(dead)","Type 18",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and algae."
+"2015-09-29_YB-ACq4",2015-09-29,2015-09-29,"YB","AC","4","Myt","Mytilus_spp","Type 7",258,0.0875,2948.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts may be low due to glare."
+"2015-09-29_YB-ACq7",2015-09-29,2015-09-29,"YB","AC","7","Myt","Mytilus_spp","Type 7",314,0.0875,3588.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts may be low due to glare."
+"2015-09-29_YB-ACq8",2015-09-29,2015-09-29,"YB","AC","8","Myt","Mytilus_spp","Type 7",138,0.0875,1577.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and algae."
+"2015-09-29_YB-ACq4",2015-09-29,2015-09-29,"YB","AC","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts may be low due to glare."
+"2015-09-29_YB-ACq7",2015-09-29,2015-09-29,"YB","AC","7","MytD","Mytilus_spp_(dead)","Type 8",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts may be low due to glare."
+"2015-09-29_YB-ACq8",2015-09-29,2015-09-29,"YB","AC","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and algae."
+"2015-09-29_YB-ACq4",2015-09-29,2015-09-29,"YB","AC","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts may be low due to glare."
+"2015-09-29_YB-ACq7",2015-09-29,2015-09-29,"YB","AC","7","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts may be low due to glare."
+"2015-09-29_YB-ACq8",2015-09-29,2015-09-29,"YB","AC","8","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and algae."
+"2015-09-29_YB-ACq4",2015-09-29,2015-09-29,"YB","AC","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts may be low due to glare."
+"2015-09-29_YB-ACq7",2015-09-29,2015-09-29,"YB","AC","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts may be low due to glare."
+"2015-09-29_YB-ACq8",2015-09-29,2015-09-29,"YB","AC","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and algae."
+"2015-09-29_YB-ACq4",2015-09-29,2015-09-29,"YB","AC","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts may be low due to glare."
+"2015-09-29_YB-ACq7",2015-09-29,2015-09-29,"YB","AC","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts may be low due to glare."
+"2015-09-29_YB-ACq8",2015-09-29,2015-09-29,"YB","AC","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and algae."
+"2015-09-29_YB-ACq4",2015-09-29,2015-09-29,"YB","AC","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts may be low due to glare."
+"2015-09-29_YB-ACq7",2015-09-29,2015-09-29,"YB","AC","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts may be low due to glare."
+"2015-09-29_YB-ACq8",2015-09-29,2015-09-29,"YB","AC","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and algae."
+"2015-09-29_YB-ACq4",2015-09-29,2015-09-29,"YB","AC","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts may be low due to glare."
+"2015-09-29_YB-ACq7",2015-09-29,2015-09-29,"YB","AC","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts may be low due to glare."
+"2015-09-29_YB-ACq8",2015-09-29,2015-09-29,"YB","AC","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and algae."
+"2015-09-29_YB-ACq4",2015-09-29,2015-09-29,"YB","AC","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts may be low due to glare."
+"2015-09-29_YB-ACq7",2015-09-29,2015-09-29,"YB","AC","7","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts may be low due to glare."
+"2015-09-29_YB-ACq8",2015-09-29,2015-09-29,"YB","AC","8","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and algae."
+"2015-09-29_YB-ACq4",2015-09-29,2015-09-29,"YB","AC","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts may be low due to glare."
+"2015-09-29_YB-ACq7",2015-09-29,2015-09-29,"YB","AC","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts may be low due to glare."
+"2015-09-29_YB-ACq8",2015-09-29,2015-09-29,"YB","AC","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and algae."
+"2015-09-29_YB-ACq4",2015-09-29,2015-09-29,"YB","AC","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts may be low due to glare."
+"2015-09-29_YB-ACq7",2015-09-29,2015-09-29,"YB","AC","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts may be low due to glare."
+"2015-09-29_YB-ACq8",2015-09-29,2015-09-29,"YB","AC","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and algae."
+"2015-09-29_YB-ACq4",2015-09-29,2015-09-29,"YB","AC","4","Pp","Pollicipes_polymerus","Type 11",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts may be low due to glare."
+"2015-09-29_YB-ACq7",2015-09-29,2015-09-29,"YB","AC","7","Pp","Pollicipes_polymerus","Type 11",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts may be low due to glare."
+"2015-09-29_YB-ACq8",2015-09-29,2015-09-29,"YB","AC","8","Pp","Pollicipes_polymerus","Type 11",86,0.0875,982.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and algae."
+"2015-09-29_YB-ACq4",2015-09-29,2015-09-29,"YB","AC","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts may be low due to glare."
+"2015-09-29_YB-ACq7",2015-09-29,2015-09-29,"YB","AC","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts may be low due to glare."
+"2015-09-29_YB-ACq8",2015-09-29,2015-09-29,"YB","AC","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and algae."
+"2015-09-29_YB-ACq4",2015-09-29,2015-09-29,"YB","AC","4","Sc","Semibalanus_cariosus","Type 5",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts may be low due to glare."
+"2015-09-29_YB-ACq7",2015-09-29,2015-09-29,"YB","AC","7","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts may be low due to glare."
+"2015-09-29_YB-ACq8",2015-09-29,2015-09-29,"YB","AC","8","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and algae."
+"2015-09-29_YB-ACq4",2015-09-29,2015-09-29,"YB","AC","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts may be low due to glare."
+"2015-09-29_YB-ACq7",2015-09-29,2015-09-29,"YB","AC","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%","Counts may be low due to glare."
+"2015-09-29_YB-ACq8",2015-09-29,2015-09-29,"YB","AC","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and algae."
+"2015-09-29_YB-ADq1",2015-09-29,2015-09-29,"YB","AD","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%","Counts may be low due to glare and P. polymerus recruits"
+"2015-09-29_YB-ADq5",2015-09-29,2015-09-29,"YB","AD","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts may be low due to glare."
+"2015-09-29_YB-ADq8",2015-09-29,2015-09-29,"YB","AD","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-09-29_YB-ADq1",2015-09-29,2015-09-29,"YB","AD","1","Ae","Anemones","Type 14",51,0.0875,582.857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","7%","Counts may be low due to glare and P. polymerus recruits"
+"2015-09-29_YB-ADq5",2015-09-29,2015-09-29,"YB","AD","5","Ae","Anemones","Type 14",160,0.0875,1828.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts may be low due to glare."
+"2015-09-29_YB-ADq8",2015-09-29,2015-09-29,"YB","AD","8","Ae","Anemones","Type 14",91,0.0875,1040,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-09-29_YB-ADq1",2015-09-29,2015-09-29,"YB","AD","1","Bg","Balanus_glandula","Type 1",481,0.015625,30784,"c","Beatriz Vaca","Finished","Full","Cropped","7%","Counts may be low due to glare and P. polymerus recruits"
+"2015-09-29_YB-ADq5",2015-09-29,2015-09-29,"YB","AD","5","Bg","Balanus_glandula","Type 1",458,0.0875,5234.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts may be low due to glare."
+"2015-09-29_YB-ADq8",2015-09-29,2015-09-29,"YB","AD","8","Bg","Balanus_glandula","Type 1",255,0.015625,16320,"c","Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-09-29_YB-ADq1",2015-09-29,2015-09-29,"YB","AD","1","BgD","Balanus_glandula_(dead)","Type 2",8,0.015625,512,"c","Beatriz Vaca","Finished","Full","Cropped","7%","Counts may be low due to glare and P. polymerus recruits"
+"2015-09-29_YB-ADq5",2015-09-29,2015-09-29,"YB","AD","5","BgD","Balanus_glandula_(dead)","Type 2",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts may be low due to glare."
+"2015-09-29_YB-ADq8",2015-09-29,2015-09-29,"YB","AD","8","BgD","Balanus_glandula_(dead)","Type 2",5,0.015625,320,"c","Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-09-29_YB-ADq1",2015-09-29,2015-09-29,"YB","AD","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%","Counts may be low due to glare and P. polymerus recruits"
+"2015-09-29_YB-ADq5",2015-09-29,2015-09-29,"YB","AD","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts may be low due to glare."
+"2015-09-29_YB-ADq8",2015-09-29,2015-09-29,"YB","AD","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-09-29_YB-ADq1",2015-09-29,2015-09-29,"YB","AD","1","Cth","Chthamalus_dalli","Type 3",15,0.015625,960,"c","Beatriz Vaca","Finished","Full","Cropped","7%","Counts may be low due to glare and P. polymerus recruits"
+"2015-09-29_YB-ADq5",2015-09-29,2015-09-29,"YB","AD","5","Cth","Chthamalus_dalli","Type 3",45,0.0875,514.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts may be low due to glare."
+"2015-09-29_YB-ADq8",2015-09-29,2015-09-29,"YB","AD","8","Cth","Chthamalus_dalli","Type 3",76,0.015625,4864,"c","Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-09-29_YB-ADq1",2015-09-29,2015-09-29,"YB","AD","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","7%","Counts may be low due to glare and P. polymerus recruits"
+"2015-09-29_YB-ADq5",2015-09-29,2015-09-29,"YB","AD","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts may be low due to glare."
+"2015-09-29_YB-ADq8",2015-09-29,2015-09-29,"YB","AD","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-09-29_YB-ADq1",2015-09-29,2015-09-29,"YB","AD","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%","Counts may be low due to glare and P. polymerus recruits"
+"2015-09-29_YB-ADq5",2015-09-29,2015-09-29,"YB","AD","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts may be low due to glare."
+"2015-09-29_YB-ADq8",2015-09-29,2015-09-29,"YB","AD","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-09-29_YB-ADq1",2015-09-29,2015-09-29,"YB","AD","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%","Counts may be low due to glare and P. polymerus recruits"
+"2015-09-29_YB-ADq5",2015-09-29,2015-09-29,"YB","AD","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts may be low due to glare."
+"2015-09-29_YB-ADq8",2015-09-29,2015-09-29,"YB","AD","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-09-29_YB-ADq1",2015-09-29,2015-09-29,"YB","AD","1","Lim","Limpets","Type 12",89,0.0875,1017.14285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","7%","Counts may be low due to glare and P. polymerus recruits"
+"2015-09-29_YB-ADq5",2015-09-29,2015-09-29,"YB","AD","5","Lim","Limpets","Type 12",48,0.0875,548.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts may be low due to glare."
+"2015-09-29_YB-ADq8",2015-09-29,2015-09-29,"YB","AD","8","Lim","Limpets","Type 12",280,0.0875,3200,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-09-29_YB-ADq1",2015-09-29,2015-09-29,"YB","AD","1","Ls","Littorina_sitkana","Type 13",242,0.0875,2765.71428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","7%","Counts may be low due to glare and P. polymerus recruits"
+"2015-09-29_YB-ADq5",2015-09-29,2015-09-29,"YB","AD","5","Ls","Littorina_sitkana","Type 13",186,0.0875,2125.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts may be low due to glare."
+"2015-09-29_YB-ADq8",2015-09-29,2015-09-29,"YB","AD","8","Ls","Littorina_sitkana","Type 13",373,0.0875,4262.85714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-09-29_YB-ADq1",2015-09-29,2015-09-29,"YB","AD","1","Mc","Mytilus_californianus","Type 17",11,0.0875,125.714285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","7%","Counts may be low due to glare and P. polymerus recruits"
+"2015-09-29_YB-ADq5",2015-09-29,2015-09-29,"YB","AD","5","Mc","Mytilus_californianus","Type 17",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts may be low due to glare."
+"2015-09-29_YB-ADq8",2015-09-29,2015-09-29,"YB","AD","8","Mc","Mytilus_californianus","Type 17",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-09-29_YB-ADq1",2015-09-29,2015-09-29,"YB","AD","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%","Counts may be low due to glare and P. polymerus recruits"
+"2015-09-29_YB-ADq5",2015-09-29,2015-09-29,"YB","AD","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts may be low due to glare."
+"2015-09-29_YB-ADq8",2015-09-29,2015-09-29,"YB","AD","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-09-29_YB-ADq1",2015-09-29,2015-09-29,"YB","AD","1","Myt","Mytilus_spp","Type 7",376,0.0875,4297.14285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","7%","Counts may be low due to glare and P. polymerus recruits"
+"2015-09-29_YB-ADq5",2015-09-29,2015-09-29,"YB","AD","5","Myt","Mytilus_spp","Type 7",167,0.0875,1908.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts may be low due to glare."
+"2015-09-29_YB-ADq8",2015-09-29,2015-09-29,"YB","AD","8","Myt","Mytilus_spp","Type 7",111,0.0875,1268.57142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-09-29_YB-ADq1",2015-09-29,2015-09-29,"YB","AD","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%","Counts may be low due to glare and P. polymerus recruits"
+"2015-09-29_YB-ADq5",2015-09-29,2015-09-29,"YB","AD","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts may be low due to glare."
+"2015-09-29_YB-ADq8",2015-09-29,2015-09-29,"YB","AD","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-09-29_YB-ADq1",2015-09-29,2015-09-29,"YB","AD","1","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%","Counts may be low due to glare and P. polymerus recruits"
+"2015-09-29_YB-ADq5",2015-09-29,2015-09-29,"YB","AD","5","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts may be low due to glare."
+"2015-09-29_YB-ADq8",2015-09-29,2015-09-29,"YB","AD","8","Mt","Mytilus_trossulus","Type 15",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-09-29_YB-ADq1",2015-09-29,2015-09-29,"YB","AD","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%","Counts may be low due to glare and P. polymerus recruits"
+"2015-09-29_YB-ADq5",2015-09-29,2015-09-29,"YB","AD","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts may be low due to glare."
+"2015-09-29_YB-ADq8",2015-09-29,2015-09-29,"YB","AD","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-09-29_YB-ADq1",2015-09-29,2015-09-29,"YB","AD","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%","Counts may be low due to glare and P. polymerus recruits"
+"2015-09-29_YB-ADq5",2015-09-29,2015-09-29,"YB","AD","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts may be low due to glare."
+"2015-09-29_YB-ADq8",2015-09-29,2015-09-29,"YB","AD","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-09-29_YB-ADq1",2015-09-29,2015-09-29,"YB","AD","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%","Counts may be low due to glare and P. polymerus recruits"
+"2015-09-29_YB-ADq5",2015-09-29,2015-09-29,"YB","AD","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts may be low due to glare."
+"2015-09-29_YB-ADq8",2015-09-29,2015-09-29,"YB","AD","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-09-29_YB-ADq1",2015-09-29,2015-09-29,"YB","AD","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%","Counts may be low due to glare and P. polymerus recruits"
+"2015-09-29_YB-ADq5",2015-09-29,2015-09-29,"YB","AD","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts may be low due to glare."
+"2015-09-29_YB-ADq8",2015-09-29,2015-09-29,"YB","AD","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-09-29_YB-ADq1",2015-09-29,2015-09-29,"YB","AD","1","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","7%","Counts may be low due to glare and P. polymerus recruits"
+"2015-09-29_YB-ADq5",2015-09-29,2015-09-29,"YB","AD","5","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts may be low due to glare."
+"2015-09-29_YB-ADq8",2015-09-29,2015-09-29,"YB","AD","8","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-09-29_YB-ADq1",2015-09-29,2015-09-29,"YB","AD","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%","Counts may be low due to glare and P. polymerus recruits"
+"2015-09-29_YB-ADq5",2015-09-29,2015-09-29,"YB","AD","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts may be low due to glare."
+"2015-09-29_YB-ADq8",2015-09-29,2015-09-29,"YB","AD","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-09-29_YB-ADq1",2015-09-29,2015-09-29,"YB","AD","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%","Counts may be low due to glare and P. polymerus recruits"
+"2015-09-29_YB-ADq5",2015-09-29,2015-09-29,"YB","AD","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts may be low due to glare."
+"2015-09-29_YB-ADq8",2015-09-29,2015-09-29,"YB","AD","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-09-29_YB-ADq1",2015-09-29,2015-09-29,"YB","AD","1","Pp","Pollicipes_polymerus","Type 11",1082,0.0875,12365.7142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","7%","Counts may be low due to glare and P. polymerus recruits"
+"2015-09-29_YB-ADq5",2015-09-29,2015-09-29,"YB","AD","5","Pp","Pollicipes_polymerus","Type 11",1074,0.0875,12274.2857142857,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts may be low due to glare."
+"2015-09-29_YB-ADq8",2015-09-29,2015-09-29,"YB","AD","8","Pp","Pollicipes_polymerus","Type 11",655,0.0875,7485.71428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-09-29_YB-ADq1",2015-09-29,2015-09-29,"YB","AD","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%","Counts may be low due to glare and P. polymerus recruits"
+"2015-09-29_YB-ADq5",2015-09-29,2015-09-29,"YB","AD","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts may be low due to glare."
+"2015-09-29_YB-ADq8",2015-09-29,2015-09-29,"YB","AD","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-09-29_YB-ADq1",2015-09-29,2015-09-29,"YB","AD","1","Sc","Semibalanus_cariosus","Type 5",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","7%","Counts may be low due to glare and P. polymerus recruits"
+"2015-09-29_YB-ADq5",2015-09-29,2015-09-29,"YB","AD","5","Sc","Semibalanus_cariosus","Type 5",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts may be low due to glare."
+"2015-09-29_YB-ADq8",2015-09-29,2015-09-29,"YB","AD","8","Sc","Semibalanus_cariosus","Type 5",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-09-29_YB-ADq1",2015-09-29,2015-09-29,"YB","AD","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%","Counts may be low due to glare and P. polymerus recruits"
+"2015-09-29_YB-ADq5",2015-09-29,2015-09-29,"YB","AD","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts may be low due to glare."
+"2015-09-29_YB-ADq8",2015-09-29,2015-09-29,"YB","AD","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-09-29_YB-AEq1",2015-09-29,2015-09-29,"YB","AE","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare."
+"2015-09-29_YB-AEq4",2015-09-29,2015-09-29,"YB","AE","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-09-29_YB-AEq8",2015-09-29,2015-09-29,"YB","AE","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to lots of glare."
+"2015-09-29_YB-AEq1",2015-09-29,2015-09-29,"YB","AE","1","Ae","Anemones","Type 14",14,0.0875,160,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare."
+"2015-09-29_YB-AEq4",2015-09-29,2015-09-29,"YB","AE","4","Ae","Anemones","Type 14",19,0.0875,217.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-09-29_YB-AEq8",2015-09-29,2015-09-29,"YB","AE","8","Ae","Anemones","Type 14",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to lots of glare."
+"2015-09-29_YB-AEq1",2015-09-29,2015-09-29,"YB","AE","1","Bg","Balanus_glandula","Type 1",150,0.0875,1714.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare."
+"2015-09-29_YB-AEq4",2015-09-29,2015-09-29,"YB","AE","4","Bg","Balanus_glandula","Type 1",154,0.0875,1760,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-09-29_YB-AEq8",2015-09-29,2015-09-29,"YB","AE","8","Bg","Balanus_glandula","Type 1",70,0.0875,800,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to lots of glare."
+"2015-09-29_YB-AEq1",2015-09-29,2015-09-29,"YB","AE","1","BgD","Balanus_glandula_(dead)","Type 2",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare."
+"2015-09-29_YB-AEq4",2015-09-29,2015-09-29,"YB","AE","4","BgD","Balanus_glandula_(dead)","Type 2",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-09-29_YB-AEq8",2015-09-29,2015-09-29,"YB","AE","8","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to lots of glare."
+"2015-09-29_YB-AEq1",2015-09-29,2015-09-29,"YB","AE","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare."
+"2015-09-29_YB-AEq4",2015-09-29,2015-09-29,"YB","AE","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-09-29_YB-AEq8",2015-09-29,2015-09-29,"YB","AE","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to lots of glare."
+"2015-09-29_YB-AEq1",2015-09-29,2015-09-29,"YB","AE","1","Cth","Chthamalus_dalli","Type 3",205,0.0875,2342.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare."
+"2015-09-29_YB-AEq4",2015-09-29,2015-09-29,"YB","AE","4","Cth","Chthamalus_dalli","Type 3",151,0.0875,1725.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-09-29_YB-AEq8",2015-09-29,2015-09-29,"YB","AE","8","Cth","Chthamalus_dalli","Type 3",144,0.0875,1645.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to lots of glare."
+"2015-09-29_YB-AEq1",2015-09-29,2015-09-29,"YB","AE","1","CthD","Chthamalus_dalli (dead)","Type 4",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare."
+"2015-09-29_YB-AEq4",2015-09-29,2015-09-29,"YB","AE","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-09-29_YB-AEq8",2015-09-29,2015-09-29,"YB","AE","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to lots of glare."
+"2015-09-29_YB-AEq1",2015-09-29,2015-09-29,"YB","AE","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare."
+"2015-09-29_YB-AEq4",2015-09-29,2015-09-29,"YB","AE","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-09-29_YB-AEq8",2015-09-29,2015-09-29,"YB","AE","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to lots of glare."
+"2015-09-29_YB-AEq1",2015-09-29,2015-09-29,"YB","AE","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare."
+"2015-09-29_YB-AEq4",2015-09-29,2015-09-29,"YB","AE","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-09-29_YB-AEq8",2015-09-29,2015-09-29,"YB","AE","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to lots of glare."
+"2015-09-29_YB-AEq1",2015-09-29,2015-09-29,"YB","AE","1","Lim","Limpets","Type 12",97,0.0875,1108.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare."
+"2015-09-29_YB-AEq4",2015-09-29,2015-09-29,"YB","AE","4","Lim","Limpets","Type 12",152,0.0875,1737.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-09-29_YB-AEq8",2015-09-29,2015-09-29,"YB","AE","8","Lim","Limpets","Type 12",106,0.0875,1211.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to lots of glare."
+"2015-09-29_YB-AEq1",2015-09-29,2015-09-29,"YB","AE","1","Ls","Littorina_sitkana","Type 13",88,0.0875,1005.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare."
+"2015-09-29_YB-AEq4",2015-09-29,2015-09-29,"YB","AE","4","Ls","Littorina_sitkana","Type 13",88,0.0875,1005.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-09-29_YB-AEq8",2015-09-29,2015-09-29,"YB","AE","8","Ls","Littorina_sitkana","Type 13",133,0.0875,1520,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to lots of glare."
+"2015-09-29_YB-AEq1",2015-09-29,2015-09-29,"YB","AE","1","Mc","Mytilus_californianus","Type 17",10,0.0875,114.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare."
+"2015-09-29_YB-AEq4",2015-09-29,2015-09-29,"YB","AE","4","Mc","Mytilus_californianus","Type 17",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-09-29_YB-AEq8",2015-09-29,2015-09-29,"YB","AE","8","Mc","Mytilus_californianus","Type 17",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to lots of glare."
+"2015-09-29_YB-AEq1",2015-09-29,2015-09-29,"YB","AE","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare."
+"2015-09-29_YB-AEq4",2015-09-29,2015-09-29,"YB","AE","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-09-29_YB-AEq8",2015-09-29,2015-09-29,"YB","AE","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to lots of glare."
+"2015-09-29_YB-AEq1",2015-09-29,2015-09-29,"YB","AE","1","Myt","Mytilus_spp","Type 7",53,0.0875,605.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare."
+"2015-09-29_YB-AEq4",2015-09-29,2015-09-29,"YB","AE","4","Myt","Mytilus_spp","Type 7",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-09-29_YB-AEq8",2015-09-29,2015-09-29,"YB","AE","8","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to lots of glare."
+"2015-09-29_YB-AEq1",2015-09-29,2015-09-29,"YB","AE","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare."
+"2015-09-29_YB-AEq4",2015-09-29,2015-09-29,"YB","AE","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-09-29_YB-AEq8",2015-09-29,2015-09-29,"YB","AE","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to lots of glare."
+"2015-09-29_YB-AEq1",2015-09-29,2015-09-29,"YB","AE","1","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare."
+"2015-09-29_YB-AEq4",2015-09-29,2015-09-29,"YB","AE","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-09-29_YB-AEq8",2015-09-29,2015-09-29,"YB","AE","8","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to lots of glare."
+"2015-09-29_YB-AEq1",2015-09-29,2015-09-29,"YB","AE","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare."
+"2015-09-29_YB-AEq4",2015-09-29,2015-09-29,"YB","AE","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-09-29_YB-AEq8",2015-09-29,2015-09-29,"YB","AE","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to lots of glare."
+"2015-09-29_YB-AEq1",2015-09-29,2015-09-29,"YB","AE","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare."
+"2015-09-29_YB-AEq4",2015-09-29,2015-09-29,"YB","AE","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-09-29_YB-AEq8",2015-09-29,2015-09-29,"YB","AE","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to lots of glare."
+"2015-09-29_YB-AEq1",2015-09-29,2015-09-29,"YB","AE","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare."
+"2015-09-29_YB-AEq4",2015-09-29,2015-09-29,"YB","AE","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-09-29_YB-AEq8",2015-09-29,2015-09-29,"YB","AE","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to lots of glare."
+"2015-09-29_YB-AEq1",2015-09-29,2015-09-29,"YB","AE","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare."
+"2015-09-29_YB-AEq4",2015-09-29,2015-09-29,"YB","AE","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-09-29_YB-AEq8",2015-09-29,2015-09-29,"YB","AE","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to lots of glare."
+"2015-09-29_YB-AEq1",2015-09-29,2015-09-29,"YB","AE","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare."
+"2015-09-29_YB-AEq4",2015-09-29,2015-09-29,"YB","AE","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-09-29_YB-AEq8",2015-09-29,2015-09-29,"YB","AE","8","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to lots of glare."
+"2015-09-29_YB-AEq1",2015-09-29,2015-09-29,"YB","AE","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare."
+"2015-09-29_YB-AEq4",2015-09-29,2015-09-29,"YB","AE","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-09-29_YB-AEq8",2015-09-29,2015-09-29,"YB","AE","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to lots of glare."
+"2015-09-29_YB-AEq1",2015-09-29,2015-09-29,"YB","AE","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare."
+"2015-09-29_YB-AEq4",2015-09-29,2015-09-29,"YB","AE","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-09-29_YB-AEq8",2015-09-29,2015-09-29,"YB","AE","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to lots of glare."
+"2015-09-29_YB-AEq1",2015-09-29,2015-09-29,"YB","AE","1","Pp","Pollicipes_polymerus","Type 11",131,0.0875,1497.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare."
+"2015-09-29_YB-AEq4",2015-09-29,2015-09-29,"YB","AE","4","Pp","Pollicipes_polymerus","Type 11",71,0.0875,811.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-09-29_YB-AEq8",2015-09-29,2015-09-29,"YB","AE","8","Pp","Pollicipes_polymerus","Type 11",11,0.0875,125.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to lots of glare."
+"2015-09-29_YB-AEq1",2015-09-29,2015-09-29,"YB","AE","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare."
+"2015-09-29_YB-AEq4",2015-09-29,2015-09-29,"YB","AE","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-09-29_YB-AEq8",2015-09-29,2015-09-29,"YB","AE","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to lots of glare."
+"2015-09-29_YB-AEq1",2015-09-29,2015-09-29,"YB","AE","1","Sc","Semibalanus_cariosus","Type 5",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare."
+"2015-09-29_YB-AEq4",2015-09-29,2015-09-29,"YB","AE","4","Sc","Semibalanus_cariosus","Type 5",15,0.0875,171.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-09-29_YB-AEq8",2015-09-29,2015-09-29,"YB","AE","8","Sc","Semibalanus_cariosus","Type 5",14,0.0875,160,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to lots of glare."
+"2015-09-29_YB-AEq1",2015-09-29,2015-09-29,"YB","AE","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare."
+"2015-09-29_YB-AEq4",2015-09-29,2015-09-29,"YB","AE","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-09-29_YB-AEq8",2015-09-29,2015-09-29,"YB","AE","8","ScD","Semibalanus_cariosus_(dead)","Type 6",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to lots of glare."
+"2015-09-29_YB-AFq5",2015-09-29,2015-09-29,"YB","AF","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-09-29_YB-AFq8",2015-09-29,2015-09-29,"YB","AF","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","25%","Counts low due to glare and blur"
+"2015-09-29_YB-AFq9",2015-09-29,2015-09-29,"YB","AF","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%","Counts may be low due to glare"
+"2015-09-29_YB-AFq5",2015-09-29,2015-09-29,"YB","AF","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-09-29_YB-AFq8",2015-09-29,2015-09-29,"YB","AF","8","Ae","Anemones","Type 14",1,0.0875,11.4285714285714,NA,"Celeste Moen","Finished","Full","Cropped","25%","Counts low due to glare and blur"
+"2015-09-29_YB-AFq9",2015-09-29,2015-09-29,"YB","AF","9","Ae","Anemones","Type 14",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%","Counts may be low due to glare"
+"2015-09-29_YB-AFq5",2015-09-29,2015-09-29,"YB","AF","5","Bg","Balanus_glandula","Type 1",413,0.0875,4720,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-09-29_YB-AFq8",2015-09-29,2015-09-29,"YB","AF","8","Bg","Balanus_glandula","Type 1",82,0.015625,5248,"c","Celeste Moen","Finished","Full","Cropped","25%","Counts low due to glare and blur"
+"2015-09-29_YB-AFq9",2015-09-29,2015-09-29,"YB","AF","9","Bg","Balanus_glandula","Type 1",483,0.015625,30912,"c","Stephanie Merhoff","Finished","Full","Cropped","1%","Counts may be low due to glare"
+"2015-09-29_YB-AFq5",2015-09-29,2015-09-29,"YB","AF","5","BgD","Balanus_glandula_(dead)","Type 2",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-09-29_YB-AFq8",2015-09-29,2015-09-29,"YB","AF","8","BgD","Balanus_glandula_(dead)","Type 2",2,0.015625,128,"c","Celeste Moen","Finished","Full","Cropped","25%","Counts low due to glare and blur"
+"2015-09-29_YB-AFq9",2015-09-29,2015-09-29,"YB","AF","9","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","1%","Counts may be low due to glare"
+"2015-09-29_YB-AFq5",2015-09-29,2015-09-29,"YB","AF","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-09-29_YB-AFq8",2015-09-29,2015-09-29,"YB","AF","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","25%","Counts low due to glare and blur"
+"2015-09-29_YB-AFq9",2015-09-29,2015-09-29,"YB","AF","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%","Counts may be low due to glare"
+"2015-09-29_YB-AFq5",2015-09-29,2015-09-29,"YB","AF","5","Cth","Chthamalus_dalli","Type 3",771,0.0875,8811.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-09-29_YB-AFq8",2015-09-29,2015-09-29,"YB","AF","8","Cth","Chthamalus_dalli","Type 3",441,0.015625,28224,"c","Celeste Moen","Finished","Full","Cropped","25%","Counts low due to glare and blur"
+"2015-09-29_YB-AFq9",2015-09-29,2015-09-29,"YB","AF","9","Cth","Chthamalus_dalli","Type 3",120,0.015625,7680,"c","Stephanie Merhoff","Finished","Full","Cropped","1%","Counts may be low due to glare"
+"2015-09-29_YB-AFq5",2015-09-29,2015-09-29,"YB","AF","5","CthD","Chthamalus_dalli (dead)","Type 4",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-09-29_YB-AFq8",2015-09-29,2015-09-29,"YB","AF","8","CthD","Chthamalus_dalli (dead)","Type 4",10,0.015625,640,"c","Celeste Moen","Finished","Full","Cropped","25%","Counts low due to glare and blur"
+"2015-09-29_YB-AFq9",2015-09-29,2015-09-29,"YB","AF","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","1%","Counts may be low due to glare"
+"2015-09-29_YB-AFq5",2015-09-29,2015-09-29,"YB","AF","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-09-29_YB-AFq8",2015-09-29,2015-09-29,"YB","AF","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","25%","Counts low due to glare and blur"
+"2015-09-29_YB-AFq9",2015-09-29,2015-09-29,"YB","AF","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%","Counts may be low due to glare"
+"2015-09-29_YB-AFq5",2015-09-29,2015-09-29,"YB","AF","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-09-29_YB-AFq8",2015-09-29,2015-09-29,"YB","AF","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","25%","Counts low due to glare and blur"
+"2015-09-29_YB-AFq9",2015-09-29,2015-09-29,"YB","AF","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%","Counts may be low due to glare"
+"2015-09-29_YB-AFq5",2015-09-29,2015-09-29,"YB","AF","5","Lim","Limpets","Type 12",83,0.0875,948.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-09-29_YB-AFq8",2015-09-29,2015-09-29,"YB","AF","8","Lim","Limpets","Type 12",96,0.0875,1097.14285714286,NA,"Celeste Moen","Finished","Full","Cropped","25%","Counts low due to glare and blur"
+"2015-09-29_YB-AFq9",2015-09-29,2015-09-29,"YB","AF","9","Lim","Limpets","Type 12",60,0.0875,685.714285714286,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%","Counts may be low due to glare"
+"2015-09-29_YB-AFq5",2015-09-29,2015-09-29,"YB","AF","5","Ls","Littorina_sitkana","Type 13",247,0.0875,2822.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-09-29_YB-AFq8",2015-09-29,2015-09-29,"YB","AF","8","Ls","Littorina_sitkana","Type 13",423,0.0875,4834.28571428571,NA,"Celeste Moen","Finished","Full","Cropped","25%","Counts low due to glare and blur"
+"2015-09-29_YB-AFq9",2015-09-29,2015-09-29,"YB","AF","9","Ls","Littorina_sitkana","Type 13",549,0.0875,6274.28571428571,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%","Counts may be low due to glare"
+"2015-09-29_YB-AFq5",2015-09-29,2015-09-29,"YB","AF","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-09-29_YB-AFq8",2015-09-29,2015-09-29,"YB","AF","8","Mc","Mytilus_californianus","Type 17",1,0.0875,11.4285714285714,NA,"Celeste Moen","Finished","Full","Cropped","25%","Counts low due to glare and blur"
+"2015-09-29_YB-AFq9",2015-09-29,2015-09-29,"YB","AF","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%","Counts may be low due to glare"
+"2015-09-29_YB-AFq5",2015-09-29,2015-09-29,"YB","AF","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-09-29_YB-AFq8",2015-09-29,2015-09-29,"YB","AF","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","25%","Counts low due to glare and blur"
+"2015-09-29_YB-AFq9",2015-09-29,2015-09-29,"YB","AF","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%","Counts may be low due to glare"
+"2015-09-29_YB-AFq5",2015-09-29,2015-09-29,"YB","AF","5","Myt","Mytilus_spp","Type 7",56,0.0875,640,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-09-29_YB-AFq8",2015-09-29,2015-09-29,"YB","AF","8","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","25%","Counts low due to glare and blur"
+"2015-09-29_YB-AFq9",2015-09-29,2015-09-29,"YB","AF","9","Myt","Mytilus_spp","Type 7",5,0.0875,57.1428571428571,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%","Counts may be low due to glare"
+"2015-09-29_YB-AFq5",2015-09-29,2015-09-29,"YB","AF","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-09-29_YB-AFq8",2015-09-29,2015-09-29,"YB","AF","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","25%","Counts low due to glare and blur"
+"2015-09-29_YB-AFq9",2015-09-29,2015-09-29,"YB","AF","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%","Counts may be low due to glare"
+"2015-09-29_YB-AFq5",2015-09-29,2015-09-29,"YB","AF","5","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-09-29_YB-AFq8",2015-09-29,2015-09-29,"YB","AF","8","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","25%","Counts low due to glare and blur"
+"2015-09-29_YB-AFq9",2015-09-29,2015-09-29,"YB","AF","9","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%","Counts may be low due to glare"
+"2015-09-29_YB-AFq5",2015-09-29,2015-09-29,"YB","AF","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-09-29_YB-AFq8",2015-09-29,2015-09-29,"YB","AF","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","25%","Counts low due to glare and blur"
+"2015-09-29_YB-AFq9",2015-09-29,2015-09-29,"YB","AF","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%","Counts may be low due to glare"
+"2015-09-29_YB-AFq5",2015-09-29,2015-09-29,"YB","AF","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-09-29_YB-AFq8",2015-09-29,2015-09-29,"YB","AF","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","25%","Counts low due to glare and blur"
+"2015-09-29_YB-AFq9",2015-09-29,2015-09-29,"YB","AF","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%","Counts may be low due to glare"
+"2015-09-29_YB-AFq5",2015-09-29,2015-09-29,"YB","AF","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-09-29_YB-AFq8",2015-09-29,2015-09-29,"YB","AF","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","25%","Counts low due to glare and blur"
+"2015-09-29_YB-AFq9",2015-09-29,2015-09-29,"YB","AF","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%","Counts may be low due to glare"
+"2015-09-29_YB-AFq5",2015-09-29,2015-09-29,"YB","AF","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-09-29_YB-AFq8",2015-09-29,2015-09-29,"YB","AF","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","25%","Counts low due to glare and blur"
+"2015-09-29_YB-AFq9",2015-09-29,2015-09-29,"YB","AF","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%","Counts may be low due to glare"
+"2015-09-29_YB-AFq5",2015-09-29,2015-09-29,"YB","AF","5","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-09-29_YB-AFq8",2015-09-29,2015-09-29,"YB","AF","8","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Celeste Moen","Finished","Full","Cropped","25%","Counts low due to glare and blur"
+"2015-09-29_YB-AFq9",2015-09-29,2015-09-29,"YB","AF","9","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%","Counts may be low due to glare"
+"2015-09-29_YB-AFq5",2015-09-29,2015-09-29,"YB","AF","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-09-29_YB-AFq8",2015-09-29,2015-09-29,"YB","AF","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","25%","Counts low due to glare and blur"
+"2015-09-29_YB-AFq9",2015-09-29,2015-09-29,"YB","AF","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%","Counts may be low due to glare"
+"2015-09-29_YB-AFq5",2015-09-29,2015-09-29,"YB","AF","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-09-29_YB-AFq8",2015-09-29,2015-09-29,"YB","AF","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","25%","Counts low due to glare and blur"
+"2015-09-29_YB-AFq9",2015-09-29,2015-09-29,"YB","AF","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%","Counts may be low due to glare"
+"2015-09-29_YB-AFq5",2015-09-29,2015-09-29,"YB","AF","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-09-29_YB-AFq8",2015-09-29,2015-09-29,"YB","AF","8","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","25%","Counts low due to glare and blur"
+"2015-09-29_YB-AFq9",2015-09-29,2015-09-29,"YB","AF","9","Pp","Pollicipes_polymerus","Type 11",5,0.0875,57.1428571428571,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%","Counts may be low due to glare"
+"2015-09-29_YB-AFq5",2015-09-29,2015-09-29,"YB","AF","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-09-29_YB-AFq8",2015-09-29,2015-09-29,"YB","AF","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","25%","Counts low due to glare and blur"
+"2015-09-29_YB-AFq9",2015-09-29,2015-09-29,"YB","AF","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%","Counts may be low due to glare"
+"2015-09-29_YB-AFq5",2015-09-29,2015-09-29,"YB","AF","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-09-29_YB-AFq8",2015-09-29,2015-09-29,"YB","AF","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","25%","Counts low due to glare and blur"
+"2015-09-29_YB-AFq9",2015-09-29,2015-09-29,"YB","AF","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%","Counts may be low due to glare"
+"2015-09-29_YB-AFq5",2015-09-29,2015-09-29,"YB","AF","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-09-29_YB-AFq8",2015-09-29,2015-09-29,"YB","AF","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","25%","Counts low due to glare and blur"
+"2015-09-29_YB-AFq9",2015-09-29,2015-09-29,"YB","AF","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%","Counts may be low due to glare"
+"2015-09-29_YB-AGq2",2015-09-29,2015-09-29,"YB","AG","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-09-29_YB-AGq7",2015-09-29,2015-09-29,"YB","AG","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-09-29_YB-AGq9",2015-09-29,2015-09-29,"YB","AG","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to blur and glare"
+"2015-09-29_YB-AGq2",2015-09-29,2015-09-29,"YB","AG","2","Ae","Anemones","Type 14",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-09-29_YB-AGq7",2015-09-29,2015-09-29,"YB","AG","7","Ae","Anemones","Type 14",7,0.0875,80,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-09-29_YB-AGq9",2015-09-29,2015-09-29,"YB","AG","9","Ae","Anemones","Type 14",29,0.0875,331.428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to blur and glare"
+"2015-09-29_YB-AGq2",2015-09-29,2015-09-29,"YB","AG","2","Bg","Balanus_glandula","Type 1",653,0.0875,7462.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-09-29_YB-AGq7",2015-09-29,2015-09-29,"YB","AG","7","Bg","Balanus_glandula","Type 1",1086,0.0875,12411.4285714286,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-09-29_YB-AGq9",2015-09-29,2015-09-29,"YB","AG","9","Bg","Balanus_glandula","Type 1",112,0.0875,1280,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to blur and glare"
+"2015-09-29_YB-AGq2",2015-09-29,2015-09-29,"YB","AG","2","BgD","Balanus_glandula_(dead)","Type 2",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-09-29_YB-AGq7",2015-09-29,2015-09-29,"YB","AG","7","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-09-29_YB-AGq9",2015-09-29,2015-09-29,"YB","AG","9","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to blur and glare"
+"2015-09-29_YB-AGq2",2015-09-29,2015-09-29,"YB","AG","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-09-29_YB-AGq7",2015-09-29,2015-09-29,"YB","AG","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-09-29_YB-AGq9",2015-09-29,2015-09-29,"YB","AG","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to blur and glare"
+"2015-09-29_YB-AGq2",2015-09-29,2015-09-29,"YB","AG","2","Cth","Chthamalus_dalli","Type 3",885,0.0875,10114.2857142857,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-09-29_YB-AGq7",2015-09-29,2015-09-29,"YB","AG","7","Cth","Chthamalus_dalli","Type 3",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-09-29_YB-AGq9",2015-09-29,2015-09-29,"YB","AG","9","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to blur and glare"
+"2015-09-29_YB-AGq2",2015-09-29,2015-09-29,"YB","AG","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-09-29_YB-AGq7",2015-09-29,2015-09-29,"YB","AG","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-09-29_YB-AGq9",2015-09-29,2015-09-29,"YB","AG","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to blur and glare"
+"2015-09-29_YB-AGq2",2015-09-29,2015-09-29,"YB","AG","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-09-29_YB-AGq7",2015-09-29,2015-09-29,"YB","AG","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-09-29_YB-AGq9",2015-09-29,2015-09-29,"YB","AG","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to blur and glare"
+"2015-09-29_YB-AGq2",2015-09-29,2015-09-29,"YB","AG","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-09-29_YB-AGq7",2015-09-29,2015-09-29,"YB","AG","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-09-29_YB-AGq9",2015-09-29,2015-09-29,"YB","AG","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to blur and glare"
+"2015-09-29_YB-AGq2",2015-09-29,2015-09-29,"YB","AG","2","Lim","Limpets","Type 12",156,0.0875,1782.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-09-29_YB-AGq7",2015-09-29,2015-09-29,"YB","AG","7","Lim","Limpets","Type 12",60,0.0875,685.714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-09-29_YB-AGq9",2015-09-29,2015-09-29,"YB","AG","9","Lim","Limpets","Type 12",37,0.0875,422.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to blur and glare"
+"2015-09-29_YB-AGq2",2015-09-29,2015-09-29,"YB","AG","2","Ls","Littorina_sitkana","Type 13",196,0.0875,2240,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-09-29_YB-AGq7",2015-09-29,2015-09-29,"YB","AG","7","Ls","Littorina_sitkana","Type 13",252,0.0875,2880,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-09-29_YB-AGq9",2015-09-29,2015-09-29,"YB","AG","9","Ls","Littorina_sitkana","Type 13",327,0.0875,3737.14285714286,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to blur and glare"
+"2015-09-29_YB-AGq2",2015-09-29,2015-09-29,"YB","AG","2","Mc","Mytilus_californianus","Type 17",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-09-29_YB-AGq7",2015-09-29,2015-09-29,"YB","AG","7","Mc","Mytilus_californianus","Type 17",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-09-29_YB-AGq9",2015-09-29,2015-09-29,"YB","AG","9","Mc","Mytilus_californianus","Type 17",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to blur and glare"
+"2015-09-29_YB-AGq2",2015-09-29,2015-09-29,"YB","AG","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-09-29_YB-AGq7",2015-09-29,2015-09-29,"YB","AG","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-09-29_YB-AGq9",2015-09-29,2015-09-29,"YB","AG","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to blur and glare"
+"2015-09-29_YB-AGq2",2015-09-29,2015-09-29,"YB","AG","2","Myt","Mytilus_spp","Type 7",21,0.0875,240,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-09-29_YB-AGq7",2015-09-29,2015-09-29,"YB","AG","7","Myt","Mytilus_spp","Type 7",11,0.0875,125.714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-09-29_YB-AGq9",2015-09-29,2015-09-29,"YB","AG","9","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to blur and glare"
+"2015-09-29_YB-AGq2",2015-09-29,2015-09-29,"YB","AG","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-09-29_YB-AGq7",2015-09-29,2015-09-29,"YB","AG","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-09-29_YB-AGq9",2015-09-29,2015-09-29,"YB","AG","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to blur and glare"
+"2015-09-29_YB-AGq2",2015-09-29,2015-09-29,"YB","AG","2","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-09-29_YB-AGq7",2015-09-29,2015-09-29,"YB","AG","7","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-09-29_YB-AGq9",2015-09-29,2015-09-29,"YB","AG","9","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to blur and glare"
+"2015-09-29_YB-AGq2",2015-09-29,2015-09-29,"YB","AG","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-09-29_YB-AGq7",2015-09-29,2015-09-29,"YB","AG","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-09-29_YB-AGq9",2015-09-29,2015-09-29,"YB","AG","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to blur and glare"
+"2015-09-29_YB-AGq2",2015-09-29,2015-09-29,"YB","AG","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-09-29_YB-AGq7",2015-09-29,2015-09-29,"YB","AG","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-09-29_YB-AGq9",2015-09-29,2015-09-29,"YB","AG","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to blur and glare"
+"2015-09-29_YB-AGq2",2015-09-29,2015-09-29,"YB","AG","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-09-29_YB-AGq7",2015-09-29,2015-09-29,"YB","AG","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-09-29_YB-AGq9",2015-09-29,2015-09-29,"YB","AG","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to blur and glare"
+"2015-09-29_YB-AGq2",2015-09-29,2015-09-29,"YB","AG","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-09-29_YB-AGq7",2015-09-29,2015-09-29,"YB","AG","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-09-29_YB-AGq9",2015-09-29,2015-09-29,"YB","AG","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to blur and glare"
+"2015-09-29_YB-AGq2",2015-09-29,2015-09-29,"YB","AG","2","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-09-29_YB-AGq7",2015-09-29,2015-09-29,"YB","AG","7","No","Nucella_ostrina","Type 9",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-09-29_YB-AGq9",2015-09-29,2015-09-29,"YB","AG","9","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to blur and glare"
+"2015-09-29_YB-AGq2",2015-09-29,2015-09-29,"YB","AG","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-09-29_YB-AGq7",2015-09-29,2015-09-29,"YB","AG","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-09-29_YB-AGq9",2015-09-29,2015-09-29,"YB","AG","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to blur and glare"
+"2015-09-29_YB-AGq2",2015-09-29,2015-09-29,"YB","AG","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-09-29_YB-AGq7",2015-09-29,2015-09-29,"YB","AG","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-09-29_YB-AGq9",2015-09-29,2015-09-29,"YB","AG","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to blur and glare"
+"2015-09-29_YB-AGq2",2015-09-29,2015-09-29,"YB","AG","2","Pp","Pollicipes_polymerus","Type 11",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-09-29_YB-AGq7",2015-09-29,2015-09-29,"YB","AG","7","Pp","Pollicipes_polymerus","Type 11",15,0.0875,171.428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-09-29_YB-AGq9",2015-09-29,2015-09-29,"YB","AG","9","Pp","Pollicipes_polymerus","Type 11",217,0.0875,2480,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to blur and glare"
+"2015-09-29_YB-AGq2",2015-09-29,2015-09-29,"YB","AG","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-09-29_YB-AGq7",2015-09-29,2015-09-29,"YB","AG","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-09-29_YB-AGq9",2015-09-29,2015-09-29,"YB","AG","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to blur and glare"
+"2015-09-29_YB-AGq2",2015-09-29,2015-09-29,"YB","AG","2","Sc","Semibalanus_cariosus","Type 5",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-09-29_YB-AGq7",2015-09-29,2015-09-29,"YB","AG","7","Sc","Semibalanus_cariosus","Type 5",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-09-29_YB-AGq9",2015-09-29,2015-09-29,"YB","AG","9","Sc","Semibalanus_cariosus","Type 5",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to blur and glare"
+"2015-09-29_YB-AGq2",2015-09-29,2015-09-29,"YB","AG","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-09-29_YB-AGq7",2015-09-29,2015-09-29,"YB","AG","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%",""
+"2015-09-29_YB-AGq9",2015-09-29,2015-09-29,"YB","AG","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","60%","Counts likely low due to blur and glare"
+"2015-09-29_YB-Bq1",2015-09-29,2015-09-29,"YB","B","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare and blur."
+"2015-09-29_YB-Bq5",2015-09-29,2015-09-29,"YB","B","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to glare and P. polymerus recruits."
+"2015-09-29_YB-Bq6",2015-09-29,2015-09-29,"YB","B","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts likely low due to glare and P. polymerus recruits."
+"2015-09-29_YB-Bq1",2015-09-29,2015-09-29,"YB","B","1","Ae","Anemones","Type 14",82,0.0875,937.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare and blur."
+"2015-09-29_YB-Bq5",2015-09-29,2015-09-29,"YB","B","5","Ae","Anemones","Type 14",96,0.0875,1097.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to glare and P. polymerus recruits."
+"2015-09-29_YB-Bq6",2015-09-29,2015-09-29,"YB","B","6","Ae","Anemones","Type 14",166,0.0875,1897.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts likely low due to glare and P. polymerus recruits."
+"2015-09-29_YB-Bq1",2015-09-29,2015-09-29,"YB","B","1","Bg","Balanus_glandula","Type 1",27,0.0875,308.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare and blur."
+"2015-09-29_YB-Bq5",2015-09-29,2015-09-29,"YB","B","5","Bg","Balanus_glandula","Type 1",138,0.0875,1577.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to glare and P. polymerus recruits."
+"2015-09-29_YB-Bq6",2015-09-29,2015-09-29,"YB","B","6","Bg","Balanus_glandula","Type 1",187,0.0875,2137.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts likely low due to glare and P. polymerus recruits."
+"2015-09-29_YB-Bq1",2015-09-29,2015-09-29,"YB","B","1","BgD","Balanus_glandula_(dead)","Type 2",10,0.0875,114.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare and blur."
+"2015-09-29_YB-Bq5",2015-09-29,2015-09-29,"YB","B","5","BgD","Balanus_glandula_(dead)","Type 2",11,0.0875,125.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to glare and P. polymerus recruits."
+"2015-09-29_YB-Bq6",2015-09-29,2015-09-29,"YB","B","6","BgD","Balanus_glandula_(dead)","Type 2",30,0.0875,342.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts likely low due to glare and P. polymerus recruits."
+"2015-09-29_YB-Bq1",2015-09-29,2015-09-29,"YB","B","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare and blur."
+"2015-09-29_YB-Bq5",2015-09-29,2015-09-29,"YB","B","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to glare and P. polymerus recruits."
+"2015-09-29_YB-Bq6",2015-09-29,2015-09-29,"YB","B","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts likely low due to glare and P. polymerus recruits."
+"2015-09-29_YB-Bq1",2015-09-29,2015-09-29,"YB","B","1","Cth","Chthamalus_dalli","Type 3",17,0.0875,194.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare and blur."
+"2015-09-29_YB-Bq5",2015-09-29,2015-09-29,"YB","B","5","Cth","Chthamalus_dalli","Type 3",309,0.0875,3531.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to glare and P. polymerus recruits."
+"2015-09-29_YB-Bq6",2015-09-29,2015-09-29,"YB","B","6","Cth","Chthamalus_dalli","Type 3",97,0.0875,1108.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts likely low due to glare and P. polymerus recruits."
+"2015-09-29_YB-Bq1",2015-09-29,2015-09-29,"YB","B","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare and blur."
+"2015-09-29_YB-Bq5",2015-09-29,2015-09-29,"YB","B","5","CthD","Chthamalus_dalli (dead)","Type 4",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to glare and P. polymerus recruits."
+"2015-09-29_YB-Bq6",2015-09-29,2015-09-29,"YB","B","6","CthD","Chthamalus_dalli (dead)","Type 4",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts likely low due to glare and P. polymerus recruits."
+"2015-09-29_YB-Bq1",2015-09-29,2015-09-29,"YB","B","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare and blur."
+"2015-09-29_YB-Bq5",2015-09-29,2015-09-29,"YB","B","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to glare and P. polymerus recruits."
+"2015-09-29_YB-Bq6",2015-09-29,2015-09-29,"YB","B","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts likely low due to glare and P. polymerus recruits."
+"2015-09-29_YB-Bq1",2015-09-29,2015-09-29,"YB","B","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare and blur."
+"2015-09-29_YB-Bq5",2015-09-29,2015-09-29,"YB","B","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to glare and P. polymerus recruits."
+"2015-09-29_YB-Bq6",2015-09-29,2015-09-29,"YB","B","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts likely low due to glare and P. polymerus recruits."
+"2015-09-29_YB-Bq1",2015-09-29,2015-09-29,"YB","B","1","Lim","Limpets","Type 12",88,0.0875,1005.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare and blur."
+"2015-09-29_YB-Bq5",2015-09-29,2015-09-29,"YB","B","5","Lim","Limpets","Type 12",96,0.0875,1097.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to glare and P. polymerus recruits."
+"2015-09-29_YB-Bq6",2015-09-29,2015-09-29,"YB","B","6","Lim","Limpets","Type 12",67,0.0875,765.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts likely low due to glare and P. polymerus recruits."
+"2015-09-29_YB-Bq1",2015-09-29,2015-09-29,"YB","B","1","Ls","Littorina_sitkana","Type 13",156,0.0875,1782.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare and blur."
+"2015-09-29_YB-Bq5",2015-09-29,2015-09-29,"YB","B","5","Ls","Littorina_sitkana","Type 13",125,0.0875,1428.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to glare and P. polymerus recruits."
+"2015-09-29_YB-Bq6",2015-09-29,2015-09-29,"YB","B","6","Ls","Littorina_sitkana","Type 13",205,0.0875,2342.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts likely low due to glare and P. polymerus recruits."
+"2015-09-29_YB-Bq1",2015-09-29,2015-09-29,"YB","B","1","Mc","Mytilus_californianus","Type 17",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare and blur."
+"2015-09-29_YB-Bq5",2015-09-29,2015-09-29,"YB","B","5","Mc","Mytilus_californianus","Type 17",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to glare and P. polymerus recruits."
+"2015-09-29_YB-Bq6",2015-09-29,2015-09-29,"YB","B","6","Mc","Mytilus_californianus","Type 17",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts likely low due to glare and P. polymerus recruits."
+"2015-09-29_YB-Bq1",2015-09-29,2015-09-29,"YB","B","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare and blur."
+"2015-09-29_YB-Bq5",2015-09-29,2015-09-29,"YB","B","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to glare and P. polymerus recruits."
+"2015-09-29_YB-Bq6",2015-09-29,2015-09-29,"YB","B","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts likely low due to glare and P. polymerus recruits."
+"2015-09-29_YB-Bq1",2015-09-29,2015-09-29,"YB","B","1","Myt","Mytilus_spp","Type 7",77,0.0875,880,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare and blur."
+"2015-09-29_YB-Bq5",2015-09-29,2015-09-29,"YB","B","5","Myt","Mytilus_spp","Type 7",102,0.0875,1165.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to glare and P. polymerus recruits."
+"2015-09-29_YB-Bq6",2015-09-29,2015-09-29,"YB","B","6","Myt","Mytilus_spp","Type 7",81,0.0875,925.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts likely low due to glare and P. polymerus recruits."
+"2015-09-29_YB-Bq1",2015-09-29,2015-09-29,"YB","B","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare and blur."
+"2015-09-29_YB-Bq5",2015-09-29,2015-09-29,"YB","B","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to glare and P. polymerus recruits."
+"2015-09-29_YB-Bq6",2015-09-29,2015-09-29,"YB","B","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts likely low due to glare and P. polymerus recruits."
+"2015-09-29_YB-Bq1",2015-09-29,2015-09-29,"YB","B","1","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare and blur."
+"2015-09-29_YB-Bq5",2015-09-29,2015-09-29,"YB","B","5","Mt","Mytilus_trossulus","Type 15",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to glare and P. polymerus recruits."
+"2015-09-29_YB-Bq6",2015-09-29,2015-09-29,"YB","B","6","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts likely low due to glare and P. polymerus recruits."
+"2015-09-29_YB-Bq1",2015-09-29,2015-09-29,"YB","B","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare and blur."
+"2015-09-29_YB-Bq5",2015-09-29,2015-09-29,"YB","B","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to glare and P. polymerus recruits."
+"2015-09-29_YB-Bq6",2015-09-29,2015-09-29,"YB","B","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts likely low due to glare and P. polymerus recruits."
+"2015-09-29_YB-Bq1",2015-09-29,2015-09-29,"YB","B","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare and blur."
+"2015-09-29_YB-Bq5",2015-09-29,2015-09-29,"YB","B","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to glare and P. polymerus recruits."
+"2015-09-29_YB-Bq6",2015-09-29,2015-09-29,"YB","B","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts likely low due to glare and P. polymerus recruits."
+"2015-09-29_YB-Bq1",2015-09-29,2015-09-29,"YB","B","1","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare and blur."
+"2015-09-29_YB-Bq5",2015-09-29,2015-09-29,"YB","B","5","Nc","Nucella_canaliculata","Type 10",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to glare and P. polymerus recruits."
+"2015-09-29_YB-Bq6",2015-09-29,2015-09-29,"YB","B","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts likely low due to glare and P. polymerus recruits."
+"2015-09-29_YB-Bq1",2015-09-29,2015-09-29,"YB","B","1","Negg","Nucella_eggs","Type 26",11,0.0875,125.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare and blur."
+"2015-09-29_YB-Bq5",2015-09-29,2015-09-29,"YB","B","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to glare and P. polymerus recruits."
+"2015-09-29_YB-Bq6",2015-09-29,2015-09-29,"YB","B","6","Negg","Nucella_eggs","Type 26",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts likely low due to glare and P. polymerus recruits."
+"2015-09-29_YB-Bq1",2015-09-29,2015-09-29,"YB","B","1","No","Nucella_ostrina","Type 9",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare and blur."
+"2015-09-29_YB-Bq5",2015-09-29,2015-09-29,"YB","B","5","No","Nucella_ostrina","Type 9",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to glare and P. polymerus recruits."
+"2015-09-29_YB-Bq6",2015-09-29,2015-09-29,"YB","B","6","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts likely low due to glare and P. polymerus recruits."
+"2015-09-29_YB-Bq1",2015-09-29,2015-09-29,"YB","B","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare and blur."
+"2015-09-29_YB-Bq5",2015-09-29,2015-09-29,"YB","B","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to glare and P. polymerus recruits."
+"2015-09-29_YB-Bq6",2015-09-29,2015-09-29,"YB","B","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts likely low due to glare and P. polymerus recruits."
+"2015-09-29_YB-Bq1",2015-09-29,2015-09-29,"YB","B","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare and blur."
+"2015-09-29_YB-Bq5",2015-09-29,2015-09-29,"YB","B","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to glare and P. polymerus recruits."
+"2015-09-29_YB-Bq6",2015-09-29,2015-09-29,"YB","B","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts likely low due to glare and P. polymerus recruits."
+"2015-09-29_YB-Bq1",2015-09-29,2015-09-29,"YB","B","1","Pp","Pollicipes_polymerus","Type 11",387,0.0875,4422.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare and blur."
+"2015-09-29_YB-Bq5",2015-09-29,2015-09-29,"YB","B","5","Pp","Pollicipes_polymerus","Type 11",797,0.0875,9108.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to glare and P. polymerus recruits."
+"2015-09-29_YB-Bq6",2015-09-29,2015-09-29,"YB","B","6","Pp","Pollicipes_polymerus","Type 11",871,0.0875,9954.28571428572,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts likely low due to glare and P. polymerus recruits."
+"2015-09-29_YB-Bq1",2015-09-29,2015-09-29,"YB","B","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare and blur."
+"2015-09-29_YB-Bq5",2015-09-29,2015-09-29,"YB","B","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to glare and P. polymerus recruits."
+"2015-09-29_YB-Bq6",2015-09-29,2015-09-29,"YB","B","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts likely low due to glare and P. polymerus recruits."
+"2015-09-29_YB-Bq1",2015-09-29,2015-09-29,"YB","B","1","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare and blur."
+"2015-09-29_YB-Bq5",2015-09-29,2015-09-29,"YB","B","5","Sc","Semibalanus_cariosus","Type 5",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to glare and P. polymerus recruits."
+"2015-09-29_YB-Bq6",2015-09-29,2015-09-29,"YB","B","6","Sc","Semibalanus_cariosus","Type 5",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts likely low due to glare and P. polymerus recruits."
+"2015-09-29_YB-Bq1",2015-09-29,2015-09-29,"YB","B","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts may be low due to glare and blur."
+"2015-09-29_YB-Bq5",2015-09-29,2015-09-29,"YB","B","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to glare and P. polymerus recruits."
+"2015-09-29_YB-Bq6",2015-09-29,2015-09-29,"YB","B","6","ScD","Semibalanus_cariosus_(dead)","Type 6",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","3%","Counts likely low due to glare and P. polymerus recruits."
+"2015-09-29_YB-BBq1",2015-09-29,2015-09-29,"YB","BB","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur"
+"2015-09-29_YB-BBq2",2015-09-29,2015-09-29,"YB","BB","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to blur"
+"2015-09-29_YB-BBq9",2015-09-29,2015-09-29,"YB","BB","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle counts likely low due to recruit size; other counts may be low due to blur"
+"2015-09-29_YB-BBq1",2015-09-29,2015-09-29,"YB","BB","1","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur"
+"2015-09-29_YB-BBq2",2015-09-29,2015-09-29,"YB","BB","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to blur"
+"2015-09-29_YB-BBq9",2015-09-29,2015-09-29,"YB","BB","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle counts likely low due to recruit size; other counts may be low due to blur"
+"2015-09-29_YB-BBq1",2015-09-29,2015-09-29,"YB","BB","1","Bg","Balanus_glandula","Type 1",167,0.0875,1908.57142857143,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur"
+"2015-09-29_YB-BBq2",2015-09-29,2015-09-29,"YB","BB","2","Bg","Balanus_glandula","Type 1",87,0.0875,994.285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to blur"
+"2015-09-29_YB-BBq9",2015-09-29,2015-09-29,"YB","BB","9","Bg","Balanus_glandula","Type 1",1016,0.015625,65024,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle counts likely low due to recruit size; other counts may be low due to blur"
+"2015-09-29_YB-BBq1",2015-09-29,2015-09-29,"YB","BB","1","BgD","Balanus_glandula_(dead)","Type 2",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur"
+"2015-09-29_YB-BBq2",2015-09-29,2015-09-29,"YB","BB","2","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to blur"
+"2015-09-29_YB-BBq9",2015-09-29,2015-09-29,"YB","BB","9","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle counts likely low due to recruit size; other counts may be low due to blur"
+"2015-09-29_YB-BBq1",2015-09-29,2015-09-29,"YB","BB","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur"
+"2015-09-29_YB-BBq2",2015-09-29,2015-09-29,"YB","BB","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to blur"
+"2015-09-29_YB-BBq9",2015-09-29,2015-09-29,"YB","BB","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle counts likely low due to recruit size; other counts may be low due to blur"
+"2015-09-29_YB-BBq1",2015-09-29,2015-09-29,"YB","BB","1","Cth","Chthamalus_dalli","Type 3",21,0.0875,240,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur"
+"2015-09-29_YB-BBq2",2015-09-29,2015-09-29,"YB","BB","2","Cth","Chthamalus_dalli","Type 3",6,0.0875,68.5714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to blur"
+"2015-09-29_YB-BBq9",2015-09-29,2015-09-29,"YB","BB","9","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle counts likely low due to recruit size; other counts may be low due to blur"
+"2015-09-29_YB-BBq1",2015-09-29,2015-09-29,"YB","BB","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur"
+"2015-09-29_YB-BBq2",2015-09-29,2015-09-29,"YB","BB","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to blur"
+"2015-09-29_YB-BBq9",2015-09-29,2015-09-29,"YB","BB","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle counts likely low due to recruit size; other counts may be low due to blur"
+"2015-09-29_YB-BBq1",2015-09-29,2015-09-29,"YB","BB","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur"
+"2015-09-29_YB-BBq2",2015-09-29,2015-09-29,"YB","BB","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to blur"
+"2015-09-29_YB-BBq9",2015-09-29,2015-09-29,"YB","BB","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle counts likely low due to recruit size; other counts may be low due to blur"
+"2015-09-29_YB-BBq1",2015-09-29,2015-09-29,"YB","BB","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur"
+"2015-09-29_YB-BBq2",2015-09-29,2015-09-29,"YB","BB","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to blur"
+"2015-09-29_YB-BBq9",2015-09-29,2015-09-29,"YB","BB","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle counts likely low due to recruit size; other counts may be low due to blur"
+"2015-09-29_YB-BBq1",2015-09-29,2015-09-29,"YB","BB","1","Lim","Limpets","Type 12",41,0.0875,468.571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur"
+"2015-09-29_YB-BBq2",2015-09-29,2015-09-29,"YB","BB","2","Lim","Limpets","Type 12",45,0.0875,514.285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to blur"
+"2015-09-29_YB-BBq9",2015-09-29,2015-09-29,"YB","BB","9","Lim","Limpets","Type 12",56,0.0875,640,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle counts likely low due to recruit size; other counts may be low due to blur"
+"2015-09-29_YB-BBq1",2015-09-29,2015-09-29,"YB","BB","1","Ls","Littorina_sitkana","Type 13",82,0.0875,937.142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur"
+"2015-09-29_YB-BBq2",2015-09-29,2015-09-29,"YB","BB","2","Ls","Littorina_sitkana","Type 13",120,0.0875,1371.42857142857,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to blur"
+"2015-09-29_YB-BBq9",2015-09-29,2015-09-29,"YB","BB","9","Ls","Littorina_sitkana","Type 13",219,0.0875,2502.85714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle counts likely low due to recruit size; other counts may be low due to blur"
+"2015-09-29_YB-BBq1",2015-09-29,2015-09-29,"YB","BB","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur"
+"2015-09-29_YB-BBq2",2015-09-29,2015-09-29,"YB","BB","2","Mc","Mytilus_californianus","Type 17",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to blur"
+"2015-09-29_YB-BBq9",2015-09-29,2015-09-29,"YB","BB","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle counts likely low due to recruit size; other counts may be low due to blur"
+"2015-09-29_YB-BBq1",2015-09-29,2015-09-29,"YB","BB","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur"
+"2015-09-29_YB-BBq2",2015-09-29,2015-09-29,"YB","BB","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to blur"
+"2015-09-29_YB-BBq9",2015-09-29,2015-09-29,"YB","BB","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle counts likely low due to recruit size; other counts may be low due to blur"
+"2015-09-29_YB-BBq1",2015-09-29,2015-09-29,"YB","BB","1","Myt","Mytilus_spp","Type 7",12,0.0875,137.142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur"
+"2015-09-29_YB-BBq2",2015-09-29,2015-09-29,"YB","BB","2","Myt","Mytilus_spp","Type 7",9,0.0875,102.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to blur"
+"2015-09-29_YB-BBq9",2015-09-29,2015-09-29,"YB","BB","9","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle counts likely low due to recruit size; other counts may be low due to blur"
+"2015-09-29_YB-BBq1",2015-09-29,2015-09-29,"YB","BB","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur"
+"2015-09-29_YB-BBq2",2015-09-29,2015-09-29,"YB","BB","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to blur"
+"2015-09-29_YB-BBq9",2015-09-29,2015-09-29,"YB","BB","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle counts likely low due to recruit size; other counts may be low due to blur"
+"2015-09-29_YB-BBq1",2015-09-29,2015-09-29,"YB","BB","1","Mt","Mytilus_trossulus","Type 15",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur"
+"2015-09-29_YB-BBq2",2015-09-29,2015-09-29,"YB","BB","2","Mt","Mytilus_trossulus","Type 15",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to blur"
+"2015-09-29_YB-BBq9",2015-09-29,2015-09-29,"YB","BB","9","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle counts likely low due to recruit size; other counts may be low due to blur"
+"2015-09-29_YB-BBq1",2015-09-29,2015-09-29,"YB","BB","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur"
+"2015-09-29_YB-BBq2",2015-09-29,2015-09-29,"YB","BB","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to blur"
+"2015-09-29_YB-BBq9",2015-09-29,2015-09-29,"YB","BB","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle counts likely low due to recruit size; other counts may be low due to blur"
+"2015-09-29_YB-BBq1",2015-09-29,2015-09-29,"YB","BB","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur"
+"2015-09-29_YB-BBq2",2015-09-29,2015-09-29,"YB","BB","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to blur"
+"2015-09-29_YB-BBq9",2015-09-29,2015-09-29,"YB","BB","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle counts likely low due to recruit size; other counts may be low due to blur"
+"2015-09-29_YB-BBq1",2015-09-29,2015-09-29,"YB","BB","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur"
+"2015-09-29_YB-BBq2",2015-09-29,2015-09-29,"YB","BB","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to blur"
+"2015-09-29_YB-BBq9",2015-09-29,2015-09-29,"YB","BB","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle counts likely low due to recruit size; other counts may be low due to blur"
+"2015-09-29_YB-BBq1",2015-09-29,2015-09-29,"YB","BB","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur"
+"2015-09-29_YB-BBq2",2015-09-29,2015-09-29,"YB","BB","2","Negg","Nucella_eggs","Type 26",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to blur"
+"2015-09-29_YB-BBq9",2015-09-29,2015-09-29,"YB","BB","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle counts likely low due to recruit size; other counts may be low due to blur"
+"2015-09-29_YB-BBq1",2015-09-29,2015-09-29,"YB","BB","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur"
+"2015-09-29_YB-BBq2",2015-09-29,2015-09-29,"YB","BB","2","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to blur"
+"2015-09-29_YB-BBq9",2015-09-29,2015-09-29,"YB","BB","9","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle counts likely low due to recruit size; other counts may be low due to blur"
+"2015-09-29_YB-BBq1",2015-09-29,2015-09-29,"YB","BB","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur"
+"2015-09-29_YB-BBq2",2015-09-29,2015-09-29,"YB","BB","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to blur"
+"2015-09-29_YB-BBq9",2015-09-29,2015-09-29,"YB","BB","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle counts likely low due to recruit size; other counts may be low due to blur"
+"2015-09-29_YB-BBq1",2015-09-29,2015-09-29,"YB","BB","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur"
+"2015-09-29_YB-BBq2",2015-09-29,2015-09-29,"YB","BB","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to blur"
+"2015-09-29_YB-BBq9",2015-09-29,2015-09-29,"YB","BB","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle counts likely low due to recruit size; other counts may be low due to blur"
+"2015-09-29_YB-BBq1",2015-09-29,2015-09-29,"YB","BB","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur"
+"2015-09-29_YB-BBq2",2015-09-29,2015-09-29,"YB","BB","2","Pp","Pollicipes_polymerus","Type 11",20,0.0875,228.571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to blur"
+"2015-09-29_YB-BBq9",2015-09-29,2015-09-29,"YB","BB","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle counts likely low due to recruit size; other counts may be low due to blur"
+"2015-09-29_YB-BBq1",2015-09-29,2015-09-29,"YB","BB","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur"
+"2015-09-29_YB-BBq2",2015-09-29,2015-09-29,"YB","BB","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to blur"
+"2015-09-29_YB-BBq9",2015-09-29,2015-09-29,"YB","BB","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle counts likely low due to recruit size; other counts may be low due to blur"
+"2015-09-29_YB-BBq1",2015-09-29,2015-09-29,"YB","BB","1","Sc","Semibalanus_cariosus","Type 5",4,0.0875,45.7142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur"
+"2015-09-29_YB-BBq2",2015-09-29,2015-09-29,"YB","BB","2","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to blur"
+"2015-09-29_YB-BBq9",2015-09-29,2015-09-29,"YB","BB","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle counts likely low due to recruit size; other counts may be low due to blur"
+"2015-09-29_YB-BBq1",2015-09-29,2015-09-29,"YB","BB","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur"
+"2015-09-29_YB-BBq2",2015-09-29,2015-09-29,"YB","BB","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to blur"
+"2015-09-29_YB-BBq9",2015-09-29,2015-09-29,"YB","BB","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Barnacle counts likely low due to recruit size; other counts may be low due to blur"
+"2015-09-29_YB-BCq3",2015-09-29,2015-09-29,"YB","BC","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to glare"
+"2015-09-29_YB-BCq5",2015-09-29,2015-09-29,"YB","BC","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to sediment layer"
+"2015-09-29_YB-BCq9",2015-09-29,2015-09-29,"YB","BC","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to sediment layer"
+"2015-09-29_YB-BCq3",2015-09-29,2015-09-29,"YB","BC","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to glare"
+"2015-09-29_YB-BCq5",2015-09-29,2015-09-29,"YB","BC","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to sediment layer"
+"2015-09-29_YB-BCq9",2015-09-29,2015-09-29,"YB","BC","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to sediment layer"
+"2015-09-29_YB-BCq3",2015-09-29,2015-09-29,"YB","BC","3","Bg","Balanus_glandula","Type 1",1835,0.0875,20971.4285714286,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to glare"
+"2015-09-29_YB-BCq5",2015-09-29,2015-09-29,"YB","BC","5","Bg","Balanus_glandula","Type 1",355,0.0875,4057.14285714286,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to sediment layer"
+"2015-09-29_YB-BCq9",2015-09-29,2015-09-29,"YB","BC","9","Bg","Balanus_glandula","Type 1",976,0.0875,11154.2857142857,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to sediment layer"
+"2015-09-29_YB-BCq3",2015-09-29,2015-09-29,"YB","BC","3","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to glare"
+"2015-09-29_YB-BCq5",2015-09-29,2015-09-29,"YB","BC","5","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to sediment layer"
+"2015-09-29_YB-BCq9",2015-09-29,2015-09-29,"YB","BC","9","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to sediment layer"
+"2015-09-29_YB-BCq3",2015-09-29,2015-09-29,"YB","BC","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to glare"
+"2015-09-29_YB-BCq5",2015-09-29,2015-09-29,"YB","BC","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to sediment layer"
+"2015-09-29_YB-BCq9",2015-09-29,2015-09-29,"YB","BC","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to sediment layer"
+"2015-09-29_YB-BCq3",2015-09-29,2015-09-29,"YB","BC","3","Cth","Chthamalus_dalli","Type 3",380,0.0875,4342.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to glare"
+"2015-09-29_YB-BCq5",2015-09-29,2015-09-29,"YB","BC","5","Cth","Chthamalus_dalli","Type 3",35,0.0875,400,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to sediment layer"
+"2015-09-29_YB-BCq9",2015-09-29,2015-09-29,"YB","BC","9","Cth","Chthamalus_dalli","Type 3",47,0.0875,537.142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to sediment layer"
+"2015-09-29_YB-BCq3",2015-09-29,2015-09-29,"YB","BC","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to glare"
+"2015-09-29_YB-BCq5",2015-09-29,2015-09-29,"YB","BC","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to sediment layer"
+"2015-09-29_YB-BCq9",2015-09-29,2015-09-29,"YB","BC","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to sediment layer"
+"2015-09-29_YB-BCq3",2015-09-29,2015-09-29,"YB","BC","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to glare"
+"2015-09-29_YB-BCq5",2015-09-29,2015-09-29,"YB","BC","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to sediment layer"
+"2015-09-29_YB-BCq9",2015-09-29,2015-09-29,"YB","BC","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to sediment layer"
+"2015-09-29_YB-BCq3",2015-09-29,2015-09-29,"YB","BC","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to glare"
+"2015-09-29_YB-BCq5",2015-09-29,2015-09-29,"YB","BC","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to sediment layer"
+"2015-09-29_YB-BCq9",2015-09-29,2015-09-29,"YB","BC","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to sediment layer"
+"2015-09-29_YB-BCq3",2015-09-29,2015-09-29,"YB","BC","3","Lim","Limpets","Type 12",215,0.0875,2457.14285714286,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to glare"
+"2015-09-29_YB-BCq5",2015-09-29,2015-09-29,"YB","BC","5","Lim","Limpets","Type 12",102,0.0875,1165.71428571429,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to sediment layer"
+"2015-09-29_YB-BCq9",2015-09-29,2015-09-29,"YB","BC","9","Lim","Limpets","Type 12",102,0.0875,1165.71428571429,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to sediment layer"
+"2015-09-29_YB-BCq3",2015-09-29,2015-09-29,"YB","BC","3","Ls","Littorina_sitkana","Type 13",308,0.0875,3520,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to glare"
+"2015-09-29_YB-BCq5",2015-09-29,2015-09-29,"YB","BC","5","Ls","Littorina_sitkana","Type 13",214,0.0875,2445.71428571429,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to sediment layer"
+"2015-09-29_YB-BCq9",2015-09-29,2015-09-29,"YB","BC","9","Ls","Littorina_sitkana","Type 13",284,0.0875,3245.71428571429,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to sediment layer"
+"2015-09-29_YB-BCq3",2015-09-29,2015-09-29,"YB","BC","3","Mc","Mytilus_californianus","Type 17",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to glare"
+"2015-09-29_YB-BCq5",2015-09-29,2015-09-29,"YB","BC","5","Mc","Mytilus_californianus","Type 17",5,0.0875,57.1428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to sediment layer"
+"2015-09-29_YB-BCq9",2015-09-29,2015-09-29,"YB","BC","9","Mc","Mytilus_californianus","Type 17",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to sediment layer"
+"2015-09-29_YB-BCq3",2015-09-29,2015-09-29,"YB","BC","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to glare"
+"2015-09-29_YB-BCq5",2015-09-29,2015-09-29,"YB","BC","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to sediment layer"
+"2015-09-29_YB-BCq9",2015-09-29,2015-09-29,"YB","BC","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to sediment layer"
+"2015-09-29_YB-BCq3",2015-09-29,2015-09-29,"YB","BC","3","Myt","Mytilus_spp","Type 7",37,0.0875,422.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to glare"
+"2015-09-29_YB-BCq5",2015-09-29,2015-09-29,"YB","BC","5","Myt","Mytilus_spp","Type 7",5,0.0875,57.1428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to sediment layer"
+"2015-09-29_YB-BCq9",2015-09-29,2015-09-29,"YB","BC","9","Myt","Mytilus_spp","Type 7",51,0.0875,582.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to sediment layer"
+"2015-09-29_YB-BCq3",2015-09-29,2015-09-29,"YB","BC","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to glare"
+"2015-09-29_YB-BCq5",2015-09-29,2015-09-29,"YB","BC","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to sediment layer"
+"2015-09-29_YB-BCq9",2015-09-29,2015-09-29,"YB","BC","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to sediment layer"
+"2015-09-29_YB-BCq3",2015-09-29,2015-09-29,"YB","BC","3","Mt","Mytilus_trossulus","Type 15",8,0.0875,91.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to glare"
+"2015-09-29_YB-BCq5",2015-09-29,2015-09-29,"YB","BC","5","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to sediment layer"
+"2015-09-29_YB-BCq9",2015-09-29,2015-09-29,"YB","BC","9","Mt","Mytilus_trossulus","Type 15",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to sediment layer"
+"2015-09-29_YB-BCq3",2015-09-29,2015-09-29,"YB","BC","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to glare"
+"2015-09-29_YB-BCq5",2015-09-29,2015-09-29,"YB","BC","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to sediment layer"
+"2015-09-29_YB-BCq9",2015-09-29,2015-09-29,"YB","BC","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to sediment layer"
+"2015-09-29_YB-BCq3",2015-09-29,2015-09-29,"YB","BC","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to glare"
+"2015-09-29_YB-BCq5",2015-09-29,2015-09-29,"YB","BC","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to sediment layer"
+"2015-09-29_YB-BCq9",2015-09-29,2015-09-29,"YB","BC","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to sediment layer"
+"2015-09-29_YB-BCq3",2015-09-29,2015-09-29,"YB","BC","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to glare"
+"2015-09-29_YB-BCq5",2015-09-29,2015-09-29,"YB","BC","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to sediment layer"
+"2015-09-29_YB-BCq9",2015-09-29,2015-09-29,"YB","BC","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to sediment layer"
+"2015-09-29_YB-BCq3",2015-09-29,2015-09-29,"YB","BC","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to glare"
+"2015-09-29_YB-BCq5",2015-09-29,2015-09-29,"YB","BC","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to sediment layer"
+"2015-09-29_YB-BCq9",2015-09-29,2015-09-29,"YB","BC","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to sediment layer"
+"2015-09-29_YB-BCq3",2015-09-29,2015-09-29,"YB","BC","3","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to glare"
+"2015-09-29_YB-BCq5",2015-09-29,2015-09-29,"YB","BC","5","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to sediment layer"
+"2015-09-29_YB-BCq9",2015-09-29,2015-09-29,"YB","BC","9","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to sediment layer"
+"2015-09-29_YB-BCq3",2015-09-29,2015-09-29,"YB","BC","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to glare"
+"2015-09-29_YB-BCq5",2015-09-29,2015-09-29,"YB","BC","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to sediment layer"
+"2015-09-29_YB-BCq9",2015-09-29,2015-09-29,"YB","BC","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to sediment layer"
+"2015-09-29_YB-BCq3",2015-09-29,2015-09-29,"YB","BC","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to glare"
+"2015-09-29_YB-BCq5",2015-09-29,2015-09-29,"YB","BC","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to sediment layer"
+"2015-09-29_YB-BCq9",2015-09-29,2015-09-29,"YB","BC","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to sediment layer"
+"2015-09-29_YB-BCq3",2015-09-29,2015-09-29,"YB","BC","3","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to glare"
+"2015-09-29_YB-BCq5",2015-09-29,2015-09-29,"YB","BC","5","Pp","Pollicipes_polymerus","Type 11",4,0.0875,45.7142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to sediment layer"
+"2015-09-29_YB-BCq9",2015-09-29,2015-09-29,"YB","BC","9","Pp","Pollicipes_polymerus","Type 11",165,0.0875,1885.71428571429,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to sediment layer"
+"2015-09-29_YB-BCq3",2015-09-29,2015-09-29,"YB","BC","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to glare"
+"2015-09-29_YB-BCq5",2015-09-29,2015-09-29,"YB","BC","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to sediment layer"
+"2015-09-29_YB-BCq9",2015-09-29,2015-09-29,"YB","BC","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to sediment layer"
+"2015-09-29_YB-BCq3",2015-09-29,2015-09-29,"YB","BC","3","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to glare"
+"2015-09-29_YB-BCq5",2015-09-29,2015-09-29,"YB","BC","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to sediment layer"
+"2015-09-29_YB-BCq9",2015-09-29,2015-09-29,"YB","BC","9","Sc","Semibalanus_cariosus","Type 5",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to sediment layer"
+"2015-09-29_YB-BCq3",2015-09-29,2015-09-29,"YB","BC","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%","Counts likely low due to glare"
+"2015-09-29_YB-BCq5",2015-09-29,2015-09-29,"YB","BC","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to sediment layer"
+"2015-09-29_YB-BCq9",2015-09-29,2015-09-29,"YB","BC","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Counts likely low due to sediment layer"
+"2015-09-29_YB-BDq1",2015-09-29,2015-09-29,"YB","BD","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","24%","Counts may be low due to glare. balanus and myt. are mostly recuits"
+"2015-09-29_YB-BDq5",2015-09-29,2015-09-29,"YB","BD","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","28%","Counts may be low due to glare. balanus and myt. are mostly recruits"
+"2015-09-29_YB-BDq7",2015-09-29,2015-09-29,"YB","BD","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2015-09-29_YB-BDq1",2015-09-29,2015-09-29,"YB","BD","1","Ae","Anemones","Type 14",37,0.0875,422.857142857143,NA,"Julia Bingham","Finished","Full","Cropped","24%","Counts may be low due to glare. balanus and myt. are mostly recuits"
+"2015-09-29_YB-BDq5",2015-09-29,2015-09-29,"YB","BD","5","Ae","Anemones","Type 14",43,0.0875,491.428571428571,NA,"Julia Bingham","Finished","Full","Full","28%","Counts may be low due to glare. balanus and myt. are mostly recruits"
+"2015-09-29_YB-BDq7",2015-09-29,2015-09-29,"YB","BD","7","Ae","Anemones","Type 14",33,0.0875,377.142857142857,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2015-09-29_YB-BDq1",2015-09-29,2015-09-29,"YB","BD","1","Bg","Balanus_glandula","Type 1",1054,0.015625,67456,"c","Julia Bingham","Finished","Full","Cropped","24%","Counts may be low due to glare. balanus and myt. are mostly recuits"
+"2015-09-29_YB-BDq5",2015-09-29,2015-09-29,"YB","BD","5","Bg","Balanus_glandula","Type 1",2831,0.0875,32354.2857142857,NA,"Julia Bingham","Finished","Full","Full","28%","Counts may be low due to glare. balanus and myt. are mostly recruits"
+"2015-09-29_YB-BDq7",2015-09-29,2015-09-29,"YB","BD","7","Bg","Balanus_glandula","Type 1",669,0.0875,7645.71428571429,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2015-09-29_YB-BDq1",2015-09-29,2015-09-29,"YB","BD","1","BgD","Balanus_glandula_(dead)","Type 2",4,0.015625,256,"c","Julia Bingham","Finished","Full","Cropped","24%","Counts may be low due to glare. balanus and myt. are mostly recuits"
+"2015-09-29_YB-BDq5",2015-09-29,2015-09-29,"YB","BD","5","BgD","Balanus_glandula_(dead)","Type 2",16,0.0875,182.857142857143,NA,"Julia Bingham","Finished","Full","Full","28%","Counts may be low due to glare. balanus and myt. are mostly recruits"
+"2015-09-29_YB-BDq7",2015-09-29,2015-09-29,"YB","BD","7","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2015-09-29_YB-BDq1",2015-09-29,2015-09-29,"YB","BD","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","24%","Counts may be low due to glare. balanus and myt. are mostly recuits"
+"2015-09-29_YB-BDq5",2015-09-29,2015-09-29,"YB","BD","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","28%","Counts may be low due to glare. balanus and myt. are mostly recruits"
+"2015-09-29_YB-BDq7",2015-09-29,2015-09-29,"YB","BD","7","Chi","Chiton_spp","Type 22",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2015-09-29_YB-BDq1",2015-09-29,2015-09-29,"YB","BD","1","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Julia Bingham","Finished","Full","Cropped","24%","Counts may be low due to glare. balanus and myt. are mostly recuits"
+"2015-09-29_YB-BDq5",2015-09-29,2015-09-29,"YB","BD","5","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","28%","Counts may be low due to glare. balanus and myt. are mostly recruits"
+"2015-09-29_YB-BDq7",2015-09-29,2015-09-29,"YB","BD","7","Cth","Chthamalus_dalli","Type 3",32,0.0875,365.714285714286,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2015-09-29_YB-BDq1",2015-09-29,2015-09-29,"YB","BD","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Julia Bingham","Finished","Full","Cropped","24%","Counts may be low due to glare. balanus and myt. are mostly recuits"
+"2015-09-29_YB-BDq5",2015-09-29,2015-09-29,"YB","BD","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","28%","Counts may be low due to glare. balanus and myt. are mostly recruits"
+"2015-09-29_YB-BDq7",2015-09-29,2015-09-29,"YB","BD","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2015-09-29_YB-BDq1",2015-09-29,2015-09-29,"YB","BD","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","24%","Counts may be low due to glare. balanus and myt. are mostly recuits"
+"2015-09-29_YB-BDq5",2015-09-29,2015-09-29,"YB","BD","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","28%","Counts may be low due to glare. balanus and myt. are mostly recruits"
+"2015-09-29_YB-BDq7",2015-09-29,2015-09-29,"YB","BD","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2015-09-29_YB-BDq1",2015-09-29,2015-09-29,"YB","BD","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","24%","Counts may be low due to glare. balanus and myt. are mostly recuits"
+"2015-09-29_YB-BDq5",2015-09-29,2015-09-29,"YB","BD","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","28%","Counts may be low due to glare. balanus and myt. are mostly recruits"
+"2015-09-29_YB-BDq7",2015-09-29,2015-09-29,"YB","BD","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2015-09-29_YB-BDq1",2015-09-29,2015-09-29,"YB","BD","1","Lim","Limpets","Type 12",94,0.0875,1074.28571428571,NA,"Julia Bingham","Finished","Full","Cropped","24%","Counts may be low due to glare. balanus and myt. are mostly recuits"
+"2015-09-29_YB-BDq5",2015-09-29,2015-09-29,"YB","BD","5","Lim","Limpets","Type 12",197,0.0875,2251.42857142857,NA,"Julia Bingham","Finished","Full","Full","28%","Counts may be low due to glare. balanus and myt. are mostly recruits"
+"2015-09-29_YB-BDq7",2015-09-29,2015-09-29,"YB","BD","7","Lim","Limpets","Type 12",191,0.0875,2182.85714285714,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2015-09-29_YB-BDq1",2015-09-29,2015-09-29,"YB","BD","1","Ls","Littorina_sitkana","Type 13",361,0.0875,4125.71428571429,NA,"Julia Bingham","Finished","Full","Cropped","24%","Counts may be low due to glare. balanus and myt. are mostly recuits"
+"2015-09-29_YB-BDq5",2015-09-29,2015-09-29,"YB","BD","5","Ls","Littorina_sitkana","Type 13",539,0.0875,6160,NA,"Julia Bingham","Finished","Full","Full","28%","Counts may be low due to glare. balanus and myt. are mostly recruits"
+"2015-09-29_YB-BDq7",2015-09-29,2015-09-29,"YB","BD","7","Ls","Littorina_sitkana","Type 13",440,0.0875,5028.57142857143,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2015-09-29_YB-BDq1",2015-09-29,2015-09-29,"YB","BD","1","Mc","Mytilus_californianus","Type 17",9,0.0875,102.857142857143,NA,"Julia Bingham","Finished","Full","Cropped","24%","Counts may be low due to glare. balanus and myt. are mostly recuits"
+"2015-09-29_YB-BDq5",2015-09-29,2015-09-29,"YB","BD","5","Mc","Mytilus_californianus","Type 17",6,0.0875,68.5714285714286,NA,"Julia Bingham","Finished","Full","Full","28%","Counts may be low due to glare. balanus and myt. are mostly recruits"
+"2015-09-29_YB-BDq7",2015-09-29,2015-09-29,"YB","BD","7","Mc","Mytilus_californianus","Type 17",5,0.0875,57.1428571428571,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2015-09-29_YB-BDq1",2015-09-29,2015-09-29,"YB","BD","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","24%","Counts may be low due to glare. balanus and myt. are mostly recuits"
+"2015-09-29_YB-BDq5",2015-09-29,2015-09-29,"YB","BD","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","28%","Counts may be low due to glare. balanus and myt. are mostly recruits"
+"2015-09-29_YB-BDq7",2015-09-29,2015-09-29,"YB","BD","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2015-09-29_YB-BDq1",2015-09-29,2015-09-29,"YB","BD","1","Myt","Mytilus_spp","Type 7",1060,0.0875,12114.2857142857,NA,"Julia Bingham","Finished","Full","Cropped","24%","Counts may be low due to glare. balanus and myt. are mostly recuits"
+"2015-09-29_YB-BDq5",2015-09-29,2015-09-29,"YB","BD","5","Myt","Mytilus_spp","Type 7",2499,0.0875,28560,NA,"Julia Bingham","Finished","Full","Full","28%","Counts may be low due to glare. balanus and myt. are mostly recruits"
+"2015-09-29_YB-BDq7",2015-09-29,2015-09-29,"YB","BD","7","Myt","Mytilus_spp","Type 7",734,0.0875,8388.57142857143,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2015-09-29_YB-BDq1",2015-09-29,2015-09-29,"YB","BD","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","24%","Counts may be low due to glare. balanus and myt. are mostly recuits"
+"2015-09-29_YB-BDq5",2015-09-29,2015-09-29,"YB","BD","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","28%","Counts may be low due to glare. balanus and myt. are mostly recruits"
+"2015-09-29_YB-BDq7",2015-09-29,2015-09-29,"YB","BD","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2015-09-29_YB-BDq1",2015-09-29,2015-09-29,"YB","BD","1","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","24%","Counts may be low due to glare. balanus and myt. are mostly recuits"
+"2015-09-29_YB-BDq5",2015-09-29,2015-09-29,"YB","BD","5","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","28%","Counts may be low due to glare. balanus and myt. are mostly recruits"
+"2015-09-29_YB-BDq7",2015-09-29,2015-09-29,"YB","BD","7","Mt","Mytilus_trossulus","Type 15",5,0.0875,57.1428571428571,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2015-09-29_YB-BDq1",2015-09-29,2015-09-29,"YB","BD","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","24%","Counts may be low due to glare. balanus and myt. are mostly recuits"
+"2015-09-29_YB-BDq5",2015-09-29,2015-09-29,"YB","BD","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","28%","Counts may be low due to glare. balanus and myt. are mostly recruits"
+"2015-09-29_YB-BDq7",2015-09-29,2015-09-29,"YB","BD","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2015-09-29_YB-BDq1",2015-09-29,2015-09-29,"YB","BD","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","24%","Counts may be low due to glare. balanus and myt. are mostly recuits"
+"2015-09-29_YB-BDq5",2015-09-29,2015-09-29,"YB","BD","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","28%","Counts may be low due to glare. balanus and myt. are mostly recruits"
+"2015-09-29_YB-BDq7",2015-09-29,2015-09-29,"YB","BD","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2015-09-29_YB-BDq1",2015-09-29,2015-09-29,"YB","BD","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","24%","Counts may be low due to glare. balanus and myt. are mostly recuits"
+"2015-09-29_YB-BDq5",2015-09-29,2015-09-29,"YB","BD","5","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","28%","Counts may be low due to glare. balanus and myt. are mostly recruits"
+"2015-09-29_YB-BDq7",2015-09-29,2015-09-29,"YB","BD","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2015-09-29_YB-BDq1",2015-09-29,2015-09-29,"YB","BD","1","Negg","Nucella_eggs","Type 26",20,0.0875,228.571428571429,NA,"Julia Bingham","Finished","Full","Cropped","24%","Counts may be low due to glare. balanus and myt. are mostly recuits"
+"2015-09-29_YB-BDq5",2015-09-29,2015-09-29,"YB","BD","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","28%","Counts may be low due to glare. balanus and myt. are mostly recruits"
+"2015-09-29_YB-BDq7",2015-09-29,2015-09-29,"YB","BD","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2015-09-29_YB-BDq1",2015-09-29,2015-09-29,"YB","BD","1","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Julia Bingham","Finished","Full","Cropped","24%","Counts may be low due to glare. balanus and myt. are mostly recuits"
+"2015-09-29_YB-BDq5",2015-09-29,2015-09-29,"YB","BD","5","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","28%","Counts may be low due to glare. balanus and myt. are mostly recruits"
+"2015-09-29_YB-BDq7",2015-09-29,2015-09-29,"YB","BD","7","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2015-09-29_YB-BDq1",2015-09-29,2015-09-29,"YB","BD","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","24%","Counts may be low due to glare. balanus and myt. are mostly recuits"
+"2015-09-29_YB-BDq5",2015-09-29,2015-09-29,"YB","BD","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","28%","Counts may be low due to glare. balanus and myt. are mostly recruits"
+"2015-09-29_YB-BDq7",2015-09-29,2015-09-29,"YB","BD","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2015-09-29_YB-BDq1",2015-09-29,2015-09-29,"YB","BD","1","Pis","Pisaster","Type 21",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Cropped","24%","Counts may be low due to glare. balanus and myt. are mostly recuits"
+"2015-09-29_YB-BDq5",2015-09-29,2015-09-29,"YB","BD","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","28%","Counts may be low due to glare. balanus and myt. are mostly recruits"
+"2015-09-29_YB-BDq7",2015-09-29,2015-09-29,"YB","BD","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2015-09-29_YB-BDq1",2015-09-29,2015-09-29,"YB","BD","1","Pp","Pollicipes_polymerus","Type 11",574,0.0875,6560,NA,"Julia Bingham","Finished","Full","Cropped","24%","Counts may be low due to glare. balanus and myt. are mostly recuits"
+"2015-09-29_YB-BDq5",2015-09-29,2015-09-29,"YB","BD","5","Pp","Pollicipes_polymerus","Type 11",1530,0.0875,17485.7142857143,NA,"Julia Bingham","Finished","Full","Full","28%","Counts may be low due to glare. balanus and myt. are mostly recruits"
+"2015-09-29_YB-BDq7",2015-09-29,2015-09-29,"YB","BD","7","Pp","Pollicipes_polymerus","Type 11",2392,0.0875,27337.1428571429,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2015-09-29_YB-BDq1",2015-09-29,2015-09-29,"YB","BD","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Cropped","24%","Counts may be low due to glare. balanus and myt. are mostly recuits"
+"2015-09-29_YB-BDq5",2015-09-29,2015-09-29,"YB","BD","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","28%","Counts may be low due to glare. balanus and myt. are mostly recruits"
+"2015-09-29_YB-BDq7",2015-09-29,2015-09-29,"YB","BD","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2015-09-29_YB-BDq1",2015-09-29,2015-09-29,"YB","BD","1","Sc","Semibalanus_cariosus","Type 5",3,0.0875,34.2857142857143,NA,"Julia Bingham","Finished","Full","Cropped","24%","Counts may be low due to glare. balanus and myt. are mostly recuits"
+"2015-09-29_YB-BDq5",2015-09-29,2015-09-29,"YB","BD","5","Sc","Semibalanus_cariosus","Type 5",8,0.0875,91.4285714285714,NA,"Julia Bingham","Finished","Full","Full","28%","Counts may be low due to glare. balanus and myt. are mostly recruits"
+"2015-09-29_YB-BDq7",2015-09-29,2015-09-29,"YB","BD","7","Sc","Semibalanus_cariosus","Type 5",5,0.0875,57.1428571428571,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2015-09-29_YB-BDq1",2015-09-29,2015-09-29,"YB","BD","1","ScD","Semibalanus_cariosus_(dead)","Type 6",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Cropped","24%","Counts may be low due to glare. balanus and myt. are mostly recuits"
+"2015-09-29_YB-BDq5",2015-09-29,2015-09-29,"YB","BD","5","ScD","Semibalanus_cariosus_(dead)","Type 6",1,0.0875,11.4285714285714,NA,"Julia Bingham","Finished","Full","Full","28%","Counts may be low due to glare. balanus and myt. are mostly recruits"
+"2015-09-29_YB-BDq7",2015-09-29,2015-09-29,"YB","BD","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Julia Bingham","Finished","Full","Full","8%",""
+"2015-09-29_YB-BEq2",2015-09-29,2015-09-29,"YB","BE","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare and blur"
+"2015-09-29_YB-BEq3",2015-09-29,2015-09-29,"YB","BE","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BEq6",2015-09-29,2015-09-29,"YB","BE","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BEq2",2015-09-29,2015-09-29,"YB","BE","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare and blur"
+"2015-09-29_YB-BEq3",2015-09-29,2015-09-29,"YB","BE","3","Ae","Anemones","Type 14",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BEq6",2015-09-29,2015-09-29,"YB","BE","6","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BEq2",2015-09-29,2015-09-29,"YB","BE","2","Bg","Balanus_glandula","Type 1",59,0.0875,674.285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare and blur"
+"2015-09-29_YB-BEq3",2015-09-29,2015-09-29,"YB","BE","3","Bg","Balanus_glandula","Type 1",444,0.0875,5074.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BEq6",2015-09-29,2015-09-29,"YB","BE","6","Bg","Balanus_glandula","Type 1",498,0.0875,5691.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BEq2",2015-09-29,2015-09-29,"YB","BE","2","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare and blur"
+"2015-09-29_YB-BEq3",2015-09-29,2015-09-29,"YB","BE","3","BgD","Balanus_glandula_(dead)","Type 2",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BEq6",2015-09-29,2015-09-29,"YB","BE","6","BgD","Balanus_glandula_(dead)","Type 2",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BEq2",2015-09-29,2015-09-29,"YB","BE","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare and blur"
+"2015-09-29_YB-BEq3",2015-09-29,2015-09-29,"YB","BE","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BEq6",2015-09-29,2015-09-29,"YB","BE","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BEq2",2015-09-29,2015-09-29,"YB","BE","2","Cth","Chthamalus_dalli","Type 3",103,0.0875,1177.14285714286,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare and blur"
+"2015-09-29_YB-BEq3",2015-09-29,2015-09-29,"YB","BE","3","Cth","Chthamalus_dalli","Type 3",410,0.0875,4685.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BEq6",2015-09-29,2015-09-29,"YB","BE","6","Cth","Chthamalus_dalli","Type 3",97,0.0875,1108.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BEq2",2015-09-29,2015-09-29,"YB","BE","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare and blur"
+"2015-09-29_YB-BEq3",2015-09-29,2015-09-29,"YB","BE","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BEq6",2015-09-29,2015-09-29,"YB","BE","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BEq2",2015-09-29,2015-09-29,"YB","BE","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare and blur"
+"2015-09-29_YB-BEq3",2015-09-29,2015-09-29,"YB","BE","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BEq6",2015-09-29,2015-09-29,"YB","BE","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BEq2",2015-09-29,2015-09-29,"YB","BE","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare and blur"
+"2015-09-29_YB-BEq3",2015-09-29,2015-09-29,"YB","BE","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BEq6",2015-09-29,2015-09-29,"YB","BE","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BEq2",2015-09-29,2015-09-29,"YB","BE","2","Lim","Limpets","Type 12",84,0.0875,960,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare and blur"
+"2015-09-29_YB-BEq3",2015-09-29,2015-09-29,"YB","BE","3","Lim","Limpets","Type 12",233,0.0875,2662.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BEq6",2015-09-29,2015-09-29,"YB","BE","6","Lim","Limpets","Type 12",230,0.0875,2628.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BEq2",2015-09-29,2015-09-29,"YB","BE","2","Ls","Littorina_sitkana","Type 13",177,0.0875,2022.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare and blur"
+"2015-09-29_YB-BEq3",2015-09-29,2015-09-29,"YB","BE","3","Ls","Littorina_sitkana","Type 13",103,0.0875,1177.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BEq6",2015-09-29,2015-09-29,"YB","BE","6","Ls","Littorina_sitkana","Type 13",119,0.0875,1360,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BEq2",2015-09-29,2015-09-29,"YB","BE","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare and blur"
+"2015-09-29_YB-BEq3",2015-09-29,2015-09-29,"YB","BE","3","Mc","Mytilus_californianus","Type 17",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BEq6",2015-09-29,2015-09-29,"YB","BE","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BEq2",2015-09-29,2015-09-29,"YB","BE","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare and blur"
+"2015-09-29_YB-BEq3",2015-09-29,2015-09-29,"YB","BE","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BEq6",2015-09-29,2015-09-29,"YB","BE","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BEq2",2015-09-29,2015-09-29,"YB","BE","2","Myt","Mytilus_spp","Type 7",10,0.0875,114.285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare and blur"
+"2015-09-29_YB-BEq3",2015-09-29,2015-09-29,"YB","BE","3","Myt","Mytilus_spp","Type 7",14,0.0875,160,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BEq6",2015-09-29,2015-09-29,"YB","BE","6","Myt","Mytilus_spp","Type 7",42,0.0875,480,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BEq2",2015-09-29,2015-09-29,"YB","BE","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare and blur"
+"2015-09-29_YB-BEq3",2015-09-29,2015-09-29,"YB","BE","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BEq6",2015-09-29,2015-09-29,"YB","BE","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BEq2",2015-09-29,2015-09-29,"YB","BE","2","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare and blur"
+"2015-09-29_YB-BEq3",2015-09-29,2015-09-29,"YB","BE","3","Mt","Mytilus_trossulus","Type 15",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BEq6",2015-09-29,2015-09-29,"YB","BE","6","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BEq2",2015-09-29,2015-09-29,"YB","BE","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare and blur"
+"2015-09-29_YB-BEq3",2015-09-29,2015-09-29,"YB","BE","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BEq6",2015-09-29,2015-09-29,"YB","BE","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BEq2",2015-09-29,2015-09-29,"YB","BE","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare and blur"
+"2015-09-29_YB-BEq3",2015-09-29,2015-09-29,"YB","BE","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BEq6",2015-09-29,2015-09-29,"YB","BE","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BEq2",2015-09-29,2015-09-29,"YB","BE","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare and blur"
+"2015-09-29_YB-BEq3",2015-09-29,2015-09-29,"YB","BE","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BEq6",2015-09-29,2015-09-29,"YB","BE","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BEq2",2015-09-29,2015-09-29,"YB","BE","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare and blur"
+"2015-09-29_YB-BEq3",2015-09-29,2015-09-29,"YB","BE","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BEq6",2015-09-29,2015-09-29,"YB","BE","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BEq2",2015-09-29,2015-09-29,"YB","BE","2","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare and blur"
+"2015-09-29_YB-BEq3",2015-09-29,2015-09-29,"YB","BE","3","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BEq6",2015-09-29,2015-09-29,"YB","BE","6","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BEq2",2015-09-29,2015-09-29,"YB","BE","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare and blur"
+"2015-09-29_YB-BEq3",2015-09-29,2015-09-29,"YB","BE","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BEq6",2015-09-29,2015-09-29,"YB","BE","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BEq2",2015-09-29,2015-09-29,"YB","BE","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare and blur"
+"2015-09-29_YB-BEq3",2015-09-29,2015-09-29,"YB","BE","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BEq6",2015-09-29,2015-09-29,"YB","BE","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BEq2",2015-09-29,2015-09-29,"YB","BE","2","Pp","Pollicipes_polymerus","Type 11",11,0.0875,125.714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare and blur"
+"2015-09-29_YB-BEq3",2015-09-29,2015-09-29,"YB","BE","3","Pp","Pollicipes_polymerus","Type 11",308,0.0875,3520,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BEq6",2015-09-29,2015-09-29,"YB","BE","6","Pp","Pollicipes_polymerus","Type 11",224,0.0875,2560,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BEq2",2015-09-29,2015-09-29,"YB","BE","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare and blur"
+"2015-09-29_YB-BEq3",2015-09-29,2015-09-29,"YB","BE","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BEq6",2015-09-29,2015-09-29,"YB","BE","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BEq2",2015-09-29,2015-09-29,"YB","BE","2","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare and blur"
+"2015-09-29_YB-BEq3",2015-09-29,2015-09-29,"YB","BE","3","Sc","Semibalanus_cariosus","Type 5",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BEq6",2015-09-29,2015-09-29,"YB","BE","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BEq2",2015-09-29,2015-09-29,"YB","BE","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare and blur"
+"2015-09-29_YB-BEq3",2015-09-29,2015-09-29,"YB","BE","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BEq6",2015-09-29,2015-09-29,"YB","BE","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BFq1",2015-09-29,2015-09-29,"YB","BF","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BFq4",2015-09-29,2015-09-29,"YB","BF","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BFq9",2015-09-29,2015-09-29,"YB","BF","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BFq1",2015-09-29,2015-09-29,"YB","BF","1","Ae","Anemones","Type 14",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BFq4",2015-09-29,2015-09-29,"YB","BF","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BFq9",2015-09-29,2015-09-29,"YB","BF","9","Ae","Anemones","Type 14",28,0.0875,320,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BFq1",2015-09-29,2015-09-29,"YB","BF","1","Bg","Balanus_glandula","Type 1",469,0.0875,5360,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BFq4",2015-09-29,2015-09-29,"YB","BF","4","Bg","Balanus_glandula","Type 1",480,0.0875,5485.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BFq9",2015-09-29,2015-09-29,"YB","BF","9","Bg","Balanus_glandula","Type 1",112,0.0875,1280,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BFq1",2015-09-29,2015-09-29,"YB","BF","1","BgD","Balanus_glandula_(dead)","Type 2",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BFq4",2015-09-29,2015-09-29,"YB","BF","4","BgD","Balanus_glandula_(dead)","Type 2",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BFq9",2015-09-29,2015-09-29,"YB","BF","9","BgD","Balanus_glandula_(dead)","Type 2",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BFq1",2015-09-29,2015-09-29,"YB","BF","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BFq4",2015-09-29,2015-09-29,"YB","BF","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BFq9",2015-09-29,2015-09-29,"YB","BF","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BFq1",2015-09-29,2015-09-29,"YB","BF","1","Cth","Chthamalus_dalli","Type 3",158,0.0875,1805.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BFq4",2015-09-29,2015-09-29,"YB","BF","4","Cth","Chthamalus_dalli","Type 3",365,0.0875,4171.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BFq9",2015-09-29,2015-09-29,"YB","BF","9","Cth","Chthamalus_dalli","Type 3",23,0.0875,262.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BFq1",2015-09-29,2015-09-29,"YB","BF","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BFq4",2015-09-29,2015-09-29,"YB","BF","4","CthD","Chthamalus_dalli (dead)","Type 4",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BFq9",2015-09-29,2015-09-29,"YB","BF","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BFq1",2015-09-29,2015-09-29,"YB","BF","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BFq4",2015-09-29,2015-09-29,"YB","BF","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BFq9",2015-09-29,2015-09-29,"YB","BF","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BFq1",2015-09-29,2015-09-29,"YB","BF","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BFq4",2015-09-29,2015-09-29,"YB","BF","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BFq9",2015-09-29,2015-09-29,"YB","BF","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BFq1",2015-09-29,2015-09-29,"YB","BF","1","Lim","Limpets","Type 12",208,0.0875,2377.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BFq4",2015-09-29,2015-09-29,"YB","BF","4","Lim","Limpets","Type 12",168,0.0875,1920,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BFq9",2015-09-29,2015-09-29,"YB","BF","9","Lim","Limpets","Type 12",141,0.0875,1611.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BFq1",2015-09-29,2015-09-29,"YB","BF","1","Ls","Littorina_sitkana","Type 13",274,0.0875,3131.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BFq4",2015-09-29,2015-09-29,"YB","BF","4","Ls","Littorina_sitkana","Type 13",298,0.0875,3405.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BFq9",2015-09-29,2015-09-29,"YB","BF","9","Ls","Littorina_sitkana","Type 13",200,0.0875,2285.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BFq1",2015-09-29,2015-09-29,"YB","BF","1","Mc","Mytilus_californianus","Type 17",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BFq4",2015-09-29,2015-09-29,"YB","BF","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BFq9",2015-09-29,2015-09-29,"YB","BF","9","Mc","Mytilus_californianus","Type 17",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BFq1",2015-09-29,2015-09-29,"YB","BF","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BFq4",2015-09-29,2015-09-29,"YB","BF","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BFq9",2015-09-29,2015-09-29,"YB","BF","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BFq1",2015-09-29,2015-09-29,"YB","BF","1","Myt","Mytilus_spp","Type 7",32,0.0875,365.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BFq4",2015-09-29,2015-09-29,"YB","BF","4","Myt","Mytilus_spp","Type 7",12,0.0875,137.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BFq9",2015-09-29,2015-09-29,"YB","BF","9","Myt","Mytilus_spp","Type 7",70,0.0875,800,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BFq1",2015-09-29,2015-09-29,"YB","BF","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BFq4",2015-09-29,2015-09-29,"YB","BF","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BFq9",2015-09-29,2015-09-29,"YB","BF","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BFq1",2015-09-29,2015-09-29,"YB","BF","1","Mt","Mytilus_trossulus","Type 15",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BFq4",2015-09-29,2015-09-29,"YB","BF","4","Mt","Mytilus_trossulus","Type 15",9,0.0875,102.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BFq9",2015-09-29,2015-09-29,"YB","BF","9","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BFq1",2015-09-29,2015-09-29,"YB","BF","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BFq4",2015-09-29,2015-09-29,"YB","BF","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BFq9",2015-09-29,2015-09-29,"YB","BF","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BFq1",2015-09-29,2015-09-29,"YB","BF","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BFq4",2015-09-29,2015-09-29,"YB","BF","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BFq9",2015-09-29,2015-09-29,"YB","BF","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BFq1",2015-09-29,2015-09-29,"YB","BF","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BFq4",2015-09-29,2015-09-29,"YB","BF","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BFq9",2015-09-29,2015-09-29,"YB","BF","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BFq1",2015-09-29,2015-09-29,"YB","BF","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BFq4",2015-09-29,2015-09-29,"YB","BF","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BFq9",2015-09-29,2015-09-29,"YB","BF","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BFq1",2015-09-29,2015-09-29,"YB","BF","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BFq4",2015-09-29,2015-09-29,"YB","BF","4","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BFq9",2015-09-29,2015-09-29,"YB","BF","9","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BFq1",2015-09-29,2015-09-29,"YB","BF","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BFq4",2015-09-29,2015-09-29,"YB","BF","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BFq9",2015-09-29,2015-09-29,"YB","BF","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BFq1",2015-09-29,2015-09-29,"YB","BF","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BFq4",2015-09-29,2015-09-29,"YB","BF","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BFq9",2015-09-29,2015-09-29,"YB","BF","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BFq1",2015-09-29,2015-09-29,"YB","BF","1","Pp","Pollicipes_polymerus","Type 11",430,0.0875,4914.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BFq4",2015-09-29,2015-09-29,"YB","BF","4","Pp","Pollicipes_polymerus","Type 11",128,0.0875,1462.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BFq9",2015-09-29,2015-09-29,"YB","BF","9","Pp","Pollicipes_polymerus","Type 11",420,0.0875,4800,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BFq1",2015-09-29,2015-09-29,"YB","BF","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BFq4",2015-09-29,2015-09-29,"YB","BF","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BFq9",2015-09-29,2015-09-29,"YB","BF","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BFq1",2015-09-29,2015-09-29,"YB","BF","1","Sc","Semibalanus_cariosus","Type 5",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BFq4",2015-09-29,2015-09-29,"YB","BF","4","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BFq9",2015-09-29,2015-09-29,"YB","BF","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BFq1",2015-09-29,2015-09-29,"YB","BF","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BFq4",2015-09-29,2015-09-29,"YB","BF","4","ScD","Semibalanus_cariosus_(dead)","Type 6",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-BFq9",2015-09-29,2015-09-29,"YB","BF","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts may be low due to glare, algae, and blur."
+"2015-09-29_YB-Cq2",2015-09-29,2015-09-29,"YB","C","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-09-29_YB-Cq4",2015-09-29,2015-09-29,"YB","C","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-09-29_YB-Cq6",2015-09-29,2015-09-29,"YB","C","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts likely low due to glare and P. polymerus recruits."
+"2015-09-29_YB-Cq2",2015-09-29,2015-09-29,"YB","C","2","Ae","Anemones","Type 14",85,0.0875,971.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-09-29_YB-Cq4",2015-09-29,2015-09-29,"YB","C","4","Ae","Anemones","Type 14",126,0.0875,1440,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-09-29_YB-Cq6",2015-09-29,2015-09-29,"YB","C","6","Ae","Anemones","Type 14",127,0.0875,1451.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts likely low due to glare and P. polymerus recruits."
+"2015-09-29_YB-Cq2",2015-09-29,2015-09-29,"YB","C","2","Bg","Balanus_glandula","Type 1",115,0.0875,1314.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-09-29_YB-Cq4",2015-09-29,2015-09-29,"YB","C","4","Bg","Balanus_glandula","Type 1",74,0.0875,845.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-09-29_YB-Cq6",2015-09-29,2015-09-29,"YB","C","6","Bg","Balanus_glandula","Type 1",48,0.0875,548.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts likely low due to glare and P. polymerus recruits."
+"2015-09-29_YB-Cq2",2015-09-29,2015-09-29,"YB","C","2","BgD","Balanus_glandula_(dead)","Type 2",9,0.0875,102.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-09-29_YB-Cq4",2015-09-29,2015-09-29,"YB","C","4","BgD","Balanus_glandula_(dead)","Type 2",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-09-29_YB-Cq6",2015-09-29,2015-09-29,"YB","C","6","BgD","Balanus_glandula_(dead)","Type 2",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts likely low due to glare and P. polymerus recruits."
+"2015-09-29_YB-Cq2",2015-09-29,2015-09-29,"YB","C","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-09-29_YB-Cq4",2015-09-29,2015-09-29,"YB","C","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-09-29_YB-Cq6",2015-09-29,2015-09-29,"YB","C","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts likely low due to glare and P. polymerus recruits."
+"2015-09-29_YB-Cq2",2015-09-29,2015-09-29,"YB","C","2","Cth","Chthamalus_dalli","Type 3",55,0.0875,628.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-09-29_YB-Cq4",2015-09-29,2015-09-29,"YB","C","4","Cth","Chthamalus_dalli","Type 3",308,0.0875,3520,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-09-29_YB-Cq6",2015-09-29,2015-09-29,"YB","C","6","Cth","Chthamalus_dalli","Type 3",264,0.0875,3017.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts likely low due to glare and P. polymerus recruits."
+"2015-09-29_YB-Cq2",2015-09-29,2015-09-29,"YB","C","2","CthD","Chthamalus_dalli (dead)","Type 4",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-09-29_YB-Cq4",2015-09-29,2015-09-29,"YB","C","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-09-29_YB-Cq6",2015-09-29,2015-09-29,"YB","C","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts likely low due to glare and P. polymerus recruits."
+"2015-09-29_YB-Cq2",2015-09-29,2015-09-29,"YB","C","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-09-29_YB-Cq4",2015-09-29,2015-09-29,"YB","C","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-09-29_YB-Cq6",2015-09-29,2015-09-29,"YB","C","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts likely low due to glare and P. polymerus recruits."
+"2015-09-29_YB-Cq2",2015-09-29,2015-09-29,"YB","C","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-09-29_YB-Cq4",2015-09-29,2015-09-29,"YB","C","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-09-29_YB-Cq6",2015-09-29,2015-09-29,"YB","C","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts likely low due to glare and P. polymerus recruits."
+"2015-09-29_YB-Cq2",2015-09-29,2015-09-29,"YB","C","2","Lim","Limpets","Type 12",103,0.0875,1177.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-09-29_YB-Cq4",2015-09-29,2015-09-29,"YB","C","4","Lim","Limpets","Type 12",99,0.0875,1131.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-09-29_YB-Cq6",2015-09-29,2015-09-29,"YB","C","6","Lim","Limpets","Type 12",122,0.0875,1394.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts likely low due to glare and P. polymerus recruits."
+"2015-09-29_YB-Cq2",2015-09-29,2015-09-29,"YB","C","2","Ls","Littorina_sitkana","Type 13",165,0.0875,1885.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-09-29_YB-Cq4",2015-09-29,2015-09-29,"YB","C","4","Ls","Littorina_sitkana","Type 13",126,0.0875,1440,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-09-29_YB-Cq6",2015-09-29,2015-09-29,"YB","C","6","Ls","Littorina_sitkana","Type 13",100,0.0875,1142.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts likely low due to glare and P. polymerus recruits."
+"2015-09-29_YB-Cq2",2015-09-29,2015-09-29,"YB","C","2","Mc","Mytilus_californianus","Type 17",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-09-29_YB-Cq4",2015-09-29,2015-09-29,"YB","C","4","Mc","Mytilus_californianus","Type 17",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-09-29_YB-Cq6",2015-09-29,2015-09-29,"YB","C","6","Mc","Mytilus_californianus","Type 17",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts likely low due to glare and P. polymerus recruits."
+"2015-09-29_YB-Cq2",2015-09-29,2015-09-29,"YB","C","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-09-29_YB-Cq4",2015-09-29,2015-09-29,"YB","C","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-09-29_YB-Cq6",2015-09-29,2015-09-29,"YB","C","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts likely low due to glare and P. polymerus recruits."
+"2015-09-29_YB-Cq2",2015-09-29,2015-09-29,"YB","C","2","Myt","Mytilus_spp","Type 7",94,0.0875,1074.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-09-29_YB-Cq4",2015-09-29,2015-09-29,"YB","C","4","Myt","Mytilus_spp","Type 7",39,0.0875,445.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-09-29_YB-Cq6",2015-09-29,2015-09-29,"YB","C","6","Myt","Mytilus_spp","Type 7",95,0.0875,1085.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts likely low due to glare and P. polymerus recruits."
+"2015-09-29_YB-Cq2",2015-09-29,2015-09-29,"YB","C","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-09-29_YB-Cq4",2015-09-29,2015-09-29,"YB","C","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-09-29_YB-Cq6",2015-09-29,2015-09-29,"YB","C","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts likely low due to glare and P. polymerus recruits."
+"2015-09-29_YB-Cq2",2015-09-29,2015-09-29,"YB","C","2","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-09-29_YB-Cq4",2015-09-29,2015-09-29,"YB","C","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-09-29_YB-Cq6",2015-09-29,2015-09-29,"YB","C","6","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts likely low due to glare and P. polymerus recruits."
+"2015-09-29_YB-Cq2",2015-09-29,2015-09-29,"YB","C","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-09-29_YB-Cq4",2015-09-29,2015-09-29,"YB","C","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-09-29_YB-Cq6",2015-09-29,2015-09-29,"YB","C","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts likely low due to glare and P. polymerus recruits."
+"2015-09-29_YB-Cq2",2015-09-29,2015-09-29,"YB","C","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-09-29_YB-Cq4",2015-09-29,2015-09-29,"YB","C","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-09-29_YB-Cq6",2015-09-29,2015-09-29,"YB","C","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts likely low due to glare and P. polymerus recruits."
+"2015-09-29_YB-Cq2",2015-09-29,2015-09-29,"YB","C","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-09-29_YB-Cq4",2015-09-29,2015-09-29,"YB","C","4","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-09-29_YB-Cq6",2015-09-29,2015-09-29,"YB","C","6","Nc","Nucella_canaliculata","Type 10",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts likely low due to glare and P. polymerus recruits."
+"2015-09-29_YB-Cq2",2015-09-29,2015-09-29,"YB","C","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-09-29_YB-Cq4",2015-09-29,2015-09-29,"YB","C","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-09-29_YB-Cq6",2015-09-29,2015-09-29,"YB","C","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts likely low due to glare and P. polymerus recruits."
+"2015-09-29_YB-Cq2",2015-09-29,2015-09-29,"YB","C","2","No","Nucella_ostrina","Type 9",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-09-29_YB-Cq4",2015-09-29,2015-09-29,"YB","C","4","No","Nucella_ostrina","Type 9",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-09-29_YB-Cq6",2015-09-29,2015-09-29,"YB","C","6","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts likely low due to glare and P. polymerus recruits."
+"2015-09-29_YB-Cq2",2015-09-29,2015-09-29,"YB","C","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-09-29_YB-Cq4",2015-09-29,2015-09-29,"YB","C","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-09-29_YB-Cq6",2015-09-29,2015-09-29,"YB","C","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts likely low due to glare and P. polymerus recruits."
+"2015-09-29_YB-Cq2",2015-09-29,2015-09-29,"YB","C","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-09-29_YB-Cq4",2015-09-29,2015-09-29,"YB","C","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-09-29_YB-Cq6",2015-09-29,2015-09-29,"YB","C","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts likely low due to glare and P. polymerus recruits."
+"2015-09-29_YB-Cq2",2015-09-29,2015-09-29,"YB","C","2","Pp","Pollicipes_polymerus","Type 11",1448,0.0875,16548.5714285714,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-09-29_YB-Cq4",2015-09-29,2015-09-29,"YB","C","4","Pp","Pollicipes_polymerus","Type 11",1232,0.0875,14080,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-09-29_YB-Cq6",2015-09-29,2015-09-29,"YB","C","6","Pp","Pollicipes_polymerus","Type 11",1105,0.0875,12628.5714285714,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts likely low due to glare and P. polymerus recruits."
+"2015-09-29_YB-Cq2",2015-09-29,2015-09-29,"YB","C","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-09-29_YB-Cq4",2015-09-29,2015-09-29,"YB","C","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-09-29_YB-Cq6",2015-09-29,2015-09-29,"YB","C","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts likely low due to glare and P. polymerus recruits."
+"2015-09-29_YB-Cq2",2015-09-29,2015-09-29,"YB","C","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-09-29_YB-Cq4",2015-09-29,2015-09-29,"YB","C","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-09-29_YB-Cq6",2015-09-29,2015-09-29,"YB","C","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts likely low due to glare and P. polymerus recruits."
+"2015-09-29_YB-Cq2",2015-09-29,2015-09-29,"YB","C","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-09-29_YB-Cq4",2015-09-29,2015-09-29,"YB","C","4","ScD","Semibalanus_cariosus_(dead)","Type 6",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","2%",""
+"2015-09-29_YB-Cq6",2015-09-29,2015-09-29,"YB","C","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts likely low due to glare and P. polymerus recruits."
+"2015-09-29_YB-Dq3",2015-09-29,2015-09-29,"YB","D","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare and algae."
+"2015-09-29_YB-Dq4",2015-09-29,2015-09-29,"YB","D","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-09-29_YB-Dq5",2015-09-29,2015-09-29,"YB","D","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts low due to algae cover and glare."
+"2015-09-29_YB-Dq3",2015-09-29,2015-09-29,"YB","D","3","Ae","Anemones","Type 14",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare and algae."
+"2015-09-29_YB-Dq4",2015-09-29,2015-09-29,"YB","D","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-09-29_YB-Dq5",2015-09-29,2015-09-29,"YB","D","5","Ae","Anemones","Type 14",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts low due to algae cover and glare."
+"2015-09-29_YB-Dq3",2015-09-29,2015-09-29,"YB","D","3","Bg","Balanus_glandula","Type 1",106,0.0875,1211.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare and algae."
+"2015-09-29_YB-Dq4",2015-09-29,2015-09-29,"YB","D","4","Bg","Balanus_glandula","Type 1",858,0.0875,9805.71428571429,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-09-29_YB-Dq5",2015-09-29,2015-09-29,"YB","D","5","Bg","Balanus_glandula","Type 1",94,0.0875,1074.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts low due to algae cover and glare."
+"2015-09-29_YB-Dq3",2015-09-29,2015-09-29,"YB","D","3","BgD","Balanus_glandula_(dead)","Type 2",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare and algae."
+"2015-09-29_YB-Dq4",2015-09-29,2015-09-29,"YB","D","4","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-09-29_YB-Dq5",2015-09-29,2015-09-29,"YB","D","5","BgD","Balanus_glandula_(dead)","Type 2",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts low due to algae cover and glare."
+"2015-09-29_YB-Dq3",2015-09-29,2015-09-29,"YB","D","3","Chi","Chiton_spp","Type 22",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare and algae."
+"2015-09-29_YB-Dq4",2015-09-29,2015-09-29,"YB","D","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-09-29_YB-Dq5",2015-09-29,2015-09-29,"YB","D","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts low due to algae cover and glare."
+"2015-09-29_YB-Dq3",2015-09-29,2015-09-29,"YB","D","3","Cth","Chthamalus_dalli","Type 3",254,0.0875,2902.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare and algae."
+"2015-09-29_YB-Dq4",2015-09-29,2015-09-29,"YB","D","4","Cth","Chthamalus_dalli","Type 3",1100,0.0875,12571.4285714286,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-09-29_YB-Dq5",2015-09-29,2015-09-29,"YB","D","5","Cth","Chthamalus_dalli","Type 3",457,0.0875,5222.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts low due to algae cover and glare."
+"2015-09-29_YB-Dq3",2015-09-29,2015-09-29,"YB","D","3","CthD","Chthamalus_dalli (dead)","Type 4",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare and algae."
+"2015-09-29_YB-Dq4",2015-09-29,2015-09-29,"YB","D","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-09-29_YB-Dq5",2015-09-29,2015-09-29,"YB","D","5","CthD","Chthamalus_dalli (dead)","Type 4",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts low due to algae cover and glare."
+"2015-09-29_YB-Dq3",2015-09-29,2015-09-29,"YB","D","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare and algae."
+"2015-09-29_YB-Dq4",2015-09-29,2015-09-29,"YB","D","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-09-29_YB-Dq5",2015-09-29,2015-09-29,"YB","D","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts low due to algae cover and glare."
+"2015-09-29_YB-Dq3",2015-09-29,2015-09-29,"YB","D","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare and algae."
+"2015-09-29_YB-Dq4",2015-09-29,2015-09-29,"YB","D","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-09-29_YB-Dq5",2015-09-29,2015-09-29,"YB","D","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts low due to algae cover and glare."
+"2015-09-29_YB-Dq3",2015-09-29,2015-09-29,"YB","D","3","Lim","Limpets","Type 12",102,0.0875,1165.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare and algae."
+"2015-09-29_YB-Dq4",2015-09-29,2015-09-29,"YB","D","4","Lim","Limpets","Type 12",228,0.0875,2605.71428571429,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-09-29_YB-Dq5",2015-09-29,2015-09-29,"YB","D","5","Lim","Limpets","Type 12",134,0.0875,1531.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts low due to algae cover and glare."
+"2015-09-29_YB-Dq3",2015-09-29,2015-09-29,"YB","D","3","Ls","Littorina_sitkana","Type 13",58,0.0875,662.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare and algae."
+"2015-09-29_YB-Dq4",2015-09-29,2015-09-29,"YB","D","4","Ls","Littorina_sitkana","Type 13",260,0.0875,2971.42857142857,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-09-29_YB-Dq5",2015-09-29,2015-09-29,"YB","D","5","Ls","Littorina_sitkana","Type 13",134,0.0875,1531.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts low due to algae cover and glare."
+"2015-09-29_YB-Dq3",2015-09-29,2015-09-29,"YB","D","3","Mc","Mytilus_californianus","Type 17",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare and algae."
+"2015-09-29_YB-Dq4",2015-09-29,2015-09-29,"YB","D","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-09-29_YB-Dq5",2015-09-29,2015-09-29,"YB","D","5","Mc","Mytilus_californianus","Type 17",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts low due to algae cover and glare."
+"2015-09-29_YB-Dq3",2015-09-29,2015-09-29,"YB","D","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare and algae."
+"2015-09-29_YB-Dq4",2015-09-29,2015-09-29,"YB","D","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-09-29_YB-Dq5",2015-09-29,2015-09-29,"YB","D","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts low due to algae cover and glare."
+"2015-09-29_YB-Dq3",2015-09-29,2015-09-29,"YB","D","3","Myt","Mytilus_spp","Type 7",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare and algae."
+"2015-09-29_YB-Dq4",2015-09-29,2015-09-29,"YB","D","4","Myt","Mytilus_spp","Type 7",9,0.0875,102.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-09-29_YB-Dq5",2015-09-29,2015-09-29,"YB","D","5","Myt","Mytilus_spp","Type 7",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts low due to algae cover and glare."
+"2015-09-29_YB-Dq3",2015-09-29,2015-09-29,"YB","D","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare and algae."
+"2015-09-29_YB-Dq4",2015-09-29,2015-09-29,"YB","D","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-09-29_YB-Dq5",2015-09-29,2015-09-29,"YB","D","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts low due to algae cover and glare."
+"2015-09-29_YB-Dq3",2015-09-29,2015-09-29,"YB","D","3","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare and algae."
+"2015-09-29_YB-Dq4",2015-09-29,2015-09-29,"YB","D","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-09-29_YB-Dq5",2015-09-29,2015-09-29,"YB","D","5","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts low due to algae cover and glare."
+"2015-09-29_YB-Dq3",2015-09-29,2015-09-29,"YB","D","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare and algae."
+"2015-09-29_YB-Dq4",2015-09-29,2015-09-29,"YB","D","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-09-29_YB-Dq5",2015-09-29,2015-09-29,"YB","D","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts low due to algae cover and glare."
+"2015-09-29_YB-Dq3",2015-09-29,2015-09-29,"YB","D","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare and algae."
+"2015-09-29_YB-Dq4",2015-09-29,2015-09-29,"YB","D","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-09-29_YB-Dq5",2015-09-29,2015-09-29,"YB","D","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts low due to algae cover and glare."
+"2015-09-29_YB-Dq3",2015-09-29,2015-09-29,"YB","D","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare and algae."
+"2015-09-29_YB-Dq4",2015-09-29,2015-09-29,"YB","D","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-09-29_YB-Dq5",2015-09-29,2015-09-29,"YB","D","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts low due to algae cover and glare."
+"2015-09-29_YB-Dq3",2015-09-29,2015-09-29,"YB","D","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare and algae."
+"2015-09-29_YB-Dq4",2015-09-29,2015-09-29,"YB","D","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-09-29_YB-Dq5",2015-09-29,2015-09-29,"YB","D","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts low due to algae cover and glare."
+"2015-09-29_YB-Dq3",2015-09-29,2015-09-29,"YB","D","3","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare and algae."
+"2015-09-29_YB-Dq4",2015-09-29,2015-09-29,"YB","D","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-09-29_YB-Dq5",2015-09-29,2015-09-29,"YB","D","5","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts low due to algae cover and glare."
+"2015-09-29_YB-Dq3",2015-09-29,2015-09-29,"YB","D","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare and algae."
+"2015-09-29_YB-Dq4",2015-09-29,2015-09-29,"YB","D","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-09-29_YB-Dq5",2015-09-29,2015-09-29,"YB","D","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts low due to algae cover and glare."
+"2015-09-29_YB-Dq3",2015-09-29,2015-09-29,"YB","D","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare and algae."
+"2015-09-29_YB-Dq4",2015-09-29,2015-09-29,"YB","D","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-09-29_YB-Dq5",2015-09-29,2015-09-29,"YB","D","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts low due to algae cover and glare."
+"2015-09-29_YB-Dq3",2015-09-29,2015-09-29,"YB","D","3","Pp","Pollicipes_polymerus","Type 11",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare and algae."
+"2015-09-29_YB-Dq4",2015-09-29,2015-09-29,"YB","D","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-09-29_YB-Dq5",2015-09-29,2015-09-29,"YB","D","5","Pp","Pollicipes_polymerus","Type 11",24,0.0875,274.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts low due to algae cover and glare."
+"2015-09-29_YB-Dq3",2015-09-29,2015-09-29,"YB","D","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare and algae."
+"2015-09-29_YB-Dq4",2015-09-29,2015-09-29,"YB","D","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-09-29_YB-Dq5",2015-09-29,2015-09-29,"YB","D","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts low due to algae cover and glare."
+"2015-09-29_YB-Dq3",2015-09-29,2015-09-29,"YB","D","3","Sc","Semibalanus_cariosus","Type 5",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare and algae."
+"2015-09-29_YB-Dq4",2015-09-29,2015-09-29,"YB","D","4","Sc","Semibalanus_cariosus","Type 5",6,0.0875,68.5714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-09-29_YB-Dq5",2015-09-29,2015-09-29,"YB","D","5","Sc","Semibalanus_cariosus","Type 5",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts low due to algae cover and glare."
+"2015-09-29_YB-Dq3",2015-09-29,2015-09-29,"YB","D","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts likely low due to glare and algae."
+"2015-09-29_YB-Dq4",2015-09-29,2015-09-29,"YB","D","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-09-29_YB-Dq5",2015-09-29,2015-09-29,"YB","D","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts low due to algae cover and glare."
+"2015-09-29_YB-Eq3",2015-09-29,2015-09-29,"YB","E","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to glare"
+"2015-09-29_YB-Eq4",2015-09-29,2015-09-29,"YB","E","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to blur"
+"2015-09-29_YB-Eq8",2015-09-29,2015-09-29,"YB","E","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-09-29_YB-Eq3",2015-09-29,2015-09-29,"YB","E","3","Ae","Anemones","Type 14",65,0.0875,742.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to glare"
+"2015-09-29_YB-Eq4",2015-09-29,2015-09-29,"YB","E","4","Ae","Anemones","Type 14",101,0.0875,1154.28571428571,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to blur"
+"2015-09-29_YB-Eq8",2015-09-29,2015-09-29,"YB","E","8","Ae","Anemones","Type 14",70,0.0875,800,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-09-29_YB-Eq3",2015-09-29,2015-09-29,"YB","E","3","Bg","Balanus_glandula","Type 1",378,0.0875,4320,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to glare"
+"2015-09-29_YB-Eq4",2015-09-29,2015-09-29,"YB","E","4","Bg","Balanus_glandula","Type 1",1134,0.0875,12960,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to blur"
+"2015-09-29_YB-Eq8",2015-09-29,2015-09-29,"YB","E","8","Bg","Balanus_glandula","Type 1",382,0.0875,4365.71428571429,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-09-29_YB-Eq3",2015-09-29,2015-09-29,"YB","E","3","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to glare"
+"2015-09-29_YB-Eq4",2015-09-29,2015-09-29,"YB","E","4","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to blur"
+"2015-09-29_YB-Eq8",2015-09-29,2015-09-29,"YB","E","8","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-09-29_YB-Eq3",2015-09-29,2015-09-29,"YB","E","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to glare"
+"2015-09-29_YB-Eq4",2015-09-29,2015-09-29,"YB","E","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to blur"
+"2015-09-29_YB-Eq8",2015-09-29,2015-09-29,"YB","E","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-09-29_YB-Eq3",2015-09-29,2015-09-29,"YB","E","3","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to glare"
+"2015-09-29_YB-Eq4",2015-09-29,2015-09-29,"YB","E","4","Cth","Chthamalus_dalli","Type 3",9,0.0875,102.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to blur"
+"2015-09-29_YB-Eq8",2015-09-29,2015-09-29,"YB","E","8","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-09-29_YB-Eq3",2015-09-29,2015-09-29,"YB","E","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to glare"
+"2015-09-29_YB-Eq4",2015-09-29,2015-09-29,"YB","E","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to blur"
+"2015-09-29_YB-Eq8",2015-09-29,2015-09-29,"YB","E","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-09-29_YB-Eq3",2015-09-29,2015-09-29,"YB","E","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to glare"
+"2015-09-29_YB-Eq4",2015-09-29,2015-09-29,"YB","E","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to blur"
+"2015-09-29_YB-Eq8",2015-09-29,2015-09-29,"YB","E","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-09-29_YB-Eq3",2015-09-29,2015-09-29,"YB","E","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to glare"
+"2015-09-29_YB-Eq4",2015-09-29,2015-09-29,"YB","E","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to blur"
+"2015-09-29_YB-Eq8",2015-09-29,2015-09-29,"YB","E","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-09-29_YB-Eq3",2015-09-29,2015-09-29,"YB","E","3","Lim","Limpets","Type 12",76,0.0875,868.571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to glare"
+"2015-09-29_YB-Eq4",2015-09-29,2015-09-29,"YB","E","4","Lim","Limpets","Type 12",67,0.0875,765.714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to blur"
+"2015-09-29_YB-Eq8",2015-09-29,2015-09-29,"YB","E","8","Lim","Limpets","Type 12",38,0.0875,434.285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-09-29_YB-Eq3",2015-09-29,2015-09-29,"YB","E","3","Ls","Littorina_sitkana","Type 13",186,0.0875,2125.71428571429,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to glare"
+"2015-09-29_YB-Eq4",2015-09-29,2015-09-29,"YB","E","4","Ls","Littorina_sitkana","Type 13",271,0.0875,3097.14285714286,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to blur"
+"2015-09-29_YB-Eq8",2015-09-29,2015-09-29,"YB","E","8","Ls","Littorina_sitkana","Type 13",142,0.0875,1622.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-09-29_YB-Eq3",2015-09-29,2015-09-29,"YB","E","3","Mc","Mytilus_californianus","Type 17",9,0.0875,102.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to glare"
+"2015-09-29_YB-Eq4",2015-09-29,2015-09-29,"YB","E","4","Mc","Mytilus_californianus","Type 17",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to blur"
+"2015-09-29_YB-Eq8",2015-09-29,2015-09-29,"YB","E","8","Mc","Mytilus_californianus","Type 17",15,0.0875,171.428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-09-29_YB-Eq3",2015-09-29,2015-09-29,"YB","E","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to glare"
+"2015-09-29_YB-Eq4",2015-09-29,2015-09-29,"YB","E","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to blur"
+"2015-09-29_YB-Eq8",2015-09-29,2015-09-29,"YB","E","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-09-29_YB-Eq3",2015-09-29,2015-09-29,"YB","E","3","Myt","Mytilus_spp","Type 7",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to glare"
+"2015-09-29_YB-Eq4",2015-09-29,2015-09-29,"YB","E","4","Myt","Mytilus_spp","Type 7",24,0.0875,274.285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to blur"
+"2015-09-29_YB-Eq8",2015-09-29,2015-09-29,"YB","E","8","Myt","Mytilus_spp","Type 7",10,0.0875,114.285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-09-29_YB-Eq3",2015-09-29,2015-09-29,"YB","E","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to glare"
+"2015-09-29_YB-Eq4",2015-09-29,2015-09-29,"YB","E","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to blur"
+"2015-09-29_YB-Eq8",2015-09-29,2015-09-29,"YB","E","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-09-29_YB-Eq3",2015-09-29,2015-09-29,"YB","E","3","Mt","Mytilus_trossulus","Type 15",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to glare"
+"2015-09-29_YB-Eq4",2015-09-29,2015-09-29,"YB","E","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to blur"
+"2015-09-29_YB-Eq8",2015-09-29,2015-09-29,"YB","E","8","Mt","Mytilus_trossulus","Type 15",4,0.0875,45.7142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-09-29_YB-Eq3",2015-09-29,2015-09-29,"YB","E","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to glare"
+"2015-09-29_YB-Eq4",2015-09-29,2015-09-29,"YB","E","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to blur"
+"2015-09-29_YB-Eq8",2015-09-29,2015-09-29,"YB","E","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-09-29_YB-Eq3",2015-09-29,2015-09-29,"YB","E","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to glare"
+"2015-09-29_YB-Eq4",2015-09-29,2015-09-29,"YB","E","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to blur"
+"2015-09-29_YB-Eq8",2015-09-29,2015-09-29,"YB","E","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-09-29_YB-Eq3",2015-09-29,2015-09-29,"YB","E","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to glare"
+"2015-09-29_YB-Eq4",2015-09-29,2015-09-29,"YB","E","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to blur"
+"2015-09-29_YB-Eq8",2015-09-29,2015-09-29,"YB","E","8","Nc","Nucella_canaliculata","Type 10",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-09-29_YB-Eq3",2015-09-29,2015-09-29,"YB","E","3","Negg","Nucella_eggs","Type 26",7,0.0875,80,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to glare"
+"2015-09-29_YB-Eq4",2015-09-29,2015-09-29,"YB","E","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to blur"
+"2015-09-29_YB-Eq8",2015-09-29,2015-09-29,"YB","E","8","Negg","Nucella_eggs","Type 26",13,0.0875,148.571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-09-29_YB-Eq3",2015-09-29,2015-09-29,"YB","E","3","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to glare"
+"2015-09-29_YB-Eq4",2015-09-29,2015-09-29,"YB","E","4","No","Nucella_ostrina","Type 9",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to blur"
+"2015-09-29_YB-Eq8",2015-09-29,2015-09-29,"YB","E","8","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-09-29_YB-Eq3",2015-09-29,2015-09-29,"YB","E","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to glare"
+"2015-09-29_YB-Eq4",2015-09-29,2015-09-29,"YB","E","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to blur"
+"2015-09-29_YB-Eq8",2015-09-29,2015-09-29,"YB","E","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-09-29_YB-Eq3",2015-09-29,2015-09-29,"YB","E","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to glare"
+"2015-09-29_YB-Eq4",2015-09-29,2015-09-29,"YB","E","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to blur"
+"2015-09-29_YB-Eq8",2015-09-29,2015-09-29,"YB","E","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-09-29_YB-Eq3",2015-09-29,2015-09-29,"YB","E","3","Pp","Pollicipes_polymerus","Type 11",583,0.0875,6662.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to glare"
+"2015-09-29_YB-Eq4",2015-09-29,2015-09-29,"YB","E","4","Pp","Pollicipes_polymerus","Type 11",1024,0.0875,11702.8571428571,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to blur"
+"2015-09-29_YB-Eq8",2015-09-29,2015-09-29,"YB","E","8","Pp","Pollicipes_polymerus","Type 11",1366,0.0875,15611.4285714286,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-09-29_YB-Eq3",2015-09-29,2015-09-29,"YB","E","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to glare"
+"2015-09-29_YB-Eq4",2015-09-29,2015-09-29,"YB","E","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to blur"
+"2015-09-29_YB-Eq8",2015-09-29,2015-09-29,"YB","E","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-09-29_YB-Eq3",2015-09-29,2015-09-29,"YB","E","3","Sc","Semibalanus_cariosus","Type 5",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to glare"
+"2015-09-29_YB-Eq4",2015-09-29,2015-09-29,"YB","E","4","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to blur"
+"2015-09-29_YB-Eq8",2015-09-29,2015-09-29,"YB","E","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-09-29_YB-Eq3",2015-09-29,2015-09-29,"YB","E","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to glare"
+"2015-09-29_YB-Eq4",2015-09-29,2015-09-29,"YB","E","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to blur"
+"2015-09-29_YB-Eq8",2015-09-29,2015-09-29,"YB","E","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","5%",""
+"2015-09-29_YB-Fq4",2015-09-29,2015-09-29,"YB","F","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2015-09-29_YB-Fq5",2015-09-29,2015-09-29,"YB","F","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-09-29_YB-Fq6",2015-09-29,2015-09-29,"YB","F","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2015-09-29_YB-Fq4",2015-09-29,2015-09-29,"YB","F","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2015-09-29_YB-Fq5",2015-09-29,2015-09-29,"YB","F","5","Ae","Anemones","Type 14",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-09-29_YB-Fq6",2015-09-29,2015-09-29,"YB","F","6","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2015-09-29_YB-Fq4",2015-09-29,2015-09-29,"YB","F","4","Bg","Balanus_glandula","Type 1",315,0.015625,20160,"c","Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2015-09-29_YB-Fq5",2015-09-29,2015-09-29,"YB","F","5","Bg","Balanus_glandula","Type 1",155,0.0875,1771.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-09-29_YB-Fq6",2015-09-29,2015-09-29,"YB","F","6","Bg","Balanus_glandula","Type 1",351,0.0875,4011.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2015-09-29_YB-Fq4",2015-09-29,2015-09-29,"YB","F","4","BgD","Balanus_glandula_(dead)","Type 2",6,0.015625,384,"c","Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2015-09-29_YB-Fq5",2015-09-29,2015-09-29,"YB","F","5","BgD","Balanus_glandula_(dead)","Type 2",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-09-29_YB-Fq6",2015-09-29,2015-09-29,"YB","F","6","BgD","Balanus_glandula_(dead)","Type 2",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2015-09-29_YB-Fq4",2015-09-29,2015-09-29,"YB","F","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2015-09-29_YB-Fq5",2015-09-29,2015-09-29,"YB","F","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-09-29_YB-Fq6",2015-09-29,2015-09-29,"YB","F","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2015-09-29_YB-Fq4",2015-09-29,2015-09-29,"YB","F","4","Cth","Chthamalus_dalli","Type 3",829,0.015625,53056,"c","Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2015-09-29_YB-Fq5",2015-09-29,2015-09-29,"YB","F","5","Cth","Chthamalus_dalli","Type 3",1075,0.0875,12285.7142857143,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-09-29_YB-Fq6",2015-09-29,2015-09-29,"YB","F","6","Cth","Chthamalus_dalli","Type 3",1185,0.0875,13542.8571428571,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2015-09-29_YB-Fq4",2015-09-29,2015-09-29,"YB","F","4","CthD","Chthamalus_dalli (dead)","Type 4",2,0.015625,128,"c","Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2015-09-29_YB-Fq5",2015-09-29,2015-09-29,"YB","F","5","CthD","Chthamalus_dalli (dead)","Type 4",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-09-29_YB-Fq6",2015-09-29,2015-09-29,"YB","F","6","CthD","Chthamalus_dalli (dead)","Type 4",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2015-09-29_YB-Fq4",2015-09-29,2015-09-29,"YB","F","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2015-09-29_YB-Fq5",2015-09-29,2015-09-29,"YB","F","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-09-29_YB-Fq6",2015-09-29,2015-09-29,"YB","F","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2015-09-29_YB-Fq4",2015-09-29,2015-09-29,"YB","F","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2015-09-29_YB-Fq5",2015-09-29,2015-09-29,"YB","F","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-09-29_YB-Fq6",2015-09-29,2015-09-29,"YB","F","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2015-09-29_YB-Fq4",2015-09-29,2015-09-29,"YB","F","4","Lim","Limpets","Type 12",268,0.0875,3062.85714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2015-09-29_YB-Fq5",2015-09-29,2015-09-29,"YB","F","5","Lim","Limpets","Type 12",116,0.0875,1325.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-09-29_YB-Fq6",2015-09-29,2015-09-29,"YB","F","6","Lim","Limpets","Type 12",95,0.0875,1085.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2015-09-29_YB-Fq4",2015-09-29,2015-09-29,"YB","F","4","Ls","Littorina_sitkana","Type 13",337,0.0875,3851.42857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2015-09-29_YB-Fq5",2015-09-29,2015-09-29,"YB","F","5","Ls","Littorina_sitkana","Type 13",208,0.0875,2377.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-09-29_YB-Fq6",2015-09-29,2015-09-29,"YB","F","6","Ls","Littorina_sitkana","Type 13",96,0.0875,1097.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2015-09-29_YB-Fq4",2015-09-29,2015-09-29,"YB","F","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2015-09-29_YB-Fq5",2015-09-29,2015-09-29,"YB","F","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-09-29_YB-Fq6",2015-09-29,2015-09-29,"YB","F","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2015-09-29_YB-Fq4",2015-09-29,2015-09-29,"YB","F","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2015-09-29_YB-Fq5",2015-09-29,2015-09-29,"YB","F","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-09-29_YB-Fq6",2015-09-29,2015-09-29,"YB","F","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2015-09-29_YB-Fq4",2015-09-29,2015-09-29,"YB","F","4","Myt","Mytilus_spp","Type 7",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2015-09-29_YB-Fq5",2015-09-29,2015-09-29,"YB","F","5","Myt","Mytilus_spp","Type 7",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-09-29_YB-Fq6",2015-09-29,2015-09-29,"YB","F","6","Myt","Mytilus_spp","Type 7",13,0.0875,148.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2015-09-29_YB-Fq4",2015-09-29,2015-09-29,"YB","F","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2015-09-29_YB-Fq5",2015-09-29,2015-09-29,"YB","F","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-09-29_YB-Fq6",2015-09-29,2015-09-29,"YB","F","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2015-09-29_YB-Fq4",2015-09-29,2015-09-29,"YB","F","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2015-09-29_YB-Fq5",2015-09-29,2015-09-29,"YB","F","5","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-09-29_YB-Fq6",2015-09-29,2015-09-29,"YB","F","6","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2015-09-29_YB-Fq4",2015-09-29,2015-09-29,"YB","F","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2015-09-29_YB-Fq5",2015-09-29,2015-09-29,"YB","F","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-09-29_YB-Fq6",2015-09-29,2015-09-29,"YB","F","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2015-09-29_YB-Fq4",2015-09-29,2015-09-29,"YB","F","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2015-09-29_YB-Fq5",2015-09-29,2015-09-29,"YB","F","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-09-29_YB-Fq6",2015-09-29,2015-09-29,"YB","F","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2015-09-29_YB-Fq4",2015-09-29,2015-09-29,"YB","F","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2015-09-29_YB-Fq5",2015-09-29,2015-09-29,"YB","F","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-09-29_YB-Fq6",2015-09-29,2015-09-29,"YB","F","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2015-09-29_YB-Fq4",2015-09-29,2015-09-29,"YB","F","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2015-09-29_YB-Fq5",2015-09-29,2015-09-29,"YB","F","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-09-29_YB-Fq6",2015-09-29,2015-09-29,"YB","F","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2015-09-29_YB-Fq4",2015-09-29,2015-09-29,"YB","F","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2015-09-29_YB-Fq5",2015-09-29,2015-09-29,"YB","F","5","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-09-29_YB-Fq6",2015-09-29,2015-09-29,"YB","F","6","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2015-09-29_YB-Fq4",2015-09-29,2015-09-29,"YB","F","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2015-09-29_YB-Fq5",2015-09-29,2015-09-29,"YB","F","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-09-29_YB-Fq6",2015-09-29,2015-09-29,"YB","F","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2015-09-29_YB-Fq4",2015-09-29,2015-09-29,"YB","F","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2015-09-29_YB-Fq5",2015-09-29,2015-09-29,"YB","F","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-09-29_YB-Fq6",2015-09-29,2015-09-29,"YB","F","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2015-09-29_YB-Fq4",2015-09-29,2015-09-29,"YB","F","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2015-09-29_YB-Fq5",2015-09-29,2015-09-29,"YB","F","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-09-29_YB-Fq6",2015-09-29,2015-09-29,"YB","F","6","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2015-09-29_YB-Fq4",2015-09-29,2015-09-29,"YB","F","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2015-09-29_YB-Fq5",2015-09-29,2015-09-29,"YB","F","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-09-29_YB-Fq6",2015-09-29,2015-09-29,"YB","F","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2015-09-29_YB-Fq4",2015-09-29,2015-09-29,"YB","F","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2015-09-29_YB-Fq5",2015-09-29,2015-09-29,"YB","F","5","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-09-29_YB-Fq6",2015-09-29,2015-09-29,"YB","F","6","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2015-09-29_YB-Fq4",2015-09-29,2015-09-29,"YB","F","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","3%",""
+"2015-09-29_YB-Fq5",2015-09-29,2015-09-29,"YB","F","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-09-29_YB-Fq6",2015-09-29,2015-09-29,"YB","F","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2015-09-29_YB-Gq3",2015-09-29,2015-09-29,"YB","G","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%",""
+"2015-09-29_YB-Gq5",2015-09-29,2015-09-29,"YB","G","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-09-29_YB-Gq8",2015-09-29,2015-09-29,"YB","G","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-09-29_YB-Gq3",2015-09-29,2015-09-29,"YB","G","3","Ae","Anemones","Type 14",176,0.0875,2011.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","30%",""
+"2015-09-29_YB-Gq5",2015-09-29,2015-09-29,"YB","G","5","Ae","Anemones","Type 14",144,0.0875,1645.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-09-29_YB-Gq8",2015-09-29,2015-09-29,"YB","G","8","Ae","Anemones","Type 14",134,0.0875,1531.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-09-29_YB-Gq3",2015-09-29,2015-09-29,"YB","G","3","Bg","Balanus_glandula","Type 1",25,0.0875,285.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","30%",""
+"2015-09-29_YB-Gq5",2015-09-29,2015-09-29,"YB","G","5","Bg","Balanus_glandula","Type 1",48,0.0875,548.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-09-29_YB-Gq8",2015-09-29,2015-09-29,"YB","G","8","Bg","Balanus_glandula","Type 1",46,0.0875,525.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-09-29_YB-Gq3",2015-09-29,2015-09-29,"YB","G","3","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%",""
+"2015-09-29_YB-Gq5",2015-09-29,2015-09-29,"YB","G","5","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-09-29_YB-Gq8",2015-09-29,2015-09-29,"YB","G","8","BgD","Balanus_glandula_(dead)","Type 2",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-09-29_YB-Gq3",2015-09-29,2015-09-29,"YB","G","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%",""
+"2015-09-29_YB-Gq5",2015-09-29,2015-09-29,"YB","G","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-09-29_YB-Gq8",2015-09-29,2015-09-29,"YB","G","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-09-29_YB-Gq3",2015-09-29,2015-09-29,"YB","G","3","Cth","Chthamalus_dalli","Type 3",19,0.0875,217.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","30%",""
+"2015-09-29_YB-Gq5",2015-09-29,2015-09-29,"YB","G","5","Cth","Chthamalus_dalli","Type 3",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-09-29_YB-Gq8",2015-09-29,2015-09-29,"YB","G","8","Cth","Chthamalus_dalli","Type 3",144,0.0875,1645.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-09-29_YB-Gq3",2015-09-29,2015-09-29,"YB","G","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%",""
+"2015-09-29_YB-Gq5",2015-09-29,2015-09-29,"YB","G","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-09-29_YB-Gq8",2015-09-29,2015-09-29,"YB","G","8","CthD","Chthamalus_dalli (dead)","Type 4",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-09-29_YB-Gq3",2015-09-29,2015-09-29,"YB","G","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%",""
+"2015-09-29_YB-Gq5",2015-09-29,2015-09-29,"YB","G","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-09-29_YB-Gq8",2015-09-29,2015-09-29,"YB","G","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-09-29_YB-Gq3",2015-09-29,2015-09-29,"YB","G","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%",""
+"2015-09-29_YB-Gq5",2015-09-29,2015-09-29,"YB","G","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-09-29_YB-Gq8",2015-09-29,2015-09-29,"YB","G","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-09-29_YB-Gq3",2015-09-29,2015-09-29,"YB","G","3","Lim","Limpets","Type 12",133,0.0875,1520,NA,"Beatriz Vaca","Finished","Full","Full","30%",""
+"2015-09-29_YB-Gq5",2015-09-29,2015-09-29,"YB","G","5","Lim","Limpets","Type 12",162,0.0875,1851.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-09-29_YB-Gq8",2015-09-29,2015-09-29,"YB","G","8","Lim","Limpets","Type 12",136,0.0875,1554.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-09-29_YB-Gq3",2015-09-29,2015-09-29,"YB","G","3","Ls","Littorina_sitkana","Type 13",205,0.0875,2342.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","30%",""
+"2015-09-29_YB-Gq5",2015-09-29,2015-09-29,"YB","G","5","Ls","Littorina_sitkana","Type 13",188,0.0875,2148.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-09-29_YB-Gq8",2015-09-29,2015-09-29,"YB","G","8","Ls","Littorina_sitkana","Type 13",339,0.0875,3874.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-09-29_YB-Gq3",2015-09-29,2015-09-29,"YB","G","3","Mc","Mytilus_californianus","Type 17",10,0.0875,114.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","30%",""
+"2015-09-29_YB-Gq5",2015-09-29,2015-09-29,"YB","G","5","Mc","Mytilus_californianus","Type 17",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-09-29_YB-Gq8",2015-09-29,2015-09-29,"YB","G","8","Mc","Mytilus_californianus","Type 17",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-09-29_YB-Gq3",2015-09-29,2015-09-29,"YB","G","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%",""
+"2015-09-29_YB-Gq5",2015-09-29,2015-09-29,"YB","G","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-09-29_YB-Gq8",2015-09-29,2015-09-29,"YB","G","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-09-29_YB-Gq3",2015-09-29,2015-09-29,"YB","G","3","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%",""
+"2015-09-29_YB-Gq5",2015-09-29,2015-09-29,"YB","G","5","Myt","Mytilus_spp","Type 7",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-09-29_YB-Gq8",2015-09-29,2015-09-29,"YB","G","8","Myt","Mytilus_spp","Type 7",40,0.0875,457.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-09-29_YB-Gq3",2015-09-29,2015-09-29,"YB","G","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%",""
+"2015-09-29_YB-Gq5",2015-09-29,2015-09-29,"YB","G","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-09-29_YB-Gq8",2015-09-29,2015-09-29,"YB","G","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-09-29_YB-Gq3",2015-09-29,2015-09-29,"YB","G","3","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%",""
+"2015-09-29_YB-Gq5",2015-09-29,2015-09-29,"YB","G","5","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-09-29_YB-Gq8",2015-09-29,2015-09-29,"YB","G","8","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-09-29_YB-Gq3",2015-09-29,2015-09-29,"YB","G","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%",""
+"2015-09-29_YB-Gq5",2015-09-29,2015-09-29,"YB","G","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-09-29_YB-Gq8",2015-09-29,2015-09-29,"YB","G","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-09-29_YB-Gq3",2015-09-29,2015-09-29,"YB","G","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%",""
+"2015-09-29_YB-Gq5",2015-09-29,2015-09-29,"YB","G","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-09-29_YB-Gq8",2015-09-29,2015-09-29,"YB","G","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-09-29_YB-Gq3",2015-09-29,2015-09-29,"YB","G","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%",""
+"2015-09-29_YB-Gq5",2015-09-29,2015-09-29,"YB","G","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-09-29_YB-Gq8",2015-09-29,2015-09-29,"YB","G","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-09-29_YB-Gq3",2015-09-29,2015-09-29,"YB","G","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%",""
+"2015-09-29_YB-Gq5",2015-09-29,2015-09-29,"YB","G","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-09-29_YB-Gq8",2015-09-29,2015-09-29,"YB","G","8","Negg","Nucella_eggs","Type 26",17,0.0875,194.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-09-29_YB-Gq3",2015-09-29,2015-09-29,"YB","G","3","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%",""
+"2015-09-29_YB-Gq5",2015-09-29,2015-09-29,"YB","G","5","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-09-29_YB-Gq8",2015-09-29,2015-09-29,"YB","G","8","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-09-29_YB-Gq3",2015-09-29,2015-09-29,"YB","G","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%",""
+"2015-09-29_YB-Gq5",2015-09-29,2015-09-29,"YB","G","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-09-29_YB-Gq8",2015-09-29,2015-09-29,"YB","G","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-09-29_YB-Gq3",2015-09-29,2015-09-29,"YB","G","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%",""
+"2015-09-29_YB-Gq5",2015-09-29,2015-09-29,"YB","G","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-09-29_YB-Gq8",2015-09-29,2015-09-29,"YB","G","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-09-29_YB-Gq3",2015-09-29,2015-09-29,"YB","G","3","Pp","Pollicipes_polymerus","Type 11",1747,0.0875,19965.7142857143,NA,"Beatriz Vaca","Finished","Full","Full","30%",""
+"2015-09-29_YB-Gq5",2015-09-29,2015-09-29,"YB","G","5","Pp","Pollicipes_polymerus","Type 11",1714,0.0875,19588.5714285714,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-09-29_YB-Gq8",2015-09-29,2015-09-29,"YB","G","8","Pp","Pollicipes_polymerus","Type 11",2138,0.0875,24434.2857142857,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-09-29_YB-Gq3",2015-09-29,2015-09-29,"YB","G","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%",""
+"2015-09-29_YB-Gq5",2015-09-29,2015-09-29,"YB","G","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-09-29_YB-Gq8",2015-09-29,2015-09-29,"YB","G","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-09-29_YB-Gq3",2015-09-29,2015-09-29,"YB","G","3","Sc","Semibalanus_cariosus","Type 5",14,0.0875,160,NA,"Beatriz Vaca","Finished","Full","Full","30%",""
+"2015-09-29_YB-Gq5",2015-09-29,2015-09-29,"YB","G","5","Sc","Semibalanus_cariosus","Type 5",9,0.0875,102.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-09-29_YB-Gq8",2015-09-29,2015-09-29,"YB","G","8","Sc","Semibalanus_cariosus","Type 5",9,0.0875,102.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-09-29_YB-Gq3",2015-09-29,2015-09-29,"YB","G","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%",""
+"2015-09-29_YB-Gq5",2015-09-29,2015-09-29,"YB","G","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-09-29_YB-Gq8",2015-09-29,2015-09-29,"YB","G","8","ScD","Semibalanus_cariosus_(dead)","Type 6",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-Aq6",2015-10-28,2015-10-28,"YB","A","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","10%",""
+"2015-10-28_YB-Aq7",2015-10-28,2015-10-28,"YB","A","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to glare and blur."
+"2015-10-28_YB-Aq9",2015-10-28,2015-10-28,"YB","A","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to blur and glare."
+"2015-10-28_YB-Aq6",2015-10-28,2015-10-28,"YB","A","6","Ae","Anemones","Type 14",110,0.0875,1257.14285714286,NA,"Celeste Moen","Finished","Full","Full","10%",""
+"2015-10-28_YB-Aq7",2015-10-28,2015-10-28,"YB","A","7","Ae","Anemones","Type 14",138,0.0875,1577.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to glare and blur."
+"2015-10-28_YB-Aq9",2015-10-28,2015-10-28,"YB","A","9","Ae","Anemones","Type 14",110,0.0875,1257.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to blur and glare."
+"2015-10-28_YB-Aq6",2015-10-28,2015-10-28,"YB","A","6","Bg","Balanus_glandula","Type 1",264,0.0875,3017.14285714286,NA,"Celeste Moen","Finished","Full","Full","10%",""
+"2015-10-28_YB-Aq7",2015-10-28,2015-10-28,"YB","A","7","Bg","Balanus_glandula","Type 1",611,0.0875,6982.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to glare and blur."
+"2015-10-28_YB-Aq9",2015-10-28,2015-10-28,"YB","A","9","Bg","Balanus_glandula","Type 1",400,0.0875,4571.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to blur and glare."
+"2015-10-28_YB-Aq6",2015-10-28,2015-10-28,"YB","A","6","BgD","Balanus_glandula_(dead)","Type 2",55,0.0875,628.571428571429,NA,"Celeste Moen","Finished","Full","Full","10%",""
+"2015-10-28_YB-Aq7",2015-10-28,2015-10-28,"YB","A","7","BgD","Balanus_glandula_(dead)","Type 2",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to glare and blur."
+"2015-10-28_YB-Aq9",2015-10-28,2015-10-28,"YB","A","9","BgD","Balanus_glandula_(dead)","Type 2",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to blur and glare."
+"2015-10-28_YB-Aq6",2015-10-28,2015-10-28,"YB","A","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","10%",""
+"2015-10-28_YB-Aq7",2015-10-28,2015-10-28,"YB","A","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to glare and blur."
+"2015-10-28_YB-Aq9",2015-10-28,2015-10-28,"YB","A","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to blur and glare."
+"2015-10-28_YB-Aq6",2015-10-28,2015-10-28,"YB","A","6","Cth","Chthamalus_dalli","Type 3",8,0.0875,91.4285714285714,NA,"Celeste Moen","Finished","Full","Full","10%",""
+"2015-10-28_YB-Aq7",2015-10-28,2015-10-28,"YB","A","7","Cth","Chthamalus_dalli","Type 3",76,0.0875,868.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to glare and blur."
+"2015-10-28_YB-Aq9",2015-10-28,2015-10-28,"YB","A","9","Cth","Chthamalus_dalli","Type 3",522,0.0875,5965.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to blur and glare."
+"2015-10-28_YB-Aq6",2015-10-28,2015-10-28,"YB","A","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","10%",""
+"2015-10-28_YB-Aq7",2015-10-28,2015-10-28,"YB","A","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to glare and blur."
+"2015-10-28_YB-Aq9",2015-10-28,2015-10-28,"YB","A","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to blur and glare."
+"2015-10-28_YB-Aq6",2015-10-28,2015-10-28,"YB","A","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","10%",""
+"2015-10-28_YB-Aq7",2015-10-28,2015-10-28,"YB","A","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to glare and blur."
+"2015-10-28_YB-Aq9",2015-10-28,2015-10-28,"YB","A","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to blur and glare."
+"2015-10-28_YB-Aq6",2015-10-28,2015-10-28,"YB","A","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","10%",""
+"2015-10-28_YB-Aq7",2015-10-28,2015-10-28,"YB","A","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to glare and blur."
+"2015-10-28_YB-Aq9",2015-10-28,2015-10-28,"YB","A","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to blur and glare."
+"2015-10-28_YB-Aq6",2015-10-28,2015-10-28,"YB","A","6","Lim","Limpets","Type 12",125,0.0875,1428.57142857143,NA,"Celeste Moen","Finished","Full","Full","10%",""
+"2015-10-28_YB-Aq7",2015-10-28,2015-10-28,"YB","A","7","Lim","Limpets","Type 12",100,0.0875,1142.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to glare and blur."
+"2015-10-28_YB-Aq9",2015-10-28,2015-10-28,"YB","A","9","Lim","Limpets","Type 12",446,0.0875,5097.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to blur and glare."
+"2015-10-28_YB-Aq6",2015-10-28,2015-10-28,"YB","A","6","Ls","Littorina_sitkana","Type 13",26,0.0875,297.142857142857,NA,"Celeste Moen","Finished","Full","Full","10%",""
+"2015-10-28_YB-Aq7",2015-10-28,2015-10-28,"YB","A","7","Ls","Littorina_sitkana","Type 13",331,0.0875,3782.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to glare and blur."
+"2015-10-28_YB-Aq9",2015-10-28,2015-10-28,"YB","A","9","Ls","Littorina_sitkana","Type 13",159,0.0875,1817.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to blur and glare."
+"2015-10-28_YB-Aq6",2015-10-28,2015-10-28,"YB","A","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","10%",""
+"2015-10-28_YB-Aq7",2015-10-28,2015-10-28,"YB","A","7","Mc","Mytilus_californianus","Type 17",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to glare and blur."
+"2015-10-28_YB-Aq9",2015-10-28,2015-10-28,"YB","A","9","Mc","Mytilus_californianus","Type 17",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to blur and glare."
+"2015-10-28_YB-Aq6",2015-10-28,2015-10-28,"YB","A","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","10%",""
+"2015-10-28_YB-Aq7",2015-10-28,2015-10-28,"YB","A","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to glare and blur."
+"2015-10-28_YB-Aq9",2015-10-28,2015-10-28,"YB","A","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to blur and glare."
+"2015-10-28_YB-Aq6",2015-10-28,2015-10-28,"YB","A","6","Myt","Mytilus_spp","Type 7",467,0.0875,5337.14285714286,NA,"Celeste Moen","Finished","Full","Full","10%",""
+"2015-10-28_YB-Aq7",2015-10-28,2015-10-28,"YB","A","7","Myt","Mytilus_spp","Type 7",326,0.0875,3725.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to glare and blur."
+"2015-10-28_YB-Aq9",2015-10-28,2015-10-28,"YB","A","9","Myt","Mytilus_spp","Type 7",89,0.0875,1017.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to blur and glare."
+"2015-10-28_YB-Aq6",2015-10-28,2015-10-28,"YB","A","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","10%",""
+"2015-10-28_YB-Aq7",2015-10-28,2015-10-28,"YB","A","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to glare and blur."
+"2015-10-28_YB-Aq9",2015-10-28,2015-10-28,"YB","A","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to blur and glare."
+"2015-10-28_YB-Aq6",2015-10-28,2015-10-28,"YB","A","6","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","10%",""
+"2015-10-28_YB-Aq7",2015-10-28,2015-10-28,"YB","A","7","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to glare and blur."
+"2015-10-28_YB-Aq9",2015-10-28,2015-10-28,"YB","A","9","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to blur and glare."
+"2015-10-28_YB-Aq6",2015-10-28,2015-10-28,"YB","A","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","10%",""
+"2015-10-28_YB-Aq7",2015-10-28,2015-10-28,"YB","A","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to glare and blur."
+"2015-10-28_YB-Aq9",2015-10-28,2015-10-28,"YB","A","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to blur and glare."
+"2015-10-28_YB-Aq6",2015-10-28,2015-10-28,"YB","A","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","10%",""
+"2015-10-28_YB-Aq7",2015-10-28,2015-10-28,"YB","A","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to glare and blur."
+"2015-10-28_YB-Aq9",2015-10-28,2015-10-28,"YB","A","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to blur and glare."
+"2015-10-28_YB-Aq6",2015-10-28,2015-10-28,"YB","A","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","10%",""
+"2015-10-28_YB-Aq7",2015-10-28,2015-10-28,"YB","A","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to glare and blur."
+"2015-10-28_YB-Aq9",2015-10-28,2015-10-28,"YB","A","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to blur and glare."
+"2015-10-28_YB-Aq6",2015-10-28,2015-10-28,"YB","A","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","10%",""
+"2015-10-28_YB-Aq7",2015-10-28,2015-10-28,"YB","A","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to glare and blur."
+"2015-10-28_YB-Aq9",2015-10-28,2015-10-28,"YB","A","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to blur and glare."
+"2015-10-28_YB-Aq6",2015-10-28,2015-10-28,"YB","A","6","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","10%",""
+"2015-10-28_YB-Aq7",2015-10-28,2015-10-28,"YB","A","7","No","Nucella_ostrina","Type 9",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to glare and blur."
+"2015-10-28_YB-Aq9",2015-10-28,2015-10-28,"YB","A","9","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to blur and glare."
+"2015-10-28_YB-Aq6",2015-10-28,2015-10-28,"YB","A","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","10%",""
+"2015-10-28_YB-Aq7",2015-10-28,2015-10-28,"YB","A","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to glare and blur."
+"2015-10-28_YB-Aq9",2015-10-28,2015-10-28,"YB","A","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to blur and glare."
+"2015-10-28_YB-Aq6",2015-10-28,2015-10-28,"YB","A","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","10%",""
+"2015-10-28_YB-Aq7",2015-10-28,2015-10-28,"YB","A","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to glare and blur."
+"2015-10-28_YB-Aq9",2015-10-28,2015-10-28,"YB","A","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to blur and glare."
+"2015-10-28_YB-Aq6",2015-10-28,2015-10-28,"YB","A","6","Pp","Pollicipes_polymerus","Type 11",828,0.0875,9462.85714285714,NA,"Celeste Moen","Finished","Full","Full","10%",""
+"2015-10-28_YB-Aq7",2015-10-28,2015-10-28,"YB","A","7","Pp","Pollicipes_polymerus","Type 11",1782,0.0875,20365.7142857143,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to glare and blur."
+"2015-10-28_YB-Aq9",2015-10-28,2015-10-28,"YB","A","9","Pp","Pollicipes_polymerus","Type 11",1368,0.0875,15634.2857142857,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to blur and glare."
+"2015-10-28_YB-Aq6",2015-10-28,2015-10-28,"YB","A","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","10%",""
+"2015-10-28_YB-Aq7",2015-10-28,2015-10-28,"YB","A","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to glare and blur."
+"2015-10-28_YB-Aq9",2015-10-28,2015-10-28,"YB","A","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to blur and glare."
+"2015-10-28_YB-Aq6",2015-10-28,2015-10-28,"YB","A","6","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Celeste Moen","Finished","Full","Full","10%",""
+"2015-10-28_YB-Aq7",2015-10-28,2015-10-28,"YB","A","7","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to glare and blur."
+"2015-10-28_YB-Aq9",2015-10-28,2015-10-28,"YB","A","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to blur and glare."
+"2015-10-28_YB-Aq6",2015-10-28,2015-10-28,"YB","A","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","10%",""
+"2015-10-28_YB-Aq7",2015-10-28,2015-10-28,"YB","A","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%","Counts likely low due to glare and blur."
+"2015-10-28_YB-Aq9",2015-10-28,2015-10-28,"YB","A","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to blur and glare."
+"2015-10-28_YB-ABq1",2015-10-28,2015-10-28,"YB","AB","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2015-10-28_YB-ABq2",2015-10-28,2015-10-28,"YB","AB","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-10-28_YB-ABq4",2015-10-28,2015-10-28,"YB","AB","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-10-28_YB-ABq1",2015-10-28,2015-10-28,"YB","AB","1","Ae","Anemones","Type 14",46,0.0875,525.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2015-10-28_YB-ABq2",2015-10-28,2015-10-28,"YB","AB","2","Ae","Anemones","Type 14",94,0.0875,1074.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-10-28_YB-ABq4",2015-10-28,2015-10-28,"YB","AB","4","Ae","Anemones","Type 14",58,0.0875,662.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-10-28_YB-ABq1",2015-10-28,2015-10-28,"YB","AB","1","Bg","Balanus_glandula","Type 1",20,0.0875,228.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2015-10-28_YB-ABq2",2015-10-28,2015-10-28,"YB","AB","2","Bg","Balanus_glandula","Type 1",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-10-28_YB-ABq4",2015-10-28,2015-10-28,"YB","AB","4","Bg","Balanus_glandula","Type 1",39,0.0875,445.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-10-28_YB-ABq1",2015-10-28,2015-10-28,"YB","AB","1","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2015-10-28_YB-ABq2",2015-10-28,2015-10-28,"YB","AB","2","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-10-28_YB-ABq4",2015-10-28,2015-10-28,"YB","AB","4","BgD","Balanus_glandula_(dead)","Type 2",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-10-28_YB-ABq1",2015-10-28,2015-10-28,"YB","AB","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2015-10-28_YB-ABq2",2015-10-28,2015-10-28,"YB","AB","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-10-28_YB-ABq4",2015-10-28,2015-10-28,"YB","AB","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-10-28_YB-ABq1",2015-10-28,2015-10-28,"YB","AB","1","Cth","Chthamalus_dalli","Type 3",48,0.0875,548.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2015-10-28_YB-ABq2",2015-10-28,2015-10-28,"YB","AB","2","Cth","Chthamalus_dalli","Type 3",11,0.0875,125.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-10-28_YB-ABq4",2015-10-28,2015-10-28,"YB","AB","4","Cth","Chthamalus_dalli","Type 3",17,0.0875,194.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-10-28_YB-ABq1",2015-10-28,2015-10-28,"YB","AB","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2015-10-28_YB-ABq2",2015-10-28,2015-10-28,"YB","AB","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-10-28_YB-ABq4",2015-10-28,2015-10-28,"YB","AB","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-10-28_YB-ABq1",2015-10-28,2015-10-28,"YB","AB","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2015-10-28_YB-ABq2",2015-10-28,2015-10-28,"YB","AB","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-10-28_YB-ABq4",2015-10-28,2015-10-28,"YB","AB","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-10-28_YB-ABq1",2015-10-28,2015-10-28,"YB","AB","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2015-10-28_YB-ABq2",2015-10-28,2015-10-28,"YB","AB","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-10-28_YB-ABq4",2015-10-28,2015-10-28,"YB","AB","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-10-28_YB-ABq1",2015-10-28,2015-10-28,"YB","AB","1","Lim","Limpets","Type 12",133,0.0875,1520,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2015-10-28_YB-ABq2",2015-10-28,2015-10-28,"YB","AB","2","Lim","Limpets","Type 12",73,0.0875,834.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-10-28_YB-ABq4",2015-10-28,2015-10-28,"YB","AB","4","Lim","Limpets","Type 12",193,0.0875,2205.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-10-28_YB-ABq1",2015-10-28,2015-10-28,"YB","AB","1","Ls","Littorina_sitkana","Type 13",243,0.0875,2777.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2015-10-28_YB-ABq2",2015-10-28,2015-10-28,"YB","AB","2","Ls","Littorina_sitkana","Type 13",162,0.0875,1851.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-10-28_YB-ABq4",2015-10-28,2015-10-28,"YB","AB","4","Ls","Littorina_sitkana","Type 13",173,0.0875,1977.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-10-28_YB-ABq1",2015-10-28,2015-10-28,"YB","AB","1","Mc","Mytilus_californianus","Type 17",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2015-10-28_YB-ABq2",2015-10-28,2015-10-28,"YB","AB","2","Mc","Mytilus_californianus","Type 17",12,0.0875,137.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-10-28_YB-ABq4",2015-10-28,2015-10-28,"YB","AB","4","Mc","Mytilus_californianus","Type 17",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-10-28_YB-ABq1",2015-10-28,2015-10-28,"YB","AB","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2015-10-28_YB-ABq2",2015-10-28,2015-10-28,"YB","AB","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-10-28_YB-ABq4",2015-10-28,2015-10-28,"YB","AB","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-10-28_YB-ABq1",2015-10-28,2015-10-28,"YB","AB","1","Myt","Mytilus_spp","Type 7",15,0.0875,171.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2015-10-28_YB-ABq2",2015-10-28,2015-10-28,"YB","AB","2","Myt","Mytilus_spp","Type 7",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-10-28_YB-ABq4",2015-10-28,2015-10-28,"YB","AB","4","Myt","Mytilus_spp","Type 7",10,0.0875,114.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-10-28_YB-ABq1",2015-10-28,2015-10-28,"YB","AB","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2015-10-28_YB-ABq2",2015-10-28,2015-10-28,"YB","AB","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-10-28_YB-ABq4",2015-10-28,2015-10-28,"YB","AB","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-10-28_YB-ABq1",2015-10-28,2015-10-28,"YB","AB","1","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2015-10-28_YB-ABq2",2015-10-28,2015-10-28,"YB","AB","2","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-10-28_YB-ABq4",2015-10-28,2015-10-28,"YB","AB","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-10-28_YB-ABq1",2015-10-28,2015-10-28,"YB","AB","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2015-10-28_YB-ABq2",2015-10-28,2015-10-28,"YB","AB","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-10-28_YB-ABq4",2015-10-28,2015-10-28,"YB","AB","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-10-28_YB-ABq1",2015-10-28,2015-10-28,"YB","AB","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2015-10-28_YB-ABq2",2015-10-28,2015-10-28,"YB","AB","2","Ner","Nereis_worm","Type 24",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-10-28_YB-ABq4",2015-10-28,2015-10-28,"YB","AB","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-10-28_YB-ABq1",2015-10-28,2015-10-28,"YB","AB","1","Nc","Nucella_canaliculata","Type 10",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2015-10-28_YB-ABq2",2015-10-28,2015-10-28,"YB","AB","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-10-28_YB-ABq4",2015-10-28,2015-10-28,"YB","AB","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-10-28_YB-ABq1",2015-10-28,2015-10-28,"YB","AB","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2015-10-28_YB-ABq2",2015-10-28,2015-10-28,"YB","AB","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-10-28_YB-ABq4",2015-10-28,2015-10-28,"YB","AB","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-10-28_YB-ABq1",2015-10-28,2015-10-28,"YB","AB","1","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2015-10-28_YB-ABq2",2015-10-28,2015-10-28,"YB","AB","2","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-10-28_YB-ABq4",2015-10-28,2015-10-28,"YB","AB","4","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-10-28_YB-ABq1",2015-10-28,2015-10-28,"YB","AB","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2015-10-28_YB-ABq2",2015-10-28,2015-10-28,"YB","AB","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-10-28_YB-ABq4",2015-10-28,2015-10-28,"YB","AB","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-10-28_YB-ABq1",2015-10-28,2015-10-28,"YB","AB","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2015-10-28_YB-ABq2",2015-10-28,2015-10-28,"YB","AB","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-10-28_YB-ABq4",2015-10-28,2015-10-28,"YB","AB","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-10-28_YB-ABq1",2015-10-28,2015-10-28,"YB","AB","1","Pp","Pollicipes_polymerus","Type 11",880,0.0875,10057.1428571429,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2015-10-28_YB-ABq2",2015-10-28,2015-10-28,"YB","AB","2","Pp","Pollicipes_polymerus","Type 11",732,0.0875,8365.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-10-28_YB-ABq4",2015-10-28,2015-10-28,"YB","AB","4","Pp","Pollicipes_polymerus","Type 11",1354,0.0875,15474.2857142857,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-10-28_YB-ABq1",2015-10-28,2015-10-28,"YB","AB","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2015-10-28_YB-ABq2",2015-10-28,2015-10-28,"YB","AB","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-10-28_YB-ABq4",2015-10-28,2015-10-28,"YB","AB","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-10-28_YB-ABq1",2015-10-28,2015-10-28,"YB","AB","1","Sc","Semibalanus_cariosus","Type 5",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2015-10-28_YB-ABq2",2015-10-28,2015-10-28,"YB","AB","2","Sc","Semibalanus_cariosus","Type 5",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-10-28_YB-ABq4",2015-10-28,2015-10-28,"YB","AB","4","Sc","Semibalanus_cariosus","Type 5",11,0.0875,125.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-10-28_YB-ABq1",2015-10-28,2015-10-28,"YB","AB","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%",""
+"2015-10-28_YB-ABq2",2015-10-28,2015-10-28,"YB","AB","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-10-28_YB-ABq4",2015-10-28,2015-10-28,"YB","AB","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%",""
+"2015-10-28_YB-ACq4",2015-10-28,2015-10-28,"YB","AC","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-ACq7",2015-10-28,2015-10-28,"YB","AC","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-10-28_YB-ACq8",2015-10-28,2015-10-28,"YB","AC","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-10-28_YB-ACq4",2015-10-28,2015-10-28,"YB","AC","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-ACq7",2015-10-28,2015-10-28,"YB","AC","7","Ae","Anemones","Type 14",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-10-28_YB-ACq8",2015-10-28,2015-10-28,"YB","AC","8","Ae","Anemones","Type 14",17,0.0875,194.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-10-28_YB-ACq4",2015-10-28,2015-10-28,"YB","AC","4","Bg","Balanus_glandula","Type 1",54,0.0875,617.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-ACq7",2015-10-28,2015-10-28,"YB","AC","7","Bg","Balanus_glandula","Type 1",53,0.0875,605.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-10-28_YB-ACq8",2015-10-28,2015-10-28,"YB","AC","8","Bg","Balanus_glandula","Type 1",17,0.0875,194.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-10-28_YB-ACq4",2015-10-28,2015-10-28,"YB","AC","4","BgD","Balanus_glandula_(dead)","Type 2",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-ACq7",2015-10-28,2015-10-28,"YB","AC","7","BgD","Balanus_glandula_(dead)","Type 2",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-10-28_YB-ACq8",2015-10-28,2015-10-28,"YB","AC","8","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-10-28_YB-ACq4",2015-10-28,2015-10-28,"YB","AC","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-ACq7",2015-10-28,2015-10-28,"YB","AC","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-10-28_YB-ACq8",2015-10-28,2015-10-28,"YB","AC","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-10-28_YB-ACq4",2015-10-28,2015-10-28,"YB","AC","4","Cth","Chthamalus_dalli","Type 3",44,0.0875,502.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-ACq7",2015-10-28,2015-10-28,"YB","AC","7","Cth","Chthamalus_dalli","Type 3",75,0.0875,857.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-10-28_YB-ACq8",2015-10-28,2015-10-28,"YB","AC","8","Cth","Chthamalus_dalli","Type 3",26,0.0875,297.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-10-28_YB-ACq4",2015-10-28,2015-10-28,"YB","AC","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-ACq7",2015-10-28,2015-10-28,"YB","AC","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-10-28_YB-ACq8",2015-10-28,2015-10-28,"YB","AC","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-10-28_YB-ACq4",2015-10-28,2015-10-28,"YB","AC","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-ACq7",2015-10-28,2015-10-28,"YB","AC","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-10-28_YB-ACq8",2015-10-28,2015-10-28,"YB","AC","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-10-28_YB-ACq4",2015-10-28,2015-10-28,"YB","AC","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-ACq7",2015-10-28,2015-10-28,"YB","AC","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-10-28_YB-ACq8",2015-10-28,2015-10-28,"YB","AC","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-10-28_YB-ACq4",2015-10-28,2015-10-28,"YB","AC","4","Lim","Limpets","Type 12",350,0.0875,4000,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-ACq7",2015-10-28,2015-10-28,"YB","AC","7","Lim","Limpets","Type 12",242,0.0875,2765.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-10-28_YB-ACq8",2015-10-28,2015-10-28,"YB","AC","8","Lim","Limpets","Type 12",165,0.0875,1885.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-10-28_YB-ACq4",2015-10-28,2015-10-28,"YB","AC","4","Ls","Littorina_sitkana","Type 13",221,0.0875,2525.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-ACq7",2015-10-28,2015-10-28,"YB","AC","7","Ls","Littorina_sitkana","Type 13",115,0.0875,1314.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-10-28_YB-ACq8",2015-10-28,2015-10-28,"YB","AC","8","Ls","Littorina_sitkana","Type 13",191,0.0875,2182.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-10-28_YB-ACq4",2015-10-28,2015-10-28,"YB","AC","4","Mc","Mytilus_californianus","Type 17",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-ACq7",2015-10-28,2015-10-28,"YB","AC","7","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-10-28_YB-ACq8",2015-10-28,2015-10-28,"YB","AC","8","Mc","Mytilus_californianus","Type 17",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-10-28_YB-ACq4",2015-10-28,2015-10-28,"YB","AC","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-ACq7",2015-10-28,2015-10-28,"YB","AC","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-10-28_YB-ACq8",2015-10-28,2015-10-28,"YB","AC","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-10-28_YB-ACq4",2015-10-28,2015-10-28,"YB","AC","4","Myt","Mytilus_spp","Type 7",125,0.0875,1428.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-ACq7",2015-10-28,2015-10-28,"YB","AC","7","Myt","Mytilus_spp","Type 7",114,0.0875,1302.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-10-28_YB-ACq8",2015-10-28,2015-10-28,"YB","AC","8","Myt","Mytilus_spp","Type 7",58,0.0875,662.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-10-28_YB-ACq4",2015-10-28,2015-10-28,"YB","AC","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-ACq7",2015-10-28,2015-10-28,"YB","AC","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-10-28_YB-ACq8",2015-10-28,2015-10-28,"YB","AC","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-10-28_YB-ACq4",2015-10-28,2015-10-28,"YB","AC","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-ACq7",2015-10-28,2015-10-28,"YB","AC","7","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-10-28_YB-ACq8",2015-10-28,2015-10-28,"YB","AC","8","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-10-28_YB-ACq4",2015-10-28,2015-10-28,"YB","AC","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-ACq7",2015-10-28,2015-10-28,"YB","AC","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-10-28_YB-ACq8",2015-10-28,2015-10-28,"YB","AC","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-10-28_YB-ACq4",2015-10-28,2015-10-28,"YB","AC","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-ACq7",2015-10-28,2015-10-28,"YB","AC","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-10-28_YB-ACq8",2015-10-28,2015-10-28,"YB","AC","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-10-28_YB-ACq4",2015-10-28,2015-10-28,"YB","AC","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-ACq7",2015-10-28,2015-10-28,"YB","AC","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-10-28_YB-ACq8",2015-10-28,2015-10-28,"YB","AC","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-10-28_YB-ACq4",2015-10-28,2015-10-28,"YB","AC","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-ACq7",2015-10-28,2015-10-28,"YB","AC","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-10-28_YB-ACq8",2015-10-28,2015-10-28,"YB","AC","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-10-28_YB-ACq4",2015-10-28,2015-10-28,"YB","AC","4","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-ACq7",2015-10-28,2015-10-28,"YB","AC","7","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-10-28_YB-ACq8",2015-10-28,2015-10-28,"YB","AC","8","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-10-28_YB-ACq4",2015-10-28,2015-10-28,"YB","AC","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-ACq7",2015-10-28,2015-10-28,"YB","AC","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-10-28_YB-ACq8",2015-10-28,2015-10-28,"YB","AC","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-10-28_YB-ACq4",2015-10-28,2015-10-28,"YB","AC","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-ACq7",2015-10-28,2015-10-28,"YB","AC","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-10-28_YB-ACq8",2015-10-28,2015-10-28,"YB","AC","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-10-28_YB-ACq4",2015-10-28,2015-10-28,"YB","AC","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-ACq7",2015-10-28,2015-10-28,"YB","AC","7","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-10-28_YB-ACq8",2015-10-28,2015-10-28,"YB","AC","8","Pp","Pollicipes_polymerus","Type 11",26,0.0875,297.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-10-28_YB-ACq4",2015-10-28,2015-10-28,"YB","AC","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-ACq7",2015-10-28,2015-10-28,"YB","AC","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-10-28_YB-ACq8",2015-10-28,2015-10-28,"YB","AC","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-10-28_YB-ACq4",2015-10-28,2015-10-28,"YB","AC","4","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-ACq7",2015-10-28,2015-10-28,"YB","AC","7","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-10-28_YB-ACq8",2015-10-28,2015-10-28,"YB","AC","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-10-28_YB-ACq4",2015-10-28,2015-10-28,"YB","AC","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-ACq7",2015-10-28,2015-10-28,"YB","AC","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-10-28_YB-ACq8",2015-10-28,2015-10-28,"YB","AC","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-10-28_YB-ADq1",2015-10-28,2015-10-28,"YB","AD","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-10-28_YB-ADq5",2015-10-28,2015-10-28,"YB","AD","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to blur."
+"2015-10-28_YB-ADq8",2015-10-28,2015-10-28,"YB","AD","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2015-10-28_YB-ADq1",2015-10-28,2015-10-28,"YB","AD","1","Ae","Anemones","Type 14",61,0.0875,697.142857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-10-28_YB-ADq5",2015-10-28,2015-10-28,"YB","AD","5","Ae","Anemones","Type 14",160,0.0875,1828.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to blur."
+"2015-10-28_YB-ADq8",2015-10-28,2015-10-28,"YB","AD","8","Ae","Anemones","Type 14",73,0.0875,834.285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2015-10-28_YB-ADq1",2015-10-28,2015-10-28,"YB","AD","1","Bg","Balanus_glandula","Type 1",398,0.015625,25472,"c","Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-10-28_YB-ADq5",2015-10-28,2015-10-28,"YB","AD","5","Bg","Balanus_glandula","Type 1",175,0.0875,2000,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to blur."
+"2015-10-28_YB-ADq8",2015-10-28,2015-10-28,"YB","AD","8","Bg","Balanus_glandula","Type 1",207,0.015625,13248,"c","Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2015-10-28_YB-ADq1",2015-10-28,2015-10-28,"YB","AD","1","BgD","Balanus_glandula_(dead)","Type 2",2,0.015625,128,"c","Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-10-28_YB-ADq5",2015-10-28,2015-10-28,"YB","AD","5","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to blur."
+"2015-10-28_YB-ADq8",2015-10-28,2015-10-28,"YB","AD","8","BgD","Balanus_glandula_(dead)","Type 2",2,0.015625,128,"c","Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2015-10-28_YB-ADq1",2015-10-28,2015-10-28,"YB","AD","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-10-28_YB-ADq5",2015-10-28,2015-10-28,"YB","AD","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to blur."
+"2015-10-28_YB-ADq8",2015-10-28,2015-10-28,"YB","AD","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2015-10-28_YB-ADq1",2015-10-28,2015-10-28,"YB","AD","1","Cth","Chthamalus_dalli","Type 3",10,0.015625,640,"c","Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-10-28_YB-ADq5",2015-10-28,2015-10-28,"YB","AD","5","Cth","Chthamalus_dalli","Type 3",9,0.0875,102.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to blur."
+"2015-10-28_YB-ADq8",2015-10-28,2015-10-28,"YB","AD","8","Cth","Chthamalus_dalli","Type 3",70,0.015625,4480,"c","Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2015-10-28_YB-ADq1",2015-10-28,2015-10-28,"YB","AD","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-10-28_YB-ADq5",2015-10-28,2015-10-28,"YB","AD","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to blur."
+"2015-10-28_YB-ADq8",2015-10-28,2015-10-28,"YB","AD","8","CthD","Chthamalus_dalli (dead)","Type 4",1,0.015625,64,"c","Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2015-10-28_YB-ADq1",2015-10-28,2015-10-28,"YB","AD","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-10-28_YB-ADq5",2015-10-28,2015-10-28,"YB","AD","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to blur."
+"2015-10-28_YB-ADq8",2015-10-28,2015-10-28,"YB","AD","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2015-10-28_YB-ADq1",2015-10-28,2015-10-28,"YB","AD","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-10-28_YB-ADq5",2015-10-28,2015-10-28,"YB","AD","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to blur."
+"2015-10-28_YB-ADq8",2015-10-28,2015-10-28,"YB","AD","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2015-10-28_YB-ADq1",2015-10-28,2015-10-28,"YB","AD","1","Lim","Limpets","Type 12",97,0.0875,1108.57142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-10-28_YB-ADq5",2015-10-28,2015-10-28,"YB","AD","5","Lim","Limpets","Type 12",69,0.0875,788.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to blur."
+"2015-10-28_YB-ADq8",2015-10-28,2015-10-28,"YB","AD","8","Lim","Limpets","Type 12",332,0.0875,3794.28571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2015-10-28_YB-ADq1",2015-10-28,2015-10-28,"YB","AD","1","Ls","Littorina_sitkana","Type 13",236,0.0875,2697.14285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-10-28_YB-ADq5",2015-10-28,2015-10-28,"YB","AD","5","Ls","Littorina_sitkana","Type 13",237,0.0875,2708.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to blur."
+"2015-10-28_YB-ADq8",2015-10-28,2015-10-28,"YB","AD","8","Ls","Littorina_sitkana","Type 13",414,0.0875,4731.42857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2015-10-28_YB-ADq1",2015-10-28,2015-10-28,"YB","AD","1","Mc","Mytilus_californianus","Type 17",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-10-28_YB-ADq5",2015-10-28,2015-10-28,"YB","AD","5","Mc","Mytilus_californianus","Type 17",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to blur."
+"2015-10-28_YB-ADq8",2015-10-28,2015-10-28,"YB","AD","8","Mc","Mytilus_californianus","Type 17",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2015-10-28_YB-ADq1",2015-10-28,2015-10-28,"YB","AD","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-10-28_YB-ADq5",2015-10-28,2015-10-28,"YB","AD","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to blur."
+"2015-10-28_YB-ADq8",2015-10-28,2015-10-28,"YB","AD","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2015-10-28_YB-ADq1",2015-10-28,2015-10-28,"YB","AD","1","Myt","Mytilus_spp","Type 7",309,0.0875,3531.42857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-10-28_YB-ADq5",2015-10-28,2015-10-28,"YB","AD","5","Myt","Mytilus_spp","Type 7",132,0.0875,1508.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to blur."
+"2015-10-28_YB-ADq8",2015-10-28,2015-10-28,"YB","AD","8","Myt","Mytilus_spp","Type 7",289,0.0875,3302.85714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2015-10-28_YB-ADq1",2015-10-28,2015-10-28,"YB","AD","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-10-28_YB-ADq5",2015-10-28,2015-10-28,"YB","AD","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to blur."
+"2015-10-28_YB-ADq8",2015-10-28,2015-10-28,"YB","AD","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2015-10-28_YB-ADq1",2015-10-28,2015-10-28,"YB","AD","1","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-10-28_YB-ADq5",2015-10-28,2015-10-28,"YB","AD","5","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to blur."
+"2015-10-28_YB-ADq8",2015-10-28,2015-10-28,"YB","AD","8","Mt","Mytilus_trossulus","Type 15",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2015-10-28_YB-ADq1",2015-10-28,2015-10-28,"YB","AD","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-10-28_YB-ADq5",2015-10-28,2015-10-28,"YB","AD","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to blur."
+"2015-10-28_YB-ADq8",2015-10-28,2015-10-28,"YB","AD","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2015-10-28_YB-ADq1",2015-10-28,2015-10-28,"YB","AD","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-10-28_YB-ADq5",2015-10-28,2015-10-28,"YB","AD","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to blur."
+"2015-10-28_YB-ADq8",2015-10-28,2015-10-28,"YB","AD","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2015-10-28_YB-ADq1",2015-10-28,2015-10-28,"YB","AD","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-10-28_YB-ADq5",2015-10-28,2015-10-28,"YB","AD","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to blur."
+"2015-10-28_YB-ADq8",2015-10-28,2015-10-28,"YB","AD","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2015-10-28_YB-ADq1",2015-10-28,2015-10-28,"YB","AD","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-10-28_YB-ADq5",2015-10-28,2015-10-28,"YB","AD","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to blur."
+"2015-10-28_YB-ADq8",2015-10-28,2015-10-28,"YB","AD","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2015-10-28_YB-ADq1",2015-10-28,2015-10-28,"YB","AD","1","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-10-28_YB-ADq5",2015-10-28,2015-10-28,"YB","AD","5","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to blur."
+"2015-10-28_YB-ADq8",2015-10-28,2015-10-28,"YB","AD","8","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2015-10-28_YB-ADq1",2015-10-28,2015-10-28,"YB","AD","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-10-28_YB-ADq5",2015-10-28,2015-10-28,"YB","AD","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to blur."
+"2015-10-28_YB-ADq8",2015-10-28,2015-10-28,"YB","AD","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2015-10-28_YB-ADq1",2015-10-28,2015-10-28,"YB","AD","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-10-28_YB-ADq5",2015-10-28,2015-10-28,"YB","AD","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to blur."
+"2015-10-28_YB-ADq8",2015-10-28,2015-10-28,"YB","AD","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2015-10-28_YB-ADq1",2015-10-28,2015-10-28,"YB","AD","1","Pp","Pollicipes_polymerus","Type 11",1213,0.0875,13862.8571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-10-28_YB-ADq5",2015-10-28,2015-10-28,"YB","AD","5","Pp","Pollicipes_polymerus","Type 11",1193,0.0875,13634.2857142857,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to blur."
+"2015-10-28_YB-ADq8",2015-10-28,2015-10-28,"YB","AD","8","Pp","Pollicipes_polymerus","Type 11",993,0.0875,11348.5714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2015-10-28_YB-ADq1",2015-10-28,2015-10-28,"YB","AD","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-10-28_YB-ADq5",2015-10-28,2015-10-28,"YB","AD","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to blur."
+"2015-10-28_YB-ADq8",2015-10-28,2015-10-28,"YB","AD","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2015-10-28_YB-ADq1",2015-10-28,2015-10-28,"YB","AD","1","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-10-28_YB-ADq5",2015-10-28,2015-10-28,"YB","AD","5","Sc","Semibalanus_cariosus","Type 5",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to blur."
+"2015-10-28_YB-ADq8",2015-10-28,2015-10-28,"YB","AD","8","Sc","Semibalanus_cariosus","Type 5",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2015-10-28_YB-ADq1",2015-10-28,2015-10-28,"YB","AD","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","5%",""
+"2015-10-28_YB-ADq5",2015-10-28,2015-10-28,"YB","AD","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to blur."
+"2015-10-28_YB-ADq8",2015-10-28,2015-10-28,"YB","AD","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%",""
+"2015-10-28_YB-AEq1",2015-10-28,2015-10-28,"YB","AE","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae and glare."
+"2015-10-28_YB-AEq4",2015-10-28,2015-10-28,"YB","AE","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-AEq8",2015-10-28,2015-10-28,"YB","AE","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-10-28_YB-AEq1",2015-10-28,2015-10-28,"YB","AE","1","Ae","Anemones","Type 14",30,0.0875,342.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae and glare."
+"2015-10-28_YB-AEq4",2015-10-28,2015-10-28,"YB","AE","4","Ae","Anemones","Type 14",10,0.0875,114.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-AEq8",2015-10-28,2015-10-28,"YB","AE","8","Ae","Anemones","Type 14",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-10-28_YB-AEq1",2015-10-28,2015-10-28,"YB","AE","1","Bg","Balanus_glandula","Type 1",98,0.0875,1120,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae and glare."
+"2015-10-28_YB-AEq4",2015-10-28,2015-10-28,"YB","AE","4","Bg","Balanus_glandula","Type 1",249,0.0875,2845.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-AEq8",2015-10-28,2015-10-28,"YB","AE","8","Bg","Balanus_glandula","Type 1",345,0.0875,3942.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-10-28_YB-AEq1",2015-10-28,2015-10-28,"YB","AE","1","BgD","Balanus_glandula_(dead)","Type 2",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae and glare."
+"2015-10-28_YB-AEq4",2015-10-28,2015-10-28,"YB","AE","4","BgD","Balanus_glandula_(dead)","Type 2",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-AEq8",2015-10-28,2015-10-28,"YB","AE","8","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-10-28_YB-AEq1",2015-10-28,2015-10-28,"YB","AE","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae and glare."
+"2015-10-28_YB-AEq4",2015-10-28,2015-10-28,"YB","AE","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-AEq8",2015-10-28,2015-10-28,"YB","AE","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-10-28_YB-AEq1",2015-10-28,2015-10-28,"YB","AE","1","Cth","Chthamalus_dalli","Type 3",414,0.0875,4731.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae and glare."
+"2015-10-28_YB-AEq4",2015-10-28,2015-10-28,"YB","AE","4","Cth","Chthamalus_dalli","Type 3",163,0.0875,1862.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-AEq8",2015-10-28,2015-10-28,"YB","AE","8","Cth","Chthamalus_dalli","Type 3",259,0.0875,2960,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-10-28_YB-AEq1",2015-10-28,2015-10-28,"YB","AE","1","CthD","Chthamalus_dalli (dead)","Type 4",10,0.0875,114.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae and glare."
+"2015-10-28_YB-AEq4",2015-10-28,2015-10-28,"YB","AE","4","CthD","Chthamalus_dalli (dead)","Type 4",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-AEq8",2015-10-28,2015-10-28,"YB","AE","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-10-28_YB-AEq1",2015-10-28,2015-10-28,"YB","AE","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae and glare."
+"2015-10-28_YB-AEq4",2015-10-28,2015-10-28,"YB","AE","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-AEq8",2015-10-28,2015-10-28,"YB","AE","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-10-28_YB-AEq1",2015-10-28,2015-10-28,"YB","AE","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae and glare."
+"2015-10-28_YB-AEq4",2015-10-28,2015-10-28,"YB","AE","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-AEq8",2015-10-28,2015-10-28,"YB","AE","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-10-28_YB-AEq1",2015-10-28,2015-10-28,"YB","AE","1","Lim","Limpets","Type 12",131,0.0875,1497.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae and glare."
+"2015-10-28_YB-AEq4",2015-10-28,2015-10-28,"YB","AE","4","Lim","Limpets","Type 12",160,0.0875,1828.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-AEq8",2015-10-28,2015-10-28,"YB","AE","8","Lim","Limpets","Type 12",183,0.0875,2091.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-10-28_YB-AEq1",2015-10-28,2015-10-28,"YB","AE","1","Ls","Littorina_sitkana","Type 13",67,0.0875,765.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae and glare."
+"2015-10-28_YB-AEq4",2015-10-28,2015-10-28,"YB","AE","4","Ls","Littorina_sitkana","Type 13",85,0.0875,971.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-AEq8",2015-10-28,2015-10-28,"YB","AE","8","Ls","Littorina_sitkana","Type 13",106,0.0875,1211.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-10-28_YB-AEq1",2015-10-28,2015-10-28,"YB","AE","1","Mc","Mytilus_californianus","Type 17",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae and glare."
+"2015-10-28_YB-AEq4",2015-10-28,2015-10-28,"YB","AE","4","Mc","Mytilus_californianus","Type 17",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-AEq8",2015-10-28,2015-10-28,"YB","AE","8","Mc","Mytilus_californianus","Type 17",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-10-28_YB-AEq1",2015-10-28,2015-10-28,"YB","AE","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae and glare."
+"2015-10-28_YB-AEq4",2015-10-28,2015-10-28,"YB","AE","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-AEq8",2015-10-28,2015-10-28,"YB","AE","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-10-28_YB-AEq1",2015-10-28,2015-10-28,"YB","AE","1","Myt","Mytilus_spp","Type 7",14,0.0875,160,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae and glare."
+"2015-10-28_YB-AEq4",2015-10-28,2015-10-28,"YB","AE","4","Myt","Mytilus_spp","Type 7",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-AEq8",2015-10-28,2015-10-28,"YB","AE","8","Myt","Mytilus_spp","Type 7",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-10-28_YB-AEq1",2015-10-28,2015-10-28,"YB","AE","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae and glare."
+"2015-10-28_YB-AEq4",2015-10-28,2015-10-28,"YB","AE","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-AEq8",2015-10-28,2015-10-28,"YB","AE","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-10-28_YB-AEq1",2015-10-28,2015-10-28,"YB","AE","1","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae and glare."
+"2015-10-28_YB-AEq4",2015-10-28,2015-10-28,"YB","AE","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-AEq8",2015-10-28,2015-10-28,"YB","AE","8","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-10-28_YB-AEq1",2015-10-28,2015-10-28,"YB","AE","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae and glare."
+"2015-10-28_YB-AEq4",2015-10-28,2015-10-28,"YB","AE","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-AEq8",2015-10-28,2015-10-28,"YB","AE","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-10-28_YB-AEq1",2015-10-28,2015-10-28,"YB","AE","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae and glare."
+"2015-10-28_YB-AEq4",2015-10-28,2015-10-28,"YB","AE","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-AEq8",2015-10-28,2015-10-28,"YB","AE","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-10-28_YB-AEq1",2015-10-28,2015-10-28,"YB","AE","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae and glare."
+"2015-10-28_YB-AEq4",2015-10-28,2015-10-28,"YB","AE","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-AEq8",2015-10-28,2015-10-28,"YB","AE","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-10-28_YB-AEq1",2015-10-28,2015-10-28,"YB","AE","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae and glare."
+"2015-10-28_YB-AEq4",2015-10-28,2015-10-28,"YB","AE","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-AEq8",2015-10-28,2015-10-28,"YB","AE","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-10-28_YB-AEq1",2015-10-28,2015-10-28,"YB","AE","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae and glare."
+"2015-10-28_YB-AEq4",2015-10-28,2015-10-28,"YB","AE","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-AEq8",2015-10-28,2015-10-28,"YB","AE","8","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-10-28_YB-AEq1",2015-10-28,2015-10-28,"YB","AE","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae and glare."
+"2015-10-28_YB-AEq4",2015-10-28,2015-10-28,"YB","AE","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-AEq8",2015-10-28,2015-10-28,"YB","AE","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-10-28_YB-AEq1",2015-10-28,2015-10-28,"YB","AE","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae and glare."
+"2015-10-28_YB-AEq4",2015-10-28,2015-10-28,"YB","AE","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-AEq8",2015-10-28,2015-10-28,"YB","AE","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-10-28_YB-AEq1",2015-10-28,2015-10-28,"YB","AE","1","Pp","Pollicipes_polymerus","Type 11",161,0.0875,1840,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae and glare."
+"2015-10-28_YB-AEq4",2015-10-28,2015-10-28,"YB","AE","4","Pp","Pollicipes_polymerus","Type 11",72,0.0875,822.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-AEq8",2015-10-28,2015-10-28,"YB","AE","8","Pp","Pollicipes_polymerus","Type 11",34,0.0875,388.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-10-28_YB-AEq1",2015-10-28,2015-10-28,"YB","AE","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae and glare."
+"2015-10-28_YB-AEq4",2015-10-28,2015-10-28,"YB","AE","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-AEq8",2015-10-28,2015-10-28,"YB","AE","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-10-28_YB-AEq1",2015-10-28,2015-10-28,"YB","AE","1","Sc","Semibalanus_cariosus","Type 5",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae and glare."
+"2015-10-28_YB-AEq4",2015-10-28,2015-10-28,"YB","AE","4","Sc","Semibalanus_cariosus","Type 5",16,0.0875,182.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-AEq8",2015-10-28,2015-10-28,"YB","AE","8","Sc","Semibalanus_cariosus","Type 5",16,0.0875,182.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-10-28_YB-AEq1",2015-10-28,2015-10-28,"YB","AE","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae and glare."
+"2015-10-28_YB-AEq4",2015-10-28,2015-10-28,"YB","AE","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-AEq8",2015-10-28,2015-10-28,"YB","AE","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-10-28_YB-AFq5",2015-10-28,2015-10-28,"YB","AF","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to glare."
+"2015-10-28_YB-AFq8",2015-10-28,2015-10-28,"YB","AF","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","28%",""
+"2015-10-28_YB-AFq9",2015-10-28,2015-10-28,"YB","AF","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likely low due to glare and blur"
+"2015-10-28_YB-AFq5",2015-10-28,2015-10-28,"YB","AF","5","Ae","Anemones","Type 14",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to glare."
+"2015-10-28_YB-AFq8",2015-10-28,2015-10-28,"YB","AF","8","Ae","Anemones","Type 14",8,0.0875,91.4285714285714,NA,"Celeste Moen","Finished","Full","Cropped","28%",""
+"2015-10-28_YB-AFq9",2015-10-28,2015-10-28,"YB","AF","9","Ae","Anemones","Type 14",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likely low due to glare and blur"
+"2015-10-28_YB-AFq5",2015-10-28,2015-10-28,"YB","AF","5","Bg","Balanus_glandula","Type 1",72,0.015625,4608,"c","Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to glare."
+"2015-10-28_YB-AFq8",2015-10-28,2015-10-28,"YB","AF","8","Bg","Balanus_glandula","Type 1",131,0.015625,8384,"c","Celeste Moen","Finished","Full","Cropped","28%",""
+"2015-10-28_YB-AFq9",2015-10-28,2015-10-28,"YB","AF","9","Bg","Balanus_glandula","Type 1",534,0.015625,34176,"c","Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likely low due to glare and blur"
+"2015-10-28_YB-AFq5",2015-10-28,2015-10-28,"YB","AF","5","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to glare."
+"2015-10-28_YB-AFq8",2015-10-28,2015-10-28,"YB","AF","8","BgD","Balanus_glandula_(dead)","Type 2",11,0.015625,704,"c","Celeste Moen","Finished","Full","Cropped","28%",""
+"2015-10-28_YB-AFq9",2015-10-28,2015-10-28,"YB","AF","9","BgD","Balanus_glandula_(dead)","Type 2",2,0.015625,128,"c","Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likely low due to glare and blur"
+"2015-10-28_YB-AFq5",2015-10-28,2015-10-28,"YB","AF","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to glare."
+"2015-10-28_YB-AFq8",2015-10-28,2015-10-28,"YB","AF","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","28%",""
+"2015-10-28_YB-AFq9",2015-10-28,2015-10-28,"YB","AF","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likely low due to glare and blur"
+"2015-10-28_YB-AFq5",2015-10-28,2015-10-28,"YB","AF","5","Cth","Chthamalus_dalli","Type 3",131,0.015625,8384,"c","Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to glare."
+"2015-10-28_YB-AFq8",2015-10-28,2015-10-28,"YB","AF","8","Cth","Chthamalus_dalli","Type 3",699,0.015625,44736,"c","Celeste Moen","Finished","Full","Cropped","28%",""
+"2015-10-28_YB-AFq9",2015-10-28,2015-10-28,"YB","AF","9","Cth","Chthamalus_dalli","Type 3",39,0.015625,2496,"c","Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likely low due to glare and blur"
+"2015-10-28_YB-AFq5",2015-10-28,2015-10-28,"YB","AF","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to glare."
+"2015-10-28_YB-AFq8",2015-10-28,2015-10-28,"YB","AF","8","CthD","Chthamalus_dalli (dead)","Type 4",12,0.015625,768,"c","Celeste Moen","Finished","Full","Cropped","28%",""
+"2015-10-28_YB-AFq9",2015-10-28,2015-10-28,"YB","AF","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likely low due to glare and blur"
+"2015-10-28_YB-AFq5",2015-10-28,2015-10-28,"YB","AF","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to glare."
+"2015-10-28_YB-AFq8",2015-10-28,2015-10-28,"YB","AF","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","28%",""
+"2015-10-28_YB-AFq9",2015-10-28,2015-10-28,"YB","AF","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likely low due to glare and blur"
+"2015-10-28_YB-AFq5",2015-10-28,2015-10-28,"YB","AF","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to glare."
+"2015-10-28_YB-AFq8",2015-10-28,2015-10-28,"YB","AF","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","28%",""
+"2015-10-28_YB-AFq9",2015-10-28,2015-10-28,"YB","AF","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likely low due to glare and blur"
+"2015-10-28_YB-AFq5",2015-10-28,2015-10-28,"YB","AF","5","Lim","Limpets","Type 12",89,0.0875,1017.14285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to glare."
+"2015-10-28_YB-AFq8",2015-10-28,2015-10-28,"YB","AF","8","Lim","Limpets","Type 12",117,0.0875,1337.14285714286,NA,"Celeste Moen","Finished","Full","Cropped","28%",""
+"2015-10-28_YB-AFq9",2015-10-28,2015-10-28,"YB","AF","9","Lim","Limpets","Type 12",23,0.0875,262.857142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likely low due to glare and blur"
+"2015-10-28_YB-AFq5",2015-10-28,2015-10-28,"YB","AF","5","Ls","Littorina_sitkana","Type 13",262,0.0875,2994.28571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to glare."
+"2015-10-28_YB-AFq8",2015-10-28,2015-10-28,"YB","AF","8","Ls","Littorina_sitkana","Type 13",184,0.0875,2102.85714285714,NA,"Celeste Moen","Finished","Full","Cropped","28%",""
+"2015-10-28_YB-AFq9",2015-10-28,2015-10-28,"YB","AF","9","Ls","Littorina_sitkana","Type 13",211,0.0875,2411.42857142857,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likely low due to glare and blur"
+"2015-10-28_YB-AFq5",2015-10-28,2015-10-28,"YB","AF","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to glare."
+"2015-10-28_YB-AFq8",2015-10-28,2015-10-28,"YB","AF","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","28%",""
+"2015-10-28_YB-AFq9",2015-10-28,2015-10-28,"YB","AF","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likely low due to glare and blur"
+"2015-10-28_YB-AFq5",2015-10-28,2015-10-28,"YB","AF","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to glare."
+"2015-10-28_YB-AFq8",2015-10-28,2015-10-28,"YB","AF","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","28%",""
+"2015-10-28_YB-AFq9",2015-10-28,2015-10-28,"YB","AF","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likely low due to glare and blur"
+"2015-10-28_YB-AFq5",2015-10-28,2015-10-28,"YB","AF","5","Myt","Mytilus_spp","Type 7",15,0.0875,171.428571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to glare."
+"2015-10-28_YB-AFq8",2015-10-28,2015-10-28,"YB","AF","8","Myt","Mytilus_spp","Type 7",45,0.0875,514.285714285714,NA,"Celeste Moen","Finished","Full","Cropped","28%",""
+"2015-10-28_YB-AFq9",2015-10-28,2015-10-28,"YB","AF","9","Myt","Mytilus_spp","Type 7",11,0.0875,125.714285714286,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likely low due to glare and blur"
+"2015-10-28_YB-AFq5",2015-10-28,2015-10-28,"YB","AF","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to glare."
+"2015-10-28_YB-AFq8",2015-10-28,2015-10-28,"YB","AF","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","28%",""
+"2015-10-28_YB-AFq9",2015-10-28,2015-10-28,"YB","AF","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likely low due to glare and blur"
+"2015-10-28_YB-AFq5",2015-10-28,2015-10-28,"YB","AF","5","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to glare."
+"2015-10-28_YB-AFq8",2015-10-28,2015-10-28,"YB","AF","8","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","28%",""
+"2015-10-28_YB-AFq9",2015-10-28,2015-10-28,"YB","AF","9","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likely low due to glare and blur"
+"2015-10-28_YB-AFq5",2015-10-28,2015-10-28,"YB","AF","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to glare."
+"2015-10-28_YB-AFq8",2015-10-28,2015-10-28,"YB","AF","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","28%",""
+"2015-10-28_YB-AFq9",2015-10-28,2015-10-28,"YB","AF","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likely low due to glare and blur"
+"2015-10-28_YB-AFq5",2015-10-28,2015-10-28,"YB","AF","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to glare."
+"2015-10-28_YB-AFq8",2015-10-28,2015-10-28,"YB","AF","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","28%",""
+"2015-10-28_YB-AFq9",2015-10-28,2015-10-28,"YB","AF","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likely low due to glare and blur"
+"2015-10-28_YB-AFq5",2015-10-28,2015-10-28,"YB","AF","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to glare."
+"2015-10-28_YB-AFq8",2015-10-28,2015-10-28,"YB","AF","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","28%",""
+"2015-10-28_YB-AFq9",2015-10-28,2015-10-28,"YB","AF","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likely low due to glare and blur"
+"2015-10-28_YB-AFq5",2015-10-28,2015-10-28,"YB","AF","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to glare."
+"2015-10-28_YB-AFq8",2015-10-28,2015-10-28,"YB","AF","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","28%",""
+"2015-10-28_YB-AFq9",2015-10-28,2015-10-28,"YB","AF","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likely low due to glare and blur"
+"2015-10-28_YB-AFq5",2015-10-28,2015-10-28,"YB","AF","5","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to glare."
+"2015-10-28_YB-AFq8",2015-10-28,2015-10-28,"YB","AF","8","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","28%",""
+"2015-10-28_YB-AFq9",2015-10-28,2015-10-28,"YB","AF","9","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likely low due to glare and blur"
+"2015-10-28_YB-AFq5",2015-10-28,2015-10-28,"YB","AF","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to glare."
+"2015-10-28_YB-AFq8",2015-10-28,2015-10-28,"YB","AF","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","28%",""
+"2015-10-28_YB-AFq9",2015-10-28,2015-10-28,"YB","AF","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likely low due to glare and blur"
+"2015-10-28_YB-AFq5",2015-10-28,2015-10-28,"YB","AF","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to glare."
+"2015-10-28_YB-AFq8",2015-10-28,2015-10-28,"YB","AF","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","28%",""
+"2015-10-28_YB-AFq9",2015-10-28,2015-10-28,"YB","AF","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likely low due to glare and blur"
+"2015-10-28_YB-AFq5",2015-10-28,2015-10-28,"YB","AF","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to glare."
+"2015-10-28_YB-AFq8",2015-10-28,2015-10-28,"YB","AF","8","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","28%",""
+"2015-10-28_YB-AFq9",2015-10-28,2015-10-28,"YB","AF","9","Pp","Pollicipes_polymerus","Type 11",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likely low due to glare and blur"
+"2015-10-28_YB-AFq5",2015-10-28,2015-10-28,"YB","AF","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to glare."
+"2015-10-28_YB-AFq8",2015-10-28,2015-10-28,"YB","AF","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","28%",""
+"2015-10-28_YB-AFq9",2015-10-28,2015-10-28,"YB","AF","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likely low due to glare and blur"
+"2015-10-28_YB-AFq5",2015-10-28,2015-10-28,"YB","AF","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to glare."
+"2015-10-28_YB-AFq8",2015-10-28,2015-10-28,"YB","AF","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","28%",""
+"2015-10-28_YB-AFq9",2015-10-28,2015-10-28,"YB","AF","9","Sc","Semibalanus_cariosus","Type 5",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likely low due to glare and blur"
+"2015-10-28_YB-AFq5",2015-10-28,2015-10-28,"YB","AF","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","15%","Counts likely low due to glare."
+"2015-10-28_YB-AFq8",2015-10-28,2015-10-28,"YB","AF","8","ScD","Semibalanus_cariosus_(dead)","Type 6",4,0.0875,45.7142857142857,NA,"Celeste Moen","Finished","Full","Cropped","28%",""
+"2015-10-28_YB-AFq9",2015-10-28,2015-10-28,"YB","AF","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","2%","Counts likely low due to glare and blur"
+"2015-10-28_YB-AGq2",2015-10-28,2015-10-28,"YB","AG","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to algae and glare."
+"2015-10-28_YB-AGq7",2015-10-28,2015-10-28,"YB","AG","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to glare"
+"2015-10-28_YB-AGq9",2015-10-28,2015-10-28,"YB","AG","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%","Counts quite low due to blur and glare"
+"2015-10-28_YB-AGq2",2015-10-28,2015-10-28,"YB","AG","2","Ae","Anemones","Type 14",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to algae and glare."
+"2015-10-28_YB-AGq7",2015-10-28,2015-10-28,"YB","AG","7","Ae","Anemones","Type 14",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to glare"
+"2015-10-28_YB-AGq9",2015-10-28,2015-10-28,"YB","AG","9","Ae","Anemones","Type 14",43,0.0875,491.428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","70%","Counts quite low due to blur and glare"
+"2015-10-28_YB-AGq2",2015-10-28,2015-10-28,"YB","AG","2","Bg","Balanus_glandula","Type 1",644,0.0875,7360,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to algae and glare."
+"2015-10-28_YB-AGq7",2015-10-28,2015-10-28,"YB","AG","7","Bg","Balanus_glandula","Type 1",2200,0.0875,25142.8571428571,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to glare"
+"2015-10-28_YB-AGq9",2015-10-28,2015-10-28,"YB","AG","9","Bg","Balanus_glandula","Type 1",320,0.0875,3657.14285714286,NA,"Stephanie Merhoff","Finished","Full","Full","70%","Counts quite low due to blur and glare"
+"2015-10-28_YB-AGq2",2015-10-28,2015-10-28,"YB","AG","2","BgD","Balanus_glandula_(dead)","Type 2",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to algae and glare."
+"2015-10-28_YB-AGq7",2015-10-28,2015-10-28,"YB","AG","7","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to glare"
+"2015-10-28_YB-AGq9",2015-10-28,2015-10-28,"YB","AG","9","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%","Counts quite low due to blur and glare"
+"2015-10-28_YB-AGq2",2015-10-28,2015-10-28,"YB","AG","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to algae and glare."
+"2015-10-28_YB-AGq7",2015-10-28,2015-10-28,"YB","AG","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to glare"
+"2015-10-28_YB-AGq9",2015-10-28,2015-10-28,"YB","AG","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%","Counts quite low due to blur and glare"
+"2015-10-28_YB-AGq2",2015-10-28,2015-10-28,"YB","AG","2","Cth","Chthamalus_dalli","Type 3",916,0.0875,10468.5714285714,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to algae and glare."
+"2015-10-28_YB-AGq7",2015-10-28,2015-10-28,"YB","AG","7","Cth","Chthamalus_dalli","Type 3",85,0.0875,971.428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to glare"
+"2015-10-28_YB-AGq9",2015-10-28,2015-10-28,"YB","AG","9","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%","Counts quite low due to blur and glare"
+"2015-10-28_YB-AGq2",2015-10-28,2015-10-28,"YB","AG","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to algae and glare."
+"2015-10-28_YB-AGq7",2015-10-28,2015-10-28,"YB","AG","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to glare"
+"2015-10-28_YB-AGq9",2015-10-28,2015-10-28,"YB","AG","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%","Counts quite low due to blur and glare"
+"2015-10-28_YB-AGq2",2015-10-28,2015-10-28,"YB","AG","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to algae and glare."
+"2015-10-28_YB-AGq7",2015-10-28,2015-10-28,"YB","AG","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to glare"
+"2015-10-28_YB-AGq9",2015-10-28,2015-10-28,"YB","AG","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%","Counts quite low due to blur and glare"
+"2015-10-28_YB-AGq2",2015-10-28,2015-10-28,"YB","AG","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to algae and glare."
+"2015-10-28_YB-AGq7",2015-10-28,2015-10-28,"YB","AG","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to glare"
+"2015-10-28_YB-AGq9",2015-10-28,2015-10-28,"YB","AG","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%","Counts quite low due to blur and glare"
+"2015-10-28_YB-AGq2",2015-10-28,2015-10-28,"YB","AG","2","Lim","Limpets","Type 12",177,0.0875,2022.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to algae and glare."
+"2015-10-28_YB-AGq7",2015-10-28,2015-10-28,"YB","AG","7","Lim","Limpets","Type 12",24,0.0875,274.285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to glare"
+"2015-10-28_YB-AGq9",2015-10-28,2015-10-28,"YB","AG","9","Lim","Limpets","Type 12",39,0.0875,445.714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","70%","Counts quite low due to blur and glare"
+"2015-10-28_YB-AGq2",2015-10-28,2015-10-28,"YB","AG","2","Ls","Littorina_sitkana","Type 13",228,0.0875,2605.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to algae and glare."
+"2015-10-28_YB-AGq7",2015-10-28,2015-10-28,"YB","AG","7","Ls","Littorina_sitkana","Type 13",584,0.0875,6674.28571428571,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to glare"
+"2015-10-28_YB-AGq9",2015-10-28,2015-10-28,"YB","AG","9","Ls","Littorina_sitkana","Type 13",525,0.0875,6000,NA,"Stephanie Merhoff","Finished","Full","Full","70%","Counts quite low due to blur and glare"
+"2015-10-28_YB-AGq2",2015-10-28,2015-10-28,"YB","AG","2","Mc","Mytilus_californianus","Type 17",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to algae and glare."
+"2015-10-28_YB-AGq7",2015-10-28,2015-10-28,"YB","AG","7","Mc","Mytilus_californianus","Type 17",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to glare"
+"2015-10-28_YB-AGq9",2015-10-28,2015-10-28,"YB","AG","9","Mc","Mytilus_californianus","Type 17",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","70%","Counts quite low due to blur and glare"
+"2015-10-28_YB-AGq2",2015-10-28,2015-10-28,"YB","AG","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to algae and glare."
+"2015-10-28_YB-AGq7",2015-10-28,2015-10-28,"YB","AG","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to glare"
+"2015-10-28_YB-AGq9",2015-10-28,2015-10-28,"YB","AG","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%","Counts quite low due to blur and glare"
+"2015-10-28_YB-AGq2",2015-10-28,2015-10-28,"YB","AG","2","Myt","Mytilus_spp","Type 7",27,0.0875,308.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to algae and glare."
+"2015-10-28_YB-AGq7",2015-10-28,2015-10-28,"YB","AG","7","Myt","Mytilus_spp","Type 7",27,0.0875,308.571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to glare"
+"2015-10-28_YB-AGq9",2015-10-28,2015-10-28,"YB","AG","9","Myt","Mytilus_spp","Type 7",4,0.0875,45.7142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","70%","Counts quite low due to blur and glare"
+"2015-10-28_YB-AGq2",2015-10-28,2015-10-28,"YB","AG","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to algae and glare."
+"2015-10-28_YB-AGq7",2015-10-28,2015-10-28,"YB","AG","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to glare"
+"2015-10-28_YB-AGq9",2015-10-28,2015-10-28,"YB","AG","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%","Counts quite low due to blur and glare"
+"2015-10-28_YB-AGq2",2015-10-28,2015-10-28,"YB","AG","2","Mt","Mytilus_trossulus","Type 15",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to algae and glare."
+"2015-10-28_YB-AGq7",2015-10-28,2015-10-28,"YB","AG","7","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to glare"
+"2015-10-28_YB-AGq9",2015-10-28,2015-10-28,"YB","AG","9","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%","Counts quite low due to blur and glare"
+"2015-10-28_YB-AGq2",2015-10-28,2015-10-28,"YB","AG","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to algae and glare."
+"2015-10-28_YB-AGq7",2015-10-28,2015-10-28,"YB","AG","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to glare"
+"2015-10-28_YB-AGq9",2015-10-28,2015-10-28,"YB","AG","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%","Counts quite low due to blur and glare"
+"2015-10-28_YB-AGq2",2015-10-28,2015-10-28,"YB","AG","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to algae and glare."
+"2015-10-28_YB-AGq7",2015-10-28,2015-10-28,"YB","AG","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to glare"
+"2015-10-28_YB-AGq9",2015-10-28,2015-10-28,"YB","AG","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%","Counts quite low due to blur and glare"
+"2015-10-28_YB-AGq2",2015-10-28,2015-10-28,"YB","AG","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to algae and glare."
+"2015-10-28_YB-AGq7",2015-10-28,2015-10-28,"YB","AG","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to glare"
+"2015-10-28_YB-AGq9",2015-10-28,2015-10-28,"YB","AG","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%","Counts quite low due to blur and glare"
+"2015-10-28_YB-AGq2",2015-10-28,2015-10-28,"YB","AG","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to algae and glare."
+"2015-10-28_YB-AGq7",2015-10-28,2015-10-28,"YB","AG","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to glare"
+"2015-10-28_YB-AGq9",2015-10-28,2015-10-28,"YB","AG","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%","Counts quite low due to blur and glare"
+"2015-10-28_YB-AGq2",2015-10-28,2015-10-28,"YB","AG","2","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to algae and glare."
+"2015-10-28_YB-AGq7",2015-10-28,2015-10-28,"YB","AG","7","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to glare"
+"2015-10-28_YB-AGq9",2015-10-28,2015-10-28,"YB","AG","9","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%","Counts quite low due to blur and glare"
+"2015-10-28_YB-AGq2",2015-10-28,2015-10-28,"YB","AG","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to algae and glare."
+"2015-10-28_YB-AGq7",2015-10-28,2015-10-28,"YB","AG","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to glare"
+"2015-10-28_YB-AGq9",2015-10-28,2015-10-28,"YB","AG","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%","Counts quite low due to blur and glare"
+"2015-10-28_YB-AGq2",2015-10-28,2015-10-28,"YB","AG","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to algae and glare."
+"2015-10-28_YB-AGq7",2015-10-28,2015-10-28,"YB","AG","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to glare"
+"2015-10-28_YB-AGq9",2015-10-28,2015-10-28,"YB","AG","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%","Counts quite low due to blur and glare"
+"2015-10-28_YB-AGq2",2015-10-28,2015-10-28,"YB","AG","2","Pp","Pollicipes_polymerus","Type 11",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to algae and glare."
+"2015-10-28_YB-AGq7",2015-10-28,2015-10-28,"YB","AG","7","Pp","Pollicipes_polymerus","Type 11",25,0.0875,285.714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to glare"
+"2015-10-28_YB-AGq9",2015-10-28,2015-10-28,"YB","AG","9","Pp","Pollicipes_polymerus","Type 11",351,0.0875,4011.42857142857,NA,"Stephanie Merhoff","Finished","Full","Full","70%","Counts quite low due to blur and glare"
+"2015-10-28_YB-AGq2",2015-10-28,2015-10-28,"YB","AG","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to algae and glare."
+"2015-10-28_YB-AGq7",2015-10-28,2015-10-28,"YB","AG","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to glare"
+"2015-10-28_YB-AGq9",2015-10-28,2015-10-28,"YB","AG","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%","Counts quite low due to blur and glare"
+"2015-10-28_YB-AGq2",2015-10-28,2015-10-28,"YB","AG","2","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to algae and glare."
+"2015-10-28_YB-AGq7",2015-10-28,2015-10-28,"YB","AG","7","Sc","Semibalanus_cariosus","Type 5",10,0.0875,114.285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to glare"
+"2015-10-28_YB-AGq9",2015-10-28,2015-10-28,"YB","AG","9","Sc","Semibalanus_cariosus","Type 5",4,0.0875,45.7142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","70%","Counts quite low due to blur and glare"
+"2015-10-28_YB-AGq2",2015-10-28,2015-10-28,"YB","AG","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to algae and glare."
+"2015-10-28_YB-AGq7",2015-10-28,2015-10-28,"YB","AG","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","25%","Counts likely low due to glare"
+"2015-10-28_YB-AGq9",2015-10-28,2015-10-28,"YB","AG","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","70%","Counts quite low due to blur and glare"
+"2015-10-28_YB-Bq1",2015-10-28,2015-10-28,"YB","B","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2015-10-28_YB-Bq5",2015-10-28,2015-10-28,"YB","B","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-Bq6",2015-10-28,2015-10-28,"YB","B","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts may be low due to glare."
+"2015-10-28_YB-Bq1",2015-10-28,2015-10-28,"YB","B","1","Ae","Anemones","Type 14",63,0.0875,720,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2015-10-28_YB-Bq5",2015-10-28,2015-10-28,"YB","B","5","Ae","Anemones","Type 14",110,0.0875,1257.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-Bq6",2015-10-28,2015-10-28,"YB","B","6","Ae","Anemones","Type 14",150,0.0875,1714.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts may be low due to glare."
+"2015-10-28_YB-Bq1",2015-10-28,2015-10-28,"YB","B","1","Bg","Balanus_glandula","Type 1",199,0.0875,2274.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2015-10-28_YB-Bq5",2015-10-28,2015-10-28,"YB","B","5","Bg","Balanus_glandula","Type 1",125,0.0875,1428.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-Bq6",2015-10-28,2015-10-28,"YB","B","6","Bg","Balanus_glandula","Type 1",245,0.0875,2800,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts may be low due to glare."
+"2015-10-28_YB-Bq1",2015-10-28,2015-10-28,"YB","B","1","BgD","Balanus_glandula_(dead)","Type 2",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2015-10-28_YB-Bq5",2015-10-28,2015-10-28,"YB","B","5","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-Bq6",2015-10-28,2015-10-28,"YB","B","6","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts may be low due to glare."
+"2015-10-28_YB-Bq1",2015-10-28,2015-10-28,"YB","B","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2015-10-28_YB-Bq5",2015-10-28,2015-10-28,"YB","B","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-Bq6",2015-10-28,2015-10-28,"YB","B","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts may be low due to glare."
+"2015-10-28_YB-Bq1",2015-10-28,2015-10-28,"YB","B","1","Cth","Chthamalus_dalli","Type 3",23,0.0875,262.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2015-10-28_YB-Bq5",2015-10-28,2015-10-28,"YB","B","5","Cth","Chthamalus_dalli","Type 3",142,0.0875,1622.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-Bq6",2015-10-28,2015-10-28,"YB","B","6","Cth","Chthamalus_dalli","Type 3",63,0.0875,720,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts may be low due to glare."
+"2015-10-28_YB-Bq1",2015-10-28,2015-10-28,"YB","B","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2015-10-28_YB-Bq5",2015-10-28,2015-10-28,"YB","B","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-Bq6",2015-10-28,2015-10-28,"YB","B","6","CthD","Chthamalus_dalli (dead)","Type 4",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts may be low due to glare."
+"2015-10-28_YB-Bq1",2015-10-28,2015-10-28,"YB","B","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2015-10-28_YB-Bq5",2015-10-28,2015-10-28,"YB","B","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-Bq6",2015-10-28,2015-10-28,"YB","B","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts may be low due to glare."
+"2015-10-28_YB-Bq1",2015-10-28,2015-10-28,"YB","B","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2015-10-28_YB-Bq5",2015-10-28,2015-10-28,"YB","B","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-Bq6",2015-10-28,2015-10-28,"YB","B","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts may be low due to glare."
+"2015-10-28_YB-Bq1",2015-10-28,2015-10-28,"YB","B","1","Lim","Limpets","Type 12",103,0.0875,1177.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2015-10-28_YB-Bq5",2015-10-28,2015-10-28,"YB","B","5","Lim","Limpets","Type 12",94,0.0875,1074.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-Bq6",2015-10-28,2015-10-28,"YB","B","6","Lim","Limpets","Type 12",117,0.0875,1337.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts may be low due to glare."
+"2015-10-28_YB-Bq1",2015-10-28,2015-10-28,"YB","B","1","Ls","Littorina_sitkana","Type 13",153,0.0875,1748.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2015-10-28_YB-Bq5",2015-10-28,2015-10-28,"YB","B","5","Ls","Littorina_sitkana","Type 13",178,0.0875,2034.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-Bq6",2015-10-28,2015-10-28,"YB","B","6","Ls","Littorina_sitkana","Type 13",229,0.0875,2617.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts may be low due to glare."
+"2015-10-28_YB-Bq1",2015-10-28,2015-10-28,"YB","B","1","Mc","Mytilus_californianus","Type 17",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2015-10-28_YB-Bq5",2015-10-28,2015-10-28,"YB","B","5","Mc","Mytilus_californianus","Type 17",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-Bq6",2015-10-28,2015-10-28,"YB","B","6","Mc","Mytilus_californianus","Type 17",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts may be low due to glare."
+"2015-10-28_YB-Bq1",2015-10-28,2015-10-28,"YB","B","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2015-10-28_YB-Bq5",2015-10-28,2015-10-28,"YB","B","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-Bq6",2015-10-28,2015-10-28,"YB","B","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts may be low due to glare."
+"2015-10-28_YB-Bq1",2015-10-28,2015-10-28,"YB","B","1","Myt","Mytilus_spp","Type 7",19,0.0875,217.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2015-10-28_YB-Bq5",2015-10-28,2015-10-28,"YB","B","5","Myt","Mytilus_spp","Type 7",26,0.0875,297.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-Bq6",2015-10-28,2015-10-28,"YB","B","6","Myt","Mytilus_spp","Type 7",27,0.0875,308.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts may be low due to glare."
+"2015-10-28_YB-Bq1",2015-10-28,2015-10-28,"YB","B","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2015-10-28_YB-Bq5",2015-10-28,2015-10-28,"YB","B","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-Bq6",2015-10-28,2015-10-28,"YB","B","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts may be low due to glare."
+"2015-10-28_YB-Bq1",2015-10-28,2015-10-28,"YB","B","1","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2015-10-28_YB-Bq5",2015-10-28,2015-10-28,"YB","B","5","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-Bq6",2015-10-28,2015-10-28,"YB","B","6","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts may be low due to glare."
+"2015-10-28_YB-Bq1",2015-10-28,2015-10-28,"YB","B","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2015-10-28_YB-Bq5",2015-10-28,2015-10-28,"YB","B","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-Bq6",2015-10-28,2015-10-28,"YB","B","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts may be low due to glare."
+"2015-10-28_YB-Bq1",2015-10-28,2015-10-28,"YB","B","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2015-10-28_YB-Bq5",2015-10-28,2015-10-28,"YB","B","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-Bq6",2015-10-28,2015-10-28,"YB","B","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts may be low due to glare."
+"2015-10-28_YB-Bq1",2015-10-28,2015-10-28,"YB","B","1","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2015-10-28_YB-Bq5",2015-10-28,2015-10-28,"YB","B","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-Bq6",2015-10-28,2015-10-28,"YB","B","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts may be low due to glare."
+"2015-10-28_YB-Bq1",2015-10-28,2015-10-28,"YB","B","1","Negg","Nucella_eggs","Type 26",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2015-10-28_YB-Bq5",2015-10-28,2015-10-28,"YB","B","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-Bq6",2015-10-28,2015-10-28,"YB","B","6","Negg","Nucella_eggs","Type 26",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts may be low due to glare."
+"2015-10-28_YB-Bq1",2015-10-28,2015-10-28,"YB","B","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2015-10-28_YB-Bq5",2015-10-28,2015-10-28,"YB","B","5","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-Bq6",2015-10-28,2015-10-28,"YB","B","6","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts may be low due to glare."
+"2015-10-28_YB-Bq1",2015-10-28,2015-10-28,"YB","B","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2015-10-28_YB-Bq5",2015-10-28,2015-10-28,"YB","B","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-Bq6",2015-10-28,2015-10-28,"YB","B","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts may be low due to glare."
+"2015-10-28_YB-Bq1",2015-10-28,2015-10-28,"YB","B","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2015-10-28_YB-Bq5",2015-10-28,2015-10-28,"YB","B","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-Bq6",2015-10-28,2015-10-28,"YB","B","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts may be low due to glare."
+"2015-10-28_YB-Bq1",2015-10-28,2015-10-28,"YB","B","1","Pp","Pollicipes_polymerus","Type 11",369,0.0875,4217.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2015-10-28_YB-Bq5",2015-10-28,2015-10-28,"YB","B","5","Pp","Pollicipes_polymerus","Type 11",911,0.0875,10411.4285714286,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-Bq6",2015-10-28,2015-10-28,"YB","B","6","Pp","Pollicipes_polymerus","Type 11",679,0.0875,7760,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts may be low due to glare."
+"2015-10-28_YB-Bq1",2015-10-28,2015-10-28,"YB","B","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2015-10-28_YB-Bq5",2015-10-28,2015-10-28,"YB","B","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-Bq6",2015-10-28,2015-10-28,"YB","B","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts may be low due to glare."
+"2015-10-28_YB-Bq1",2015-10-28,2015-10-28,"YB","B","1","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2015-10-28_YB-Bq5",2015-10-28,2015-10-28,"YB","B","5","Sc","Semibalanus_cariosus","Type 5",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-Bq6",2015-10-28,2015-10-28,"YB","B","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts may be low due to glare."
+"2015-10-28_YB-Bq1",2015-10-28,2015-10-28,"YB","B","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to glare."
+"2015-10-28_YB-Bq5",2015-10-28,2015-10-28,"YB","B","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-Bq6",2015-10-28,2015-10-28,"YB","B","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%","Counts may be low due to glare."
+"2015-10-28_YB-BBq1",2015-10-28,2015-10-28,"YB","BB","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2015-10-28_YB-BBq2",2015-10-28,2015-10-28,"YB","BB","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-10-28_YB-BBq9",2015-10-28,2015-10-28,"YB","BB","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to blur"
+"2015-10-28_YB-BBq1",2015-10-28,2015-10-28,"YB","BB","1","Ae","Anemones","Type 14",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2015-10-28_YB-BBq2",2015-10-28,2015-10-28,"YB","BB","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-10-28_YB-BBq9",2015-10-28,2015-10-28,"YB","BB","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to blur"
+"2015-10-28_YB-BBq1",2015-10-28,2015-10-28,"YB","BB","1","Bg","Balanus_glandula","Type 1",897,0.0875,10251.4285714286,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2015-10-28_YB-BBq2",2015-10-28,2015-10-28,"YB","BB","2","Bg","Balanus_glandula","Type 1",177,0.0875,2022.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-10-28_YB-BBq9",2015-10-28,2015-10-28,"YB","BB","9","Bg","Balanus_glandula","Type 1",1585,0.015625,101440,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to blur"
+"2015-10-28_YB-BBq1",2015-10-28,2015-10-28,"YB","BB","1","BgD","Balanus_glandula_(dead)","Type 2",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2015-10-28_YB-BBq2",2015-10-28,2015-10-28,"YB","BB","2","BgD","Balanus_glandula_(dead)","Type 2",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-10-28_YB-BBq9",2015-10-28,2015-10-28,"YB","BB","9","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to blur"
+"2015-10-28_YB-BBq1",2015-10-28,2015-10-28,"YB","BB","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2015-10-28_YB-BBq2",2015-10-28,2015-10-28,"YB","BB","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-10-28_YB-BBq9",2015-10-28,2015-10-28,"YB","BB","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to blur"
+"2015-10-28_YB-BBq1",2015-10-28,2015-10-28,"YB","BB","1","Cth","Chthamalus_dalli","Type 3",149,0.0875,1702.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2015-10-28_YB-BBq2",2015-10-28,2015-10-28,"YB","BB","2","Cth","Chthamalus_dalli","Type 3",16,0.0875,182.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-10-28_YB-BBq9",2015-10-28,2015-10-28,"YB","BB","9","Cth","Chthamalus_dalli","Type 3",64,0.015625,4096,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to blur"
+"2015-10-28_YB-BBq1",2015-10-28,2015-10-28,"YB","BB","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2015-10-28_YB-BBq2",2015-10-28,2015-10-28,"YB","BB","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-10-28_YB-BBq9",2015-10-28,2015-10-28,"YB","BB","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to blur"
+"2015-10-28_YB-BBq1",2015-10-28,2015-10-28,"YB","BB","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2015-10-28_YB-BBq2",2015-10-28,2015-10-28,"YB","BB","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-10-28_YB-BBq9",2015-10-28,2015-10-28,"YB","BB","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to blur"
+"2015-10-28_YB-BBq1",2015-10-28,2015-10-28,"YB","BB","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2015-10-28_YB-BBq2",2015-10-28,2015-10-28,"YB","BB","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-10-28_YB-BBq9",2015-10-28,2015-10-28,"YB","BB","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to blur"
+"2015-10-28_YB-BBq1",2015-10-28,2015-10-28,"YB","BB","1","Lim","Limpets","Type 12",98,0.0875,1120,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2015-10-28_YB-BBq2",2015-10-28,2015-10-28,"YB","BB","2","Lim","Limpets","Type 12",61,0.0875,697.142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-10-28_YB-BBq9",2015-10-28,2015-10-28,"YB","BB","9","Lim","Limpets","Type 12",103,0.0875,1177.14285714286,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to blur"
+"2015-10-28_YB-BBq1",2015-10-28,2015-10-28,"YB","BB","1","Ls","Littorina_sitkana","Type 13",77,0.0875,880,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2015-10-28_YB-BBq2",2015-10-28,2015-10-28,"YB","BB","2","Ls","Littorina_sitkana","Type 13",124,0.0875,1417.14285714286,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-10-28_YB-BBq9",2015-10-28,2015-10-28,"YB","BB","9","Ls","Littorina_sitkana","Type 13",248,0.0875,2834.28571428571,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to blur"
+"2015-10-28_YB-BBq1",2015-10-28,2015-10-28,"YB","BB","1","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2015-10-28_YB-BBq2",2015-10-28,2015-10-28,"YB","BB","2","Mc","Mytilus_californianus","Type 17",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-10-28_YB-BBq9",2015-10-28,2015-10-28,"YB","BB","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to blur"
+"2015-10-28_YB-BBq1",2015-10-28,2015-10-28,"YB","BB","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2015-10-28_YB-BBq2",2015-10-28,2015-10-28,"YB","BB","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-10-28_YB-BBq9",2015-10-28,2015-10-28,"YB","BB","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to blur"
+"2015-10-28_YB-BBq1",2015-10-28,2015-10-28,"YB","BB","1","Myt","Mytilus_spp","Type 7",83,0.0875,948.571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2015-10-28_YB-BBq2",2015-10-28,2015-10-28,"YB","BB","2","Myt","Mytilus_spp","Type 7",57,0.0875,651.428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-10-28_YB-BBq9",2015-10-28,2015-10-28,"YB","BB","9","Myt","Mytilus_spp","Type 7",8,0.0875,91.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to blur"
+"2015-10-28_YB-BBq1",2015-10-28,2015-10-28,"YB","BB","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2015-10-28_YB-BBq2",2015-10-28,2015-10-28,"YB","BB","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-10-28_YB-BBq9",2015-10-28,2015-10-28,"YB","BB","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to blur"
+"2015-10-28_YB-BBq1",2015-10-28,2015-10-28,"YB","BB","1","Mt","Mytilus_trossulus","Type 15",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2015-10-28_YB-BBq2",2015-10-28,2015-10-28,"YB","BB","2","Mt","Mytilus_trossulus","Type 15",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-10-28_YB-BBq9",2015-10-28,2015-10-28,"YB","BB","9","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to blur"
+"2015-10-28_YB-BBq1",2015-10-28,2015-10-28,"YB","BB","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2015-10-28_YB-BBq2",2015-10-28,2015-10-28,"YB","BB","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-10-28_YB-BBq9",2015-10-28,2015-10-28,"YB","BB","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to blur"
+"2015-10-28_YB-BBq1",2015-10-28,2015-10-28,"YB","BB","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2015-10-28_YB-BBq2",2015-10-28,2015-10-28,"YB","BB","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-10-28_YB-BBq9",2015-10-28,2015-10-28,"YB","BB","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to blur"
+"2015-10-28_YB-BBq1",2015-10-28,2015-10-28,"YB","BB","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2015-10-28_YB-BBq2",2015-10-28,2015-10-28,"YB","BB","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-10-28_YB-BBq9",2015-10-28,2015-10-28,"YB","BB","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to blur"
+"2015-10-28_YB-BBq1",2015-10-28,2015-10-28,"YB","BB","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2015-10-28_YB-BBq2",2015-10-28,2015-10-28,"YB","BB","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-10-28_YB-BBq9",2015-10-28,2015-10-28,"YB","BB","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to blur"
+"2015-10-28_YB-BBq1",2015-10-28,2015-10-28,"YB","BB","1","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2015-10-28_YB-BBq2",2015-10-28,2015-10-28,"YB","BB","2","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-10-28_YB-BBq9",2015-10-28,2015-10-28,"YB","BB","9","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to blur"
+"2015-10-28_YB-BBq1",2015-10-28,2015-10-28,"YB","BB","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2015-10-28_YB-BBq2",2015-10-28,2015-10-28,"YB","BB","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-10-28_YB-BBq9",2015-10-28,2015-10-28,"YB","BB","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to blur"
+"2015-10-28_YB-BBq1",2015-10-28,2015-10-28,"YB","BB","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2015-10-28_YB-BBq2",2015-10-28,2015-10-28,"YB","BB","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-10-28_YB-BBq9",2015-10-28,2015-10-28,"YB","BB","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to blur"
+"2015-10-28_YB-BBq1",2015-10-28,2015-10-28,"YB","BB","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2015-10-28_YB-BBq2",2015-10-28,2015-10-28,"YB","BB","2","Pp","Pollicipes_polymerus","Type 11",18,0.0875,205.714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-10-28_YB-BBq9",2015-10-28,2015-10-28,"YB","BB","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to blur"
+"2015-10-28_YB-BBq1",2015-10-28,2015-10-28,"YB","BB","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2015-10-28_YB-BBq2",2015-10-28,2015-10-28,"YB","BB","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-10-28_YB-BBq9",2015-10-28,2015-10-28,"YB","BB","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to blur"
+"2015-10-28_YB-BBq1",2015-10-28,2015-10-28,"YB","BB","1","Sc","Semibalanus_cariosus","Type 5",4,0.0875,45.7142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2015-10-28_YB-BBq2",2015-10-28,2015-10-28,"YB","BB","2","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-10-28_YB-BBq9",2015-10-28,2015-10-28,"YB","BB","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to blur"
+"2015-10-28_YB-BBq1",2015-10-28,2015-10-28,"YB","BB","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts likely low due to blur"
+"2015-10-28_YB-BBq2",2015-10-28,2015-10-28,"YB","BB","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","15%","Counts likely low due to blur"
+"2015-10-28_YB-BBq9",2015-10-28,2015-10-28,"YB","BB","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","5%","Counts likely low due to blur"
+"2015-10-28_YB-BCq3",2015-10-28,2015-10-28,"YB","BC","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","8%","Counts likely low due to sediment layer and glare"
+"2015-10-28_YB-BCq5",2015-10-28,2015-10-28,"YB","BC","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Countsl likely low due to blur and glare"
+"2015-10-28_YB-BCq9",2015-10-28,2015-10-28,"YB","BC","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Countsl likely low due to blur and glare"
+"2015-10-28_YB-BCq3",2015-10-28,2015-10-28,"YB","BC","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","8%","Counts likely low due to sediment layer and glare"
+"2015-10-28_YB-BCq5",2015-10-28,2015-10-28,"YB","BC","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Countsl likely low due to blur and glare"
+"2015-10-28_YB-BCq9",2015-10-28,2015-10-28,"YB","BC","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Countsl likely low due to blur and glare"
+"2015-10-28_YB-BCq3",2015-10-28,2015-10-28,"YB","BC","3","Bg","Balanus_glandula","Type 1",528,0.015625,33792,"c","Stephanie Merhoff","Finished","Full","Cropped","8%","Counts likely low due to sediment layer and glare"
+"2015-10-28_YB-BCq5",2015-10-28,2015-10-28,"YB","BC","5","Bg","Balanus_glandula","Type 1",368,0.0875,4205.71428571429,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Countsl likely low due to blur and glare"
+"2015-10-28_YB-BCq9",2015-10-28,2015-10-28,"YB","BC","9","Bg","Balanus_glandula","Type 1",983,0.0875,11234.2857142857,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Countsl likely low due to blur and glare"
+"2015-10-28_YB-BCq3",2015-10-28,2015-10-28,"YB","BC","3","BgD","Balanus_glandula_(dead)","Type 2",1,0.015625,64,"c","Stephanie Merhoff","Finished","Full","Cropped","8%","Counts likely low due to sediment layer and glare"
+"2015-10-28_YB-BCq5",2015-10-28,2015-10-28,"YB","BC","5","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Countsl likely low due to blur and glare"
+"2015-10-28_YB-BCq9",2015-10-28,2015-10-28,"YB","BC","9","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Countsl likely low due to blur and glare"
+"2015-10-28_YB-BCq3",2015-10-28,2015-10-28,"YB","BC","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","8%","Counts likely low due to sediment layer and glare"
+"2015-10-28_YB-BCq5",2015-10-28,2015-10-28,"YB","BC","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Countsl likely low due to blur and glare"
+"2015-10-28_YB-BCq9",2015-10-28,2015-10-28,"YB","BC","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Countsl likely low due to blur and glare"
+"2015-10-28_YB-BCq3",2015-10-28,2015-10-28,"YB","BC","3","Cth","Chthamalus_dalli","Type 3",95,0.015625,6080,"c","Stephanie Merhoff","Finished","Full","Cropped","8%","Counts likely low due to sediment layer and glare"
+"2015-10-28_YB-BCq5",2015-10-28,2015-10-28,"YB","BC","5","Cth","Chthamalus_dalli","Type 3",33,0.0875,377.142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Countsl likely low due to blur and glare"
+"2015-10-28_YB-BCq9",2015-10-28,2015-10-28,"YB","BC","9","Cth","Chthamalus_dalli","Type 3",68,0.0875,777.142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Countsl likely low due to blur and glare"
+"2015-10-28_YB-BCq3",2015-10-28,2015-10-28,"YB","BC","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","8%","Counts likely low due to sediment layer and glare"
+"2015-10-28_YB-BCq5",2015-10-28,2015-10-28,"YB","BC","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Countsl likely low due to blur and glare"
+"2015-10-28_YB-BCq9",2015-10-28,2015-10-28,"YB","BC","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Countsl likely low due to blur and glare"
+"2015-10-28_YB-BCq3",2015-10-28,2015-10-28,"YB","BC","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","8%","Counts likely low due to sediment layer and glare"
+"2015-10-28_YB-BCq5",2015-10-28,2015-10-28,"YB","BC","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Countsl likely low due to blur and glare"
+"2015-10-28_YB-BCq9",2015-10-28,2015-10-28,"YB","BC","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Countsl likely low due to blur and glare"
+"2015-10-28_YB-BCq3",2015-10-28,2015-10-28,"YB","BC","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","8%","Counts likely low due to sediment layer and glare"
+"2015-10-28_YB-BCq5",2015-10-28,2015-10-28,"YB","BC","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Countsl likely low due to blur and glare"
+"2015-10-28_YB-BCq9",2015-10-28,2015-10-28,"YB","BC","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Countsl likely low due to blur and glare"
+"2015-10-28_YB-BCq3",2015-10-28,2015-10-28,"YB","BC","3","Lim","Limpets","Type 12",214,0.0875,2445.71428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","8%","Counts likely low due to sediment layer and glare"
+"2015-10-28_YB-BCq5",2015-10-28,2015-10-28,"YB","BC","5","Lim","Limpets","Type 12",129,0.0875,1474.28571428571,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Countsl likely low due to blur and glare"
+"2015-10-28_YB-BCq9",2015-10-28,2015-10-28,"YB","BC","9","Lim","Limpets","Type 12",116,0.0875,1325.71428571429,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Countsl likely low due to blur and glare"
+"2015-10-28_YB-BCq3",2015-10-28,2015-10-28,"YB","BC","3","Ls","Littorina_sitkana","Type 13",474,0.0875,5417.14285714286,NA,"Stephanie Merhoff","Finished","Full","Cropped","8%","Counts likely low due to sediment layer and glare"
+"2015-10-28_YB-BCq5",2015-10-28,2015-10-28,"YB","BC","5","Ls","Littorina_sitkana","Type 13",101,0.0875,1154.28571428571,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Countsl likely low due to blur and glare"
+"2015-10-28_YB-BCq9",2015-10-28,2015-10-28,"YB","BC","9","Ls","Littorina_sitkana","Type 13",223,0.0875,2548.57142857143,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Countsl likely low due to blur and glare"
+"2015-10-28_YB-BCq3",2015-10-28,2015-10-28,"YB","BC","3","Mc","Mytilus_californianus","Type 17",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","8%","Counts likely low due to sediment layer and glare"
+"2015-10-28_YB-BCq5",2015-10-28,2015-10-28,"YB","BC","5","Mc","Mytilus_californianus","Type 17",4,0.0875,45.7142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Countsl likely low due to blur and glare"
+"2015-10-28_YB-BCq9",2015-10-28,2015-10-28,"YB","BC","9","Mc","Mytilus_californianus","Type 17",4,0.0875,45.7142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Countsl likely low due to blur and glare"
+"2015-10-28_YB-BCq3",2015-10-28,2015-10-28,"YB","BC","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","8%","Counts likely low due to sediment layer and glare"
+"2015-10-28_YB-BCq5",2015-10-28,2015-10-28,"YB","BC","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Countsl likely low due to blur and glare"
+"2015-10-28_YB-BCq9",2015-10-28,2015-10-28,"YB","BC","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Countsl likely low due to blur and glare"
+"2015-10-28_YB-BCq3",2015-10-28,2015-10-28,"YB","BC","3","Myt","Mytilus_spp","Type 7",51,0.0875,582.857142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","8%","Counts likely low due to sediment layer and glare"
+"2015-10-28_YB-BCq5",2015-10-28,2015-10-28,"YB","BC","5","Myt","Mytilus_spp","Type 7",9,0.0875,102.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Countsl likely low due to blur and glare"
+"2015-10-28_YB-BCq9",2015-10-28,2015-10-28,"YB","BC","9","Myt","Mytilus_spp","Type 7",118,0.0875,1348.57142857143,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Countsl likely low due to blur and glare"
+"2015-10-28_YB-BCq3",2015-10-28,2015-10-28,"YB","BC","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","8%","Counts likely low due to sediment layer and glare"
+"2015-10-28_YB-BCq5",2015-10-28,2015-10-28,"YB","BC","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Countsl likely low due to blur and glare"
+"2015-10-28_YB-BCq9",2015-10-28,2015-10-28,"YB","BC","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Countsl likely low due to blur and glare"
+"2015-10-28_YB-BCq3",2015-10-28,2015-10-28,"YB","BC","3","Mt","Mytilus_trossulus","Type 15",4,0.0875,45.7142857142857,NA,"Stephanie Merhoff","Finished","Full","Cropped","8%","Counts likely low due to sediment layer and glare"
+"2015-10-28_YB-BCq5",2015-10-28,2015-10-28,"YB","BC","5","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Countsl likely low due to blur and glare"
+"2015-10-28_YB-BCq9",2015-10-28,2015-10-28,"YB","BC","9","Mt","Mytilus_trossulus","Type 15",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Countsl likely low due to blur and glare"
+"2015-10-28_YB-BCq3",2015-10-28,2015-10-28,"YB","BC","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","8%","Counts likely low due to sediment layer and glare"
+"2015-10-28_YB-BCq5",2015-10-28,2015-10-28,"YB","BC","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Countsl likely low due to blur and glare"
+"2015-10-28_YB-BCq9",2015-10-28,2015-10-28,"YB","BC","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Countsl likely low due to blur and glare"
+"2015-10-28_YB-BCq3",2015-10-28,2015-10-28,"YB","BC","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","8%","Counts likely low due to sediment layer and glare"
+"2015-10-28_YB-BCq5",2015-10-28,2015-10-28,"YB","BC","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Countsl likely low due to blur and glare"
+"2015-10-28_YB-BCq9",2015-10-28,2015-10-28,"YB","BC","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Countsl likely low due to blur and glare"
+"2015-10-28_YB-BCq3",2015-10-28,2015-10-28,"YB","BC","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","8%","Counts likely low due to sediment layer and glare"
+"2015-10-28_YB-BCq5",2015-10-28,2015-10-28,"YB","BC","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Countsl likely low due to blur and glare"
+"2015-10-28_YB-BCq9",2015-10-28,2015-10-28,"YB","BC","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Countsl likely low due to blur and glare"
+"2015-10-28_YB-BCq3",2015-10-28,2015-10-28,"YB","BC","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","8%","Counts likely low due to sediment layer and glare"
+"2015-10-28_YB-BCq5",2015-10-28,2015-10-28,"YB","BC","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Countsl likely low due to blur and glare"
+"2015-10-28_YB-BCq9",2015-10-28,2015-10-28,"YB","BC","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Countsl likely low due to blur and glare"
+"2015-10-28_YB-BCq3",2015-10-28,2015-10-28,"YB","BC","3","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","8%","Counts likely low due to sediment layer and glare"
+"2015-10-28_YB-BCq5",2015-10-28,2015-10-28,"YB","BC","5","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Countsl likely low due to blur and glare"
+"2015-10-28_YB-BCq9",2015-10-28,2015-10-28,"YB","BC","9","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Countsl likely low due to blur and glare"
+"2015-10-28_YB-BCq3",2015-10-28,2015-10-28,"YB","BC","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","8%","Counts likely low due to sediment layer and glare"
+"2015-10-28_YB-BCq5",2015-10-28,2015-10-28,"YB","BC","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Countsl likely low due to blur and glare"
+"2015-10-28_YB-BCq9",2015-10-28,2015-10-28,"YB","BC","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Countsl likely low due to blur and glare"
+"2015-10-28_YB-BCq3",2015-10-28,2015-10-28,"YB","BC","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","8%","Counts likely low due to sediment layer and glare"
+"2015-10-28_YB-BCq5",2015-10-28,2015-10-28,"YB","BC","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Countsl likely low due to blur and glare"
+"2015-10-28_YB-BCq9",2015-10-28,2015-10-28,"YB","BC","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Countsl likely low due to blur and glare"
+"2015-10-28_YB-BCq3",2015-10-28,2015-10-28,"YB","BC","3","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","8%","Counts likely low due to sediment layer and glare"
+"2015-10-28_YB-BCq5",2015-10-28,2015-10-28,"YB","BC","5","Pp","Pollicipes_polymerus","Type 11",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Countsl likely low due to blur and glare"
+"2015-10-28_YB-BCq9",2015-10-28,2015-10-28,"YB","BC","9","Pp","Pollicipes_polymerus","Type 11",219,0.0875,2502.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Countsl likely low due to blur and glare"
+"2015-10-28_YB-BCq3",2015-10-28,2015-10-28,"YB","BC","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","8%","Counts likely low due to sediment layer and glare"
+"2015-10-28_YB-BCq5",2015-10-28,2015-10-28,"YB","BC","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Countsl likely low due to blur and glare"
+"2015-10-28_YB-BCq9",2015-10-28,2015-10-28,"YB","BC","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Countsl likely low due to blur and glare"
+"2015-10-28_YB-BCq3",2015-10-28,2015-10-28,"YB","BC","3","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","8%","Counts likely low due to sediment layer and glare"
+"2015-10-28_YB-BCq5",2015-10-28,2015-10-28,"YB","BC","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Countsl likely low due to blur and glare"
+"2015-10-28_YB-BCq9",2015-10-28,2015-10-28,"YB","BC","9","Sc","Semibalanus_cariosus","Type 5",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Countsl likely low due to blur and glare"
+"2015-10-28_YB-BCq3",2015-10-28,2015-10-28,"YB","BC","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","8%","Counts likely low due to sediment layer and glare"
+"2015-10-28_YB-BCq5",2015-10-28,2015-10-28,"YB","BC","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","20%","Countsl likely low due to blur and glare"
+"2015-10-28_YB-BCq9",2015-10-28,2015-10-28,"YB","BC","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Countsl likely low due to blur and glare"
+"2015-10-28_YB-BDq1",2015-10-28,2015-10-28,"YB","BD","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%","Counts may be low due to blur."
+"2015-10-28_YB-BDq5",2015-10-28,2015-10-28,"YB","BD","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-10-28_YB-BDq7",2015-10-28,2015-10-28,"YB","BD","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-10-28_YB-BDq1",2015-10-28,2015-10-28,"YB","BD","1","Ae","Anemones","Type 14",15,0.0875,171.428571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","7%","Counts may be low due to blur."
+"2015-10-28_YB-BDq5",2015-10-28,2015-10-28,"YB","BD","5","Ae","Anemones","Type 14",22,0.0875,251.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-10-28_YB-BDq7",2015-10-28,2015-10-28,"YB","BD","7","Ae","Anemones","Type 14",66,0.0875,754.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-10-28_YB-BDq1",2015-10-28,2015-10-28,"YB","BD","1","Bg","Balanus_glandula","Type 1",667,0.015625,42688,"c","Beatriz Vaca","Finished","Full","Cropped","7%","Counts may be low due to blur."
+"2015-10-28_YB-BDq5",2015-10-28,2015-10-28,"YB","BD","5","Bg","Balanus_glandula","Type 1",1530,0.0875,17485.7142857143,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-10-28_YB-BDq7",2015-10-28,2015-10-28,"YB","BD","7","Bg","Balanus_glandula","Type 1",370,0.0875,4228.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-10-28_YB-BDq1",2015-10-28,2015-10-28,"YB","BD","1","BgD","Balanus_glandula_(dead)","Type 2",1,0.015625,64,"c","Beatriz Vaca","Finished","Full","Cropped","7%","Counts may be low due to blur."
+"2015-10-28_YB-BDq5",2015-10-28,2015-10-28,"YB","BD","5","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-10-28_YB-BDq7",2015-10-28,2015-10-28,"YB","BD","7","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-10-28_YB-BDq1",2015-10-28,2015-10-28,"YB","BD","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%","Counts may be low due to blur."
+"2015-10-28_YB-BDq5",2015-10-28,2015-10-28,"YB","BD","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-10-28_YB-BDq7",2015-10-28,2015-10-28,"YB","BD","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-10-28_YB-BDq1",2015-10-28,2015-10-28,"YB","BD","1","Cth","Chthamalus_dalli","Type 3",21,0.015625,1344,"c","Beatriz Vaca","Finished","Full","Cropped","7%","Counts may be low due to blur."
+"2015-10-28_YB-BDq5",2015-10-28,2015-10-28,"YB","BD","5","Cth","Chthamalus_dalli","Type 3",44,0.0875,502.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-10-28_YB-BDq7",2015-10-28,2015-10-28,"YB","BD","7","Cth","Chthamalus_dalli","Type 3",24,0.0875,274.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-10-28_YB-BDq1",2015-10-28,2015-10-28,"YB","BD","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","7%","Counts may be low due to blur."
+"2015-10-28_YB-BDq5",2015-10-28,2015-10-28,"YB","BD","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-10-28_YB-BDq7",2015-10-28,2015-10-28,"YB","BD","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-10-28_YB-BDq1",2015-10-28,2015-10-28,"YB","BD","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%","Counts may be low due to blur."
+"2015-10-28_YB-BDq5",2015-10-28,2015-10-28,"YB","BD","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-10-28_YB-BDq7",2015-10-28,2015-10-28,"YB","BD","7","Emp","Emplectonema worm","Type 23",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-10-28_YB-BDq1",2015-10-28,2015-10-28,"YB","BD","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%","Counts may be low due to blur."
+"2015-10-28_YB-BDq5",2015-10-28,2015-10-28,"YB","BD","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-10-28_YB-BDq7",2015-10-28,2015-10-28,"YB","BD","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-10-28_YB-BDq1",2015-10-28,2015-10-28,"YB","BD","1","Lim","Limpets","Type 12",267,0.0875,3051.42857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","7%","Counts may be low due to blur."
+"2015-10-28_YB-BDq5",2015-10-28,2015-10-28,"YB","BD","5","Lim","Limpets","Type 12",305,0.0875,3485.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-10-28_YB-BDq7",2015-10-28,2015-10-28,"YB","BD","7","Lim","Limpets","Type 12",238,0.0875,2720,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-10-28_YB-BDq1",2015-10-28,2015-10-28,"YB","BD","1","Ls","Littorina_sitkana","Type 13",115,0.0875,1314.28571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","7%","Counts may be low due to blur."
+"2015-10-28_YB-BDq5",2015-10-28,2015-10-28,"YB","BD","5","Ls","Littorina_sitkana","Type 13",95,0.0875,1085.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-10-28_YB-BDq7",2015-10-28,2015-10-28,"YB","BD","7","Ls","Littorina_sitkana","Type 13",127,0.0875,1451.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-10-28_YB-BDq1",2015-10-28,2015-10-28,"YB","BD","1","Mc","Mytilus_californianus","Type 17",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","7%","Counts may be low due to blur."
+"2015-10-28_YB-BDq5",2015-10-28,2015-10-28,"YB","BD","5","Mc","Mytilus_californianus","Type 17",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-10-28_YB-BDq7",2015-10-28,2015-10-28,"YB","BD","7","Mc","Mytilus_californianus","Type 17",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-10-28_YB-BDq1",2015-10-28,2015-10-28,"YB","BD","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%","Counts may be low due to blur."
+"2015-10-28_YB-BDq5",2015-10-28,2015-10-28,"YB","BD","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-10-28_YB-BDq7",2015-10-28,2015-10-28,"YB","BD","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-10-28_YB-BDq1",2015-10-28,2015-10-28,"YB","BD","1","Myt","Mytilus_spp","Type 7",42,0.0875,480,NA,"Beatriz Vaca","Finished","Full","Cropped","7%","Counts may be low due to blur."
+"2015-10-28_YB-BDq5",2015-10-28,2015-10-28,"YB","BD","5","Myt","Mytilus_spp","Type 7",112,0.0875,1280,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-10-28_YB-BDq7",2015-10-28,2015-10-28,"YB","BD","7","Myt","Mytilus_spp","Type 7",24,0.0875,274.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-10-28_YB-BDq1",2015-10-28,2015-10-28,"YB","BD","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%","Counts may be low due to blur."
+"2015-10-28_YB-BDq5",2015-10-28,2015-10-28,"YB","BD","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-10-28_YB-BDq7",2015-10-28,2015-10-28,"YB","BD","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-10-28_YB-BDq1",2015-10-28,2015-10-28,"YB","BD","1","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%","Counts may be low due to blur."
+"2015-10-28_YB-BDq5",2015-10-28,2015-10-28,"YB","BD","5","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-10-28_YB-BDq7",2015-10-28,2015-10-28,"YB","BD","7","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-10-28_YB-BDq1",2015-10-28,2015-10-28,"YB","BD","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%","Counts may be low due to blur."
+"2015-10-28_YB-BDq5",2015-10-28,2015-10-28,"YB","BD","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-10-28_YB-BDq7",2015-10-28,2015-10-28,"YB","BD","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-10-28_YB-BDq1",2015-10-28,2015-10-28,"YB","BD","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%","Counts may be low due to blur."
+"2015-10-28_YB-BDq5",2015-10-28,2015-10-28,"YB","BD","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-10-28_YB-BDq7",2015-10-28,2015-10-28,"YB","BD","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-10-28_YB-BDq1",2015-10-28,2015-10-28,"YB","BD","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%","Counts may be low due to blur."
+"2015-10-28_YB-BDq5",2015-10-28,2015-10-28,"YB","BD","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-10-28_YB-BDq7",2015-10-28,2015-10-28,"YB","BD","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-10-28_YB-BDq1",2015-10-28,2015-10-28,"YB","BD","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%","Counts may be low due to blur."
+"2015-10-28_YB-BDq5",2015-10-28,2015-10-28,"YB","BD","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-10-28_YB-BDq7",2015-10-28,2015-10-28,"YB","BD","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-10-28_YB-BDq1",2015-10-28,2015-10-28,"YB","BD","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%","Counts may be low due to blur."
+"2015-10-28_YB-BDq5",2015-10-28,2015-10-28,"YB","BD","5","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-10-28_YB-BDq7",2015-10-28,2015-10-28,"YB","BD","7","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-10-28_YB-BDq1",2015-10-28,2015-10-28,"YB","BD","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%","Counts may be low due to blur."
+"2015-10-28_YB-BDq5",2015-10-28,2015-10-28,"YB","BD","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-10-28_YB-BDq7",2015-10-28,2015-10-28,"YB","BD","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-10-28_YB-BDq1",2015-10-28,2015-10-28,"YB","BD","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%","Counts may be low due to blur."
+"2015-10-28_YB-BDq5",2015-10-28,2015-10-28,"YB","BD","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-10-28_YB-BDq7",2015-10-28,2015-10-28,"YB","BD","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-10-28_YB-BDq1",2015-10-28,2015-10-28,"YB","BD","1","Pp","Pollicipes_polymerus","Type 11",747,0.0875,8537.14285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","7%","Counts may be low due to blur."
+"2015-10-28_YB-BDq5",2015-10-28,2015-10-28,"YB","BD","5","Pp","Pollicipes_polymerus","Type 11",2747,0.0875,31394.2857142857,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-10-28_YB-BDq7",2015-10-28,2015-10-28,"YB","BD","7","Pp","Pollicipes_polymerus","Type 11",3169,0.0875,36217.1428571429,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-10-28_YB-BDq1",2015-10-28,2015-10-28,"YB","BD","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%","Counts may be low due to blur."
+"2015-10-28_YB-BDq5",2015-10-28,2015-10-28,"YB","BD","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-10-28_YB-BDq7",2015-10-28,2015-10-28,"YB","BD","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-10-28_YB-BDq1",2015-10-28,2015-10-28,"YB","BD","1","Sc","Semibalanus_cariosus","Type 5",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","7%","Counts may be low due to blur."
+"2015-10-28_YB-BDq5",2015-10-28,2015-10-28,"YB","BD","5","Sc","Semibalanus_cariosus","Type 5",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-10-28_YB-BDq7",2015-10-28,2015-10-28,"YB","BD","7","Sc","Semibalanus_cariosus","Type 5",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-10-28_YB-BDq1",2015-10-28,2015-10-28,"YB","BD","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","7%","Counts may be low due to blur."
+"2015-10-28_YB-BDq5",2015-10-28,2015-10-28,"YB","BD","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-10-28_YB-BDq7",2015-10-28,2015-10-28,"YB","BD","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-10-28_YB-BEq2",2015-10-28,2015-10-28,"YB","BE","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to algae and glare."
+"2015-10-28_YB-BEq3",2015-10-28,2015-10-28,"YB","BE","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-10-28_YB-BEq6",2015-10-28,2015-10-28,"YB","BE","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts may be low due to glare, algae, and blur."
+"2015-10-28_YB-BEq2",2015-10-28,2015-10-28,"YB","BE","2","Ae","Anemones","Type 14",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to algae and glare."
+"2015-10-28_YB-BEq3",2015-10-28,2015-10-28,"YB","BE","3","Ae","Anemones","Type 14",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-10-28_YB-BEq6",2015-10-28,2015-10-28,"YB","BE","6","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts may be low due to glare, algae, and blur."
+"2015-10-28_YB-BEq2",2015-10-28,2015-10-28,"YB","BE","2","Bg","Balanus_glandula","Type 1",67,0.0875,765.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to algae and glare."
+"2015-10-28_YB-BEq3",2015-10-28,2015-10-28,"YB","BE","3","Bg","Balanus_glandula","Type 1",313,0.0875,3577.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-10-28_YB-BEq6",2015-10-28,2015-10-28,"YB","BE","6","Bg","Balanus_glandula","Type 1",552,0.0875,6308.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts may be low due to glare, algae, and blur."
+"2015-10-28_YB-BEq2",2015-10-28,2015-10-28,"YB","BE","2","BgD","Balanus_glandula_(dead)","Type 2",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to algae and glare."
+"2015-10-28_YB-BEq3",2015-10-28,2015-10-28,"YB","BE","3","BgD","Balanus_glandula_(dead)","Type 2",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-10-28_YB-BEq6",2015-10-28,2015-10-28,"YB","BE","6","BgD","Balanus_glandula_(dead)","Type 2",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts may be low due to glare, algae, and blur."
+"2015-10-28_YB-BEq2",2015-10-28,2015-10-28,"YB","BE","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to algae and glare."
+"2015-10-28_YB-BEq3",2015-10-28,2015-10-28,"YB","BE","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-10-28_YB-BEq6",2015-10-28,2015-10-28,"YB","BE","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts may be low due to glare, algae, and blur."
+"2015-10-28_YB-BEq2",2015-10-28,2015-10-28,"YB","BE","2","Cth","Chthamalus_dalli","Type 3",123,0.0875,1405.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to algae and glare."
+"2015-10-28_YB-BEq3",2015-10-28,2015-10-28,"YB","BE","3","Cth","Chthamalus_dalli","Type 3",382,0.0875,4365.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-10-28_YB-BEq6",2015-10-28,2015-10-28,"YB","BE","6","Cth","Chthamalus_dalli","Type 3",122,0.0875,1394.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts may be low due to glare, algae, and blur."
+"2015-10-28_YB-BEq2",2015-10-28,2015-10-28,"YB","BE","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to algae and glare."
+"2015-10-28_YB-BEq3",2015-10-28,2015-10-28,"YB","BE","3","CthD","Chthamalus_dalli (dead)","Type 4",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-10-28_YB-BEq6",2015-10-28,2015-10-28,"YB","BE","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts may be low due to glare, algae, and blur."
+"2015-10-28_YB-BEq2",2015-10-28,2015-10-28,"YB","BE","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to algae and glare."
+"2015-10-28_YB-BEq3",2015-10-28,2015-10-28,"YB","BE","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-10-28_YB-BEq6",2015-10-28,2015-10-28,"YB","BE","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts may be low due to glare, algae, and blur."
+"2015-10-28_YB-BEq2",2015-10-28,2015-10-28,"YB","BE","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to algae and glare."
+"2015-10-28_YB-BEq3",2015-10-28,2015-10-28,"YB","BE","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-10-28_YB-BEq6",2015-10-28,2015-10-28,"YB","BE","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts may be low due to glare, algae, and blur."
+"2015-10-28_YB-BEq2",2015-10-28,2015-10-28,"YB","BE","2","Lim","Limpets","Type 12",208,0.0875,2377.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to algae and glare."
+"2015-10-28_YB-BEq3",2015-10-28,2015-10-28,"YB","BE","3","Lim","Limpets","Type 12",206,0.0875,2354.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-10-28_YB-BEq6",2015-10-28,2015-10-28,"YB","BE","6","Lim","Limpets","Type 12",229,0.0875,2617.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts may be low due to glare, algae, and blur."
+"2015-10-28_YB-BEq2",2015-10-28,2015-10-28,"YB","BE","2","Ls","Littorina_sitkana","Type 13",177,0.0875,2022.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to algae and glare."
+"2015-10-28_YB-BEq3",2015-10-28,2015-10-28,"YB","BE","3","Ls","Littorina_sitkana","Type 13",59,0.0875,674.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-10-28_YB-BEq6",2015-10-28,2015-10-28,"YB","BE","6","Ls","Littorina_sitkana","Type 13",72,0.0875,822.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts may be low due to glare, algae, and blur."
+"2015-10-28_YB-BEq2",2015-10-28,2015-10-28,"YB","BE","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to algae and glare."
+"2015-10-28_YB-BEq3",2015-10-28,2015-10-28,"YB","BE","3","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-10-28_YB-BEq6",2015-10-28,2015-10-28,"YB","BE","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts may be low due to glare, algae, and blur."
+"2015-10-28_YB-BEq2",2015-10-28,2015-10-28,"YB","BE","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to algae and glare."
+"2015-10-28_YB-BEq3",2015-10-28,2015-10-28,"YB","BE","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-10-28_YB-BEq6",2015-10-28,2015-10-28,"YB","BE","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts may be low due to glare, algae, and blur."
+"2015-10-28_YB-BEq2",2015-10-28,2015-10-28,"YB","BE","2","Myt","Mytilus_spp","Type 7",36,0.0875,411.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to algae and glare."
+"2015-10-28_YB-BEq3",2015-10-28,2015-10-28,"YB","BE","3","Myt","Mytilus_spp","Type 7",22,0.0875,251.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-10-28_YB-BEq6",2015-10-28,2015-10-28,"YB","BE","6","Myt","Mytilus_spp","Type 7",18,0.0875,205.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts may be low due to glare, algae, and blur."
+"2015-10-28_YB-BEq2",2015-10-28,2015-10-28,"YB","BE","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to algae and glare."
+"2015-10-28_YB-BEq3",2015-10-28,2015-10-28,"YB","BE","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-10-28_YB-BEq6",2015-10-28,2015-10-28,"YB","BE","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts may be low due to glare, algae, and blur."
+"2015-10-28_YB-BEq2",2015-10-28,2015-10-28,"YB","BE","2","Mt","Mytilus_trossulus","Type 15",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to algae and glare."
+"2015-10-28_YB-BEq3",2015-10-28,2015-10-28,"YB","BE","3","Mt","Mytilus_trossulus","Type 15",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-10-28_YB-BEq6",2015-10-28,2015-10-28,"YB","BE","6","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts may be low due to glare, algae, and blur."
+"2015-10-28_YB-BEq2",2015-10-28,2015-10-28,"YB","BE","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to algae and glare."
+"2015-10-28_YB-BEq3",2015-10-28,2015-10-28,"YB","BE","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-10-28_YB-BEq6",2015-10-28,2015-10-28,"YB","BE","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts may be low due to glare, algae, and blur."
+"2015-10-28_YB-BEq2",2015-10-28,2015-10-28,"YB","BE","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to algae and glare."
+"2015-10-28_YB-BEq3",2015-10-28,2015-10-28,"YB","BE","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-10-28_YB-BEq6",2015-10-28,2015-10-28,"YB","BE","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts may be low due to glare, algae, and blur."
+"2015-10-28_YB-BEq2",2015-10-28,2015-10-28,"YB","BE","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to algae and glare."
+"2015-10-28_YB-BEq3",2015-10-28,2015-10-28,"YB","BE","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-10-28_YB-BEq6",2015-10-28,2015-10-28,"YB","BE","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts may be low due to glare, algae, and blur."
+"2015-10-28_YB-BEq2",2015-10-28,2015-10-28,"YB","BE","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to algae and glare."
+"2015-10-28_YB-BEq3",2015-10-28,2015-10-28,"YB","BE","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-10-28_YB-BEq6",2015-10-28,2015-10-28,"YB","BE","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts may be low due to glare, algae, and blur."
+"2015-10-28_YB-BEq2",2015-10-28,2015-10-28,"YB","BE","2","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to algae and glare."
+"2015-10-28_YB-BEq3",2015-10-28,2015-10-28,"YB","BE","3","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-10-28_YB-BEq6",2015-10-28,2015-10-28,"YB","BE","6","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts may be low due to glare, algae, and blur."
+"2015-10-28_YB-BEq2",2015-10-28,2015-10-28,"YB","BE","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to algae and glare."
+"2015-10-28_YB-BEq3",2015-10-28,2015-10-28,"YB","BE","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-10-28_YB-BEq6",2015-10-28,2015-10-28,"YB","BE","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts may be low due to glare, algae, and blur."
+"2015-10-28_YB-BEq2",2015-10-28,2015-10-28,"YB","BE","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to algae and glare."
+"2015-10-28_YB-BEq3",2015-10-28,2015-10-28,"YB","BE","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-10-28_YB-BEq6",2015-10-28,2015-10-28,"YB","BE","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts may be low due to glare, algae, and blur."
+"2015-10-28_YB-BEq2",2015-10-28,2015-10-28,"YB","BE","2","Pp","Pollicipes_polymerus","Type 11",519,0.0875,5931.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to algae and glare."
+"2015-10-28_YB-BEq3",2015-10-28,2015-10-28,"YB","BE","3","Pp","Pollicipes_polymerus","Type 11",33,0.0875,377.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-10-28_YB-BEq6",2015-10-28,2015-10-28,"YB","BE","6","Pp","Pollicipes_polymerus","Type 11",585,0.0875,6685.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts may be low due to glare, algae, and blur."
+"2015-10-28_YB-BEq2",2015-10-28,2015-10-28,"YB","BE","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to algae and glare."
+"2015-10-28_YB-BEq3",2015-10-28,2015-10-28,"YB","BE","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-10-28_YB-BEq6",2015-10-28,2015-10-28,"YB","BE","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts may be low due to glare, algae, and blur."
+"2015-10-28_YB-BEq2",2015-10-28,2015-10-28,"YB","BE","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to algae and glare."
+"2015-10-28_YB-BEq3",2015-10-28,2015-10-28,"YB","BE","3","Sc","Semibalanus_cariosus","Type 5",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-10-28_YB-BEq6",2015-10-28,2015-10-28,"YB","BE","6","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts may be low due to glare, algae, and blur."
+"2015-10-28_YB-BEq2",2015-10-28,2015-10-28,"YB","BE","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","40%","Counts may be low due to algae and glare."
+"2015-10-28_YB-BEq3",2015-10-28,2015-10-28,"YB","BE","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-10-28_YB-BEq6",2015-10-28,2015-10-28,"YB","BE","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts may be low due to glare, algae, and blur."
+"2015-10-28_YB-BFq1",2015-10-28,2015-10-28,"YB","BF","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-10-28_YB-BFq4",2015-10-28,2015-10-28,"YB","BF","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts low due to glare, algae, and blur."
+"2015-10-28_YB-BFq9",2015-10-28,2015-10-28,"YB","BF","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts low due to glare, algae, and blur."
+"2015-10-28_YB-BFq1",2015-10-28,2015-10-28,"YB","BF","1","Ae","Anemones","Type 14",9,0.0875,102.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-10-28_YB-BFq4",2015-10-28,2015-10-28,"YB","BF","4","Ae","Anemones","Type 14",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts low due to glare, algae, and blur."
+"2015-10-28_YB-BFq9",2015-10-28,2015-10-28,"YB","BF","9","Ae","Anemones","Type 14",23,0.0875,262.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts low due to glare, algae, and blur."
+"2015-10-28_YB-BFq1",2015-10-28,2015-10-28,"YB","BF","1","Bg","Balanus_glandula","Type 1",422,0.0875,4822.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-10-28_YB-BFq4",2015-10-28,2015-10-28,"YB","BF","4","Bg","Balanus_glandula","Type 1",864,0.0875,9874.28571428572,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts low due to glare, algae, and blur."
+"2015-10-28_YB-BFq9",2015-10-28,2015-10-28,"YB","BF","9","Bg","Balanus_glandula","Type 1",75,0.0875,857.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts low due to glare, algae, and blur."
+"2015-10-28_YB-BFq1",2015-10-28,2015-10-28,"YB","BF","1","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-10-28_YB-BFq4",2015-10-28,2015-10-28,"YB","BF","4","BgD","Balanus_glandula_(dead)","Type 2",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts low due to glare, algae, and blur."
+"2015-10-28_YB-BFq9",2015-10-28,2015-10-28,"YB","BF","9","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts low due to glare, algae, and blur."
+"2015-10-28_YB-BFq1",2015-10-28,2015-10-28,"YB","BF","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-10-28_YB-BFq4",2015-10-28,2015-10-28,"YB","BF","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts low due to glare, algae, and blur."
+"2015-10-28_YB-BFq9",2015-10-28,2015-10-28,"YB","BF","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts low due to glare, algae, and blur."
+"2015-10-28_YB-BFq1",2015-10-28,2015-10-28,"YB","BF","1","Cth","Chthamalus_dalli","Type 3",215,0.0875,2457.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-10-28_YB-BFq4",2015-10-28,2015-10-28,"YB","BF","4","Cth","Chthamalus_dalli","Type 3",570,0.0875,6514.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts low due to glare, algae, and blur."
+"2015-10-28_YB-BFq9",2015-10-28,2015-10-28,"YB","BF","9","Cth","Chthamalus_dalli","Type 3",16,0.0875,182.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts low due to glare, algae, and blur."
+"2015-10-28_YB-BFq1",2015-10-28,2015-10-28,"YB","BF","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-10-28_YB-BFq4",2015-10-28,2015-10-28,"YB","BF","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts low due to glare, algae, and blur."
+"2015-10-28_YB-BFq9",2015-10-28,2015-10-28,"YB","BF","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts low due to glare, algae, and blur."
+"2015-10-28_YB-BFq1",2015-10-28,2015-10-28,"YB","BF","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-10-28_YB-BFq4",2015-10-28,2015-10-28,"YB","BF","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts low due to glare, algae, and blur."
+"2015-10-28_YB-BFq9",2015-10-28,2015-10-28,"YB","BF","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts low due to glare, algae, and blur."
+"2015-10-28_YB-BFq1",2015-10-28,2015-10-28,"YB","BF","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-10-28_YB-BFq4",2015-10-28,2015-10-28,"YB","BF","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts low due to glare, algae, and blur."
+"2015-10-28_YB-BFq9",2015-10-28,2015-10-28,"YB","BF","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts low due to glare, algae, and blur."
+"2015-10-28_YB-BFq1",2015-10-28,2015-10-28,"YB","BF","1","Lim","Limpets","Type 12",208,0.0875,2377.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-10-28_YB-BFq4",2015-10-28,2015-10-28,"YB","BF","4","Lim","Limpets","Type 12",178,0.0875,2034.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts low due to glare, algae, and blur."
+"2015-10-28_YB-BFq9",2015-10-28,2015-10-28,"YB","BF","9","Lim","Limpets","Type 12",116,0.0875,1325.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts low due to glare, algae, and blur."
+"2015-10-28_YB-BFq1",2015-10-28,2015-10-28,"YB","BF","1","Ls","Littorina_sitkana","Type 13",187,0.0875,2137.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-10-28_YB-BFq4",2015-10-28,2015-10-28,"YB","BF","4","Ls","Littorina_sitkana","Type 13",160,0.0875,1828.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts low due to glare, algae, and blur."
+"2015-10-28_YB-BFq9",2015-10-28,2015-10-28,"YB","BF","9","Ls","Littorina_sitkana","Type 13",159,0.0875,1817.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts low due to glare, algae, and blur."
+"2015-10-28_YB-BFq1",2015-10-28,2015-10-28,"YB","BF","1","Mc","Mytilus_californianus","Type 17",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-10-28_YB-BFq4",2015-10-28,2015-10-28,"YB","BF","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts low due to glare, algae, and blur."
+"2015-10-28_YB-BFq9",2015-10-28,2015-10-28,"YB","BF","9","Mc","Mytilus_californianus","Type 17",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts low due to glare, algae, and blur."
+"2015-10-28_YB-BFq1",2015-10-28,2015-10-28,"YB","BF","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-10-28_YB-BFq4",2015-10-28,2015-10-28,"YB","BF","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts low due to glare, algae, and blur."
+"2015-10-28_YB-BFq9",2015-10-28,2015-10-28,"YB","BF","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts low due to glare, algae, and blur."
+"2015-10-28_YB-BFq1",2015-10-28,2015-10-28,"YB","BF","1","Myt","Mytilus_spp","Type 7",87,0.0875,994.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-10-28_YB-BFq4",2015-10-28,2015-10-28,"YB","BF","4","Myt","Mytilus_spp","Type 7",37,0.0875,422.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts low due to glare, algae, and blur."
+"2015-10-28_YB-BFq9",2015-10-28,2015-10-28,"YB","BF","9","Myt","Mytilus_spp","Type 7",55,0.0875,628.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts low due to glare, algae, and blur."
+"2015-10-28_YB-BFq1",2015-10-28,2015-10-28,"YB","BF","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-10-28_YB-BFq4",2015-10-28,2015-10-28,"YB","BF","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts low due to glare, algae, and blur."
+"2015-10-28_YB-BFq9",2015-10-28,2015-10-28,"YB","BF","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts low due to glare, algae, and blur."
+"2015-10-28_YB-BFq1",2015-10-28,2015-10-28,"YB","BF","1","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-10-28_YB-BFq4",2015-10-28,2015-10-28,"YB","BF","4","Mt","Mytilus_trossulus","Type 15",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts low due to glare, algae, and blur."
+"2015-10-28_YB-BFq9",2015-10-28,2015-10-28,"YB","BF","9","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts low due to glare, algae, and blur."
+"2015-10-28_YB-BFq1",2015-10-28,2015-10-28,"YB","BF","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-10-28_YB-BFq4",2015-10-28,2015-10-28,"YB","BF","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts low due to glare, algae, and blur."
+"2015-10-28_YB-BFq9",2015-10-28,2015-10-28,"YB","BF","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts low due to glare, algae, and blur."
+"2015-10-28_YB-BFq1",2015-10-28,2015-10-28,"YB","BF","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-10-28_YB-BFq4",2015-10-28,2015-10-28,"YB","BF","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts low due to glare, algae, and blur."
+"2015-10-28_YB-BFq9",2015-10-28,2015-10-28,"YB","BF","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts low due to glare, algae, and blur."
+"2015-10-28_YB-BFq1",2015-10-28,2015-10-28,"YB","BF","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-10-28_YB-BFq4",2015-10-28,2015-10-28,"YB","BF","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts low due to glare, algae, and blur."
+"2015-10-28_YB-BFq9",2015-10-28,2015-10-28,"YB","BF","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts low due to glare, algae, and blur."
+"2015-10-28_YB-BFq1",2015-10-28,2015-10-28,"YB","BF","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-10-28_YB-BFq4",2015-10-28,2015-10-28,"YB","BF","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts low due to glare, algae, and blur."
+"2015-10-28_YB-BFq9",2015-10-28,2015-10-28,"YB","BF","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts low due to glare, algae, and blur."
+"2015-10-28_YB-BFq1",2015-10-28,2015-10-28,"YB","BF","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-10-28_YB-BFq4",2015-10-28,2015-10-28,"YB","BF","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts low due to glare, algae, and blur."
+"2015-10-28_YB-BFq9",2015-10-28,2015-10-28,"YB","BF","9","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts low due to glare, algae, and blur."
+"2015-10-28_YB-BFq1",2015-10-28,2015-10-28,"YB","BF","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-10-28_YB-BFq4",2015-10-28,2015-10-28,"YB","BF","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts low due to glare, algae, and blur."
+"2015-10-28_YB-BFq9",2015-10-28,2015-10-28,"YB","BF","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts low due to glare, algae, and blur."
+"2015-10-28_YB-BFq1",2015-10-28,2015-10-28,"YB","BF","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-10-28_YB-BFq4",2015-10-28,2015-10-28,"YB","BF","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts low due to glare, algae, and blur."
+"2015-10-28_YB-BFq9",2015-10-28,2015-10-28,"YB","BF","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts low due to glare, algae, and blur."
+"2015-10-28_YB-BFq1",2015-10-28,2015-10-28,"YB","BF","1","Pp","Pollicipes_polymerus","Type 11",494,0.0875,5645.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-10-28_YB-BFq4",2015-10-28,2015-10-28,"YB","BF","4","Pp","Pollicipes_polymerus","Type 11",417,0.0875,4765.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts low due to glare, algae, and blur."
+"2015-10-28_YB-BFq9",2015-10-28,2015-10-28,"YB","BF","9","Pp","Pollicipes_polymerus","Type 11",407,0.0875,4651.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts low due to glare, algae, and blur."
+"2015-10-28_YB-BFq1",2015-10-28,2015-10-28,"YB","BF","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-10-28_YB-BFq4",2015-10-28,2015-10-28,"YB","BF","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts low due to glare, algae, and blur."
+"2015-10-28_YB-BFq9",2015-10-28,2015-10-28,"YB","BF","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts low due to glare, algae, and blur."
+"2015-10-28_YB-BFq1",2015-10-28,2015-10-28,"YB","BF","1","Sc","Semibalanus_cariosus","Type 5",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-10-28_YB-BFq4",2015-10-28,2015-10-28,"YB","BF","4","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts low due to glare, algae, and blur."
+"2015-10-28_YB-BFq9",2015-10-28,2015-10-28,"YB","BF","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts low due to glare, algae, and blur."
+"2015-10-28_YB-BFq1",2015-10-28,2015-10-28,"YB","BF","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to glare, algae, and blur."
+"2015-10-28_YB-BFq4",2015-10-28,2015-10-28,"YB","BF","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts low due to glare, algae, and blur."
+"2015-10-28_YB-BFq9",2015-10-28,2015-10-28,"YB","BF","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","75%","Counts low due to glare, algae, and blur."
+"2015-10-28_YB-Cq2",2015-10-28,2015-10-28,"YB","C","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-10-28_YB-Cq4",2015-10-28,2015-10-28,"YB","C","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-Cq6",2015-10-28,2015-10-28,"YB","C","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-10-28_YB-Cq2",2015-10-28,2015-10-28,"YB","C","2","Ae","Anemones","Type 14",97,0.0875,1108.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-10-28_YB-Cq4",2015-10-28,2015-10-28,"YB","C","4","Ae","Anemones","Type 14",102,0.0875,1165.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-Cq6",2015-10-28,2015-10-28,"YB","C","6","Ae","Anemones","Type 14",127,0.0875,1451.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-10-28_YB-Cq2",2015-10-28,2015-10-28,"YB","C","2","Bg","Balanus_glandula","Type 1",32,0.0875,365.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-10-28_YB-Cq4",2015-10-28,2015-10-28,"YB","C","4","Bg","Balanus_glandula","Type 1",36,0.0875,411.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-Cq6",2015-10-28,2015-10-28,"YB","C","6","Bg","Balanus_glandula","Type 1",46,0.0875,525.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-10-28_YB-Cq2",2015-10-28,2015-10-28,"YB","C","2","BgD","Balanus_glandula_(dead)","Type 2",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-10-28_YB-Cq4",2015-10-28,2015-10-28,"YB","C","4","BgD","Balanus_glandula_(dead)","Type 2",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-Cq6",2015-10-28,2015-10-28,"YB","C","6","BgD","Balanus_glandula_(dead)","Type 2",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-10-28_YB-Cq2",2015-10-28,2015-10-28,"YB","C","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-10-28_YB-Cq4",2015-10-28,2015-10-28,"YB","C","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-Cq6",2015-10-28,2015-10-28,"YB","C","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-10-28_YB-Cq2",2015-10-28,2015-10-28,"YB","C","2","Cth","Chthamalus_dalli","Type 3",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-10-28_YB-Cq4",2015-10-28,2015-10-28,"YB","C","4","Cth","Chthamalus_dalli","Type 3",41,0.0875,468.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-Cq6",2015-10-28,2015-10-28,"YB","C","6","Cth","Chthamalus_dalli","Type 3",104,0.0875,1188.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-10-28_YB-Cq2",2015-10-28,2015-10-28,"YB","C","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-10-28_YB-Cq4",2015-10-28,2015-10-28,"YB","C","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-Cq6",2015-10-28,2015-10-28,"YB","C","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-10-28_YB-Cq2",2015-10-28,2015-10-28,"YB","C","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-10-28_YB-Cq4",2015-10-28,2015-10-28,"YB","C","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-Cq6",2015-10-28,2015-10-28,"YB","C","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-10-28_YB-Cq2",2015-10-28,2015-10-28,"YB","C","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-10-28_YB-Cq4",2015-10-28,2015-10-28,"YB","C","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-Cq6",2015-10-28,2015-10-28,"YB","C","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-10-28_YB-Cq2",2015-10-28,2015-10-28,"YB","C","2","Lim","Limpets","Type 12",76,0.0875,868.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-10-28_YB-Cq4",2015-10-28,2015-10-28,"YB","C","4","Lim","Limpets","Type 12",71,0.0875,811.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-Cq6",2015-10-28,2015-10-28,"YB","C","6","Lim","Limpets","Type 12",53,0.0875,605.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-10-28_YB-Cq2",2015-10-28,2015-10-28,"YB","C","2","Ls","Littorina_sitkana","Type 13",67,0.0875,765.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-10-28_YB-Cq4",2015-10-28,2015-10-28,"YB","C","4","Ls","Littorina_sitkana","Type 13",92,0.0875,1051.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-Cq6",2015-10-28,2015-10-28,"YB","C","6","Ls","Littorina_sitkana","Type 13",45,0.0875,514.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-10-28_YB-Cq2",2015-10-28,2015-10-28,"YB","C","2","Mc","Mytilus_californianus","Type 17",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-10-28_YB-Cq4",2015-10-28,2015-10-28,"YB","C","4","Mc","Mytilus_californianus","Type 17",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-Cq6",2015-10-28,2015-10-28,"YB","C","6","Mc","Mytilus_californianus","Type 17",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-10-28_YB-Cq2",2015-10-28,2015-10-28,"YB","C","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-10-28_YB-Cq4",2015-10-28,2015-10-28,"YB","C","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-Cq6",2015-10-28,2015-10-28,"YB","C","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-10-28_YB-Cq2",2015-10-28,2015-10-28,"YB","C","2","Myt","Mytilus_spp","Type 7",34,0.0875,388.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-10-28_YB-Cq4",2015-10-28,2015-10-28,"YB","C","4","Myt","Mytilus_spp","Type 7",13,0.0875,148.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-Cq6",2015-10-28,2015-10-28,"YB","C","6","Myt","Mytilus_spp","Type 7",26,0.0875,297.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-10-28_YB-Cq2",2015-10-28,2015-10-28,"YB","C","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-10-28_YB-Cq4",2015-10-28,2015-10-28,"YB","C","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-Cq6",2015-10-28,2015-10-28,"YB","C","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-10-28_YB-Cq2",2015-10-28,2015-10-28,"YB","C","2","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-10-28_YB-Cq4",2015-10-28,2015-10-28,"YB","C","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-Cq6",2015-10-28,2015-10-28,"YB","C","6","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-10-28_YB-Cq2",2015-10-28,2015-10-28,"YB","C","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-10-28_YB-Cq4",2015-10-28,2015-10-28,"YB","C","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-Cq6",2015-10-28,2015-10-28,"YB","C","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-10-28_YB-Cq2",2015-10-28,2015-10-28,"YB","C","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-10-28_YB-Cq4",2015-10-28,2015-10-28,"YB","C","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-Cq6",2015-10-28,2015-10-28,"YB","C","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-10-28_YB-Cq2",2015-10-28,2015-10-28,"YB","C","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-10-28_YB-Cq4",2015-10-28,2015-10-28,"YB","C","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-Cq6",2015-10-28,2015-10-28,"YB","C","6","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-10-28_YB-Cq2",2015-10-28,2015-10-28,"YB","C","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-10-28_YB-Cq4",2015-10-28,2015-10-28,"YB","C","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-Cq6",2015-10-28,2015-10-28,"YB","C","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-10-28_YB-Cq2",2015-10-28,2015-10-28,"YB","C","2","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-10-28_YB-Cq4",2015-10-28,2015-10-28,"YB","C","4","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-Cq6",2015-10-28,2015-10-28,"YB","C","6","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-10-28_YB-Cq2",2015-10-28,2015-10-28,"YB","C","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-10-28_YB-Cq4",2015-10-28,2015-10-28,"YB","C","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-Cq6",2015-10-28,2015-10-28,"YB","C","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-10-28_YB-Cq2",2015-10-28,2015-10-28,"YB","C","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-10-28_YB-Cq4",2015-10-28,2015-10-28,"YB","C","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-Cq6",2015-10-28,2015-10-28,"YB","C","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-10-28_YB-Cq2",2015-10-28,2015-10-28,"YB","C","2","Pp","Pollicipes_polymerus","Type 11",1085,0.0875,12400,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-10-28_YB-Cq4",2015-10-28,2015-10-28,"YB","C","4","Pp","Pollicipes_polymerus","Type 11",890,0.0875,10171.4285714286,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-Cq6",2015-10-28,2015-10-28,"YB","C","6","Pp","Pollicipes_polymerus","Type 11",921,0.0875,10525.7142857143,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-10-28_YB-Cq2",2015-10-28,2015-10-28,"YB","C","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-10-28_YB-Cq4",2015-10-28,2015-10-28,"YB","C","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-Cq6",2015-10-28,2015-10-28,"YB","C","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-10-28_YB-Cq2",2015-10-28,2015-10-28,"YB","C","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-10-28_YB-Cq4",2015-10-28,2015-10-28,"YB","C","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-Cq6",2015-10-28,2015-10-28,"YB","C","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-10-28_YB-Cq2",2015-10-28,2015-10-28,"YB","C","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","0%",""
+"2015-10-28_YB-Cq4",2015-10-28,2015-10-28,"YB","C","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-Cq6",2015-10-28,2015-10-28,"YB","C","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%",""
+"2015-10-28_YB-Dq3",2015-10-28,2015-10-28,"YB","D","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts likely low due to thick algae."
+"2015-10-28_YB-Dq4",2015-10-28,2015-10-28,"YB","D","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts may be low due to blue hue"
+"2015-10-28_YB-Dq5",2015-10-28,2015-10-28,"YB","D","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-10-28_YB-Dq3",2015-10-28,2015-10-28,"YB","D","3","Ae","Anemones","Type 14",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts likely low due to thick algae."
+"2015-10-28_YB-Dq4",2015-10-28,2015-10-28,"YB","D","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts may be low due to blue hue"
+"2015-10-28_YB-Dq5",2015-10-28,2015-10-28,"YB","D","5","Ae","Anemones","Type 14",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-10-28_YB-Dq3",2015-10-28,2015-10-28,"YB","D","3","Bg","Balanus_glandula","Type 1",76,0.0875,868.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts likely low due to thick algae."
+"2015-10-28_YB-Dq4",2015-10-28,2015-10-28,"YB","D","4","Bg","Balanus_glandula","Type 1",1578,0.0875,18034.2857142857,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts may be low due to blue hue"
+"2015-10-28_YB-Dq5",2015-10-28,2015-10-28,"YB","D","5","Bg","Balanus_glandula","Type 1",77,0.0875,880,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-10-28_YB-Dq3",2015-10-28,2015-10-28,"YB","D","3","BgD","Balanus_glandula_(dead)","Type 2",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts likely low due to thick algae."
+"2015-10-28_YB-Dq4",2015-10-28,2015-10-28,"YB","D","4","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts may be low due to blue hue"
+"2015-10-28_YB-Dq5",2015-10-28,2015-10-28,"YB","D","5","BgD","Balanus_glandula_(dead)","Type 2",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-10-28_YB-Dq3",2015-10-28,2015-10-28,"YB","D","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts likely low due to thick algae."
+"2015-10-28_YB-Dq4",2015-10-28,2015-10-28,"YB","D","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts may be low due to blue hue"
+"2015-10-28_YB-Dq5",2015-10-28,2015-10-28,"YB","D","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-10-28_YB-Dq3",2015-10-28,2015-10-28,"YB","D","3","Cth","Chthamalus_dalli","Type 3",217,0.0875,2480,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts likely low due to thick algae."
+"2015-10-28_YB-Dq4",2015-10-28,2015-10-28,"YB","D","4","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts may be low due to blue hue"
+"2015-10-28_YB-Dq5",2015-10-28,2015-10-28,"YB","D","5","Cth","Chthamalus_dalli","Type 3",441,0.0875,5040,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-10-28_YB-Dq3",2015-10-28,2015-10-28,"YB","D","3","CthD","Chthamalus_dalli (dead)","Type 4",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts likely low due to thick algae."
+"2015-10-28_YB-Dq4",2015-10-28,2015-10-28,"YB","D","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts may be low due to blue hue"
+"2015-10-28_YB-Dq5",2015-10-28,2015-10-28,"YB","D","5","CthD","Chthamalus_dalli (dead)","Type 4",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-10-28_YB-Dq3",2015-10-28,2015-10-28,"YB","D","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts likely low due to thick algae."
+"2015-10-28_YB-Dq4",2015-10-28,2015-10-28,"YB","D","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts may be low due to blue hue"
+"2015-10-28_YB-Dq5",2015-10-28,2015-10-28,"YB","D","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-10-28_YB-Dq3",2015-10-28,2015-10-28,"YB","D","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts likely low due to thick algae."
+"2015-10-28_YB-Dq4",2015-10-28,2015-10-28,"YB","D","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts may be low due to blue hue"
+"2015-10-28_YB-Dq5",2015-10-28,2015-10-28,"YB","D","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-10-28_YB-Dq3",2015-10-28,2015-10-28,"YB","D","3","Lim","Limpets","Type 12",34,0.0875,388.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts likely low due to thick algae."
+"2015-10-28_YB-Dq4",2015-10-28,2015-10-28,"YB","D","4","Lim","Limpets","Type 12",287,0.0875,3280,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts may be low due to blue hue"
+"2015-10-28_YB-Dq5",2015-10-28,2015-10-28,"YB","D","5","Lim","Limpets","Type 12",152,0.0875,1737.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-10-28_YB-Dq3",2015-10-28,2015-10-28,"YB","D","3","Ls","Littorina_sitkana","Type 13",39,0.0875,445.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts likely low due to thick algae."
+"2015-10-28_YB-Dq4",2015-10-28,2015-10-28,"YB","D","4","Ls","Littorina_sitkana","Type 13",244,0.0875,2788.57142857143,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts may be low due to blue hue"
+"2015-10-28_YB-Dq5",2015-10-28,2015-10-28,"YB","D","5","Ls","Littorina_sitkana","Type 13",48,0.0875,548.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-10-28_YB-Dq3",2015-10-28,2015-10-28,"YB","D","3","Mc","Mytilus_californianus","Type 17",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts likely low due to thick algae."
+"2015-10-28_YB-Dq4",2015-10-28,2015-10-28,"YB","D","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts may be low due to blue hue"
+"2015-10-28_YB-Dq5",2015-10-28,2015-10-28,"YB","D","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-10-28_YB-Dq3",2015-10-28,2015-10-28,"YB","D","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts likely low due to thick algae."
+"2015-10-28_YB-Dq4",2015-10-28,2015-10-28,"YB","D","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts may be low due to blue hue"
+"2015-10-28_YB-Dq5",2015-10-28,2015-10-28,"YB","D","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-10-28_YB-Dq3",2015-10-28,2015-10-28,"YB","D","3","Myt","Mytilus_spp","Type 7",37,0.0875,422.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts likely low due to thick algae."
+"2015-10-28_YB-Dq4",2015-10-28,2015-10-28,"YB","D","4","Myt","Mytilus_spp","Type 7",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts may be low due to blue hue"
+"2015-10-28_YB-Dq5",2015-10-28,2015-10-28,"YB","D","5","Myt","Mytilus_spp","Type 7",34,0.0875,388.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-10-28_YB-Dq3",2015-10-28,2015-10-28,"YB","D","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts likely low due to thick algae."
+"2015-10-28_YB-Dq4",2015-10-28,2015-10-28,"YB","D","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts may be low due to blue hue"
+"2015-10-28_YB-Dq5",2015-10-28,2015-10-28,"YB","D","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-10-28_YB-Dq3",2015-10-28,2015-10-28,"YB","D","3","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts likely low due to thick algae."
+"2015-10-28_YB-Dq4",2015-10-28,2015-10-28,"YB","D","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts may be low due to blue hue"
+"2015-10-28_YB-Dq5",2015-10-28,2015-10-28,"YB","D","5","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-10-28_YB-Dq3",2015-10-28,2015-10-28,"YB","D","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts likely low due to thick algae."
+"2015-10-28_YB-Dq4",2015-10-28,2015-10-28,"YB","D","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts may be low due to blue hue"
+"2015-10-28_YB-Dq5",2015-10-28,2015-10-28,"YB","D","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-10-28_YB-Dq3",2015-10-28,2015-10-28,"YB","D","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts likely low due to thick algae."
+"2015-10-28_YB-Dq4",2015-10-28,2015-10-28,"YB","D","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts may be low due to blue hue"
+"2015-10-28_YB-Dq5",2015-10-28,2015-10-28,"YB","D","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-10-28_YB-Dq3",2015-10-28,2015-10-28,"YB","D","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts likely low due to thick algae."
+"2015-10-28_YB-Dq4",2015-10-28,2015-10-28,"YB","D","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts may be low due to blue hue"
+"2015-10-28_YB-Dq5",2015-10-28,2015-10-28,"YB","D","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-10-28_YB-Dq3",2015-10-28,2015-10-28,"YB","D","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts likely low due to thick algae."
+"2015-10-28_YB-Dq4",2015-10-28,2015-10-28,"YB","D","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts may be low due to blue hue"
+"2015-10-28_YB-Dq5",2015-10-28,2015-10-28,"YB","D","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-10-28_YB-Dq3",2015-10-28,2015-10-28,"YB","D","3","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts likely low due to thick algae."
+"2015-10-28_YB-Dq4",2015-10-28,2015-10-28,"YB","D","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts may be low due to blue hue"
+"2015-10-28_YB-Dq5",2015-10-28,2015-10-28,"YB","D","5","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-10-28_YB-Dq3",2015-10-28,2015-10-28,"YB","D","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts likely low due to thick algae."
+"2015-10-28_YB-Dq4",2015-10-28,2015-10-28,"YB","D","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts may be low due to blue hue"
+"2015-10-28_YB-Dq5",2015-10-28,2015-10-28,"YB","D","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-10-28_YB-Dq3",2015-10-28,2015-10-28,"YB","D","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts likely low due to thick algae."
+"2015-10-28_YB-Dq4",2015-10-28,2015-10-28,"YB","D","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts may be low due to blue hue"
+"2015-10-28_YB-Dq5",2015-10-28,2015-10-28,"YB","D","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-10-28_YB-Dq3",2015-10-28,2015-10-28,"YB","D","3","Pp","Pollicipes_polymerus","Type 11",14,0.0875,160,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts likely low due to thick algae."
+"2015-10-28_YB-Dq4",2015-10-28,2015-10-28,"YB","D","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts may be low due to blue hue"
+"2015-10-28_YB-Dq5",2015-10-28,2015-10-28,"YB","D","5","Pp","Pollicipes_polymerus","Type 11",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-10-28_YB-Dq3",2015-10-28,2015-10-28,"YB","D","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts likely low due to thick algae."
+"2015-10-28_YB-Dq4",2015-10-28,2015-10-28,"YB","D","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts may be low due to blue hue"
+"2015-10-28_YB-Dq5",2015-10-28,2015-10-28,"YB","D","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-10-28_YB-Dq3",2015-10-28,2015-10-28,"YB","D","3","Sc","Semibalanus_cariosus","Type 5",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts likely low due to thick algae."
+"2015-10-28_YB-Dq4",2015-10-28,2015-10-28,"YB","D","4","Sc","Semibalanus_cariosus","Type 5",192,0.0875,2194.28571428571,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts may be low due to blue hue"
+"2015-10-28_YB-Dq5",2015-10-28,2015-10-28,"YB","D","5","Sc","Semibalanus_cariosus","Type 5",18,0.0875,205.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-10-28_YB-Dq3",2015-10-28,2015-10-28,"YB","D","3","ScD","Semibalanus_cariosus_(dead)","Type 6",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts likely low due to thick algae."
+"2015-10-28_YB-Dq4",2015-10-28,2015-10-28,"YB","D","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","10%","Counts may be low due to blue hue"
+"2015-10-28_YB-Dq5",2015-10-28,2015-10-28,"YB","D","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%",""
+"2015-10-28_YB-Eq3",2015-10-28,2015-10-28,"YB","E","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur and glare"
+"2015-10-28_YB-Eq4",2015-10-28,2015-10-28,"YB","E","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","12%","Counts likely low due to blur"
+"2015-10-28_YB-Eq8",2015-10-28,2015-10-28,"YB","E","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","6%","Counts likely low due to blur"
+"2015-10-28_YB-Eq3",2015-10-28,2015-10-28,"YB","E","3","Ae","Anemones","Type 14",80,0.0875,914.285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur and glare"
+"2015-10-28_YB-Eq4",2015-10-28,2015-10-28,"YB","E","4","Ae","Anemones","Type 14",125,0.0875,1428.57142857143,NA,"Stephanie Merhoff","Finished","Full","Full","12%","Counts likely low due to blur"
+"2015-10-28_YB-Eq8",2015-10-28,2015-10-28,"YB","E","8","Ae","Anemones","Type 14",86,0.0875,982.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","6%","Counts likely low due to blur"
+"2015-10-28_YB-Eq3",2015-10-28,2015-10-28,"YB","E","3","Bg","Balanus_glandula","Type 1",179,0.0875,2045.71428571429,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur and glare"
+"2015-10-28_YB-Eq4",2015-10-28,2015-10-28,"YB","E","4","Bg","Balanus_glandula","Type 1",355,0.0875,4057.14285714286,NA,"Stephanie Merhoff","Finished","Full","Full","12%","Counts likely low due to blur"
+"2015-10-28_YB-Eq8",2015-10-28,2015-10-28,"YB","E","8","Bg","Balanus_glandula","Type 1",106,0.0875,1211.42857142857,NA,"Stephanie Merhoff","Finished","Full","Full","6%","Counts likely low due to blur"
+"2015-10-28_YB-Eq3",2015-10-28,2015-10-28,"YB","E","3","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur and glare"
+"2015-10-28_YB-Eq4",2015-10-28,2015-10-28,"YB","E","4","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","12%","Counts likely low due to blur"
+"2015-10-28_YB-Eq8",2015-10-28,2015-10-28,"YB","E","8","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","6%","Counts likely low due to blur"
+"2015-10-28_YB-Eq3",2015-10-28,2015-10-28,"YB","E","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur and glare"
+"2015-10-28_YB-Eq4",2015-10-28,2015-10-28,"YB","E","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","12%","Counts likely low due to blur"
+"2015-10-28_YB-Eq8",2015-10-28,2015-10-28,"YB","E","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","6%","Counts likely low due to blur"
+"2015-10-28_YB-Eq3",2015-10-28,2015-10-28,"YB","E","3","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur and glare"
+"2015-10-28_YB-Eq4",2015-10-28,2015-10-28,"YB","E","4","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","12%","Counts likely low due to blur"
+"2015-10-28_YB-Eq8",2015-10-28,2015-10-28,"YB","E","8","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","6%","Counts likely low due to blur"
+"2015-10-28_YB-Eq3",2015-10-28,2015-10-28,"YB","E","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur and glare"
+"2015-10-28_YB-Eq4",2015-10-28,2015-10-28,"YB","E","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","12%","Counts likely low due to blur"
+"2015-10-28_YB-Eq8",2015-10-28,2015-10-28,"YB","E","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","6%","Counts likely low due to blur"
+"2015-10-28_YB-Eq3",2015-10-28,2015-10-28,"YB","E","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur and glare"
+"2015-10-28_YB-Eq4",2015-10-28,2015-10-28,"YB","E","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","12%","Counts likely low due to blur"
+"2015-10-28_YB-Eq8",2015-10-28,2015-10-28,"YB","E","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","6%","Counts likely low due to blur"
+"2015-10-28_YB-Eq3",2015-10-28,2015-10-28,"YB","E","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur and glare"
+"2015-10-28_YB-Eq4",2015-10-28,2015-10-28,"YB","E","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","12%","Counts likely low due to blur"
+"2015-10-28_YB-Eq8",2015-10-28,2015-10-28,"YB","E","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","6%","Counts likely low due to blur"
+"2015-10-28_YB-Eq3",2015-10-28,2015-10-28,"YB","E","3","Lim","Limpets","Type 12",48,0.0875,548.571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur and glare"
+"2015-10-28_YB-Eq4",2015-10-28,2015-10-28,"YB","E","4","Lim","Limpets","Type 12",52,0.0875,594.285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","12%","Counts likely low due to blur"
+"2015-10-28_YB-Eq8",2015-10-28,2015-10-28,"YB","E","8","Lim","Limpets","Type 12",34,0.0875,388.571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","6%","Counts likely low due to blur"
+"2015-10-28_YB-Eq3",2015-10-28,2015-10-28,"YB","E","3","Ls","Littorina_sitkana","Type 13",369,0.0875,4217.14285714286,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur and glare"
+"2015-10-28_YB-Eq4",2015-10-28,2015-10-28,"YB","E","4","Ls","Littorina_sitkana","Type 13",484,0.0875,5531.42857142857,NA,"Stephanie Merhoff","Finished","Full","Full","12%","Counts likely low due to blur"
+"2015-10-28_YB-Eq8",2015-10-28,2015-10-28,"YB","E","8","Ls","Littorina_sitkana","Type 13",222,0.0875,2537.14285714286,NA,"Stephanie Merhoff","Finished","Full","Full","6%","Counts likely low due to blur"
+"2015-10-28_YB-Eq3",2015-10-28,2015-10-28,"YB","E","3","Mc","Mytilus_californianus","Type 17",7,0.0875,80,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur and glare"
+"2015-10-28_YB-Eq4",2015-10-28,2015-10-28,"YB","E","4","Mc","Mytilus_californianus","Type 17",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","12%","Counts likely low due to blur"
+"2015-10-28_YB-Eq8",2015-10-28,2015-10-28,"YB","E","8","Mc","Mytilus_californianus","Type 17",12,0.0875,137.142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","6%","Counts likely low due to blur"
+"2015-10-28_YB-Eq3",2015-10-28,2015-10-28,"YB","E","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur and glare"
+"2015-10-28_YB-Eq4",2015-10-28,2015-10-28,"YB","E","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","12%","Counts likely low due to blur"
+"2015-10-28_YB-Eq8",2015-10-28,2015-10-28,"YB","E","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","6%","Counts likely low due to blur"
+"2015-10-28_YB-Eq3",2015-10-28,2015-10-28,"YB","E","3","Myt","Mytilus_spp","Type 7",13,0.0875,148.571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur and glare"
+"2015-10-28_YB-Eq4",2015-10-28,2015-10-28,"YB","E","4","Myt","Mytilus_spp","Type 7",22,0.0875,251.428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","12%","Counts likely low due to blur"
+"2015-10-28_YB-Eq8",2015-10-28,2015-10-28,"YB","E","8","Myt","Mytilus_spp","Type 7",11,0.0875,125.714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","6%","Counts likely low due to blur"
+"2015-10-28_YB-Eq3",2015-10-28,2015-10-28,"YB","E","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur and glare"
+"2015-10-28_YB-Eq4",2015-10-28,2015-10-28,"YB","E","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","12%","Counts likely low due to blur"
+"2015-10-28_YB-Eq8",2015-10-28,2015-10-28,"YB","E","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","6%","Counts likely low due to blur"
+"2015-10-28_YB-Eq3",2015-10-28,2015-10-28,"YB","E","3","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur and glare"
+"2015-10-28_YB-Eq4",2015-10-28,2015-10-28,"YB","E","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","12%","Counts likely low due to blur"
+"2015-10-28_YB-Eq8",2015-10-28,2015-10-28,"YB","E","8","Mt","Mytilus_trossulus","Type 15",5,0.0875,57.1428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","6%","Counts likely low due to blur"
+"2015-10-28_YB-Eq3",2015-10-28,2015-10-28,"YB","E","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur and glare"
+"2015-10-28_YB-Eq4",2015-10-28,2015-10-28,"YB","E","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","12%","Counts likely low due to blur"
+"2015-10-28_YB-Eq8",2015-10-28,2015-10-28,"YB","E","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","6%","Counts likely low due to blur"
+"2015-10-28_YB-Eq3",2015-10-28,2015-10-28,"YB","E","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur and glare"
+"2015-10-28_YB-Eq4",2015-10-28,2015-10-28,"YB","E","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","12%","Counts likely low due to blur"
+"2015-10-28_YB-Eq8",2015-10-28,2015-10-28,"YB","E","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","6%","Counts likely low due to blur"
+"2015-10-28_YB-Eq3",2015-10-28,2015-10-28,"YB","E","3","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur and glare"
+"2015-10-28_YB-Eq4",2015-10-28,2015-10-28,"YB","E","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","12%","Counts likely low due to blur"
+"2015-10-28_YB-Eq8",2015-10-28,2015-10-28,"YB","E","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","6%","Counts likely low due to blur"
+"2015-10-28_YB-Eq3",2015-10-28,2015-10-28,"YB","E","3","Negg","Nucella_eggs","Type 26",4,0.0875,45.7142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur and glare"
+"2015-10-28_YB-Eq4",2015-10-28,2015-10-28,"YB","E","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","12%","Counts likely low due to blur"
+"2015-10-28_YB-Eq8",2015-10-28,2015-10-28,"YB","E","8","Negg","Nucella_eggs","Type 26",13,0.0875,148.571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","6%","Counts likely low due to blur"
+"2015-10-28_YB-Eq3",2015-10-28,2015-10-28,"YB","E","3","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur and glare"
+"2015-10-28_YB-Eq4",2015-10-28,2015-10-28,"YB","E","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","12%","Counts likely low due to blur"
+"2015-10-28_YB-Eq8",2015-10-28,2015-10-28,"YB","E","8","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","6%","Counts likely low due to blur"
+"2015-10-28_YB-Eq3",2015-10-28,2015-10-28,"YB","E","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur and glare"
+"2015-10-28_YB-Eq4",2015-10-28,2015-10-28,"YB","E","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","12%","Counts likely low due to blur"
+"2015-10-28_YB-Eq8",2015-10-28,2015-10-28,"YB","E","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","6%","Counts likely low due to blur"
+"2015-10-28_YB-Eq3",2015-10-28,2015-10-28,"YB","E","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur and glare"
+"2015-10-28_YB-Eq4",2015-10-28,2015-10-28,"YB","E","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","12%","Counts likely low due to blur"
+"2015-10-28_YB-Eq8",2015-10-28,2015-10-28,"YB","E","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","6%","Counts likely low due to blur"
+"2015-10-28_YB-Eq3",2015-10-28,2015-10-28,"YB","E","3","Pp","Pollicipes_polymerus","Type 11",644,0.0875,7360,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur and glare"
+"2015-10-28_YB-Eq4",2015-10-28,2015-10-28,"YB","E","4","Pp","Pollicipes_polymerus","Type 11",1332,0.0875,15222.8571428571,NA,"Stephanie Merhoff","Finished","Full","Full","12%","Counts likely low due to blur"
+"2015-10-28_YB-Eq8",2015-10-28,2015-10-28,"YB","E","8","Pp","Pollicipes_polymerus","Type 11",1388,0.0875,15862.8571428571,NA,"Stephanie Merhoff","Finished","Full","Full","6%","Counts likely low due to blur"
+"2015-10-28_YB-Eq3",2015-10-28,2015-10-28,"YB","E","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur and glare"
+"2015-10-28_YB-Eq4",2015-10-28,2015-10-28,"YB","E","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","12%","Counts likely low due to blur"
+"2015-10-28_YB-Eq8",2015-10-28,2015-10-28,"YB","E","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","6%","Counts likely low due to blur"
+"2015-10-28_YB-Eq3",2015-10-28,2015-10-28,"YB","E","3","Sc","Semibalanus_cariosus","Type 5",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur and glare"
+"2015-10-28_YB-Eq4",2015-10-28,2015-10-28,"YB","E","4","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","12%","Counts likely low due to blur"
+"2015-10-28_YB-Eq8",2015-10-28,2015-10-28,"YB","E","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","6%","Counts likely low due to blur"
+"2015-10-28_YB-Eq3",2015-10-28,2015-10-28,"YB","E","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","45%","Counts likely low due to blur and glare"
+"2015-10-28_YB-Eq4",2015-10-28,2015-10-28,"YB","E","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","12%","Counts likely low due to blur"
+"2015-10-28_YB-Eq8",2015-10-28,2015-10-28,"YB","E","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","6%","Counts likely low due to blur"
+"2015-10-28_YB-Fq4",2015-10-28,2015-10-28,"YB","F","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2015-10-28_YB-Fq5",2015-10-28,2015-10-28,"YB","F","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-10-28_YB-Fq6",2015-10-28,2015-10-28,"YB","F","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-Fq4",2015-10-28,2015-10-28,"YB","F","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2015-10-28_YB-Fq5",2015-10-28,2015-10-28,"YB","F","5","Ae","Anemones","Type 14",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-10-28_YB-Fq6",2015-10-28,2015-10-28,"YB","F","6","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-Fq4",2015-10-28,2015-10-28,"YB","F","4","Bg","Balanus_glandula","Type 1",472,0.015625,30208,"c","Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2015-10-28_YB-Fq5",2015-10-28,2015-10-28,"YB","F","5","Bg","Balanus_glandula","Type 1",223,0.0875,2548.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-10-28_YB-Fq6",2015-10-28,2015-10-28,"YB","F","6","Bg","Balanus_glandula","Type 1",714,0.0875,8160,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-Fq4",2015-10-28,2015-10-28,"YB","F","4","BgD","Balanus_glandula_(dead)","Type 2",6,0.015625,384,"c","Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2015-10-28_YB-Fq5",2015-10-28,2015-10-28,"YB","F","5","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-10-28_YB-Fq6",2015-10-28,2015-10-28,"YB","F","6","BgD","Balanus_glandula_(dead)","Type 2",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-Fq4",2015-10-28,2015-10-28,"YB","F","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2015-10-28_YB-Fq5",2015-10-28,2015-10-28,"YB","F","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-10-28_YB-Fq6",2015-10-28,2015-10-28,"YB","F","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-Fq4",2015-10-28,2015-10-28,"YB","F","4","Cth","Chthamalus_dalli","Type 3",1063,0.015625,68032,"c","Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2015-10-28_YB-Fq5",2015-10-28,2015-10-28,"YB","F","5","Cth","Chthamalus_dalli","Type 3",1479,0.0875,16902.8571428571,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-10-28_YB-Fq6",2015-10-28,2015-10-28,"YB","F","6","Cth","Chthamalus_dalli","Type 3",1744,0.0875,19931.4285714286,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-Fq4",2015-10-28,2015-10-28,"YB","F","4","CthD","Chthamalus_dalli (dead)","Type 4",1,0.015625,64,"c","Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2015-10-28_YB-Fq5",2015-10-28,2015-10-28,"YB","F","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-10-28_YB-Fq6",2015-10-28,2015-10-28,"YB","F","6","CthD","Chthamalus_dalli (dead)","Type 4",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-Fq4",2015-10-28,2015-10-28,"YB","F","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2015-10-28_YB-Fq5",2015-10-28,2015-10-28,"YB","F","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-10-28_YB-Fq6",2015-10-28,2015-10-28,"YB","F","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-Fq4",2015-10-28,2015-10-28,"YB","F","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2015-10-28_YB-Fq5",2015-10-28,2015-10-28,"YB","F","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-10-28_YB-Fq6",2015-10-28,2015-10-28,"YB","F","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-Fq4",2015-10-28,2015-10-28,"YB","F","4","Lim","Limpets","Type 12",159,0.0875,1817.14285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2015-10-28_YB-Fq5",2015-10-28,2015-10-28,"YB","F","5","Lim","Limpets","Type 12",74,0.0875,845.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-10-28_YB-Fq6",2015-10-28,2015-10-28,"YB","F","6","Lim","Limpets","Type 12",51,0.0875,582.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-Fq4",2015-10-28,2015-10-28,"YB","F","4","Ls","Littorina_sitkana","Type 13",366,0.0875,4182.85714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2015-10-28_YB-Fq5",2015-10-28,2015-10-28,"YB","F","5","Ls","Littorina_sitkana","Type 13",93,0.0875,1062.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-10-28_YB-Fq6",2015-10-28,2015-10-28,"YB","F","6","Ls","Littorina_sitkana","Type 13",36,0.0875,411.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-Fq4",2015-10-28,2015-10-28,"YB","F","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2015-10-28_YB-Fq5",2015-10-28,2015-10-28,"YB","F","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-10-28_YB-Fq6",2015-10-28,2015-10-28,"YB","F","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-Fq4",2015-10-28,2015-10-28,"YB","F","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2015-10-28_YB-Fq5",2015-10-28,2015-10-28,"YB","F","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-10-28_YB-Fq6",2015-10-28,2015-10-28,"YB","F","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-Fq4",2015-10-28,2015-10-28,"YB","F","4","Myt","Mytilus_spp","Type 7",12,0.0875,137.142857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2015-10-28_YB-Fq5",2015-10-28,2015-10-28,"YB","F","5","Myt","Mytilus_spp","Type 7",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-10-28_YB-Fq6",2015-10-28,2015-10-28,"YB","F","6","Myt","Mytilus_spp","Type 7",14,0.0875,160,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-Fq4",2015-10-28,2015-10-28,"YB","F","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2015-10-28_YB-Fq5",2015-10-28,2015-10-28,"YB","F","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-10-28_YB-Fq6",2015-10-28,2015-10-28,"YB","F","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-Fq4",2015-10-28,2015-10-28,"YB","F","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2015-10-28_YB-Fq5",2015-10-28,2015-10-28,"YB","F","5","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-10-28_YB-Fq6",2015-10-28,2015-10-28,"YB","F","6","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-Fq4",2015-10-28,2015-10-28,"YB","F","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2015-10-28_YB-Fq5",2015-10-28,2015-10-28,"YB","F","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-10-28_YB-Fq6",2015-10-28,2015-10-28,"YB","F","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-Fq4",2015-10-28,2015-10-28,"YB","F","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2015-10-28_YB-Fq5",2015-10-28,2015-10-28,"YB","F","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-10-28_YB-Fq6",2015-10-28,2015-10-28,"YB","F","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-Fq4",2015-10-28,2015-10-28,"YB","F","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2015-10-28_YB-Fq5",2015-10-28,2015-10-28,"YB","F","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-10-28_YB-Fq6",2015-10-28,2015-10-28,"YB","F","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-Fq4",2015-10-28,2015-10-28,"YB","F","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2015-10-28_YB-Fq5",2015-10-28,2015-10-28,"YB","F","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-10-28_YB-Fq6",2015-10-28,2015-10-28,"YB","F","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-Fq4",2015-10-28,2015-10-28,"YB","F","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2015-10-28_YB-Fq5",2015-10-28,2015-10-28,"YB","F","5","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-10-28_YB-Fq6",2015-10-28,2015-10-28,"YB","F","6","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-Fq4",2015-10-28,2015-10-28,"YB","F","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2015-10-28_YB-Fq5",2015-10-28,2015-10-28,"YB","F","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-10-28_YB-Fq6",2015-10-28,2015-10-28,"YB","F","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-Fq4",2015-10-28,2015-10-28,"YB","F","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2015-10-28_YB-Fq5",2015-10-28,2015-10-28,"YB","F","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-10-28_YB-Fq6",2015-10-28,2015-10-28,"YB","F","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-Fq4",2015-10-28,2015-10-28,"YB","F","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2015-10-28_YB-Fq5",2015-10-28,2015-10-28,"YB","F","5","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-10-28_YB-Fq6",2015-10-28,2015-10-28,"YB","F","6","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-Fq4",2015-10-28,2015-10-28,"YB","F","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2015-10-28_YB-Fq5",2015-10-28,2015-10-28,"YB","F","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-10-28_YB-Fq6",2015-10-28,2015-10-28,"YB","F","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-Fq4",2015-10-28,2015-10-28,"YB","F","4","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2015-10-28_YB-Fq5",2015-10-28,2015-10-28,"YB","F","5","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-10-28_YB-Fq6",2015-10-28,2015-10-28,"YB","F","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-Fq4",2015-10-28,2015-10-28,"YB","F","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","2%",""
+"2015-10-28_YB-Fq5",2015-10-28,2015-10-28,"YB","F","5","ScD","Semibalanus_cariosus_(dead)","Type 6",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-10-28_YB-Fq6",2015-10-28,2015-10-28,"YB","F","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-10-28_YB-Gq3",2015-10-28,2015-10-28,"YB","G","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and algae."
+"2015-10-28_YB-Gq5",2015-10-28,2015-10-28,"YB","G","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-10-28_YB-Gq8",2015-10-28,2015-10-28,"YB","G","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts low due to blur and glare."
+"2015-10-28_YB-Gq3",2015-10-28,2015-10-28,"YB","G","3","Ae","Anemones","Type 14",192,0.0875,2194.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and algae."
+"2015-10-28_YB-Gq5",2015-10-28,2015-10-28,"YB","G","5","Ae","Anemones","Type 14",142,0.0875,1622.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-10-28_YB-Gq8",2015-10-28,2015-10-28,"YB","G","8","Ae","Anemones","Type 14",134,0.0875,1531.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts low due to blur and glare."
+"2015-10-28_YB-Gq3",2015-10-28,2015-10-28,"YB","G","3","Bg","Balanus_glandula","Type 1",26,0.0875,297.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and algae."
+"2015-10-28_YB-Gq5",2015-10-28,2015-10-28,"YB","G","5","Bg","Balanus_glandula","Type 1",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-10-28_YB-Gq8",2015-10-28,2015-10-28,"YB","G","8","Bg","Balanus_glandula","Type 1",30,0.0875,342.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts low due to blur and glare."
+"2015-10-28_YB-Gq3",2015-10-28,2015-10-28,"YB","G","3","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and algae."
+"2015-10-28_YB-Gq5",2015-10-28,2015-10-28,"YB","G","5","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-10-28_YB-Gq8",2015-10-28,2015-10-28,"YB","G","8","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts low due to blur and glare."
+"2015-10-28_YB-Gq3",2015-10-28,2015-10-28,"YB","G","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and algae."
+"2015-10-28_YB-Gq5",2015-10-28,2015-10-28,"YB","G","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-10-28_YB-Gq8",2015-10-28,2015-10-28,"YB","G","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts low due to blur and glare."
+"2015-10-28_YB-Gq3",2015-10-28,2015-10-28,"YB","G","3","Cth","Chthamalus_dalli","Type 3",12,0.0875,137.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and algae."
+"2015-10-28_YB-Gq5",2015-10-28,2015-10-28,"YB","G","5","Cth","Chthamalus_dalli","Type 3",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-10-28_YB-Gq8",2015-10-28,2015-10-28,"YB","G","8","Cth","Chthamalus_dalli","Type 3",118,0.0875,1348.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts low due to blur and glare."
+"2015-10-28_YB-Gq3",2015-10-28,2015-10-28,"YB","G","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and algae."
+"2015-10-28_YB-Gq5",2015-10-28,2015-10-28,"YB","G","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-10-28_YB-Gq8",2015-10-28,2015-10-28,"YB","G","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts low due to blur and glare."
+"2015-10-28_YB-Gq3",2015-10-28,2015-10-28,"YB","G","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and algae."
+"2015-10-28_YB-Gq5",2015-10-28,2015-10-28,"YB","G","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-10-28_YB-Gq8",2015-10-28,2015-10-28,"YB","G","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts low due to blur and glare."
+"2015-10-28_YB-Gq3",2015-10-28,2015-10-28,"YB","G","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and algae."
+"2015-10-28_YB-Gq5",2015-10-28,2015-10-28,"YB","G","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-10-28_YB-Gq8",2015-10-28,2015-10-28,"YB","G","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts low due to blur and glare."
+"2015-10-28_YB-Gq3",2015-10-28,2015-10-28,"YB","G","3","Lim","Limpets","Type 12",209,0.0875,2388.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and algae."
+"2015-10-28_YB-Gq5",2015-10-28,2015-10-28,"YB","G","5","Lim","Limpets","Type 12",67,0.0875,765.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-10-28_YB-Gq8",2015-10-28,2015-10-28,"YB","G","8","Lim","Limpets","Type 12",217,0.0875,2480,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts low due to blur and glare."
+"2015-10-28_YB-Gq3",2015-10-28,2015-10-28,"YB","G","3","Ls","Littorina_sitkana","Type 13",329,0.0875,3760,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and algae."
+"2015-10-28_YB-Gq5",2015-10-28,2015-10-28,"YB","G","5","Ls","Littorina_sitkana","Type 13",160,0.0875,1828.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-10-28_YB-Gq8",2015-10-28,2015-10-28,"YB","G","8","Ls","Littorina_sitkana","Type 13",314,0.0875,3588.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts low due to blur and glare."
+"2015-10-28_YB-Gq3",2015-10-28,2015-10-28,"YB","G","3","Mc","Mytilus_californianus","Type 17",10,0.0875,114.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and algae."
+"2015-10-28_YB-Gq5",2015-10-28,2015-10-28,"YB","G","5","Mc","Mytilus_californianus","Type 17",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-10-28_YB-Gq8",2015-10-28,2015-10-28,"YB","G","8","Mc","Mytilus_californianus","Type 17",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts low due to blur and glare."
+"2015-10-28_YB-Gq3",2015-10-28,2015-10-28,"YB","G","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and algae."
+"2015-10-28_YB-Gq5",2015-10-28,2015-10-28,"YB","G","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-10-28_YB-Gq8",2015-10-28,2015-10-28,"YB","G","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts low due to blur and glare."
+"2015-10-28_YB-Gq3",2015-10-28,2015-10-28,"YB","G","3","Myt","Mytilus_spp","Type 7",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and algae."
+"2015-10-28_YB-Gq5",2015-10-28,2015-10-28,"YB","G","5","Myt","Mytilus_spp","Type 7",15,0.0875,171.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-10-28_YB-Gq8",2015-10-28,2015-10-28,"YB","G","8","Myt","Mytilus_spp","Type 7",14,0.0875,160,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts low due to blur and glare."
+"2015-10-28_YB-Gq3",2015-10-28,2015-10-28,"YB","G","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and algae."
+"2015-10-28_YB-Gq5",2015-10-28,2015-10-28,"YB","G","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-10-28_YB-Gq8",2015-10-28,2015-10-28,"YB","G","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts low due to blur and glare."
+"2015-10-28_YB-Gq3",2015-10-28,2015-10-28,"YB","G","3","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and algae."
+"2015-10-28_YB-Gq5",2015-10-28,2015-10-28,"YB","G","5","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-10-28_YB-Gq8",2015-10-28,2015-10-28,"YB","G","8","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts low due to blur and glare."
+"2015-10-28_YB-Gq3",2015-10-28,2015-10-28,"YB","G","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and algae."
+"2015-10-28_YB-Gq5",2015-10-28,2015-10-28,"YB","G","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-10-28_YB-Gq8",2015-10-28,2015-10-28,"YB","G","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts low due to blur and glare."
+"2015-10-28_YB-Gq3",2015-10-28,2015-10-28,"YB","G","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and algae."
+"2015-10-28_YB-Gq5",2015-10-28,2015-10-28,"YB","G","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-10-28_YB-Gq8",2015-10-28,2015-10-28,"YB","G","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts low due to blur and glare."
+"2015-10-28_YB-Gq3",2015-10-28,2015-10-28,"YB","G","3","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and algae."
+"2015-10-28_YB-Gq5",2015-10-28,2015-10-28,"YB","G","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-10-28_YB-Gq8",2015-10-28,2015-10-28,"YB","G","8","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts low due to blur and glare."
+"2015-10-28_YB-Gq3",2015-10-28,2015-10-28,"YB","G","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and algae."
+"2015-10-28_YB-Gq5",2015-10-28,2015-10-28,"YB","G","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-10-28_YB-Gq8",2015-10-28,2015-10-28,"YB","G","8","Negg","Nucella_eggs","Type 26",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts low due to blur and glare."
+"2015-10-28_YB-Gq3",2015-10-28,2015-10-28,"YB","G","3","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and algae."
+"2015-10-28_YB-Gq5",2015-10-28,2015-10-28,"YB","G","5","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-10-28_YB-Gq8",2015-10-28,2015-10-28,"YB","G","8","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts low due to blur and glare."
+"2015-10-28_YB-Gq3",2015-10-28,2015-10-28,"YB","G","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and algae."
+"2015-10-28_YB-Gq5",2015-10-28,2015-10-28,"YB","G","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-10-28_YB-Gq8",2015-10-28,2015-10-28,"YB","G","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts low due to blur and glare."
+"2015-10-28_YB-Gq3",2015-10-28,2015-10-28,"YB","G","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and algae."
+"2015-10-28_YB-Gq5",2015-10-28,2015-10-28,"YB","G","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-10-28_YB-Gq8",2015-10-28,2015-10-28,"YB","G","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts low due to blur and glare."
+"2015-10-28_YB-Gq3",2015-10-28,2015-10-28,"YB","G","3","Pp","Pollicipes_polymerus","Type 11",2143,0.0875,24491.4285714286,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and algae."
+"2015-10-28_YB-Gq5",2015-10-28,2015-10-28,"YB","G","5","Pp","Pollicipes_polymerus","Type 11",1498,0.0875,17120,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-10-28_YB-Gq8",2015-10-28,2015-10-28,"YB","G","8","Pp","Pollicipes_polymerus","Type 11",1968,0.0875,22491.4285714286,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts low due to blur and glare."
+"2015-10-28_YB-Gq3",2015-10-28,2015-10-28,"YB","G","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and algae."
+"2015-10-28_YB-Gq5",2015-10-28,2015-10-28,"YB","G","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-10-28_YB-Gq8",2015-10-28,2015-10-28,"YB","G","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts low due to blur and glare."
+"2015-10-28_YB-Gq3",2015-10-28,2015-10-28,"YB","G","3","Sc","Semibalanus_cariosus","Type 5",16,0.0875,182.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and algae."
+"2015-10-28_YB-Gq5",2015-10-28,2015-10-28,"YB","G","5","Sc","Semibalanus_cariosus","Type 5",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-10-28_YB-Gq8",2015-10-28,2015-10-28,"YB","G","8","Sc","Semibalanus_cariosus","Type 5",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts low due to blur and glare."
+"2015-10-28_YB-Gq3",2015-10-28,2015-10-28,"YB","G","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to glare and algae."
+"2015-10-28_YB-Gq5",2015-10-28,2015-10-28,"YB","G","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-10-28_YB-Gq8",2015-10-28,2015-10-28,"YB","G","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","7%","Counts low due to blur and glare."
+"2015-11-24_YB-Aq6",2015-11-24,2015-11-24,"YB","A","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","8%",""
+"2015-11-24_YB-Aq7",2015-11-24,2015-11-24,"YB","A","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-11-24_YB-Aq9",2015-11-24,2015-11-24,"YB","A","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to algae, glare, and blur."
+"2015-11-24_YB-Aq6",2015-11-24,2015-11-24,"YB","A","6","Ae","Anemones","Type 14",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","8%",""
+"2015-11-24_YB-Aq7",2015-11-24,2015-11-24,"YB","A","7","Ae","Anemones","Type 14",169,0.0875,1931.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-11-24_YB-Aq9",2015-11-24,2015-11-24,"YB","A","9","Ae","Anemones","Type 14",119,0.0875,1360,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to algae, glare, and blur."
+"2015-11-24_YB-Aq6",2015-11-24,2015-11-24,"YB","A","6","Bg","Balanus_glandula","Type 1",374,0.0875,4274.28571428571,NA,"Celeste Moen","Finished","Full","Full","8%",""
+"2015-11-24_YB-Aq7",2015-11-24,2015-11-24,"YB","A","7","Bg","Balanus_glandula","Type 1",485,0.0875,5542.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-11-24_YB-Aq9",2015-11-24,2015-11-24,"YB","A","9","Bg","Balanus_glandula","Type 1",338,0.0875,3862.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to algae, glare, and blur."
+"2015-11-24_YB-Aq6",2015-11-24,2015-11-24,"YB","A","6","BgD","Balanus_glandula_(dead)","Type 2",47,0.0875,537.142857142857,NA,"Celeste Moen","Finished","Full","Full","8%",""
+"2015-11-24_YB-Aq7",2015-11-24,2015-11-24,"YB","A","7","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-11-24_YB-Aq9",2015-11-24,2015-11-24,"YB","A","9","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to algae, glare, and blur."
+"2015-11-24_YB-Aq6",2015-11-24,2015-11-24,"YB","A","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","8%",""
+"2015-11-24_YB-Aq7",2015-11-24,2015-11-24,"YB","A","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-11-24_YB-Aq9",2015-11-24,2015-11-24,"YB","A","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to algae, glare, and blur."
+"2015-11-24_YB-Aq6",2015-11-24,2015-11-24,"YB","A","6","Cth","Chthamalus_dalli","Type 3",14,0.0875,160,NA,"Celeste Moen","Finished","Full","Full","8%",""
+"2015-11-24_YB-Aq7",2015-11-24,2015-11-24,"YB","A","7","Cth","Chthamalus_dalli","Type 3",82,0.0875,937.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-11-24_YB-Aq9",2015-11-24,2015-11-24,"YB","A","9","Cth","Chthamalus_dalli","Type 3",555,0.0875,6342.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to algae, glare, and blur."
+"2015-11-24_YB-Aq6",2015-11-24,2015-11-24,"YB","A","6","CthD","Chthamalus_dalli (dead)","Type 4",1,0.0875,11.4285714285714,NA,"Celeste Moen","Finished","Full","Full","8%",""
+"2015-11-24_YB-Aq7",2015-11-24,2015-11-24,"YB","A","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-11-24_YB-Aq9",2015-11-24,2015-11-24,"YB","A","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to algae, glare, and blur."
+"2015-11-24_YB-Aq6",2015-11-24,2015-11-24,"YB","A","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","8%",""
+"2015-11-24_YB-Aq7",2015-11-24,2015-11-24,"YB","A","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-11-24_YB-Aq9",2015-11-24,2015-11-24,"YB","A","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to algae, glare, and blur."
+"2015-11-24_YB-Aq6",2015-11-24,2015-11-24,"YB","A","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","8%",""
+"2015-11-24_YB-Aq7",2015-11-24,2015-11-24,"YB","A","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-11-24_YB-Aq9",2015-11-24,2015-11-24,"YB","A","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to algae, glare, and blur."
+"2015-11-24_YB-Aq6",2015-11-24,2015-11-24,"YB","A","6","Lim","Limpets","Type 12",42,0.0875,480,NA,"Celeste Moen","Finished","Full","Full","8%",""
+"2015-11-24_YB-Aq7",2015-11-24,2015-11-24,"YB","A","7","Lim","Limpets","Type 12",275,0.0875,3142.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-11-24_YB-Aq9",2015-11-24,2015-11-24,"YB","A","9","Lim","Limpets","Type 12",440,0.0875,5028.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to algae, glare, and blur."
+"2015-11-24_YB-Aq6",2015-11-24,2015-11-24,"YB","A","6","Ls","Littorina_sitkana","Type 13",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","8%",""
+"2015-11-24_YB-Aq7",2015-11-24,2015-11-24,"YB","A","7","Ls","Littorina_sitkana","Type 13",52,0.0875,594.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-11-24_YB-Aq9",2015-11-24,2015-11-24,"YB","A","9","Ls","Littorina_sitkana","Type 13",98,0.0875,1120,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to algae, glare, and blur."
+"2015-11-24_YB-Aq6",2015-11-24,2015-11-24,"YB","A","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","8%",""
+"2015-11-24_YB-Aq7",2015-11-24,2015-11-24,"YB","A","7","Mc","Mytilus_californianus","Type 17",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-11-24_YB-Aq9",2015-11-24,2015-11-24,"YB","A","9","Mc","Mytilus_californianus","Type 17",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to algae, glare, and blur."
+"2015-11-24_YB-Aq6",2015-11-24,2015-11-24,"YB","A","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","8%",""
+"2015-11-24_YB-Aq7",2015-11-24,2015-11-24,"YB","A","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-11-24_YB-Aq9",2015-11-24,2015-11-24,"YB","A","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to algae, glare, and blur."
+"2015-11-24_YB-Aq6",2015-11-24,2015-11-24,"YB","A","6","Myt","Mytilus_spp","Type 7",377,0.0875,4308.57142857143,NA,"Celeste Moen","Finished","Full","Full","8%",""
+"2015-11-24_YB-Aq7",2015-11-24,2015-11-24,"YB","A","7","Myt","Mytilus_spp","Type 7",576,0.0875,6582.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-11-24_YB-Aq9",2015-11-24,2015-11-24,"YB","A","9","Myt","Mytilus_spp","Type 7",165,0.0875,1885.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to algae, glare, and blur."
+"2015-11-24_YB-Aq6",2015-11-24,2015-11-24,"YB","A","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","8%",""
+"2015-11-24_YB-Aq7",2015-11-24,2015-11-24,"YB","A","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-11-24_YB-Aq9",2015-11-24,2015-11-24,"YB","A","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to algae, glare, and blur."
+"2015-11-24_YB-Aq6",2015-11-24,2015-11-24,"YB","A","6","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","8%",""
+"2015-11-24_YB-Aq7",2015-11-24,2015-11-24,"YB","A","7","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-11-24_YB-Aq9",2015-11-24,2015-11-24,"YB","A","9","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to algae, glare, and blur."
+"2015-11-24_YB-Aq6",2015-11-24,2015-11-24,"YB","A","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","8%",""
+"2015-11-24_YB-Aq7",2015-11-24,2015-11-24,"YB","A","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-11-24_YB-Aq9",2015-11-24,2015-11-24,"YB","A","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to algae, glare, and blur."
+"2015-11-24_YB-Aq6",2015-11-24,2015-11-24,"YB","A","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","8%",""
+"2015-11-24_YB-Aq7",2015-11-24,2015-11-24,"YB","A","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-11-24_YB-Aq9",2015-11-24,2015-11-24,"YB","A","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to algae, glare, and blur."
+"2015-11-24_YB-Aq6",2015-11-24,2015-11-24,"YB","A","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","8%",""
+"2015-11-24_YB-Aq7",2015-11-24,2015-11-24,"YB","A","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-11-24_YB-Aq9",2015-11-24,2015-11-24,"YB","A","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to algae, glare, and blur."
+"2015-11-24_YB-Aq6",2015-11-24,2015-11-24,"YB","A","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","8%",""
+"2015-11-24_YB-Aq7",2015-11-24,2015-11-24,"YB","A","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-11-24_YB-Aq9",2015-11-24,2015-11-24,"YB","A","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to algae, glare, and blur."
+"2015-11-24_YB-Aq6",2015-11-24,2015-11-24,"YB","A","6","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","8%",""
+"2015-11-24_YB-Aq7",2015-11-24,2015-11-24,"YB","A","7","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-11-24_YB-Aq9",2015-11-24,2015-11-24,"YB","A","9","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to algae, glare, and blur."
+"2015-11-24_YB-Aq6",2015-11-24,2015-11-24,"YB","A","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","8%",""
+"2015-11-24_YB-Aq7",2015-11-24,2015-11-24,"YB","A","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-11-24_YB-Aq9",2015-11-24,2015-11-24,"YB","A","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to algae, glare, and blur."
+"2015-11-24_YB-Aq6",2015-11-24,2015-11-24,"YB","A","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","8%",""
+"2015-11-24_YB-Aq7",2015-11-24,2015-11-24,"YB","A","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-11-24_YB-Aq9",2015-11-24,2015-11-24,"YB","A","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to algae, glare, and blur."
+"2015-11-24_YB-Aq6",2015-11-24,2015-11-24,"YB","A","6","Pp","Pollicipes_polymerus","Type 11",612,0.0875,6994.28571428571,NA,"Celeste Moen","Finished","Full","Full","8%",""
+"2015-11-24_YB-Aq7",2015-11-24,2015-11-24,"YB","A","7","Pp","Pollicipes_polymerus","Type 11",1476,0.0875,16868.5714285714,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-11-24_YB-Aq9",2015-11-24,2015-11-24,"YB","A","9","Pp","Pollicipes_polymerus","Type 11",1375,0.0875,15714.2857142857,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to algae, glare, and blur."
+"2015-11-24_YB-Aq6",2015-11-24,2015-11-24,"YB","A","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Full","8%",""
+"2015-11-24_YB-Aq7",2015-11-24,2015-11-24,"YB","A","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-11-24_YB-Aq9",2015-11-24,2015-11-24,"YB","A","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to algae, glare, and blur."
+"2015-11-24_YB-Aq6",2015-11-24,2015-11-24,"YB","A","6","Sc","Semibalanus_cariosus","Type 5",2,0.0875,22.8571428571429,NA,"Celeste Moen","Finished","Full","Full","8%",""
+"2015-11-24_YB-Aq7",2015-11-24,2015-11-24,"YB","A","7","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-11-24_YB-Aq9",2015-11-24,2015-11-24,"YB","A","9","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to algae, glare, and blur."
+"2015-11-24_YB-Aq6",2015-11-24,2015-11-24,"YB","A","6","ScD","Semibalanus_cariosus_(dead)","Type 6",1,0.0875,11.4285714285714,NA,"Celeste Moen","Finished","Full","Full","8%",""
+"2015-11-24_YB-Aq7",2015-11-24,2015-11-24,"YB","A","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%",""
+"2015-11-24_YB-Aq9",2015-11-24,2015-11-24,"YB","A","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to algae, glare, and blur."
+"2015-11-24_YB-ABq1",2015-11-24,2015-11-24,"YB","AB","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-ABq2",2015-11-24,2015-11-24,"YB","AB","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-11-24_YB-ABq4",2015-11-24,2015-11-24,"YB","AB","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-11-24_YB-ABq1",2015-11-24,2015-11-24,"YB","AB","1","Ae","Anemones","Type 14",63,0.0875,720,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-ABq2",2015-11-24,2015-11-24,"YB","AB","2","Ae","Anemones","Type 14",123,0.0875,1405.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-11-24_YB-ABq4",2015-11-24,2015-11-24,"YB","AB","4","Ae","Anemones","Type 14",74,0.0875,845.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-11-24_YB-ABq1",2015-11-24,2015-11-24,"YB","AB","1","Bg","Balanus_glandula","Type 1",41,0.0875,468.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-ABq2",2015-11-24,2015-11-24,"YB","AB","2","Bg","Balanus_glandula","Type 1",38,0.0875,434.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-11-24_YB-ABq4",2015-11-24,2015-11-24,"YB","AB","4","Bg","Balanus_glandula","Type 1",41,0.0875,468.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-11-24_YB-ABq1",2015-11-24,2015-11-24,"YB","AB","1","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-ABq2",2015-11-24,2015-11-24,"YB","AB","2","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-11-24_YB-ABq4",2015-11-24,2015-11-24,"YB","AB","4","BgD","Balanus_glandula_(dead)","Type 2",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-11-24_YB-ABq1",2015-11-24,2015-11-24,"YB","AB","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-ABq2",2015-11-24,2015-11-24,"YB","AB","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-11-24_YB-ABq4",2015-11-24,2015-11-24,"YB","AB","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-11-24_YB-ABq1",2015-11-24,2015-11-24,"YB","AB","1","Cth","Chthamalus_dalli","Type 3",51,0.0875,582.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-ABq2",2015-11-24,2015-11-24,"YB","AB","2","Cth","Chthamalus_dalli","Type 3",21,0.0875,240,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-11-24_YB-ABq4",2015-11-24,2015-11-24,"YB","AB","4","Cth","Chthamalus_dalli","Type 3",58,0.0875,662.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-11-24_YB-ABq1",2015-11-24,2015-11-24,"YB","AB","1","CthD","Chthamalus_dalli (dead)","Type 4",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-ABq2",2015-11-24,2015-11-24,"YB","AB","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-11-24_YB-ABq4",2015-11-24,2015-11-24,"YB","AB","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-11-24_YB-ABq1",2015-11-24,2015-11-24,"YB","AB","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-ABq2",2015-11-24,2015-11-24,"YB","AB","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-11-24_YB-ABq4",2015-11-24,2015-11-24,"YB","AB","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-11-24_YB-ABq1",2015-11-24,2015-11-24,"YB","AB","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-ABq2",2015-11-24,2015-11-24,"YB","AB","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-11-24_YB-ABq4",2015-11-24,2015-11-24,"YB","AB","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-11-24_YB-ABq1",2015-11-24,2015-11-24,"YB","AB","1","Lim","Limpets","Type 12",64,0.0875,731.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-ABq2",2015-11-24,2015-11-24,"YB","AB","2","Lim","Limpets","Type 12",82,0.0875,937.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-11-24_YB-ABq4",2015-11-24,2015-11-24,"YB","AB","4","Lim","Limpets","Type 12",106,0.0875,1211.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-11-24_YB-ABq1",2015-11-24,2015-11-24,"YB","AB","1","Ls","Littorina_sitkana","Type 13",51,0.0875,582.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-ABq2",2015-11-24,2015-11-24,"YB","AB","2","Ls","Littorina_sitkana","Type 13",88,0.0875,1005.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-11-24_YB-ABq4",2015-11-24,2015-11-24,"YB","AB","4","Ls","Littorina_sitkana","Type 13",71,0.0875,811.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-11-24_YB-ABq1",2015-11-24,2015-11-24,"YB","AB","1","Mc","Mytilus_californianus","Type 17",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-ABq2",2015-11-24,2015-11-24,"YB","AB","2","Mc","Mytilus_californianus","Type 17",12,0.0875,137.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-11-24_YB-ABq4",2015-11-24,2015-11-24,"YB","AB","4","Mc","Mytilus_californianus","Type 17",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-11-24_YB-ABq1",2015-11-24,2015-11-24,"YB","AB","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-ABq2",2015-11-24,2015-11-24,"YB","AB","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-11-24_YB-ABq4",2015-11-24,2015-11-24,"YB","AB","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-11-24_YB-ABq1",2015-11-24,2015-11-24,"YB","AB","1","Myt","Mytilus_spp","Type 7",13,0.0875,148.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-ABq2",2015-11-24,2015-11-24,"YB","AB","2","Myt","Mytilus_spp","Type 7",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-11-24_YB-ABq4",2015-11-24,2015-11-24,"YB","AB","4","Myt","Mytilus_spp","Type 7",31,0.0875,354.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-11-24_YB-ABq1",2015-11-24,2015-11-24,"YB","AB","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-ABq2",2015-11-24,2015-11-24,"YB","AB","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-11-24_YB-ABq4",2015-11-24,2015-11-24,"YB","AB","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-11-24_YB-ABq1",2015-11-24,2015-11-24,"YB","AB","1","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-ABq2",2015-11-24,2015-11-24,"YB","AB","2","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-11-24_YB-ABq4",2015-11-24,2015-11-24,"YB","AB","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-11-24_YB-ABq1",2015-11-24,2015-11-24,"YB","AB","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-ABq2",2015-11-24,2015-11-24,"YB","AB","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-11-24_YB-ABq4",2015-11-24,2015-11-24,"YB","AB","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-11-24_YB-ABq1",2015-11-24,2015-11-24,"YB","AB","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-ABq2",2015-11-24,2015-11-24,"YB","AB","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-11-24_YB-ABq4",2015-11-24,2015-11-24,"YB","AB","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-11-24_YB-ABq1",2015-11-24,2015-11-24,"YB","AB","1","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-ABq2",2015-11-24,2015-11-24,"YB","AB","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-11-24_YB-ABq4",2015-11-24,2015-11-24,"YB","AB","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-11-24_YB-ABq1",2015-11-24,2015-11-24,"YB","AB","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-ABq2",2015-11-24,2015-11-24,"YB","AB","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-11-24_YB-ABq4",2015-11-24,2015-11-24,"YB","AB","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-11-24_YB-ABq1",2015-11-24,2015-11-24,"YB","AB","1","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-ABq2",2015-11-24,2015-11-24,"YB","AB","2","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-11-24_YB-ABq4",2015-11-24,2015-11-24,"YB","AB","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-11-24_YB-ABq1",2015-11-24,2015-11-24,"YB","AB","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-ABq2",2015-11-24,2015-11-24,"YB","AB","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-11-24_YB-ABq4",2015-11-24,2015-11-24,"YB","AB","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-11-24_YB-ABq1",2015-11-24,2015-11-24,"YB","AB","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-ABq2",2015-11-24,2015-11-24,"YB","AB","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-11-24_YB-ABq4",2015-11-24,2015-11-24,"YB","AB","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-11-24_YB-ABq1",2015-11-24,2015-11-24,"YB","AB","1","Pp","Pollicipes_polymerus","Type 11",906,0.0875,10354.2857142857,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-ABq2",2015-11-24,2015-11-24,"YB","AB","2","Pp","Pollicipes_polymerus","Type 11",1033,0.0875,11805.7142857143,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-11-24_YB-ABq4",2015-11-24,2015-11-24,"YB","AB","4","Pp","Pollicipes_polymerus","Type 11",1053,0.0875,12034.2857142857,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-11-24_YB-ABq1",2015-11-24,2015-11-24,"YB","AB","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-ABq2",2015-11-24,2015-11-24,"YB","AB","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-11-24_YB-ABq4",2015-11-24,2015-11-24,"YB","AB","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-11-24_YB-ABq1",2015-11-24,2015-11-24,"YB","AB","1","Sc","Semibalanus_cariosus","Type 5",13,0.0875,148.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-ABq2",2015-11-24,2015-11-24,"YB","AB","2","Sc","Semibalanus_cariosus","Type 5",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-11-24_YB-ABq4",2015-11-24,2015-11-24,"YB","AB","4","Sc","Semibalanus_cariosus","Type 5",10,0.0875,114.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-11-24_YB-ABq1",2015-11-24,2015-11-24,"YB","AB","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-ABq2",2015-11-24,2015-11-24,"YB","AB","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-11-24_YB-ABq4",2015-11-24,2015-11-24,"YB","AB","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-11-24_YB-ACq4",2015-11-24,2015-11-24,"YB","AC","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to lots of glare and underwater patches. ~15% underwater."
+"2015-11-24_YB-ACq7",2015-11-24,2015-11-24,"YB","AC","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to water cover. ~50% under shallow water layer."
+"2015-11-24_YB-ACq8",2015-11-24,2015-11-24,"YB","AC","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to lots of glare, algae, and underwater patches. ~8% underwater."
+"2015-11-24_YB-ACq4",2015-11-24,2015-11-24,"YB","AC","4","Ae","Anemones","Type 14",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to lots of glare and underwater patches. ~15% underwater."
+"2015-11-24_YB-ACq7",2015-11-24,2015-11-24,"YB","AC","7","Ae","Anemones","Type 14",13,0.0875,148.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to water cover. ~50% under shallow water layer."
+"2015-11-24_YB-ACq8",2015-11-24,2015-11-24,"YB","AC","8","Ae","Anemones","Type 14",22,0.0875,251.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to lots of glare, algae, and underwater patches. ~8% underwater."
+"2015-11-24_YB-ACq4",2015-11-24,2015-11-24,"YB","AC","4","Bg","Balanus_glandula","Type 1",72,0.0875,822.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to lots of glare and underwater patches. ~15% underwater."
+"2015-11-24_YB-ACq7",2015-11-24,2015-11-24,"YB","AC","7","Bg","Balanus_glandula","Type 1",366,0.0875,4182.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to water cover. ~50% under shallow water layer."
+"2015-11-24_YB-ACq8",2015-11-24,2015-11-24,"YB","AC","8","Bg","Balanus_glandula","Type 1",73,0.0875,834.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to lots of glare, algae, and underwater patches. ~8% underwater."
+"2015-11-24_YB-ACq4",2015-11-24,2015-11-24,"YB","AC","4","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to lots of glare and underwater patches. ~15% underwater."
+"2015-11-24_YB-ACq7",2015-11-24,2015-11-24,"YB","AC","7","BgD","Balanus_glandula_(dead)","Type 2",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to water cover. ~50% under shallow water layer."
+"2015-11-24_YB-ACq8",2015-11-24,2015-11-24,"YB","AC","8","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to lots of glare, algae, and underwater patches. ~8% underwater."
+"2015-11-24_YB-ACq4",2015-11-24,2015-11-24,"YB","AC","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to lots of glare and underwater patches. ~15% underwater."
+"2015-11-24_YB-ACq7",2015-11-24,2015-11-24,"YB","AC","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to water cover. ~50% under shallow water layer."
+"2015-11-24_YB-ACq8",2015-11-24,2015-11-24,"YB","AC","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to lots of glare, algae, and underwater patches. ~8% underwater."
+"2015-11-24_YB-ACq4",2015-11-24,2015-11-24,"YB","AC","4","Cth","Chthamalus_dalli","Type 3",53,0.0875,605.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to lots of glare and underwater patches. ~15% underwater."
+"2015-11-24_YB-ACq7",2015-11-24,2015-11-24,"YB","AC","7","Cth","Chthamalus_dalli","Type 3",57,0.0875,651.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to water cover. ~50% under shallow water layer."
+"2015-11-24_YB-ACq8",2015-11-24,2015-11-24,"YB","AC","8","Cth","Chthamalus_dalli","Type 3",40,0.0875,457.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to lots of glare, algae, and underwater patches. ~8% underwater."
+"2015-11-24_YB-ACq4",2015-11-24,2015-11-24,"YB","AC","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to lots of glare and underwater patches. ~15% underwater."
+"2015-11-24_YB-ACq7",2015-11-24,2015-11-24,"YB","AC","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to water cover. ~50% under shallow water layer."
+"2015-11-24_YB-ACq8",2015-11-24,2015-11-24,"YB","AC","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to lots of glare, algae, and underwater patches. ~8% underwater."
+"2015-11-24_YB-ACq4",2015-11-24,2015-11-24,"YB","AC","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to lots of glare and underwater patches. ~15% underwater."
+"2015-11-24_YB-ACq7",2015-11-24,2015-11-24,"YB","AC","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to water cover. ~50% under shallow water layer."
+"2015-11-24_YB-ACq8",2015-11-24,2015-11-24,"YB","AC","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to lots of glare, algae, and underwater patches. ~8% underwater."
+"2015-11-24_YB-ACq4",2015-11-24,2015-11-24,"YB","AC","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to lots of glare and underwater patches. ~15% underwater."
+"2015-11-24_YB-ACq7",2015-11-24,2015-11-24,"YB","AC","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to water cover. ~50% under shallow water layer."
+"2015-11-24_YB-ACq8",2015-11-24,2015-11-24,"YB","AC","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to lots of glare, algae, and underwater patches. ~8% underwater."
+"2015-11-24_YB-ACq4",2015-11-24,2015-11-24,"YB","AC","4","Lim","Limpets","Type 12",99,0.0875,1131.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to lots of glare and underwater patches. ~15% underwater."
+"2015-11-24_YB-ACq7",2015-11-24,2015-11-24,"YB","AC","7","Lim","Limpets","Type 12",57,0.0875,651.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to water cover. ~50% under shallow water layer."
+"2015-11-24_YB-ACq8",2015-11-24,2015-11-24,"YB","AC","8","Lim","Limpets","Type 12",50,0.0875,571.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to lots of glare, algae, and underwater patches. ~8% underwater."
+"2015-11-24_YB-ACq4",2015-11-24,2015-11-24,"YB","AC","4","Ls","Littorina_sitkana","Type 13",26,0.0875,297.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to lots of glare and underwater patches. ~15% underwater."
+"2015-11-24_YB-ACq7",2015-11-24,2015-11-24,"YB","AC","7","Ls","Littorina_sitkana","Type 13",63,0.0875,720,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to water cover. ~50% under shallow water layer."
+"2015-11-24_YB-ACq8",2015-11-24,2015-11-24,"YB","AC","8","Ls","Littorina_sitkana","Type 13",65,0.0875,742.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to lots of glare, algae, and underwater patches. ~8% underwater."
+"2015-11-24_YB-ACq4",2015-11-24,2015-11-24,"YB","AC","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to lots of glare and underwater patches. ~15% underwater."
+"2015-11-24_YB-ACq7",2015-11-24,2015-11-24,"YB","AC","7","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to water cover. ~50% under shallow water layer."
+"2015-11-24_YB-ACq8",2015-11-24,2015-11-24,"YB","AC","8","Mc","Mytilus_californianus","Type 17",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to lots of glare, algae, and underwater patches. ~8% underwater."
+"2015-11-24_YB-ACq4",2015-11-24,2015-11-24,"YB","AC","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to lots of glare and underwater patches. ~15% underwater."
+"2015-11-24_YB-ACq7",2015-11-24,2015-11-24,"YB","AC","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to water cover. ~50% under shallow water layer."
+"2015-11-24_YB-ACq8",2015-11-24,2015-11-24,"YB","AC","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to lots of glare, algae, and underwater patches. ~8% underwater."
+"2015-11-24_YB-ACq4",2015-11-24,2015-11-24,"YB","AC","4","Myt","Mytilus_spp","Type 7",10,0.0875,114.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to lots of glare and underwater patches. ~15% underwater."
+"2015-11-24_YB-ACq7",2015-11-24,2015-11-24,"YB","AC","7","Myt","Mytilus_spp","Type 7",41,0.0875,468.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to water cover. ~50% under shallow water layer."
+"2015-11-24_YB-ACq8",2015-11-24,2015-11-24,"YB","AC","8","Myt","Mytilus_spp","Type 7",21,0.0875,240,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to lots of glare, algae, and underwater patches. ~8% underwater."
+"2015-11-24_YB-ACq4",2015-11-24,2015-11-24,"YB","AC","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to lots of glare and underwater patches. ~15% underwater."
+"2015-11-24_YB-ACq7",2015-11-24,2015-11-24,"YB","AC","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to water cover. ~50% under shallow water layer."
+"2015-11-24_YB-ACq8",2015-11-24,2015-11-24,"YB","AC","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to lots of glare, algae, and underwater patches. ~8% underwater."
+"2015-11-24_YB-ACq4",2015-11-24,2015-11-24,"YB","AC","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to lots of glare and underwater patches. ~15% underwater."
+"2015-11-24_YB-ACq7",2015-11-24,2015-11-24,"YB","AC","7","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to water cover. ~50% under shallow water layer."
+"2015-11-24_YB-ACq8",2015-11-24,2015-11-24,"YB","AC","8","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to lots of glare, algae, and underwater patches. ~8% underwater."
+"2015-11-24_YB-ACq4",2015-11-24,2015-11-24,"YB","AC","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to lots of glare and underwater patches. ~15% underwater."
+"2015-11-24_YB-ACq7",2015-11-24,2015-11-24,"YB","AC","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to water cover. ~50% under shallow water layer."
+"2015-11-24_YB-ACq8",2015-11-24,2015-11-24,"YB","AC","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to lots of glare, algae, and underwater patches. ~8% underwater."
+"2015-11-24_YB-ACq4",2015-11-24,2015-11-24,"YB","AC","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to lots of glare and underwater patches. ~15% underwater."
+"2015-11-24_YB-ACq7",2015-11-24,2015-11-24,"YB","AC","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to water cover. ~50% under shallow water layer."
+"2015-11-24_YB-ACq8",2015-11-24,2015-11-24,"YB","AC","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to lots of glare, algae, and underwater patches. ~8% underwater."
+"2015-11-24_YB-ACq4",2015-11-24,2015-11-24,"YB","AC","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to lots of glare and underwater patches. ~15% underwater."
+"2015-11-24_YB-ACq7",2015-11-24,2015-11-24,"YB","AC","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to water cover. ~50% under shallow water layer."
+"2015-11-24_YB-ACq8",2015-11-24,2015-11-24,"YB","AC","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to lots of glare, algae, and underwater patches. ~8% underwater."
+"2015-11-24_YB-ACq4",2015-11-24,2015-11-24,"YB","AC","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to lots of glare and underwater patches. ~15% underwater."
+"2015-11-24_YB-ACq7",2015-11-24,2015-11-24,"YB","AC","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to water cover. ~50% under shallow water layer."
+"2015-11-24_YB-ACq8",2015-11-24,2015-11-24,"YB","AC","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to lots of glare, algae, and underwater patches. ~8% underwater."
+"2015-11-24_YB-ACq4",2015-11-24,2015-11-24,"YB","AC","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to lots of glare and underwater patches. ~15% underwater."
+"2015-11-24_YB-ACq7",2015-11-24,2015-11-24,"YB","AC","7","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to water cover. ~50% under shallow water layer."
+"2015-11-24_YB-ACq8",2015-11-24,2015-11-24,"YB","AC","8","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to lots of glare, algae, and underwater patches. ~8% underwater."
+"2015-11-24_YB-ACq4",2015-11-24,2015-11-24,"YB","AC","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to lots of glare and underwater patches. ~15% underwater."
+"2015-11-24_YB-ACq7",2015-11-24,2015-11-24,"YB","AC","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to water cover. ~50% under shallow water layer."
+"2015-11-24_YB-ACq8",2015-11-24,2015-11-24,"YB","AC","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to lots of glare, algae, and underwater patches. ~8% underwater."
+"2015-11-24_YB-ACq4",2015-11-24,2015-11-24,"YB","AC","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to lots of glare and underwater patches. ~15% underwater."
+"2015-11-24_YB-ACq7",2015-11-24,2015-11-24,"YB","AC","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to water cover. ~50% under shallow water layer."
+"2015-11-24_YB-ACq8",2015-11-24,2015-11-24,"YB","AC","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to lots of glare, algae, and underwater patches. ~8% underwater."
+"2015-11-24_YB-ACq4",2015-11-24,2015-11-24,"YB","AC","4","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to lots of glare and underwater patches. ~15% underwater."
+"2015-11-24_YB-ACq7",2015-11-24,2015-11-24,"YB","AC","7","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to water cover. ~50% under shallow water layer."
+"2015-11-24_YB-ACq8",2015-11-24,2015-11-24,"YB","AC","8","Pp","Pollicipes_polymerus","Type 11",18,0.0875,205.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to lots of glare, algae, and underwater patches. ~8% underwater."
+"2015-11-24_YB-ACq4",2015-11-24,2015-11-24,"YB","AC","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to lots of glare and underwater patches. ~15% underwater."
+"2015-11-24_YB-ACq7",2015-11-24,2015-11-24,"YB","AC","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to water cover. ~50% under shallow water layer."
+"2015-11-24_YB-ACq8",2015-11-24,2015-11-24,"YB","AC","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to lots of glare, algae, and underwater patches. ~8% underwater."
+"2015-11-24_YB-ACq4",2015-11-24,2015-11-24,"YB","AC","4","Sc","Semibalanus_cariosus","Type 5",18,0.0875,205.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to lots of glare and underwater patches. ~15% underwater."
+"2015-11-24_YB-ACq7",2015-11-24,2015-11-24,"YB","AC","7","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to water cover. ~50% under shallow water layer."
+"2015-11-24_YB-ACq8",2015-11-24,2015-11-24,"YB","AC","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to lots of glare, algae, and underwater patches. ~8% underwater."
+"2015-11-24_YB-ACq4",2015-11-24,2015-11-24,"YB","AC","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts likely low due to lots of glare and underwater patches. ~15% underwater."
+"2015-11-24_YB-ACq7",2015-11-24,2015-11-24,"YB","AC","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to water cover. ~50% under shallow water layer."
+"2015-11-24_YB-ACq8",2015-11-24,2015-11-24,"YB","AC","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%","Counts likely low due to lots of glare, algae, and underwater patches. ~8% underwater."
+"2015-11-24_YB-ADq1",2015-11-24,2015-11-24,"YB","AD","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","8%",""
+"2015-11-24_YB-ADq5",2015-11-24,2015-11-24,"YB","AD","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-11-24_YB-ADq8",2015-11-24,2015-11-24,"YB","AD","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-ADq1",2015-11-24,2015-11-24,"YB","AD","1","Ae","Anemones","Type 14",94,0.0875,1074.28571428571,NA,"Beatriz Vaca","Finished","Full","Cropped","8%",""
+"2015-11-24_YB-ADq5",2015-11-24,2015-11-24,"YB","AD","5","Ae","Anemones","Type 14",180,0.0875,2057.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-11-24_YB-ADq8",2015-11-24,2015-11-24,"YB","AD","8","Ae","Anemones","Type 14",139,0.0875,1588.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-ADq1",2015-11-24,2015-11-24,"YB","AD","1","Bg","Balanus_glandula","Type 1",414,0.015625,26496,"c","Beatriz Vaca","Finished","Full","Cropped","8%",""
+"2015-11-24_YB-ADq5",2015-11-24,2015-11-24,"YB","AD","5","Bg","Balanus_glandula","Type 1",240,0.0875,2742.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-11-24_YB-ADq8",2015-11-24,2015-11-24,"YB","AD","8","Bg","Balanus_glandula","Type 1",1124,0.0875,12845.7142857143,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-ADq1",2015-11-24,2015-11-24,"YB","AD","1","BgD","Balanus_glandula_(dead)","Type 2",7,0.015625,448,"c","Beatriz Vaca","Finished","Full","Cropped","8%",""
+"2015-11-24_YB-ADq5",2015-11-24,2015-11-24,"YB","AD","5","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-11-24_YB-ADq8",2015-11-24,2015-11-24,"YB","AD","8","BgD","Balanus_glandula_(dead)","Type 2",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-ADq1",2015-11-24,2015-11-24,"YB","AD","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","8%",""
+"2015-11-24_YB-ADq5",2015-11-24,2015-11-24,"YB","AD","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-11-24_YB-ADq8",2015-11-24,2015-11-24,"YB","AD","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-ADq1",2015-11-24,2015-11-24,"YB","AD","1","Cth","Chthamalus_dalli","Type 3",4,0.015625,256,"c","Beatriz Vaca","Finished","Full","Cropped","8%",""
+"2015-11-24_YB-ADq5",2015-11-24,2015-11-24,"YB","AD","5","Cth","Chthamalus_dalli","Type 3",14,0.0875,160,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-11-24_YB-ADq8",2015-11-24,2015-11-24,"YB","AD","8","Cth","Chthamalus_dalli","Type 3",264,0.0875,3017.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-ADq1",2015-11-24,2015-11-24,"YB","AD","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Beatriz Vaca","Finished","Full","Cropped","8%",""
+"2015-11-24_YB-ADq5",2015-11-24,2015-11-24,"YB","AD","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-11-24_YB-ADq8",2015-11-24,2015-11-24,"YB","AD","8","CthD","Chthamalus_dalli (dead)","Type 4",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-ADq1",2015-11-24,2015-11-24,"YB","AD","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","8%",""
+"2015-11-24_YB-ADq5",2015-11-24,2015-11-24,"YB","AD","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-11-24_YB-ADq8",2015-11-24,2015-11-24,"YB","AD","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-ADq1",2015-11-24,2015-11-24,"YB","AD","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","8%",""
+"2015-11-24_YB-ADq5",2015-11-24,2015-11-24,"YB","AD","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-11-24_YB-ADq8",2015-11-24,2015-11-24,"YB","AD","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-ADq1",2015-11-24,2015-11-24,"YB","AD","1","Lim","Limpets","Type 12",116,0.0875,1325.71428571429,NA,"Beatriz Vaca","Finished","Full","Cropped","8%",""
+"2015-11-24_YB-ADq5",2015-11-24,2015-11-24,"YB","AD","5","Lim","Limpets","Type 12",68,0.0875,777.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-11-24_YB-ADq8",2015-11-24,2015-11-24,"YB","AD","8","Lim","Limpets","Type 12",328,0.0875,3748.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-ADq1",2015-11-24,2015-11-24,"YB","AD","1","Ls","Littorina_sitkana","Type 13",162,0.0875,1851.42857142857,NA,"Beatriz Vaca","Finished","Full","Cropped","8%",""
+"2015-11-24_YB-ADq5",2015-11-24,2015-11-24,"YB","AD","5","Ls","Littorina_sitkana","Type 13",122,0.0875,1394.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-11-24_YB-ADq8",2015-11-24,2015-11-24,"YB","AD","8","Ls","Littorina_sitkana","Type 13",119,0.0875,1360,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-ADq1",2015-11-24,2015-11-24,"YB","AD","1","Mc","Mytilus_californianus","Type 17",11,0.0875,125.714285714286,NA,"Beatriz Vaca","Finished","Full","Cropped","8%",""
+"2015-11-24_YB-ADq5",2015-11-24,2015-11-24,"YB","AD","5","Mc","Mytilus_californianus","Type 17",19,0.0875,217.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-11-24_YB-ADq8",2015-11-24,2015-11-24,"YB","AD","8","Mc","Mytilus_californianus","Type 17",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-ADq1",2015-11-24,2015-11-24,"YB","AD","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","8%",""
+"2015-11-24_YB-ADq5",2015-11-24,2015-11-24,"YB","AD","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-11-24_YB-ADq8",2015-11-24,2015-11-24,"YB","AD","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-ADq1",2015-11-24,2015-11-24,"YB","AD","1","Myt","Mytilus_spp","Type 7",338,0.0875,3862.85714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","8%",""
+"2015-11-24_YB-ADq5",2015-11-24,2015-11-24,"YB","AD","5","Myt","Mytilus_spp","Type 7",224,0.0875,2560,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-11-24_YB-ADq8",2015-11-24,2015-11-24,"YB","AD","8","Myt","Mytilus_spp","Type 7",722,0.0875,8251.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-ADq1",2015-11-24,2015-11-24,"YB","AD","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","8%",""
+"2015-11-24_YB-ADq5",2015-11-24,2015-11-24,"YB","AD","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-11-24_YB-ADq8",2015-11-24,2015-11-24,"YB","AD","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-ADq1",2015-11-24,2015-11-24,"YB","AD","1","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","8%",""
+"2015-11-24_YB-ADq5",2015-11-24,2015-11-24,"YB","AD","5","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-11-24_YB-ADq8",2015-11-24,2015-11-24,"YB","AD","8","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-ADq1",2015-11-24,2015-11-24,"YB","AD","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","8%",""
+"2015-11-24_YB-ADq5",2015-11-24,2015-11-24,"YB","AD","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-11-24_YB-ADq8",2015-11-24,2015-11-24,"YB","AD","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-ADq1",2015-11-24,2015-11-24,"YB","AD","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","8%",""
+"2015-11-24_YB-ADq5",2015-11-24,2015-11-24,"YB","AD","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-11-24_YB-ADq8",2015-11-24,2015-11-24,"YB","AD","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-ADq1",2015-11-24,2015-11-24,"YB","AD","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","8%",""
+"2015-11-24_YB-ADq5",2015-11-24,2015-11-24,"YB","AD","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-11-24_YB-ADq8",2015-11-24,2015-11-24,"YB","AD","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-ADq1",2015-11-24,2015-11-24,"YB","AD","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","8%",""
+"2015-11-24_YB-ADq5",2015-11-24,2015-11-24,"YB","AD","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-11-24_YB-ADq8",2015-11-24,2015-11-24,"YB","AD","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-ADq1",2015-11-24,2015-11-24,"YB","AD","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","8%",""
+"2015-11-24_YB-ADq5",2015-11-24,2015-11-24,"YB","AD","5","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-11-24_YB-ADq8",2015-11-24,2015-11-24,"YB","AD","8","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-ADq1",2015-11-24,2015-11-24,"YB","AD","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","8%",""
+"2015-11-24_YB-ADq5",2015-11-24,2015-11-24,"YB","AD","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-11-24_YB-ADq8",2015-11-24,2015-11-24,"YB","AD","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-ADq1",2015-11-24,2015-11-24,"YB","AD","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","8%",""
+"2015-11-24_YB-ADq5",2015-11-24,2015-11-24,"YB","AD","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-11-24_YB-ADq8",2015-11-24,2015-11-24,"YB","AD","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-ADq1",2015-11-24,2015-11-24,"YB","AD","1","Pp","Pollicipes_polymerus","Type 11",1369,0.0875,15645.7142857143,NA,"Beatriz Vaca","Finished","Full","Cropped","8%",""
+"2015-11-24_YB-ADq5",2015-11-24,2015-11-24,"YB","AD","5","Pp","Pollicipes_polymerus","Type 11",1385,0.0875,15828.5714285714,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-11-24_YB-ADq8",2015-11-24,2015-11-24,"YB","AD","8","Pp","Pollicipes_polymerus","Type 11",918,0.0875,10491.4285714286,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-ADq1",2015-11-24,2015-11-24,"YB","AD","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","8%",""
+"2015-11-24_YB-ADq5",2015-11-24,2015-11-24,"YB","AD","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-11-24_YB-ADq8",2015-11-24,2015-11-24,"YB","AD","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-ADq1",2015-11-24,2015-11-24,"YB","AD","1","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Cropped","8%",""
+"2015-11-24_YB-ADq5",2015-11-24,2015-11-24,"YB","AD","5","Sc","Semibalanus_cariosus","Type 5",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-11-24_YB-ADq8",2015-11-24,2015-11-24,"YB","AD","8","Sc","Semibalanus_cariosus","Type 5",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-ADq1",2015-11-24,2015-11-24,"YB","AD","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Cropped","8%",""
+"2015-11-24_YB-ADq5",2015-11-24,2015-11-24,"YB","AD","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-11-24_YB-ADq8",2015-11-24,2015-11-24,"YB","AD","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-AEq1",2015-11-24,2015-11-24,"YB","AE","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to algae and glare."
+"2015-11-24_YB-AEq4",2015-11-24,2015-11-24,"YB","AE","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to lots of glare."
+"2015-11-24_YB-AEq8",2015-11-24,2015-11-24,"YB","AE","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to lots of glare."
+"2015-11-24_YB-AEq1",2015-11-24,2015-11-24,"YB","AE","1","Ae","Anemones","Type 14",22,0.0875,251.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to algae and glare."
+"2015-11-24_YB-AEq4",2015-11-24,2015-11-24,"YB","AE","4","Ae","Anemones","Type 14",14,0.0875,160,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to lots of glare."
+"2015-11-24_YB-AEq8",2015-11-24,2015-11-24,"YB","AE","8","Ae","Anemones","Type 14",9,0.0875,102.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to lots of glare."
+"2015-11-24_YB-AEq1",2015-11-24,2015-11-24,"YB","AE","1","Bg","Balanus_glandula","Type 1",65,0.0875,742.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to algae and glare."
+"2015-11-24_YB-AEq4",2015-11-24,2015-11-24,"YB","AE","4","Bg","Balanus_glandula","Type 1",219,0.0875,2502.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to lots of glare."
+"2015-11-24_YB-AEq8",2015-11-24,2015-11-24,"YB","AE","8","Bg","Balanus_glandula","Type 1",137,0.0875,1565.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to lots of glare."
+"2015-11-24_YB-AEq1",2015-11-24,2015-11-24,"YB","AE","1","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to algae and glare."
+"2015-11-24_YB-AEq4",2015-11-24,2015-11-24,"YB","AE","4","BgD","Balanus_glandula_(dead)","Type 2",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to lots of glare."
+"2015-11-24_YB-AEq8",2015-11-24,2015-11-24,"YB","AE","8","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to lots of glare."
+"2015-11-24_YB-AEq1",2015-11-24,2015-11-24,"YB","AE","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to algae and glare."
+"2015-11-24_YB-AEq4",2015-11-24,2015-11-24,"YB","AE","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to lots of glare."
+"2015-11-24_YB-AEq8",2015-11-24,2015-11-24,"YB","AE","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to lots of glare."
+"2015-11-24_YB-AEq1",2015-11-24,2015-11-24,"YB","AE","1","Cth","Chthamalus_dalli","Type 3",626,0.0875,7154.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to algae and glare."
+"2015-11-24_YB-AEq4",2015-11-24,2015-11-24,"YB","AE","4","Cth","Chthamalus_dalli","Type 3",441,0.0875,5040,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to lots of glare."
+"2015-11-24_YB-AEq8",2015-11-24,2015-11-24,"YB","AE","8","Cth","Chthamalus_dalli","Type 3",1300,0.0875,14857.1428571429,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to lots of glare."
+"2015-11-24_YB-AEq1",2015-11-24,2015-11-24,"YB","AE","1","CthD","Chthamalus_dalli (dead)","Type 4",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to algae and glare."
+"2015-11-24_YB-AEq4",2015-11-24,2015-11-24,"YB","AE","4","CthD","Chthamalus_dalli (dead)","Type 4",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to lots of glare."
+"2015-11-24_YB-AEq8",2015-11-24,2015-11-24,"YB","AE","8","CthD","Chthamalus_dalli (dead)","Type 4",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to lots of glare."
+"2015-11-24_YB-AEq1",2015-11-24,2015-11-24,"YB","AE","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to algae and glare."
+"2015-11-24_YB-AEq4",2015-11-24,2015-11-24,"YB","AE","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to lots of glare."
+"2015-11-24_YB-AEq8",2015-11-24,2015-11-24,"YB","AE","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to lots of glare."
+"2015-11-24_YB-AEq1",2015-11-24,2015-11-24,"YB","AE","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to algae and glare."
+"2015-11-24_YB-AEq4",2015-11-24,2015-11-24,"YB","AE","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to lots of glare."
+"2015-11-24_YB-AEq8",2015-11-24,2015-11-24,"YB","AE","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to lots of glare."
+"2015-11-24_YB-AEq1",2015-11-24,2015-11-24,"YB","AE","1","Lim","Limpets","Type 12",84,0.0875,960,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to algae and glare."
+"2015-11-24_YB-AEq4",2015-11-24,2015-11-24,"YB","AE","4","Lim","Limpets","Type 12",217,0.0875,2480,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to lots of glare."
+"2015-11-24_YB-AEq8",2015-11-24,2015-11-24,"YB","AE","8","Lim","Limpets","Type 12",174,0.0875,1988.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to lots of glare."
+"2015-11-24_YB-AEq1",2015-11-24,2015-11-24,"YB","AE","1","Ls","Littorina_sitkana","Type 13",69,0.0875,788.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to algae and glare."
+"2015-11-24_YB-AEq4",2015-11-24,2015-11-24,"YB","AE","4","Ls","Littorina_sitkana","Type 13",27,0.0875,308.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to lots of glare."
+"2015-11-24_YB-AEq8",2015-11-24,2015-11-24,"YB","AE","8","Ls","Littorina_sitkana","Type 13",57,0.0875,651.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to lots of glare."
+"2015-11-24_YB-AEq1",2015-11-24,2015-11-24,"YB","AE","1","Mc","Mytilus_californianus","Type 17",10,0.0875,114.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to algae and glare."
+"2015-11-24_YB-AEq4",2015-11-24,2015-11-24,"YB","AE","4","Mc","Mytilus_californianus","Type 17",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to lots of glare."
+"2015-11-24_YB-AEq8",2015-11-24,2015-11-24,"YB","AE","8","Mc","Mytilus_californianus","Type 17",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to lots of glare."
+"2015-11-24_YB-AEq1",2015-11-24,2015-11-24,"YB","AE","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to algae and glare."
+"2015-11-24_YB-AEq4",2015-11-24,2015-11-24,"YB","AE","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to lots of glare."
+"2015-11-24_YB-AEq8",2015-11-24,2015-11-24,"YB","AE","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to lots of glare."
+"2015-11-24_YB-AEq1",2015-11-24,2015-11-24,"YB","AE","1","Myt","Mytilus_spp","Type 7",11,0.0875,125.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to algae and glare."
+"2015-11-24_YB-AEq4",2015-11-24,2015-11-24,"YB","AE","4","Myt","Mytilus_spp","Type 7",16,0.0875,182.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to lots of glare."
+"2015-11-24_YB-AEq8",2015-11-24,2015-11-24,"YB","AE","8","Myt","Mytilus_spp","Type 7",104,0.0875,1188.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to lots of glare."
+"2015-11-24_YB-AEq1",2015-11-24,2015-11-24,"YB","AE","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to algae and glare."
+"2015-11-24_YB-AEq4",2015-11-24,2015-11-24,"YB","AE","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to lots of glare."
+"2015-11-24_YB-AEq8",2015-11-24,2015-11-24,"YB","AE","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to lots of glare."
+"2015-11-24_YB-AEq1",2015-11-24,2015-11-24,"YB","AE","1","Mt","Mytilus_trossulus","Type 15",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to algae and glare."
+"2015-11-24_YB-AEq4",2015-11-24,2015-11-24,"YB","AE","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to lots of glare."
+"2015-11-24_YB-AEq8",2015-11-24,2015-11-24,"YB","AE","8","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to lots of glare."
+"2015-11-24_YB-AEq1",2015-11-24,2015-11-24,"YB","AE","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to algae and glare."
+"2015-11-24_YB-AEq4",2015-11-24,2015-11-24,"YB","AE","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to lots of glare."
+"2015-11-24_YB-AEq8",2015-11-24,2015-11-24,"YB","AE","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to lots of glare."
+"2015-11-24_YB-AEq1",2015-11-24,2015-11-24,"YB","AE","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to algae and glare."
+"2015-11-24_YB-AEq4",2015-11-24,2015-11-24,"YB","AE","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to lots of glare."
+"2015-11-24_YB-AEq8",2015-11-24,2015-11-24,"YB","AE","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to lots of glare."
+"2015-11-24_YB-AEq1",2015-11-24,2015-11-24,"YB","AE","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to algae and glare."
+"2015-11-24_YB-AEq4",2015-11-24,2015-11-24,"YB","AE","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to lots of glare."
+"2015-11-24_YB-AEq8",2015-11-24,2015-11-24,"YB","AE","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to lots of glare."
+"2015-11-24_YB-AEq1",2015-11-24,2015-11-24,"YB","AE","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to algae and glare."
+"2015-11-24_YB-AEq4",2015-11-24,2015-11-24,"YB","AE","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to lots of glare."
+"2015-11-24_YB-AEq8",2015-11-24,2015-11-24,"YB","AE","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to lots of glare."
+"2015-11-24_YB-AEq1",2015-11-24,2015-11-24,"YB","AE","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to algae and glare."
+"2015-11-24_YB-AEq4",2015-11-24,2015-11-24,"YB","AE","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to lots of glare."
+"2015-11-24_YB-AEq8",2015-11-24,2015-11-24,"YB","AE","8","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to lots of glare."
+"2015-11-24_YB-AEq1",2015-11-24,2015-11-24,"YB","AE","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to algae and glare."
+"2015-11-24_YB-AEq4",2015-11-24,2015-11-24,"YB","AE","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to lots of glare."
+"2015-11-24_YB-AEq8",2015-11-24,2015-11-24,"YB","AE","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to lots of glare."
+"2015-11-24_YB-AEq1",2015-11-24,2015-11-24,"YB","AE","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to algae and glare."
+"2015-11-24_YB-AEq4",2015-11-24,2015-11-24,"YB","AE","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to lots of glare."
+"2015-11-24_YB-AEq8",2015-11-24,2015-11-24,"YB","AE","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to lots of glare."
+"2015-11-24_YB-AEq1",2015-11-24,2015-11-24,"YB","AE","1","Pp","Pollicipes_polymerus","Type 11",169,0.0875,1931.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to algae and glare."
+"2015-11-24_YB-AEq4",2015-11-24,2015-11-24,"YB","AE","4","Pp","Pollicipes_polymerus","Type 11",88,0.0875,1005.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to lots of glare."
+"2015-11-24_YB-AEq8",2015-11-24,2015-11-24,"YB","AE","8","Pp","Pollicipes_polymerus","Type 11",86,0.0875,982.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to lots of glare."
+"2015-11-24_YB-AEq1",2015-11-24,2015-11-24,"YB","AE","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to algae and glare."
+"2015-11-24_YB-AEq4",2015-11-24,2015-11-24,"YB","AE","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to lots of glare."
+"2015-11-24_YB-AEq8",2015-11-24,2015-11-24,"YB","AE","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to lots of glare."
+"2015-11-24_YB-AEq1",2015-11-24,2015-11-24,"YB","AE","1","Sc","Semibalanus_cariosus","Type 5",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to algae and glare."
+"2015-11-24_YB-AEq4",2015-11-24,2015-11-24,"YB","AE","4","Sc","Semibalanus_cariosus","Type 5",15,0.0875,171.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to lots of glare."
+"2015-11-24_YB-AEq8",2015-11-24,2015-11-24,"YB","AE","8","Sc","Semibalanus_cariosus","Type 5",15,0.0875,171.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to lots of glare."
+"2015-11-24_YB-AEq1",2015-11-24,2015-11-24,"YB","AE","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","50%","Counts likely low due to algae and glare."
+"2015-11-24_YB-AEq4",2015-11-24,2015-11-24,"YB","AE","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to lots of glare."
+"2015-11-24_YB-AEq8",2015-11-24,2015-11-24,"YB","AE","8","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%","Counts may be low due to lots of glare."
+"2015-11-24_YB-AFq5",2015-11-24,2015-11-24,"YB","AF","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to algae cover, glare, and blur."
+"2015-11-24_YB-AFq8",2015-11-24,2015-11-24,"YB","AF","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","28%","Counts may be low due to blur"
+"2015-11-24_YB-AFq9",2015-11-24,2015-11-24,"YB","AF","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%","Counts may be low due to water patches"
+"2015-11-24_YB-AFq5",2015-11-24,2015-11-24,"YB","AF","5","Ae","Anemones","Type 14",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to algae cover, glare, and blur."
+"2015-11-24_YB-AFq8",2015-11-24,2015-11-24,"YB","AF","8","Ae","Anemones","Type 14",10,0.0875,114.285714285714,NA,"Celeste Moen","Finished","Full","Cropped","28%","Counts may be low due to blur"
+"2015-11-24_YB-AFq9",2015-11-24,2015-11-24,"YB","AF","9","Ae","Anemones","Type 14",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%","Counts may be low due to water patches"
+"2015-11-24_YB-AFq5",2015-11-24,2015-11-24,"YB","AF","5","Bg","Balanus_glandula","Type 1",757,0.0875,8651.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to algae cover, glare, and blur."
+"2015-11-24_YB-AFq8",2015-11-24,2015-11-24,"YB","AF","8","Bg","Balanus_glandula","Type 1",133,0.015625,8512,"c","Celeste Moen","Finished","Full","Cropped","28%","Counts may be low due to blur"
+"2015-11-24_YB-AFq9",2015-11-24,2015-11-24,"YB","AF","9","Bg","Balanus_glandula","Type 1",653,0.015625,41792,"c","Stephanie Merhoff","Finished","Full","Cropped","1%","Counts may be low due to water patches"
+"2015-11-24_YB-AFq5",2015-11-24,2015-11-24,"YB","AF","5","BgD","Balanus_glandula_(dead)","Type 2",10,0.0875,114.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to algae cover, glare, and blur."
+"2015-11-24_YB-AFq8",2015-11-24,2015-11-24,"YB","AF","8","BgD","Balanus_glandula_(dead)","Type 2",8,0.015625,512,"c","Celeste Moen","Finished","Full","Cropped","28%","Counts may be low due to blur"
+"2015-11-24_YB-AFq9",2015-11-24,2015-11-24,"YB","AF","9","BgD","Balanus_glandula_(dead)","Type 2",1,0.015625,64,"c","Stephanie Merhoff","Finished","Full","Cropped","1%","Counts may be low due to water patches"
+"2015-11-24_YB-AFq5",2015-11-24,2015-11-24,"YB","AF","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to algae cover, glare, and blur."
+"2015-11-24_YB-AFq8",2015-11-24,2015-11-24,"YB","AF","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","28%","Counts may be low due to blur"
+"2015-11-24_YB-AFq9",2015-11-24,2015-11-24,"YB","AF","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%","Counts may be low due to water patches"
+"2015-11-24_YB-AFq5",2015-11-24,2015-11-24,"YB","AF","5","Cth","Chthamalus_dalli","Type 3",2347,0.0875,26822.8571428571,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to algae cover, glare, and blur."
+"2015-11-24_YB-AFq8",2015-11-24,2015-11-24,"YB","AF","8","Cth","Chthamalus_dalli","Type 3",697,0.015625,44608,"c","Celeste Moen","Finished","Full","Cropped","28%","Counts may be low due to blur"
+"2015-11-24_YB-AFq9",2015-11-24,2015-11-24,"YB","AF","9","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","1%","Counts may be low due to water patches"
+"2015-11-24_YB-AFq5",2015-11-24,2015-11-24,"YB","AF","5","CthD","Chthamalus_dalli (dead)","Type 4",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to algae cover, glare, and blur."
+"2015-11-24_YB-AFq8",2015-11-24,2015-11-24,"YB","AF","8","CthD","Chthamalus_dalli (dead)","Type 4",21,0.015625,1344,"c","Celeste Moen","Finished","Full","Cropped","28%","Counts may be low due to blur"
+"2015-11-24_YB-AFq9",2015-11-24,2015-11-24,"YB","AF","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","1%","Counts may be low due to water patches"
+"2015-11-24_YB-AFq5",2015-11-24,2015-11-24,"YB","AF","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to algae cover, glare, and blur."
+"2015-11-24_YB-AFq8",2015-11-24,2015-11-24,"YB","AF","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","28%","Counts may be low due to blur"
+"2015-11-24_YB-AFq9",2015-11-24,2015-11-24,"YB","AF","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%","Counts may be low due to water patches"
+"2015-11-24_YB-AFq5",2015-11-24,2015-11-24,"YB","AF","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to algae cover, glare, and blur."
+"2015-11-24_YB-AFq8",2015-11-24,2015-11-24,"YB","AF","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","28%","Counts may be low due to blur"
+"2015-11-24_YB-AFq9",2015-11-24,2015-11-24,"YB","AF","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%","Counts may be low due to water patches"
+"2015-11-24_YB-AFq5",2015-11-24,2015-11-24,"YB","AF","5","Lim","Limpets","Type 12",138,0.0875,1577.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to algae cover, glare, and blur."
+"2015-11-24_YB-AFq8",2015-11-24,2015-11-24,"YB","AF","8","Lim","Limpets","Type 12",171,0.0875,1954.28571428571,NA,"Celeste Moen","Finished","Full","Cropped","28%","Counts may be low due to blur"
+"2015-11-24_YB-AFq9",2015-11-24,2015-11-24,"YB","AF","9","Lim","Limpets","Type 12",31,0.0875,354.285714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%","Counts may be low due to water patches"
+"2015-11-24_YB-AFq5",2015-11-24,2015-11-24,"YB","AF","5","Ls","Littorina_sitkana","Type 13",194,0.0875,2217.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to algae cover, glare, and blur."
+"2015-11-24_YB-AFq8",2015-11-24,2015-11-24,"YB","AF","8","Ls","Littorina_sitkana","Type 13",125,0.0875,1428.57142857143,NA,"Celeste Moen","Finished","Full","Cropped","28%","Counts may be low due to blur"
+"2015-11-24_YB-AFq9",2015-11-24,2015-11-24,"YB","AF","9","Ls","Littorina_sitkana","Type 13",197,0.0875,2251.42857142857,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%","Counts may be low due to water patches"
+"2015-11-24_YB-AFq5",2015-11-24,2015-11-24,"YB","AF","5","Mc","Mytilus_californianus","Type 17",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to algae cover, glare, and blur."
+"2015-11-24_YB-AFq8",2015-11-24,2015-11-24,"YB","AF","8","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","28%","Counts may be low due to blur"
+"2015-11-24_YB-AFq9",2015-11-24,2015-11-24,"YB","AF","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%","Counts may be low due to water patches"
+"2015-11-24_YB-AFq5",2015-11-24,2015-11-24,"YB","AF","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to algae cover, glare, and blur."
+"2015-11-24_YB-AFq8",2015-11-24,2015-11-24,"YB","AF","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","28%","Counts may be low due to blur"
+"2015-11-24_YB-AFq9",2015-11-24,2015-11-24,"YB","AF","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%","Counts may be low due to water patches"
+"2015-11-24_YB-AFq5",2015-11-24,2015-11-24,"YB","AF","5","Myt","Mytilus_spp","Type 7",91,0.0875,1040,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to algae cover, glare, and blur."
+"2015-11-24_YB-AFq8",2015-11-24,2015-11-24,"YB","AF","8","Myt","Mytilus_spp","Type 7",56,0.0875,640,NA,"Celeste Moen","Finished","Full","Cropped","28%","Counts may be low due to blur"
+"2015-11-24_YB-AFq9",2015-11-24,2015-11-24,"YB","AF","9","Myt","Mytilus_spp","Type 7",65,0.0875,742.857142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%","Counts may be low due to water patches"
+"2015-11-24_YB-AFq5",2015-11-24,2015-11-24,"YB","AF","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to algae cover, glare, and blur."
+"2015-11-24_YB-AFq8",2015-11-24,2015-11-24,"YB","AF","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","28%","Counts may be low due to blur"
+"2015-11-24_YB-AFq9",2015-11-24,2015-11-24,"YB","AF","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%","Counts may be low due to water patches"
+"2015-11-24_YB-AFq5",2015-11-24,2015-11-24,"YB","AF","5","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to algae cover, glare, and blur."
+"2015-11-24_YB-AFq8",2015-11-24,2015-11-24,"YB","AF","8","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","28%","Counts may be low due to blur"
+"2015-11-24_YB-AFq9",2015-11-24,2015-11-24,"YB","AF","9","Mt","Mytilus_trossulus","Type 15",4,0.0875,45.7142857142857,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%","Counts may be low due to water patches"
+"2015-11-24_YB-AFq5",2015-11-24,2015-11-24,"YB","AF","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to algae cover, glare, and blur."
+"2015-11-24_YB-AFq8",2015-11-24,2015-11-24,"YB","AF","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","28%","Counts may be low due to blur"
+"2015-11-24_YB-AFq9",2015-11-24,2015-11-24,"YB","AF","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%","Counts may be low due to water patches"
+"2015-11-24_YB-AFq5",2015-11-24,2015-11-24,"YB","AF","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to algae cover, glare, and blur."
+"2015-11-24_YB-AFq8",2015-11-24,2015-11-24,"YB","AF","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","28%","Counts may be low due to blur"
+"2015-11-24_YB-AFq9",2015-11-24,2015-11-24,"YB","AF","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%","Counts may be low due to water patches"
+"2015-11-24_YB-AFq5",2015-11-24,2015-11-24,"YB","AF","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to algae cover, glare, and blur."
+"2015-11-24_YB-AFq8",2015-11-24,2015-11-24,"YB","AF","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","28%","Counts may be low due to blur"
+"2015-11-24_YB-AFq9",2015-11-24,2015-11-24,"YB","AF","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%","Counts may be low due to water patches"
+"2015-11-24_YB-AFq5",2015-11-24,2015-11-24,"YB","AF","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to algae cover, glare, and blur."
+"2015-11-24_YB-AFq8",2015-11-24,2015-11-24,"YB","AF","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","28%","Counts may be low due to blur"
+"2015-11-24_YB-AFq9",2015-11-24,2015-11-24,"YB","AF","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%","Counts may be low due to water patches"
+"2015-11-24_YB-AFq5",2015-11-24,2015-11-24,"YB","AF","5","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to algae cover, glare, and blur."
+"2015-11-24_YB-AFq8",2015-11-24,2015-11-24,"YB","AF","8","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","28%","Counts may be low due to blur"
+"2015-11-24_YB-AFq9",2015-11-24,2015-11-24,"YB","AF","9","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%","Counts may be low due to water patches"
+"2015-11-24_YB-AFq5",2015-11-24,2015-11-24,"YB","AF","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to algae cover, glare, and blur."
+"2015-11-24_YB-AFq8",2015-11-24,2015-11-24,"YB","AF","8","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","28%","Counts may be low due to blur"
+"2015-11-24_YB-AFq9",2015-11-24,2015-11-24,"YB","AF","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%","Counts may be low due to water patches"
+"2015-11-24_YB-AFq5",2015-11-24,2015-11-24,"YB","AF","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to algae cover, glare, and blur."
+"2015-11-24_YB-AFq8",2015-11-24,2015-11-24,"YB","AF","8","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","28%","Counts may be low due to blur"
+"2015-11-24_YB-AFq9",2015-11-24,2015-11-24,"YB","AF","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%","Counts may be low due to water patches"
+"2015-11-24_YB-AFq5",2015-11-24,2015-11-24,"YB","AF","5","Pp","Pollicipes_polymerus","Type 11",19,0.0875,217.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to algae cover, glare, and blur."
+"2015-11-24_YB-AFq8",2015-11-24,2015-11-24,"YB","AF","8","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","28%","Counts may be low due to blur"
+"2015-11-24_YB-AFq9",2015-11-24,2015-11-24,"YB","AF","9","Pp","Pollicipes_polymerus","Type 11",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%","Counts may be low due to water patches"
+"2015-11-24_YB-AFq5",2015-11-24,2015-11-24,"YB","AF","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to algae cover, glare, and blur."
+"2015-11-24_YB-AFq8",2015-11-24,2015-11-24,"YB","AF","8","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","28%","Counts may be low due to blur"
+"2015-11-24_YB-AFq9",2015-11-24,2015-11-24,"YB","AF","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%","Counts may be low due to water patches"
+"2015-11-24_YB-AFq5",2015-11-24,2015-11-24,"YB","AF","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to algae cover, glare, and blur."
+"2015-11-24_YB-AFq8",2015-11-24,2015-11-24,"YB","AF","8","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Celeste Moen","Finished","Full","Cropped","28%","Counts may be low due to blur"
+"2015-11-24_YB-AFq9",2015-11-24,2015-11-24,"YB","AF","9","Sc","Semibalanus_cariosus","Type 5",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%","Counts may be low due to water patches"
+"2015-11-24_YB-AFq5",2015-11-24,2015-11-24,"YB","AF","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%","Counts may be low due to algae cover, glare, and blur."
+"2015-11-24_YB-AFq8",2015-11-24,2015-11-24,"YB","AF","8","ScD","Semibalanus_cariosus_(dead)","Type 6",3,0.0875,34.2857142857143,NA,"Celeste Moen","Finished","Full","Cropped","28%","Counts may be low due to blur"
+"2015-11-24_YB-AFq9",2015-11-24,2015-11-24,"YB","AF","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","1%","Counts may be low due to water patches"
+"2015-11-24_YB-AGq2",2015-11-24,2015-11-24,"YB","AG","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-11-24_YB-AGq7",2015-11-24,2015-11-24,"YB","AG","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","28%","Counts likely quite low due to glare; Barnacle counts may be low due to recruit size"
+"2015-11-24_YB-AGq9",2015-11-24,2015-11-24,"YB","AG","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur and glare, especially barnacles"
+"2015-11-24_YB-AGq2",2015-11-24,2015-11-24,"YB","AG","2","Ae","Anemones","Type 14",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-11-24_YB-AGq7",2015-11-24,2015-11-24,"YB","AG","7","Ae","Anemones","Type 14",5,0.0875,57.1428571428571,NA,"Stephanie Merhoff","Finished","Full","Cropped","28%","Counts likely quite low due to glare; Barnacle counts may be low due to recruit size"
+"2015-11-24_YB-AGq9",2015-11-24,2015-11-24,"YB","AG","9","Ae","Anemones","Type 14",54,0.0875,617.142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur and glare, especially barnacles"
+"2015-11-24_YB-AGq2",2015-11-24,2015-11-24,"YB","AG","2","Bg","Balanus_glandula","Type 1",668,0.0875,7634.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-11-24_YB-AGq7",2015-11-24,2015-11-24,"YB","AG","7","Bg","Balanus_glandula","Type 1",748,0.015625,47872,"c","Stephanie Merhoff","Finished","Full","Cropped","28%","Counts likely quite low due to glare; Barnacle counts may be low due to recruit size"
+"2015-11-24_YB-AGq9",2015-11-24,2015-11-24,"YB","AG","9","Bg","Balanus_glandula","Type 1",328,0.0875,3748.57142857143,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur and glare, especially barnacles"
+"2015-11-24_YB-AGq2",2015-11-24,2015-11-24,"YB","AG","2","BgD","Balanus_glandula_(dead)","Type 2",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-11-24_YB-AGq7",2015-11-24,2015-11-24,"YB","AG","7","BgD","Balanus_glandula_(dead)","Type 2",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","28%","Counts likely quite low due to glare; Barnacle counts may be low due to recruit size"
+"2015-11-24_YB-AGq9",2015-11-24,2015-11-24,"YB","AG","9","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur and glare, especially barnacles"
+"2015-11-24_YB-AGq2",2015-11-24,2015-11-24,"YB","AG","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-11-24_YB-AGq7",2015-11-24,2015-11-24,"YB","AG","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","28%","Counts likely quite low due to glare; Barnacle counts may be low due to recruit size"
+"2015-11-24_YB-AGq9",2015-11-24,2015-11-24,"YB","AG","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur and glare, especially barnacles"
+"2015-11-24_YB-AGq2",2015-11-24,2015-11-24,"YB","AG","2","Cth","Chthamalus_dalli","Type 3",1738,0.0875,19862.8571428571,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-11-24_YB-AGq7",2015-11-24,2015-11-24,"YB","AG","7","Cth","Chthamalus_dalli","Type 3",196,0.015625,12544,"c","Stephanie Merhoff","Finished","Full","Cropped","28%","Counts likely quite low due to glare; Barnacle counts may be low due to recruit size"
+"2015-11-24_YB-AGq9",2015-11-24,2015-11-24,"YB","AG","9","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur and glare, especially barnacles"
+"2015-11-24_YB-AGq2",2015-11-24,2015-11-24,"YB","AG","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-11-24_YB-AGq7",2015-11-24,2015-11-24,"YB","AG","7","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","28%","Counts likely quite low due to glare; Barnacle counts may be low due to recruit size"
+"2015-11-24_YB-AGq9",2015-11-24,2015-11-24,"YB","AG","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur and glare, especially barnacles"
+"2015-11-24_YB-AGq2",2015-11-24,2015-11-24,"YB","AG","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-11-24_YB-AGq7",2015-11-24,2015-11-24,"YB","AG","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","28%","Counts likely quite low due to glare; Barnacle counts may be low due to recruit size"
+"2015-11-24_YB-AGq9",2015-11-24,2015-11-24,"YB","AG","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur and glare, especially barnacles"
+"2015-11-24_YB-AGq2",2015-11-24,2015-11-24,"YB","AG","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-11-24_YB-AGq7",2015-11-24,2015-11-24,"YB","AG","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","28%","Counts likely quite low due to glare; Barnacle counts may be low due to recruit size"
+"2015-11-24_YB-AGq9",2015-11-24,2015-11-24,"YB","AG","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur and glare, especially barnacles"
+"2015-11-24_YB-AGq2",2015-11-24,2015-11-24,"YB","AG","2","Lim","Limpets","Type 12",230,0.0875,2628.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-11-24_YB-AGq7",2015-11-24,2015-11-24,"YB","AG","7","Lim","Limpets","Type 12",132,0.0875,1508.57142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","28%","Counts likely quite low due to glare; Barnacle counts may be low due to recruit size"
+"2015-11-24_YB-AGq9",2015-11-24,2015-11-24,"YB","AG","9","Lim","Limpets","Type 12",27,0.0875,308.571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur and glare, especially barnacles"
+"2015-11-24_YB-AGq2",2015-11-24,2015-11-24,"YB","AG","2","Ls","Littorina_sitkana","Type 13",156,0.0875,1782.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-11-24_YB-AGq7",2015-11-24,2015-11-24,"YB","AG","7","Ls","Littorina_sitkana","Type 13",293,0.0875,3348.57142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","28%","Counts likely quite low due to glare; Barnacle counts may be low due to recruit size"
+"2015-11-24_YB-AGq9",2015-11-24,2015-11-24,"YB","AG","9","Ls","Littorina_sitkana","Type 13",291,0.0875,3325.71428571429,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur and glare, especially barnacles"
+"2015-11-24_YB-AGq2",2015-11-24,2015-11-24,"YB","AG","2","Mc","Mytilus_californianus","Type 17",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-11-24_YB-AGq7",2015-11-24,2015-11-24,"YB","AG","7","Mc","Mytilus_californianus","Type 17",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Cropped","28%","Counts likely quite low due to glare; Barnacle counts may be low due to recruit size"
+"2015-11-24_YB-AGq9",2015-11-24,2015-11-24,"YB","AG","9","Mc","Mytilus_californianus","Type 17",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur and glare, especially barnacles"
+"2015-11-24_YB-AGq2",2015-11-24,2015-11-24,"YB","AG","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-11-24_YB-AGq7",2015-11-24,2015-11-24,"YB","AG","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","28%","Counts likely quite low due to glare; Barnacle counts may be low due to recruit size"
+"2015-11-24_YB-AGq9",2015-11-24,2015-11-24,"YB","AG","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur and glare, especially barnacles"
+"2015-11-24_YB-AGq2",2015-11-24,2015-11-24,"YB","AG","2","Myt","Mytilus_spp","Type 7",14,0.0875,160,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-11-24_YB-AGq7",2015-11-24,2015-11-24,"YB","AG","7","Myt","Mytilus_spp","Type 7",6,0.0875,68.5714285714286,NA,"Stephanie Merhoff","Finished","Full","Cropped","28%","Counts likely quite low due to glare; Barnacle counts may be low due to recruit size"
+"2015-11-24_YB-AGq9",2015-11-24,2015-11-24,"YB","AG","9","Myt","Mytilus_spp","Type 7",4,0.0875,45.7142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur and glare, especially barnacles"
+"2015-11-24_YB-AGq2",2015-11-24,2015-11-24,"YB","AG","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-11-24_YB-AGq7",2015-11-24,2015-11-24,"YB","AG","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","28%","Counts likely quite low due to glare; Barnacle counts may be low due to recruit size"
+"2015-11-24_YB-AGq9",2015-11-24,2015-11-24,"YB","AG","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur and glare, especially barnacles"
+"2015-11-24_YB-AGq2",2015-11-24,2015-11-24,"YB","AG","2","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-11-24_YB-AGq7",2015-11-24,2015-11-24,"YB","AG","7","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","28%","Counts likely quite low due to glare; Barnacle counts may be low due to recruit size"
+"2015-11-24_YB-AGq9",2015-11-24,2015-11-24,"YB","AG","9","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur and glare, especially barnacles"
+"2015-11-24_YB-AGq2",2015-11-24,2015-11-24,"YB","AG","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-11-24_YB-AGq7",2015-11-24,2015-11-24,"YB","AG","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","28%","Counts likely quite low due to glare; Barnacle counts may be low due to recruit size"
+"2015-11-24_YB-AGq9",2015-11-24,2015-11-24,"YB","AG","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur and glare, especially barnacles"
+"2015-11-24_YB-AGq2",2015-11-24,2015-11-24,"YB","AG","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-11-24_YB-AGq7",2015-11-24,2015-11-24,"YB","AG","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","28%","Counts likely quite low due to glare; Barnacle counts may be low due to recruit size"
+"2015-11-24_YB-AGq9",2015-11-24,2015-11-24,"YB","AG","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur and glare, especially barnacles"
+"2015-11-24_YB-AGq2",2015-11-24,2015-11-24,"YB","AG","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-11-24_YB-AGq7",2015-11-24,2015-11-24,"YB","AG","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","28%","Counts likely quite low due to glare; Barnacle counts may be low due to recruit size"
+"2015-11-24_YB-AGq9",2015-11-24,2015-11-24,"YB","AG","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur and glare, especially barnacles"
+"2015-11-24_YB-AGq2",2015-11-24,2015-11-24,"YB","AG","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-11-24_YB-AGq7",2015-11-24,2015-11-24,"YB","AG","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","28%","Counts likely quite low due to glare; Barnacle counts may be low due to recruit size"
+"2015-11-24_YB-AGq9",2015-11-24,2015-11-24,"YB","AG","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur and glare, especially barnacles"
+"2015-11-24_YB-AGq2",2015-11-24,2015-11-24,"YB","AG","2","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-11-24_YB-AGq7",2015-11-24,2015-11-24,"YB","AG","7","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","28%","Counts likely quite low due to glare; Barnacle counts may be low due to recruit size"
+"2015-11-24_YB-AGq9",2015-11-24,2015-11-24,"YB","AG","9","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur and glare, especially barnacles"
+"2015-11-24_YB-AGq2",2015-11-24,2015-11-24,"YB","AG","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-11-24_YB-AGq7",2015-11-24,2015-11-24,"YB","AG","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","28%","Counts likely quite low due to glare; Barnacle counts may be low due to recruit size"
+"2015-11-24_YB-AGq9",2015-11-24,2015-11-24,"YB","AG","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur and glare, especially barnacles"
+"2015-11-24_YB-AGq2",2015-11-24,2015-11-24,"YB","AG","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-11-24_YB-AGq7",2015-11-24,2015-11-24,"YB","AG","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","28%","Counts likely quite low due to glare; Barnacle counts may be low due to recruit size"
+"2015-11-24_YB-AGq9",2015-11-24,2015-11-24,"YB","AG","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur and glare, especially barnacles"
+"2015-11-24_YB-AGq2",2015-11-24,2015-11-24,"YB","AG","2","Pp","Pollicipes_polymerus","Type 11",39,0.0875,445.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-11-24_YB-AGq7",2015-11-24,2015-11-24,"YB","AG","7","Pp","Pollicipes_polymerus","Type 11",260,0.0875,2971.42857142857,NA,"Stephanie Merhoff","Finished","Full","Cropped","28%","Counts likely quite low due to glare; Barnacle counts may be low due to recruit size"
+"2015-11-24_YB-AGq9",2015-11-24,2015-11-24,"YB","AG","9","Pp","Pollicipes_polymerus","Type 11",1118,0.0875,12777.1428571429,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur and glare, especially barnacles"
+"2015-11-24_YB-AGq2",2015-11-24,2015-11-24,"YB","AG","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-11-24_YB-AGq7",2015-11-24,2015-11-24,"YB","AG","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","28%","Counts likely quite low due to glare; Barnacle counts may be low due to recruit size"
+"2015-11-24_YB-AGq9",2015-11-24,2015-11-24,"YB","AG","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur and glare, especially barnacles"
+"2015-11-24_YB-AGq2",2015-11-24,2015-11-24,"YB","AG","2","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-11-24_YB-AGq7",2015-11-24,2015-11-24,"YB","AG","7","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","28%","Counts likely quite low due to glare; Barnacle counts may be low due to recruit size"
+"2015-11-24_YB-AGq9",2015-11-24,2015-11-24,"YB","AG","9","Sc","Semibalanus_cariosus","Type 5",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur and glare, especially barnacles"
+"2015-11-24_YB-AGq2",2015-11-24,2015-11-24,"YB","AG","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-11-24_YB-AGq7",2015-11-24,2015-11-24,"YB","AG","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","28%","Counts likely quite low due to glare; Barnacle counts may be low due to recruit size"
+"2015-11-24_YB-AGq9",2015-11-24,2015-11-24,"YB","AG","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to blur and glare, especially barnacles"
+"2015-11-24_YB-Bq1",2015-11-24,2015-11-24,"YB","B","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-11-24_YB-Bq5",2015-11-24,2015-11-24,"YB","B","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-11-24_YB-Bq6",2015-11-24,2015-11-24,"YB","B","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-11-24_YB-Bq1",2015-11-24,2015-11-24,"YB","B","1","Ae","Anemones","Type 14",100,0.0875,1142.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-11-24_YB-Bq5",2015-11-24,2015-11-24,"YB","B","5","Ae","Anemones","Type 14",114,0.0875,1302.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-11-24_YB-Bq6",2015-11-24,2015-11-24,"YB","B","6","Ae","Anemones","Type 14",161,0.0875,1840,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-11-24_YB-Bq1",2015-11-24,2015-11-24,"YB","B","1","Bg","Balanus_glandula","Type 1",415,0.0875,4742.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-11-24_YB-Bq5",2015-11-24,2015-11-24,"YB","B","5","Bg","Balanus_glandula","Type 1",230,0.0875,2628.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-11-24_YB-Bq6",2015-11-24,2015-11-24,"YB","B","6","Bg","Balanus_glandula","Type 1",162,0.0875,1851.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-11-24_YB-Bq1",2015-11-24,2015-11-24,"YB","B","1","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-11-24_YB-Bq5",2015-11-24,2015-11-24,"YB","B","5","BgD","Balanus_glandula_(dead)","Type 2",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-11-24_YB-Bq6",2015-11-24,2015-11-24,"YB","B","6","BgD","Balanus_glandula_(dead)","Type 2",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-11-24_YB-Bq1",2015-11-24,2015-11-24,"YB","B","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-11-24_YB-Bq5",2015-11-24,2015-11-24,"YB","B","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-11-24_YB-Bq6",2015-11-24,2015-11-24,"YB","B","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-11-24_YB-Bq1",2015-11-24,2015-11-24,"YB","B","1","Cth","Chthamalus_dalli","Type 3",475,0.0875,5428.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-11-24_YB-Bq5",2015-11-24,2015-11-24,"YB","B","5","Cth","Chthamalus_dalli","Type 3",209,0.0875,2388.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-11-24_YB-Bq6",2015-11-24,2015-11-24,"YB","B","6","Cth","Chthamalus_dalli","Type 3",56,0.0875,640,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-11-24_YB-Bq1",2015-11-24,2015-11-24,"YB","B","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-11-24_YB-Bq5",2015-11-24,2015-11-24,"YB","B","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-11-24_YB-Bq6",2015-11-24,2015-11-24,"YB","B","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-11-24_YB-Bq1",2015-11-24,2015-11-24,"YB","B","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-11-24_YB-Bq5",2015-11-24,2015-11-24,"YB","B","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-11-24_YB-Bq6",2015-11-24,2015-11-24,"YB","B","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-11-24_YB-Bq1",2015-11-24,2015-11-24,"YB","B","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-11-24_YB-Bq5",2015-11-24,2015-11-24,"YB","B","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-11-24_YB-Bq6",2015-11-24,2015-11-24,"YB","B","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-11-24_YB-Bq1",2015-11-24,2015-11-24,"YB","B","1","Lim","Limpets","Type 12",190,0.0875,2171.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-11-24_YB-Bq5",2015-11-24,2015-11-24,"YB","B","5","Lim","Limpets","Type 12",165,0.0875,1885.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-11-24_YB-Bq6",2015-11-24,2015-11-24,"YB","B","6","Lim","Limpets","Type 12",187,0.0875,2137.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-11-24_YB-Bq1",2015-11-24,2015-11-24,"YB","B","1","Ls","Littorina_sitkana","Type 13",29,0.0875,331.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-11-24_YB-Bq5",2015-11-24,2015-11-24,"YB","B","5","Ls","Littorina_sitkana","Type 13",95,0.0875,1085.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-11-24_YB-Bq6",2015-11-24,2015-11-24,"YB","B","6","Ls","Littorina_sitkana","Type 13",123,0.0875,1405.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-11-24_YB-Bq1",2015-11-24,2015-11-24,"YB","B","1","Mc","Mytilus_californianus","Type 17",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-11-24_YB-Bq5",2015-11-24,2015-11-24,"YB","B","5","Mc","Mytilus_californianus","Type 17",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-11-24_YB-Bq6",2015-11-24,2015-11-24,"YB","B","6","Mc","Mytilus_californianus","Type 17",10,0.0875,114.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-11-24_YB-Bq1",2015-11-24,2015-11-24,"YB","B","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-11-24_YB-Bq5",2015-11-24,2015-11-24,"YB","B","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-11-24_YB-Bq6",2015-11-24,2015-11-24,"YB","B","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-11-24_YB-Bq1",2015-11-24,2015-11-24,"YB","B","1","Myt","Mytilus_spp","Type 7",25,0.0875,285.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-11-24_YB-Bq5",2015-11-24,2015-11-24,"YB","B","5","Myt","Mytilus_spp","Type 7",45,0.0875,514.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-11-24_YB-Bq6",2015-11-24,2015-11-24,"YB","B","6","Myt","Mytilus_spp","Type 7",104,0.0875,1188.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-11-24_YB-Bq1",2015-11-24,2015-11-24,"YB","B","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-11-24_YB-Bq5",2015-11-24,2015-11-24,"YB","B","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-11-24_YB-Bq6",2015-11-24,2015-11-24,"YB","B","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-11-24_YB-Bq1",2015-11-24,2015-11-24,"YB","B","1","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-11-24_YB-Bq5",2015-11-24,2015-11-24,"YB","B","5","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-11-24_YB-Bq6",2015-11-24,2015-11-24,"YB","B","6","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-11-24_YB-Bq1",2015-11-24,2015-11-24,"YB","B","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-11-24_YB-Bq5",2015-11-24,2015-11-24,"YB","B","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-11-24_YB-Bq6",2015-11-24,2015-11-24,"YB","B","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-11-24_YB-Bq1",2015-11-24,2015-11-24,"YB","B","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-11-24_YB-Bq5",2015-11-24,2015-11-24,"YB","B","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-11-24_YB-Bq6",2015-11-24,2015-11-24,"YB","B","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-11-24_YB-Bq1",2015-11-24,2015-11-24,"YB","B","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-11-24_YB-Bq5",2015-11-24,2015-11-24,"YB","B","5","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-11-24_YB-Bq6",2015-11-24,2015-11-24,"YB","B","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-11-24_YB-Bq1",2015-11-24,2015-11-24,"YB","B","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-11-24_YB-Bq5",2015-11-24,2015-11-24,"YB","B","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-11-24_YB-Bq6",2015-11-24,2015-11-24,"YB","B","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-11-24_YB-Bq1",2015-11-24,2015-11-24,"YB","B","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-11-24_YB-Bq5",2015-11-24,2015-11-24,"YB","B","5","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-11-24_YB-Bq6",2015-11-24,2015-11-24,"YB","B","6","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-11-24_YB-Bq1",2015-11-24,2015-11-24,"YB","B","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-11-24_YB-Bq5",2015-11-24,2015-11-24,"YB","B","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-11-24_YB-Bq6",2015-11-24,2015-11-24,"YB","B","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-11-24_YB-Bq1",2015-11-24,2015-11-24,"YB","B","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-11-24_YB-Bq5",2015-11-24,2015-11-24,"YB","B","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-11-24_YB-Bq6",2015-11-24,2015-11-24,"YB","B","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-11-24_YB-Bq1",2015-11-24,2015-11-24,"YB","B","1","Pp","Pollicipes_polymerus","Type 11",465,0.0875,5314.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-11-24_YB-Bq5",2015-11-24,2015-11-24,"YB","B","5","Pp","Pollicipes_polymerus","Type 11",1270,0.0875,14514.2857142857,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-11-24_YB-Bq6",2015-11-24,2015-11-24,"YB","B","6","Pp","Pollicipes_polymerus","Type 11",1011,0.0875,11554.2857142857,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-11-24_YB-Bq1",2015-11-24,2015-11-24,"YB","B","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-11-24_YB-Bq5",2015-11-24,2015-11-24,"YB","B","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-11-24_YB-Bq6",2015-11-24,2015-11-24,"YB","B","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-11-24_YB-Bq1",2015-11-24,2015-11-24,"YB","B","1","Sc","Semibalanus_cariosus","Type 5",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-11-24_YB-Bq5",2015-11-24,2015-11-24,"YB","B","5","Sc","Semibalanus_cariosus","Type 5",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-11-24_YB-Bq6",2015-11-24,2015-11-24,"YB","B","6","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-11-24_YB-Bq1",2015-11-24,2015-11-24,"YB","B","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","15%",""
+"2015-11-24_YB-Bq5",2015-11-24,2015-11-24,"YB","B","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-11-24_YB-Bq6",2015-11-24,2015-11-24,"YB","B","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","35%",""
+"2015-11-24_YB-BBq1",2015-11-24,2015-11-24,"YB","BB","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","8%","Counts likely low due to blur"
+"2015-11-24_YB-BBq2",2015-11-24,2015-11-24,"YB","BB","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","13%","Counts likely low due to water patches"
+"2015-11-24_YB-BBq9",2015-11-24,2015-11-24,"YB","BB","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","4%","Counts likely low due to blur"
+"2015-11-24_YB-BBq1",2015-11-24,2015-11-24,"YB","BB","1","Ae","Anemones","Type 14",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","8%","Counts likely low due to blur"
+"2015-11-24_YB-BBq2",2015-11-24,2015-11-24,"YB","BB","2","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","13%","Counts likely low due to water patches"
+"2015-11-24_YB-BBq9",2015-11-24,2015-11-24,"YB","BB","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","4%","Counts likely low due to blur"
+"2015-11-24_YB-BBq1",2015-11-24,2015-11-24,"YB","BB","1","Bg","Balanus_glandula","Type 1",1472,0.0875,16822.8571428571,NA,"Stephanie Merhoff","Finished","Full","Full","8%","Counts likely low due to blur"
+"2015-11-24_YB-BBq2",2015-11-24,2015-11-24,"YB","BB","2","Bg","Balanus_glandula","Type 1",316,0.0875,3611.42857142857,NA,"Stephanie Merhoff","Finished","Full","Full","13%","Counts likely low due to water patches"
+"2015-11-24_YB-BBq9",2015-11-24,2015-11-24,"YB","BB","9","Bg","Balanus_glandula","Type 1",1365,0.015625,87360,"c","Stephanie Merhoff","Finished","Full","Cropped","4%","Counts likely low due to blur"
+"2015-11-24_YB-BBq1",2015-11-24,2015-11-24,"YB","BB","1","BgD","Balanus_glandula_(dead)","Type 2",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","8%","Counts likely low due to blur"
+"2015-11-24_YB-BBq2",2015-11-24,2015-11-24,"YB","BB","2","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","13%","Counts likely low due to water patches"
+"2015-11-24_YB-BBq9",2015-11-24,2015-11-24,"YB","BB","9","BgD","Balanus_glandula_(dead)","Type 2",8,0.015625,512,"c","Stephanie Merhoff","Finished","Full","Cropped","4%","Counts likely low due to blur"
+"2015-11-24_YB-BBq1",2015-11-24,2015-11-24,"YB","BB","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","8%","Counts likely low due to blur"
+"2015-11-24_YB-BBq2",2015-11-24,2015-11-24,"YB","BB","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","13%","Counts likely low due to water patches"
+"2015-11-24_YB-BBq9",2015-11-24,2015-11-24,"YB","BB","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","4%","Counts likely low due to blur"
+"2015-11-24_YB-BBq1",2015-11-24,2015-11-24,"YB","BB","1","Cth","Chthamalus_dalli","Type 3",70,0.0875,800,NA,"Stephanie Merhoff","Finished","Full","Full","8%","Counts likely low due to blur"
+"2015-11-24_YB-BBq2",2015-11-24,2015-11-24,"YB","BB","2","Cth","Chthamalus_dalli","Type 3",7,0.0875,80,NA,"Stephanie Merhoff","Finished","Full","Full","13%","Counts likely low due to water patches"
+"2015-11-24_YB-BBq9",2015-11-24,2015-11-24,"YB","BB","9","Cth","Chthamalus_dalli","Type 3",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","4%","Counts likely low due to blur"
+"2015-11-24_YB-BBq1",2015-11-24,2015-11-24,"YB","BB","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","8%","Counts likely low due to blur"
+"2015-11-24_YB-BBq2",2015-11-24,2015-11-24,"YB","BB","2","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","13%","Counts likely low due to water patches"
+"2015-11-24_YB-BBq9",2015-11-24,2015-11-24,"YB","BB","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.015625,0,"c","Stephanie Merhoff","Finished","Full","Cropped","4%","Counts likely low due to blur"
+"2015-11-24_YB-BBq1",2015-11-24,2015-11-24,"YB","BB","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","8%","Counts likely low due to blur"
+"2015-11-24_YB-BBq2",2015-11-24,2015-11-24,"YB","BB","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","13%","Counts likely low due to water patches"
+"2015-11-24_YB-BBq9",2015-11-24,2015-11-24,"YB","BB","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","4%","Counts likely low due to blur"
+"2015-11-24_YB-BBq1",2015-11-24,2015-11-24,"YB","BB","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","8%","Counts likely low due to blur"
+"2015-11-24_YB-BBq2",2015-11-24,2015-11-24,"YB","BB","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","13%","Counts likely low due to water patches"
+"2015-11-24_YB-BBq9",2015-11-24,2015-11-24,"YB","BB","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","4%","Counts likely low due to blur"
+"2015-11-24_YB-BBq1",2015-11-24,2015-11-24,"YB","BB","1","Lim","Limpets","Type 12",95,0.0875,1085.71428571429,NA,"Stephanie Merhoff","Finished","Full","Full","8%","Counts likely low due to blur"
+"2015-11-24_YB-BBq2",2015-11-24,2015-11-24,"YB","BB","2","Lim","Limpets","Type 12",56,0.0875,640,NA,"Stephanie Merhoff","Finished","Full","Full","13%","Counts likely low due to water patches"
+"2015-11-24_YB-BBq9",2015-11-24,2015-11-24,"YB","BB","9","Lim","Limpets","Type 12",118,0.0875,1348.57142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","4%","Counts likely low due to blur"
+"2015-11-24_YB-BBq1",2015-11-24,2015-11-24,"YB","BB","1","Ls","Littorina_sitkana","Type 13",70,0.0875,800,NA,"Stephanie Merhoff","Finished","Full","Full","8%","Counts likely low due to blur"
+"2015-11-24_YB-BBq2",2015-11-24,2015-11-24,"YB","BB","2","Ls","Littorina_sitkana","Type 13",33,0.0875,377.142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","13%","Counts likely low due to water patches"
+"2015-11-24_YB-BBq9",2015-11-24,2015-11-24,"YB","BB","9","Ls","Littorina_sitkana","Type 13",163,0.0875,1862.85714285714,NA,"Stephanie Merhoff","Finished","Full","Cropped","4%","Counts likely low due to blur"
+"2015-11-24_YB-BBq1",2015-11-24,2015-11-24,"YB","BB","1","Mc","Mytilus_californianus","Type 17",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","8%","Counts likely low due to blur"
+"2015-11-24_YB-BBq2",2015-11-24,2015-11-24,"YB","BB","2","Mc","Mytilus_californianus","Type 17",4,0.0875,45.7142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","13%","Counts likely low due to water patches"
+"2015-11-24_YB-BBq9",2015-11-24,2015-11-24,"YB","BB","9","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","4%","Counts likely low due to blur"
+"2015-11-24_YB-BBq1",2015-11-24,2015-11-24,"YB","BB","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","8%","Counts likely low due to blur"
+"2015-11-24_YB-BBq2",2015-11-24,2015-11-24,"YB","BB","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","13%","Counts likely low due to water patches"
+"2015-11-24_YB-BBq9",2015-11-24,2015-11-24,"YB","BB","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","4%","Counts likely low due to blur"
+"2015-11-24_YB-BBq1",2015-11-24,2015-11-24,"YB","BB","1","Myt","Mytilus_spp","Type 7",71,0.0875,811.428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","8%","Counts likely low due to blur"
+"2015-11-24_YB-BBq2",2015-11-24,2015-11-24,"YB","BB","2","Myt","Mytilus_spp","Type 7",72,0.0875,822.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","13%","Counts likely low due to water patches"
+"2015-11-24_YB-BBq9",2015-11-24,2015-11-24,"YB","BB","9","Myt","Mytilus_spp","Type 7",30,0.0875,342.857142857143,NA,"Stephanie Merhoff","Finished","Full","Cropped","4%","Counts likely low due to blur"
+"2015-11-24_YB-BBq1",2015-11-24,2015-11-24,"YB","BB","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","8%","Counts likely low due to blur"
+"2015-11-24_YB-BBq2",2015-11-24,2015-11-24,"YB","BB","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","13%","Counts likely low due to water patches"
+"2015-11-24_YB-BBq9",2015-11-24,2015-11-24,"YB","BB","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","4%","Counts likely low due to blur"
+"2015-11-24_YB-BBq1",2015-11-24,2015-11-24,"YB","BB","1","Mt","Mytilus_trossulus","Type 15",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","8%","Counts likely low due to blur"
+"2015-11-24_YB-BBq2",2015-11-24,2015-11-24,"YB","BB","2","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","13%","Counts likely low due to water patches"
+"2015-11-24_YB-BBq9",2015-11-24,2015-11-24,"YB","BB","9","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","4%","Counts likely low due to blur"
+"2015-11-24_YB-BBq1",2015-11-24,2015-11-24,"YB","BB","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","8%","Counts likely low due to blur"
+"2015-11-24_YB-BBq2",2015-11-24,2015-11-24,"YB","BB","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","13%","Counts likely low due to water patches"
+"2015-11-24_YB-BBq9",2015-11-24,2015-11-24,"YB","BB","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","4%","Counts likely low due to blur"
+"2015-11-24_YB-BBq1",2015-11-24,2015-11-24,"YB","BB","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","8%","Counts likely low due to blur"
+"2015-11-24_YB-BBq2",2015-11-24,2015-11-24,"YB","BB","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","13%","Counts likely low due to water patches"
+"2015-11-24_YB-BBq9",2015-11-24,2015-11-24,"YB","BB","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","4%","Counts likely low due to blur"
+"2015-11-24_YB-BBq1",2015-11-24,2015-11-24,"YB","BB","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","8%","Counts likely low due to blur"
+"2015-11-24_YB-BBq2",2015-11-24,2015-11-24,"YB","BB","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","13%","Counts likely low due to water patches"
+"2015-11-24_YB-BBq9",2015-11-24,2015-11-24,"YB","BB","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","4%","Counts likely low due to blur"
+"2015-11-24_YB-BBq1",2015-11-24,2015-11-24,"YB","BB","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","8%","Counts likely low due to blur"
+"2015-11-24_YB-BBq2",2015-11-24,2015-11-24,"YB","BB","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","13%","Counts likely low due to water patches"
+"2015-11-24_YB-BBq9",2015-11-24,2015-11-24,"YB","BB","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","4%","Counts likely low due to blur"
+"2015-11-24_YB-BBq1",2015-11-24,2015-11-24,"YB","BB","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","8%","Counts likely low due to blur"
+"2015-11-24_YB-BBq2",2015-11-24,2015-11-24,"YB","BB","2","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","13%","Counts likely low due to water patches"
+"2015-11-24_YB-BBq9",2015-11-24,2015-11-24,"YB","BB","9","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","4%","Counts likely low due to blur"
+"2015-11-24_YB-BBq1",2015-11-24,2015-11-24,"YB","BB","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","8%","Counts likely low due to blur"
+"2015-11-24_YB-BBq2",2015-11-24,2015-11-24,"YB","BB","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","13%","Counts likely low due to water patches"
+"2015-11-24_YB-BBq9",2015-11-24,2015-11-24,"YB","BB","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","4%","Counts likely low due to blur"
+"2015-11-24_YB-BBq1",2015-11-24,2015-11-24,"YB","BB","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","8%","Counts likely low due to blur"
+"2015-11-24_YB-BBq2",2015-11-24,2015-11-24,"YB","BB","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","13%","Counts likely low due to water patches"
+"2015-11-24_YB-BBq9",2015-11-24,2015-11-24,"YB","BB","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","4%","Counts likely low due to blur"
+"2015-11-24_YB-BBq1",2015-11-24,2015-11-24,"YB","BB","1","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","8%","Counts likely low due to blur"
+"2015-11-24_YB-BBq2",2015-11-24,2015-11-24,"YB","BB","2","Pp","Pollicipes_polymerus","Type 11",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","13%","Counts likely low due to water patches"
+"2015-11-24_YB-BBq9",2015-11-24,2015-11-24,"YB","BB","9","Pp","Pollicipes_polymerus","Type 11",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","4%","Counts likely low due to blur"
+"2015-11-24_YB-BBq1",2015-11-24,2015-11-24,"YB","BB","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","8%","Counts likely low due to blur"
+"2015-11-24_YB-BBq2",2015-11-24,2015-11-24,"YB","BB","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","13%","Counts likely low due to water patches"
+"2015-11-24_YB-BBq9",2015-11-24,2015-11-24,"YB","BB","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","4%","Counts likely low due to blur"
+"2015-11-24_YB-BBq1",2015-11-24,2015-11-24,"YB","BB","1","Sc","Semibalanus_cariosus","Type 5",4,0.0875,45.7142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","8%","Counts likely low due to blur"
+"2015-11-24_YB-BBq2",2015-11-24,2015-11-24,"YB","BB","2","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","13%","Counts likely low due to water patches"
+"2015-11-24_YB-BBq9",2015-11-24,2015-11-24,"YB","BB","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","4%","Counts likely low due to blur"
+"2015-11-24_YB-BBq1",2015-11-24,2015-11-24,"YB","BB","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","8%","Counts likely low due to blur"
+"2015-11-24_YB-BBq2",2015-11-24,2015-11-24,"YB","BB","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","13%","Counts likely low due to water patches"
+"2015-11-24_YB-BBq9",2015-11-24,2015-11-24,"YB","BB","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Cropped","4%","Counts likely low due to blur"
+"2015-11-24_YB-BCq3",2015-11-24,2015-11-24,"YB","BC","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","8%","Counts likely low due to glare"
+"2015-11-24_YB-BCq5",2015-11-24,2015-11-24,"YB","BC","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to glare"
+"2015-11-24_YB-BCq9",2015-11-24,2015-11-24,"YB","BC","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-11-24_YB-BCq3",2015-11-24,2015-11-24,"YB","BC","3","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","8%","Counts likely low due to glare"
+"2015-11-24_YB-BCq5",2015-11-24,2015-11-24,"YB","BC","5","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to glare"
+"2015-11-24_YB-BCq9",2015-11-24,2015-11-24,"YB","BC","9","Ae","Anemones","Type 14",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-11-24_YB-BCq3",2015-11-24,2015-11-24,"YB","BC","3","Bg","Balanus_glandula","Type 1",2129,0.0875,24331.4285714286,NA,"Stephanie Merhoff","Finished","Full","Full","8%","Counts likely low due to glare"
+"2015-11-24_YB-BCq5",2015-11-24,2015-11-24,"YB","BC","5","Bg","Balanus_glandula","Type 1",350,0.0875,4000,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to glare"
+"2015-11-24_YB-BCq9",2015-11-24,2015-11-24,"YB","BC","9","Bg","Balanus_glandula","Type 1",893,0.0875,10205.7142857143,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-11-24_YB-BCq3",2015-11-24,2015-11-24,"YB","BC","3","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","8%","Counts likely low due to glare"
+"2015-11-24_YB-BCq5",2015-11-24,2015-11-24,"YB","BC","5","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to glare"
+"2015-11-24_YB-BCq9",2015-11-24,2015-11-24,"YB","BC","9","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-11-24_YB-BCq3",2015-11-24,2015-11-24,"YB","BC","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","8%","Counts likely low due to glare"
+"2015-11-24_YB-BCq5",2015-11-24,2015-11-24,"YB","BC","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to glare"
+"2015-11-24_YB-BCq9",2015-11-24,2015-11-24,"YB","BC","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-11-24_YB-BCq3",2015-11-24,2015-11-24,"YB","BC","3","Cth","Chthamalus_dalli","Type 3",487,0.0875,5565.71428571429,NA,"Stephanie Merhoff","Finished","Full","Full","8%","Counts likely low due to glare"
+"2015-11-24_YB-BCq5",2015-11-24,2015-11-24,"YB","BC","5","Cth","Chthamalus_dalli","Type 3",146,0.0875,1668.57142857143,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to glare"
+"2015-11-24_YB-BCq9",2015-11-24,2015-11-24,"YB","BC","9","Cth","Chthamalus_dalli","Type 3",116,0.0875,1325.71428571429,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-11-24_YB-BCq3",2015-11-24,2015-11-24,"YB","BC","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","8%","Counts likely low due to glare"
+"2015-11-24_YB-BCq5",2015-11-24,2015-11-24,"YB","BC","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to glare"
+"2015-11-24_YB-BCq9",2015-11-24,2015-11-24,"YB","BC","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-11-24_YB-BCq3",2015-11-24,2015-11-24,"YB","BC","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","8%","Counts likely low due to glare"
+"2015-11-24_YB-BCq5",2015-11-24,2015-11-24,"YB","BC","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to glare"
+"2015-11-24_YB-BCq9",2015-11-24,2015-11-24,"YB","BC","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-11-24_YB-BCq3",2015-11-24,2015-11-24,"YB","BC","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","8%","Counts likely low due to glare"
+"2015-11-24_YB-BCq5",2015-11-24,2015-11-24,"YB","BC","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to glare"
+"2015-11-24_YB-BCq9",2015-11-24,2015-11-24,"YB","BC","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-11-24_YB-BCq3",2015-11-24,2015-11-24,"YB","BC","3","Lim","Limpets","Type 12",262,0.0875,2994.28571428571,NA,"Stephanie Merhoff","Finished","Full","Full","8%","Counts likely low due to glare"
+"2015-11-24_YB-BCq5",2015-11-24,2015-11-24,"YB","BC","5","Lim","Limpets","Type 12",132,0.0875,1508.57142857143,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to glare"
+"2015-11-24_YB-BCq9",2015-11-24,2015-11-24,"YB","BC","9","Lim","Limpets","Type 12",110,0.0875,1257.14285714286,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-11-24_YB-BCq3",2015-11-24,2015-11-24,"YB","BC","3","Ls","Littorina_sitkana","Type 13",268,0.0875,3062.85714285714,NA,"Stephanie Merhoff","Finished","Full","Full","8%","Counts likely low due to glare"
+"2015-11-24_YB-BCq5",2015-11-24,2015-11-24,"YB","BC","5","Ls","Littorina_sitkana","Type 13",98,0.0875,1120,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to glare"
+"2015-11-24_YB-BCq9",2015-11-24,2015-11-24,"YB","BC","9","Ls","Littorina_sitkana","Type 13",174,0.0875,1988.57142857143,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-11-24_YB-BCq3",2015-11-24,2015-11-24,"YB","BC","3","Mc","Mytilus_californianus","Type 17",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","8%","Counts likely low due to glare"
+"2015-11-24_YB-BCq5",2015-11-24,2015-11-24,"YB","BC","5","Mc","Mytilus_californianus","Type 17",4,0.0875,45.7142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to glare"
+"2015-11-24_YB-BCq9",2015-11-24,2015-11-24,"YB","BC","9","Mc","Mytilus_californianus","Type 17",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-11-24_YB-BCq3",2015-11-24,2015-11-24,"YB","BC","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","8%","Counts likely low due to glare"
+"2015-11-24_YB-BCq5",2015-11-24,2015-11-24,"YB","BC","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to glare"
+"2015-11-24_YB-BCq9",2015-11-24,2015-11-24,"YB","BC","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-11-24_YB-BCq3",2015-11-24,2015-11-24,"YB","BC","3","Myt","Mytilus_spp","Type 7",22,0.0875,251.428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","8%","Counts likely low due to glare"
+"2015-11-24_YB-BCq5",2015-11-24,2015-11-24,"YB","BC","5","Myt","Mytilus_spp","Type 7",26,0.0875,297.142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to glare"
+"2015-11-24_YB-BCq9",2015-11-24,2015-11-24,"YB","BC","9","Myt","Mytilus_spp","Type 7",118,0.0875,1348.57142857143,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-11-24_YB-BCq3",2015-11-24,2015-11-24,"YB","BC","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","8%","Counts likely low due to glare"
+"2015-11-24_YB-BCq5",2015-11-24,2015-11-24,"YB","BC","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to glare"
+"2015-11-24_YB-BCq9",2015-11-24,2015-11-24,"YB","BC","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-11-24_YB-BCq3",2015-11-24,2015-11-24,"YB","BC","3","Mt","Mytilus_trossulus","Type 15",6,0.0875,68.5714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","8%","Counts likely low due to glare"
+"2015-11-24_YB-BCq5",2015-11-24,2015-11-24,"YB","BC","5","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to glare"
+"2015-11-24_YB-BCq9",2015-11-24,2015-11-24,"YB","BC","9","Mt","Mytilus_trossulus","Type 15",4,0.0875,45.7142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-11-24_YB-BCq3",2015-11-24,2015-11-24,"YB","BC","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","8%","Counts likely low due to glare"
+"2015-11-24_YB-BCq5",2015-11-24,2015-11-24,"YB","BC","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to glare"
+"2015-11-24_YB-BCq9",2015-11-24,2015-11-24,"YB","BC","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-11-24_YB-BCq3",2015-11-24,2015-11-24,"YB","BC","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","8%","Counts likely low due to glare"
+"2015-11-24_YB-BCq5",2015-11-24,2015-11-24,"YB","BC","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to glare"
+"2015-11-24_YB-BCq9",2015-11-24,2015-11-24,"YB","BC","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-11-24_YB-BCq3",2015-11-24,2015-11-24,"YB","BC","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","8%","Counts likely low due to glare"
+"2015-11-24_YB-BCq5",2015-11-24,2015-11-24,"YB","BC","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to glare"
+"2015-11-24_YB-BCq9",2015-11-24,2015-11-24,"YB","BC","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-11-24_YB-BCq3",2015-11-24,2015-11-24,"YB","BC","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","8%","Counts likely low due to glare"
+"2015-11-24_YB-BCq5",2015-11-24,2015-11-24,"YB","BC","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to glare"
+"2015-11-24_YB-BCq9",2015-11-24,2015-11-24,"YB","BC","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-11-24_YB-BCq3",2015-11-24,2015-11-24,"YB","BC","3","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","8%","Counts likely low due to glare"
+"2015-11-24_YB-BCq5",2015-11-24,2015-11-24,"YB","BC","5","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to glare"
+"2015-11-24_YB-BCq9",2015-11-24,2015-11-24,"YB","BC","9","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-11-24_YB-BCq3",2015-11-24,2015-11-24,"YB","BC","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","8%","Counts likely low due to glare"
+"2015-11-24_YB-BCq5",2015-11-24,2015-11-24,"YB","BC","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to glare"
+"2015-11-24_YB-BCq9",2015-11-24,2015-11-24,"YB","BC","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-11-24_YB-BCq3",2015-11-24,2015-11-24,"YB","BC","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","8%","Counts likely low due to glare"
+"2015-11-24_YB-BCq5",2015-11-24,2015-11-24,"YB","BC","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to glare"
+"2015-11-24_YB-BCq9",2015-11-24,2015-11-24,"YB","BC","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-11-24_YB-BCq3",2015-11-24,2015-11-24,"YB","BC","3","Pp","Pollicipes_polymerus","Type 11",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","8%","Counts likely low due to glare"
+"2015-11-24_YB-BCq5",2015-11-24,2015-11-24,"YB","BC","5","Pp","Pollicipes_polymerus","Type 11",28,0.0875,320,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to glare"
+"2015-11-24_YB-BCq9",2015-11-24,2015-11-24,"YB","BC","9","Pp","Pollicipes_polymerus","Type 11",418,0.0875,4777.14285714286,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-11-24_YB-BCq3",2015-11-24,2015-11-24,"YB","BC","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","8%","Counts likely low due to glare"
+"2015-11-24_YB-BCq5",2015-11-24,2015-11-24,"YB","BC","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to glare"
+"2015-11-24_YB-BCq9",2015-11-24,2015-11-24,"YB","BC","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-11-24_YB-BCq3",2015-11-24,2015-11-24,"YB","BC","3","Sc","Semibalanus_cariosus","Type 5",4,0.0875,45.7142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","8%","Counts likely low due to glare"
+"2015-11-24_YB-BCq5",2015-11-24,2015-11-24,"YB","BC","5","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to glare"
+"2015-11-24_YB-BCq9",2015-11-24,2015-11-24,"YB","BC","9","Sc","Semibalanus_cariosus","Type 5",6,0.0875,68.5714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-11-24_YB-BCq3",2015-11-24,2015-11-24,"YB","BC","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","8%","Counts likely low due to glare"
+"2015-11-24_YB-BCq5",2015-11-24,2015-11-24,"YB","BC","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","30%","Counts likely low due to glare"
+"2015-11-24_YB-BCq9",2015-11-24,2015-11-24,"YB","BC","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","35%","Counts likely low due to glare"
+"2015-11-24_YB-BDq1",2015-11-24,2015-11-24,"YB","BD","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to blur."
+"2015-11-24_YB-BDq5",2015-11-24,2015-11-24,"YB","BD","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts low due to glare, water, and blur. Many Pollicipes recruits."
+"2015-11-24_YB-BDq7",2015-11-24,2015-11-24,"YB","BD","7","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to glare and blur. Many Pollicipes recruits."
+"2015-11-24_YB-BDq1",2015-11-24,2015-11-24,"YB","BD","1","Ae","Anemones","Type 14",24,0.0875,274.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to blur."
+"2015-11-24_YB-BDq5",2015-11-24,2015-11-24,"YB","BD","5","Ae","Anemones","Type 14",41,0.0875,468.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts low due to glare, water, and blur. Many Pollicipes recruits."
+"2015-11-24_YB-BDq7",2015-11-24,2015-11-24,"YB","BD","7","Ae","Anemones","Type 14",101,0.0875,1154.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to glare and blur. Many Pollicipes recruits."
+"2015-11-24_YB-BDq1",2015-11-24,2015-11-24,"YB","BD","1","Bg","Balanus_glandula","Type 1",2449,0.0875,27988.5714285714,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to blur."
+"2015-11-24_YB-BDq5",2015-11-24,2015-11-24,"YB","BD","5","Bg","Balanus_glandula","Type 1",1333,0.0875,15234.2857142857,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts low due to glare, water, and blur. Many Pollicipes recruits."
+"2015-11-24_YB-BDq7",2015-11-24,2015-11-24,"YB","BD","7","Bg","Balanus_glandula","Type 1",526,0.0875,6011.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to glare and blur. Many Pollicipes recruits."
+"2015-11-24_YB-BDq1",2015-11-24,2015-11-24,"YB","BD","1","BgD","Balanus_glandula_(dead)","Type 2",11,0.0875,125.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to blur."
+"2015-11-24_YB-BDq5",2015-11-24,2015-11-24,"YB","BD","5","BgD","Balanus_glandula_(dead)","Type 2",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts low due to glare, water, and blur. Many Pollicipes recruits."
+"2015-11-24_YB-BDq7",2015-11-24,2015-11-24,"YB","BD","7","BgD","Balanus_glandula_(dead)","Type 2",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to glare and blur. Many Pollicipes recruits."
+"2015-11-24_YB-BDq1",2015-11-24,2015-11-24,"YB","BD","1","Chi","Chiton_spp","Type 22",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to blur."
+"2015-11-24_YB-BDq5",2015-11-24,2015-11-24,"YB","BD","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts low due to glare, water, and blur. Many Pollicipes recruits."
+"2015-11-24_YB-BDq7",2015-11-24,2015-11-24,"YB","BD","7","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to glare and blur. Many Pollicipes recruits."
+"2015-11-24_YB-BDq1",2015-11-24,2015-11-24,"YB","BD","1","Cth","Chthamalus_dalli","Type 3",846,0.0875,9668.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to blur."
+"2015-11-24_YB-BDq5",2015-11-24,2015-11-24,"YB","BD","5","Cth","Chthamalus_dalli","Type 3",83,0.0875,948.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts low due to glare, water, and blur. Many Pollicipes recruits."
+"2015-11-24_YB-BDq7",2015-11-24,2015-11-24,"YB","BD","7","Cth","Chthamalus_dalli","Type 3",325,0.0875,3714.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to glare and blur. Many Pollicipes recruits."
+"2015-11-24_YB-BDq1",2015-11-24,2015-11-24,"YB","BD","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to blur."
+"2015-11-24_YB-BDq5",2015-11-24,2015-11-24,"YB","BD","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts low due to glare, water, and blur. Many Pollicipes recruits."
+"2015-11-24_YB-BDq7",2015-11-24,2015-11-24,"YB","BD","7","CthD","Chthamalus_dalli (dead)","Type 4",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to glare and blur. Many Pollicipes recruits."
+"2015-11-24_YB-BDq1",2015-11-24,2015-11-24,"YB","BD","1","Emp","Emplectonema worm","Type 23",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to blur."
+"2015-11-24_YB-BDq5",2015-11-24,2015-11-24,"YB","BD","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts low due to glare, water, and blur. Many Pollicipes recruits."
+"2015-11-24_YB-BDq7",2015-11-24,2015-11-24,"YB","BD","7","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to glare and blur. Many Pollicipes recruits."
+"2015-11-24_YB-BDq1",2015-11-24,2015-11-24,"YB","BD","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to blur."
+"2015-11-24_YB-BDq5",2015-11-24,2015-11-24,"YB","BD","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts low due to glare, water, and blur. Many Pollicipes recruits."
+"2015-11-24_YB-BDq7",2015-11-24,2015-11-24,"YB","BD","7","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to glare and blur. Many Pollicipes recruits."
+"2015-11-24_YB-BDq1",2015-11-24,2015-11-24,"YB","BD","1","Lim","Limpets","Type 12",373,0.0875,4262.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to blur."
+"2015-11-24_YB-BDq5",2015-11-24,2015-11-24,"YB","BD","5","Lim","Limpets","Type 12",289,0.0875,3302.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts low due to glare, water, and blur. Many Pollicipes recruits."
+"2015-11-24_YB-BDq7",2015-11-24,2015-11-24,"YB","BD","7","Lim","Limpets","Type 12",306,0.0875,3497.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to glare and blur. Many Pollicipes recruits."
+"2015-11-24_YB-BDq1",2015-11-24,2015-11-24,"YB","BD","1","Ls","Littorina_sitkana","Type 13",100,0.0875,1142.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to blur."
+"2015-11-24_YB-BDq5",2015-11-24,2015-11-24,"YB","BD","5","Ls","Littorina_sitkana","Type 13",73,0.0875,834.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts low due to glare, water, and blur. Many Pollicipes recruits."
+"2015-11-24_YB-BDq7",2015-11-24,2015-11-24,"YB","BD","7","Ls","Littorina_sitkana","Type 13",343,0.0875,3920,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to glare and blur. Many Pollicipes recruits."
+"2015-11-24_YB-BDq1",2015-11-24,2015-11-24,"YB","BD","1","Mc","Mytilus_californianus","Type 17",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to blur."
+"2015-11-24_YB-BDq5",2015-11-24,2015-11-24,"YB","BD","5","Mc","Mytilus_californianus","Type 17",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts low due to glare, water, and blur. Many Pollicipes recruits."
+"2015-11-24_YB-BDq7",2015-11-24,2015-11-24,"YB","BD","7","Mc","Mytilus_californianus","Type 17",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to glare and blur. Many Pollicipes recruits."
+"2015-11-24_YB-BDq1",2015-11-24,2015-11-24,"YB","BD","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to blur."
+"2015-11-24_YB-BDq5",2015-11-24,2015-11-24,"YB","BD","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts low due to glare, water, and blur. Many Pollicipes recruits."
+"2015-11-24_YB-BDq7",2015-11-24,2015-11-24,"YB","BD","7","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to glare and blur. Many Pollicipes recruits."
+"2015-11-24_YB-BDq1",2015-11-24,2015-11-24,"YB","BD","1","Myt","Mytilus_spp","Type 7",120,0.0875,1371.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to blur."
+"2015-11-24_YB-BDq5",2015-11-24,2015-11-24,"YB","BD","5","Myt","Mytilus_spp","Type 7",69,0.0875,788.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts low due to glare, water, and blur. Many Pollicipes recruits."
+"2015-11-24_YB-BDq7",2015-11-24,2015-11-24,"YB","BD","7","Myt","Mytilus_spp","Type 7",147,0.0875,1680,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to glare and blur. Many Pollicipes recruits."
+"2015-11-24_YB-BDq1",2015-11-24,2015-11-24,"YB","BD","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to blur."
+"2015-11-24_YB-BDq5",2015-11-24,2015-11-24,"YB","BD","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts low due to glare, water, and blur. Many Pollicipes recruits."
+"2015-11-24_YB-BDq7",2015-11-24,2015-11-24,"YB","BD","7","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to glare and blur. Many Pollicipes recruits."
+"2015-11-24_YB-BDq1",2015-11-24,2015-11-24,"YB","BD","1","Mt","Mytilus_trossulus","Type 15",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to blur."
+"2015-11-24_YB-BDq5",2015-11-24,2015-11-24,"YB","BD","5","Mt","Mytilus_trossulus","Type 15",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts low due to glare, water, and blur. Many Pollicipes recruits."
+"2015-11-24_YB-BDq7",2015-11-24,2015-11-24,"YB","BD","7","Mt","Mytilus_trossulus","Type 15",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to glare and blur. Many Pollicipes recruits."
+"2015-11-24_YB-BDq1",2015-11-24,2015-11-24,"YB","BD","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to blur."
+"2015-11-24_YB-BDq5",2015-11-24,2015-11-24,"YB","BD","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts low due to glare, water, and blur. Many Pollicipes recruits."
+"2015-11-24_YB-BDq7",2015-11-24,2015-11-24,"YB","BD","7","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to glare and blur. Many Pollicipes recruits."
+"2015-11-24_YB-BDq1",2015-11-24,2015-11-24,"YB","BD","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to blur."
+"2015-11-24_YB-BDq5",2015-11-24,2015-11-24,"YB","BD","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts low due to glare, water, and blur. Many Pollicipes recruits."
+"2015-11-24_YB-BDq7",2015-11-24,2015-11-24,"YB","BD","7","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to glare and blur. Many Pollicipes recruits."
+"2015-11-24_YB-BDq1",2015-11-24,2015-11-24,"YB","BD","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to blur."
+"2015-11-24_YB-BDq5",2015-11-24,2015-11-24,"YB","BD","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts low due to glare, water, and blur. Many Pollicipes recruits."
+"2015-11-24_YB-BDq7",2015-11-24,2015-11-24,"YB","BD","7","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to glare and blur. Many Pollicipes recruits."
+"2015-11-24_YB-BDq1",2015-11-24,2015-11-24,"YB","BD","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to blur."
+"2015-11-24_YB-BDq5",2015-11-24,2015-11-24,"YB","BD","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts low due to glare, water, and blur. Many Pollicipes recruits."
+"2015-11-24_YB-BDq7",2015-11-24,2015-11-24,"YB","BD","7","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to glare and blur. Many Pollicipes recruits."
+"2015-11-24_YB-BDq1",2015-11-24,2015-11-24,"YB","BD","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to blur."
+"2015-11-24_YB-BDq5",2015-11-24,2015-11-24,"YB","BD","5","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts low due to glare, water, and blur. Many Pollicipes recruits."
+"2015-11-24_YB-BDq7",2015-11-24,2015-11-24,"YB","BD","7","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to glare and blur. Many Pollicipes recruits."
+"2015-11-24_YB-BDq1",2015-11-24,2015-11-24,"YB","BD","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to blur."
+"2015-11-24_YB-BDq5",2015-11-24,2015-11-24,"YB","BD","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts low due to glare, water, and blur. Many Pollicipes recruits."
+"2015-11-24_YB-BDq7",2015-11-24,2015-11-24,"YB","BD","7","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to glare and blur. Many Pollicipes recruits."
+"2015-11-24_YB-BDq1",2015-11-24,2015-11-24,"YB","BD","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to blur."
+"2015-11-24_YB-BDq5",2015-11-24,2015-11-24,"YB","BD","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts low due to glare, water, and blur. Many Pollicipes recruits."
+"2015-11-24_YB-BDq7",2015-11-24,2015-11-24,"YB","BD","7","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to glare and blur. Many Pollicipes recruits."
+"2015-11-24_YB-BDq1",2015-11-24,2015-11-24,"YB","BD","1","Pp","Pollicipes_polymerus","Type 11",3289,0.0875,37588.5714285714,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to blur."
+"2015-11-24_YB-BDq5",2015-11-24,2015-11-24,"YB","BD","5","Pp","Pollicipes_polymerus","Type 11",4114,0.0875,47017.1428571429,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts low due to glare, water, and blur. Many Pollicipes recruits."
+"2015-11-24_YB-BDq7",2015-11-24,2015-11-24,"YB","BD","7","Pp","Pollicipes_polymerus","Type 11",4566,0.0875,52182.8571428571,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to glare and blur. Many Pollicipes recruits."
+"2015-11-24_YB-BDq1",2015-11-24,2015-11-24,"YB","BD","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to blur."
+"2015-11-24_YB-BDq5",2015-11-24,2015-11-24,"YB","BD","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts low due to glare, water, and blur. Many Pollicipes recruits."
+"2015-11-24_YB-BDq7",2015-11-24,2015-11-24,"YB","BD","7","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to glare and blur. Many Pollicipes recruits."
+"2015-11-24_YB-BDq1",2015-11-24,2015-11-24,"YB","BD","1","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to blur."
+"2015-11-24_YB-BDq5",2015-11-24,2015-11-24,"YB","BD","5","Sc","Semibalanus_cariosus","Type 5",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts low due to glare, water, and blur. Many Pollicipes recruits."
+"2015-11-24_YB-BDq7",2015-11-24,2015-11-24,"YB","BD","7","Sc","Semibalanus_cariosus","Type 5",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to glare and blur. Many Pollicipes recruits."
+"2015-11-24_YB-BDq1",2015-11-24,2015-11-24,"YB","BD","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","2%","Counts may be low due to blur."
+"2015-11-24_YB-BDq5",2015-11-24,2015-11-24,"YB","BD","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","8%","Counts low due to glare, water, and blur. Many Pollicipes recruits."
+"2015-11-24_YB-BDq7",2015-11-24,2015-11-24,"YB","BD","7","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","1%","Counts low due to glare and blur. Many Pollicipes recruits."
+"2015-11-24_YB-BEq2",2015-11-24,2015-11-24,"YB","BE","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BEq3",2015-11-24,2015-11-24,"YB","BE","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-11-24_YB-BEq6",2015-11-24,2015-11-24,"YB","BE","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-11-24_YB-BEq2",2015-11-24,2015-11-24,"YB","BE","2","Ae","Anemones","Type 14",8,0.0875,91.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BEq3",2015-11-24,2015-11-24,"YB","BE","3","Ae","Anemones","Type 14",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-11-24_YB-BEq6",2015-11-24,2015-11-24,"YB","BE","6","Ae","Anemones","Type 14",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-11-24_YB-BEq2",2015-11-24,2015-11-24,"YB","BE","2","Bg","Balanus_glandula","Type 1",43,0.0875,491.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BEq3",2015-11-24,2015-11-24,"YB","BE","3","Bg","Balanus_glandula","Type 1",235,0.0875,2685.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-11-24_YB-BEq6",2015-11-24,2015-11-24,"YB","BE","6","Bg","Balanus_glandula","Type 1",372,0.0875,4251.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-11-24_YB-BEq2",2015-11-24,2015-11-24,"YB","BE","2","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BEq3",2015-11-24,2015-11-24,"YB","BE","3","BgD","Balanus_glandula_(dead)","Type 2",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-11-24_YB-BEq6",2015-11-24,2015-11-24,"YB","BE","6","BgD","Balanus_glandula_(dead)","Type 2",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-11-24_YB-BEq2",2015-11-24,2015-11-24,"YB","BE","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BEq3",2015-11-24,2015-11-24,"YB","BE","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-11-24_YB-BEq6",2015-11-24,2015-11-24,"YB","BE","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-11-24_YB-BEq2",2015-11-24,2015-11-24,"YB","BE","2","Cth","Chthamalus_dalli","Type 3",133,0.0875,1520,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BEq3",2015-11-24,2015-11-24,"YB","BE","3","Cth","Chthamalus_dalli","Type 3",437,0.0875,4994.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-11-24_YB-BEq6",2015-11-24,2015-11-24,"YB","BE","6","Cth","Chthamalus_dalli","Type 3",285,0.0875,3257.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-11-24_YB-BEq2",2015-11-24,2015-11-24,"YB","BE","2","CthD","Chthamalus_dalli (dead)","Type 4",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BEq3",2015-11-24,2015-11-24,"YB","BE","3","CthD","Chthamalus_dalli (dead)","Type 4",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-11-24_YB-BEq6",2015-11-24,2015-11-24,"YB","BE","6","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-11-24_YB-BEq2",2015-11-24,2015-11-24,"YB","BE","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BEq3",2015-11-24,2015-11-24,"YB","BE","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-11-24_YB-BEq6",2015-11-24,2015-11-24,"YB","BE","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-11-24_YB-BEq2",2015-11-24,2015-11-24,"YB","BE","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BEq3",2015-11-24,2015-11-24,"YB","BE","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-11-24_YB-BEq6",2015-11-24,2015-11-24,"YB","BE","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-11-24_YB-BEq2",2015-11-24,2015-11-24,"YB","BE","2","Lim","Limpets","Type 12",89,0.0875,1017.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BEq3",2015-11-24,2015-11-24,"YB","BE","3","Lim","Limpets","Type 12",110,0.0875,1257.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-11-24_YB-BEq6",2015-11-24,2015-11-24,"YB","BE","6","Lim","Limpets","Type 12",104,0.0875,1188.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-11-24_YB-BEq2",2015-11-24,2015-11-24,"YB","BE","2","Ls","Littorina_sitkana","Type 13",89,0.0875,1017.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BEq3",2015-11-24,2015-11-24,"YB","BE","3","Ls","Littorina_sitkana","Type 13",28,0.0875,320,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-11-24_YB-BEq6",2015-11-24,2015-11-24,"YB","BE","6","Ls","Littorina_sitkana","Type 13",45,0.0875,514.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-11-24_YB-BEq2",2015-11-24,2015-11-24,"YB","BE","2","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BEq3",2015-11-24,2015-11-24,"YB","BE","3","Mc","Mytilus_californianus","Type 17",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-11-24_YB-BEq6",2015-11-24,2015-11-24,"YB","BE","6","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-11-24_YB-BEq2",2015-11-24,2015-11-24,"YB","BE","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BEq3",2015-11-24,2015-11-24,"YB","BE","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-11-24_YB-BEq6",2015-11-24,2015-11-24,"YB","BE","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-11-24_YB-BEq2",2015-11-24,2015-11-24,"YB","BE","2","Myt","Mytilus_spp","Type 7",23,0.0875,262.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BEq3",2015-11-24,2015-11-24,"YB","BE","3","Myt","Mytilus_spp","Type 7",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-11-24_YB-BEq6",2015-11-24,2015-11-24,"YB","BE","6","Myt","Mytilus_spp","Type 7",21,0.0875,240,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-11-24_YB-BEq2",2015-11-24,2015-11-24,"YB","BE","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BEq3",2015-11-24,2015-11-24,"YB","BE","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-11-24_YB-BEq6",2015-11-24,2015-11-24,"YB","BE","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-11-24_YB-BEq2",2015-11-24,2015-11-24,"YB","BE","2","Mt","Mytilus_trossulus","Type 15",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BEq3",2015-11-24,2015-11-24,"YB","BE","3","Mt","Mytilus_trossulus","Type 15",16,0.0875,182.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-11-24_YB-BEq6",2015-11-24,2015-11-24,"YB","BE","6","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-11-24_YB-BEq2",2015-11-24,2015-11-24,"YB","BE","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BEq3",2015-11-24,2015-11-24,"YB","BE","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-11-24_YB-BEq6",2015-11-24,2015-11-24,"YB","BE","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-11-24_YB-BEq2",2015-11-24,2015-11-24,"YB","BE","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BEq3",2015-11-24,2015-11-24,"YB","BE","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-11-24_YB-BEq6",2015-11-24,2015-11-24,"YB","BE","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-11-24_YB-BEq2",2015-11-24,2015-11-24,"YB","BE","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BEq3",2015-11-24,2015-11-24,"YB","BE","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-11-24_YB-BEq6",2015-11-24,2015-11-24,"YB","BE","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-11-24_YB-BEq2",2015-11-24,2015-11-24,"YB","BE","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BEq3",2015-11-24,2015-11-24,"YB","BE","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-11-24_YB-BEq6",2015-11-24,2015-11-24,"YB","BE","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-11-24_YB-BEq2",2015-11-24,2015-11-24,"YB","BE","2","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BEq3",2015-11-24,2015-11-24,"YB","BE","3","No","Nucella_ostrina","Type 9",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-11-24_YB-BEq6",2015-11-24,2015-11-24,"YB","BE","6","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-11-24_YB-BEq2",2015-11-24,2015-11-24,"YB","BE","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BEq3",2015-11-24,2015-11-24,"YB","BE","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-11-24_YB-BEq6",2015-11-24,2015-11-24,"YB","BE","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-11-24_YB-BEq2",2015-11-24,2015-11-24,"YB","BE","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BEq3",2015-11-24,2015-11-24,"YB","BE","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-11-24_YB-BEq6",2015-11-24,2015-11-24,"YB","BE","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-11-24_YB-BEq2",2015-11-24,2015-11-24,"YB","BE","2","Pp","Pollicipes_polymerus","Type 11",579,0.0875,6617.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BEq3",2015-11-24,2015-11-24,"YB","BE","3","Pp","Pollicipes_polymerus","Type 11",76,0.0875,868.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-11-24_YB-BEq6",2015-11-24,2015-11-24,"YB","BE","6","Pp","Pollicipes_polymerus","Type 11",348,0.0875,3977.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-11-24_YB-BEq2",2015-11-24,2015-11-24,"YB","BE","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BEq3",2015-11-24,2015-11-24,"YB","BE","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-11-24_YB-BEq6",2015-11-24,2015-11-24,"YB","BE","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-11-24_YB-BEq2",2015-11-24,2015-11-24,"YB","BE","2","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BEq3",2015-11-24,2015-11-24,"YB","BE","3","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-11-24_YB-BEq6",2015-11-24,2015-11-24,"YB","BE","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-11-24_YB-BEq2",2015-11-24,2015-11-24,"YB","BE","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","45%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BEq3",2015-11-24,2015-11-24,"YB","BE","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%",""
+"2015-11-24_YB-BEq6",2015-11-24,2015-11-24,"YB","BE","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","20%",""
+"2015-11-24_YB-BFq1",2015-11-24,2015-11-24,"YB","BF","1","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BFq4",2015-11-24,2015-11-24,"YB","BF","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BFq9",2015-11-24,2015-11-24,"YB","BF","9","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BFq1",2015-11-24,2015-11-24,"YB","BF","1","Ae","Anemones","Type 14",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BFq4",2015-11-24,2015-11-24,"YB","BF","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BFq9",2015-11-24,2015-11-24,"YB","BF","9","Ae","Anemones","Type 14",23,0.0875,262.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BFq1",2015-11-24,2015-11-24,"YB","BF","1","Bg","Balanus_glandula","Type 1",348,0.0875,3977.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BFq4",2015-11-24,2015-11-24,"YB","BF","4","Bg","Balanus_glandula","Type 1",584,0.0875,6674.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BFq9",2015-11-24,2015-11-24,"YB","BF","9","Bg","Balanus_glandula","Type 1",22,0.0875,251.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BFq1",2015-11-24,2015-11-24,"YB","BF","1","BgD","Balanus_glandula_(dead)","Type 2",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BFq4",2015-11-24,2015-11-24,"YB","BF","4","BgD","Balanus_glandula_(dead)","Type 2",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BFq9",2015-11-24,2015-11-24,"YB","BF","9","BgD","Balanus_glandula_(dead)","Type 2",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BFq1",2015-11-24,2015-11-24,"YB","BF","1","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BFq4",2015-11-24,2015-11-24,"YB","BF","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BFq9",2015-11-24,2015-11-24,"YB","BF","9","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BFq1",2015-11-24,2015-11-24,"YB","BF","1","Cth","Chthamalus_dalli","Type 3",361,0.0875,4125.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BFq4",2015-11-24,2015-11-24,"YB","BF","4","Cth","Chthamalus_dalli","Type 3",766,0.0875,8754.28571428572,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BFq9",2015-11-24,2015-11-24,"YB","BF","9","Cth","Chthamalus_dalli","Type 3",28,0.0875,320,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BFq1",2015-11-24,2015-11-24,"YB","BF","1","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BFq4",2015-11-24,2015-11-24,"YB","BF","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BFq9",2015-11-24,2015-11-24,"YB","BF","9","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BFq1",2015-11-24,2015-11-24,"YB","BF","1","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BFq4",2015-11-24,2015-11-24,"YB","BF","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BFq9",2015-11-24,2015-11-24,"YB","BF","9","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BFq1",2015-11-24,2015-11-24,"YB","BF","1","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BFq4",2015-11-24,2015-11-24,"YB","BF","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BFq9",2015-11-24,2015-11-24,"YB","BF","9","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BFq1",2015-11-24,2015-11-24,"YB","BF","1","Lim","Limpets","Type 12",198,0.0875,2262.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BFq4",2015-11-24,2015-11-24,"YB","BF","4","Lim","Limpets","Type 12",139,0.0875,1588.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BFq9",2015-11-24,2015-11-24,"YB","BF","9","Lim","Limpets","Type 12",78,0.0875,891.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BFq1",2015-11-24,2015-11-24,"YB","BF","1","Ls","Littorina_sitkana","Type 13",120,0.0875,1371.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BFq4",2015-11-24,2015-11-24,"YB","BF","4","Ls","Littorina_sitkana","Type 13",79,0.0875,902.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BFq9",2015-11-24,2015-11-24,"YB","BF","9","Ls","Littorina_sitkana","Type 13",99,0.0875,1131.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BFq1",2015-11-24,2015-11-24,"YB","BF","1","Mc","Mytilus_californianus","Type 17",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BFq4",2015-11-24,2015-11-24,"YB","BF","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BFq9",2015-11-24,2015-11-24,"YB","BF","9","Mc","Mytilus_californianus","Type 17",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BFq1",2015-11-24,2015-11-24,"YB","BF","1","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BFq4",2015-11-24,2015-11-24,"YB","BF","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BFq9",2015-11-24,2015-11-24,"YB","BF","9","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BFq1",2015-11-24,2015-11-24,"YB","BF","1","Myt","Mytilus_spp","Type 7",19,0.0875,217.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BFq4",2015-11-24,2015-11-24,"YB","BF","4","Myt","Mytilus_spp","Type 7",19,0.0875,217.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BFq9",2015-11-24,2015-11-24,"YB","BF","9","Myt","Mytilus_spp","Type 7",26,0.0875,297.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BFq1",2015-11-24,2015-11-24,"YB","BF","1","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BFq4",2015-11-24,2015-11-24,"YB","BF","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BFq9",2015-11-24,2015-11-24,"YB","BF","9","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BFq1",2015-11-24,2015-11-24,"YB","BF","1","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BFq4",2015-11-24,2015-11-24,"YB","BF","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BFq9",2015-11-24,2015-11-24,"YB","BF","9","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BFq1",2015-11-24,2015-11-24,"YB","BF","1","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BFq4",2015-11-24,2015-11-24,"YB","BF","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BFq9",2015-11-24,2015-11-24,"YB","BF","9","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BFq1",2015-11-24,2015-11-24,"YB","BF","1","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BFq4",2015-11-24,2015-11-24,"YB","BF","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BFq9",2015-11-24,2015-11-24,"YB","BF","9","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BFq1",2015-11-24,2015-11-24,"YB","BF","1","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BFq4",2015-11-24,2015-11-24,"YB","BF","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BFq9",2015-11-24,2015-11-24,"YB","BF","9","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BFq1",2015-11-24,2015-11-24,"YB","BF","1","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BFq4",2015-11-24,2015-11-24,"YB","BF","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BFq9",2015-11-24,2015-11-24,"YB","BF","9","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BFq1",2015-11-24,2015-11-24,"YB","BF","1","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BFq4",2015-11-24,2015-11-24,"YB","BF","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BFq9",2015-11-24,2015-11-24,"YB","BF","9","No","Nucella_ostrina","Type 9",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BFq1",2015-11-24,2015-11-24,"YB","BF","1","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BFq4",2015-11-24,2015-11-24,"YB","BF","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BFq9",2015-11-24,2015-11-24,"YB","BF","9","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BFq1",2015-11-24,2015-11-24,"YB","BF","1","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BFq4",2015-11-24,2015-11-24,"YB","BF","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BFq9",2015-11-24,2015-11-24,"YB","BF","9","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BFq1",2015-11-24,2015-11-24,"YB","BF","1","Pp","Pollicipes_polymerus","Type 11",518,0.0875,5920,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BFq4",2015-11-24,2015-11-24,"YB","BF","4","Pp","Pollicipes_polymerus","Type 11",319,0.0875,3645.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BFq9",2015-11-24,2015-11-24,"YB","BF","9","Pp","Pollicipes_polymerus","Type 11",425,0.0875,4857.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BFq1",2015-11-24,2015-11-24,"YB","BF","1","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BFq4",2015-11-24,2015-11-24,"YB","BF","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BFq9",2015-11-24,2015-11-24,"YB","BF","9","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BFq1",2015-11-24,2015-11-24,"YB","BF","1","Sc","Semibalanus_cariosus","Type 5",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BFq4",2015-11-24,2015-11-24,"YB","BF","4","Sc","Semibalanus_cariosus","Type 5",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BFq9",2015-11-24,2015-11-24,"YB","BF","9","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BFq1",2015-11-24,2015-11-24,"YB","BF","1","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","30%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BFq4",2015-11-24,2015-11-24,"YB","BF","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","25%","Counts may be low due to algae and glare."
+"2015-11-24_YB-BFq9",2015-11-24,2015-11-24,"YB","BF","9","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","70%","Counts may be low due to algae and glare."
+"2015-11-24_YB-Cq2",2015-11-24,2015-11-24,"YB","C","2","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-Cq4",2015-11-24,2015-11-24,"YB","C","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-Cq6",2015-11-24,2015-11-24,"YB","C","6","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-11-24_YB-Cq2",2015-11-24,2015-11-24,"YB","C","2","Ae","Anemones","Type 14",96,0.0875,1097.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-Cq4",2015-11-24,2015-11-24,"YB","C","4","Ae","Anemones","Type 14",124,0.0875,1417.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-Cq6",2015-11-24,2015-11-24,"YB","C","6","Ae","Anemones","Type 14",122,0.0875,1394.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-11-24_YB-Cq2",2015-11-24,2015-11-24,"YB","C","2","Bg","Balanus_glandula","Type 1",50,0.0875,571.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-Cq4",2015-11-24,2015-11-24,"YB","C","4","Bg","Balanus_glandula","Type 1",43,0.0875,491.428571428571,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-Cq6",2015-11-24,2015-11-24,"YB","C","6","Bg","Balanus_glandula","Type 1",54,0.0875,617.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-11-24_YB-Cq2",2015-11-24,2015-11-24,"YB","C","2","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-Cq4",2015-11-24,2015-11-24,"YB","C","4","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-Cq6",2015-11-24,2015-11-24,"YB","C","6","BgD","Balanus_glandula_(dead)","Type 2",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-11-24_YB-Cq2",2015-11-24,2015-11-24,"YB","C","2","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-Cq4",2015-11-24,2015-11-24,"YB","C","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-Cq6",2015-11-24,2015-11-24,"YB","C","6","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-11-24_YB-Cq2",2015-11-24,2015-11-24,"YB","C","2","Cth","Chthamalus_dalli","Type 3",42,0.0875,480,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-Cq4",2015-11-24,2015-11-24,"YB","C","4","Cth","Chthamalus_dalli","Type 3",165,0.0875,1885.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-Cq6",2015-11-24,2015-11-24,"YB","C","6","Cth","Chthamalus_dalli","Type 3",226,0.0875,2582.85714285714,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-11-24_YB-Cq2",2015-11-24,2015-11-24,"YB","C","2","CthD","Chthamalus_dalli (dead)","Type 4",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-Cq4",2015-11-24,2015-11-24,"YB","C","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-Cq6",2015-11-24,2015-11-24,"YB","C","6","CthD","Chthamalus_dalli (dead)","Type 4",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-11-24_YB-Cq2",2015-11-24,2015-11-24,"YB","C","2","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-Cq4",2015-11-24,2015-11-24,"YB","C","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-Cq6",2015-11-24,2015-11-24,"YB","C","6","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-11-24_YB-Cq2",2015-11-24,2015-11-24,"YB","C","2","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-Cq4",2015-11-24,2015-11-24,"YB","C","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-Cq6",2015-11-24,2015-11-24,"YB","C","6","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-11-24_YB-Cq2",2015-11-24,2015-11-24,"YB","C","2","Lim","Limpets","Type 12",94,0.0875,1074.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-Cq4",2015-11-24,2015-11-24,"YB","C","4","Lim","Limpets","Type 12",174,0.0875,1988.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-Cq6",2015-11-24,2015-11-24,"YB","C","6","Lim","Limpets","Type 12",136,0.0875,1554.28571428571,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-11-24_YB-Cq2",2015-11-24,2015-11-24,"YB","C","2","Ls","Littorina_sitkana","Type 13",63,0.0875,720,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-Cq4",2015-11-24,2015-11-24,"YB","C","4","Ls","Littorina_sitkana","Type 13",48,0.0875,548.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-Cq6",2015-11-24,2015-11-24,"YB","C","6","Ls","Littorina_sitkana","Type 13",84,0.0875,960,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-11-24_YB-Cq2",2015-11-24,2015-11-24,"YB","C","2","Mc","Mytilus_californianus","Type 17",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-Cq4",2015-11-24,2015-11-24,"YB","C","4","Mc","Mytilus_californianus","Type 17",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-Cq6",2015-11-24,2015-11-24,"YB","C","6","Mc","Mytilus_californianus","Type 17",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-11-24_YB-Cq2",2015-11-24,2015-11-24,"YB","C","2","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-Cq4",2015-11-24,2015-11-24,"YB","C","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-Cq6",2015-11-24,2015-11-24,"YB","C","6","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-11-24_YB-Cq2",2015-11-24,2015-11-24,"YB","C","2","Myt","Mytilus_spp","Type 7",40,0.0875,457.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-Cq4",2015-11-24,2015-11-24,"YB","C","4","Myt","Mytilus_spp","Type 7",52,0.0875,594.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-Cq6",2015-11-24,2015-11-24,"YB","C","6","Myt","Mytilus_spp","Type 7",56,0.0875,640,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-11-24_YB-Cq2",2015-11-24,2015-11-24,"YB","C","2","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-Cq4",2015-11-24,2015-11-24,"YB","C","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-Cq6",2015-11-24,2015-11-24,"YB","C","6","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-11-24_YB-Cq2",2015-11-24,2015-11-24,"YB","C","2","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-Cq4",2015-11-24,2015-11-24,"YB","C","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-Cq6",2015-11-24,2015-11-24,"YB","C","6","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-11-24_YB-Cq2",2015-11-24,2015-11-24,"YB","C","2","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-Cq4",2015-11-24,2015-11-24,"YB","C","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-Cq6",2015-11-24,2015-11-24,"YB","C","6","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-11-24_YB-Cq2",2015-11-24,2015-11-24,"YB","C","2","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-Cq4",2015-11-24,2015-11-24,"YB","C","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-Cq6",2015-11-24,2015-11-24,"YB","C","6","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-11-24_YB-Cq2",2015-11-24,2015-11-24,"YB","C","2","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-Cq4",2015-11-24,2015-11-24,"YB","C","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-Cq6",2015-11-24,2015-11-24,"YB","C","6","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-11-24_YB-Cq2",2015-11-24,2015-11-24,"YB","C","2","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-Cq4",2015-11-24,2015-11-24,"YB","C","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-Cq6",2015-11-24,2015-11-24,"YB","C","6","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-11-24_YB-Cq2",2015-11-24,2015-11-24,"YB","C","2","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-Cq4",2015-11-24,2015-11-24,"YB","C","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-Cq6",2015-11-24,2015-11-24,"YB","C","6","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-11-24_YB-Cq2",2015-11-24,2015-11-24,"YB","C","2","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-Cq4",2015-11-24,2015-11-24,"YB","C","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-Cq6",2015-11-24,2015-11-24,"YB","C","6","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-11-24_YB-Cq2",2015-11-24,2015-11-24,"YB","C","2","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-Cq4",2015-11-24,2015-11-24,"YB","C","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-Cq6",2015-11-24,2015-11-24,"YB","C","6","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-11-24_YB-Cq2",2015-11-24,2015-11-24,"YB","C","2","Pp","Pollicipes_polymerus","Type 11",1265,0.0875,14457.1428571429,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-Cq4",2015-11-24,2015-11-24,"YB","C","4","Pp","Pollicipes_polymerus","Type 11",1141,0.0875,13040,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-Cq6",2015-11-24,2015-11-24,"YB","C","6","Pp","Pollicipes_polymerus","Type 11",866,0.0875,9897.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-11-24_YB-Cq2",2015-11-24,2015-11-24,"YB","C","2","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-Cq4",2015-11-24,2015-11-24,"YB","C","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-Cq6",2015-11-24,2015-11-24,"YB","C","6","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-11-24_YB-Cq2",2015-11-24,2015-11-24,"YB","C","2","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-Cq4",2015-11-24,2015-11-24,"YB","C","4","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-Cq6",2015-11-24,2015-11-24,"YB","C","6","Sc","Semibalanus_cariosus","Type 5",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-11-24_YB-Cq2",2015-11-24,2015-11-24,"YB","C","2","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-Cq4",2015-11-24,2015-11-24,"YB","C","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","5%",""
+"2015-11-24_YB-Cq6",2015-11-24,2015-11-24,"YB","C","6","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","10%",""
+"2015-11-24_YB-Dq3",2015-11-24,2015-11-24,"YB","D","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae cover."
+"2015-11-24_YB-Dq4",2015-11-24,2015-11-24,"YB","D","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%",""
+"2015-11-24_YB-Dq5",2015-11-24,2015-11-24,"YB","D","5","Alg","Algae","Type 19",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae cover and glare."
+"2015-11-24_YB-Dq3",2015-11-24,2015-11-24,"YB","D","3","Ae","Anemones","Type 14",20,0.0875,228.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae cover."
+"2015-11-24_YB-Dq4",2015-11-24,2015-11-24,"YB","D","4","Ae","Anemones","Type 14",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%",""
+"2015-11-24_YB-Dq5",2015-11-24,2015-11-24,"YB","D","5","Ae","Anemones","Type 14",18,0.0875,205.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae cover and glare."
+"2015-11-24_YB-Dq3",2015-11-24,2015-11-24,"YB","D","3","Bg","Balanus_glandula","Type 1",76,0.0875,868.571428571429,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae cover."
+"2015-11-24_YB-Dq4",2015-11-24,2015-11-24,"YB","D","4","Bg","Balanus_glandula","Type 1",524,0.0875,5988.57142857143,NA,"Beatriz Vaca","Finished","Full","Full","12%",""
+"2015-11-24_YB-Dq5",2015-11-24,2015-11-24,"YB","D","5","Bg","Balanus_glandula","Type 1",102,0.0875,1165.71428571429,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae cover and glare."
+"2015-11-24_YB-Dq3",2015-11-24,2015-11-24,"YB","D","3","BgD","Balanus_glandula_(dead)","Type 2",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae cover."
+"2015-11-24_YB-Dq4",2015-11-24,2015-11-24,"YB","D","4","BgD","Balanus_glandula_(dead)","Type 2",12,0.0875,137.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","12%",""
+"2015-11-24_YB-Dq5",2015-11-24,2015-11-24,"YB","D","5","BgD","Balanus_glandula_(dead)","Type 2",4,0.0875,45.7142857142857,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae cover and glare."
+"2015-11-24_YB-Dq3",2015-11-24,2015-11-24,"YB","D","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae cover."
+"2015-11-24_YB-Dq4",2015-11-24,2015-11-24,"YB","D","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%",""
+"2015-11-24_YB-Dq5",2015-11-24,2015-11-24,"YB","D","5","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae cover and glare."
+"2015-11-24_YB-Dq3",2015-11-24,2015-11-24,"YB","D","3","Cth","Chthamalus_dalli","Type 3",236,0.0875,2697.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae cover."
+"2015-11-24_YB-Dq4",2015-11-24,2015-11-24,"YB","D","4","Cth","Chthamalus_dalli","Type 3",1624,0.0875,18560,NA,"Beatriz Vaca","Finished","Full","Full","12%",""
+"2015-11-24_YB-Dq5",2015-11-24,2015-11-24,"YB","D","5","Cth","Chthamalus_dalli","Type 3",516,0.0875,5897.14285714286,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae cover and glare."
+"2015-11-24_YB-Dq3",2015-11-24,2015-11-24,"YB","D","3","CthD","Chthamalus_dalli (dead)","Type 4",2,0.0875,22.8571428571429,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae cover."
+"2015-11-24_YB-Dq4",2015-11-24,2015-11-24,"YB","D","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%",""
+"2015-11-24_YB-Dq5",2015-11-24,2015-11-24,"YB","D","5","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae cover and glare."
+"2015-11-24_YB-Dq3",2015-11-24,2015-11-24,"YB","D","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae cover."
+"2015-11-24_YB-Dq4",2015-11-24,2015-11-24,"YB","D","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%",""
+"2015-11-24_YB-Dq5",2015-11-24,2015-11-24,"YB","D","5","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae cover and glare."
+"2015-11-24_YB-Dq3",2015-11-24,2015-11-24,"YB","D","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae cover."
+"2015-11-24_YB-Dq4",2015-11-24,2015-11-24,"YB","D","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%",""
+"2015-11-24_YB-Dq5",2015-11-24,2015-11-24,"YB","D","5","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae cover and glare."
+"2015-11-24_YB-Dq3",2015-11-24,2015-11-24,"YB","D","3","Lim","Limpets","Type 12",24,0.0875,274.285714285714,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae cover."
+"2015-11-24_YB-Dq4",2015-11-24,2015-11-24,"YB","D","4","Lim","Limpets","Type 12",358,0.0875,4091.42857142857,NA,"Beatriz Vaca","Finished","Full","Full","12%",""
+"2015-11-24_YB-Dq5",2015-11-24,2015-11-24,"YB","D","5","Lim","Limpets","Type 12",168,0.0875,1920,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae cover and glare."
+"2015-11-24_YB-Dq3",2015-11-24,2015-11-24,"YB","D","3","Ls","Littorina_sitkana","Type 13",19,0.0875,217.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae cover."
+"2015-11-24_YB-Dq4",2015-11-24,2015-11-24,"YB","D","4","Ls","Littorina_sitkana","Type 13",81,0.0875,925.714285714286,NA,"Beatriz Vaca","Finished","Full","Full","12%",""
+"2015-11-24_YB-Dq5",2015-11-24,2015-11-24,"YB","D","5","Ls","Littorina_sitkana","Type 13",16,0.0875,182.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae cover and glare."
+"2015-11-24_YB-Dq3",2015-11-24,2015-11-24,"YB","D","3","Mc","Mytilus_californianus","Type 17",6,0.0875,68.5714285714286,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae cover."
+"2015-11-24_YB-Dq4",2015-11-24,2015-11-24,"YB","D","4","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%",""
+"2015-11-24_YB-Dq5",2015-11-24,2015-11-24,"YB","D","5","Mc","Mytilus_californianus","Type 17",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae cover and glare."
+"2015-11-24_YB-Dq3",2015-11-24,2015-11-24,"YB","D","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae cover."
+"2015-11-24_YB-Dq4",2015-11-24,2015-11-24,"YB","D","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%",""
+"2015-11-24_YB-Dq5",2015-11-24,2015-11-24,"YB","D","5","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae cover and glare."
+"2015-11-24_YB-Dq3",2015-11-24,2015-11-24,"YB","D","3","Myt","Mytilus_spp","Type 7",12,0.0875,137.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae cover."
+"2015-11-24_YB-Dq4",2015-11-24,2015-11-24,"YB","D","4","Myt","Mytilus_spp","Type 7",9,0.0875,102.857142857143,NA,"Beatriz Vaca","Finished","Full","Full","12%",""
+"2015-11-24_YB-Dq5",2015-11-24,2015-11-24,"YB","D","5","Myt","Mytilus_spp","Type 7",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae cover and glare."
+"2015-11-24_YB-Dq3",2015-11-24,2015-11-24,"YB","D","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae cover."
+"2015-11-24_YB-Dq4",2015-11-24,2015-11-24,"YB","D","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%",""
+"2015-11-24_YB-Dq5",2015-11-24,2015-11-24,"YB","D","5","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae cover and glare."
+"2015-11-24_YB-Dq3",2015-11-24,2015-11-24,"YB","D","3","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae cover."
+"2015-11-24_YB-Dq4",2015-11-24,2015-11-24,"YB","D","4","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%",""
+"2015-11-24_YB-Dq5",2015-11-24,2015-11-24,"YB","D","5","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae cover and glare."
+"2015-11-24_YB-Dq3",2015-11-24,2015-11-24,"YB","D","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae cover."
+"2015-11-24_YB-Dq4",2015-11-24,2015-11-24,"YB","D","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%",""
+"2015-11-24_YB-Dq5",2015-11-24,2015-11-24,"YB","D","5","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae cover and glare."
+"2015-11-24_YB-Dq3",2015-11-24,2015-11-24,"YB","D","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae cover."
+"2015-11-24_YB-Dq4",2015-11-24,2015-11-24,"YB","D","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%",""
+"2015-11-24_YB-Dq5",2015-11-24,2015-11-24,"YB","D","5","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae cover and glare."
+"2015-11-24_YB-Dq3",2015-11-24,2015-11-24,"YB","D","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae cover."
+"2015-11-24_YB-Dq4",2015-11-24,2015-11-24,"YB","D","4","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%",""
+"2015-11-24_YB-Dq5",2015-11-24,2015-11-24,"YB","D","5","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae cover and glare."
+"2015-11-24_YB-Dq3",2015-11-24,2015-11-24,"YB","D","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae cover."
+"2015-11-24_YB-Dq4",2015-11-24,2015-11-24,"YB","D","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%",""
+"2015-11-24_YB-Dq5",2015-11-24,2015-11-24,"YB","D","5","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae cover and glare."
+"2015-11-24_YB-Dq3",2015-11-24,2015-11-24,"YB","D","3","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae cover."
+"2015-11-24_YB-Dq4",2015-11-24,2015-11-24,"YB","D","4","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%",""
+"2015-11-24_YB-Dq5",2015-11-24,2015-11-24,"YB","D","5","No","Nucella_ostrina","Type 9",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae cover and glare."
+"2015-11-24_YB-Dq3",2015-11-24,2015-11-24,"YB","D","3","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae cover."
+"2015-11-24_YB-Dq4",2015-11-24,2015-11-24,"YB","D","4","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%",""
+"2015-11-24_YB-Dq5",2015-11-24,2015-11-24,"YB","D","5","Wor","Other_worm spp.","Type 25",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae cover and glare."
+"2015-11-24_YB-Dq3",2015-11-24,2015-11-24,"YB","D","3","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae cover."
+"2015-11-24_YB-Dq4",2015-11-24,2015-11-24,"YB","D","4","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%",""
+"2015-11-24_YB-Dq5",2015-11-24,2015-11-24,"YB","D","5","Pis","Pisaster","Type 21",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae cover and glare."
+"2015-11-24_YB-Dq3",2015-11-24,2015-11-24,"YB","D","3","Pp","Pollicipes_polymerus","Type 11",47,0.0875,537.142857142857,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae cover."
+"2015-11-24_YB-Dq4",2015-11-24,2015-11-24,"YB","D","4","Pp","Pollicipes_polymerus","Type 11",1,0.0875,11.4285714285714,NA,"Beatriz Vaca","Finished","Full","Full","12%",""
+"2015-11-24_YB-Dq5",2015-11-24,2015-11-24,"YB","D","5","Pp","Pollicipes_polymerus","Type 11",5,0.0875,57.1428571428571,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae cover and glare."
+"2015-11-24_YB-Dq3",2015-11-24,2015-11-24,"YB","D","3","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae cover."
+"2015-11-24_YB-Dq4",2015-11-24,2015-11-24,"YB","D","4","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%",""
+"2015-11-24_YB-Dq5",2015-11-24,2015-11-24,"YB","D","5","","Sandtube_worm","Type 27",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae cover and glare."
+"2015-11-24_YB-Dq3",2015-11-24,2015-11-24,"YB","D","3","Sc","Semibalanus_cariosus","Type 5",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae cover."
+"2015-11-24_YB-Dq4",2015-11-24,2015-11-24,"YB","D","4","Sc","Semibalanus_cariosus","Type 5",3,0.0875,34.2857142857143,NA,"Beatriz Vaca","Finished","Full","Full","12%",""
+"2015-11-24_YB-Dq5",2015-11-24,2015-11-24,"YB","D","5","Sc","Semibalanus_cariosus","Type 5",7,0.0875,80,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae cover and glare."
+"2015-11-24_YB-Dq3",2015-11-24,2015-11-24,"YB","D","3","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae cover."
+"2015-11-24_YB-Dq4",2015-11-24,2015-11-24,"YB","D","4","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","12%",""
+"2015-11-24_YB-Dq5",2015-11-24,2015-11-24,"YB","D","5","ScD","Semibalanus_cariosus_(dead)","Type 6",0,0.0875,0,NA,"Beatriz Vaca","Finished","Full","Full","55%","Counts may be low due to algae cover and glare."
+"2015-11-24_YB-Eq3",2015-11-24,2015-11-24,"YB","E","3","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to glare"
+"2015-11-24_YB-Eq4",2015-11-24,2015-11-24,"YB","E","4","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts likely low due to blur"
+"2015-11-24_YB-Eq8",2015-11-24,2015-11-24,"YB","E","8","Alg","Algae","Type 19",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2015-11-24_YB-Eq3",2015-11-24,2015-11-24,"YB","E","3","Ae","Anemones","Type 14",75,0.0875,857.142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to glare"
+"2015-11-24_YB-Eq4",2015-11-24,2015-11-24,"YB","E","4","Ae","Anemones","Type 14",102,0.0875,1165.71428571429,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts likely low due to blur"
+"2015-11-24_YB-Eq8",2015-11-24,2015-11-24,"YB","E","8","Ae","Anemones","Type 14",65,0.0875,742.857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2015-11-24_YB-Eq3",2015-11-24,2015-11-24,"YB","E","3","Bg","Balanus_glandula","Type 1",222,0.0875,2537.14285714286,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to glare"
+"2015-11-24_YB-Eq4",2015-11-24,2015-11-24,"YB","E","4","Bg","Balanus_glandula","Type 1",337,0.0875,3851.42857142857,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts likely low due to blur"
+"2015-11-24_YB-Eq8",2015-11-24,2015-11-24,"YB","E","8","Bg","Balanus_glandula","Type 1",173,0.0875,1977.14285714286,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2015-11-24_YB-Eq3",2015-11-24,2015-11-24,"YB","E","3","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to glare"
+"2015-11-24_YB-Eq4",2015-11-24,2015-11-24,"YB","E","4","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts likely low due to blur"
+"2015-11-24_YB-Eq8",2015-11-24,2015-11-24,"YB","E","8","BgD","Balanus_glandula_(dead)","Type 2",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2015-11-24_YB-Eq3",2015-11-24,2015-11-24,"YB","E","3","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to glare"
+"2015-11-24_YB-Eq4",2015-11-24,2015-11-24,"YB","E","4","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts likely low due to blur"
+"2015-11-24_YB-Eq8",2015-11-24,2015-11-24,"YB","E","8","Chi","Chiton_spp","Type 22",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2015-11-24_YB-Eq3",2015-11-24,2015-11-24,"YB","E","3","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to glare"
+"2015-11-24_YB-Eq4",2015-11-24,2015-11-24,"YB","E","4","Cth","Chthamalus_dalli","Type 3",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts likely low due to blur"
+"2015-11-24_YB-Eq8",2015-11-24,2015-11-24,"YB","E","8","Cth","Chthamalus_dalli","Type 3",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2015-11-24_YB-Eq3",2015-11-24,2015-11-24,"YB","E","3","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to glare"
+"2015-11-24_YB-Eq4",2015-11-24,2015-11-24,"YB","E","4","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts likely low due to blur"
+"2015-11-24_YB-Eq8",2015-11-24,2015-11-24,"YB","E","8","CthD","Chthamalus_dalli (dead)","Type 4",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2015-11-24_YB-Eq3",2015-11-24,2015-11-24,"YB","E","3","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to glare"
+"2015-11-24_YB-Eq4",2015-11-24,2015-11-24,"YB","E","4","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts likely low due to blur"
+"2015-11-24_YB-Eq8",2015-11-24,2015-11-24,"YB","E","8","Emp","Emplectonema worm","Type 23",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2015-11-24_YB-Eq3",2015-11-24,2015-11-24,"YB","E","3","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to glare"
+"2015-11-24_YB-Eq4",2015-11-24,2015-11-24,"YB","E","4","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts likely low due to blur"
+"2015-11-24_YB-Eq8",2015-11-24,2015-11-24,"YB","E","8","Lep","Leptasterias","Type 20",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2015-11-24_YB-Eq3",2015-11-24,2015-11-24,"YB","E","3","Lim","Limpets","Type 12",46,0.0875,525.714285714286,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to glare"
+"2015-11-24_YB-Eq4",2015-11-24,2015-11-24,"YB","E","4","Lim","Limpets","Type 12",40,0.0875,457.142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts likely low due to blur"
+"2015-11-24_YB-Eq8",2015-11-24,2015-11-24,"YB","E","8","Lim","Limpets","Type 12",34,0.0875,388.571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2015-11-24_YB-Eq3",2015-11-24,2015-11-24,"YB","E","3","Ls","Littorina_sitkana","Type 13",150,0.0875,1714.28571428571,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to glare"
+"2015-11-24_YB-Eq4",2015-11-24,2015-11-24,"YB","E","4","Ls","Littorina_sitkana","Type 13",180,0.0875,2057.14285714286,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts likely low due to blur"
+"2015-11-24_YB-Eq8",2015-11-24,2015-11-24,"YB","E","8","Ls","Littorina_sitkana","Type 13",118,0.0875,1348.57142857143,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2015-11-24_YB-Eq3",2015-11-24,2015-11-24,"YB","E","3","Mc","Mytilus_californianus","Type 17",7,0.0875,80,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to glare"
+"2015-11-24_YB-Eq4",2015-11-24,2015-11-24,"YB","E","4","Mc","Mytilus_californianus","Type 17",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts likely low due to blur"
+"2015-11-24_YB-Eq8",2015-11-24,2015-11-24,"YB","E","8","Mc","Mytilus_californianus","Type 17",15,0.0875,171.428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2015-11-24_YB-Eq3",2015-11-24,2015-11-24,"YB","E","3","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to glare"
+"2015-11-24_YB-Eq4",2015-11-24,2015-11-24,"YB","E","4","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts likely low due to blur"
+"2015-11-24_YB-Eq8",2015-11-24,2015-11-24,"YB","E","8","McD","Mytilus_californianus_(dead)","Type 18",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2015-11-24_YB-Eq3",2015-11-24,2015-11-24,"YB","E","3","Myt","Mytilus_spp","Type 7",21,0.0875,240,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to glare"
+"2015-11-24_YB-Eq4",2015-11-24,2015-11-24,"YB","E","4","Myt","Mytilus_spp","Type 7",78,0.0875,891.428571428571,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts likely low due to blur"
+"2015-11-24_YB-Eq8",2015-11-24,2015-11-24,"YB","E","8","Myt","Mytilus_spp","Type 7",19,0.0875,217.142857142857,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2015-11-24_YB-Eq3",2015-11-24,2015-11-24,"YB","E","3","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to glare"
+"2015-11-24_YB-Eq4",2015-11-24,2015-11-24,"YB","E","4","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts likely low due to blur"
+"2015-11-24_YB-Eq8",2015-11-24,2015-11-24,"YB","E","8","MytD","Mytilus_spp_(dead)","Type 8",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2015-11-24_YB-Eq3",2015-11-24,2015-11-24,"YB","E","3","Mt","Mytilus_trossulus","Type 15",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to glare"
+"2015-11-24_YB-Eq4",2015-11-24,2015-11-24,"YB","E","4","Mt","Mytilus_trossulus","Type 15",2,0.0875,22.8571428571429,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts likely low due to blur"
+"2015-11-24_YB-Eq8",2015-11-24,2015-11-24,"YB","E","8","Mt","Mytilus_trossulus","Type 15",3,0.0875,34.2857142857143,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2015-11-24_YB-Eq3",2015-11-24,2015-11-24,"YB","E","3","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to glare"
+"2015-11-24_YB-Eq4",2015-11-24,2015-11-24,"YB","E","4","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts likely low due to blur"
+"2015-11-24_YB-Eq8",2015-11-24,2015-11-24,"YB","E","8","MtD","Mytilus_trossulus_(dead)","Type 16",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2015-11-24_YB-Eq3",2015-11-24,2015-11-24,"YB","E","3","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to glare"
+"2015-11-24_YB-Eq4",2015-11-24,2015-11-24,"YB","E","4","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts likely low due to blur"
+"2015-11-24_YB-Eq8",2015-11-24,2015-11-24,"YB","E","8","Ner","Nereis_worm","Type 24",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2015-11-24_YB-Eq3",2015-11-24,2015-11-24,"YB","E","3","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to glare"
+"2015-11-24_YB-Eq4",2015-11-24,2015-11-24,"YB","E","4","Nc","Nucella_canaliculata","Type 10",1,0.0875,11.4285714285714,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts likely low due to blur"
+"2015-11-24_YB-Eq8",2015-11-24,2015-11-24,"YB","E","8","Nc","Nucella_canaliculata","Type 10",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3%",""
+"2015-11-24_YB-Eq3",2015-11-24,2015-11-24,"YB","E","3","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","50%","Counts likely low due to glare"
+"2015-11-24_YB-Eq4",2015-11-24,2015-11-24,"YB","E","4","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","40%","Counts likely low due to blur"
+"2015-11-24_YB-Eq8",2015-11-24,2015-11-24,"YB","E","8","Negg","Nucella_eggs","Type 26",0,0.0875,0,NA,"Stephanie Merhoff","Finished","Full","Full","3